Stephan Kulow 2013-11-26 07:58:34 +00:00 committed by Git OBS Bridge
parent ff99d82a52
commit 59783122c1
4 changed files with 44 additions and 57 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:f8b472ff77b7238e423bcb351968accc562f9d20700fbf2d8ed2a65fa0fa6318
size 197179

3
Archive-Zip-1.33.tar.gz Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:58812671e6eb88a43fcc89ab90562cf875961409b617b6d4787270dc3e23e94f
size 205135

View File

@ -1,3 +1,20 @@
-------------------------------------------------------------------
Tue Nov 26 07:31:20 UTC 2013 - coolo@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
-------------------------------------------------------------------
Fri Nov 18 11:09:24 UTC 2011 - coolo@suse.com

View File

@ -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+ or Artistic
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 @@ 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.
Authors:
--------
Adam Kennedy <adamk@cpan.org>
Previously maintained by Steve Peters <steve@fisharerojo.org>.
File attributes code by Maurice Aubrey <maurice@lovelyfilth.com>.
Originally by Ned Konz <nedkonz@cpan.org>.
%prep
%setup -q -n %{cpan_name}-%{version}
find . -type f -print0 | xargs -0 chmod 644
%build
%{__perl} Makefile.PL INSTALLDIRS=vendor
@ -98,24 +81,11 @@ Authors:
%install
%perl_make_install
### since 11.4 perl_process_packlist
### removes .packlist, perllocal.pod files
%if 0%{?suse_version} > 1130
%perl_process_packlist
%else
# do not perl_process_packlist
# remove .packlist file
%{__rm} -rf $RPM_BUILD_ROOT%perl_vendorarch
# remove perllocal.pod file
%{__rm} -f $RPM_BUILD_ROOT%perl_archlib/perllocal.pod
%endif
%perl_gen_filelist
%clean
%{__rm} -rf $RPM_BUILD_ROOT
%files -f %{name}.files
%defattr(-,root,root,-)
%doc Changes LICENSE README examples
%defattr(-,root,root,755)
%doc Changes examples LICENSE MYMETA.json README
%changelog