commit: b1fc00d8dffc816030ec995461ab5fc8fa256af7
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed May 10 21:24:07 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed May 10 21:25:38 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b1fc00d8
dev-perl/XML-LibXML: add 2.20.800
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-perl/XML-LibXML/Manifest | 1 +
dev-perl/XML-LibXML/XML-LibXML-2.20.800.ebuild | 79 ++++++++++++++++++++++++++
2 files changed, 80 insertions(+)
diff --git a/dev-perl/XML-LibXML/Manifest b/dev-perl/XML-LibXML/Manifest
index 1f88619f93d8..6a8cb0cf4fe5 100644
--- a/dev-perl/XML-LibXML/Manifest
+++ b/dev-perl/XML-LibXML/Manifest
@@ -1 +1,2 @@
DIST XML-LibXML-2.0207.tar.gz 462595 BLAKE2B
9ebb4786dcd45f552ef31ba0854693e876b6f8098b577401429651e5eb55792bb623185db371d2578432c00031ce2cfb66603e08290d7cf8f74dee5fe45c143d
SHA512
86bf4200c800e1295161c3217892398dbc65e107ad1a3df8ea7f237350ba67d88ad7b18ab7123e647053a8721bc13a8959ddb101fdc6de18dcaef02c0f0f5b58
+DIST XML-LibXML-2.0208.tar.gz 465763 BLAKE2B
df3e1c917c4b6aec49650668dca8a9db3f83e9060ab7795495ef4b505f8970d11294c687df9805b55db4f81a5b81121b463ee6258bbe6106f63d20b6a901b5b2
SHA512
b8407359b9111b43247cc57b6e9e54c4e99402c9b7e939e49beb752be8fd1ce0e31a98e07dd5d1f7eaa7e37aae25571c38a14792f9e5a64c1533a0387c71423d
diff --git a/dev-perl/XML-LibXML/XML-LibXML-2.20.800.ebuild
b/dev-perl/XML-LibXML/XML-LibXML-2.20.800.ebuild
new file mode 100644
index 000000000000..f71e542ae1ff
--- /dev/null
+++ b/dev-perl/XML-LibXML/XML-LibXML-2.20.800.ebuild
@@ -0,0 +1,79 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DIST_AUTHOR=SHLOMIF
+DIST_VERSION=2.0208
+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=
+"
+
+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
+}