Gentoo Archives: gentoo-commits

From: Hans de Graaff <graaff@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/webrobots/
Date: Thu, 11 Apr 2019 17:46:43
Message-Id: 1555004770.dc3354ee480ff12193177f365c5fa2f85c5190ef.graaff@gentoo
1 commit: dc3354ee480ff12193177f365c5fa2f85c5190ef
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Thu Apr 11 17:06:41 2019 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Thu Apr 11 17:46:10 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dc3354ee
7
8 dev-ruby/webrobots: cleanup
9
10 Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
11 Package-Manager: Portage-2.3.62, Repoman-2.3.11
12
13 dev-ruby/webrobots/webrobots-0.1.2.ebuild | 34 -------------------------------
14 1 file changed, 34 deletions(-)
15
16 diff --git a/dev-ruby/webrobots/webrobots-0.1.2.ebuild b/dev-ruby/webrobots/webrobots-0.1.2.ebuild
17 deleted file mode 100644
18 index d03f6eac6e8..00000000000
19 --- a/dev-ruby/webrobots/webrobots-0.1.2.ebuild
20 +++ /dev/null
21 @@ -1,34 +0,0 @@
22 -# Copyright 1999-2018 Gentoo Foundation
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=5
26 -USE_RUBY="ruby22 ruby23 ruby24"
27 -
28 -RUBY_FAKEGEM_RECIPE_DOC="rdoc"
29 -RUBY_FAKEGEM_DOCDIR="rdoc"
30 -RUBY_FAKEGEM_EXTRADOC="README.rdoc"
31 -
32 -inherit ruby-fakegem
33 -
34 -DESCRIPTION="A library to help write robots.txt compliant web robots"
35 -HOMEPAGE="https://github.com/knu/webrobots"
36 -
37 -LICENSE="BSD-2"
38 -SLOT="0"
39 -KEYWORDS="amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris"
40 -IUSE=""
41 -
42 -ruby_add_rdepend ">=dev-ruby/nokogiri-1.4.4"
43 -
44 -ruby_add_bdepend "test? ( dev-ruby/shoulda dev-ruby/test-unit:2 dev-ruby/webmock )"
45 -
46 -all_ruby_prepare() {
47 - sed -i -e '/bundler/,/end/d' Rakefile test/helper.rb || die
48 -
49 - # Avoid tests for live websites requirering a network connection.
50 - sed -i -e '/robots.txt in the real world/,/^ end/ s:^:#:' test/test_webrobots.rb || die
51 -}
52 -
53 -each_ruby_test() {
54 - ruby-ng_testrb-2 -Ilib test/test_*.rb
55 -}