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/SOAP-Lite: ChangeLog SOAP-Lite-0.712.0.ebuild
Date: Thu, 01 Sep 2011 14:09:12
Message-Id: 20110901140902.C62A82004C@flycatcher.gentoo.org
1 tove 11/09/01 14:09:02
2
3 Modified: ChangeLog
4 Added: SOAP-Lite-0.712.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.67 dev-perl/SOAP-Lite/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/SOAP-Lite/ChangeLog?rev=1.67&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/SOAP-Lite/ChangeLog?rev=1.67&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/SOAP-Lite/ChangeLog?r1=1.66&r2=1.67
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-perl/SOAP-Lite/ChangeLog,v
20 retrieving revision 1.66
21 retrieving revision 1.67
22 diff -u -r1.66 -r1.67
23 --- ChangeLog 23 Mar 2011 17:15:51 -0000 1.66
24 +++ ChangeLog 1 Sep 2011 14:09:02 -0000 1.67
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-perl/SOAP-Lite
27 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-perl/SOAP-Lite/ChangeLog,v 1.66 2011/03/23 17:15:51 idl0r Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-perl/SOAP-Lite/ChangeLog,v 1.67 2011/09/01 14:09:02 tove Exp $
30 +
31 +*SOAP-Lite-0.712.0 (01 Sep 2011)
32 +
33 + 01 Sep 2011; Torsten Veller <tove@g.o> +SOAP-Lite-0.712.0.ebuild:
34 + Change version scheme
35
36 23 Mar 2011; Christian Ruppert <idl0r@g.o> SOAP-Lite-0.712.ebuild,
37 +files/SOAP-Lite-0.712_sysread.patch:
38
39
40
41 1.1 dev-perl/SOAP-Lite/SOAP-Lite-0.712.0.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/SOAP-Lite/SOAP-Lite-0.712.0.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/SOAP-Lite/SOAP-Lite-0.712.0.ebuild?rev=1.1&content-type=text/plain
45
46 Index: SOAP-Lite-0.712.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/SOAP-Lite/SOAP-Lite-0.712.0.ebuild,v 1.1 2011/09/01 14:09:02 tove Exp $
51
52 EAPI=4
53
54 MODULE_AUTHOR=MKUTTER
55 MODULE_VERSION=0.712
56 inherit perl-module eutils
57
58 DESCRIPTION="Simple and lightweight interface to the SOAP protocol (sic) both on client and server side"
59
60 IUSE="jabber ssl"
61 SLOT="0"
62 LICENSE="|| ( Artistic GPL-2 )"
63 KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
64
65 myconf="${myconf} --noprompt"
66
67 # TESTS ARE DISABLED ON PURPOSE
68 # This module attempts to access an external website for validation
69 # of the MIME::Parser - not only is that bad practice in general,
70 # but in this particular case the external site isn't even valid anymore# -mpc
71 # 24/10/04
72 SRC_TEST="do"
73
74 DEPEND="dev-perl/Class-Inspector
75 dev-perl/XML-Parser
76 dev-perl/libwww-perl
77 virtual/perl-libnet
78 dev-perl/MIME-Lite
79 virtual/perl-MIME-Base64
80 ssl? ( dev-perl/Crypt-SSLeay )
81 jabber? ( dev-perl/Net-Jabber )
82 ssl? ( dev-perl/IO-Socket-SSL )
83 virtual/perl-IO-Compress
84 >=dev-perl/MIME-tools-5.413
85 virtual/perl-version
86 dev-lang/perl"
87 RDEPEND="${DEPEND}"
88
89 src_prepare() {
90 # The author of this module put a dep for MIME::Parser 6.X - but the6.X
91 # release of MIME::Parser was a mistake during a change in maintainers on
92 # cpan. This patch alters the dependancy to the "real" stable version of
93 # MIME::Parser.
94 epatch "${FILESDIR}"/SOAP-Lite-0.710.08.patch
95 epatch "${FILESDIR}"/${PN}-0.712_sysread.patch
96 }
97
98 src_test() {
99 has_version '>=www-apache/mod_perl-2' && export MOD_PERL_API_VERSION=2
100 perl-module_src_test
101 }