Hello community,

here is the log from the commit of package perl-SOAP-Lite for openSUSE:Factory 
checked in at 2019-02-13 10:03:38
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/perl-SOAP-Lite (Old)
 and      /work/SRC/openSUSE:Factory/.perl-SOAP-Lite.new.28833 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "perl-SOAP-Lite"

Wed Feb 13 10:03:38 2019 rev:30 rq:673509 version:1.27

Changes:
--------
--- /work/SRC/openSUSE:Factory/perl-SOAP-Lite/perl-SOAP-Lite.changes    
2018-05-29 10:28:11.613548840 +0200
+++ /work/SRC/openSUSE:Factory/.perl-SOAP-Lite.new.28833/perl-SOAP-Lite.changes 
2019-02-13 10:03:46.933585268 +0100
@@ -1,0 +2,18 @@
+Fri Jan 25 11:01:07 UTC 2019 - Pedro Monreal Gonzalez 
<pmonrealgonza...@suse.com>
+
+- Conditionally require optional build test Test::MockObject
+
+-------------------------------------------------------------------
+Fri Jan 18 12:47:56 UTC 2019 - Pedro Monreal Gonzalez 
<pmonrealgonza...@suse.com>
+
+- Added required dependencies for building and testing
+- Cleaned spec file with spec-cleaner
+
+-------------------------------------------------------------------
+Fri Jan 18 12:22:36 UTC 2019 - Pedro Monreal Gonzalez 
<pmonrealgonza...@suse.com>
+
+- Fix env-script-interpreter in bin/{SOAPsh.pl,stubmaker.pl} and
+  examples/XMLRPC/{xmlrpc.cgi,xmlrpc.daemon}
+  * Added patch perl-SOAP-Lite-1.27-usr-bin-env.patch
+
+-------------------------------------------------------------------

New:
----
  perl-SOAP-Lite-1.27-usr-bin-env.patch

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ perl-SOAP-Lite.spec ++++++
--- /var/tmp/diff_new_pack.5xjzbG/_old  2019-02-13 10:03:49.149584716 +0100
+++ /var/tmp/diff_new_pack.5xjzbG/_new  2019-02-13 10:03:49.149584716 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-SOAP-Lite
 #
-# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -12,50 +12,66 @@
 # license that conforms to the Open Source Definition (Version 1.9)
 # published by the Open Source Initiative.
 
-# Please submit bugfixes or comments via http://bugs.opensuse.org/
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
 #
 
 
+#Upstream: Artistic-1.0 or GPL-1.0+
+%define cpan_name SOAP-Lite
 Name:           perl-SOAP-Lite
 Version:        1.27
 Release:        0
-#Upstream: Artistic-1.0 or GPL-1.0+
-%define cpan_name SOAP-Lite
 Summary:        Perl's Web Services Toolkit
 License:        (Artistic-1.0 OR GPL-1.0-or-later) AND CC-BY-ND-2.0
 Group:          Development/Libraries/Perl
-Url:            http://search.cpan.org/dist/SOAP-Lite/
+URL:            http://search.cpan.org/dist/SOAP-Lite/
 Source0:        
https://cpan.metacpan.org/authors/id/P/PH/PHRED/%{cpan_name}-%{version}.tar.gz
 Source1:        cpanspec.yml
-BuildArch:      noarch
-BuildRoot:      %{_tmppath}/%{name}-%{version}-build
+Patch0:         perl-SOAP-Lite-1.27-usr-bin-env.patch
 BuildRequires:  perl
 BuildRequires:  perl-macros
 BuildRequires:  perl(Class::Inspector)
 BuildRequires:  perl(Compress::Zlib)
+BuildRequires:  perl(ExtUtils::MakeMaker)
+BuildRequires:  perl(IO::File)
 BuildRequires:  perl(IO::SessionData) >= 1.03
 BuildRequires:  perl(IO::Socket::SSL)
 BuildRequires:  perl(LWP::Protocol::https)
 BuildRequires:  perl(LWP::UserAgent)
+BuildRequires:  perl(MIME::Base64)
+BuildRequires:  perl(MIME::Tools)
+BuildRequires:  perl(Scalar::Util)
 BuildRequires:  perl(Task::Weaken)
+BuildRequires:  perl(Test::More)
 BuildRequires:  perl(Test::Warn)
