Compare commits
No commits in common. "rawhide" and "f25" have entirely different histories.
@ -1,24 +1,17 @@
|
||||
# Run extra test
|
||||
%if ! (0%{?rhel})
|
||||
%bcond_without perl_B_Keywords_enables_extra_test
|
||||
%else
|
||||
%bcond_with perl_B_Keywords_enables_extra_test
|
||||
%endif
|
||||
|
||||
Name: perl-B-Keywords
|
||||
Version: 1.24
|
||||
Version: 1.15
|
||||
Release: 4%{?dist}
|
||||
Summary: Lists of reserved barewords and symbol names
|
||||
Group: Development/Libraries
|
||||
License: GPL+ or Artistic
|
||||
URL: https://metacpan.org/release/B-Keywords
|
||||
Source0: https://cpan.metacpan.org/modules/by-module/B/B-Keywords-%{version}.tar.gz
|
||||
URL: http://search.cpan.org/dist/B-Keywords/
|
||||
Source0: http://search.cpan.org/CPAN/authors/id/R/RU/RURBAN/B-Keywords-%{version}.tar.gz
|
||||
BuildArch: noarch
|
||||
# Module Build
|
||||
BuildRequires: coreutils
|
||||
BuildRequires: findutils
|
||||
BuildRequires: make
|
||||
BuildRequires: perl-generators
|
||||
BuildRequires: perl-interpreter
|
||||
BuildRequires: perl
|
||||
BuildRequires: perl(Config)
|
||||
BuildRequires: perl(ExtUtils::MakeMaker)
|
||||
# Module Runtime
|
||||
@ -27,28 +20,28 @@ BuildRequires: perl(strict)
|
||||
BuildRequires: perl(vars)
|
||||
# Test Suite
|
||||
BuildRequires: perl-devel
|
||||
BuildRequires: perl-generators
|
||||
BuildRequires: perl(File::Spec)
|
||||
BuildRequires: perl(lib)
|
||||
BuildRequires: perl(Test)
|
||||
BuildRequires: perl(Test::More)
|
||||
BuildRequires: perl(warnings)
|
||||
# Optional Tests
|
||||
BuildRequires: perl(Test::Pod) >= 1.0
|
||||
# Maintainer Tests
|
||||
%if 0%{!?perl_bootstrap:1} && %{with perl_B_Keywords_enables_extra_test}
|
||||
%if 0%{!?perl_bootstrap:1}
|
||||
BuildRequires: perl(File::Copy)
|
||||
BuildRequires: perl(List::MoreUtils)
|
||||
BuildRequires: perl(Perl::MinimumVersion) >= 1.20
|
||||
BuildRequires: perl(Test::CPAN::Meta) >= 0.12
|
||||
BuildRequires: perl(Test::Kwalitee)
|
||||
BuildRequires: perl(Test::MinimumVersion) >= 0.008
|
||||
BuildRequires: perl(Test::More) >= 0.88
|
||||
BuildRequires: perl(Test::Pod::Coverage) >= 1.04
|
||||
BuildRequires: perl(Text::CSV_XS)
|
||||
BuildRequires: perl(warnings)
|
||||
%endif
|
||||
# Runtime
|
||||
Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
|
||||
|
||||
|
||||
%description
|
||||
B::Keywords supplies several arrays of exportable keywords: @Scalars, @Arrays,
|
||||
@Hashes, @Filehandles, @Symbols, @Functions, @Barewords, @TieIOMethods,
|
||||
@ -60,24 +53,25 @@ The @Symbols array includes the contents of each of @Scalars, @Arrays, @Hashes,
|
||||
Similarly, @Barewords adds a few non-function keywords and operators to the
|
||||
@Functions array.
|
||||
|
||||
|
||||
%prep
|
||||
%setup -q -n B-Keywords-%{version}
|
||||
|
||||
|
||||
%build
|
||||
perl Makefile.PL INSTALLDIRS=vendor
|
||||
make %{?_smp_mflags}
|
||||
|
||||
|
||||
%install
|
||||
make pure_install DESTDIR=%{buildroot}
|
||||
find %{buildroot} -type f -name .packlist -delete
|
||||
%{_fixperms} -c %{buildroot}
|
||||
make pure_install DESTDIR=$RPM_BUILD_ROOT
|
||||
find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} ';'
|
||||
%{_fixperms} $RPM_BUILD_ROOT
|
||||
|
||||
|
||||
%check
|
||||
%if 0%{!?perl_bootstrap:1} && %{with perl_B_Keywords_enables_extra_test}
|
||||
make test IS_MAINTAINER=1 AUTHOR_TESTING=1
|
||||
%else
|
||||
make test
|
||||
%endif
|
||||
make test %{!?perl_bootstrap:IS_MAINTAINER=1 AUTHOR_TESTING=1}
|
||||
|
||||
|
||||
%files
|
||||
%license LICENSE
|
||||
@ -85,124 +79,8 @@ make test
|
||||
%{perl_vendorlib}/B/
|
||||
%{_mandir}/man3/B::Keywords.3*
|
||||
|
||||
|
||||
%changelog
|
||||
* Fri Jul 22 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.24-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
||||
|
||||
* Fri Jun 03 2022 Jitka Plesnikova <jplesnik@redhat.com> - 1.24-3
|
||||
- Perl 5.36 re-rebuild of bootstrapped packages
|
||||
|
||||
* Mon May 30 2022 Jitka Plesnikova <jplesnik@redhat.com> - 1.24-2
|
||||
- Perl 5.36 rebuild
|
||||
|
||||
* Wed Feb 23 2022 Paul Howarth <paul@city-fan.org> - 1.24-1
|
||||
- Update to 1.24
|
||||
- Fix for broken <archlibexp>/CORE/keywords.h test on system macOS (GH#5)
|
||||
- 'finally' added with 5.35.8 (CPAN RT#141406)
|
||||
|
||||
* Thu Jan 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.23-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
||||
|
||||
* Sun Oct 31 2021 Paul Howarth <paul@city-fan.org> - 1.23-1
|
||||
- Update to 1.23
|
||||
- Relax bogus blead test failures
|
||||
- Add reverse test: if @Barewords are covered on keywords.h
|
||||
- Move some @Barewords not in keywords.h to @BarewordsExtra
|
||||
- Add %%main, %%CORE, %%CORE::GLOBAL:: to @Hashes
|
||||
- Fixed versions for EQ, CORE, state, break, given, when, default, UNITCHECK
|
||||
|
||||
* Thu Jul 22 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.22-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||||
|
||||
* Mon May 24 2021 Jitka Plesnikova <jplesnik@redhat.com> - 1.22-3
|
||||
- Perl 5.34 re-rebuild of bootstrapped packages
|
||||
|
||||
* Fri May 21 2021 Jitka Plesnikova <jplesnik@redhat.com> - 1.22-2
|
||||
- Perl 5.34 rebuild
|
||||
|
||||
* Mon Feb 22 2021 Paul Howarth <paul@city-fan.org> - 1.22-1
|
||||
- Update to 1.22
|
||||
- try/catch was added with 5.33.7
|
||||
|
||||
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.21-7
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||
|
||||
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.21-6
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||
|
||||
* Fri Jun 26 2020 Jitka Plesnikova <jplesnik@redhat.com> - 1.21-5
|
||||
- Perl 5.32 re-rebuild of bootstrapped packages
|
||||
|
||||
* Tue Jun 23 2020 Jitka Plesnikova <jplesnik@redhat.com> - 1.21-4
|
||||
- Perl 5.32 rebuild
|
||||
|
||||
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.21-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||
|
||||
* Wed Dec 18 2019 Paul Howarth <paul@city-fan.org> - 1.21-2
|
||||
- Text::CSV_XS is wanted by t/z_kwalitee.t
|
||||
|
||||
* Wed Dec 18 2019 Robin Lee <cheeselee@fedoraproject.org> - 1.21-1
|
||||
- Release 1.21 (RHBZ#1784567)
|
||||
- isa was added with 5.31.7
|
||||
- improved t/z_kwalitee.t
|
||||
|
||||
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.20-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||
|
||||
* Sun Jun 02 2019 Jitka Plesnikova <jplesnik@redhat.com> - 1.20-3
|
||||
- Perl 5.30 re-rebuild of bootstrapped packages
|
||||
|
||||
* Fri May 31 2019 Jitka Plesnikova <jplesnik@redhat.com> - 1.20-2
|
||||
- Perl 5.30 rebuild
|
||||
|
||||
* Fri Feb 15 2019 Paul Howarth <paul@city-fan.org> - 1.20-1
|
||||
- Update to 1.20
|
||||
- extern was added with 5.29.0c
|
||||
|
||||
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.19-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||
|
||||
* Thu Aug 23 2018 Paul Howarth <paul@city-fan.org> - 1.19-1
|
||||
- Update to 1.19
|
||||
- our was added with 5.005_61
|
||||
|
||||
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.18-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||
|
||||
* Sun Jul 01 2018 Jitka Plesnikova <jplesnik@redhat.com> - 1.18-4
|
||||
- Perl 5.28 re-rebuild of bootstrapped packages
|
||||
|
||||
* Thu Jun 28 2018 Jitka Plesnikova <jplesnik@redhat.com> - 1.18-3
|
||||
- Perl 5.28 rebuild
|
||||
|
||||
* Thu Feb 08 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.18-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||
|
||||
* Tue Jan 30 2018 Paul Howarth <paul@city-fan.org> - 1.18-1
|
||||
- Update to 1.18
|
||||
- Added 5.27.8 changes: no whereis/-so
|
||||
|
||||
* Sun Dec 31 2017 Paul Howarth <paul@city-fan.org> - 1.16-1
|
||||
- Update to 1.16
|
||||
- Added 5.27.7 changes (CPAN RT#123948)
|
||||
- Added cperl class keywords
|
||||
- Added keywords per version back to 5.004
|
||||
- Drop legacy Group: tag
|
||||
- Simplify find command using -delete
|
||||
|
||||
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.15-8
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||
|
||||
* Wed Jun 07 2017 Jitka Plesnikova <jplesnik@redhat.com> - 1.15-7
|
||||
- Perl 5.26 re-rebuild of bootstrapped packages
|
||||
|
||||
* Sun Jun 04 2017 Jitka Plesnikova <jplesnik@redhat.com> - 1.15-6
|
||||
- Perl 5.26 rebuild
|
||||
|
||||
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.15-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
||||
|
||||
* Wed May 18 2016 Jitka Plesnikova <jplesnik@redhat.com> - 1.15-4
|
||||
- Perl 5.24 re-rebuild of bootstrapped packages
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user