commit perl-Archive-Zip for openSUSE:Factory

2020-03-16 Thread root
Hello community,

here is the log from the commit of package perl-Archive-Zip for 
openSUSE:Factory checked in at 2020-03-16 10:16:07

Comparing /work/SRC/openSUSE:Factory/perl-Archive-Zip (Old)
 and  /work/SRC/openSUSE:Factory/.perl-Archive-Zip.new.3160 (New)


Package is "perl-Archive-Zip"

Mon Mar 16 10:16:07 2020 rev:42 rq:784616 version:1.68

Changes:

--- /work/SRC/openSUSE:Factory/perl-Archive-Zip/perl-Archive-Zip.changes
2019-11-06 13:46:58.179562164 +0100
+++ 
/work/SRC/openSUSE:Factory/.perl-Archive-Zip.new.3160/perl-Archive-Zip.changes  
2020-03-16 10:16:47.375549386 +0100
@@ -1,0 +2,28 @@
+Fri Mar 13 03:07:23 UTC 2020 -  
+
+- updated to 1.68
+   see /usr/share/doc/packages/perl-Archive-Zip/Changes
+
+  1.68 Thr 12 Mar 2020
+  - Switched to GitHub as issue tracker
+  - Replaced references to Test::MockModule in
+t/23_closed_handle.t with code from PR #32, RT #110087
+  - Unixified line endings in t/23_closed_handle.t
+  - Added documentation for Archive::Zip::Member::isSymbolicLink,
+RT #130524
+  - Implemented other, unrelated doc fixes
+  - Fixed examples/zipcheck.pl to skip symbolic links, RT #130525
+  - Described version 1.59, RT #117371 (tagged important!)
+  
+  - Completely re-did test suite:
+. Created new test APIs in t/common.pm and documented them in
+  t/README.md
+. Changed tests to be less dependent on OS-specific quirks of "unzip 
-t"
+. Changed tests to write more diagnostic information if executed in
+  automated test environments
+. Normalized access to test data and to temporary results.  Removed
+  references to obsolete temporary results (for example, those to
+  directory "extracted").
+. Normalized test headers and brushed up tests in general
+
+---

Old:

  Archive-Zip-1.67.tar.gz

New:

  Archive-Zip-1.68.tar.gz



Other differences:
--
++ perl-Archive-Zip.spec ++
--- /var/tmp/diff_new_pack.EWP4ZT/_old  2020-03-16 10:16:48.451549824 +0100
+++ /var/tmp/diff_new_pack.EWP4ZT/_new  2020-03-16 10:16:48.455549826 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-Archive-Zip
 #
-# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 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
@@ -17,7 +17,7 @@
 
 
 Name:   perl-Archive-Zip
-Version:1.67
+Version:1.68
 Release:0
 %define cpan_name Archive-Zip
 Summary:Provide an interface to ZIP archive files
@@ -31,7 +31,6 @@
 BuildRequires:  perl
 BuildRequires:  perl-macros
 BuildRequires:  perl(Compress::Raw::Zlib) >= 2.017
-BuildRequires:  perl(Test::MockModule)
 BuildRequires:  perl(Test::More) >= 0.88
 Requires:   perl(Compress::Raw::Zlib) >= 2.017
 %{perl_requires}
@@ -59,7 +58,7 @@
 
 %prep
 %setup -q -n %{cpan_name}-%{version}
-find . -type f ! -name \*.pl -print0 | xargs -0 chmod 644
+find . -type f ! -path "*/t/*" ! -name "*.pl" ! -path "*/bin/*" ! -path 
"*/script/*" ! -name "configure" -print0 | xargs -0 chmod 644
 
 %build
 perl Makefile.PL INSTALLDIRS=vendor

++ Archive-Zip-1.67.tar.gz -> Archive-Zip-1.68.tar.gz ++
 5913 lines of diff (skipped)




commit perl-Archive-Zip for openSUSE:Factory

2019-11-06 Thread root
Hello community,

here is the log from the commit of package perl-Archive-Zip for 
openSUSE:Factory checked in at 2019-11-06 13:46:51

Comparing /work/SRC/openSUSE:Factory/perl-Archive-Zip (Old)
 and  /work/SRC/openSUSE:Factory/.perl-Archive-Zip.new.2990 (New)


Package is "perl-Archive-Zip"

Wed Nov  6 13:46:51 2019 rev:41 rq:735795 version:1.67

Changes:

--- /work/SRC/openSUSE:Factory/perl-Archive-Zip/perl-Archive-Zip.changes
2018-10-01 08:14:34.478077365 +0200
+++ 
/work/SRC/openSUSE:Factory/.perl-Archive-Zip.new.2990/perl-Archive-Zip.changes  
2019-11-06 13:46:58.179562164 +0100
@@ -1,0 +2,87 @@
+Mon Oct  7 09:05:51 UTC 2019 - Pedro Monreal Gonzalez 

+
+- Update to 1.67
+   see /usr/share/doc/packages/perl-Archive-Zip/Changes
+
+  1.67 Sun 06 Oct 2019
+  - Fixed compatibility issues with zip64 format (defined-or, pack)
+  - Fixed hard-coded version fields introduced in version 1.66
+  - Fixed merge glitch with tests 26 and 27
+  - Fixed merge glitch with bzip passthrough
+  - Updated bzip test file to avoid zip bomb detection
+
+---
+Wed Sep 18 08:15:38 UTC 2019 -  
+
+- updated to 1.66
+   see /usr/share/doc/packages/perl-Archive-Zip/Changes
+
+  1.66 Mon 16 Sep 2019
+  - Refactored low-level methods for reading and writing zip files
+in zip64 format.  Added new parameters and return values to
+most of these.  Extended constants in Archive::Zip to cover
+zip64 formats and lengths.
+  - Added public APIs
+  Archive::Zip::Archive::zip64
+  Archive::Zip::Archive::desiredZip64Mode
+  Archive::Zip::Archive::versionMadeBy
+  Archive::Zip::Archive::versionNeededToExtract
+  Archive::Zip::Member::zip64
+  Archive::Zip::Member::desiredZip64Mode
+and constants
+  Archive::Zip::ZIP64_AS_NEEDED
+  Archive::Zip::ZIP64_EOCD
+  Archive::Zip::ZIP64_HEADERS
+plus POD on these.
+  - Added tests for zip64 format in t/21_zip64.t and more test zip
+files below t/data.  Extended tests in t/02_main.t to perform
+all existing tests in all possible desired zip64 modes.
+  - Extended methods
+  Archive::Zip::Member::localExtraField
+  Archive::Zip::Member::cdExtraField
+to perform format checks when called as setters and to reject
+any zip64 extended information extra fields passed by the user.
+Extended POD and tests in t/02_main.t accordingly.
+  - Setting {'compressedSize'} after writing central directory
+header.
+  - Added new optional parameter $noFormatError to method
+Archive::Zip::_readSignature to silence any format errros when
+testing for signatures.
+  - Added error handling for potentially failed object conversion
+after calling method Archive::Zip::Member::_become.  Factored
+in method Archive::Zip::Member::_becomeDirectoryIfNecessary
+into caller.
+  - Changed methods
+  Archive::Zip::Archive::contents
+  Archive::Zip::Member::contents
+(and all inheriting from these) to consistently return a pair
+($contents, $status) when called in list context and a scalar
+$contents when called in scalar context.  Extended tests in
+t/02_main.t accordingly.
+  - Changed method Archive::Zip::Member::extractToFileHandle to
+accept a file name instead of a file handle when extracting
+symbolic links.  Changed lower-level and higher-level methods
+to use that feature.  Cleaned up code related to the handling
+of symbolic links.  Added creation of intermediate directories
+in method Archive::Zip::Member::extractToFileNamed for symbolic
+links as well.  Reporting errors from symlink call as AZ-error.
+Added POD and test zip file t/data/symlink.zip and tests in
+t/26_symlinks.t for these changes.
+  - Cleaned up code and added comment related to that highly
+dubious (?) {'wasWritten'} logic.
+
+---
+Tue Sep 10 09:02:19 UTC 2019 -  
+
+- updated to 1.65
+   see /usr/share/doc/packages/perl-Archive-Zip/Changes
+
+  1.65 Sat 7 Sep 2019
+  - Fix for members using bzip compression [github/pmqs]
+  - NetBSD doesn't mind empty zips [github/pmqs]
+  - Solaris test failure, Add diag to failing test to collect data 
[github/pmqs]
+  - Test for presence of Test::MockModule [github/pmqs]
+  - Fix skip line for Windows [github/pmqs]
+  - Skip tests that assume /tmp on Windows [github/pmqs]
+
+---

Old:

  Archive-Zip-1.64.tar.gz

New:

  Archive-Zip-1.67.tar.gz


commit perl-Archive-Zip for openSUSE:Factory

2018-10-01 Thread root
Hello community,

here is the log from the commit of package perl-Archive-Zip for 
openSUSE:Factory checked in at 2018-10-01 08:14:33

Comparing /work/SRC/openSUSE:Factory/perl-Archive-Zip (Old)
 and  /work/SRC/openSUSE:Factory/.perl-Archive-Zip.new (New)


Package is "perl-Archive-Zip"

Mon Oct  1 08:14:33 2018 rev:40 rq:637400 version:1.64

Changes:

--- /work/SRC/openSUSE:Factory/perl-Archive-Zip/perl-Archive-Zip.changes
2018-08-27 12:55:56.236592323 +0200
+++ /work/SRC/openSUSE:Factory/.perl-Archive-Zip.new/perl-Archive-Zip.changes   
2018-10-01 08:14:34.478077365 +0200
@@ -1,0 +2,11 @@
+Mon Sep 24 08:40:02 UTC 2018 - pmonrealgonza...@suse.com
+
+- updated to 1.64
+   see /usr/share/doc/packages/perl-Archive-Zip/Changes
+
+   1.64 Wed 12 Sep 2018
+   - Fix for year 2030
+
+- Cleaned with spec-cleaner
+
+---

Old:

  Archive-Zip-1.63.tar.gz

New:

  Archive-Zip-1.64.tar.gz



Other differences:
--
++ perl-Archive-Zip.spec ++
--- /var/tmp/diff_new_pack.IqXuvp/_old  2018-10-01 08:14:34.902077092 +0200
+++ /var/tmp/diff_new_pack.IqXuvp/_new  2018-10-01 08:14:34.906077090 +0200
@@ -16,24 +16,23 @@
 #
 
 
+%define cpan_name Archive-Zip
 Name:   perl-Archive-Zip
-Version:1.63
+Version:1.64
 Release:0
-%define cpan_name Archive-Zip
 Summary:Provide an interface to ZIP archive files
 License:Artistic-1.0 OR GPL-1.0-or-later
 Group:  Development/Libraries/Perl
-Url:http://search.cpan.org/dist/Archive-Zip/
+Url:https://metacpan.org/pod/Archive::Zip
 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
 BuildRequires:  perl
 BuildRequires:  perl-macros
 BuildRequires:  perl(Compress::Raw::Zlib) >= 2.017
 BuildRequires:  perl(Test::MockModule)
 BuildRequires:  perl(Test::More) >= 0.88
 Requires:   perl(Compress::Raw::Zlib) >= 2.017
+BuildArch:  noarch
 %{perl_requires}
 
 %description
@@ -62,11 +61,11 @@
 find . -type f ! -name \*.pl -print0 | xargs -0 chmod 644
 
 %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

++ Archive-Zip-1.63.tar.gz -> Archive-Zip-1.64.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Archive-Zip-1.63/Changes new/Archive-Zip-1.64/Changes
--- old/Archive-Zip-1.63/Changes2018-08-22 17:40:12.0 +0200
+++ new/Archive-Zip-1.64/Changes2018-09-12 17:48:16.0 +0200
@@ -1,5 +1,8 @@
 Revision history for Perl extension Archive-Zip
 
