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: Tue, 30 Jan 2018 05:34:43
Message-Id: 1517290153.f33f89b7f03c93327b05d0b4da87ad5d845bb030.graaff@gentoo
1 commit: f33f89b7f03c93327b05d0b4da87ad5d845bb030
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jan 30 05:29:13 2018 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Tue Jan 30 05:29:13 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f33f89b7
7
8 dev-ruby/nokogiri: add 1.8.2
9
10 Package-Manager: Portage-2.3.19, Repoman-2.3.6
11
12 dev-ruby/nokogiri/Manifest | 1 +
13 dev-ruby/nokogiri/nokogiri-1.8.2.ebuild | 93 +++++++++++++++++++++++++++++++++
14 2 files changed, 94 insertions(+)
15
16 diff --git a/dev-ruby/nokogiri/Manifest b/dev-ruby/nokogiri/Manifest
17 index da85bfade97..e80a14a7a00 100644
18 --- a/dev-ruby/nokogiri/Manifest
19 +++ b/dev-ruby/nokogiri/Manifest
20 @@ -1,3 +1,4 @@
21 DIST nokogiri-1.6.8.1-git.tgz 5708322 BLAKE2B 54a97ac8a4bc964f9ad2a1c2eabf23864d1930e45148fb9f2bfa6edddc19670acf1066f12d01cba5654489dcd84b3021c66f942bb1fd51aa9164a2cf9053f5cd SHA512 a4546917e5979810ad4fe0f693f11f00fc719379fecefa68e36e512b128db1de083add4e80dfe3fa0546294ec68aa0f3f890575812b851e884bcbf2165f944d7
22 DIST nokogiri-1.7.1-git.tgz 5712371 BLAKE2B cd90c8a48a25a81f65a485ddd6a1df6667f49b2d4242c71750c76ae3d41f439f549a82ae72d87dd3f8022fca9fa917efc91ad3f097f07783666a3712c72ee241 SHA512 82a10eff835d562a215f8a38e660f43f5d05f54fae6c6ec21cb5e4797b747be6a8eeb2e42f3c2b5710294073be8d1a987d881f7845526f0ea3ca52a0feb508d8
23 DIST nokogiri-1.8.1-git.tgz 5747155 BLAKE2B 40eaa7506f646e47caced25e87c125f2650d69e7194491061f734de9d4b58ee3efcab202e528c8d416683bf1642b0f1e7cbeb7268e1fa32549ae2a427d55227d SHA512 fbd5e9c3edb0f7099ed7923ccb8922e778859ee1fb226c756f515f69c5f16cc4103644d4a569e16aa05374c6e94c691572255ea82af0002f95879ed396ccdc4a
24 +DIST nokogiri-1.8.2-git.tgz 5749541 BLAKE2B bb3baa299fd27caf43890a752f93cfc1aafd5897f19783cbc6732ce2924bf9c86639ccabad9f26506cf228f5c179afae4cde57150769780c30d9dfc3403359b0 SHA512 5f34f8a055844cd034682b11e4408fb12b60640e52ea64886a13cb5504d94904eace2a85d5047b21f946f1a296ee562ab3677791d53093123ac136062167294d
25
26 diff --git a/dev-ruby/nokogiri/nokogiri-1.8.2.ebuild b/dev-ruby/nokogiri/nokogiri-1.8.2.ebuild
27 new file mode 100644
28 index 00000000000..1d1eaa831b0
29 --- /dev/null
30 +++ b/dev-ruby/nokogiri/nokogiri-1.8.2.ebuild
31 @@ -0,0 +1,93 @@
32 +# Copyright 1999-2018 Gentoo Foundation
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=6
36 +
37 +USE_RUBY="ruby22 ruby23 ruby24 ruby25"
38 +
39 +RUBY_FAKEGEM_RECIPE_DOC="rdoc"
40 +RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md ROADMAP.md STANDARD_RESPONSES.md"
41 +
42 +RUBY_FAKEGEM_EXTRAINSTALL="ext"
43 +
44 +inherit ruby-fakegem eutils multilib
45 +
46 +DESCRIPTION="Nokogiri is an HTML, XML, SAX, and Reader parser"
47 +HOMEPAGE="http://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 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
52 +SLOT="0"
53 +IUSE=""
54 +
55 +RDEPEND="${RDEPEND}
56 + >=dev-libs/libxml2-2.9.7:=
57 + >=dev-libs/libxslt-1.1.30
58 + virtual/libiconv"
59 +DEPEND="${DEPEND}
60 + >=dev-libs/libxml2-2.9.7
61 + >=dev-libs/libxslt-1.1.30
62 + virtual/libiconv"
63 +
64 +ruby_add_bdepend "
65 + dev-ruby/hoe
66 + >=dev-ruby/pkg-config-1.1.7
67 + dev-ruby/rexical
68 + dev-ruby/rdoc
69 + dev-ruby/racc
70 + test? ( dev-ruby/minitest )"
71 +
72 +all_ruby_prepare() {
73 + sed -i \
74 + -e '/tasks\/cross_compile/s:^:#:' \
75 + -e '/:test.*prerequisites/s:^:#:' \
76 + -e '/license/ s:^:#:' \
77 + Rakefile || die
78 + # Remove the cross compilation options since they interfere with
79 + # native building.
80 + sed -i -e 's/cross_compile = true/cross_compile = false/' Rakefile || die
81 + sed -i -e '/cross_config_options/d' Rakefile || die
82 +}
83 +
84 +each_ruby_configure() {
85 + NOKOGIRI_USE_SYSTEM_LIBRARIES=true \
86 + ${RUBY} -Cext/${PN} extconf.rb \
87 + --with-zlib-include="${EPREFIX}"/usr/include \
88 + --with-zlib-lib="${EPREFIX}"/$(get_libdir) \
89 + --with-iconv-include="${EPREFIX}"/usr/include \
90 + --with-iconv-lib="${EPREFIX}"/$(get_libdir) \
91 + --with-xml2-include="${EPREFIX}"/usr/include/libxml2 \
92 + --with-xml2-lib="${EPREFIX}"/usr/$(get_libdir) \
93 + --with-xslt-dir="${EPREFIX}"/usr \
94 + --with-iconvlib=iconv \
95 + || die "extconf.rb failed"
96 +}
97 +
98 +each_ruby_compile() {
99 + if ! [[ -f lib/nokogiri/css/tokenizer.rb ]]; then
100 + ${RUBY} -S rake lib/nokogiri/css/tokenizer.rb || die "rexical failed"
101 + fi
102 +
103 + if ! [[ -f lib/nokogiri/css/parser.rb ]]; then
104 + ${RUBY} -S rake lib/nokogiri/css/parser.rb || die "racc failed"
105 + fi
106 +
107 + emake -Cext/${PN} \
108 + V=1 \
109 + CFLAGS="${CFLAGS} -fPIC" \
110 + archflag="${LDFLAGS}" || die "make extension failed"
111 + cp -l ext/${PN}/${PN}$(get_modname) lib/${PN}/ || die
112 +}
113 +
114 +each_ruby_test() {
115 + ${RUBY} -Ilib:.:test -e 'Dir["test/**/test_*.rb"].each {|f| require f}' || die
116 +}
117 +
118 +each_ruby_install() {
119 + # Clean up "ext" directory before installing it. nokogumbo expects
120 + # the header files and shared object to be in ext.
121 + rm -rf ext/java ext/nokogiri/*.o ext/nokogiri/{mkmf.log,Makefile} || die
122 +
123 + each_fakegem_install
124 +}