summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas K. Hüttel <dilfridge@gentoo.org>2021-10-04 00:28:20 +0200
committerAndreas K. Hüttel <dilfridge@gentoo.org>2021-10-04 00:47:22 +0200
commit554b49faf2cf8190de2ee64451799d79c95066e0 (patch)
treef08f8bebb4b2cb2784d8c79cb98c06dfdebdde74
parentdev-perl/X500-DN: EAPI=8 bump (diff)
downloadgentoo-554b49fa.tar.gz
gentoo-554b49fa.tar.bz2
gentoo-554b49fa.zip
dev-perl/XML-LibXML: Remove old
Package-Manager: Portage-3.0.26, Repoman-3.0.3 Signed-off-by: Andreas K. Hüttel <dilfridge@gentoo.org>
-rw-r--r--dev-perl/XML-LibXML/Manifest1
-rw-r--r--dev-perl/XML-LibXML/XML-LibXML-2.13.200.ebuild70
2 files changed, 0 insertions, 71 deletions
diff --git a/dev-perl/XML-LibXML/Manifest b/dev-perl/XML-LibXML/Manifest
index 375054bc02f9..d8e1947e0457 100644
--- a/dev-perl/XML-LibXML/Manifest
+++ b/dev-perl/XML-LibXML/Manifest
@@ -1,2 +1 @@
-DIST XML-LibXML-2.0132.tar.gz 469983 BLAKE2B 66002c35adc1156af76f16af2a1b4617ef25470cb434ee73dd9242fdc37a20d5d417ce5003ca202f69de08e053705129c083e65d483ae7e85375ae2ad6cbedc5 SHA512 3df1cb67ea955133492f2b6f8def2b28079c59e99170a31820aca69ea81686c4b67171509f1b311faab9389d200c4a24942b3950d7c0730ff1233a009b398fce
DIST XML-LibXML-2.0201.tar.gz 462237 BLAKE2B 17313daca3e87b12f0d3161f628dbd5ee3fbd233747a9602b275e13f14e9710eba424804b1f57b40c2f0f340d1c29ca0518ffc395b808b0e9851c61943d73b22 SHA512 988bc98e7f3e426202b9770ef055df68abc861b935dcdd8ecbefaaa7cd528abc35cce9bd75f2f10412917178f6b74ac6bf953feac130b1f9afe9e18c16139e47
diff --git a/dev-perl/XML-LibXML/XML-LibXML-2.13.200.ebuild b/dev-perl/XML-LibXML/XML-LibXML-2.13.200.ebuild
deleted file mode 100644
index f147c47d362c..000000000000
--- a/dev-perl/XML-LibXML/XML-LibXML-2.13.200.ebuild
+++ /dev/null
@@ -1,70 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-DIST_AUTHOR=SHLOMIF
-DIST_VERSION=2.0132
-DIST_EXAMPLES=("example/*")
-inherit perl-module
-
-DESCRIPTION="Perl binding for libxml2"
-
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux"
-IUSE="test minimal"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
- >=dev-perl/XML-SAX-0.120.0
- >=dev-libs/libxml2-2.6.21
- dev-perl/XML-SAX-Base
- >=dev-perl/XML-NamespaceSupport-1.70.0
-"
-DEPEND="${RDEPEND}
- virtual/perl-ExtUtils-MakeMaker
- test? (
- !minimal? (
- dev-perl/Test-LeakTrace
- )
- )
-"
-
-PATCHES=(
- "${FILESDIR}/${PN}-2.12.800-disable-expanding.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"
-)
-
-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 [[ "$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
-}