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/SOAP-Lite: ChangeLog SOAP-Lite-0.710.10.ebuild
Date: Tue, 10 Nov 2009 10:27:43
Message-Id: E1N7nwr-0003pH-HX@stork.gentoo.org
1 robbat2 09/11/10 10:27:41
2
3 Modified: ChangeLog
4 Added: SOAP-Lite-0.710.10.ebuild
5 Log:
6 Version bump via perl-bump experimental tool.
7 (Portage version: 2.2_rc49/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.50 dev-perl/SOAP-Lite/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-perl/SOAP-Lite/ChangeLog?rev=1.50&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-perl/SOAP-Lite/ChangeLog?rev=1.50&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-perl/SOAP-Lite/ChangeLog?r1=1.49&r2=1.50
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-perl/SOAP-Lite/ChangeLog,v
19 retrieving revision 1.49
20 retrieving revision 1.50
21 diff -p -w -b -B -u -u -r1.49 -r1.50
22 --- ChangeLog 19 Jul 2009 17:44:52 -0000 1.49
23 +++ ChangeLog 10 Nov 2009 10:27:40 -0000 1.50
24 @@ -1,6 +1,12 @@
25 # ChangeLog for dev-perl/SOAP-Lite
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-perl/SOAP-Lite/ChangeLog,v 1.49 2009/07/19 17:44:52 tove Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-perl/SOAP-Lite/ChangeLog,v 1.50 2009/11/10 10:27:40 robbat2 Exp $
29 +
30 +*SOAP-Lite-0.710.10 (10 Nov 2009)
31 +
32 + 10 Nov 2009; Robin H. Johnson <robbat2@g.o>
33 + +SOAP-Lite-0.710.10.ebuild:
34 + Version bump via perl-bump experimental tool.
35
36 19 Jul 2009; Torsten Veller <tove@g.o> SOAP-Lite-0.69.ebuild,
37 SOAP-Lite-0.710.08.ebuild:
38
39
40
41 1.1 dev-perl/SOAP-Lite/SOAP-Lite-0.710.10.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-perl/SOAP-Lite/SOAP-Lite-0.710.10.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-perl/SOAP-Lite/SOAP-Lite-0.710.10.ebuild?rev=1.1&content-type=text/plain
45
46 Index: SOAP-Lite-0.710.10.ebuild
47 ===================================================================
48 # Copyright 1999-2009 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-perl/SOAP-Lite/SOAP-Lite-0.710.10.ebuild,v 1.1 2009/11/10 10:27:40 robbat2 Exp $
51
52 MODULE_AUTHOR="MKUTTER"
53 inherit perl-module eutils
54
55 DESCRIPTION="Provides a simple and lightweight interface to the SOAP protocol (sic) both on client and server side."
56
57 IUSE="jabber ssl"
58 SLOT="0"
59 LICENSE="|| ( Artistic GPL-2 )"
60 KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
61
62 myconf="${myconf} --noprompt"
63
64 # TESTS ARE DISABLED ON PURPOSE
65 # This module attempts to access an external website for validation
66 # of the MIME::Parser - not only is that bad practice in general,
67 # but in this particular case the external site isn't even valid anymore# -mpc
68 # 24/10/04
69 SRC_TEST="do"
70
71 DEPEND="dev-perl/XML-Parser
72 dev-perl/libwww-perl
73 virtual/perl-libnet
74 dev-perl/MIME-Lite
75 virtual/perl-MIME-Base64
76 ssl? ( dev-perl/Crypt-SSLeay )
77 jabber? ( dev-perl/Net-Jabber )
78 ssl? ( dev-perl/IO-Socket-SSL )
79 virtual/perl-IO-Compress
80 >=dev-perl/MIME-tools-5.413
81 virtual/perl-version
82 dev-lang/perl"
83
84 src_unpack() {
85 unpack ${A}
86 cd "${S}"
87 # The author of this module put a dep for MIME::Parser 6.X - but the6.X
88 # release of MIME::Parser was a mistake during a change in maintainers on
89 # cpan. This patch alters the dependancy to the "real" stable version of
90 # MIME::Parser.
91 epatch "${FILESDIR}"/SOAP-Lite-0.710.08.patch
92 }
93
94 src_test() {
95 has_version '>=www-apache/mod_perl-2' && export MOD_PERL_API_VERSION=2
96 perl-module_src_test
97 }