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/mocha/
Date: Sun, 19 Sep 2021 06:24:19
Message-Id: 1632032650.f2fdc51daef46a17300fc7a5638d00cc13313e0d.graaff@gentoo
1 commit: f2fdc51daef46a17300fc7a5638d00cc13313e0d
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Sun Sep 19 06:12:03 2021 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Sun Sep 19 06:24:10 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f2fdc51d
7
8 dev-ruby/mocha: cleanup
9
10 Package-Manager: Portage-3.0.20, Repoman-3.0.3
11 Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
12
13 dev-ruby/mocha/mocha-0.14.0.ebuild | 32 --------------------------------
14 1 file changed, 32 deletions(-)
15
16 diff --git a/dev-ruby/mocha/mocha-0.14.0.ebuild b/dev-ruby/mocha/mocha-0.14.0.ebuild
17 deleted file mode 100644
18 index 3fce5d0153a..00000000000
19 --- a/dev-ruby/mocha/mocha-0.14.0.ebuild
20 +++ /dev/null
21 @@ -1,32 +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 -USE_RUBY="ruby24 ruby25 ruby26 ruby27"
27 -
28 -RUBY_FAKEGEM_TASK_TEST="MOCHA_NO_DOCS=true test:units"
29 -
30 -RUBY_FAKEGEM_RECIPE_DOC="rdoc"
31 -RUBY_FAKEGEM_EXTRADOC="README.md RELEASE.md"
32 -
33 -RUBY_FAKEGEM_EXTRAINSTALL="init.rb"
34 -
35 -inherit ruby-fakegem
36 -
37 -DESCRIPTION="Mocking and stubbing using a syntax like that of JMock and SchMock"
38 -HOMEPAGE="http://gofreerange.com/mocha/docs/"
39 -
40 -LICENSE="MIT"
41 -SLOT="0.14"
42 -KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ppc ppc64 ~sparc x86"
43 -IUSE=""
44 -
45 -ruby_add_bdepend "
46 - test? ( >=dev-ruby/test-unit-2.5.1-r1 dev-ruby/introspection )"
47 -
48 -ruby_add_rdepend "dev-ruby/metaclass" #metaclass ~> 0.0.1
49 -
50 -all_ruby_prepare() {
51 - sed -i -e '/[Bb]undler/ s:^:#:' -e '1iload "lib/mocha/version.rb"' Rakefile || die
52 - sed -i -e '20irequire "mocha/setup"' test/test_helper.rb || die
53 -}