Compare commits
No commits in common. "c8-stream-5.3" and "c8-stream-5.26" have entirely different histories.
c8-stream-
...
c8-stream-
2
.gitignore
vendored
2
.gitignore
vendored
@ -1 +1 @@
|
||||
SOURCES/File-Temp-0.2309.tar.gz
|
||||
SOURCES/File-Temp-0.2304.tar.gz
|
||||
|
||||
@ -1 +1 @@
|
||||
8914bf3be7a387377f6fc1f8a5e1cf8a355f17ea SOURCES/File-Temp-0.2309.tar.gz
|
||||
cafb6a8e2e2cbdc8e08ee00cdeb2f42224de420a SOURCES/File-Temp-0.2304.tar.gz
|
||||
|
||||
@ -1,21 +1,17 @@
|
||||
%global cpan_version 0.2309
|
||||
%global cpan_version 0.2304
|
||||
Name: perl-File-Temp
|
||||
Epoch: 1
|
||||
# Normalized version, compete with perl.spec
|
||||
Version: 0.230.900
|
||||
Release: 439%{?dist}
|
||||
Version: 0.230.400
|
||||
Release: 398%{?dist}
|
||||
Summary: Return name and handle of a temporary file safely
|
||||
License: GPL+ or Artistic
|
||||
URL: https://metacpan.org/release/File-Temp
|
||||
Source0: https://cpan.metacpan.org/authors/id/E/ET/ETHER/File-Temp-%{cpan_version}.tar.gz
|
||||
Group: Development/Libraries
|
||||
URL: http://search.cpan.org/dist/File-Temp/
|
||||
Source0: http://www.cpan.org/authors/id/D/DA/DAGOLDEN/File-Temp-%{cpan_version}.tar.gz
|
||||
BuildArch: noarch
|
||||
BuildRequires: coreutils
|
||||
BuildRequires: make
|
||||
BuildRequires: perl-generators
|
||||
BuildRequires: perl-interpreter
|
||||
BuildRequires: perl(:VERSION) >= 5.6
|
||||
BuildRequires: perl(Config)
|
||||
BuildRequires: perl(ExtUtils::MakeMaker) >= 6.76
|
||||
BuildRequires: perl-generators
|
||||
BuildRequires: perl(ExtUtils::MakeMaker) >= 6.17
|
||||
BuildRequires: perl(strict)
|
||||
BuildRequires: perl(warnings)
|
||||
# Run-time:
|
||||
@ -35,9 +31,13 @@ BuildRequires: perl(parent) >= 0.221
|
||||
BuildRequires: perl(POSIX)
|
||||
BuildRequires: perl(Scalar::Util)
|
||||
# Symbol not needed
|
||||
BuildRequires: perl(vars)
|
||||
# VMS::Stdio not needed
|
||||
# Tests:
|
||||
BuildRequires: perl(Config)
|
||||
BuildRequires: perl(File::Spec::Functions)
|
||||
BuildRequires: perl(FileHandle)
|
||||
BuildRequires: perl(List::Util)
|
||||
# Symbol not needed
|
||||
BuildRequires: perl(Test::More)
|
||||
Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
|
||||
@ -56,52 +56,31 @@ can be used to create a temporary directory.
|
||||
%prep
|
||||
%setup -q -n File-Temp-%{cpan_version}
|
||||
chmod -x misc/benchmark.pl
|
||||
perl -MConfig -p -i -e 's|\A#!/usr/local/bin/perl\b|$Config{startperl}|' \
|
||||
misc/benchmark.pl
|
||||
%fix_shbang_line misc/benchmark.pl
|
||||
|
||||
%build
|
||||
perl Makefile.PL INSTALLDIRS=vendor NO_PACKLIST=1
|
||||
perl Makefile.PL INSTALLDIRS=vendor
|
||||
make %{?_smp_mflags}
|
||||
|
||||
%install
|
||||
make pure_install DESTDIR=$RPM_BUILD_ROOT
|
||||
find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} \;
|
||||
%{_fixperms} $RPM_BUILD_ROOT/*
|
||||
|
||||
%check
|
||||
make test
|
||||
|
||||
%files
|
||||
%license LICENSE
|
||||
# Omit CONTRIBUTING (first half is not relevant to a binary package, second
|
||||
# half is already presented in POD)
|
||||
%doc Changes misc README
|
||||
%doc Changes LICENSE misc README
|
||||
%{perl_vendorlib}/*
|
||||
%{_mandir}/man3/*
|
||||
|
||||
%changelog
|
||||
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1:0.230.900-439
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||
* Fri Apr 27 2018 Petr Pisar <ppisar@redhat.com> - 0.230.400-398
|
||||
- Increase release not to clash with perl-bootstrap:5.24 subpackages
|
||||
|
||||
* Thu May 30 2019 Jitka Plesnikova <jplesnik@redhat.com> - 1:0.230.900-438
|
||||
- Increase release to favour standalone package
|
||||
|
||||
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1:0.230.900-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||
|
||||
* Tue Jan 08 2019 Petr Pisar <ppisar@redhat.com> - 1:0.230.900-1
|
||||
- 0.2309 bump
|
||||
|
||||
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1:0.230.800-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||
|
||||
* Thu Jul 12 2018 Petr Pisar <ppisar@redhat.com> - 1:0.230.800-1
|
||||
- 0.2308 bump
|
||||
|
||||
* Tue Jun 26 2018 Jitka Plesnikova <jplesnik@redhat.com> - 1:0.230.600-2
|
||||
- Perl 5.28 rebuild
|
||||
|
||||
* Mon Jun 25 2018 Petr Pisar <ppisar@redhat.com> - 0.230.600-1
|
||||
- 0.2306 bump
|
||||
* Wed Mar 28 2018 Petr Pisar <ppisar@redhat.com> - 0.230.400-397
|
||||
- Increase release not to clash with perl-bootstrap:5.24 subpackages
|
||||
|
||||
* Thu Feb 08 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.230.400-396
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||
|
||||
Loading…
Reference in New Issue
Block a user