Compare commits
No commits in common. "c8-stream-5.3" and "c8-beta" have entirely different histories.
c8-stream-
...
c8-beta
2
.gitignore
vendored
2
.gitignore
vendored
@ -1 +1 @@
|
|||||||
SOURCES/Pod-Simple-3.40.tar.gz
|
SOURCES/Pod-Simple-3.35.tar.gz
|
||||||
|
|||||||
@ -1 +1 @@
|
|||||||
7cf34d28ceb34fa44c5d4fe060fdee4a061717a8 SOURCES/Pod-Simple-3.40.tar.gz
|
345877614ef840d7b90fd6de4e9c729ba8ded8c9 SOURCES/Pod-Simple-3.35.tar.gz
|
||||||
|
|||||||
@ -1,20 +1,20 @@
|
|||||||
# Perform optional tests
|
|
||||||
%bcond_without perl_Pod_Simple_enables_optional_test
|
|
||||||
|
|
||||||
Name: perl-Pod-Simple
|
Name: perl-Pod-Simple
|
||||||
# Epoch to compete with perl.spec
|
# Epoch to compete with perl.spec
|
||||||
Epoch: 1
|
Epoch: 1
|
||||||
Version: 3.40
|
Version: 3.35
|
||||||
Release: 1%{?dist}
|
Release: 395%{?dist}
|
||||||
Summary: Framework for parsing POD documentation
|
Summary: Framework for parsing POD documentation
|
||||||
License: GPL+ or Artistic
|
License: GPL+ or Artistic
|
||||||
URL: https://metacpan.org/release/Pod-Simple
|
Group: Development/Libraries
|
||||||
Source0: https://cpan.metacpan.org/authors/id/K/KH/KHW/Pod-Simple-%{version}.tar.gz
|
URL: http://search.cpan.org/dist/Pod-Simple/
|
||||||
|
Source0: http://www.cpan.org/authors/id/K/KH/KHW/Pod-Simple-%{version}.tar.gz
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
|
BuildRequires: coreutils
|
||||||
|
BuildRequires: findutils
|
||||||
BuildRequires: make
|
BuildRequires: make
|
||||||
BuildRequires: perl-generators
|
|
||||||
BuildRequires: perl-interpreter
|
BuildRequires: perl-interpreter
|
||||||
BuildRequires: perl(ExtUtils::MakeMaker) >= 6.76
|
BuildRequires: perl-generators
|
||||||
|
BuildRequires: perl(ExtUtils::MakeMaker)
|
||||||
BuildRequires: perl(strict)
|
BuildRequires: perl(strict)
|
||||||
# Run-time:
|
# Run-time:
|
||||||
BuildRequires: perl(Carp)
|
BuildRequires: perl(Carp)
|
||||||
@ -24,14 +24,12 @@ BuildRequires: perl(Encode)
|
|||||||
BuildRequires: perl(File::Basename)
|
BuildRequires: perl(File::Basename)
|
||||||
BuildRequires: perl(File::Spec)
|
BuildRequires: perl(File::Spec)
|
||||||
BuildRequires: perl(Getopt::Long)
|
BuildRequires: perl(Getopt::Long)
|
||||||
BuildRequires: perl(if)
|
|
||||||
BuildRequires: perl(integer)
|
BuildRequires: perl(integer)
|
||||||
BuildRequires: perl(overload)
|
BuildRequires: perl(overload)
|
||||||
BuildRequires: perl(Pod::Escapes) >= 1.04
|
BuildRequires: perl(Pod::Escapes) >= 1.04
|
||||||
BuildRequires: perl(Symbol)
|
BuildRequires: perl(Symbol)
|
||||||
BuildRequires: perl(Text::Wrap) >= 98.112902
|
BuildRequires: perl(Text::Wrap) >= 98.112902
|
||||||
BuildRequires: perl(vars)
|
BuildRequires: perl(vars)
|
||||||
BuildRequires: perl(warnings)
|
|
||||||
# Tests:
|
# Tests:
|
||||||
BuildRequires: perl(base)
|
BuildRequires: perl(base)
|
||||||
BuildRequires: perl(Data::Dumper)
|
BuildRequires: perl(Data::Dumper)
|
||||||
@ -40,36 +38,30 @@ BuildRequires: perl(File::Path)
|
|||||||
BuildRequires: perl(lib)
|
BuildRequires: perl(lib)
|
||||||
BuildRequires: perl(Test) >= 1.25
|
BuildRequires: perl(Test) >= 1.25
|
||||||
BuildRequires: perl(Test::More)
|
BuildRequires: perl(Test::More)
|
||||||
BuildRequires: perl(utf8)
|
BuildRequires: perl(warnings)
|
||||||
%if %{with perl_Pod_Simple_enables_optional_test} && !%{defined perl_bootstrap}
|
|
||||||
# Optional tests:
|
|
||||||
# Text::Diff not helpful, used only in case of a failure
|
|
||||||
BuildRequires: perl(parent)
|
|
||||||
BuildRequires: perl(Test::Deep)
|
|
||||||
%endif
|
|
||||||
Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
|
Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
|
||||||
|
|
||||||
# Filter under-specified dependencies
|
# Filter under-specified dependencies
|
||||||
%global __requires_exclude %{?__requires_exclude:%__requires_exclude|}^perl\\(Text::Wrap\\)$
|
%global __requires_exclude %{?__requires_exclude:%__requires_exclude|}^perl\\(Text::Wrap\\)$
|
||||||
|
|
||||||
%description
|
%description
|
||||||
Pod::Simple is a Perl library for parsing text in the POD (plain old
|
Pod::Simple is a Perl library for parsing text in the Pod ("plain old
|
||||||
documentation) markup language that is typically used for writing
|
documentation") markup language that is typically used for writing
|
||||||
documentation for Perl and for Perl modules.
|
documentation for Perl and for Perl modules.
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n Pod-Simple-%{version}
|
%setup -q -n Pod-Simple-%{version}
|
||||||
|
|
||||||
%build
|
%build
|
||||||
perl Makefile.PL INSTALLDIRS=vendor NO_PACKLIST=1 NO_PERLLOCAL=1
|
perl Makefile.PL INSTALLDIRS=vendor
|
||||||
%{make_build}
|
make %{?_smp_mflags}
|
||||||
|
|
||||||
%install
|
%install
|
||||||
%{make_install}
|
make pure_install DESTDIR=$RPM_BUILD_ROOT
|
||||||
|
find $RPM_BUILD_ROOT -type f -name .packlist -delete
|
||||||
%{_fixperms} $RPM_BUILD_ROOT/*
|
%{_fixperms} $RPM_BUILD_ROOT/*
|
||||||
|
|
||||||
%check
|
%check
|
||||||
unset PERL_CORE PERL_TEST_DIFF
|
|
||||||
make test
|
make test
|
||||||
|
|
||||||
%files
|
%files
|
||||||
@ -78,42 +70,6 @@ make test
|
|||||||
%{_mandir}/man3/*
|
%{_mandir}/man3/*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
* Mon Oct 28 2019 Tom Callaway <spot@fedoraproject.org> - 1:3.40-1
|
|
||||||
- update to 3.40
|
|
||||||
|
|
||||||
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1:3.39-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
|
||||||
|
|
||||||
* Mon Jul 01 2019 Petr Pisar <ppisar@redhat.com> - 1:3.39-1
|
|
||||||
- 3.39 bump
|
|
||||||
|
|
||||||
* Sun Jun 02 2019 Jitka Plesnikova <jplesnik@redhat.com> - 1:3.38-2
|
|
||||||
- Perl 5.30 re-rebuild of bootstrapped packages
|
|
||||||
|
|
||||||
* Fri May 31 2019 Petr Pisar <ppisar@redhat.com> - 1:3.38-1
|
|
||||||
- 3.38 bump
|
|
||||||
|
|
||||||
* Thu May 30 2019 Petr Pisar <ppisar@redhat.com> - 1:3.37-2
|
|
||||||
- Do not package Pod::Escapes (upstream bug #102)
|
|
||||||
|
|
||||||
* Thu May 30 2019 Tom Callaway <spot@fedoraproject.org> - 1:3.37-1
|
|
||||||
- update to 3.37
|
|
||||||
|
|
||||||
* Thu May 30 2019 Jitka Plesnikova <jplesnik@redhat.com> - 1:3.36-2
|
|
||||||
- Perl 5.30 rebuild
|
|
||||||
|
|
||||||
* Thu May 23 2019 Petr Pisar <ppisar@redhat.com> - 1:3.36-1
|
|
||||||
- 3.36 bump
|
|
||||||
|
|
||||||
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1:3.35-418
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
|
||||||
|
|
||||||
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1:3.35-417
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
|
||||||
|
|
||||||
* Wed Jun 27 2018 Jitka Plesnikova <jplesnik@redhat.com> - 1:3.35-416
|
|
||||||
- Increase release to favour standalone package
|
|
||||||
|
|
||||||
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1:3.35-395
|
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1:3.35-395
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user