+1.64 Wed 12 Sep 2018
+- Fix for year 2030
+
 1.63 Wed 21 Aug 2018
 - Restore missing META.yml deps (needed updated MB)
 - Symlink traversal test fix [github/haarg]
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Archive-Zip-1.63/META.json 
new/Archive-Zip-1.64/META.json
--- old/Archive-Zip-1.63/META.json  2018-08-22 17:40:33.0 +0200
+++ new/Archive-Zip-1.64/META.json  2018-09-12 17:48:32.0 +0200
@@ -66,6 +66,6 @@
  "web" : "https://github.com/redhotpenguin/perl-Archive-Zip;
   }
},
-   "version" : "1.63",
+   "version" : "1.64",
"x_serialization_backend" : "JSON::PP version 2.97001"
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Archive-Zip-1.63/META.yml 
new/Archive-Zip-1.64/META.yml
--- old/Archive-Zip-1.63/META.yml   2018-08-22 17:40:32.0 +0200
+++ new/Archive-Zip-1.64/META.yml   2018-09-12 17:48:32.0 +0200
@@ -36,5 +36,5 @@
 resources:
   bugtracker: https://rt.cpan.org/Public/Dist/Display.html?Name=Archive-Zip
   repository: https://github.com/redhotpenguin/perl-Archive-Zip.git
-version: '1.63'
+version: '1.64'
 x_serialization_backend: 'CPAN::Meta::YAML version 0.018'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Archive-Zip-1.63/lib/Archive/Zip/Archive.pm 
new/Archive-Zip-1.64/lib/Archive/Zip/Archive.pm
--- old/Archive-Zip-1.63/lib/Archive/Zip/Archive.pm 2018-08-22 
17:33:51.0 +0200
+++ new/Archive-Zip-1.64/lib/Archive/Zip/Archive.pm 2018-09-12 
17:48:16.0 +0200
@@ -14,7 +14,7 @@
 use vars qw( $VERSION @ISA );
 
 BEGIN {
-$VERSION = '1.63';
+$VERSION = '1.64';
 @ISA = qw( Archive::Zip );
 }
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 

commit perl-Archive-Zip for openSUSE:Factory

2018-08-27 Thread root
Hello community,

here is the log from the commit of package perl-Archive-Zip for 
openSUSE:Factory checked in at 2018-08-27 12:55:50

Comparing /work/SRC/openSUSE:Factory/perl-Archive-Zip (Old)
 and  /work/SRC/openSUSE:Factory/.perl-Archive-Zip.new (New)


Package is "perl-Archive-Zip"

Mon Aug 27 12:55:50 2018 rev:39 rq:631288 version:1.63

Changes:

--- /work/SRC/openSUSE:Factory/perl-Archive-Zip/perl-Archive-Zip.changes
2018-01-09 14:34:39.659946060 +0100
+++ /work/SRC/openSUSE:Factory/.perl-Archive-Zip.new/perl-Archive-Zip.changes   
2018-08-27 12:55:56.236592323 +0200
@@ -1,0 +2,17 @@
+Thu Aug 23 05:04:06 UTC 2018 - co...@suse.com
+
+- updated to 1.63
+   see /usr/share/doc/packages/perl-Archive-Zip/Changes
+
+  1.63 Wed 21 Aug 2018
+  - Restore missing META.yml deps (needed updated MB)
+  - Symlink traversal test fix [github/haarg]
+  - Added missing prereq Encode as suggested by CPANTS [github/manwar]
+
+---
+Tue Aug 21 05:04:33 UTC 2018 - co...@suse.com
+
+- updated to 1.62
+   see /usr/share/doc/packages/perl-Archive-Zip/Changes
+
+---

Old:

  Archive-Zip-1.60.tar.gz

New:

  Archive-Zip-1.63.tar.gz



Other differences:
--
++ perl-Archive-Zip.spec ++
--- /var/tmp/diff_new_pack.IjRJxu/_old  2018-08-27 12:55:57.308593498 +0200
+++ /var/tmp/diff_new_pack.IjRJxu/_new  2018-08-27 12:55:57.312593502 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-Archive-Zip
 #
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 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
@@ -17,11 +17,11 @@
 
 
 Name:   perl-Archive-Zip
-Version:1.60
+Version:1.63
 Release:0
 %define cpan_name Archive-Zip
 Summary:Provide an interface to ZIP archive files
-License:Artistic-1.0 or GPL-1.0+
+License:Artistic-1.0 OR GPL-1.0-or-later
 Group:  Development/Libraries/Perl
 Url:http://search.cpan.org/dist/Archive-Zip/
 Source0:
https://cpan.metacpan.org/authors/id/P/PH/PHRED/%{cpan_name}-%{version}.tar.gz

++ Archive-Zip-1.60.tar.gz -> Archive-Zip-1.63.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Archive-Zip-1.60/Changes new/Archive-Zip-1.63/Changes
--- old/Archive-Zip-1.60/Changes2017-12-19 19:41:50.0 +0100
+++ new/Archive-Zip-1.63/Changes2018-08-22 17:40:12.0 +0200
@@ -1,5 +1,17 @@
 Revision history for Perl extension Archive-Zip
 
+1.63 Wed 21 Aug 2018
+- Restore missing META.yml deps (needed updated MB)
+- Symlink traversal test fix [github/haarg]
+- Added missing prereq Encode as suggested by CPANTS [github/manwar]
+
+1.62 Sun 19 Aug 2018
+- Add link-samename.zip to MANIFEST
+
+1.61 Sat 18 Aug 2018
+- File::Find will not untaint [github/ThisUsedToBeAnEmail]
+- Prevent from traversing symlinks and parent directories when extracting 
[github/ppisar]
+
 1.60 Tue 19 Dec 2017
 - RT 123913 Wrong shell bang in examples/selfex.pl
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Archive-Zip-1.60/MANIFEST 
new/Archive-Zip-1.63/MANIFEST
--- old/Archive-Zip-1.60/MANIFEST   2017-12-19 19:43:30.0 +0100
+++ new/Archive-Zip-1.63/MANIFEST   2018-08-22 17:40:33.0 +0200
@@ -59,6 +59,7 @@
 t/22_deflated_dir.t
 t/23_closed_handle.t
 t/24_unicode_win32.t
+t/25_traversal.t
 t/badjpeg/expected.jpg
 t/badjpeg/source.zip
 t/common.pm
@@ -68,6 +69,7 @@
 t/data/crypt.zip
 t/data/def.zip
 t/data/defstr.zip
+t/data/dotdot-from-unexistant-path.zip
 t/data/empty.zip
 t/data/emptydef.zip
 t/data/emptydefstr.zip
@@ -75,6 +77,8 @@
 t/data/emptystorestr.zip
 t/data/good_github11.zip
 t/data/jar.zip
+t/data/link-dir.zip
+t/data/link-samename.zip
 t/data/linux.zip
 t/data/mkzip.pl
 t/data/perl.zip
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Archive-Zip-1.60/META.json 
new/Archive-Zip-1.63/META.json
--- old/Archive-Zip-1.60/META.json  2017-12-19 19:43:30.0 +0100
+++ new/Archive-Zip-1.63/META.json  2018-08-22 17:40:33.0 +0200
@@ -4,7 +4,7 @@
   "Ned Konz "
],
"dynamic_config" : 0,
-   "generated_by" : "ExtUtils::MakeMaker version 7.3, CPAN::Meta::Converter 
version 2.150010",
+   "generated_by" : "ExtUtils::MakeMaker version 7.34, CPAN::Meta::Converter 
version 2.150010",
"license" : [
   "perl_5"
],
@@ -33,6 +33,7 @@
 

commit perl-Archive-Zip for openSUSE:Factory

2018-01-09 Thread root
Hello community,

here is the log from the commit of package perl-Archive-Zip for 
openSUSE:Factory checked in at 2018-01-09 14:34:38

Comparing /work/SRC/openSUSE:Factory/perl-Archive-Zip (Old)
 and  /work/SRC/openSUSE:Factory/.perl-Archive-Zip.new (New)


Package is "perl-Archive-Zip"

Tue Jan  9 14:34:38 2018 rev:38 rq:561820 version:1.60

Changes:

--- /work/SRC/openSUSE:Factory/perl-Archive-Zip/perl-Archive-Zip.changes
2016-08-17 11:57:39.0 +0200
+++ /work/SRC/openSUSE:Factory/.perl-Archive-Zip.new/perl-Archive-Zip.changes   
2018-01-09 14:34:39.659946060 +0100
@@ -1,0 +2,9 @@
+Wed Dec 20 06:04:25 UTC 2017 - co...@suse.com
+
+- updated to 1.60
+   see /usr/share/doc/packages/perl-Archive-Zip/Changes
+
+  1.60 Tue 19 Dec 2017
+  - RT 123913 Wrong shell bang in examples/selfex.pl
+
+---

Old:

  Archive-Zip-1.59.tar.gz

New:

  Archive-Zip-1.60.tar.gz



Other differences:
--
++ perl-Archive-Zip.spec ++
--- /var/tmp/diff_new_pack.tQhkBf/_old  2018-01-09 14:34:40.371912661 +0100
+++ /var/tmp/diff_new_pack.tQhkBf/_new  2018-01-09 14:34:40.371912661 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-Archive-Zip
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 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
@@ -17,14 +17,14 @@
 
 
 Name:   perl-Archive-Zip
-Version:1.59
+Version:1.60
 Release:0
 %define cpan_name Archive-Zip
 Summary:Provide an interface to ZIP archive files
 License:Artistic-1.0 or GPL-1.0+
 Group:  Development/Libraries/Perl
 Url:http://search.cpan.org/dist/Archive-Zip/
-Source0:
http://www.cpan.org/authors/id/P/PH/PHRED/%{cpan_name}-%{version}.tar.gz
+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

++ Archive-Zip-1.59.tar.gz -> Archive-Zip-1.60.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Archive-Zip-1.59/Changes new/Archive-Zip-1.60/Changes
--- old/Archive-Zip-1.59/Changes2016-08-02 19:46:53.0 +0200
+++ new/Archive-Zip-1.60/Changes2017-12-19 19:41:50.0 +0100
@@ -1,5 +1,8 @@
 Revision history for Perl extension Archive-Zip
 
+1.60 Tue 19 Dec 2017
+- RT 123913 Wrong shell bang in examples/selfex.pl
+
 1.58 Tue 2 Aug 2016
 - avoid relying on . being in @INC [github/karenetheridge]
 - update MANIFEST.SKIP [github/haarg]
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Archive-Zip-1.59/META.json 
new/Archive-Zip-1.60/META.json
--- old/Archive-Zip-1.59/META.json  2016-08-11 22:06:51.0 +0200
+++ new/Archive-Zip-1.60/META.json  2017-12-19 19:43:30.0 +0100
@@ -4,13 +4,13 @@
   "Ned Konz "
],
"dynamic_config" : 0,
-   "generated_by" : "ExtUtils::MakeMaker version 7.1, CPAN::Meta::Converter 
version 2.142060",
+   "generated_by" : "ExtUtils::MakeMaker version 7.3, CPAN::Meta::Converter 
version 2.150010",
"license" : [
   "perl_5"
],
"meta-spec" : {
   "url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec;,
-  "version" : "2"
+  "version" : 2
},
"name" : "Archive-Zip",
"no_index" : {
@@ -65,5 +65,6 @@
  "web" : "https://github.com/redhotpenguin/perl-Archive-Zip;
   }
},
-   "version" : "1.59"
+   "version" : "1.60",
+   "x_serialization_backend" : "JSON::PP version 2.97000"
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Archive-Zip-1.59/META.yml 
new/Archive-Zip-1.60/META.yml
--- old/Archive-Zip-1.59/META.yml   2016-08-11 22:06:51.0 +0200
+++ new/Archive-Zip-1.60/META.yml   2017-12-19 19:43:30.0 +0100
@@ -9,7 +9,7 @@
 configure_requires:
   ExtUtils::MakeMaker: '0'
 dynamic_config: 0
