OBS User unknown 2006-12-20 17:19:48 +00:00 committed by Git OBS Bridge
commit 32b2aba598
6 changed files with 250 additions and 0 deletions

23
.gitattributes vendored Normal file
View File

@ -0,0 +1,23 @@
## Default LFS
*.7z filter=lfs diff=lfs merge=lfs -text
*.bsp filter=lfs diff=lfs merge=lfs -text
*.bz2 filter=lfs diff=lfs merge=lfs -text
*.gem filter=lfs diff=lfs merge=lfs -text
*.gz filter=lfs diff=lfs merge=lfs -text
*.jar filter=lfs diff=lfs merge=lfs -text
*.lz filter=lfs diff=lfs merge=lfs -text
*.lzma filter=lfs diff=lfs merge=lfs -text
*.obscpio filter=lfs diff=lfs merge=lfs -text
*.oxt filter=lfs diff=lfs merge=lfs -text
*.pdf filter=lfs diff=lfs merge=lfs -text
*.png filter=lfs diff=lfs merge=lfs -text
*.rpm filter=lfs diff=lfs merge=lfs -text
*.tbz filter=lfs diff=lfs merge=lfs -text
*.tbz2 filter=lfs diff=lfs merge=lfs -text
*.tgz filter=lfs diff=lfs merge=lfs -text
*.ttf filter=lfs diff=lfs merge=lfs -text
*.txz filter=lfs diff=lfs merge=lfs -text
*.whl filter=lfs diff=lfs merge=lfs -text
*.xz filter=lfs diff=lfs merge=lfs -text
*.zip filter=lfs diff=lfs merge=lfs -text
*.zst filter=lfs diff=lfs merge=lfs -text

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
.osc

3
Archive-Zip-1.18.tar.bz2 Normal file
View File

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

105
perl-Archive-Zip.changes Normal file
View File

@ -0,0 +1,105 @@
-------------------------------------------------------------------
Wed Dec 20 14:32:01 CET 2006 - anicka@suse.cz
- add perl-File-Which to BuildRequires and enable tests again
-------------------------------------------------------------------
Thu Dec 14 11:43:05 CET 2006 - anicka@suse.cz
- update to 1.18
* Seperated the classes from the main file into seperate packages.
* Merged the Zip.pod into the main Zip.pm file.
* Applied default Perl::Tidy to all of the source files,
to improve the readability and maintainability of the files.
* Added license in Makefile.PL
* Added some additional entries to the realclean files
* Adding dependency on File::Which to deal with problems on systems
that lack zip and unzip programs. This really should
be a build-time dependency only, but ExtUtils::MakeMaker lacks
that capability.
* Upgraded all test scripts from Test.pm to Test::More
(removing Test.pm dependency)
* Removed MANIFEST and pod.t from repository
(will be auto-generated)
* Added SUPPORT section to docs
* Merged external TODO file into the POD as a more-common
TO DO section
* Added a BUGS section to the docs
* Moved crc32 to bin/crc32 in line with package layout conventions
- disable tests because they depend on File::Which
-------------------------------------------------------------------
Wed Jan 25 21:39:28 CET 2006 - mls@suse.de
- converted neededforbuild to BuildRequires
-------------------------------------------------------------------
Mon Jul 11 15:36:34 CEST 2005 - schubi@suse.de
- update to version 1.16
-------------------------------------------------------------------
Fri Apr 15 10:19:19 CEST 2005 - schubi@suse.de
- update to most recent version 1.14
-------------------------------------------------------------------
Thu Feb 26 15:46:00 CET 2004 - choeger@suse.de
- update to most recent version 1.09
-------------------------------------------------------------------
Sun Jan 11 11:48:53 CET 2004 - adrian@suse.de
- build as user
-------------------------------------------------------------------
Fri Aug 22 14:01:52 CEST 2003 - mjancar@suse.cz
- require the perl version we build with
-------------------------------------------------------------------
Thu Jul 17 12:52:30 CEST 2003 - choeger@suse.de
- use install_vendor and new %perl_process_packlist macro
-------------------------------------------------------------------
Tue Jun 17 11:38:46 CEST 2003 - choeger@suse.de
- updated filelist
-------------------------------------------------------------------
Sun May 25 23:47:11 CEST 2003 - ro@suse.de
- remove unpackaged files from buildroot
-------------------------------------------------------------------
Sat Feb 8 18:57:49 CET 2003 - link@suse.de
- updated to 1.05
-------------------------------------------------------------------
Fri Jul 12 22:43:27 MEST 2002 - link@suse.de
- some tweaks of the spec file
-------------------------------------------------------------------
Fri Jul 12 21:55:27 MEST 2002 - link@suse.de
- updated to 1.01
-------------------------------------------------------------------
Tue May 7 22:18:24 MEST 2002 - link@suse.de
- updated to 1.00
-------------------------------------------------------------------
Thu Aug 16 15:53:03 CEST 2001 - ro@suse.de
- removed bogus Obsoletes
-------------------------------------------------------------------
Fri Apr 6 14:15:44 CEST 2001 - link@suse.de
- first package, v0.11

