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/shoulda-context/
Date: Sat, 03 Jul 2021 07:22:42
Message-Id: 1625296951.b912fbf61126565d2ade3b710236107abd17b02e.graaff@gentoo
1 commit: b912fbf61126565d2ade3b710236107abd17b02e
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jul 3 06:48:14 2021 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Sat Jul 3 07:22:31 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b912fbf6
7
8 dev-ruby/shoulda-context: cleanup
9
10 Package-Manager: Portage-3.0.20, Repoman-3.0.2
11 Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
12
13 .../shoulda-context/shoulda-context-1.2.2.ebuild | 36 ----------------------
14 1 file changed, 36 deletions(-)
15
16 diff --git a/dev-ruby/shoulda-context/shoulda-context-1.2.2.ebuild b/dev-ruby/shoulda-context/shoulda-context-1.2.2.ebuild
17 deleted file mode 100644
18 index ac9582b4fd6..00000000000
19 --- a/dev-ruby/shoulda-context/shoulda-context-1.2.2.ebuild
20 +++ /dev/null
21 @@ -1,36 +0,0 @@
22 -# Copyright 1999-2020 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=5
26 -
27 -USE_RUBY="ruby24 ruby25 ruby26 ruby27"
28 -
29 -RUBY_FAKEGEM_RECIPE_DOC="rdoc"
30 -RUBY_FAKEGEM_EXTRADOC="CONTRIBUTING.md README.md"
31 -
32 -RUBY_FAKEGEM_EXTRAINSTALL="init.rb rails tasks"
33 -
34 -# Don't install the conversion script to avoid collisions with older
35 -# shoulda.
36 -RUBY_FAKEGEM_BINWRAP=""
37 -
38 -inherit ruby-fakegem
39 -
40 -DESCRIPTION="Context framework extracted from Shoulda"
41 -HOMEPAGE="https://github.com/thoughtbot/shoulda-context"
42 -
43 -LICENSE="MIT"
44 -SLOT="0"
45 -KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
46 -IUSE="doc test"
47 -
48 -ruby_add_bdepend "test? ( dev-ruby/test-unit:2
49 - <dev-ruby/mocha-1 )"
50 -
51 -all_ruby_prepare() {
52 - sed -i -e "1igem 'mocha', '~>0.10'\n" test/test_helper.rb || die
53 -}
54 -
55 -each_ruby_test() {
56 - BUNDLE_GEMFILE=x ruby-ng_testrb-2 -Itest test/shoulda/*_test.rb || die
57 -}