mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-06 00:48:18 -07:00
dev-ruby/nokogiri: add 1.18.10
Signed-off-by: Hans de Graaff <graaff@gentoo.org>
This commit is contained in:
@@ -1,3 +1,4 @@
|
||||
DIST nokogiri-1.18.10-git.tgz 11053859 BLAKE2B adeaf49362101011e4ca6327799e6b4837ade20eab255f29e65dafaf64892c3a4f02f0f5bf6b923988314d16c26271f73db4816758c5e8a4ee8c42fb626b0778 SHA512 0680a972b99c3f1a5de2b4fe6590446811d192a600f8b058d3022265acb69037bd0c7874a578a7d58725fa9c0afa205afd79441647986b4f6737239837c21816
|
||||
DIST nokogiri-1.18.7-git.tgz 11053819 BLAKE2B 37feac55a841a8ca0e4b6df023abb28608e30e410ab6fe1fa5d71d8973c186145d006965f9e9ae94c2d1fe6e9d7f7b8a4d267ff047965bb7b133d71811726c93 SHA512 de0e28e566209e41dde9931058aac94a832a68d991881dc51919f69be1eb9a517e25e3b74136b1ba331d40ae940356371240c78610eaf828c9609ce4da3f407d
|
||||
DIST nokogiri-1.18.8-git.tgz 11053885 BLAKE2B 5ff4eac2aba046114be84791a3aafc436558ea52cd537d5ae58b259d30686ac4e6306d7f691a8bd3e6c328b90c03d925ef6f0e6d9e58c148f936e9691fae838b SHA512 cefec463825c7664dc81b8668d8bf18a9fa4b659dbece0d1251c913eeccac1c762fb30fdd183e8fdd4a3da89e8cfa1bf828a1d9b11809c6f8c61fd4efa990306
|
||||
DIST nokogiri-1.18.9-git.tgz 11060237 BLAKE2B c4eb387d0bd0883997b6d911e70c2474a750f70e0fafe7a87fe2c564d7d063b9f7c55c9a6bce9aeef52c7facc19f0b0ae38a6bce1d71d82f151527029861af8c SHA512 55b7d6f4b88cdb770c51e21ddc97b373343b25d3bd1250a69c4bb0dfcf34bf5a93624c15279b567be5fd6d04bb4e47a68ce5d8ead779493ad498286deeeb71e0
|
||||
|
||||
100
dev-ruby/nokogiri/nokogiri-1.18.10.ebuild
Normal file
100
dev-ruby/nokogiri/nokogiri-1.18.10.ebuild
Normal file
@@ -0,0 +1,100 @@
|
||||
# Copyright 1999-2025 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
USE_RUBY="ruby32 ruby33 ruby34"
|
||||
|
||||
RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md ROADMAP.md SECURITY.md"
|
||||
|
||||
RUBY_FAKEGEM_GEMSPEC="nokogiri.gemspec"
|
||||
|
||||
RUBY_FAKEGEM_EXTENSIONS=(ext/nokogiri/extconf.rb)
|
||||
|
||||
inherit ruby-fakegem multilib
|
||||
|
||||
DESCRIPTION="Nokogiri is an HTML, XML, SAX, and Reader parser"
|
||||
HOMEPAGE="https://nokogiri.org/"
|
||||
SRC_URI="https://github.com/sparklemotion/nokogiri/archive/v${PV}.tar.gz -> ${P}-git.tgz"
|
||||
LICENSE="MIT"
|
||||
|
||||
SLOT="0"
|
||||
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~arm64-macos"
|
||||
IUSE="test"
|
||||
|
||||
RDEPEND="
|
||||
>=dev-libs/libxml2-2.13.9:=
|
||||
>=dev-libs/libxslt-1.1.43
|
||||
>=sys-libs/zlib-1.3.1
|
||||
virtual/libiconv"
|
||||
DEPEND="
|
||||
>=dev-libs/libxml2-2.13.9:=
|
||||
>=dev-libs/libxslt-1.1.43
|
||||
>=sys-libs/zlib-1.3.1
|
||||
virtual/libiconv"
|
||||
|
||||
ruby_add_rdepend ">=dev-ruby/racc-1.4:0"
|
||||
|
||||
ruby_add_bdepend "
|
||||
dev-ruby/mini_portile2:2.8
|
||||
>=dev-ruby/rexical-1.0.7
|
||||
dev-ruby/rdoc
|
||||
test? ( dev-ruby/minitest dev-ruby/rubyzip )"
|
||||
|
||||
all_ruby_prepare() {
|
||||
sed -i \
|
||||
-e '/tasks\/cross_compile/s:^:#:' \
|
||||
-e '/:test.*prerequisites/s:^:#:' \
|
||||
-e '/license/ s:^:#:' \
|
||||
Rakefile || die
|
||||
# Remove the cross compilation options since they interfere with
|
||||
# native building.
|
||||
sed -i -e 's/cross_compile = true/cross_compile = false/' Rakefile || die
|
||||
sed -i -e '/cross_config_options/d' Rakefile || die
|
||||
|
||||
sed -e '/reporters/I s:^:#:' \
|
||||
-i test/helper.rb || die
|
||||
|
||||
# There is no need for mini_portile2 to be a runtime dependency on Gentoo
|
||||
sed -i -e '/mini_portile2/ s:^:#:' ${RUBY_FAKEGEM_GEMSPEC} || die
|
||||
|
||||
# Avoid a failing test already dropped upstream.
|
||||
sed -e '128 s:^:#:' \
|
||||
-i test/xml/test_document_encoding.rb || die
|
||||
}
|
||||
|
||||
each_ruby_configure() {
|
||||
NOKOGIRI_USE_SYSTEM_LIBRARIES=true \
|
||||
${RUBY} -Cext/${PN} extconf.rb \
|
||||
--with-zlib-include="${EPREFIX}"/usr/include \
|
||||
--with-zlib-lib="${EPREFIX}"/$(get_libdir) \
|
||||
--with-iconv-include="${EPREFIX}"/usr/include \
|
||||
--with-iconv-lib="${EPREFIX}"/$(get_libdir) \
|
||||
--with-xml2-include="${EPREFIX}"/usr/include/libxml2 \
|
||||
--with-xml2-lib="${EPREFIX}"/usr/$(get_libdir) \
|
||||
--with-xslt-dir="${EPREFIX}"/usr \
|
||||
--with-iconvlib=iconv \
|
||||
|| die "extconf.rb failed"
|
||||
}
|
||||
|
||||
each_ruby_compile() {
|
||||
if ! [[ -f lib/nokogiri/css/tokenizer.rb ]]; then
|
||||
${RUBY} -S rake lib/nokogiri/css/tokenizer.rb || die "rexical failed"
|
||||
fi
|
||||
|
||||
if ! [[ -f lib/nokogiri/css/parser.rb ]]; then
|
||||
${RUBY} -S rake lib/nokogiri/css/parser.rb || die "racc failed"
|
||||
fi
|
||||
|
||||
emake -Cext/${PN} \
|
||||
V=1 \
|
||||
CFLAGS="${CFLAGS} -fPIC" \
|
||||
archflag="${LDFLAGS}" || die "make extension failed"
|
||||
cp -l ext/${PN}/${PN}$(get_modname) lib/${PN}/ || die
|
||||
}
|
||||
|
||||
each_ruby_test() {
|
||||
MT_NO_PLUGINS=1 \
|
||||
RUBY_MEMCHECK_RUNNING=true \
|
||||
${RUBY} -Ilib:.:test -e 'Dir["test/**/test_*.rb"].each {|f| require f}' || die
|
||||
}
|
||||
Reference in New Issue
Block a user