Gentoo Archives: gentoo-commits

From: "Andreas Hüttel" <dilfridge@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-perl/RPC-XML/
Date: Mon, 02 May 2016 18:24:24
Message-Id: 1462211363.cdefec84ea16ea598032d844afdf2ab98e4480b4.dilfridge@gentoo
1 commit: cdefec84ea16ea598032d844afdf2ab98e4480b4
2 Author: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
3 AuthorDate: Mon May 2 17:49:23 2016 +0000
4 Commit: Andreas Hüttel <dilfridge <AT> gentoo <DOT> org>
5 CommitDate: Mon May 2 17:49:23 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cdefec84
7
8 dev-perl/RPC-XML: Remove old
9
10 Package-Manager: portage-2.2.28
11
12 dev-perl/RPC-XML/Manifest | 1 -
13 dev-perl/RPC-XML/RPC-XML-0.780.0.ebuild | 52 ---------------------------------
14 2 files changed, 53 deletions(-)
15
16 diff --git a/dev-perl/RPC-XML/Manifest b/dev-perl/RPC-XML/Manifest
17 index dd7b9ea..ebb2b66 100644
18 --- a/dev-perl/RPC-XML/Manifest
19 +++ b/dev-perl/RPC-XML/Manifest
20 @@ -1,3 +1,2 @@
21 DIST RPC-XML-0.77.tar.gz 205679 SHA256 e38c5d131e8c29f41ca39ac1e4b7abd33ed1c9b417e0d8ac1c24a056ce7e6f5a SHA512 960625a387da279bab93d09f8b62d4e4f3e01a008abcc5503de3661171c1a4ffd4db9a4c10c4882e77bc7d12bb14071ca875c1988a3d3126fdf6ee70d68e80c9 WHIRLPOOL aca53100c4e905eba8ad4ea763058c6e63401d6de14be5c79450143eea3167f8d335eb3ff47789396612099bce4b6eed0aeb2d2b39a3158c161a37b66f15a9dc
22 -DIST RPC-XML-0.78.tar.gz 207243 SHA256 a2c02724a29f8f3183e396d1ca69fa76650cd913334d6d429a094321f588ec6a SHA512 160c5e699d3de78fe61a2d7a307e094261054cc4936d2b909fd0d29af77ca57aa76cd62f421a714c39feb1b46f1d81b9561551884dfb7e4dc6ab560c8e3e2822 WHIRLPOOL 5c72f81b60a53ad3fe51001bb86a978a0eef8a09ef0302f54c84c4b32b89a99bcbeceed756ac4c667e4fe3716e5f3eee69327db73332651a485134e8d0f1e318
23 DIST RPC-XML-0.79.tar.gz 209612 SHA256 9822ffcfbea9c2bddef00507dc93f7acb83589e6ff6460ca7040f147aeebf9a9 SHA512 541ee3abf4e44cff68a2b7b7c4f78095e8e4ec479d72b52d300503bc1688f64fd01a0ff3c2cdf8e18573d19af0bae467ac68befe7ad8756e6287ed494a50ce26 WHIRLPOOL 9e42d4c4fee850283bc692cf27915bcd562282e814778253bafa15e5936ab7b8f097e09cbd13ea3ceacbd2673c033e42dda24dc50dc08eeef1ac107cf606af69
24
25 diff --git a/dev-perl/RPC-XML/RPC-XML-0.780.0.ebuild b/dev-perl/RPC-XML/RPC-XML-0.780.0.ebuild
26 deleted file mode 100644
27 index 4e81efa..0000000
28 --- a/dev-perl/RPC-XML/RPC-XML-0.780.0.ebuild
29 +++ /dev/null
30 @@ -1,52 +0,0 @@
31 -# Copyright 1999-2014 Gentoo Foundation
32 -# Distributed under the terms of the GNU General Public License v2
33 -# $Id$
34 -
35 -EAPI=5
36 -
37 -MODULE_AUTHOR=RJRAY
38 -MODULE_VERSION=0.78
39 -inherit perl-module
40 -
41 -DESCRIPTION="An implementation of XML-RPC"
42 -
43 -SLOT="0"
44 -LICENSE="|| ( Artistic-2 LGPL-2.1 )"
45 -KEYWORDS="~amd64 ~ppc ~x86 ~x86-fbsd"
46 -IUSE="test"
47 -
48 -SRC_TEST="do"
49 -
50 -RDEPEND="
51 - >=virtual/perl-File-Spec-0.800.0
52 - >=dev-perl/libwww-perl-5.834.0
53 - >=virtual/perl-Module-Load-0.240.0
54 - >=virtual/perl-Scalar-List-Utils-1.200.0
55 - >=dev-perl/XML-LibXML-1.850.0
56 - >=dev-perl/XML-Parser-2.310.0
57 -"
58 -DEPEND="${RDEPEND}
59 - virtual/perl-ExtUtils-MakeMaker
60 - test? ( >=virtual/perl-Test-Simple-0.940.0 )
61 -"
62 -
63 -pkg_postinst() {
64 - SETWARN=0
65 - has_version '=www-servers/apache-2*' && HAVE_APACHE2=1
66 - has_version '>=www-apache/mod_perl-2.0' && HAVE_MP2=2
67 -
68 - [ -n "${HAVE_APACHE2}" ] && SETWARN=1
69 - [ -n "${HAVE_MP2}" ] && SETWARN=1
70 -
71 - if [ "${SETWARN}" == "1" ]; then
72 - ewarn "Apache2 or mod_perl2 were detected."
73 - ewarn ""
74 - ewarn "NOTE FROM THE AUTHOR OF RPC-XML"
75 - ewarn ""
76 - ewarn "At present, this package does not work with Apache2 and the soon-to-be"
77 - ewarn "mod_perl2. The changes to the API for location handlers are too drastic to"
78 - ewarn "try and support both within the same class (I tried, using the compatibility"
79 - ewarn "layer). Also, mp2 does not currently provide support for <Perl> sections, which"
80 - ewarn "are the real strength of the Apache::RPC::Server class."
81 - fi
82 -}