1.33 bump
This commit is contained in:
parent
8730017676
commit
260f386668
1
.gitignore
vendored
1
.gitignore
vendored
@ -1 +1,2 @@
|
|||||||
Archive-Zip-1.30.tar.gz
|
Archive-Zip-1.30.tar.gz
|
||||||
|
/Archive-Zip-1.33.tar.gz
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
diff -up Archive-Zip-1.30/lib/Archive/Zip/Member.pm.bug Archive-Zip-1.30/lib/Archive/Zip/Member.pm
|
diff -up Archive-Zip-1.33/lib/Archive/Zip/Member.pm.orig Archive-Zip-1.33/lib/Archive/Zip/Member.pm
|
||||||
--- Archive-Zip-1.30/lib/Archive/Zip/Member.pm.bug 2009-06-30 13:51:10.000000000 +0200
|
--- Archive-Zip-1.33/lib/Archive/Zip/Member.pm.orig 2013-11-10 04:47:27.000000000 +0100
|
||||||
+++ Archive-Zip-1.30/lib/Archive/Zip/Member.pm 2012-03-19 13:13:11.028294275 +0100
|
+++ Archive-Zip-1.33/lib/Archive/Zip/Member.pm 2013-11-22 12:48:19.848476120 +0100
|
||||||
@@ -159,13 +159,13 @@ sub bitFlag {
|
@@ -167,13 +167,13 @@ sub bitFlag {
|
||||||
|
|
||||||
# Set General Purpose Bit Flags according to the desiredCompressionLevel setting
|
# Set General Purpose Bit Flags according to the desiredCompressionLevel setting
|
||||||
if ( $self->desiredCompressionLevel == 1 || $self->desiredCompressionLevel == 2 ) {
|
if ( $self->desiredCompressionLevel == 1 || $self->desiredCompressionLevel == 2 ) {
|
||||||
@ -16,5 +16,5 @@ diff -up Archive-Zip-1.30/lib/Archive/Zip/Member.pm.bug Archive-Zip-1.30/lib/Arc
|
|||||||
- $self->{'bitFlag'} = DEFLATING_COMPRESSION_MAXIMUM;
|
- $self->{'bitFlag'} = DEFLATING_COMPRESSION_MAXIMUM;
|
||||||
+ $self->{'bitFlag'} |= DEFLATING_COMPRESSION_MAXIMUM;
|
+ $self->{'bitFlag'} |= DEFLATING_COMPRESSION_MAXIMUM;
|
||||||
}
|
}
|
||||||
$self->{'bitFlag'};
|
|
||||||
}
|
if ($Archive::Zip::UNICODE) {
|
||||||
|
@ -1,35 +1,47 @@
|
|||||||
Name: perl-Archive-Zip
|
Name: perl-Archive-Zip
|
||||||
Version: 1.30
|
Version: 1.33
|
||||||
Release: 13%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: Perl library for accessing Zip archives
|
Summary: Perl library for accessing Zip archives
|
||||||
|
|
||||||
Group: Development/Libraries
|
Group: Development/Libraries
|
||||||
License: GPL+ or Artistic
|
License: GPL+ or Artistic
|
||||||
URL: http://search.cpan.org/dist/Archive-Zip/
|
URL: http://search.cpan.org/dist/Archive-Zip/
|
||||||
Source0: http://search.cpan.org/CPAN/authors/id/A/AD/ADAMK/Archive-Zip-%{version}.tar.gz
|
Source0: http://search.cpan.org/CPAN/authors/id/P/PH/PHRED/Archive-Zip-%{version}.tar.gz
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
#https://rt.cpan.org/Public/Bug/Display.html?id=54827
|
#https://rt.cpan.org/Public/Bug/Display.html?id=54827
|
||||||
Patch0: Archive-Zip-cpan-rt-54827.patch
|
Patch0: Archive-Zip-cpan-rt-54827.patch
|
||||||
|
|
||||||
|
BuildRequires: perl
|
||||||
|
BuildRequires: perl(Config)
|
||||||
BuildRequires: perl(ExtUtils::MakeMaker)
|
BuildRequires: perl(ExtUtils::MakeMaker)
|
||||||
|
BuildRequires: perl(strict)
|
||||||
# Run-time
|
# Run-time
|
||||||
|
BuildRequires: perl(bytes)
|
||||||
BuildRequires: perl(Carp)
|
BuildRequires: perl(Carp)
|
||||||
BuildRequires: perl(constant)
|
BuildRequires: perl(constant)
|
||||||
BuildRequires: perl(Cwd)
|
BuildRequires: perl(Cwd)
|
||||||
BuildRequires: perl(Compress::Raw::Zlib)
|
BuildRequires: perl(Compress::Raw::Zlib)
|
||||||
|
BuildRequires: perl(Encode)
|
||||||
BuildRequires: perl(Exporter)
|
BuildRequires: perl(Exporter)
|
||||||
|
BuildRequires: perl(File::Basename)
|
||||||
|
BuildRequires: perl(File::Copy)
|
||||||
|
BuildRequires: perl(File::Find)
|
||||||
BuildRequires: perl(File::Path)
|
BuildRequires: perl(File::Path)
|
||||||
BuildRequires: perl(File::Spec) >= 0.80
|
BuildRequires: perl(File::Spec) >= 0.80
|
||||||
BuildRequires: perl(File::Temp)
|
BuildRequires: perl(File::Temp)
|
||||||
|
BuildRequires: perl(FileHandle)
|
||||||
|
BuildRequires: perl(integer)
|
||||||
BuildRequires: perl(IO::File)
|
BuildRequires: perl(IO::File)
|
||||||
BuildRequires: perl(IO::Seekable)
|
BuildRequires: perl(IO::Seekable)
|
||||||
BuildRequires: perl(Time::Local)
|
BuildRequires: perl(Time::Local)
|
||||||
|
BuildRequires: perl(vars)
|
||||||
# Tests
|
# Tests
|
||||||
BuildRequires: perl(Data::Dumper)
|
BuildRequires: perl(Data::Dumper)
|
||||||
BuildRequires: perl(File::Spec::Unix)
|
BuildRequires: perl(File::Spec::Unix)
|
||||||
BuildRequires: perl(IO::Scalar)
|
BuildRequires: perl(IO::Scalar)
|
||||||
BuildRequires: perl(Test::More)
|
BuildRequires: perl(Test::More)
|
||||||
|
BuildRequires: perl(warnings)
|
||||||
BuildRequires: unzip
|
BuildRequires: unzip
|
||||||
BuildRequires: zip
|
BuildRequires: zip
|
||||||
|
|
||||||
@ -84,6 +96,9 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Fri Nov 22 2013 Jitka Plesnikova <jplesnik@redhat.com> - 1.33-1
|
||||||
|
- 1.33 bump
|
||||||
|
|
||||||
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.30-13
|
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.30-13
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
||||||
|
|
||||||
@ -139,7 +154,7 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
* Fri Jan 11 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 1.20-4
|
* Fri Jan 11 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 1.20-4
|
||||||
- rebuild for new perl
|
- rebuild for new perl
|
||||||
|
|
||||||
* Mon Aug 23 2007 Robin Norwood <rnorwood@redhat.com> - 1.20-3
|
* Thu Aug 23 2007 Robin Norwood <rnorwood@redhat.com> - 1.20-3
|
||||||
- Fix license tag
|
- Fix license tag
|
||||||
|
|
||||||
* Wed Jun 27 2007 Robin Norwood <rnorwood@redhat.com> - 1.20-2
|
* Wed Jun 27 2007 Robin Norwood <rnorwood@redhat.com> - 1.20-2
|
||||||
@ -171,7 +186,7 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
* Thu Apr 14 2005 Jose Pedro Oliveira <jpo at di.uminho.pt> - 1.14-1
|
* Thu Apr 14 2005 Jose Pedro Oliveira <jpo at di.uminho.pt> - 1.14-1
|
||||||
- Update to 1.14.
|
- Update to 1.14.
|
||||||
|
|
||||||
* Fri Apr 7 2005 Michael Schwendt <mschwendt[AT]users.sf.net>
|
* Fri Apr 8 2005 Michael Schwendt <mschwendt[AT]users.sf.net>
|
||||||
- rebuilt
|
- rebuilt
|
||||||
|
|
||||||
* Sun Aug 15 2004 Ville Skyttä <ville.skytta at iki.fi> - 0:1.12-0.fdr.1
|
* Sun Aug 15 2004 Ville Skyttä <ville.skytta at iki.fi> - 0:1.12-0.fdr.1
|
||||||
|
Loading…
Reference in New Issue
Block a user