forked from pool/perl-Compress-Raw-Zlib
spec fix for macros.perl
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Compress-Raw-Zlib?expand=0&rev=3
This commit is contained in:
committed by
Git OBS Bridge
parent
621c254947
commit
d46cf23ee7
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:29ef339e24d499c61ba7fda0d4c67709b0c1ccbadd23541908b4abf53fafecb7
|
||||
size 173317
|
||||
3
Compress-Raw-Zlib-2.015.tar.bz2
Normal file
3
Compress-Raw-Zlib-2.015.tar.bz2
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:795a57bf4b9d9b8b9bcfc2fe48cd2804ef0206244c6bc3fe9305702af9e74553
|
||||
size 174559
|
||||
@@ -1,3 +1,40 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Jun 19 01:09:41 CEST 2009 - chris@computersalat.de
|
||||
|
||||
- spec fix for perl-macros
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jun 17 23:42:24 CEST 2009 - chris@computersalat.de
|
||||
|
||||
- added perl-macros
|
||||
o autogen filelist with perl_gen_filelist
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Jun 14 23:39:16 CEST 2009 - chris@computersalat.de
|
||||
|
||||
- update to 2.015
|
||||
* Makefile.PL
|
||||
Backout changes made in 2.014
|
||||
- 2.014
|
||||
* Makefile.PL
|
||||
Updated to check for indirect dependencies.
|
||||
- 2.012
|
||||
* Document the gzip flags that WindowBits can take.
|
||||
* Allow a dictionary to be used with a raw inflate.
|
||||
Needs zlib 1.2.2.1 or better.
|
||||
[RT #36046]
|
||||
- 2.011
|
||||
* A C++-style comment sneaked in with the last update. Fixed.
|
||||
[core patch #33828]
|
||||
- 2.010
|
||||
* No Changes
|
||||
- 2.009
|
||||
* No Changes
|
||||
- 2.008
|
||||
* Minor documentation changes in README
|
||||
- spec mods
|
||||
- autogen filelist
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Oct 8 09:33:35 CEST 2007 - anicka@suse.cz
|
||||
|
||||
|
||||
@@ -1,64 +1,88 @@
|
||||
#
|
||||
# spec file for package perl-Compress-Raw-Zlib (Version 2.006)
|
||||
# spec file for package perl-Compress-Raw-Zlib
|
||||
#
|
||||
# Copyright (c) 2007 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.
|
||||
# Copyright (c) 2009 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
|
||||
# upon. The license for this file, and modifications and additions to the
|
||||
# file, is the same license as for the pristine package itself (unless the
|
||||
# license for the pristine package is not an Open Source License, in which
|
||||
# case the license is the MIT License). An "Open Source License" is a
|
||||
# license that conforms to the Open Source Definition (Version 1.9)
|
||||
# published by the Open Source Initiative.
|
||||
|
||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
||||
#
|
||||
|
||||
# norootforbuild
|
||||
|
||||
#Distribution: %dist
|
||||
#Packager: %packager
|
||||
#Vendor: %vendor
|
||||
|
||||
Name: perl-Compress-Raw-Zlib
|
||||
Url: http://cpan.org/modules/by-module/Compress/
|
||||
%define cpan_name %( echo %{name} | %{__sed} -e 's,perl-,,' )
|
||||
Summary: Perl interface to the zlib compression library
|
||||
Version: 2.015
|
||||
Release: 1
|
||||
License: Artistic License
|
||||
Group: Development/Libraries/Perl
|
||||
Requires: perl = %{perl_version}
|
||||
AutoReqProv: on
|
||||
Summary: Perl interface to the zlib compression library
|
||||
Version: 2.006
|
||||
Release: 1
|
||||
Source: Compress-Raw-Zlib-%{version}.tar.bz2
|
||||
Url: http://cpan.org/modules/by-module/Compress/
|
||||
Source: %{cpan_name}-%{version}.tar.bz2
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
BuildRequires: perl
|
||||
BuildRequires: perl-macros
|
||||
BuildRequires: perl(Test::Pod) >= 1.00
|
||||
Requires: perl = %{perl_version}
|
||||
|
||||
#-------------------------------------------------------------------------------
|
||||
%description
|
||||
#-------------------------------------------------------------------------------
|
||||
%{cpan_name} module for perl
|
||||
|
||||
This module provides a Perl interface to the zlib compression library.
|
||||
|
||||
Authors:
|
||||
Paul Marquess <pmqs@cpan.org>
|
||||
|
||||
--------------------------------------------------------------------------------
|
||||
|
||||
Authors:
|
||||
--------
|
||||
Paul Marquess <Paul.Marquess@btinternet.com>
|
||||
|
||||
#-------------------------------------------------------------------------------
|
||||
%prep
|
||||
%setup -q -n Compress-Raw-Zlib-%{version}
|
||||
#-------------------------------------------------------------------------------
|
||||
%setup -q -n %{cpan_name}-%{version}
|
||||
|
||||
#-------------------------------------------------------------------------------
|
||||
%build
|
||||
perl Makefile.PL
|
||||
make
|
||||
make test
|
||||
#-------------------------------------------------------------------------------
|
||||
CFLAGS="$RPM_OPT_FLAGS" perl Makefile.PL
|
||||
%{__make}
|
||||
|
||||
%check
|
||||
%{__make} test
|
||||
|
||||
#-------------------------------------------------------------------------------
|
||||
%install
|
||||
make DESTDIR=$RPM_BUILD_ROOT install_vendor
|
||||
#-------------------------------------------------------------------------------
|
||||
%perl_make_install
|
||||
%perl_process_packlist
|
||||
%perl_gen_filelist
|
||||
|
||||
%files
|
||||
%defattr(-, root, root)
|
||||
%doc MANIFEST README
|
||||
%{_mandir}/man?/*
|
||||
%dir %{perl_vendorarch}/Compress/Raw
|
||||
%dir %{perl_vendorarch}/Compress
|
||||
%dir %{perl_vendorarch}/auto/Compress
|
||||
%dir %{perl_vendorarch}/auto/Compress/Raw
|
||||
%dir %{perl_vendorarch}/auto/Compress/Raw/Zlib
|
||||
%{perl_vendorarch}/Compress/Raw/Zlib.pm
|
||||
%{perl_vendorarch}/auto/Compress/Raw/Zlib/Zlib.bs
|
||||
%{perl_vendorarch}/auto/Compress/Raw/Zlib/Zlib.so
|
||||
%{perl_vendorarch}/auto/Compress/Raw/Zlib/autosplit.ix
|
||||
%{perl_vendorarch}/auto/Compress/Raw/Zlib/.packlist
|
||||
/var/adm/perl-modules/perl-Compress-Raw-Zlib
|
||||
#-------------------------------------------------------------------------------
|
||||
%clean
|
||||
#-------------------------------------------------------------------------------
|
||||
%{__rm} -rf $RPM_BUILD_ROOT
|
||||
|
||||
#-------------------------------------------------------------------------------
|
||||
%files -f %{name}.files
|
||||
#-------------------------------------------------------------------------------
|
||||
%defattr(-,root,root)
|
||||
%doc Changes README
|
||||
|
||||
#-------------------------------------------------------------------------------
|
||||
%changelog
|
||||
#-------------------------------------------------------------------------------
|
||||
* Mon Oct 08 2007 - anicka@suse.cz
|
||||
- update to 2.006
|
||||
* Makefile.PL: Added INSTALLDIRS directive to install as a core
|
||||
|
||||
Reference in New Issue
Block a user