-generated_by: 'ExtUtils::MakeMaker version 7.1, CPAN::Meta::Converter version 
2.142060'
+generated_by: 'ExtUtils::MakeMaker version 7.3, CPAN::Meta::Converter version 
2.150010'
 license: perl
 meta-spec:
   url: http://module-build.sourceforge.net/META-spec-v1.4.html
@@ -35,4 +35,5 @@
 resources:
   bugtracker: https://rt.cpan.org/Public/Dist/Display.html?Name=Archive-Zip
   repository: https://github.com/redhotpenguin/perl-Archive-Zip.git
-version: '1.59'
+version: '1.60'
+x_serialization_backend: 'CPAN::Meta::YAML version 0.018'

commit perl-Archive-Zip for openSUSE:Factory

2016-08-17 Thread h_root
Hello community,

here is the log from the commit of package perl-Archive-Zip for 
openSUSE:Factory checked in at 2016-08-17 11:57:38

Comparing /work/SRC/openSUSE:Factory/perl-Archive-Zip (Old)
 and  /work/SRC/openSUSE:Factory/.perl-Archive-Zip.new (New)


Package is "perl-Archive-Zip"

Changes:

--- /work/SRC/openSUSE:Factory/perl-Archive-Zip/perl-Archive-Zip.changes
2016-08-09 22:14:14.0 +0200
+++ /work/SRC/openSUSE:Factory/.perl-Archive-Zip.new/perl-Archive-Zip.changes   
2016-08-17 11:57:39.0 +0200
@@ -1,0 +2,6 @@
+Fri Aug 12 05:02:55 UTC 2016 - co...@suse.com
+
+- updated to 1.59
+   see /usr/share/doc/packages/perl-Archive-Zip/Changes
+
+---

Old:

  Archive-Zip-1.58.tar.gz

New:

  Archive-Zip-1.59.tar.gz



Other differences:
--
++ perl-Archive-Zip.spec ++
--- /var/tmp/diff_new_pack.ZnWbyJ/_old  2016-08-17 11:57:40.0 +0200
+++ /var/tmp/diff_new_pack.ZnWbyJ/_new  2016-08-17 11:57:40.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   perl-Archive-Zip
-Version:1.58
+Version:1.59
 Release:0
 %define cpan_name Archive-Zip
 Summary:Provide an interface to ZIP archive files

++ Archive-Zip-1.58.tar.gz -> Archive-Zip-1.59.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Archive-Zip-1.58/META.json 
new/Archive-Zip-1.59/META.json
--- old/Archive-Zip-1.58/META.json  2016-08-02 19:48:41.0 +0200
+++ new/Archive-Zip-1.59/META.json  2016-08-11 22:06:51.0 +0200
@@ -3,7 +3,7 @@
"author" : [
   "Ned Konz "
],
-   "dynamic_config" : 1,
+   "dynamic_config" : 0,
"generated_by" : "ExtUtils::MakeMaker version 7.1, CPAN::Meta::Converter 
version 2.142060",
"license" : [
   "perl_5"
@@ -22,8 +22,7 @@
"prereqs" : {
   "build" : {
  "requires" : {
-"Test::MockModule" : "0",
-"Test::More" : "0.88"
+"ExtUtils::MakeMaker" : "0"
  }
   },
   "configure" : {
@@ -46,13 +45,25 @@
 "Time::Local" : "0",
 "perl" : "5.006"
  }
+  },
+  "test" : {
+ "requires" : {
+"Test::MockModule" : "0",
+"Test::More" : "0.88"
+ }
   }
},
"release_status" : "stable",
"resources" : {
+  "bugtracker" : {
+ "mailto" : "bug-archive-...@rt.cpan.org",
+ "web" : 
"https://rt.cpan.org/Public/Dist/Display.html?Name=Archive-Zip;
+  },
   "repository" : {
- "url" : "https://github.com/redhotpenguin/perl-Archive-Zip-svn;
+ "type" : "git",
+ "url" : "https://github.com/redhotpenguin/perl-Archive-Zip.git;,
+ "web" : "https://github.com/redhotpenguin/perl-Archive-Zip;
   }
},
-   "version" : "1.58"
+   "version" : "1.59"
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Archive-Zip-1.58/META.yml 
new/Archive-Zip-1.59/META.yml
--- old/Archive-Zip-1.58/META.yml   2016-08-02 19:48:41.0 +0200
+++ new/Archive-Zip-1.59/META.yml   2016-08-11 22:06:51.0 +0200
@@ -3,11 +3,12 @@
 author:
   - 'Ned Konz '
 build_requires:
+  ExtUtils::MakeMaker: '0'
   Test::MockModule: '0'
   Test::More: '0.88'
 configure_requires:
   ExtUtils::MakeMaker: '0'
-dynamic_config: 1
+dynamic_config: 0
 generated_by: 'ExtUtils::MakeMaker version 7.1, CPAN::Meta::Converter version 
2.142060'
 license: perl
 meta-spec:
@@ -32,5 +33,6 @@
   Time::Local: '0'
   perl: '5.006'
 resources:
-  repository: https://github.com/redhotpenguin/perl-Archive-Zip-svn
-version: '1.58'
+  bugtracker: https://rt.cpan.org/Public/Dist/Display.html?Name=Archive-Zip
+  repository: https://github.com/redhotpenguin/perl-Archive-Zip.git
+version: '1.59'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Archive-Zip-1.58/Makefile.PL 
new/Archive-Zip-1.59/Makefile.PL
--- old/Archive-Zip-1.58/Makefile.PL2015-12-02 20:20:52.0 +0100
+++ new/Archive-Zip-1.59/Makefile.PL2016-08-11 22:06:33.0 +0200
@@ -8,9 +8,22 @@
 use ExtUtils::MakeMaker;
 
 WriteMakefile1(
+#BUILD_REQUIRES => {
+#},
+
 META_MERGE => {
+'meta-spec' => { version => 2 },
+dynamic_config => 0,
 resources => {
-repository => 
'https://github.com/redhotpenguin/perl-Archive-Zip-svn',
+repository => {
+url => 'https://github.com/redhotpenguin/perl-Archive-Zip.git',
+web => 'https://github.com/redhotpenguin/perl-Archive-Zip',
+type => 'git',
+},
+   

commit perl-Archive-Zip for openSUSE:Factory

2016-08-09 Thread h_root
Hello community,

here is the log from the commit of package perl-Archive-Zip for 
openSUSE:Factory checked in at 2016-08-09 22:14:07

Comparing /work/SRC/openSUSE:Factory/perl-Archive-Zip (Old)
 and  /work/SRC/openSUSE:Factory/.perl-Archive-Zip.new (New)


Package is "perl-Archive-Zip"

Changes:

--- /work/SRC/openSUSE:Factory/perl-Archive-Zip/perl-Archive-Zip.changes
2016-04-11 09:11:39.0 +0200
+++ /work/SRC/openSUSE:Factory/.perl-Archive-Zip.new/perl-Archive-Zip.changes   
2016-08-09 22:14:14.0 +0200
@@ -1,0 +2,10 @@
+Wed Aug  3 05:02:36 UTC 2016 - co...@suse.com
+
+- updated to 1.58
+   see /usr/share/doc/packages/perl-Archive-Zip/Changes
+
+  1.58 Tue 2 Aug 2016
+  - avoid relying on . being in @INC [github/karenetheridge]
+  - update MANIFEST.SKIP [github/haarg]
+
+---

Old:

  Archive-Zip-1.57.tar.gz

New:

  Archive-Zip-1.58.tar.gz



Other differences:
--
++ perl-Archive-Zip.spec ++
--- /var/tmp/diff_new_pack.iPn7rp/_old  2016-08-09 22:14:15.0 +0200
+++ /var/tmp/diff_new_pack.iPn7rp/_new  2016-08-09 22:14:15.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   perl-Archive-Zip
-Version:1.57
+Version:1.58
 Release:0
 %define cpan_name Archive-Zip
 Summary:Provide an interface to ZIP archive files
@@ -75,6 +75,6 @@
 
 %files -f %{name}.files
 %defattr(-,root,root,755)
-%doc Changes examples
+%doc Changes examples README.md
 
 %changelog

++ Archive-Zip-1.57.tar.gz -> Archive-Zip-1.58.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Archive-Zip-1.57/Changes new/Archive-Zip-1.58/Changes
--- old/Archive-Zip-1.57/Changes2016-04-01 19:54:36.0 +0200
+++ new/Archive-Zip-1.58/Changes2016-08-02 19:46:53.0 +0200
@@ -1,5 +1,9 @@
 Revision history for Perl extension Archive-Zip
 
+1.58 Tue 2 Aug 2016
+- avoid relying on . being in @INC [github/karenetheridge]
+- update MANIFEST.SKIP [github/haarg]
+
 1.57 Fri 1 Apr 2016
 - RT# 106548,106089,105330,111541 [github/ozcoder]
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Archive-Zip-1.57/MANIFEST 
new/Archive-Zip-1.58/MANIFEST
--- old/Archive-Zip-1.57/MANIFEST   2016-04-01 19:59:03.0 +0200
+++ new/Archive-Zip-1.58/MANIFEST   2016-08-02 19:48:41.0 +0200
@@ -32,6 +32,8 @@
 lib/Archive/Zip/ZipFileMember.pm
 Makefile.PL
 MANIFEST   This list of files
+MANIFEST.SKIP
+README.md
 script/crc32
 t/01_compile.t
 t/02_main.t
@@ -56,6 +58,7 @@
 t/21_zip64.t
 t/22_deflated_dir.t
 t/23_closed_handle.t
+t/24_unicode_win32.t
 t/badjpeg/expected.jpg
 t/badjpeg/source.zip
 t/common.pm
@@ -65,17 +68,18 @@
 t/data/crypt.zip
 t/data/def.zip
 t/data/defstr.zip
-t/data/good_github11.zip
-t/data/jar.zip
-t/data/store.zip
-t/data/storestr.zip
+t/data/empty.zip
 t/data/emptydef.zip
 t/data/emptydefstr.zip
 t/data/emptystore.zip
 t/data/emptystorestr.zip
+t/data/good_github11.zip
+t/data/jar.zip
 t/data/linux.zip
 t/data/mkzip.pl
 t/data/perl.zip
+t/data/store.zip
+t/data/storestr.zip
 t/data/streamed.zip
 t/data/winzip.zip
 t/data/zip64.zip
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Archive-Zip-1.57/MANIFEST.SKIP 
new/Archive-Zip-1.58/MANIFEST.SKIP
--- old/Archive-Zip-1.57/MANIFEST.SKIP  1970-01-01 01:00:00.0 +0100
+++ new/Archive-Zip-1.58/MANIFEST.SKIP  2016-08-02 19:46:53.0 +0200
@@ -0,0 +1,34 @@
+^\.travis.yml$
+^\.git.*
+^Makefile$
+\.old$
+\.bak$
+^MYMETA\..*
+
+\bblib/
+\bpm_to_blib\.ts$
+\bpm_to_blib$
+\bblibdirs\.ts$
+
+~$
+\#$
+\b\.#
+\.tmp$
+\.#
+\.rej$
+\..*\.sw.?$
+
+\B\.DS_Store
+\B\._
+
+\bcover_db\b
+\bcovered\b
+
+\B\.prove$
+
+^test\.log$
+^testdir/
+^extracted/
+^testin\.zip$
+^testout\.zip$
+^test2\.zip$
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Archive-Zip-1.57/META.json 
new/Archive-Zip-1.58/META.json
--- old/Archive-Zip-1.57/META.json  2016-04-01 19:59:03.0 +0200
+++ new/Archive-Zip-1.58/META.json  2016-08-02 19:48:41.0 +0200
@@ -4,7 +4,7 @@
   "Ned Konz "
],
"dynamic_config" : 1,
-   "generated_by" : "ExtUtils::MakeMaker version 7.02, CPAN::Meta::Converter 
version 2.142060",
+   "generated_by" : "ExtUtils::MakeMaker version 7.1, CPAN::Meta::Converter 
version 2.142060",
"license" : [
   "perl_5"
],
@@ -54,5 +54,5 @@
  "url" : "https://github.com/redhotpenguin/perl-Archive-Zip-svn;
   }
},
-   "version" : "1.57"
+   "version" : "1.58"
 }
