public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Andreas Hüttel" <dilfridge@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-perl/SOAP-WSDL/
Date: Thu,  7 Apr 2016 23:08:00 +0000 (UTC)	[thread overview]
Message-ID: <1460070461.e3e896896a18aa636ca555d5bcf1971607f7315e.dilfridge@gentoo> (raw)

commit:     e3e896896a18aa636ca555d5bcf1971607f7315e
Author:     Kent Fredric <kentfredric <AT> gmail <DOT> com>
AuthorDate: Thu Apr  7 14:05:17 2016 +0000
Commit:     Andreas Hüttel <dilfridge <AT> gentoo <DOT> org>
CommitDate: Thu Apr  7 23:07:41 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e3e89689

dev-perl/SOAP-WSDL: Bump to version 3.3.0

- EAPI6
- add USE="examples"
- cleaned up bogus files installed to @INC
- removed useless tests

Upstream:
- SOAP::WSDL::SOAP::HeaderFault no longer broken due to bad @ISA

Package-Manager: portage-2.2.28

 dev-perl/SOAP-WSDL/Manifest               |  1 +
 dev-perl/SOAP-WSDL/SOAP-WSDL-3.3.0.ebuild | 60 +++++++++++++++++++++++++++++++
 dev-perl/SOAP-WSDL/metadata.xml           |  2 --
 3 files changed, 61 insertions(+), 2 deletions(-)

diff --git a/dev-perl/SOAP-WSDL/Manifest b/dev-perl/SOAP-WSDL/Manifest
index 1fe68e8..3574252 100644
--- a/dev-perl/SOAP-WSDL/Manifest
+++ b/dev-perl/SOAP-WSDL/Manifest
@@ -1,2 +1,3 @@
 DIST SOAP-WSDL-2.00.10.tar.gz 235880 SHA256 1593dbefcf574594d7bd92ebfa392ef71f4bf0ad9f0381274629f66841820354 SHA512 9fa1accbb6573c8401fd32e5b3189bbc083c3cad40e38b1ff3164a7f1108f53793761e87ff315f6d60ba99ab9dbe2558717ca4cc58adf90a7ec1c1da43926c7f WHIRLPOOL ac4c477fc41e0e25e41f9ee3fd8b758d96c7b4960368eec69e0976aec089ce175bab26252b50176d7a020f8812aafc066399f59ea4fe473f2236ee702d21fa70
+DIST SOAP-WSDL-3.003.tar.gz 238159 SHA256 84f6b542d95d60211bf94cc098677c19529a897950b93461945a726d345cfcbd SHA512 a74416ea1208f589ddde3799856e9cb7c495e5d6c31aa0e8659abfcbf21bcaa9570200c5b86746401a7566d8de25c4a7ba4338828830d11f7b66f2abb424b2b3 WHIRLPOOL e42e7aefc646830a3085c7dbd6e38ff98cb6079627e789fc84ec466af529e8b6d508d54088a8c087284db4709e9e583dfe729fe38f27648e3950e30019d3ed13
 DIST SOAP-WSDL-v3.002.tar.gz 238085 SHA256 9f38e7895f2bc1f4f2310a4c4baa6d21b10ec2910c4e7eebee0ad79435a56f06 SHA512 b472390b9b08cfd6d819189a2ae78ccd8fa5f7784003b3a3439daf33c7e8d5559001096cc763c2cd32dc673c564abe307fc64e35b514362e1c0cf64aab9d824e WHIRLPOOL 7554870883d0485d743f8e0f4f31e8c84227bbee571dc1db43a09eaba16d06985d569bc7944385057bb62f6f05dc4462fe06bdc2a962b3e89f93310483109174

