Gentoo Archives: gentoo-commits

From: "Robin H. Johnson (robbat2)" <robbat2@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-perl/RPC-XML: RPC-XML-0.760.0.ebuild ChangeLog
Date: Tue, 06 Sep 2011 23:20:24
Message-Id: 20110906232013.BBF1C2004C@flycatcher.gentoo.org
1 robbat2 11/09/06 23:20:13
2
3 Modified: ChangeLog
4 Added: RPC-XML-0.760.0.ebuild
5 Log:
6 Version bump via perl-bump experimental tool.
7
8 (Portage version: 2.2.0_alpha51/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.61 dev-perl/RPC-XML/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/RPC-XML/ChangeLog?rev=1.61&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/RPC-XML/ChangeLog?rev=1.61&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/RPC-XML/ChangeLog?r1=1.60&r2=1.61
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-perl/RPC-XML/ChangeLog,v
20 retrieving revision 1.60
21 retrieving revision 1.61
22 diff -p -w -b -B -u -u -r1.60 -r1.61
23 --- ChangeLog 4 Sep 2011 11:23:07 -0000 1.60
24 +++ ChangeLog 6 Sep 2011 23:20:13 -0000 1.61
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-perl/RPC-XML
27 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-perl/RPC-XML/ChangeLog,v 1.60 2011/09/04 11:23:07 tove Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-perl/RPC-XML/ChangeLog,v 1.61 2011/09/06 23:20:13 robbat2 Exp $
30 +
31 +*RPC-XML-0.760.0 (06 Sep 2011)
32 +
33 + 06 Sep 2011; Robin H. Johnson <robbat2@g.o> +RPC-XML-0.760.0.ebuild:
34 + Version bump via perl-bump experimental tool.
35
36 04 Sep 2011; Torsten Veller <tove@g.o> -RPC-XML-0.740.ebuild:
37 Cleanup
38
39
40
41 1.1 dev-perl/RPC-XML/RPC-XML-0.760.0.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/RPC-XML/RPC-XML-0.760.0.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/RPC-XML/RPC-XML-0.760.0.ebuild?rev=1.1&content-type=text/plain
45
46 Index: RPC-XML-0.760.0.ebuild
47 ===================================================================
48 # Copyright 1999-2011 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-perl/RPC-XML/RPC-XML-0.760.0.ebuild,v 1.1 2011/09/06 23:20:13 robbat2 Exp $
51
52 EAPI=4
53
54 MODULE_AUTHOR=RJRAY
55 MODULE_VERSION=0.76
56 inherit perl-module
57
58 DESCRIPTION="An implementation of XML-RPC"
59
60 SLOT="0"
61 LICENSE="|| ( Artistic-2 LGPL-2.1 )"
62 KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~sparc ~x86 ~x86-fbsd"
63 IUSE=""
64
65 SRC_TEST="do"
66
67 RDEPEND=">=dev-perl/libwww-perl-5.834
68 >=dev-perl/XML-LibXML-1.70
69 >=dev-perl/XML-Parser-2.31
70 dev-perl/net-server
71 >=virtual/perl-Scalar-List-Utils-1.20"
72 DEPEND="${RDEPEND}"
73
74 pkg_postinst() {
75 perl-module_pkg_postinst
76
77 SETWARN=0
78 has_version '=www-servers/apache-2*' && HAVE_APACHE2=1
79 has_version '>=www-apache/mod_perl-2.0' && HAVE_MP2=2
80
81 [ -n "${HAVE_APACHE2}" ] && SETWARN=1
82 [ -n "${HAVE_MP2}" ] && SETWARN=1
83
84 if [ "$SETWARN" == "1" ]; then
85 ewarn "Apache2 or mod_perl2 were detected."
86 ewarn ""
87 ewarn "NOTE FROM THE AUTHOR OF RPC-XML"
88 ewarn ""
89 ewarn "At present, this package does not work with Apache2 and the soon-to-be"
90 ewarn "mod_perl2. The changes to the API for location handlers are too drastic to"
91 ewarn "try and support both within the same class (I tried, using the compatibility"
92 ewarn "layer). Also, mp2 does not currently provide support for <Perl> sections, which"
93 ewarn "are the real strength of the Apache::RPC::Server class."
94 fi
95 }