Subpackage overload
This commit is contained in:
parent
b866f0f3f3
commit
6970040455
@ -2196,7 +2196,6 @@ Provides: perl(feature) = 1.54 \
|
|||||||
Provides: perl(filetest) = 1.03 \
|
Provides: perl(filetest) = 1.03 \
|
||||||
Provides: perl(less) = 0.03 \
|
Provides: perl(less) = 0.03 \
|
||||||
Provides: perl(locale) = 1.09 \
|
Provides: perl(locale) = 1.09 \
|
||||||
Provides: perl(overload) = 1.30 \
|
|
||||||
Provides: perl(overload::numbers) \
|
Provides: perl(overload::numbers) \
|
||||||
Provides: perl(overloading) = 0.02 \
|
Provides: perl(overloading) = 0.02 \
|
||||||
Provides: perl(perl5db.pl) \
|
Provides: perl(perl5db.pl) \
|
||||||
@ -2306,6 +2305,10 @@ Requires: perl(:VERSION) >= 5.8.1 \
|
|||||||
Requires: perl(warnings) \
|
Requires: perl(warnings) \
|
||||||
Provides: perl(open) = 1.11 \
|
Provides: perl(open) = 1.11 \
|
||||||
%{nil}
|
%{nil}
|
||||||
|
%global gendep_perl_overload \
|
||||||
|
Requires: perl(warnings::register) \
|
||||||
|
Provides: perl(overload) = 1.30 \
|
||||||
|
%{nil}
|
||||||
%global gendep_perl_parent \
|
%global gendep_perl_parent \
|
||||||
Requires: perl(strict) \
|
Requires: perl(strict) \
|
||||||
Provides: perl(parent) = 0.237 \
|
Provides: perl(parent) = 0.237 \
|
||||||
|
31
perl.spec
31
perl.spec
@ -419,7 +419,7 @@ Requires: perl-Net, perl-Net-Ping, perl-NEXT,
|
|||||||
%if %{with gdbm}
|
%if %{with gdbm}
|
||||||
Requires: perl-ODBM_File,
|
Requires: perl-ODBM_File,
|
||||||
%endif
|
%endif
|
||||||
Requires: perl-Opcode, perl-open,
|
Requires: perl-Opcode, perl-open, perl-overload,
|
||||||
Requires: perl-parent, perl-PathTools, perl-Params-Check, perl-perlfaq,
|
Requires: perl-parent, perl-PathTools, perl-Params-Check, perl-perlfaq,
|
||||||
Requires: perl-PerlIO-via-QuotedPrint, perl-Perl-OSType,
|
Requires: perl-PerlIO-via-QuotedPrint, perl-Perl-OSType,
|
||||||
Requires: perl-Pod-Checker, perl-Pod-Escapes, perl-Pod-Html,
|
Requires: perl-Pod-Checker, perl-Pod-Escapes, perl-Pod-Html,
|
||||||
@ -2852,6 +2852,26 @@ BuildArch: noarch
|
|||||||
The "open" pragma serves as one of the interfaces to declare default "layers"
|
The "open" pragma serves as one of the interfaces to declare default "layers"
|
||||||
(also known as "disciplines") for all I/O.
|
(also known as "disciplines") for all I/O.
|
||||||
|
|
||||||
|
%package overload
|
||||||
|
Summary: Overloading Perl operations
|
||||||
|
License: GPL+ or Artistic
|
||||||
|
Epoch: 0
|
||||||
|
Version: 1.30
|
||||||
|
BuildArch: noarch
|
||||||
|
Requires: %perl_compat
|
||||||
|
Requires: perl(mro)
|
||||||
|
Requires: perl(Scalar::Util)
|
||||||
|
Requires: perl(overloading)
|
||||||
|
%if %{defined perl_bootstrap}
|
||||||
|
%gendep_perl_overload
|
||||||
|
%endif
|
||||||
|
Conflicts: perl-interpreter < 4:5.30.1-451
|
||||||
|
|
||||||
|
%description overload
|
||||||
|
The "overload" pragma allows overloading of Perl operators for a class. To
|
||||||
|
overload built-in functions, see "Overriding Built-in Functions" in perlsub
|
||||||
|
POD instead.
|
||||||
|
|
||||||
%if %{dual_life} || %{rebuild_from_scratch}
|
%if %{dual_life} || %{rebuild_from_scratch}
|
||||||
%package parent
|
%package parent
|
||||||
Summary: Establish an ISA relationship with base classes at compile time
|
Summary: Establish an ISA relationship with base classes at compile time
|
||||||
@ -5217,6 +5237,10 @@ popd
|
|||||||
%exclude %{privlib}/open.pm
|
%exclude %{privlib}/open.pm
|
||||||
%exclude %{_mandir}/man3/open.3*
|
%exclude %{_mandir}/man3/open.3*
|
||||||
|
|
||||||
|
# overload
|
||||||
|
%exclude %{privlib}/overload.pm
|
||||||
|
%exclude %{_mandir}/man3/overload.3*
|
||||||
|
|
||||||
# parent
|
# parent
|
||||||
%exclude %{privlib}/parent.pm
|
%exclude %{privlib}/parent.pm
|
||||||
%exclude %{_mandir}/man3/parent.3*
|
%exclude %{_mandir}/man3/parent.3*
|
||||||
@ -6550,6 +6574,10 @@ popd
|
|||||||
%{privlib}/open.pm
|
%{privlib}/open.pm
|
||||||
%{_mandir}/man3/open.3*
|
%{_mandir}/man3/open.3*
|
||||||
|
|
||||||
|
%files overload
|
||||||
|
%{privlib}/overload.pm
|
||||||
|
%{_mandir}/man3/overload.3*
|
||||||
|
|
||||||
%if %{dual_life} || %{rebuild_from_scratch}
|
%if %{dual_life} || %{rebuild_from_scratch}
|
||||||
%files parent
|
%files parent
|
||||||
%{privlib}/parent.pm
|
%{privlib}/parent.pm
|
||||||
@ -7021,6 +7049,7 @@ popd
|
|||||||
- Subpackage File::Basename
|
- Subpackage File::Basename
|
||||||
- Subpackage File::Compare
|
- Subpackage File::Compare
|
||||||
- Subpackage File::Copy
|
- Subpackage File::Copy
|
||||||
|
- Subpackage overload
|
||||||
|
|
||||||
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 4:5.30.1-450
|
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 4:5.30.1-450
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||||
|
Loading…
Reference in New Issue
Block a user