diff -urN '--exclude=CVS' 

commit perl-Archive-Zip for openSUSE:Factory

2016-04-11 Thread h_root
Hello community,

here is the log from the commit of package perl-Archive-Zip for 
openSUSE:Factory checked in at 2016-04-11 09:11:37

Comparing /work/SRC/openSUSE:Factory/perl-Archive-Zip (Old)
 and  /work/SRC/openSUSE:Factory/.perl-Archive-Zip.new (New)


Package is "perl-Archive-Zip"

Changes:

--- /work/SRC/openSUSE:Factory/perl-Archive-Zip/perl-Archive-Zip.changes
2016-01-04 09:20:15.0 +0100
+++ /work/SRC/openSUSE:Factory/.perl-Archive-Zip.new/perl-Archive-Zip.changes   
2016-04-11 09:11:39.0 +0200
@@ -1,0 +2,9 @@
+Mon Apr  4 09:14:47 UTC 2016 - co...@suse.com
+
+- updated to 1.57
+   see /usr/share/doc/packages/perl-Archive-Zip/Changes
+
+  1.57 Fri 1 Apr 2016
+  - RT# 106548,106089,105330,111541 [github/ozcoder]
+
+---

Old:

  Archive-Zip-1.56.tar.gz

New:

  Archive-Zip-1.57.tar.gz



Other differences:
--
++ perl-Archive-Zip.spec ++
--- /var/tmp/diff_new_pack.48jYzy/_old  2016-04-11 09:11:40.0 +0200
+++ /var/tmp/diff_new_pack.48jYzy/_new  2016-04-11 09:11:40.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-Archive-Zip
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 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
@@ -17,7 +17,7 @@
 
 
 Name:   perl-Archive-Zip
-Version:1.56
+Version:1.57
 Release:0
 %define cpan_name Archive-Zip
 Summary:Provide an interface to ZIP archive files

++ Archive-Zip-1.56.tar.gz -> Archive-Zip-1.57.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Archive-Zip-1.56/Changes new/Archive-Zip-1.57/Changes
--- old/Archive-Zip-1.56/Changes2015-12-17 19:25:05.0 +0100
+++ new/Archive-Zip-1.57/Changes2016-04-01 19:54:36.0 +0200
@@ -1,5 +1,8 @@
 Revision history for Perl extension Archive-Zip
 
+1.57 Fri 1 Apr 2016
+- RT# 106548,106089,105330,111541 [github/ozcoder]
+
 1.56 Thu 17 Dec 2015
 - fix $Archive::Zip::UNICODE issues [github/xlat]
 - on MSWin32 in methods addFile, addDirectory, addTree: the 
externalFileName was 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Archive-Zip-1.56/META.json 
new/Archive-Zip-1.57/META.json
--- old/Archive-Zip-1.56/META.json  2015-12-17 19:25:47.0 +0100
+++ new/Archive-Zip-1.57/META.json  2016-04-01 19:59:03.0 +0200
@@ -54,5 +54,5 @@
  "url" : "https://github.com/redhotpenguin/perl-Archive-Zip-svn;
   }
},
-   "version" : "1.56"
+   "version" : "1.57"
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Archive-Zip-1.56/META.yml 
new/Archive-Zip-1.57/META.yml
--- old/Archive-Zip-1.56/META.yml   2015-12-17 19:25:47.0 +0100
+++ new/Archive-Zip-1.57/META.yml   2016-04-01 19:59:03.0 +0200
@@ -33,4 +33,4 @@
   perl: '5.006'
 resources:
   repository: https://github.com/redhotpenguin/perl-Archive-Zip-svn
-version: '1.56'
+version: '1.57'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Archive-Zip-1.56/lib/Archive/Zip/Archive.pm 
new/Archive-Zip-1.57/lib/Archive/Zip/Archive.pm
--- old/Archive-Zip-1.56/lib/Archive/Zip/Archive.pm 2015-12-16 
18:53:13.0 +0100
+++ new/Archive-Zip-1.57/lib/Archive/Zip/Archive.pm 2016-04-01 
19:55:02.0 +0200
@@ -14,7 +14,7 @@
 use vars qw( $VERSION @ISA );
 
 BEGIN {
-$VERSION = '1.56';
+$VERSION = '1.57';
 @ISA = qw( Archive::Zip );
 }
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/Archive-Zip-1.56/lib/Archive/Zip/BufferedFileHandle.pm 
new/Archive-Zip-1.57/lib/Archive/Zip/BufferedFileHandle.pm
--- old/Archive-Zip-1.56/lib/Archive/Zip/BufferedFileHandle.pm  2015-12-16 
18:53:13.0 +0100
+++ new/Archive-Zip-1.57/lib/Archive/Zip/BufferedFileHandle.pm  2016-04-01 
19:55:02.0 +0200
@@ -13,7 +13,7 @@
 use vars qw{$VERSION};
 
 BEGIN {
-$VERSION = '1.56';
+$VERSION = '1.57';
 $VERSION = eval $VERSION;
 }
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Archive-Zip-1.56/lib/Archive/Zip/DirectoryMember.pm 
new/Archive-Zip-1.57/lib/Archive/Zip/DirectoryMember.pm
--- old/Archive-Zip-1.56/lib/Archive/Zip/DirectoryMember.pm 2015-12-16 
18:53:13.0 +0100
+++ new/Archive-Zip-1.57/lib/Archive/Zip/DirectoryMember.pm 2016-04-01 
19:55:02.0 +0200
@@ -6,7 +6,7 @@
 use 

commit perl-Archive-Zip for openSUSE:Factory

2016-01-04 Thread h_root
Hello community,

here is the log from the commit of package perl-Archive-Zip for 
openSUSE:Factory checked in at 2016-01-04 09:19:54

Comparing /work/SRC/openSUSE:Factory/perl-Archive-Zip (Old)
 and  /work/SRC/openSUSE:Factory/.perl-Archive-Zip.new (New)


Package is "perl-Archive-Zip"

Changes:

--- /work/SRC/openSUSE:Factory/perl-Archive-Zip/perl-Archive-Zip.changes
2015-12-13 09:36:31.0 +0100
+++ /work/SRC/openSUSE:Factory/.perl-Archive-Zip.new/perl-Archive-Zip.changes   
2016-01-04 09:20:15.0 +0100
@@ -1,0 +2,13 @@
+Sat Dec 26 09:29:20 UTC 2015 - co...@suse.com
+
+- updated to 1.56
+   see /usr/share/doc/packages/perl-Archive-Zip/Changes
+
+  1.56 Thu 17 Dec 2015
+  - fix $Archive::Zip::UNICODE issues [github/xlat]
+  - on MSWin32 in methods addFile, addDirectory, addTree: the 
externalFileName was 
+used in place of newName
+  - make sure that file names are utf8 in memberNames
+  - use Encode on all platform
+
+---

Old:

  Archive-Zip-1.55.tar.gz

New:

  Archive-Zip-1.56.tar.gz



Other differences:
--
++ perl-Archive-Zip.spec ++
--- /var/tmp/diff_new_pack.RtTAKT/_old  2016-01-04 09:20:16.0 +0100
+++ /var/tmp/diff_new_pack.RtTAKT/_new  2016-01-04 09:20:16.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   perl-Archive-Zip
-Version:1.55
+Version:1.56
 Release:0
 %define cpan_name Archive-Zip
 Summary:Provide an interface to ZIP archive files
@@ -59,7 +59,7 @@
 
 %prep
 %setup -q -n %{cpan_name}-%{version}
-find . -type f -print0 | xargs -0 chmod 644
+find . -type f ! -name \*.pl -print0 | xargs -0 chmod 644
 
 %build
 %{__perl} Makefile.PL INSTALLDIRS=vendor

++ Archive-Zip-1.55.tar.gz -> Archive-Zip-1.56.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Archive-Zip-1.55/Changes new/Archive-Zip-1.56/Changes
--- old/Archive-Zip-1.55/Changes2015-12-04 20:24:44.0 +0100
+++ new/Archive-Zip-1.56/Changes2015-12-17 19:25:05.0 +0100
@@ -1,8 +1,15 @@
 Revision history for Perl extension Archive-Zip
 
+1.56 Thu 17 Dec 2015
+- fix $Archive::Zip::UNICODE issues [github/xlat]
+- on MSWin32 in methods addFile, addDirectory, addTree: the 
externalFileName was 
+  used in place of newName
+- make sure that file names are utf8 in memberNames
+- use Encode on all platform
+
 1.55 Fri 04 Dec 2015
 - rt.cpan.org #110064 - fix empty archive issue with OS X gnu tar
-
+ 
 1.54 Wed 02 Dec 2015
 - Ensure filehandles created by Archive::Zip::tempFile are closed 
[github/antoniomonty]
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Archive-Zip-1.55/META.json 
new/Archive-Zip-1.56/META.json
--- old/Archive-Zip-1.55/META.json  2015-12-04 20:34:49.0 +0100
+++ new/Archive-Zip-1.56/META.json  2015-12-17 19:25:47.0 +0100
@@ -54,5 +54,5 @@
  "url" : "https://github.com/redhotpenguin/perl-Archive-Zip-svn;
   }
},
-   "version" : "1.55"
+   "version" : "1.56"
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Archive-Zip-1.55/META.yml 
new/Archive-Zip-1.56/META.yml
--- old/Archive-Zip-1.55/META.yml   2015-12-04 20:34:49.0 +0100
+++ new/Archive-Zip-1.56/META.yml   2015-12-17 19:25:47.0 +0100
@@ -33,4 +33,4 @@
   perl: '5.006'
 resources:
   repository: https://github.com/redhotpenguin/perl-Archive-Zip-svn
-version: '1.55'
+version: '1.56'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Archive-Zip-1.55/lib/Archive/Zip/Archive.pm 
new/Archive-Zip-1.56/lib/Archive/Zip/Archive.pm
--- old/Archive-Zip-1.55/lib/Archive/Zip/Archive.pm 2015-12-04 
20:19:33.0 +0100
+++ new/Archive-Zip-1.56/lib/Archive/Zip/Archive.pm 2015-12-16 
18:53:13.0 +0100
@@ -9,18 +9,13 @@
 use File::Copy ();
 use File::Basename;
 use Cwd;
