Compare commits
No commits in common. "c8s" and "c9s" have entirely different histories.
@ -6,12 +6,12 @@
|
||||
%endif
|
||||
|
||||
Name: perl-Params-ValidationCompiler
|
||||
Version: 0.27
|
||||
Release: 1%{?dist}
|
||||
Version: 0.30
|
||||
Release: 12%{?dist}
|
||||
Summary: Build an optimized subroutine parameter validator once, use it forever
|
||||
License: Artistic 2.0
|
||||
URL: http://search.cpan.org/dist/Params-ValidationCompiler/
|
||||
Source0: http://search.cpan.org/CPAN/authors/id/D/DR/DROLSKY/Params-ValidationCompiler-%{version}.tar.gz
|
||||
URL: https://metacpan.org/release/Params-ValidationCompiler
|
||||
Source0: https://cpan.metacpan.org/modules/by-module/Params/Params-ValidationCompiler-%{version}.tar.gz
|
||||
BuildArch: noarch
|
||||
# Build
|
||||
BuildRequires: coreutils
|
||||
@ -22,6 +22,7 @@ BuildRequires: perl(ExtUtils::MakeMaker) > 6.75
|
||||
# Module
|
||||
BuildRequires: perl(B)
|
||||
BuildRequires: perl(Carp)
|
||||
BuildRequires: perl(Class::XSAccessor)
|
||||
BuildRequires: perl(Eval::Closure)
|
||||
BuildRequires: perl(Exception::Class)
|
||||
BuildRequires: perl(Exporter)
|
||||
@ -56,7 +57,8 @@ BuildRequires: perl(Types::Standard)
|
||||
%endif
|
||||
# Dependencies
|
||||
Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
|
||||
Requires: perl(Sub::Util) >= 1.40
|
||||
Recommends: perl(Class::XSAccessor)
|
||||
Recommends: perl(Sub::Util) >= 1.40
|
||||
|
||||
%description
|
||||
Create a customized, optimized, non-lobotomized, uncompromised, and thoroughly
|
||||
@ -78,13 +80,66 @@ make test
|
||||
|
||||
%files
|
||||
%license LICENSE
|
||||
%doc Changes eg/ README.md
|
||||
%doc Changes CODE_OF_CONDUCT.md CONTRIBUTING.md eg/ README.md
|
||||
%{perl_vendorlib}/Params/
|
||||
%{_mandir}/man3/Params::ValidationCompiler.3*
|
||||
%{_mandir}/man3/Params::ValidationCompiler::Compiler.3*
|
||||
%{_mandir}/man3/Params::ValidationCompiler::Exceptions.3*
|
||||
|
||||
%changelog
|
||||
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 0.30-12
|
||||
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
|
||||
Related: rhbz#1991688
|
||||
|
||||
* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 0.30-11
|
||||
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
|
||||
|
||||
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.30-10
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||
|
||||
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.30-9
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||
|
||||
* Fri Jun 26 2020 Jitka Plesnikova <jplesnik@redhat.com> - 0.30-8
|
||||
- Perl 5.32 re-rebuild of bootstrapped packages
|
||||
|
||||
* Tue Jun 23 2020 Jitka Plesnikova <jplesnik@redhat.com> - 0.30-7
|
||||
- Perl 5.32 rebuild
|
||||
|
||||
* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.30-6
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||
|
||||
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.30-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||
|
||||
* Sun Jun 02 2019 Jitka Plesnikova <jplesnik@redhat.com> - 0.30-4
|
||||
- Perl 5.30 re-rebuild of bootstrapped packages
|
||||
|
||||
* Fri May 31 2019 Jitka Plesnikova <jplesnik@redhat.com> - 0.30-3
|
||||
- Perl 5.30 rebuild
|
||||
|
||||
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.30-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||
|
||||
* Wed Aug 1 2018 Paul Howarth <paul@city-fan.org> - 0.30-1
|
||||
- Update to 0.30
|
||||
- Added a new option for named params, "return_object", which causes the
|
||||
validation sub to return an object with methods for each param rather than
|
||||
a hashref; this is a great way to avoid typos in hash keys (idea
|
||||
shamelessly stolen from Toby Inkster's Type::Params module)
|
||||
- Tweaked the POD formatting so that the table of contents generated by
|
||||
MetaCPAN is more useful
|
||||
- Optionally use Class::XSAccessor
|
||||
|
||||
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.27-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||
|
||||
* Sun Jul 01 2018 Jitka Plesnikova <jplesnik@redhat.com> - 0.27-3
|
||||
- Perl 5.28 re-rebuild of bootstrapped packages
|
||||
|
||||
* Fri Jun 29 2018 Jitka Plesnikova <jplesnik@redhat.com> - 0.27-2
|
||||
- Perl 5.28 rebuild
|
||||
|
||||
* Mon Feb 12 2018 Paul Howarth <paul@city-fan.org> - 0.27-1
|
||||
- Update to 0.27
|
||||
- Fixed a bug with inlining Moose types: if a type's parent needed
|
||||
|
||||
2
sources
2
sources
@ -1 +1 @@
|
||||
SHA512 (Params-ValidationCompiler-0.27.tar.gz) = 1c045e7b4b68f7b54cc3f1aa927c515b7662ddd5252baf22be149365b7087b5910219d3e08752e005cfd89a10a740fb2e1a41d8f7fed8765a56eade5d406c9dc
|
||||
SHA512 (Params-ValidationCompiler-0.30.tar.gz) = 5911f9317f0b72e17c72435420a3b6b9f36780ab70715510c46e847970094e730169b9b3085f29cb23ee0aca2e78f7f9edd0d093859a1062869f35c90172bf05
|
||||
|
||||
Loading…
Reference in New Issue
Block a user