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: Wed, 19 Dec 2018 06:22:19
Message-Id: 1545200017.8a42ebf656f25a85f7d7461a5644c27d12dfb03d.graaff@gentoo
1 commit: 8a42ebf656f25a85f7d7461a5644c27d12dfb03d
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Wed Dec 19 06:13:37 2018 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Wed Dec 19 06:13:37 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8a42ebf6
7
8 dev-ruby/amatch: cleanup
9
10 Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
11 Package-Manager: Portage-2.3.51, Repoman-2.3.11
12
13 dev-ruby/amatch/Manifest | 1 -
14 dev-ruby/amatch/amatch-0.3.1.ebuild | 33 ---------------------------------
15 2 files changed, 34 deletions(-)
16
17 diff --git a/dev-ruby/amatch/Manifest b/dev-ruby/amatch/Manifest
18 index 40ca86f3244..396ea68f4d3 100644
19 --- a/dev-ruby/amatch/Manifest
20 +++ b/dev-ruby/amatch/Manifest
21 @@ -1,2 +1 @@
22 -DIST amatch-0.3.1.gem 28672 BLAKE2B 19b59d5f04b54979e7ccb3c5aa48c06049a433349fa1e2ff9a8695faf1c67120d6cbe9b31059449327f0e5456cb1e58b723a8684532f68efe378d423f959762b SHA512 4abd3d482646e75715b631eaaf001139928a910c7ee518ab468e089c71433d3a27191da4b22b0283ce1d8c1d33b77da5960c06fcd7dcf95121f1a0cc9dc543bb
23 DIST amatch-0.4.0.gem 38912 BLAKE2B 065b4c537a2727cbb7f7d52aff545a3f7f8434b37553e59b261d9760ed304c24a20e4778c375e7b7fa11f40655cac786ca15cdb11360ac7296f03186439be480 SHA512 c5a1d17b46f51796d3f082ab9d18845625a28e08339756ebc0689ad6c50b1406611fd5a316e628e4dab6d9b654c969a4fc6e8c2b2079f04c64e3d990e95a64a0
24
25 diff --git a/dev-ruby/amatch/amatch-0.3.1.ebuild b/dev-ruby/amatch/amatch-0.3.1.ebuild
26 deleted file mode 100644
27 index 8ee82f24434..00000000000
28 --- a/dev-ruby/amatch/amatch-0.3.1.ebuild
29 +++ /dev/null
30 @@ -1,33 +0,0 @@
31 -# Copyright 1999-2017 Gentoo Foundation
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=6
35 -USE_RUBY="ruby21 ruby22 ruby23 ruby24"
36 -
37 -RUBY_FAKEGEM_TASK_DOC=""
38 -RUBY_FAKEGEM_EXTRADOC="CHANGES README.rdoc"
39 -
40 -inherit multilib ruby-fakegem
41 -
42 -DESCRIPTION="Approximate Matching Extension for Ruby"
43 -HOMEPAGE="https://flori.github.com/amatch/"
44 -
45 -LICENSE="GPL-2"
46 -SLOT="0"
47 -KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~x86"
48 -IUSE=""
49 -
50 -ruby_add_rdepend "=dev-ruby/tins-1*"
51 -
52 -each_ruby_configure() {
53 - ${RUBY} -Cext extconf.rb || die
54 -}
55 -
56 -each_ruby_compile() {
57 - emake -Cext V=1
58 - cp ext/amatch_ext$(get_modname) lib/ || die
59 -}
60 -
61 -each_ruby_test() {
62 - ${RUBY} -Ilib -S testrb-2 tests/* || die
63 -}