Compare commits
56 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
8ce9651663 | ||
|
1a582589bc | ||
|
f893703341 | ||
|
6b135392be | ||
|
6d5c88f198 | ||
|
002132073f | ||
|
6dd631cc3f | ||
|
6e3b301a89 | ||
|
9f055a650c | ||
|
bb669ab43a | ||
|
8016bc2b12 | ||
|
f623388998 | ||
|
d2dc09d3f7 | ||
|
b33a795bc3 | ||
|
169b692e28 | ||
|
eef8599699 | ||
|
775288cfe4 | ||
|
d179c87a4b | ||
|
0e53daad15 | ||
|
985dcf2873 | ||
|
fd99841de1 | ||
|
74747eb96d | ||
|
2bc71d808a | ||
|
56876fba1a | ||
|
c5cd05f0d5 | ||
|
7183c16592 | ||
|
bdc8091beb | ||
|
b3b9a7e2f9 | ||
|
de0fc21908 | ||
|
6707ec44ab | ||
|
eaa782cf99 | ||
|
10bfd21959 | ||
|
bb3b10045c | ||
|
56427899d8 | ||
|
fce64b6927 | ||
|
6e696dfc13 | ||
|
75bef22487 | ||
|
0a5c0c547d | ||
|
e8540419a0 | ||
|
48f5a87b1d | ||
|
e50f92b43d | ||
|
036a5f06a4 | ||
|
bde6216a8f | ||
|
dd4bccac7a | ||
|
58c50eff74 | ||
|
2b907e5249 | ||
|
6f7ddd11cb | ||
|
0a44ad2880 | ||
|
4ee5d74b2c | ||
|
eb75def31d | ||
|
2e22ff626d | ||
|
d22dab880d | ||
|
4d16e50cb1 | ||
|
3cce61be39 | ||
|
eec588400d | ||
|
b9e902e208 |
2
.gitignore
vendored
2
.gitignore
vendored
@ -1 +1 @@
|
||||
/B-Keywords-1.10.tar.gz
|
||||
/B-Keywords-[0-9.]*.tar.gz
|
||||
|
@ -1,58 +1,289 @@
|
||||
# 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.10
|
||||
Release: 3%{?dist}
|
||||
Version: 1.24
|
||||
Release: 4%{?dist}
|
||||
Summary: Lists of reserved barewords and symbol names
|
||||
|
||||
Group: Development/Libraries
|
||||
License: GPL+ or Artistic
|
||||
URL: http://search.cpan.org/dist/B-Keywords/
|
||||
Source0: http://search.cpan.org/CPAN/authors/id/F/FL/FLORA/B-Keywords-%{version}.tar.gz
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
||||
|
||||
URL: https://metacpan.org/release/B-Keywords
|
||||
Source0: https://cpan.metacpan.org/modules/by-module/B/B-Keywords-%{version}.tar.gz
|
||||
BuildArch: noarch
|
||||
BuildRequires: perl(YAML)
|
||||
Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
|
||||
|
||||
# Module Build
|
||||
BuildRequires: coreutils
|
||||
BuildRequires: findutils
|
||||
BuildRequires: make
|
||||
BuildRequires: perl-generators
|
||||
BuildRequires: perl-interpreter
|
||||
BuildRequires: perl(Config)
|
||||
BuildRequires: perl(ExtUtils::MakeMaker)
|
||||
# Module Runtime
|
||||
BuildRequires: perl(Exporter)
|
||||
BuildRequires: perl(strict)
|
||||
BuildRequires: perl(vars)
|
||||
# Test Suite
|
||||
BuildRequires: perl-devel
|
||||
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}
|
||||
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)
|
||||
%endif
|
||||
# Runtime
|
||||
Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
|
||||
|
||||
%description
|
||||
%{summary}.
|
||||
B::Keywords supplies several arrays of exportable keywords: @Scalars, @Arrays,
|
||||
@Hashes, @Filehandles, @Symbols, @Functions, @Barewords, @TieIOMethods,
|
||||
@UNIVERSALMethods and @ExporterSymbols.
|
||||
|
||||
The @Symbols array includes the contents of each of @Scalars, @Arrays, @Hashes,
|
||||
@Functions and @Filehandles.
|
||||
|
||||
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
|
||||
perl Makefile.PL INSTALLDIRS=vendor
|
||||
make %{?_smp_mflags}
|
||||
|
||||
|
||||
%install
|
||||
rm -rf $RPM_BUILD_ROOT
|
||||
make pure_install PERL_INSTALL_ROOT=$RPM_BUILD_ROOT
|
||||
find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} ';'
|
||||
find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null ';'
|
||||
%{_fixperms} $RPM_BUILD_ROOT/*
|
||||
|
||||
make pure_install DESTDIR=%{buildroot}
|
||||
find %{buildroot} -type f -name .packlist -delete
|
||||
%{_fixperms} -c %{buildroot}
|
||||
|
||||
%check
|
||||
%if 0%{!?perl_bootstrap:1} && %{with perl_B_Keywords_enables_extra_test}
|
||||
make test IS_MAINTAINER=1 AUTHOR_TESTING=1
|
||||
%else
|
||||
make test
|
||||
|
||||
|
||||
%clean
|
||||
rm -rf $RPM_BUILD_ROOT
|
||||
|
||||
%endif
|
||||
|
||||
%files
|
||||
%defattr(-,root,root,-)
|
||||
%doc Changes LICENSE
|
||||
%license LICENSE
|
||||
%doc Changes
|
||||
%{perl_vendorlib}/B/
|
||||
%{_mandir}/man3/B::Keywords.3pm*
|
||||
|
||||
%{_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
|
||||
|
||||
* Sun May 15 2016 Jitka Plesnikova <jplesnik@redhat.com> - 1.15-3
|
||||
- Perl 5.24 rebuild
|
||||
|
||||
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.15-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
||||
|
||||
* Wed Nov 11 2015 Paul Howarth <paul@city-fan.org> - 1.15-1
|
||||
- Update to 1.15
|
||||
- Fixed $OUTPUT_AUTOFLUSH (CPAN RT#108572)
|
||||
- Made $* $MULTILINE_MATCHING version specific, deprecated with 5.8.1,
|
||||
removed with 5.10
|
||||
- Explicitly require perl-devel, for CORE/keywords.h
|
||||
|
||||
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.14-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
||||
|
||||
* Wed Jun 10 2015 Jitka Plesnikova <jplesnik@redhat.com> - 1.14-3
|
||||
- Perl 5.22 re-rebuild of bootstrapped packages
|
||||
|
||||
* Fri Jun 05 2015 Jitka Plesnikova <jplesnik@redhat.com> - 1.14-2
|
||||
- Perl 5.22 rebuild
|
||||
|
||||
* Sun Feb 22 2015 Paul Howarth <paul@city-fan.org> - 1.14-1
|
||||
- Update to 1.14
|
||||
- Removed err from Barewords (CPAN RT#102259)
|
||||
- Run the maintainer tests if we're not bootstrapping
|
||||
- Expand %%description
|
||||
- Use %%license
|
||||
|
||||
* Thu Aug 28 2014 Jitka Plesnikova <jplesnik@redhat.com> - 1.13-5
|
||||
- Perl 5.20 rebuild
|
||||
|
||||
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.13-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
||||
|
||||
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.13-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
||||
|
||||
* Thu Jul 18 2013 Petr Pisar <ppisar@redhat.com> - 1.13-2
|
||||
- Perl 5.18 rebuild
|
||||
|
||||
* Sat Apr 6 2013 Paul Howarth <paul@city-fan.org> - 1.13-1
|
||||
- Update to 1.13
|
||||
- Removed diag before each big t/11keywords.t loop
|
||||
- Added lots of suggested keywords from CPAN RT#62382
|
||||
- Moved exp from @Barewords to @Functions
|
||||
- Added $^CHILD_ERROR_NATIVE $^GLOBAL_PHASE $^LAST_FH $^MATCH $^PREMATCH
|
||||
$^POSTMATCH $^UTF8CACHE $^WIN32_SLOPPY_STAT to @Scalars
|
||||
- Added English names for %%!, @F (perlrun) and @ARG for @_
|
||||
- Added %%+ %%- and $LAST_SUBMATCH_RESULT
|
||||
- BR: perl(Test::Pod)
|
||||
- Don't need to remove empty directories from the buildroot
|
||||
|
||||
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.12-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
||||
|
||||
* Wed Aug 1 2012 Jitka Plesnikova <jplesnik@redhat.com> - 1.12-4
|
||||
- Add BR: perl(File::Spec), perl(lib), perl(Test), perl(Exporter)
|
||||
- Clean up for modern rpmbuild
|
||||
|
||||
* Fri Jul 20 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.12-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
||||
|
||||
* Mon Jun 11 2012 Petr Pisar <ppisar@redhat.com> - 1.12-2
|
||||
- Perl 5.16 rebuild
|
||||
|
||||
* Fri Feb 10 2012 Paul Howarth <paul@city-fan.org> - 1.12-1
|
||||
- Update to 1.12
|
||||
- Add new keyword fc (Unicode casefolding) for 5.16
|
||||
- Added diag before each big t/11keywords.t loop
|
||||
- This release by RURBAN -> update source URL
|
||||
- Don't use macros for commands
|
||||
|
||||
* Wed Jan 11 2012 Paul Howarth <paul@city-fan.org> - 1.11-1
|
||||
- Update to 1.11
|
||||
- Add new keywords for 5.16: __SUB__ and evalbytes
|
||||
- Use DESTDIR rather than PERL_INSTALL_ROOT
|
||||
|
||||
* Wed Jun 29 2011 Marcela Mašláňová <mmaslano@redhat.com> - 1.10-3
|
||||
- Perl mass rebuild
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user