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/crack/
Date: Mon, 29 Apr 2019 05:32:55
Message-Id: 1556515950.7dc58d22a56c5a0ab780af4118334af42cc41126.graaff@gentoo
1 commit: 7dc58d22a56c5a0ab780af4118334af42cc41126
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Mon Apr 29 05:25:04 2019 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Mon Apr 29 05:32:30 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7dc58d22
7
8 dev-ruby/crack: 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/crack/crack-0.4.3-r1.ebuild | 33 ---------------------------------
14 1 file changed, 33 deletions(-)
15
16 diff --git a/dev-ruby/crack/crack-0.4.3-r1.ebuild b/dev-ruby/crack/crack-0.4.3-r1.ebuild
17 deleted file mode 100644
18 index fa0577c5503..00000000000
19 --- a/dev-ruby/crack/crack-0.4.3-r1.ebuild
20 +++ /dev/null
21 @@ -1,33 +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 -
27 -USE_RUBY="ruby21 ruby22 ruby23 ruby24"
28 -
29 -RUBY_FAKEGEM_RECIPE_DOC="rdoc"
30 -RUBY_FAKEGEM_EXTRADOC="README.md History"
31 -
32 -inherit ruby-fakegem
33 -
34 -DESCRIPTION="Really simple JSON and XML parsing, ripped from Merb and Rails"
35 -HOMEPAGE="https://github.com/jnunemaker/crack"
36 -
37 -LICENSE="MIT"
38 -SLOT="0"
39 -KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
40 -IUSE=""
41 -
42 -ruby_add_bdepend "test? ( dev-ruby/minitest )"
43 -ruby_add_rdepend ">=dev-ruby/safe_yaml-1.0.0"
44 -
45 -each_ruby_prepare() {
46 - # Remove tests which fail when run by portage but pass when run by hand
47 - sed -i -e '/{"regex": \/foo.*\/}/d' test/json_test.rb || die
48 - sed -i -e '/{"regex": \/foo.*\/i}/d' test/json_test.rb || die
49 - sed -i -e '/{"regex": \/foo.*\/mix}/d' test/json_test.rb || die
50 -}
51 -
52 -each_ruby_test() {
53 - ${RUBY} -Itest -Ilib -e 'Dir["test/*_test.rb"].each { |f| load f }' || die
54 -}