Gentoo Archives: gentoo-commits

From: "Ian Stakenvicius (axs)" <axs@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-perl/RPC-XML: RPC-XML-0.770.0-r1.ebuild ChangeLog RPC-XML-0.770.0.ebuild
Date: Sun, 24 Aug 2014 02:42:37
Message-Id: 20140824024234.9AE483C46@oystercatcher.gentoo.org
1 axs 14/08/24 02:42:34
2
3 Modified: ChangeLog
4 Added: RPC-XML-0.770.0-r1.ebuild
5 Removed: RPC-XML-0.770.0.ebuild
6 Log:
7 bumped EAPI to 5; committed directly to stable as no other changes present and revbump helps stable systems to keep from dieing on perl-5.18 upgrade
8
9 (Portage version: 2.2.8-r1/cvs/Linux x86_64, RepoMan options: --force, signed Manifest commit with key 2B6559ED)
10
11 Revision Changes Path
12 1.75 dev-perl/RPC-XML/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/RPC-XML/ChangeLog?rev=1.75&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/RPC-XML/ChangeLog?rev=1.75&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/RPC-XML/ChangeLog?r1=1.74&r2=1.75
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/dev-perl/RPC-XML/ChangeLog,v
21 retrieving revision 1.74
22 retrieving revision 1.75
23 diff -u -r1.74 -r1.75
24 --- ChangeLog 6 Jan 2013 15:21:06 -0000 1.74
25 +++ ChangeLog 24 Aug 2014 02:42:34 -0000 1.75
26 @@ -1,6 +1,13 @@
27 # ChangeLog for dev-perl/RPC-XML
28 -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/dev-perl/RPC-XML/ChangeLog,v 1.74 2013/01/06 15:21:06 tove Exp $
30 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
31 +# $Header: /var/cvsroot/gentoo-x86/dev-perl/RPC-XML/ChangeLog,v 1.75 2014/08/24 02:42:34 axs Exp $
32 +
33 +*RPC-XML-0.770.0-r1 (24 Aug 2014)
34 +
35 + 24 Aug 2014; Ian Stakenvicius (_AxS_) <axs@g.o>
36 + +RPC-XML-0.770.0-r1.ebuild, -RPC-XML-0.770.0.ebuild:
37 + bumped EAPI to 5; committed directly to stable as no other changes present and
38 + revbump helps stable systems to keep from dieing on perl-5.18 upgrade
39
40 06 Jan 2013; Torsten Veller <tove@g.o> -RPC-XML-0.760.0.ebuild:
41 Cleanup
42
43
44
45 1.1 dev-perl/RPC-XML/RPC-XML-0.770.0-r1.ebuild
46
47 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/RPC-XML/RPC-XML-0.770.0-r1.ebuild?rev=1.1&view=markup
48 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/RPC-XML/RPC-XML-0.770.0-r1.ebuild?rev=1.1&content-type=text/plain
49
50 Index: RPC-XML-0.770.0-r1.ebuild
51 ===================================================================
52 # Copyright 1999-2014 Gentoo Foundation
53 # Distributed under the terms of the GNU General Public License v2
54 # $Header: /var/cvsroot/gentoo-x86/dev-perl/RPC-XML/RPC-XML-0.770.0-r1.ebuild,v 1.1 2014/08/24 02:42:34 axs Exp $
55
56 EAPI=5
57
58 MODULE_AUTHOR=RJRAY
59 MODULE_VERSION=0.77
60 inherit perl-module
61
62 DESCRIPTION="An implementation of XML-RPC"
63
64 SLOT="0"
65 LICENSE="|| ( Artistic-2 LGPL-2.1 )"
66 KEYWORDS="amd64 ppc x86 ~x86-fbsd"
67 IUSE=""
68
69 SRC_TEST="do"
70
71 RDEPEND="
72 >=dev-perl/libwww-perl-5.834.0
73 >=dev-perl/XML-LibXML-1.850.0
74 >=dev-perl/XML-Parser-2.310.0
75 dev-perl/net-server
76 >=virtual/perl-Scalar-List-Utils-1.200.0
77 dev-perl/URI
78 "
79 DEPEND="${RDEPEND}"
80
81 pkg_postinst() {
82 perl-module_pkg_postinst
83
84 SETWARN=0
85 has_version '=www-servers/apache-2*' && HAVE_APACHE2=1
86 has_version '>=www-apache/mod_perl-2.0' && HAVE_MP2=2
87
88 [ -n "${HAVE_APACHE2}" ] && SETWARN=1
89 [ -n "${HAVE_MP2}" ] && SETWARN=1
90
91 if [ "${SETWARN}" == "1" ]; then
92 ewarn "Apache2 or mod_perl2 were detected."
93 ewarn ""
94 ewarn "NOTE FROM THE AUTHOR OF RPC-XML"
95 ewarn ""
96 ewarn "At present, this package does not work with Apache2 and the soon-to-be"
97 ewarn "mod_perl2. The changes to the API for location handlers are too drastic to"
98 ewarn "try and support both within the same class (I tried, using the compatibility"
99 ewarn "layer). Also, mp2 does not currently provide support for <Perl> sections, which"
100 ewarn "are the real strength of the Apache::RPC::Server class."
101 fi
102 }