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.64.ebuild RPC-XML-0.61.ebuild
Date: Tue, 30 Sep 2008 06:24:00
Message-Id: E1KkYeL-0006vL-JY@stork.gentoo.org
1 tove 08/09/30 06:23:57
2
3 Modified: ChangeLog
4 Added: RPC-XML-0.64.ebuild
5 Removed: RPC-XML-0.61.ebuild
6 Log:
7 Version bump. Cleanup
8 (Portage version: 2.2_rc11/cvs/Linux 2.6.26-tuxonice i686)
9
10 Revision Changes Path
11 1.43 dev-perl/RPC-XML/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-perl/RPC-XML/ChangeLog?rev=1.43&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-perl/RPC-XML/ChangeLog?rev=1.43&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-perl/RPC-XML/ChangeLog?r1=1.42&r2=1.43
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-perl/RPC-XML/ChangeLog,v
20 retrieving revision 1.42
21 retrieving revision 1.43
22 diff -u -r1.42 -r1.43
23 --- ChangeLog 20 Sep 2008 08:46:49 -0000 1.42
24 +++ ChangeLog 30 Sep 2008 06:23:57 -0000 1.43
25 @@ -1,6 +1,12 @@
26 # ChangeLog for dev-perl/RPC-XML
27 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-perl/RPC-XML/ChangeLog,v 1.42 2008/09/20 08:46:49 tove Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-perl/RPC-XML/ChangeLog,v 1.43 2008/09/30 06:23:57 tove Exp $
30 +
31 +*RPC-XML-0.64 (30 Sep 2008)
32 +
33 + 30 Sep 2008; Torsten Veller <tove@g.o> -RPC-XML-0.61.ebuild,
34 + +RPC-XML-0.64.ebuild:
35 + Version bump. Cleanup
36
37 *RPC-XML-0.63 (20 Sep 2008)
38
39
40
41
42 1.1 dev-perl/RPC-XML/RPC-XML-0.64.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-perl/RPC-XML/RPC-XML-0.64.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-perl/RPC-XML/RPC-XML-0.64.ebuild?rev=1.1&content-type=text/plain
46
47 Index: RPC-XML-0.64.ebuild
48 ===================================================================
49 # Copyright 1999-2008 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/dev-perl/RPC-XML/RPC-XML-0.64.ebuild,v 1.1 2008/09/30 06:23:57 tove Exp $
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 dev-lang/perl"
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 }