diff --git a/dev-perl/SOAP-WSDL/SOAP-WSDL-3.3.0.ebuild b/dev-perl/SOAP-WSDL/SOAP-WSDL-3.3.0.ebuild
new file mode 100644
index 0000000..02a4100
--- /dev/null
+++ b/dev-perl/SOAP-WSDL/SOAP-WSDL-3.3.0.ebuild
@@ -0,0 +1,60 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+DIST_VERSION=3.003
+DIST_AUTHOR=SWALTERS
+inherit perl-module
+
+DESCRIPTION="SOAP with WSDL support"
+
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test examples"
+
+RDEPEND="
+	>=dev-perl/Class-Load-0.200.0
+	>=dev-perl/Class-Std-Fast-0.0.5
+	virtual/perl-Data-Dumper
+	dev-perl/TimeDate
+	virtual/perl-File-Path
+	virtual/perl-File-Spec
+	virtual/perl-Getopt-Long
+	dev-perl/libwww-perl
+	dev-perl/Module-Build
+	virtual/perl-Scalar-List-Utils
+	virtual/perl-Storable
+	>=dev-perl/Template-Toolkit-2.180.0
+	dev-perl/TermReadKey
+	dev-perl/URI
+	dev-perl/XML-Parser
+"
+
+DEPEND="${RDEPEND}
+	virtual/perl-ExtUtils-MakeMaker
+	test? (
+		virtual/perl-Test-Simple
+		virtual/perl-Getopt-Long
+		virtual/perl-Storable
+	)
+"
+DIST_TEST="do" # parallel testing dies
+src_prepare() {
+	perl-module_src_prepare
+	perl_rm_files test_html.pl
+}
+src_test() {
+	perl_rm_files t/098_pod.t t/099_pod_coverage.t t/094_cpan_meta.t t/095_copying.t t/096_characters.t t/097_kwalitee.t
+	perl-module_src_test
+}
+src_install() {
+	perl-module_src_install
+	dodoc MIGRATING
+	if use examples; then
+		docompress -x /usr/share/doc/${PF}/examples
+		docinto examples
+		dodoc -r example/*
+	fi
+}

diff --git a/dev-perl/SOAP-WSDL/metadata.xml b/dev-perl/SOAP-WSDL/metadata.xml
index e4768e8..e85029a 100644
--- a/dev-perl/SOAP-WSDL/metadata.xml
+++ b/dev-perl/SOAP-WSDL/metadata.xml
@@ -45,7 +45,6 @@
     <remote-id type="cpan-module">SOAP::WSDL::SOAP::Operation</remote-id>
     <remote-id type="cpan-module">SOAP::WSDL::SOAP::Typelib::Fault</remote-id>
     <remote-id type="cpan-module">SOAP::WSDL::SOAP::Typelib::Fault11</remote-id>
-    <remote-id type="cpan-module">SOAP::WSDL::SOAP::Typelib::Fault11Detail</remote-id>
     <remote-id type="cpan-module">SOAP::WSDL::Serializer::XSD</remote-id>
     <remote-id type="cpan-module">SOAP::WSDL::Server</remote-id>
     <remote-id type="cpan-module">SOAP::WSDL::Server::CGI</remote-id>
@@ -130,7 +129,6 @@
     <remote-id type="cpan-module">SOAP::WSDL::XSD::Typelib::ComplexType</remote-id>
     <remote-id type="cpan-module">SOAP::WSDL::XSD::Typelib::Element</remote-id>
     <remote-id type="cpan-module">SOAP::WSDL::XSD::Typelib::SimpleType</remote-id>
-    <remote-id type="cpan-module">SOAP::WSDL::XSD::Typelib::SimpleType::restriction</remote-id>
     <remote-id type="cpan-module">SOAP::WSDL::XSD::WhiteSpace</remote-id>
   </upstream>
 </pkgmetadata>


             reply	other threads:[~2016-04-07 23:08 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-04-07 23:08 Andreas Hüttel [this message]
  -- strict thread matches above, loose matches on Subject: below --
2016-04-07 23:08 [gentoo-commits] repo/gentoo:master commit in: dev-perl/SOAP-WSDL/ Andreas Hüttel
2016-05-03 19:01 Andreas Hüttel
2017-06-30  1:32 Kent Fredric
2021-05-09 16:23 Andreas K. Hüttel
2021-08-08 14:46 Andreas K. Hüttel

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1460070461.e3e896896a18aa636ca555d5bcf1971607f7315e.dilfridge@gentoo \
    --to=dilfridge@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox