- updated to 3.02 see /usr/share/doc/packages/perl-Archive-Tar/CHANGES 3.02 13/04/2023 (Manfred Stock) - Test block sizes up to (2**31 - 1) bytes only (fix for 32bit perls) - Don't match on message from exception in symlink test - Improve formatting of $Archive::Tar::RESOLVE_SYMLINK documentation 3.00 25/03/2023 (Chris Lindee, Reini Urban, Paul Bolle, Michiel Beijen, Paulo Custodio, Michael R. Davis && Manfred Stock) - RT #119949: Correctly concat prefix on directories - enabled t/90_symlink.t for all platforms with symlinks - Fix pod typo 'Archive::Tar::Files' - Update links under SEE ALSO - Skip symlink tests on Windows/msys2 - Support extraction of large files OBS-URL: https://build.opensuse.org/request/show/1080798 OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Archive-Tar?expand=0&rev=23
74 lines
2.3 KiB
RPMSpec
74 lines
2.3 KiB
RPMSpec
#
|
|
# spec file for package perl-Archive-Tar
|
|
#
|
|
# Copyright (c) 2023 SUSE LLC
|
|
#
|
|
# 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 https://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
%define cpan_name Archive-Tar
|
|
Name: perl-Archive-Tar
|
|
Version: 3.02
|
|
Release: 0
|
|
License: Artistic-1.0 OR GPL-1.0-or-later
|
|
Summary: Manipulates TAR archives
|
|
URL: https://metacpan.org/release/%{cpan_name}
|
|
Source0: https://cpan.metacpan.org/authors/id/B/BI/BINGOS/%{cpan_name}-%{version}.tar.gz
|
|
Source1: cpanspec.yml
|
|
BuildArch: noarch
|
|
BuildRequires: perl
|
|
BuildRequires: perl-macros
|
|
BuildRequires: perl(Compress::Zlib) >= 2.015
|
|
BuildRequires: perl(IO::Compress::Base) >= 2.015
|
|
BuildRequires: perl(IO::Compress::Bzip2) >= 2.015
|
|
BuildRequires: perl(IO::Compress::Gzip) >= 2.015
|
|
BuildRequires: perl(IO::Zlib) >= 1.01
|
|
Requires: perl(Compress::Zlib) >= 2.015
|
|
Requires: perl(IO::Compress::Base) >= 2.015
|
|
Requires: perl(IO::Compress::Bzip2) >= 2.015
|
|
Requires: perl(IO::Compress::Gzip) >= 2.015
|
|
Requires: perl(IO::Zlib) >= 1.01
|
|
Recommends: perl(IO::Compress::Xz)
|
|
Recommends: perl(IO::Uncompress::UnXz)
|
|
%{perl_requires}
|
|
|
|
%description
|
|
Archive::Tar provides an object oriented mechanism for handling tar files.
|
|
It provides class methods for quick and easy files handling while also
|
|
allowing for the creation of tar file objects for custom manipulation. If
|
|
you have the IO::Zlib module installed, Archive::Tar will also support
|
|
compressed or gzipped tar files.
|
|
|
|
An object of class Archive::Tar represents a .tar(.gz) archive full of
|
|
files and things.
|
|
|
|
%prep
|
|
%autosetup -n %{cpan_name}-%{version}
|
|
|
|
%build
|
|
perl Makefile.PL INSTALLDIRS=vendor
|
|
%make_build
|
|
|
|
%check
|
|
make test
|
|
|
|
%install
|
|
%perl_make_install
|
|
%perl_process_packlist
|
|
%perl_gen_filelist
|
|
|
|
%files -f %{name}.files
|
|
%doc CHANGES README
|
|
|
|
%changelog
|