+use Encode qw(encode_utf8 decode_utf8);
 
 use vars qw( $VERSION @ISA );
 
 BEGIN {
-$VERSION = '1.55';
+$VERSION = '1.56';
 @ISA = qw( Archive::Zip );
-
-if ($^O eq 'MSWin32') {
-require Win32;
-require Encode;
-Encode->import(qw{ encode_utf8 decode_utf8 });
-}
 }
 
 use Archive::Zip qw(
@@ -234,6 +229,10 @@
 my $self = shift;
 my $newMember = (ref($_[0]) eq 'HASH') ? shift->{member} : shift;
 push(@{$self->{'members'}}, $newMember) if $newMember;
+if($newMember && ($newMember->{bitFlag} & 0x800) 
+  && !utf8::is_utf8($newMember->{fileName})){
+

commit perl-Archive-Zip for openSUSE:Factory

2015-12-13 Thread h_root
Hello community,

here is the log from the commit of package perl-Archive-Zip for 
openSUSE:Factory checked in at 2015-12-13 09:36:30

Comparing /work/SRC/openSUSE:Factory/perl-Archive-Zip (Old)
 and  /work/SRC/openSUSE:Factory/.perl-Archive-Zip.new (New)


Package is "perl-Archive-Zip"

Changes:

--- /work/SRC/openSUSE:Factory/perl-Archive-Zip/perl-Archive-Zip.changes
2015-10-01 12:22:24.0 +0200
+++ /work/SRC/openSUSE:Factory/.perl-Archive-Zip.new/perl-Archive-Zip.changes   
2015-12-13 09:36:31.0 +0100
@@ -1,0 +2,12 @@
+Sat Dec  5 09:49:37 UTC 2015 - co...@suse.com
+
+- updated to 1.55
+   see /usr/share/doc/packages/perl-Archive-Zip/Changes
+
+  1.55 Fri 04 Dec 2015
+  - rt.cpan.org #110064 - fix empty archive issue with OS X gnu tar
+  
+  1.54 Wed 02 Dec 2015
+  - Ensure filehandles created by Archive::Zip::tempFile are closed 
[github/antoniomonty]
+
+---

Old:

  Archive-Zip-1.53.tar.gz

New:

  Archive-Zip-1.55.tar.gz



Other differences:
--
++ perl-Archive-Zip.spec ++
--- /var/tmp/diff_new_pack.VAn5Np/_old  2015-12-13 09:36:32.0 +0100
+++ /var/tmp/diff_new_pack.VAn5Np/_new  2015-12-13 09:36:32.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   perl-Archive-Zip
-Version:1.53
+Version:1.55
 Release:0
 %define cpan_name Archive-Zip
 Summary:Provide an interface to ZIP archive files
@@ -31,6 +31,7 @@
 BuildRequires:  perl
 BuildRequires:  perl-macros
 BuildRequires:  perl(Compress::Raw::Zlib) >= 2.017
+BuildRequires:  perl(Test::MockModule)
 BuildRequires:  perl(Test::More) >= 0.88
 Requires:   perl(Compress::Raw::Zlib) >= 2.017
 %{perl_requires}
@@ -50,11 +51,11 @@
 Members can be created from members in existing Zip files, or from existing
 directories, files, or strings.
 
-This module uses the the Compress::Raw::Zlib manpage library to read and
-write the compressed streams inside the files.
+This module uses the Compress::Raw::Zlib library to read and write the
+compressed streams inside the files.
 
-One can use the Archive::Zip::MemberRead manpage to read the zip file
-archive members as if they were files.
+One can use Archive::Zip::MemberRead to read the zip file archive members
+as if they were files.
 
 %prep
 %setup -q -n %{cpan_name}-%{version}

++ Archive-Zip-1.53.tar.gz -> Archive-Zip-1.55.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Archive-Zip-1.53/Changes new/Archive-Zip-1.55/Changes
--- old/Archive-Zip-1.53/Changes2015-09-23 19:42:31.0 +0200
+++ new/Archive-Zip-1.55/Changes2015-12-04 20:24:44.0 +0100
@@ -1,5 +1,11 @@
 Revision history for Perl extension Archive-Zip
 
+1.55 Fri 04 Dec 2015
+- rt.cpan.org #110064 - fix empty archive issue with OS X gnu tar
+
+1.54 Wed 02 Dec 2015
+- Ensure filehandles created by Archive::Zip::tempFile are closed 
[github/antoniomonty]
+
 1.53 Wed 22 Sep 2015
 - rt.cpan.org #107268 - Archive-Zip-1.52.tar.gz is (nearly) empty
   Thanks to SREZIC for the spot on my dad brain sleep schedule error
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Archive-Zip-1.53/MANIFEST 
new/Archive-Zip-1.55/MANIFEST
--- old/Archive-Zip-1.53/MANIFEST   2015-09-23 19:42:37.0 +0200
+++ new/Archive-Zip-1.55/MANIFEST   2015-12-04 20:34:49.0 +0100
@@ -55,6 +55,7 @@
 t/20_bug_github11.t
 t/21_zip64.t
 t/22_deflated_dir.t
+t/23_closed_handle.t
 t/badjpeg/expected.jpg
 t/badjpeg/source.zip
 t/common.pm
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Archive-Zip-1.53/META.json 
new/Archive-Zip-1.55/META.json
--- old/Archive-Zip-1.53/META.json  2015-09-23 19:42:37.0 +0200
+++ new/Archive-Zip-1.55/META.json  2015-12-04 20:34:49.0 +0100
@@ -22,6 +22,7 @@
"prereqs" : {
   "build" : {
  "requires" : {
+"Test::MockModule" : "0",
 "Test::More" : "0.88"
  }
   },
@@ -53,5 +54,5 @@
  "url" : "https://github.com/redhotpenguin/perl-Archive-Zip-svn;
   }
},
-   "version" : "1.53"
+   "version" : "1.55"
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Archive-Zip-1.53/META.yml 
new/Archive-Zip-1.55/META.yml
--- old/Archive-Zip-1.53/META.yml   2015-09-23 19:42:37.0 +0200
+++ new/Archive-Zip-1.55/META.yml   2015-12-04 20:34:49.0 +0100
@@ -3,6 +3,7 @@
 author:
   - 'Ned Konz '
 build_requires:
+  Test::MockModule: '0'
   Test::More: '0.88'
 configure_requires:
   ExtUtils::MakeMaker: '0'
@@ 

commit perl-Archive-Zip for openSUSE:Factory

2015-10-01 Thread h_root
Hello community,

here is the log from the commit of package perl-Archive-Zip for 
openSUSE:Factory checked in at 2015-10-01 12:22:22

Comparing /work/SRC/openSUSE:Factory/perl-Archive-Zip (Old)
 and  /work/SRC/openSUSE:Factory/.perl-Archive-Zip.new (New)


Package is "perl-Archive-Zip"

Changes:

--- /work/SRC/openSUSE:Factory/perl-Archive-Zip/perl-Archive-Zip.changes
2015-09-03 18:03:37.0 +0200
+++ /work/SRC/openSUSE:Factory/.perl-Archive-Zip.new/perl-Archive-Zip.changes   
2015-10-01 12:22:24.0 +0200
@@ -1,0 +2,23 @@
+Sat Sep 26 08:32:21 UTC 2015 - co...@suse.com
+
+- updated to 1.53
+   see /usr/share/doc/packages/perl-Archive-Zip/Changes
+
+  1.53 Wed 22 Sep 2015
+  - rt.cpan.org #107268 - Archive-Zip-1.52.tar.gz is (nearly) empty
+Thanks to SREZIC for the spot on my dad brain sleep schedule error
+Creating the dist on OS X caused 'Numeric user ID too largeNumeric 
group ID too large'
+  
+  1.52 Tue 22 Sep 2015
+  - rt.cpan.org #105902, thanks HMBRAND
+
+---
+Tue Sep 22 08:48:31 UTC 2015 - co...@suse.com
+
+- updated to 1.51
+   see /usr/share/doc/packages/perl-Archive-Zip/Changes
+
+  1.51 Tue 22 Sep 2015
+  - Compare vs filename checksum in crc32 script [github/talisein]
+
+---

Old:

  Archive-Zip-1.50.tar.gz

New:

  Archive-Zip-1.53.tar.gz



Other differences:
--
++ perl-Archive-Zip.spec ++
--- /var/tmp/diff_new_pack.CYr1un/_old  2015-10-01 12:22:25.0 +0200
+++ /var/tmp/diff_new_pack.CYr1un/_new  2015-10-01 12:22:25.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   perl-Archive-Zip
-Version:1.50
+Version:1.53
 Release:0
 %define cpan_name Archive-Zip
 Summary:Provide an interface to ZIP archive files

++ Archive-Zip-1.50.tar.gz -> Archive-Zip-1.53.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Archive-Zip-1.50/Changes new/Archive-Zip-1.53/Changes
--- old/Archive-Zip-1.50/Changes2015-08-26 02:09:51.0 +0200
+++ new/Archive-Zip-1.53/Changes2015-09-23 19:42:31.0 +0200
@@ -1,5 +1,16 @@
 Revision history for Perl extension Archive-Zip
 
+1.53 Wed 22 Sep 2015
+- rt.cpan.org #107268 - Archive-Zip-1.52.tar.gz is (nearly) empty
+  Thanks to SREZIC for the spot on my dad brain sleep schedule error
+  Creating the dist on OS X caused 'Numeric user ID too largeNumeric group 
ID too large'
+
+1.52 Tue 22 Sep 2015
+- rt.cpan.org #105902, thanks HMBRAND
+
+1.51 Tue 22 Sep 2015
+- Compare vs filename checksum in crc32 script [github/talisein]
+
 1.50 Tue 25 Aug 2015
 - Fix t/08_readmember_record_sep.t for Win32 [github/pauloscustodio]
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Archive-Zip-1.50/META.json 
new/Archive-Zip-1.53/META.json
--- old/Archive-Zip-1.50/META.json  2015-08-26 02:10:53.0 +0200
+++ new/Archive-Zip-1.53/META.json  2015-09-23 19:42:37.0 +0200
@@ -4,7 +4,7 @@
   "Ned Konz "
],
"dynamic_config" : 1,
-   "generated_by" : "ExtUtils::MakeMaker version 6.6302, CPAN::Meta::Converter 
version 2.120630",
+   "generated_by" : "ExtUtils::MakeMaker version 7.02, CPAN::Meta::Converter 
version 2.142060",
"license" : [
   "perl_5"
],
@@ -53,5 +53,5 @@
  "url" : "https://github.com/redhotpenguin/perl-Archive-Zip-svn;
   }
},
-   "version" : "1.50"
+   "version" : "1.53"
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Archive-Zip-1.50/META.yml 
new/Archive-Zip-1.53/META.yml
--- old/Archive-Zip-1.50/META.yml   2015-08-26 02:10:53.0 +0200
+++ new/Archive-Zip-1.53/META.yml   2015-09-23 19:42:37.0 +0200
@@ -3,33 +3,33 @@
 author:
   - 'Ned Konz '
 build_requires:
-  Test::More: 0.88
+  Test::More: '0.88'
 configure_requires:
-  ExtUtils::MakeMaker: 0
+  ExtUtils::MakeMaker: '0'
 dynamic_config: 1
-generated_by: 'ExtUtils::MakeMaker version 6.6302, CPAN::Meta::Converter 
version 2.120630'
+generated_by: 'ExtUtils::MakeMaker version 7.02, CPAN::Meta::Converter version 
2.142060'
 license: perl
 meta-spec:
   url: http://module-build.sourceforge.net/META-spec-v1.4.html
-  version: 1.4
+  version: '1.4'
 name: Archive-Zip
 no_index:
   directory:
 - t
 - inc
 requires:
-  Compress::Raw::Zlib: 2.017
-  File::Basename: 0
-  File::Copy: 0
-  File::Find: 0
-  File::Path: 0
-  File::Spec: 0.80
-  File::Temp: 0
-  IO::File: 0
-  IO::Handle: 0
-  IO::Seekable: 0
-  Time::Local: 0
-  perl: 

commit perl-Archive-Zip for openSUSE:Factory

2015-09-03 Thread h_root
Hello community,

here is the log from the commit of package perl-Archive-Zip for 
openSUSE:Factory checked in at 2015-09-03 17:58:35

