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.0.ebuild
Date: Thu, 01 Sep 2011 14:07:30
Message-Id: 20110901140720.A36922004C@flycatcher.gentoo.org
1 tove 11/09/01 14:07:20
2
3 Modified: ChangeLog
4 Added: RPC-XML-0.740.0.ebuild
5 Log:
6 Change version scheme
7
8 (Portage version: 2.2.0_alpha51/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.59 dev-perl/RPC-XML/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/RPC-XML/ChangeLog?rev=1.59&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/RPC-XML/ChangeLog?rev=1.59&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/RPC-XML/ChangeLog?r1=1.58&r2=1.59
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-perl/RPC-XML/ChangeLog,v
20 retrieving revision 1.58
21 retrieving revision 1.59
22 diff -u -r1.58 -r1.59
23 --- ChangeLog 9 Feb 2011 16:57:26 -0000 1.58
24 +++ ChangeLog 1 Sep 2011 14:07:20 -0000 1.59
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.58 2011/02/09 16:57:26 idl0r Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-perl/RPC-XML/ChangeLog,v 1.59 2011/09/01 14:07:20 tove Exp $
30 +
31 +*RPC-XML-0.740.0 (01 Sep 2011)
32 +
33 + 01 Sep 2011; Torsten Veller <tove@g.o> +RPC-XML-0.740.0.ebuild:
34 + Change version scheme
35
36 *RPC-XML-0.740 (24 Jan 2011)
37
38
39
40
41 1.1 dev-perl/RPC-XML/RPC-XML-0.740.0.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/RPC-XML/RPC-XML-0.740.0.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/RPC-XML/RPC-XML-0.740.0.ebuild?rev=1.1&content-type=text/plain
45
46 Index: RPC-XML-0.740.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.740.0.ebuild,v 1.1 2011/09/01 14:07:20 tove Exp $
51
52 EAPI=4
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 }