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/amatch/
Date: Sun, 31 Oct 2021 04:45:10
Message-Id: 1635655443.477686f555bc72862e3307eccfe4d1dba51cb83b.graaff@gentoo
1 commit: 477686f555bc72862e3307eccfe4d1dba51cb83b
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Sat Oct 30 07:10:11 2021 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Sun Oct 31 04:44:03 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=477686f5
7
8 dev-ruby/amatch: cleanup
9
10 Package-Manager: Portage-3.0.28, Repoman-3.0.3
11 Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
12
13 dev-ruby/amatch/amatch-0.4.0.ebuild | 43 -------------------------------------
14 1 file changed, 43 deletions(-)
15
16 diff --git a/dev-ruby/amatch/amatch-0.4.0.ebuild b/dev-ruby/amatch/amatch-0.4.0.ebuild
17 deleted file mode 100644
18 index a3419a008e0..00000000000
19 --- a/dev-ruby/amatch/amatch-0.4.0.ebuild
20 +++ /dev/null
21 @@ -1,43 +0,0 @@
22 -# Copyright 1999-2020 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=6
26 -USE_RUBY="ruby25 ruby26 ruby27"
27 -
28 -RUBY_FAKEGEM_TASK_DOC=""
29 -RUBY_FAKEGEM_EXTRADOC="CHANGES README.md"
30 -
31 -RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec"
32 -
33 -inherit multilib ruby-fakegem
34 -
35 -DESCRIPTION="Approximate Matching Extension for Ruby"
36 -HOMEPAGE="https://flori.github.com/amatch/"
37 -
38 -LICENSE="Apache-2.0"
39 -SLOT="0"
40 -KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~x86"
41 -IUSE=""
42 -
43 -ruby_add_rdepend "=dev-ruby/tins-1*"
44 -
45 -# These packages also provide agrep, bug 626480
46 -RDEPEND+=" !app-misc/glimpse !app-text/agrep !dev-libs/tre"
47 -
48 -all_ruby_prepare() {
49 - # mize is listed as a dependency but not actually used
50 - sed -i -e '/mize/d' ${RUBY_FAKEGEM_GEMSPEC} || die
51 -}
52 -
53 -each_ruby_configure() {
54 - ${RUBY} -Cext extconf.rb || die
55 -}
56 -
57 -each_ruby_compile() {
58 - emake -Cext V=1
59 - cp ext/amatch_ext$(get_modname) lib/ || die
60 -}
61 -
62 -each_ruby_test() {
63 - ${RUBY} -Ilib -S testrb-2 tests/* || die
64 -}