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/nokogumbo/
Date: Thu, 31 Jan 2019 07:36:03
Message-Id: 1548920095.adaf2ac8053f5790fe7bd9756bd02c4b36596f5d.graaff@gentoo
1 commit: adaf2ac8053f5790fe7bd9756bd02c4b36596f5d
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jan 31 06:28:56 2019 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Thu Jan 31 07:34:55 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=adaf2ac8
7
8 dev-ruby/nokogumbo: 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/nokogumbo/Manifest | 1 -
14 dev-ruby/nokogumbo/nokogumbo-1.4.13.ebuild | 44 ------------------------------
15 2 files changed, 45 deletions(-)
16
17 diff --git a/dev-ruby/nokogumbo/Manifest b/dev-ruby/nokogumbo/Manifest
18 index 6173a241143..a7d952ea310 100644
19 --- a/dev-ruby/nokogumbo/Manifest
20 +++ b/dev-ruby/nokogumbo/Manifest
21 @@ -1,2 +1 @@
22 -DIST nokogumbo-1.4.13.gem 228352 BLAKE2B 60e85f1cadc2c8b98d067c9bf0f651057e709f204d7ffa7759ec68090b816e8b17a0d12dce4a5d6f6efd372c931f75ef54c439a5496d0fe696edd8795488cd8f SHA512 369743cab4a4bd3ffa5eee4f46074099afd253b66ef5ef9303b79d5e5ce1375f33b73916f1712e256044a00335bdb6595f2ce028e02169607252f32dd9dff9b0
23 DIST nokogumbo-1.5.0.gem 228352 BLAKE2B 66740dfb9bd9edea13c6bc872e1cadf855116ee7247c7691210d3eaa81ad4c7b972fe8edd02a6f7ade6c172c870923c9af3fc24b10c5594cd0255b2fa0c2cd82 SHA512 a89ec7ae4d42cce5431070e790f0f10734655654f6f680c0b949fab7527b6a811953f1c3c13d633427b40980f9e9bd434a9afe1a9d1f1e504af05246d96be77e
24
25 diff --git a/dev-ruby/nokogumbo/nokogumbo-1.4.13.ebuild b/dev-ruby/nokogumbo/nokogumbo-1.4.13.ebuild
26 deleted file mode 100644
27 index ec3ae6405f2..00000000000
28 --- a/dev-ruby/nokogumbo/nokogumbo-1.4.13.ebuild
29 +++ /dev/null
30 @@ -1,44 +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 -
36 -USE_RUBY="ruby21 ruby22 ruby23 ruby24"
37 -
38 -RUBY_FAKEGEM_RECIPE_TEST="none"
39 -
40 -RUBY_FAKEGEM_RECIPE_DOC="rdoc"
41 -RUBY_FAKEGEM_EXTRADOC="README.md"
42 -
43 -inherit ruby-fakegem
44 -
45 -DESCRIPTION="A Nokogiri interface to the Gumbo HTML5 parser"
46 -HOMEPAGE="https://github.com/rubys/nokogumbo"
47 -
48 -LICENSE="Apache-2.0"
49 -SLOT="0"
50 -KEYWORDS="~amd64 ~x86 ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
51 -IUSE=""
52 -
53 -RDEPEND+=">=dev-libs/gumbo-0.10"
54 -
55 -ruby_add_rdepend ">=dev-ruby/nokogiri-1.6.5-r1"
56 -
57 -all_ruby_prepare() {
58 - # Define rakehome in scope
59 - sed -i -e "1irakehome=File.expand_path('../../')" ext/nokogumboc/extconf.rb || die
60 -}
61 -
62 -each_ruby_configure() {
63 - ${RUBY} -Cext/nokogumboc extconf.rb || die
64 - sed -i -e 's:-Wl,--no-undefined::' ext/nokogumboc/Makefile || die
65 -}
66 -
67 -each_ruby_compile() {
68 - emake -Cext/nokogumboc V=1
69 - cp ext/nokogumboc/nokogumboc.so lib/ || die
70 -}
71 -
72 -each_ruby_test() {
73 - ${RUBY} -Ilib test-nokogumbo.rb || die
74 -}