c8
imports/c8/perl-Class-Data-Inheritable-0.08-27.el8
commit
88883e65d9
@ -0,0 +1 @@
|
|||||||
|
SOURCES/Class-Data-Inheritable-0.08.tar.gz
|
@ -0,0 +1 @@
|
|||||||
|
522c7e948f126c0d0ab1f37b5e993f4fc5ce65de SOURCES/Class-Data-Inheritable-0.08.tar.gz
|
@ -0,0 +1,182 @@
|
|||||||
|
# Run optional test
|
||||||
|
%bcond_without perl_Class_Data_Inheritable_enables_optional_test
|
||||||
|
|
||||||
|
Name: perl-Class-Data-Inheritable
|
||||||
|
Version: 0.08
|
||||||
|
Release: 27%{?dist}
|
||||||
|
Summary: Inheritable, overridable class data
|
||||||
|
Group: Development/Libraries
|
||||||
|
License: GPL+ or Artistic
|
||||||
|
URL: http://search.cpan.org/dist/Class-Data-Inheritable/
|
||||||
|
Source0: http://search.cpan.org/CPAN/authors/id/T/TM/TMTM/Class-Data-Inheritable-%{version}.tar.gz
|
||||||
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(id -nu)
|
||||||
|
BuildArch: noarch
|
||||||
|
BuildRequires: coreutils
|
||||||
|
BuildRequires: findutils
|
||||||
|
BuildRequires: make
|
||||||
|
BuildRequires: perl-generators
|
||||||
|
BuildRequires: perl-interpreter
|
||||||
|
BuildRequires: perl(ExtUtils::MakeMaker)
|
||||||
|
# Run-time:
|
||||||
|
BuildRequires: perl(Carp)
|
||||||
|
BuildRequires: perl(strict)
|
||||||
|
BuildRequires: perl(vars)
|
||||||
|
# Tests:
|
||||||
|
BuildRequires: perl(base)
|
||||||
|
BuildRequires: perl(Test::More)
|
||||||
|
%if %{with perl_Class_Data_Inheritable_enables_optional_test}
|
||||||
|
# Optional tests:
|
||||||
|
BuildRequires: perl(Test::Pod) >= 1.00
|
||||||
|
BuildRequires: perl(Test::Pod::Coverage) >= 1.00
|
||||||
|
%endif
|
||||||
|
Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
|
||||||
|
Requires: perl(Carp)
|
||||||
|
|
||||||
|
%description
|
||||||
|
Class::Data::Inheritable is for creating accessor/mutators to
|
||||||
|
class data. That is, if you want to store something about your
|
||||||
|
class as a whole (instead of about a single object). This data
|
||||||
|
is then inherited by your sub-classes and can be overridden.
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%setup -q -n Class-Data-Inheritable-%{version}
|
||||||
|
|
||||||
|
%build
|
||||||
|
perl Makefile.PL INSTALLDIRS=vendor
|
||||||
|
make
|
||||||
|
|
||||||
|
%install
|
||||||
|
rm -rf %{buildroot}
|
||||||
|
make pure_install DESTDIR=%{buildroot}
|
||||||
|
find %{buildroot} -type f -name .packlist -delete
|
||||||
|
%{_fixperms} %{buildroot}
|
||||||
|
|
||||||
|
%check
|
||||||
|
make test
|
||||||
|
|
||||||
|
%clean
|
||||||
|
rm -rf %{buildroot}
|
||||||
|
|
||||||
|
%files
|
||||||
|
%{perl_vendorlib}/Class/
|
||||||
|
%{_mandir}/man3/Class::Data::Inheritable.3pm*
|
||||||
|
|
||||||
|
%changelog
|
||||||
|
* Thu Feb 08 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.08-27
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Dec 07 2017 Petr Pisar <ppisar@redhat.com> - 0.08-26
|
||||||
|
- Specify all dependencies
|
||||||
|
|
||||||
|
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.08-25
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sun Jun 04 2017 Jitka Plesnikova <jplesnik@redhat.com> - 0.08-24
|
||||||
|
- Perl 5.26 rebuild
|
||||||
|
|
||||||
|
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.08-23
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sun May 15 2016 Jitka Plesnikova <jplesnik@redhat.com> - 0.08-22
|
||||||
|
- Perl 5.24 rebuild
|
||||||
|
|
||||||
|
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 0.08-21
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.08-20
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jun 05 2015 Jitka Plesnikova <jplesnik@redhat.com> - 0.08-19
|
||||||
|
- Perl 5.22 rebuild
|
||||||
|
|
||||||
|
* Wed Aug 27 2014 Jitka Plesnikova <jplesnik@redhat.com> - 0.08-18
|
||||||
|
- Perl 5.20 rebuild
|
||||||
|
|
||||||
|
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.08-17
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.08-16
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat Jul 20 2013 Petr Pisar <ppisar@redhat.com> - 0.08-15
|
||||||
|
- Perl 5.18 rebuild
|
||||||
|
|
||||||
|
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.08-14
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Nov 06 2012 Jitka Plesnikova <jplesnik@redhat.com> - 0.08-13
|
||||||
|
- Add BR perl(ExtUtils::MakeMaker)
|
||||||
|
|
||||||
|
* Tue Jul 24 2012 Paul Howarth <paul@city-fan.org> - 0.08-12
|
||||||
|
- BR:/R: perl(Carp)
|
||||||
|
- BR: perl(base)
|
||||||
|
- Use DESTDIR rather than PERL_INSTALL_ROOT
|
||||||
|
- Use %%{_fixperms} macro rather than our own chmod incantation
|
||||||
|
- Don't need to remove empty directories from the buildroot
|
||||||
|
- Don't use macros for commands
|
||||||
|
- Make %%files list more explicit
|
||||||
|
- Fix typos in %%description
|
||||||
|
|
||||||
|
* Fri Jul 20 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.08-11
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jun 12 2012 Petr Pisar <ppisar@redhat.com> - 0.08-10
|
||||||
|
- Perl 5.16 rebuild
|
||||||
|
|
||||||
|
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.08-9
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon Jun 20 2011 Marcela Mašláňová <mmaslano@redhat.com> - 0.08-8
|
||||||
|
- Perl mass rebuild
|
||||||
|
|
||||||
|
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.08-7
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Dec 15 2010 Marcela Maslanova <mmaslano@redhat.com> - 0.08-6
|
||||||
|
- Rebuild to fix problems with vendorarch/lib (#661697)
|
||||||
|
|
||||||
|
* Fri Apr 30 2010 Marcela Maslanova <mmaslano@redhat.com> - 0.08-5
|
||||||
|
- Mass rebuild with perl-5.12.0
|
||||||
|
|
||||||
|
* Mon Dec 7 2009 Stepan Kasal <skasal@redhat.com> - 0.08-4
|
||||||
|
- rebuild against perl 5.10.1
|
||||||
|
|
||||||
|
* Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.08-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.08-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jul 09 2008 Ralf Corsépius <rc040203@freenet.de> - 0.08-1
|
||||||
|
- Upstream update.
|
||||||
|
- BR: perl(Test::Pod), perl(Test::Pod::Coverage).
|
||||||
|
|
||||||
|
* Wed Jul 09 2008 Ralf Corsépius <rc040203@freenet.de> - 0.06-5
|
||||||
|
- Fix broken Source0-URL.
|
||||||
|
|
||||||
|
* Wed Feb 27 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 0.06-4
|
||||||
|
- Rebuild for perl 5.10 (again)
|
||||||
|
|
||||||
|
* Mon Jan 14 2008 Tom "spot" Callaway <tcallawa@redhat.com> 0.06-3
|
||||||
|
- rebuild for new perl
|
||||||
|
|
||||||
|
* Fri Aug 24 2007 Tom "spot" Callaway <tcallawa@redhat.com> 0.06-2
|
||||||
|
- license fix
|
||||||
|
|
||||||
|
* Wed Jan 17 2007 Tom "spot" Callaway <tcallawa@redhat.com> 0.06-1
|
||||||
|
- bump to 0.06
|
||||||
|
|
||||||
|
* Thu Sep 14 2006 Tom "spot" Callaway <tcallawa@redhat.com> 0.05-1
|
||||||
|
- bump to 0.05
|
||||||
|
|
||||||
|
* Mon Jan 9 2006 Tom "spot" Callaway <tcallawa@redhat.com> 0.04-1
|
||||||
|
- bump to 0.04
|
||||||
|
|
||||||
|
* Sun Jul 10 2005 Tom "spot" Callaway <tcallawa@redhat.com> 0.02-3
|
||||||
|
- changed /Class/Data to /Class, for proper ownership
|
||||||
|
|
||||||
|
* Fri Jul 8 2005 Tom "spot" Callaway <tcallawa@redhat.com> 0.02-2
|
||||||
|
- cleanups
|
||||||
|
|
||||||
|
* Wed Jul 6 2005 Tom "spot" Callaway <tcallawa@redhat.com> 0.02-1
|
||||||
|
- Initial package for Fedora Extras
|
Loading…
Reference in new issue