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.69.ebuild
Date: Sat, 05 Sep 2009 11:02:23
Message-Id: E1Mjt2B-0006DD-IN@stork.gentoo.org
1 tove 09/09/05 11:02:19
2
3 Modified: ChangeLog
4 Added: RPC-XML-0.69.ebuild
5 Log:
6 Version bump
7 (Portage version: 2.2_rc40/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.48 dev-perl/RPC-XML/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-perl/RPC-XML/ChangeLog?rev=1.48&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-perl/RPC-XML/ChangeLog?rev=1.48&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-perl/RPC-XML/ChangeLog?r1=1.47&r2=1.48
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-perl/RPC-XML/ChangeLog,v
19 retrieving revision 1.47
20 retrieving revision 1.48
21 diff -u -r1.47 -r1.48
22 --- ChangeLog 16 Jul 2009 09:17:33 -0000 1.47
23 +++ ChangeLog 5 Sep 2009 11:02:19 -0000 1.48
24 @@ -1,6 +1,11 @@
25 # ChangeLog for dev-perl/RPC-XML
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-perl/RPC-XML/ChangeLog,v 1.47 2009/07/16 09:17:33 tove Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-perl/RPC-XML/ChangeLog,v 1.48 2009/09/05 11:02:19 tove Exp $
29 +
30 +*RPC-XML-0.69 (05 Sep 2009)
31 +
32 + 05 Sep 2009; Torsten Veller <tove@g.o> +RPC-XML-0.69.ebuild:
33 + Version bump
34
35 16 Jul 2009; Torsten Veller <tove@g.o> -RPC-XML-0.64.ebuild,
36 -RPC-XML-0.65.ebuild:
37
38
39
40 1.1 dev-perl/RPC-XML/RPC-XML-0.69.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-perl/RPC-XML/RPC-XML-0.69.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-perl/RPC-XML/RPC-XML-0.69.ebuild?rev=1.1&content-type=text/plain
44
45 Index: RPC-XML-0.69.ebuild
46 ===================================================================
47 # Copyright 1999-2009 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/dev-perl/RPC-XML/RPC-XML-0.69.ebuild,v 1.1 2009/09/05 11:02:19 tove Exp $
50
51 EAPI=2
52
53 MODULE_AUTHOR=RJRAY
54 inherit perl-module
55
56 DESCRIPTION="An implementation of XML-RPC"
57
58 SLOT="0"
59 LICENSE="|| ( Artistic-2 LGPL-2.1 )"
60 KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~sparc ~x86 ~x86-fbsd"
61 IUSE="test"
62
63 SRC_TEST="do"
64
65 RDEPEND=">=dev-perl/libwww-perl-5.801
66 >=dev-perl/XML-LibXML-1.58
67 >=dev-perl/XML-Parser-2.31
68 dev-perl/net-server
69 >=virtual/perl-Scalar-List-Utils-1.20"
70 DEPEND="${RDEPEND}
71 test? ( dev-perl/Test-Pod
72 dev-perl/Test-Pod-Coverage )"
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 }