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: Mon, 09 May 2022 04:47:17
Message-Id: 1652071629.db3333bb5055e81cd0a7e0b9af3cf54366a71317.graaff@gentoo
1 commit: db3333bb5055e81cd0a7e0b9af3cf54366a71317
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Mon May 9 04:46:05 2022 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Mon May 9 04:47:09 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=db3333bb
7
8 dev-ruby/nokogiri: add 1.13.6
9
10 Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
11
12 dev-ruby/nokogiri/Manifest | 1 +
13 dev-ruby/nokogiri/nokogiri-1.13.6.ebuild | 95 ++++++++++++++++++++++++++++++++
14 2 files changed, 96 insertions(+)
15
16 diff --git a/dev-ruby/nokogiri/Manifest b/dev-ruby/nokogiri/Manifest
17 index a1dce86d3dcc..3d02cf1af05d 100644
18 --- a/dev-ruby/nokogiri/Manifest
19 +++ b/dev-ruby/nokogiri/Manifest
20 @@ -1,2 +1,3 @@
21 DIST nokogiri-1.13.4-git.tgz 6249271 BLAKE2B bc8569a0c80e4efcedd6c5bb8a46c8504cc33ec3d2acdcefe2718047ffabef9404c76003cd279ac55e5a5fb17243af12c335b7d9e300b90d8a97e84015cf92bc SHA512 cca3e8558f8739cca2424e461a5e048a3675a23bcb6549f1c71ecfea0729859cda84ef3bf09a81d2b419e1a7b8ff2616a8dd84ac12f6e1f32b9626a0bd3e1bc4
22 DIST nokogiri-1.13.5-git.tgz 6249007 BLAKE2B 6fc7eed6c10f74105917a94e5e8acb0576fbe8e64fecad70e4256d352e1e4fc9cb101be2d518420c7351f72fd03ab385c3dccc3d6442638fe9e6ecfda581eb21 SHA512 a5608c137f60ec3302810154cbe8176bcf281ddae1ac075c08b71d23fd124ac6bc3ca349f326232090475e80524bd53927449cbcba0c6087917c270ddf9e6eb2
23 +DIST nokogiri-1.13.6-git.tgz 6249974 BLAKE2B db6a7fd70cd88fa784e70fd33102ad2a0d65a848a713bd93907d3c77b7ecc101a4f0a38febf3265b25967e045bf9091e46cf319702c08319e32f94d57a946985 SHA512 96f4e52332052bfae0d88d8c93cf334f8484b51290cafe8c1d43c820ba6ac5aa74b187c37e7177e62435d6101d859c16555b715fa88fcb06da742c84fd0e7486
24
25 diff --git a/dev-ruby/nokogiri/nokogiri-1.13.6.ebuild b/dev-ruby/nokogiri/nokogiri-1.13.6.ebuild
26 new file mode 100644
27 index 000000000000..82f99f83e8bc
28 --- /dev/null
29 +++ b/dev-ruby/nokogiri/nokogiri-1.13.6.ebuild
30 @@ -0,0 +1,95 @@
31 +# Copyright 1999-2022 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=8
35 +
36 +USE_RUBY="ruby26 ruby27 ruby30 ruby31"
37 +
38 +RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md ROADMAP.md SECURITY.md"
39 +
40 +RUBY_FAKEGEM_GEMSPEC="nokogiri.gemspec"
41 +
42 +RUBY_FAKEGEM_EXTENSIONS=(ext/nokogiri/extconf.rb)
43 +
44 +inherit ruby-fakegem multilib
45 +
46 +DESCRIPTION="Nokogiri is an HTML, XML, SAX, and Reader parser"
47 +HOMEPAGE="https://www.nokogiri.org/"
48 +LICENSE="MIT"
49 +SRC_URI="https://github.com/sparklemotion/nokogiri/archive/v${PV}.tar.gz -> ${P}-git.tgz"
50 +
51 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
52 +SLOT="0"
53 +IUSE=""
54 +
55 +RDEPEND="${RDEPEND}
56 + >=dev-libs/libxml2-2.9.14:=
57 + >=dev-libs/libxslt-1.1.35
58 + sys-libs/zlib
59 + virtual/libiconv"
60 +DEPEND="${DEPEND}
61 + >=dev-libs/libxml2-2.9.14
62 + >=dev-libs/libxslt-1.1.35
63 + sys-libs/zlib
64 + virtual/libiconv"
65 +
66 +ruby_add_rdepend ">=dev-ruby/racc-1.4:0"
67 +
68 +ruby_add_bdepend "
69 + dev-ruby/mini_portile2:2.8
70 + >=dev-ruby/rexical-1.0.7
71 + dev-ruby/rdoc
72 + test? ( dev-ruby/minitest )"
73 +
74 +all_ruby_prepare() {
75 + sed -i \
76 + -e '/tasks\/cross_compile/s:^:#:' \
77 + -e '/:test.*prerequisites/s:^:#:' \
78 + -e '/license/ s:^:#:' \
79 + Rakefile || die
80 + # Remove the cross compilation options since they interfere with
81 + # native building.
82 + sed -i -e 's/cross_compile = true/cross_compile = false/' Rakefile || die
83 + sed -i -e '/cross_config_options/d' Rakefile || die
84 +
85 + sed -e '/simplecov/,/^end/ s:^:#:' \
86 + -e '/reporters/I s:^:#:' \
87 + -i test/helper.rb || die
88 +
89 + # There is no need for mini_portile2 to be a runtime dependency on Gentoo
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 +}