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/regexp_property_values/
Date: Tue, 07 Dec 2021 06:42:48
Message-Id: 1638859279.feea5144cebacc509409d595132b2d40e982df99.graaff@gentoo
1 commit: feea5144cebacc509409d595132b2d40e982df99
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Tue Dec 7 06:41:19 2021 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Tue Dec 7 06:41:19 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=feea5144
7
8 dev-ruby/regexp_property_values: 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 .../regexp_property_values-1.0.0.ebuild | 43 ----------------------
14 1 file changed, 43 deletions(-)
15
16 diff --git a/dev-ruby/regexp_property_values/regexp_property_values-1.0.0.ebuild b/dev-ruby/regexp_property_values/regexp_property_values-1.0.0.ebuild
17 deleted file mode 100644
18 index 0b70f9fd51a3..000000000000
19 --- a/dev-ruby/regexp_property_values/regexp_property_values-1.0.0.ebuild
20 +++ /dev/null
21 @@ -1,43 +0,0 @@
22 -# Copyright 1999-2021 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=6
26 -USE_RUBY="ruby25 ruby26 ruby27 ruby30"
27 -
28 -RUBY_FAKEGEM_RECIPE_DOC="rdoc"
29 -RUBY_FAKEGEM_EXTRADOC="README.md"
30 -
31 -RUBY_FAKEGEM_RECIPE_TEST="rspec3"
32 -
33 -RUBY_FAKEGEM_BINWRAP=""
34 -
35 -RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec"
36 -
37 -inherit ruby-fakegem
38 -
39 -DESCRIPTION="See which property values are supported by the regular expression engine"
40 -HOMEPAGE="https://github.com/janosch-x/regexp_property_values"
41 -SRC_URI="https://github.com/janosch-x/regexp_property_values/archive/v${PV}.tar.gz -> ${P}.tar.gz"
42 -
43 -LICENSE="MIT"
44 -SLOT="1"
45 -KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc ~x86"
46 -IUSE=""
47 -
48 -all_ruby_prepare() {
49 - sed -i -e 's/git ls-files -z/find -print0/' ${RUBY_FAKEGEM_GEMSPEC} || die
50 - sed -i -e '/bundler/ s:^:#:' spec/spec_helper.rb || die
51 -
52 - # Avoid dependency on character_set which would lead to circular
53 - # dependencies.
54 - sed -i -e '/returns a CharacterSet/askip "gentoo circular dependencies"' spec/regexp_property_values/value_spec.rb || die
55 -}
56 -
57 -each_ruby_configure() {
58 - ${RUBY} -Cext/regexp_property_values extconf.rb || die
59 -}
60 -
61 -each_ruby_compile() {
62 - emake -Cext/regexp_property_values V=1
63 - cp ext/regexp_property_values/regexp_property_values.so lib/regexp_property_values/ || die
64 -}