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/nokogiri/
Date: Thu, 08 Apr 2021 06:07:34
Message-Id: 1617861607.621dfe5c01d8887d5bc622f25bbdcd9ce40bd14c.graaff@gentoo
1 commit: 621dfe5c01d8887d5bc622f25bbdcd9ce40bd14c
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Thu Apr 8 06:00:07 2021 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Thu Apr 8 06:00:07 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=621dfe5c
7
8 dev-ruby/nokogiri: add 1.11.3
9
10 Package-Manager: Portage-3.0.17, Repoman-3.0.2
11 Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
12
13 dev-ruby/nokogiri/Manifest | 1 +
14 dev-ruby/nokogiri/nokogiri-1.11.3.ebuild | 102 +++++++++++++++++++++++++++++++
15 2 files changed, 103 insertions(+)
16
17 diff --git a/dev-ruby/nokogiri/Manifest b/dev-ruby/nokogiri/Manifest
18 index 7838d3799fc..43a84f05e3e 100644
19 --- a/dev-ruby/nokogiri/Manifest
20 +++ b/dev-ruby/nokogiri/Manifest
21 @@ -1,2 +1,3 @@
22 DIST nokogiri-1.11.1-git.tgz 5835648 BLAKE2B e8c84fe72063ac3d764ea71fe469a8f7d0499487e523563e0ab737e69e06279b112c666aa254e0075740b27690ba96162a5c6e39f125b58360fbb5720104935d SHA512 47974f05b6788f2e04ef9ed7d0fc33790cdadbd258408e0242a14521cc996b6d42878b5bba3334b4bde2970dbadda0cde93a00e30fcddd100401186a90617502
23 DIST nokogiri-1.11.2-git.tgz 5838718 BLAKE2B 2310ce25699e1afa507e4428fc2d698018cc2e07590f85a9f97954c583b02122f2356e87537b3b5d11459373582fb3dc367a4d7969dc871e86065b739becc80f SHA512 9d155647fd400ad34c05c0b0e7c3d459eea07c68cbe829b5021e5040c034d7032c0e8878121d54d3b3d1233dbe8a1c0c195d6189a84aac30e68657b82b4f1eaa
24 +DIST nokogiri-1.11.3-git.tgz 5868894 BLAKE2B 3140c875535f3ceb7e13b27c4905c7caeae09acc8319a8649066469936fccba311a25a4923fdd5042d8af69144d606fd58f8b22a6d1fe3030ca30f4316d91448 SHA512 7a0d2197f1dcc67adcae7219891cc59cfdb3234e5a7b843686b1dd7d02bbcc57a2b7589ea880f856ee630a0335053bada02b99ac2d994d785baba266f994e20c
25
26 diff --git a/dev-ruby/nokogiri/nokogiri-1.11.3.ebuild b/dev-ruby/nokogiri/nokogiri-1.11.3.ebuild
27 new file mode 100644
28 index 00000000000..66e091dead9
29 --- /dev/null
30 +++ b/dev-ruby/nokogiri/nokogiri-1.11.3.ebuild
31 @@ -0,0 +1,102 @@
32 +# Copyright 1999-2021 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +
37 +USE_RUBY="ruby25 ruby26 ruby27 ruby30"
38 +
39 +RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md ROADMAP.md SECURITY.md"
40 +
41 +RUBY_FAKEGEM_EXTRAINSTALL="ext"
42 +
43 +RUBY_FAKEGEM_GEMSPEC="nokogiri.gemspec"
44 +
45 +RUBY_FAKEGEM_EXTENSIONS=(ext/nokogiri/extconf.rb)
46 +
47 +inherit ruby-fakegem multilib
48 +
49 +DESCRIPTION="Nokogiri is an HTML, XML, SAX, and Reader parser"
50 +HOMEPAGE="https://www.nokogiri.org/"
51 +LICENSE="MIT"
52 +SRC_URI="https://github.com/sparklemotion/nokogiri/archive/v${PV}.tar.gz -> ${P}-git.tgz"
53 +
54 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
55 +SLOT="0"
56 +IUSE=""
57 +
58 +RDEPEND="${RDEPEND}
59 + >=dev-libs/libxml2-2.9.10:=
60 + >=dev-libs/libxslt-1.1.34
61 + virtual/libiconv"
62 +DEPEND="${DEPEND}
63 + >=dev-libs/libxml2-2.9.10
64 + >=dev-libs/libxslt-1.1.34
65 + virtual/libiconv"
66 +
67 +ruby_add_rdepend ">=dev-ruby/racc-1.4:0"
68 +
69 +ruby_add_bdepend "
70 + >=dev-ruby/pkg-config-1.1.7
71 + >=dev-ruby/rexical-1.0.7
72 + dev-ruby/rdoc
73 + test? ( dev-ruby/minitest )"
74 +
75 +all_ruby_prepare() {
76 + sed -i \
77 + -e '/tasks\/cross_compile/s:^:#:' \
78 + -e '/:test.*prerequisites/s:^:#:' \
79 + -e '/license/ s:^:#:' \
80 + Rakefile || die
81 + # Remove the cross compilation options since they interfere with
82 + # native building.
83 + sed -i -e 's/cross_compile = true/cross_compile = false/' Rakefile || die
84 + sed -i -e '/cross_config_options/d' Rakefile || die
85 +
86 + sed -e '/simplecov/,/^end/ s:^:#:' \
87 + -e '/reporters/I s:^:#:' \
88 + -i test/helper.rb || die
89 +
90 + sed -i -e '/mini_portile2/ s:^:#:' ${RUBY_FAKEGEM_GEMSPEC} || die
91 +}
92 +
93 +each_ruby_configure() {
94 + NOKOGIRI_USE_SYSTEM_LIBRARIES=true \
95 + ${RUBY} -Cext/${PN} extconf.rb \
96 + --with-zlib-include="${EPREFIX}"/usr/include \
97 + --with-zlib-lib="${EPREFIX}"/$(get_libdir) \
98 + --with-iconv-include="${EPREFIX}"/usr/include \
99 + --with-iconv-lib="${EPREFIX}"/$(get_libdir) \
100 + --with-xml2-include="${EPREFIX}"/usr/include/libxml2 \
101 + --with-xml2-lib="${EPREFIX}"/usr/$(get_libdir) \
102 + --with-xslt-dir="${EPREFIX}"/usr \
103 + --with-iconvlib=iconv \
104 + || die "extconf.rb failed"
105 +}
106 +
107 +each_ruby_compile() {
108 + if ! [[ -f lib/nokogiri/css/tokenizer.rb ]]; then
109 + ${RUBY} -S rake lib/nokogiri/css/tokenizer.rb || die "rexical failed"
110 + fi
111 +
112 + if ! [[ -f lib/nokogiri/css/parser.rb ]]; then
113 + ${RUBY} -S rake lib/nokogiri/css/parser.rb || die "racc failed"
114 + fi
115 +
116 + emake -Cext/${PN} \
117 + V=1 \
118 + CFLAGS="${CFLAGS} -fPIC" \
119 + archflag="${LDFLAGS}" || die "make extension failed"
120 + cp -l ext/${PN}/${PN}$(get_modname) lib/${PN}/ || die
121 +}
122 +
123 +each_ruby_test() {
124 + ${RUBY} -Ilib:.:test -e 'Dir["test/**/test_*.rb"].each {|f| require f}' || die
125 +}
126 +
127 +each_ruby_install() {
128 + each_fakegem_install
129 +
130 + # Clean up "ext" directory before installing it. nokogumbo expects
131 + # the header files and shared object to be in ext.
132 + rm -rf ext/java ext/nokogiri/*.o ext/nokogiri/{mkmf.log,Makefile} || die
133 +}