commit:     f702aad972d68c572e5145005e889a105654248b
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Jul 15 07:20:16 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Jul 15 07:20:16 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f702aad9

dev-perl/XML-LibXML: add 2.20.900

Closes: https://bugs.gentoo.org/906095
Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-perl/XML-LibXML/Manifest                   |  1 +
 dev-perl/XML-LibXML/XML-LibXML-2.20.900.ebuild | 82 ++++++++++++++++++++++++++
 2 files changed, 83 insertions(+)

diff --git a/dev-perl/XML-LibXML/Manifest b/dev-perl/XML-LibXML/Manifest
index 6a8cb0cf4fe5..481944e0a5ea 100644
--- a/dev-perl/XML-LibXML/Manifest
+++ b/dev-perl/XML-LibXML/Manifest
@@ -1,2 +1,3 @@
 DIST XML-LibXML-2.0207.tar.gz 462595 BLAKE2B 
9ebb4786dcd45f552ef31ba0854693e876b6f8098b577401429651e5eb55792bb623185db371d2578432c00031ce2cfb66603e08290d7cf8f74dee5fe45c143d
 SHA512 
86bf4200c800e1295161c3217892398dbc65e107ad1a3df8ea7f237350ba67d88ad7b18ab7123e647053a8721bc13a8959ddb101fdc6de18dcaef02c0f0f5b58
 DIST XML-LibXML-2.0208.tar.gz 465763 BLAKE2B 
df3e1c917c4b6aec49650668dca8a9db3f83e9060ab7795495ef4b505f8970d11294c687df9805b55db4f81a5b81121b463ee6258bbe6106f63d20b6a901b5b2
 SHA512 
b8407359b9111b43247cc57b6e9e54c4e99402c9b7e939e49beb752be8fd1ce0e31a98e07dd5d1f7eaa7e37aae25571c38a14792f9e5a64c1533a0387c71423d
+DIST XML-LibXML-2.0209.tar.gz 466118 BLAKE2B 
665370499c16e60513263234c030d2be0d3a7c23563cae6ef06e125c3437057d8b835403b506c46caf864b6afff6e34370615d2508fb6891de99a0580bdf6f80
 SHA512 
3fd41775477ccb2eb9c72c72453436edcf2ed3db9aa1bbf53451c1407c5b6feeafd3ecc9f30507679f4dba15476044f43b5048da787c20a200831c0669b49262

diff --git a/dev-perl/XML-LibXML/XML-LibXML-2.20.900.ebuild 
b/dev-perl/XML-LibXML/XML-LibXML-2.20.900.ebuild
new file mode 100644
index 000000000000..2db4df091746
--- /dev/null
+++ b/dev-perl/XML-LibXML/XML-LibXML-2.20.900.ebuild
@@ -0,0 +1,82 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DIST_AUTHOR=SHLOMIF
+DIST_VERSION=2.0209
+DIST_EXAMPLES=("example/*")
+inherit perl-module
+
+DESCRIPTION="Perl binding for libxml2"
+
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86 ~x64-macos"
+IUSE="minimal"
+
+# >= on XML-Sax needed to avoid "miscompilation" (essentially empty install), 
as newer XML-Sax
+# has the ROOT check fixed. Didn't happen with XML-SAX-Expat, but best to be 
careful.
+# bug #840053
+RDEPEND="
+       virtual/perl-Carp
+       virtual/perl-Encode
+       >=virtual/perl-Exporter-5.570.0
+       virtual/perl-IO
+       virtual/perl-Scalar-List-Utils
+       >=dev-perl/XML-NamespaceSupport-1.70.0
+       >=dev-perl/XML-SAX-1.20.0-r1
+       dev-perl/XML-SAX-Base
+       >=dev-libs/libxml2-2.6.21:2=
+       virtual/perl-parent
+"
+BDEPEND="${RDEPEND}
+       virtual/perl-ExtUtils-MakeMaker
+       dev-perl/Alien-Build
+       >=dev-perl/Alien-Libxml2-0.140.0
+       test? (
+               !minimal? (
+                       dev-perl/Test-LeakTrace
+               )
+       )
+"
+DEPEND=">=dev-libs/libxml2-2.6.21:2="
+
+PATCHES=(
+       "${FILESDIR}"/${PN}-2.20.800-modern-c.patch
+)
+
+PERL_RM_FILES=(
+       "t/cpan-changes.t" "t/pod-files-presence.t" "t/pod.t"
+       "t/release-kwalitee.t" "t/style-trailing-space.t"
+       "t/11memory.t"
+)
+
+src_compile() {
+       export SKIP_SAX_INSTALL=1
+       perl-module_src_compile
+}
+
+pkg_postinst() {
+       pkg_update_parser add XML::LibXML::SAX::Parser
+       pkg_update_parser add XML::LibXML::SAX
+}
+
+pkg_postrm() {
+       pkg_update_parser remove XML::LibXML::SAX::Parser
+       pkg_update_parser remove XML::LibXML::SAX
+}
+
+pkg_update_parser() {
+       # pkg_update_parser [add|remove] $parser_module
+       local action=$1
+       local parser_module=$2
+
+       if [[ -z "${ROOT}" ]] ; then
+               einfo "Update Parser: $1 $2"
+               perl -MXML::SAX -e 
"XML::SAX->${action}_parser(q(${parser_module}))->save_parsers()" \
+                       || ewarn "Update Parser: $1 $2 failed"
+       else
+               elog "To $1 $2 run:"
+               elog "perl -MXML::SAX -e 
'XML::SAX->${action}_parser(q(${parser_module}))->save_parsers()'"
+       fi
+}

Reply via email to