forked from pool/perl-File-Remove
Accepting request 647189 from devel:languages:perl:autoupdate
automatic update OBS-URL: https://build.opensuse.org/request/show/647189 OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-File-Remove?expand=0&rev=42
This commit is contained in:
@@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:b3becd60165c38786d18285f770b8b06ebffe91797d8c00cc4730614382501ad
|
|
||||||
size 22157
|
|
3
File-Remove-1.58.tar.gz
Normal file
3
File-Remove-1.58.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:81f6ec83acab8ba042afe904334a26eb3a56c217bdb9981d237a89ab072fd0d8
|
||||||
|
size 25575
|
@@ -1,3 +1,12 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Nov 8 06:21:53 UTC 2018 - Stephan Kulow <coolo@suse.com>
|
||||||
|
|
||||||
|
- updated to 1.58
|
||||||
|
see /usr/share/doc/packages/perl-File-Remove/Changes
|
||||||
|
|
||||||
|
1.58 2018-10-04 - Shlomi Fish
|
||||||
|
- Added [MetaJSON] to dist.ini, so releases include a META.json
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sun Nov 20 18:25:03 UTC 2016 - chris@computersalat.de
|
Sun Nov 20 18:25:03 UTC 2016 - chris@computersalat.de
|
||||||
|
|
||||||
|
@@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package perl-File-Remove
|
# spec file for package perl-File-Remove
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
|
# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@@ -12,33 +12,30 @@
|
|||||||
# license that conforms to the Open Source Definition (Version 1.9)
|
# license that conforms to the Open Source Definition (Version 1.9)
|
||||||
# published by the Open Source Initiative.
|
# published by the Open Source Initiative.
|
||||||
|
|
||||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
||||||
#
|
#
|
||||||
|
|
||||||
|
|
||||||
Name: perl-File-Remove
|
Name: perl-File-Remove
|
||||||
Version: 1.57
|
Version: 1.58
|
||||||
Release: 0
|
Release: 0
|
||||||
%define cpan_name File-Remove
|
%define cpan_name File-Remove
|
||||||
Summary: Remove files and directories
|
Summary: Remove files and directories
|
||||||
License: Artistic-1.0 or GPL-1.0+
|
License: Artistic-1.0 OR GPL-1.0-or-later
|
||||||
Group: Development/Libraries/Perl
|
Group: Development/Libraries/Perl
|
||||||
Url: http://search.cpan.org/dist/File-Remove/
|
Url: https://metacpan.org/release/%{cpan_name}
|
||||||
Source0: http://www.cpan.org/authors/id/S/SH/SHLOMIF/%{cpan_name}-%{version}.tar.gz
|
Source0: https://cpan.metacpan.org/authors/id/S/SH/SHLOMIF/%{cpan_name}-%{version}.tar.gz
|
||||||
Source1: cpanspec.yml
|
Source1: cpanspec.yml
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
BuildRequires: perl
|
BuildRequires: perl
|
||||||
BuildRequires: perl-macros
|
BuildRequires: perl-macros
|
||||||
BuildRequires: perl(Cwd) >= 3.29
|
BuildRequires: perl(Cwd) >= 3.29
|
||||||
%if 0%{?suse_version} <= 1110
|
|
||||||
BuildRequires: perl(File::Spec) >= 3.2900
|
|
||||||
Requires: perl(File::Spec) >= 3.2900
|
|
||||||
%else
|
|
||||||
BuildRequires: perl(File::Spec) >= 3.29
|
BuildRequires: perl(File::Spec) >= 3.29
|
||||||
Requires: perl(File::Spec) >= 3.29
|
BuildRequires: perl(Module::Build) >= 0.280000
|
||||||
%endif
|
BuildRequires: perl(Test::More) >= 0.88
|
||||||
Requires: perl(Cwd) >= 3.29
|
Requires: perl(Cwd) >= 3.29
|
||||||
|
Requires: perl(File::Spec) >= 3.29
|
||||||
%{perl_requires}
|
%{perl_requires}
|
||||||
|
|
||||||
%description
|
%description
|
||||||
@@ -55,19 +52,19 @@ addition of an optional, infrequently used "other platforms" hashref.
|
|||||||
find . -type f ! -name \*.pl -print0 | xargs -0 chmod 644
|
find . -type f ! -name \*.pl -print0 | xargs -0 chmod 644
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%{__perl} Makefile.PL INSTALLDIRS=vendor
|
perl Build.PL installdirs=vendor
|
||||||
%{__make} %{?_smp_mflags}
|
./Build build flags=%{?_smp_mflags}
|
||||||
|
|
||||||
%check
|
%check
|
||||||
%{__make} test
|
./Build test
|
||||||
|
|
||||||
%install
|
%install
|
||||||
%perl_make_install
|
./Build install destdir=%{buildroot} create_packlist=0
|
||||||
%perl_process_packlist
|
|
||||||
%perl_gen_filelist
|
%perl_gen_filelist
|
||||||
|
|
||||||
%files -f %{name}.files
|
%files -f %{name}.files
|
||||||
%defattr(-,root,root,755)
|
%defattr(-,root,root,755)
|
||||||
%doc Changes LICENSE README
|
%doc Changes README
|
||||||
|
%license LICENSE
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
Reference in New Issue
Block a user