Gentoo Archives: gentoo-commits

From: "Torsten Veller (tove)" <tove@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-perl/RPC-XML: ChangeLog RPC-XML-0.740.ebuild
Date: Mon, 24 Jan 2011 08:31:36
Message-Id: 20110124083127.00E7720054@flycatcher.gentoo.org
1 tove 11/01/24 08:31:26
2
3 Modified: ChangeLog
4 Added: RPC-XML-0.740.ebuild
5 Log:
6 Version bump
7
8 (Portage version: 2.2.0_alpha19/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.57 dev-perl/RPC-XML/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/RPC-XML/ChangeLog?rev=1.57&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/RPC-XML/ChangeLog?rev=1.57&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/RPC-XML/ChangeLog?r1=1.56&r2=1.57
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-perl/RPC-XML/ChangeLog,v
20 retrieving revision 1.56
21 retrieving revision 1.57
22 diff -u -r1.56 -r1.57
23 --- ChangeLog 14 Jan 2011 16:39:30 -0000 1.56
24 +++ ChangeLog 24 Jan 2011 08:31:26 -0000 1.57
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.56 2011/01/14 16:39:30 tove Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-perl/RPC-XML/ChangeLog,v 1.57 2011/01/24 08:31:26 tove Exp $
30 +
31 +*RPC-XML-0.740 (24 Jan 2011)
32 +
33 + 24 Jan 2011; Torsten Veller <tove@g.o> +RPC-XML-0.740.ebuild:
34 + Version bump
35
36 14 Jan 2011; Torsten Veller <tove@g.o> -RPC-XML-0.59.ebuild,
37 -RPC-XML-0.72.ebuild:
38
39
40
41 1.1 dev-perl/RPC-XML/RPC-XML-0.740.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/RPC-XML/RPC-XML-0.740.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/RPC-XML/RPC-XML-0.740.ebuild?rev=1.1&content-type=text/plain
45
46 Index: RPC-XML-0.740.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.740.ebuild,v 1.1 2011/01/24 08:31:26 tove Exp $
51
52 EAPI=3
53
54 MODULE_AUTHOR=RJRAY
55 MODULE_VERSION=0.74
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 }