forked from pool/perl-File-Copy-Recursive
- update to 0.44
0.44 Tue Apr 24 08:18:19 2018
- Issue #18: fix t/05.legacy-pathmk_unc.t for recent updates
(thanks zdm)
0.43 Sat Apr 21 15:39:09 2018
- pull request #16 - strip down list of prerequisites to
modules that are safe to use high on the CPAN river (thanks
karenetheridge)
0.42 Fri Apr 20 23:42:41 2018
- rt 125136 - reinstate 5.8 compat by not using // operator in
the new unc test (thanks SREZIC)
- pull request #14 - Add .gitignore. (thanks jkeenan)
- pull request #13 - File::Find::Rule is used in the test suite
but not named as a prequisite in Makefile.PL. (thanks jkeenan)
0.41 Thu Apr 19 15:58:12 2018
- Issue #10 and #8: fix Makefile.PL; add github metadata
(thanks karenetheridge and chorny)
- Issue #11: Fix the test failure described in RT#123964
(thanks tomhukins and SREZIC)
- Issue #9: Fixes for Windows (thanks chorny)
- rt 124324 - fix v0.40 changelog date (thanks ANDK)
- rt 124151 - pathrm with force on should guard against absolute
paths (thanks chorny)
- rt 124423 - have fcopy() work around File::Copy::copy() bug
rt132866 (thanks DROLSKY)
- Issue #12 and rt 124166 - set umask for reliability (thanks
teoric and ether)
OBS-URL: https://build.opensuse.org/request/show/638429
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-File-Copy-Recursive?expand=0&rev=5
67 lines
2.0 KiB
RPMSpec
67 lines
2.0 KiB
RPMSpec
#
|
|
# spec file for package perl-File-Copy-Recursive
|
|
#
|
|
# Copyright (c) 2018 SUSE LINUX 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/
|
|
#
|
|
|
|
|
|
%define cpan_name File-Copy-Recursive
|
|
Name: perl-File-Copy-Recursive
|
|
Version: 0.44
|
|
Release: 0
|
|
Summary: Perl extension for recursively copying files and directories
|
|
License: Artistic-1.0 OR GPL-1.0-or-later
|
|
Group: Development/Libraries/Perl
|
|
Url: https://metacpan.org/pod/File::Copy::Recursive
|
|
Source: http://www.cpan.org/authors/id/D/DM/DMUEY/%{cpan_name}-%{version}.tar.gz
|
|
BuildRequires: make
|
|
BuildRequires: perl
|
|
BuildRequires: perl-macros
|
|
BuildRequires: perl(Path::Tiny)
|
|
BuildRequires: perl(Test::Builder) >= 0.70
|
|
BuildRequires: perl(Test::Deep)
|
|
BuildRequires: perl(Test::Fatal)
|
|
BuildRequires: perl(Test::File)
|
|
BuildRequires: perl(Test::More) >= 0.88
|
|
BuildRequires: perl(Test::Spec)
|
|
BuildRequires: perl(Test::Warnings)
|
|
BuildArch: noarch
|
|
%{perl_requires}
|
|
|
|
%description
|
|
This module copies and moves directories recursively (or single files,
|
|
well... singley) to an optional depth and attempts to preserve each file or
|
|
directory's mode.
|
|
|
|
%prep
|
|
%setup -q -n %{cpan_name}-%{version}
|
|
|
|
%build
|
|
perl Makefile.PL INSTALLDIRS=vendor
|
|
make %{?_smp_mflags}
|
|
|
|
%check
|
|
make %{?_smp_mflags} test
|
|
|
|
%install
|
|
%perl_make_install
|
|
%perl_process_packlist
|
|
%perl_gen_filelist
|
|
|
|
%files -f %{name}.files
|
|
%defattr(-,root,root,755)
|
|
%doc Changes README
|
|
|
|
%changelog
|