Comparing /work/SRC/openSUSE:Factory/perl-Archive-Zip (Old)
 and  /work/SRC/openSUSE:Factory/.perl-Archive-Zip.new (New)


Package is "perl-Archive-Zip"

Changes:

--- /work/SRC/openSUSE:Factory/perl-Archive-Zip/perl-Archive-Zip.changes
2015-08-07 00:16:39.0 +0200
+++ /work/SRC/openSUSE:Factory/.perl-Archive-Zip.new/perl-Archive-Zip.changes   
2015-09-03 18:03:37.0 +0200
@@ -1,0 +2,9 @@
+Sat Aug 29 08:32:36 UTC 2015 - co...@suse.com
+
+- updated to 1.50
+   see /usr/share/doc/packages/perl-Archive-Zip/Changes
+
+  1.50 Tue 25 Aug 2015
+  - Fix t/08_readmember_record_sep.t for Win32 [github/pauloscustodio]
+
+---

Old:

  Archive-Zip-1.49.tar.gz

New:

  Archive-Zip-1.50.tar.gz



Other differences:
--
++ perl-Archive-Zip.spec ++
--- /var/tmp/diff_new_pack.XbFYgN/_old  2015-09-03 18:03:39.0 +0200
+++ /var/tmp/diff_new_pack.XbFYgN/_new  2015-09-03 18:03:39.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   perl-Archive-Zip
-Version:1.49
+Version:1.50
 Release:0
 %define cpan_name Archive-Zip
 Summary:Provide an interface to ZIP archive files

++ Archive-Zip-1.49.tar.gz -> Archive-Zip-1.50.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Archive-Zip-1.49/Changes new/Archive-Zip-1.50/Changes
--- old/Archive-Zip-1.49/Changes2015-07-31 20:54:56.0 +0200
+++ new/Archive-Zip-1.50/Changes2015-08-26 02:09:51.0 +0200
@@ -1,5 +1,8 @@
 Revision history for Perl extension Archive-Zip
 
+1.50 Tue 25 Aug 2015
+- Fix t/08_readmember_record_sep.t for Win32 [github/pauloscustodio]
+
 1.49 Fri 31 Jul 2015
 - Fails on unseekable file handle after desiredCompressionLevel(), RT 
#54827
 - Upgrade build tools to avoid tar warnings, RT #105547
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Archive-Zip-1.49/META.json 
new/Archive-Zip-1.50/META.json
--- old/Archive-Zip-1.49/META.json  2015-07-31 20:59:09.0 +0200
+++ new/Archive-Zip-1.50/META.json  2015-08-26 02:10:53.0 +0200
@@ -4,7 +4,7 @@
   "Ned Konz "
],
"dynamic_config" : 1,
-   "generated_by" : "ExtUtils::MakeMaker version 7.04, CPAN::Meta::Converter 
version 2.142690",
+   "generated_by" : "ExtUtils::MakeMaker version 6.6302, CPAN::Meta::Converter 
version 2.120630",
"license" : [
   "perl_5"
],
@@ -53,5 +53,5 @@
  "url" : "https://github.com/redhotpenguin/perl-Archive-Zip-svn;
   }
},
-   "version" : "1.49"
+   "version" : "1.50"
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Archive-Zip-1.49/META.yml 
new/Archive-Zip-1.50/META.yml
--- old/Archive-Zip-1.49/META.yml   2015-07-31 20:59:08.0 +0200
+++ new/Archive-Zip-1.50/META.yml   2015-08-26 02:10:53.0 +0200
@@ -3,33 +3,33 @@
 author:
   - 'Ned Konz '
 build_requires:
-  Test::More: '0.88'
+  Test::More: 0.88
 configure_requires:
-  ExtUtils::MakeMaker: '0'
+  ExtUtils::MakeMaker: 0
 dynamic_config: 1
-generated_by: 'ExtUtils::MakeMaker version 7.04, CPAN::Meta::Converter version 
2.142690'
+generated_by: 'ExtUtils::MakeMaker version 6.6302, CPAN::Meta::Converter 
version 2.120630'
 license: perl
 meta-spec:
   url: http://module-build.sourceforge.net/META-spec-v1.4.html
-  version: '1.4'
+  version: 1.4
 name: Archive-Zip
 no_index:
   directory:
 - t
 - inc
 requires:
-  Compress::Raw::Zlib: '2.017'
-  File::Basename: '0'
-  File::Copy: '0'
-  File::Find: '0'
-  File::Path: '0'
-  File::Spec: '0.80'
-  File::Temp: '0'
-  IO::File: '0'
-  IO::Handle: '0'
-  IO::Seekable: '0'
-  Time::Local: '0'
-  perl: '5.006'
+  Compress::Raw::Zlib: 2.017
+  File::Basename: 0
+  File::Copy: 0
+  File::Find: 0
+  File::Path: 0
+  File::Spec: 0.80
+  File::Temp: 0
+  IO::File: 0
+  IO::Handle: 0
+  IO::Seekable: 0
+  Time::Local: 0
+  perl: 5.006
 resources:
   repository: https://github.com/redhotpenguin/perl-Archive-Zip-svn
-version: '1.49'
+version: 1.50
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Archive-Zip-1.49/lib/Archive/Zip/Archive.pm 
new/Archive-Zip-1.50/lib/Archive/Zip/Archive.pm
--- old/Archive-Zip-1.49/lib/Archive/Zip/Archive.pm 2015-07-31 
20:58:45.0 +0200
+++ new/Archive-Zip-1.50/lib/Archive/Zip/Archive.pm 2015-08-26 
02:10:17.0 +0200
@@ -13,7 +13,7 @@
 use vars qw( $VERSION @ISA );
 
 BEGIN {
-   

commit perl-Archive-Zip for openSUSE:Factory

2015-08-06 Thread h_root
Hello community,

here is the log from the commit of package perl-Archive-Zip for 
openSUSE:Factory checked in at 2015-08-07 00:16:35

Comparing /work/SRC/openSUSE:Factory/perl-Archive-Zip (Old)
 and  /work/SRC/openSUSE:Factory/.perl-Archive-Zip.new (New)


Package is perl-Archive-Zip

Changes:

--- /work/SRC/openSUSE:Factory/perl-Archive-Zip/perl-Archive-Zip.changes
2015-07-02 22:44:28.0 +0200
+++ /work/SRC/openSUSE:Factory/.perl-Archive-Zip.new/perl-Archive-Zip.changes   
2015-08-07 00:16:39.0 +0200
@@ -1,0 +2,10 @@
+Sat Aug  1 08:21:41 UTC 2015 - co...@suse.com
+
+- updated to 1.49
+   see /usr/share/doc/packages/perl-Archive-Zip/Changes
+
+  1.49 Fri 31 Jul 2015
+  - Fails on unseekable file handle after desiredCompressionLevel(), RT 
#54827
+  - Upgrade build tools to avoid tar warnings, RT #105547
+
+---

Old:

  Archive-Zip-1.48.tar.gz

New:

  Archive-Zip-1.49.tar.gz



Other differences:
--
++ perl-Archive-Zip.spec ++
--- /var/tmp/diff_new_pack.wQUpCP/_old  2015-08-07 00:16:40.0 +0200
+++ /var/tmp/diff_new_pack.wQUpCP/_new  2015-08-07 00:16:40.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   perl-Archive-Zip
-Version:1.48
+Version:1.49
 Release:0
 %define cpan_name Archive-Zip
 Summary:Provide an interface to ZIP archive files

++ Archive-Zip-1.48.tar.gz - Archive-Zip-1.49.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Archive-Zip-1.48/Changes new/Archive-Zip-1.49/Changes
--- old/Archive-Zip-1.48/Changes2015-06-18 23:12:33.0 +0200
+++ new/Archive-Zip-1.49/Changes2015-07-31 20:54:56.0 +0200
@@ -1,5 +1,9 @@
 Revision history for Perl extension Archive-Zip
 
+1.49 Fri 31 Jul 2015
+- Fails on unseekable file handle after desiredCompressionLevel(), RT 
#54827
+- Upgrade build tools to avoid tar warnings, RT #105547
+
 1.48 Thu 18 Jun 2015
 - Wrap skip in a SKIP: block [github/plicease]
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Archive-Zip-1.48/META.json 
new/Archive-Zip-1.49/META.json
--- old/Archive-Zip-1.48/META.json  2015-06-18 23:12:53.0 +0200
+++ new/Archive-Zip-1.49/META.json  2015-07-31 20:59:09.0 +0200
@@ -4,7 +4,7 @@
   Ned Konz p...@bike-nomad.com
],
dynamic_config : 1,
-   generated_by : ExtUtils::MakeMaker version 6.98, CPAN::Meta::Converter 
version 2.142690,
+   generated_by : ExtUtils::MakeMaker version 7.04, CPAN::Meta::Converter 
version 2.142690,
license : [
   perl_5
],
@@ -53,5 +53,5 @@
  url : https://github.com/redhotpenguin/perl-Archive-Zip-svn;
   }
},
-   version : 1.48
+   version : 1.49
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Archive-Zip-1.48/META.yml 
new/Archive-Zip-1.49/META.yml
--- old/Archive-Zip-1.48/META.yml   2015-06-18 23:12:53.0 +0200
+++ new/Archive-Zip-1.49/META.yml   2015-07-31 20:59:08.0 +0200
@@ -7,7 +7,7 @@
 configure_requires:
   ExtUtils::MakeMaker: '0'
 dynamic_config: 1
-generated_by: 'ExtUtils::MakeMaker version 6.98, CPAN::Meta::Converter version 
2.142690'
+generated_by: 'ExtUtils::MakeMaker version 7.04, CPAN::Meta::Converter version 
2.142690'
 license: perl
 meta-spec:
   url: http://module-build.sourceforge.net/META-spec-v1.4.html
@@ -32,4 +32,4 @@
   perl: '5.006'
 resources:
   repository: https://github.com/redhotpenguin/perl-Archive-Zip-svn