+%if 0%{?suse_version} >= 1550
+BuildRequires:  perl(Test::MockObject)
+%endif
 BuildRequires:  perl(URI)
+BuildRequires:  perl(URI::Escape)
 BuildRequires:  perl(XML::Parser) >= 2.23
 BuildRequires:  perl(XML::Parser::Lite) >= 0.715
+BuildRequires:  perl(constant)
 Requires:       perl(Class::Inspector)
 Requires:       perl(Compress::Zlib)
 Requires:       perl(IO::SessionData) >= 1.03
 Requires:       perl(IO::Socket::SSL)
 Requires:       perl(LWP::Protocol::https)
 Requires:       perl(LWP::UserAgent)
+Requires:       perl(MIME::Base64)
+Requires:       perl(Scalar::Util)
 Requires:       perl(Task::Weaken)
 Requires:       perl(URI)
+Requires:       perl(URI::Escape)
 Requires:       perl(XML::Parser) >= 2.23
+Requires:       perl(XML::Parser::Lite) >= 0.715
+Requires:       perl(constant)
 Recommends:     perl(Apache)
 Recommends:     perl(DIME::Tools) >= 0.03
 Recommends:     perl(FCGI)
 Recommends:     perl(HTTP::Daemon)
 Recommends:     perl(MIME::Tools)
+BuildArch:      noarch
 %{perl_requires}
 
 %description
@@ -65,17 +81,15 @@
 
 %prep
 %setup -q -n %{cpan_name}-%{version}
+%patch0 -p1
 find . -type f ! -name \*.pl -print0 | xargs -0 chmod 644
-# MANUAL BEGIN
-sed -e 's,!/bin/env perl,!/usr/bin/perl,' -i bin/*pl
-# MANUAL END
 
 %build
-%{__perl} Makefile.PL INSTALLDIRS=vendor
-%{__make} %{?_smp_mflags}
+perl Makefile.PL INSTALLDIRS=vendor
+make %{?_smp_mflags}
 
 %check
-%{__make} test
+make %{?_smp_mflags} test
 
 %install
 %perl_make_install

++++++ perl-SOAP-Lite-1.27-usr-bin-env.patch ++++++
Index: SOAP-Lite-1.27/bin/SOAPsh.pl
===================================================================
--- SOAP-Lite-1.27.orig/bin/SOAPsh.pl
+++ SOAP-Lite-1.27/bin/SOAPsh.pl
@@ -1,5 +1,4 @@
-#!/usr/bin/env perl
-#!d:\perl\bin\perl.exe
+#!perl
 
 # -- SOAP::Lite -- soaplite.com -- Copyright (C) 2001 Paul Kulchenko --
 
Index: SOAP-Lite-1.27/bin/stubmaker.pl
===================================================================
--- SOAP-Lite-1.27.orig/bin/stubmaker.pl
+++ SOAP-Lite-1.27/bin/stubmaker.pl
@@ -1,5 +1,4 @@
-#!/usr/bin/env perl
-#!d:\perl\bin\perl.exe
+#!perl
 #
 # Filename: stubmaker.pl
 # Authors: Byrne Reese <byrne at majordojo dot com>
Index: SOAP-Lite-1.27/examples/XMLRPC/xmlrpc.cgi
===================================================================
--- SOAP-Lite-1.27.orig/examples/XMLRPC/xmlrpc.cgi
+++ SOAP-Lite-1.27/examples/XMLRPC/xmlrpc.cgi
@@ -1,4 +1,4 @@
-#!/usr/bin/env perl
+#!/usr/bin/perl
 
 # -- XMLRPC::Lite -- services.soaplite.com -- Copyright (C) 2001 Paul 
Kulchenko --
 
Index: SOAP-Lite-1.27/examples/XMLRPC/xmlrpc.daemon
===================================================================
--- SOAP-Lite-1.27.orig/examples/XMLRPC/xmlrpc.daemon
+++ SOAP-Lite-1.27/examples/XMLRPC/xmlrpc.daemon
@@ -1,4 +1,4 @@
-#!/usr/bin/env perl
+#!/usr/bin/perl
 
 # -- XMLRPC::Lite -- services.soaplite.com -- Copyright (C) 2001 Paul 
Kulchenko --
 

Reply via email to