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