-version: '1.48'
+version: '1.49'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Archive-Zip-1.48/lib/Archive/Zip/Archive.pm 
new/Archive-Zip-1.49/lib/Archive/Zip/Archive.pm
--- old/Archive-Zip-1.48/lib/Archive/Zip/Archive.pm 2015-06-18 
23:12:25.0 +0200
+++ new/Archive-Zip-1.49/lib/Archive/Zip/Archive.pm 2015-07-31 
20:58:45.0 +0200
@@ -13,7 +13,7 @@
 use vars qw( $VERSION @ISA );
 
 BEGIN {
-$VERSION = '1.48';
+$VERSION = '1.49';
 @ISA = qw( Archive::Zip );
 
 if ($^O eq 'MSWin32') {
@@ -663,9 +663,9 @@
$self-{'numberOfCentralDirectories'} == 0x ||
$self-{'centralDirectorySize'} == 0x ||
$self-{'centralDirectoryOffsetWRTStartingDiskNumber'} == 
0x) {
-return _formatError(zip64 not supported);
+return _formatError(zip64 not supported . Dumper($self));
 }
-
+use Data::Dumper;
 if ($zipfileCommentLength) {
 my $zipfileComment = '';
 $bytesRead = $fh-read($zipfileComment, $zipfileCommentLength);
diff -urN '--exclude=CVS' 

commit perl-Archive-Zip for openSUSE:Factory

2015-07-02 Thread h_root
Hello community,

here is the log from the commit of package perl-Archive-Zip for 
openSUSE:Factory checked in at 2015-07-02 22:44:28

Comparing /work/SRC/openSUSE:Factory/perl-Archive-Zip (Old)
 and  /work/SRC/openSUSE:Factory/.perl-Archive-Zip.new (New)


Package is perl-Archive-Zip

Changes:

--- /work/SRC/openSUSE:Factory/perl-Archive-Zip/perl-Archive-Zip.changes
2015-04-16 14:11:59.0 +0200
+++ /work/SRC/openSUSE:Factory/.perl-Archive-Zip.new/perl-Archive-Zip.changes   
2015-07-02 22:44:28.0 +0200
@@ -1,0 +2,13 @@
+Sun Jun 21 08:16:04 UTC 2015 - co...@suse.com
+
+- updated to 1.48
+   see /usr/share/doc/packages/perl-Archive-Zip/Changes
+
+  1.48 Thu 18 Jun 2015
+  - Wrap skip in a SKIP: block [github/plicease]
+  
+  1.47 Wed 17 Jun 2015
+  - zip file with a deflated directory cannot be written out again 
[github/ntyni]
+  - add missing test data to MANIFEST
+
+---

Old:

  Archive-Zip-1.46.tar.gz

New:

  Archive-Zip-1.48.tar.gz
  cpanspec.yml



Other differences:
--
++ perl-Archive-Zip.spec ++
--- /var/tmp/diff_new_pack.1ttPAX/_old  2015-07-02 22:44:29.0 +0200
+++ /var/tmp/diff_new_pack.1ttPAX/_new  2015-07-02 22:44:29.0 +0200
@@ -17,14 +17,15 @@
 
 
 Name:   perl-Archive-Zip
-Version:1.46
+Version:1.48
 Release:0
 %define cpan_name Archive-Zip
-Summary:Provide an interface to ZIP archive files.
+Summary:Provide an interface to ZIP archive files
 License:Artistic-1.0 or GPL-1.0+
 Group:  Development/Libraries/Perl
 Url:http://search.cpan.org/dist/Archive-Zip/
-Source: 
http://www.cpan.org/authors/id/P/PH/PHRED/%{cpan_name}-%{version}.tar.gz
+Source0:
http://www.cpan.org/authors/id/P/PH/PHRED/%{cpan_name}-%{version}.tar.gz
+Source1:cpanspec.yml
 BuildArch:  noarch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  perl

++ Archive-Zip-1.46.tar.gz - Archive-Zip-1.48.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Archive-Zip-1.46/Changes new/Archive-Zip-1.48/Changes
--- old/Archive-Zip-1.46/Changes2015-03-25 06:16:44.0 +0100
+++ new/Archive-Zip-1.48/Changes2015-06-18 23:12:33.0 +0200
@@ -1,5 +1,12 @@
 Revision history for Perl extension Archive-Zip
 
+1.48 Thu 18 Jun 2015
+- Wrap skip in a SKIP: block [github/plicease]
+
+1.47 Wed 17 Jun 2015
+- zip file with a deflated directory cannot be written out again 
[github/ntyni]
+- add missing test data to MANIFEST
+
 1.46 Tue 24 Mar 2015
 - CRC or size mismatch when extracting member second time [github/AGWA 
github/pwr22]
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Archive-Zip-1.46/MANIFEST 
new/Archive-Zip-1.48/MANIFEST
--- old/Archive-Zip-1.46/MANIFEST   2015-03-25 06:17:42.0 +0100
+++ new/Archive-Zip-1.48/MANIFEST   2015-06-18 23:12:53.0 +0200
@@ -52,14 +52,20 @@
 t/17_101092.t
 t/18_bug_92205.t
 t/19_bug_101240.t
+t/20_bug_github11.t
+t/21_zip64.t
+t/22_deflated_dir.t
 t/badjpeg/expected.jpg
 t/badjpeg/source.zip
 t/common.pm
+t/data/bad_github11.zip
 t/data/chmod.zip
 t/data/crypcomp.zip
 t/data/crypt.zip
 t/data/def.zip
 t/data/defstr.zip
+t/data/good_github11.zip
+t/data/jar.zip
 t/data/store.zip
 t/data/storestr.zip
 t/data/emptydef.zip
@@ -71,5 +77,6 @@
 t/data/perl.zip
 t/data/streamed.zip
 t/data/winzip.zip
+t/data/zip64.zip
 META.yml Module YAML meta-data (added by 
MakeMaker)
 META.jsonModule JSON meta-data (added by 
MakeMaker)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Archive-Zip-1.46/META.json 
new/Archive-Zip-1.48/META.json
--- old/Archive-Zip-1.46/META.json  2015-03-25 06:17:42.0 +0100
+++ new/Archive-Zip-1.48/META.json  2015-06-18 23:12:53.0 +0200
@@ -4,7 +4,7 @@
   Ned Konz p...@bike-nomad.com
],
dynamic_config : 1,
-   generated_by : ExtUtils::MakeMaker version 6.6302, CPAN::Meta::Converter 
version 2.142690,
+   generated_by : ExtUtils::MakeMaker version 6.98, CPAN::Meta::Converter 
version 2.142690,
license : [
   perl_5
],
@@ -53,5 +53,5 @@
  url : https://github.com/redhotpenguin/perl-Archive-Zip-svn;
   }
},
-   version : 1.46
+   version : 1.48
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Archive-Zip-1.46/META.yml 
new/Archive-Zip-1.48/META.yml
--- old/Archive-Zip-1.46/META.yml   2015-03-25 06:17:42.0 +0100
+++ 

commit perl-Archive-Zip for openSUSE:Factory

2015-04-16 Thread h_root
Hello community,

here is the log from the commit of package perl-Archive-Zip for 
openSUSE:Factory checked in at 2015-04-16 14:11:57

Comparing /work/SRC/openSUSE:Factory/perl-Archive-Zip (Old)
 and  /work/SRC/openSUSE:Factory/.perl-Archive-Zip.new (New)


Package is perl-Archive-Zip

Changes:

--- /work/SRC/openSUSE:Factory/perl-Archive-Zip/perl-Archive-Zip.changes
2014-02-11 10:43:14.0 +0100
+++ /work/SRC/openSUSE:Factory/.perl-Archive-Zip.new/perl-Archive-Zip.changes   
2015-04-16 14:11:59.0 +0200
@@ -1,0 +2,37 @@
+Mon Apr 13 18:15:12 UTC 2015 - co...@suse.com
+
+- updated to 1.46
+   see /usr/share/doc/packages/perl-Archive-Zip/Changes
+
+  1.46 Tue 24 Mar 2015
+  - CRC or size mismatch when extracting member second time [github/AGWA 
github/pwr22]
+  
+  1.45 Mon 26 Jan 2015
+  - FreeBSD unzip sets $? to 0 for empty zip file [github.com/revhippie]
+  
+  1.44 Fri 23 Jan 2015
+  - Win32 with ZIP executable cannot create temp file 
[github.com/revhippie]
+  
+  1.43 Wed 14 Jan 2015
+  - Restore 101374 - failing tests were not regressions.
+  
+  1.42 Sun 11 Jan 2015
+  - Revert 101374, caused tester regression
+  - https://rt.cpan.org/Public/Bug/Display.html?id=101240 [cpan/PMQS]
+  
+  1.41 Fri 09 Jan 2015
+  - https://rt.cpan.org/Public/Bug/Display.html?id=101374 [zefram]
+  
+  1.40 Sun 04 Jan 2015
+  - https://rt.cpan.org/Public/Bug/Display.html?id=92205 [cpan/PMQS]
+  - https://rt.cpan.org/Public/Bug/Display.html?id=101092 [cpan/PMQS]
+  
+  1.39 Tue 21 Oct 2014
+  - store test data in temp dirs to fix parallelism and shuffling
+[Graham Knop]
+  
+  1.38 Tue 02 Sep 2014
+  - Setting unicode flag for each member when using $Archive::Zip::UNICODE 
[github.com/lackas]
+https://rt.cpan.org/Ticket/Display.html?id=83367
+
+---

Old:

  Archive-Zip-1.37.tar.gz

New:

  Archive-Zip-1.46.tar.gz



Other differences:
--
++ perl-Archive-Zip.spec ++
--- /var/tmp/diff_new_pack.AYmDSu/_old  2015-04-16 14:11:59.0 +0200
+++ /var/tmp/diff_new_pack.AYmDSu/_new  2015-04-16 14:11:59.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-Archive-Zip
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 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
@@ -17,7 +17,7 @@
 
 
 Name:   perl-Archive-Zip
-Version:1.37
+Version:1.46
 Release:0
 %define cpan_name Archive-Zip
 Summary:Provide an interface to ZIP archive files.
@@ -31,7 +31,6 @@
 BuildRequires:  perl-macros
 BuildRequires:  perl(Compress::Raw::Zlib) = 2.017
 BuildRequires:  perl(Test::More) = 0.88
-
 Requires:   perl(Compress::Raw::Zlib) = 2.017
 %{perl_requires}
 

++ Archive-Zip-1.37.tar.gz - Archive-Zip-1.46.tar.gz ++
 7727 lines of diff (skipped)




commit perl-Archive-Zip for openSUSE:Factory

2014-02-11 Thread h_root
Hello community,

here is the log from the commit of package perl-Archive-Zip for 
openSUSE:Factory checked in at 2014-02-11 10:43:12

Comparing /work/SRC/openSUSE:Factory/perl-Archive-Zip (Old)
 and  /work/SRC/openSUSE:Factory/.perl-Archive-Zip.new (New)


Package is perl-Archive-Zip

Changes:

--- /work/SRC/openSUSE:Factory/perl-Archive-Zip/perl-Archive-Zip.changes
2013-12-12 11:19:03.0 +0100
+++ /work/SRC/openSUSE:Factory/.perl-Archive-Zip.new/perl-Archive-Zip.changes   
2014-02-11 10:43:14.0 +0100
@@ -1,0 +2,8 @@
+Sun Feb  9 13:31:40 UTC 2014 - co...@suse.com
+
+- updated to 1.37
+- Need newer Test::More to support done_testing() [thaljef]
+- Fix error in version update with 1.35 [RT #91744]
+- fallback on copy if move gives permission denied [github.com/plicease]
+
+---

Old:

  Archive-Zip-1.34.tar.gz

New:

  Archive-Zip-1.37.tar.gz



Other differences:
--
++ perl-Archive-Zip.spec ++
--- /var/tmp/diff_new_pack.S7xSSj/_old  2014-02-11 10:43:14.0 +0100
+++ /var/tmp/diff_new_pack.S7xSSj/_new  2014-02-11 10:43:14.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-Archive-Zip
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:   perl-Archive-Zip
-Version:1.34
+Version:1.37
 Release:0
 %define cpan_name Archive-Zip
 Summary:Provide an interface to ZIP archive files.
@@ -30,20 +30,8 @@
 BuildRequires:  perl
 BuildRequires:  perl-macros
 BuildRequires:  perl(Compress::Raw::Zlib) = 2.017
-#BuildRequires: perl(Archive::Zip)
-#BuildRequires: perl(Archive::Zip::Archive)
-#BuildRequires: perl(Archive::Zip::BufferedFileHandle)
-#BuildRequires: perl(Archive::Zip::DirectoryMember)
-#BuildRequires: perl(Archive::Zip::FileMember)
-#BuildRequires: perl(Archive::Zip::Member)
-#BuildRequires: perl(Archive::Zip::MemberRead)
-#BuildRequires: perl(Archive::Zip::MockFileHandle)
-#BuildRequires: perl(Archive::Zip::NewFileMember)
-#BuildRequires: perl(Archive::Zip::StringMember)
-#BuildRequires: perl(Archive::Zip::ZipFileMember)
-#BuildRequires: perl(IO::Scalar)
-#BuildRequires: perl(IO::String)
-#BuildRequires: perl(MIME::Entity)
+BuildRequires:  perl(Test::More) = 0.88
+
 Requires:   perl(Compress::Raw::Zlib) = 2.017
 %{perl_requires}
 

++ Archive-Zip-1.34.tar.gz - Archive-Zip-1.37.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Archive-Zip-1.34/Changes new/Archive-Zip-1.37/Changes
--- old/Archive-Zip-1.34/Changes2013-12-02 23:10:14.0 +0100
+++ new/Archive-Zip-1.37/Changes2014-01-08 20:00:33.0 +0100
@@ -1,5 +1,13 @@
 Revision history for Perl extension Archive-Zip
 
+1.37 Wed 08 Jan 2014
+- Need newer Test::More to support done_testing() [thaljef]
+
+1.36 Mon 30 Dec 2013
+- Fix error in version update with 1.35 [RT #91744]
+
+1.35 Mon 30 Dec 2013
+- fallback on copy if move gives permission denied [github.com/plicease]
 
 1.34 Mon 2 Dec 2013
 - Restore svn history from svn.ali.as (thanks H. Merijn Brand)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Archive-Zip-1.34/META.json 
new/Archive-Zip-1.37/META.json
--- old/Archive-Zip-1.34/META.json  2013-12-02 23:12:13.0 +0100
+++ new/Archive-Zip-1.37/META.json  2014-01-08 20:01:45.0 +0100
@@ -22,7 +22,7 @@
prereqs : {
   build : {
  requires : {
-Test::More : 0.42
+Test::More : 0.88
  }
   },
   configure : {
@@ -53,5 +53,5 @@
  url : https://github.com/redhotpenguin/perl-Archive-Zip-svn;
   }
},
-   version : 1.34
+   version : 1.37
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Archive-Zip-1.34/META.yml 
new/Archive-Zip-1.37/META.yml
--- old/Archive-Zip-1.34/META.yml   2013-12-02 23:12:13.0 +0100
+++ new/Archive-Zip-1.37/META.yml   2014-01-08 20:01:45.0 +0100
@@ -3,7 +3,7 @@
 author:
   - 'Ned Konz p...@bike-nomad.com'
 build_requires:
-  Test::More: 0.42
+  Test::More: 0.88
 configure_requires:
   ExtUtils::MakeMaker: 0
 dynamic_config: 1
@@ -32,4 +32,4 @@
   perl: 5.006
 resources:
   repository: https://github.com/redhotpenguin/perl-Archive-Zip-svn
-version: 1.34
+version: 1.37
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 

commit perl-Archive-Zip for openSUSE:Factory

2013-12-12 Thread h_root
Hello community,

here is the log from the commit of package perl-Archive-Zip for 
openSUSE:Factory checked in at 2013-12-12 11:19:02

Comparing /work/SRC/openSUSE:Factory/perl-Archive-Zip (Old)
 and  /work/SRC/openSUSE:Factory/.perl-Archive-Zip.new (New)


Package is perl-Archive-Zip

Changes:

--- /work/SRC/openSUSE:Factory/perl-Archive-Zip/perl-Archive-Zip.changes
2013-11-27 15:31:02.0 +0100
+++ /work/SRC/openSUSE:Factory/.perl-Archive-Zip.new/perl-Archive-Zip.changes   
2013-12-12 11:19:03.0 +0100
@@ -1,0 +2,10 @@
+Mon Dec  9 11:15:40 UTC 2013 - co...@suse.com
+
+- updated to 1.34
+   - Restore svn history from svn.ali.as (thanks H. Merijn Brand)
+   - #90854 Test 17 in t/03_ex.t is failing
+   - Allow reading ZIP from seekable streams (like PerlIO::Scalar)
+   - RT#75197   
+   - Fixes: #76780: Cannot create member called 0 with addString (HAGGAI)
+
+---

Old:

  Archive-Zip-1.33.tar.gz

New:

  Archive-Zip-1.34.tar.gz



Other differences:
--
++ perl-Archive-Zip.spec ++
--- /var/tmp/diff_new_pack.myZEbD/_old  2013-12-12 11:19:03.0 +0100
+++ /var/tmp/diff_new_pack.myZEbD/_new  2013-12-12 11:19:03.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   perl-Archive-Zip
-Version:1.33
+Version:1.34
 Release:0
 %define cpan_name Archive-Zip
 Summary:Provide an interface to ZIP archive files.
@@ -86,6 +86,6 @@
 
 %files -f %{name}.files
 %defattr(-,root,root,755)
-%doc Changes examples LICENSE MYMETA.json README
+%doc Changes examples
 
 %changelog

++ Archive-Zip-1.33.tar.gz - Archive-Zip-1.34.tar.gz ++
 3669 lines of diff (skipped)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit perl-Archive-Zip for openSUSE:Factory

2013-11-27 Thread h_root
Hello community,

here is the log from the commit of package perl-Archive-Zip for 
openSUSE:Factory checked in at 2013-11-27 15:31:00

Comparing /work/SRC/openSUSE:Factory/perl-Archive-Zip (Old)
 and  /work/SRC/openSUSE:Factory/.perl-Archive-Zip.new (New)


Package is perl-Archive-Zip

Changes:

--- /work/SRC/openSUSE:Factory/perl-Archive-Zip/perl-Archive-Zip.changes
2011-11-21 12:36:10.0 +0100
+++ /work/SRC/openSUSE:Factory/.perl-Archive-Zip.new/perl-Archive-Zip.changes   
2013-11-27 15:31:02.0 +0100
@@ -1,0 +2,17 @@
+Tue Nov 26 07:31:20 UTC 2013 - co...@suse.com
+
+- updated to 1.33
+ - #59102 (Spelling error in manapage) [github.com/dsteinbrunner]
+ - #86600 typo fixes [github.com/dsteinbrunner]
+ - #89777 Unlink temp files generated by tempFile. [PHRED]
+ - Updated Perl dependency to 5.006 to reflect implicit dependencies
+   in the code exposed by Perl::MinimumVersion xt test (ADAMK)
+ - Fixes: #68446: Set compressed size and uncompressed size of an entry to 0
+   if either of them is 0 (HAGGAI)
+ - Added $VERSION to crc32 (ADAMK)
+ - Add decryption support
+ - More fixes by HAGGAI, which he still doesn't detail in Changes
+ - Various fixes by HAGGAI, which he has not yet provided details on:
+ - Experimental Unicode in file/dir names
+
+---

Old:

  Archive-Zip-1.30.tar.gz

New:

  Archive-Zip-1.33.tar.gz



Other differences:
--
++ perl-Archive-Zip.spec ++
--- /var/tmp/diff_new_pack.TroPft/_old  2013-11-27 15:31:03.0 +0100
+++ /var/tmp/diff_new_pack.TroPft/_new  2013-11-27 15:31:03.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-Archive-Zip
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -15,48 +15,37 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
-
 
 Name:   perl-Archive-Zip
+Version:1.33
+Release:0
 %define cpan_name Archive-Zip
-Summary:Provide an interface to ZIP archive files
-Version:1.30
-Release:10
-License:GPL-1.0+ or Artistic-1.0
+Summary:Provide an interface to ZIP archive files.
+License:Artistic-1.0 or GPL-1.0+
 Group:  Development/Libraries/Perl
 Url:http://search.cpan.org/dist/Archive-Zip/
-#Source: 
http://www.cpan.org/authors/id/A/AD/ADAMK/Archive-Zip-1.30.tar.gz
-Source: %{cpan_name}-%{version}.tar.gz
+Source: 
http://www.cpan.org/authors/id/P/PH/PHRED/%{cpan_name}-%{version}.tar.gz
 BuildArch:  noarch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-%{perl_requires}
 BuildRequires:  perl
 BuildRequires:  perl-macros
-BuildRequires:  perl(Test::More) = 0.42
 BuildRequires:  perl(Compress::Raw::Zlib) = 2.017
-BuildRequires:  perl(File::Basename)
-BuildRequires:  perl(File::Copy)
-BuildRequires:  perl(File::Find)
-BuildRequires:  perl(File::Path)
-BuildRequires:  perl(File::Spec) = 0.80
-BuildRequires:  perl(File::Temp)
-BuildRequires:  perl(IO::File)
-BuildRequires:  perl(IO::Handle)
-BuildRequires:  perl(IO::Seekable)
-BuildRequires:  perl(Time::Local)
-#
+#BuildRequires: perl(Archive::Zip)
+#BuildRequires: perl(Archive::Zip::Archive)
+#BuildRequires: perl(Archive::Zip::BufferedFileHandle)
+#BuildRequires: perl(Archive::Zip::DirectoryMember)
+#BuildRequires: perl(Archive::Zip::FileMember)
+#BuildRequires: perl(Archive::Zip::Member)
+#BuildRequires: perl(Archive::Zip::MemberRead)
+#BuildRequires: perl(Archive::Zip::MockFileHandle)
+#BuildRequires: perl(Archive::Zip::NewFileMember)
+#BuildRequires: perl(Archive::Zip::StringMember)
+#BuildRequires: perl(Archive::Zip::ZipFileMember)
+#BuildRequires: perl(IO::Scalar)
+#BuildRequires: perl(IO::String)
+#BuildRequires: perl(MIME::Entity)
 Requires:   perl(Compress::Raw::Zlib) = 2.017
-Requires:   perl(File::Basename)
-Requires:   perl(File::Copy)
-Requires:   perl(File::Find)
-Requires:   perl(File::Path)
-Requires:   perl(File::Spec) = 0.80
-Requires:   perl(File::Temp)
-Requires:   perl(IO::File)
-Requires:   perl(IO::Handle)
-Requires:   perl(IO::Seekable)
-Requires:   perl(Time::Local)
+%{perl_requires}
 
 %description
 The Archive::Zip module allows a Perl program to create, manipulate, read,
@@ -79,15 +68,9 @@
 One can use the Archive::Zip::MemberRead manpage to read the zip file
 archive members as if they were files.
 
-Authors:
-
- Adam Kennedy 

commit perl-Archive-Zip for openSUSE:Factory

2011-11-21 Thread h_root
Hello community,

here is the log from the commit of package perl-Archive-Zip for 
openSUSE:Factory checked in at 2011-11-21 12:35:19

Comparing /work/SRC/openSUSE:Factory/perl-Archive-Zip (Old)
 and  /work/SRC/openSUSE:Factory/.perl-Archive-Zip.new (New)


Package is perl-Archive-Zip, Maintainer is vci...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/perl-Archive-Zip/perl-Archive-Zip.changes
2011-09-23 12:35:59.0 +0200
+++ /work/SRC/openSUSE:Factory/.perl-Archive-Zip.new/perl-Archive-Zip.changes   
2011-11-21 12:36:10.0 +0100
@@ -1,0 +2,5 @@
+Fri Nov 18 11:09:24 UTC 2011 - co...@suse.com
+
+- use original .tar.gz
+
+---

Old:

  Archive-Zip-1.30.tar.bz2

New:

  Archive-Zip-1.30.tar.gz



Other differences:
--
++ perl-Archive-Zip.spec ++
--- /var/tmp/diff_new_pack.Hbjrg7/_old  2011-11-21 12:36:15.0 +0100
+++ /var/tmp/diff_new_pack.Hbjrg7/_new  2011-11-21 12:36:15.0 +0100
@@ -1,7 +1,7 @@
 #
-# spec file for package perl-Archive-Zip (Version 1.30)
+# spec file for package perl-Archive-Zip
 #
-# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -27,7 +27,7 @@
 Group:  Development/Libraries/Perl
 Url:http://search.cpan.org/dist/Archive-Zip/
 #Source: 
http://www.cpan.org/authors/id/A/AD/ADAMK/Archive-Zip-1.30.tar.gz
-Source: %{cpan_name}-%{version}.tar.bz2
+Source: %{cpan_name}-%{version}.tar.gz
 BuildArch:  noarch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %{perl_requires}

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org