118
perl-Archive-Zip.spec Normal file
View File

@ -0,0 +1,118 @@
#
# spec file for package perl-Archive-Zip (Version 1.18)
#
# Copyright (c) 2006 SUSE LINUX Products GmbH, Nuernberg, Germany.
# This file and all modifications and additions to the pristine
# package are under the same license as the package itself.
#
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
# norootforbuild
Name: perl-Archive-Zip
URL: http://cpan.org/modules/by-module/Archive/
BuildRequires: perl-Compress-Zlib perl-File-Which zip
Version: 1.18
Release: 3
Requires: perl = %{perl_version}
Autoreqprov: on
Group: Development/Libraries/Perl
License: Artistic License
Summary: perl-Archive-Zip
Source: Archive-Zip-%{version}.tar.bz2
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%description
Perl module for creation and manipulation of ZIP-files
Authors:
--------
Ned Kon <zperl@bike-nomad.com>
%prep
%setup -n Archive-Zip-%{version} -q
%build
perl Makefile.PL
make
make test
%install
[ "$RPM_BUILD_ROOT" != "/" ] && [ -d $RPM_BUILD_ROOT ] && rm -rf $RPM_BUILD_ROOT
make DESTDIR=$RPM_BUILD_ROOT install_vendor
%perl_process_packlist
rm -f $RPM_BUILD_ROOT/%{perl_vendorlib}/Archive/Zip.pod
%files
%defattr(-,root,root)
%doc Changes INSTALL MANIFEST README docs examples
%doc %{_mandir}/man?/*
%dir %{perl_vendorlib}/Archive
%{perl_vendorlib}/Archive/Zip
%{perl_vendorlib}/Archive/Zip.pm
%dir %{perl_vendorarch}/auto/Archive
%{perl_vendorarch}/auto/Archive/Zip
/usr/bin/crc32
/var/adm/perl-modules/perl-Archive-Zip
%clean
[ "$RPM_BUILD_ROOT" != "/" ] && [ -d $RPM_BUILD_ROOT ] && rm -rf $RPM_BUILD_ROOT
%changelog -n perl-Archive-Zip
* Wed Dec 20 2006 - anicka@suse.cz
- add perl-File-Which to BuildRequires and enable tests again
* Thu Dec 14 2006 - anicka@suse.cz
- update to 1.18
* Seperated the classes from the main file into seperate packages.
* Merged the Zip.pod into the main Zip.pm file.
* Applied default Perl::Tidy to all of the source files,
to improve the readability and maintainability of the files.
* Added license in Makefile.PL
* Added some additional entries to the realclean files
* Adding dependency on File::Which to deal with problems on systems
that lack zip and unzip programs. This really should
be a build-time dependency only, but ExtUtils::MakeMaker lacks
that capability.
* Upgraded all test scripts from Test.pm to Test::More
(removing Test.pm dependency)
* Removed MANIFEST and pod.t from repository
(will be auto-generated)
* Added SUPPORT section to docs
* Merged external TODO file into the POD as a more-common
TO DO section
* Added a BUGS section to the docs
* Moved crc32 to bin/crc32 in line with package layout conventions
- disable tests because they depend on File::Which
* Wed Jan 25 2006 - mls@suse.de
- converted neededforbuild to BuildRequires
* Mon Jul 11 2005 - schubi@suse.de
- update to version 1.16
* Fri Apr 15 2005 - schubi@suse.de
- update to most recent version 1.14
* Thu Feb 26 2004 - choeger@suse.de
- update to most recent version 1.09
* Sun Jan 11 2004 - adrian@suse.de
- build as user
* Fri Aug 22 2003 - mjancar@suse.cz
- require the perl version we build with
* Thu Jul 17 2003 - choeger@suse.de
- use install_vendor and new %%perl_process_packlist macro
* Tue Jun 17 2003 - choeger@suse.de
- updated filelist
* Sun May 25 2003 - ro@suse.de
- remove unpackaged files from buildroot
* Sat Feb 08 2003 - link@suse.de
- updated to 1.05
* Fri Jul 12 2002 - link@suse.de
- some tweaks of the spec file
* Fri Jul 12 2002 - link@suse.de
- updated to 1.01
* Tue May 07 2002 - link@suse.de
- updated to 1.00
* Thu Aug 16 2001 - ro@suse.de
- removed bogus Obsoletes
* Fri Apr 06 2001 - link@suse.de
- first package, v0.11

0
ready Normal file
View File