diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..bf92916 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +SOURCES/Class-Singleton-1.4.tar.gz diff --git a/.perl-Class-Singleton.metadata b/.perl-Class-Singleton.metadata new file mode 100644 index 0000000..7c992dd --- /dev/null +++ b/.perl-Class-Singleton.metadata @@ -0,0 +1 @@ +29c4c6b6cfb9af9eaa61582f3f3b10015f6ea900 SOURCES/Class-Singleton-1.4.tar.gz diff --git a/SPECS/perl-Class-Singleton.spec b/SPECS/perl-Class-Singleton.spec new file mode 100644 index 0000000..ca5afcc --- /dev/null +++ b/SPECS/perl-Class-Singleton.spec @@ -0,0 +1,117 @@ +Name: perl-Class-Singleton +Version: 1.4 +Release: 14%{?dist} +Summary: Implementation of a "Singleton" class +License: GPL+ or Artistic +Group: Development/Libraries +URL: http://search.cpan.org/dist/Class-Singleton/ +Source0: http://www.cpan.org/authors/id/A/AB/ABW/Class-Singleton-%{version}.tar.gz +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) +BuildArch: noarch +BuildRequires: perl(ExtUtils::MakeMaker) +BuildRequires: perl(Test::More) +Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) + +%description +This is the Class::Singleton module. A Singleton describes an object class +that can have only one instance in any system. An example of a Singleton +might be a print spooler or system registry. This module implements a +Singleton class from which other classes can be derived. By itself, the +Class::Singleton module does very little other than manage the +instantiation of a single object. In deriving a class from +Class::Singleton, your module will inherit the Singleton instantiation +method and can implement whatever specific functionality is required. + +%prep +%setup -q -n Class-Singleton-%{version} + +%build +%{__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/* + +%check +make test + +%clean +rm -rf $RPM_BUILD_ROOT + +%files +%defattr(-,root,root,-) +%doc Changes README +%{perl_vendorlib}/* +%{_mandir}/man3/* + +%changelog +* Fri Dec 27 2013 Daniel Mach - 1.4-14 +- Mass rebuild 2013-12-27 + +* Wed Aug 15 2012 Daniel Mach - 1.4-13.1 +- Rebuild for perl 5.16 + +* Fri Jul 20 2012 Fedora Release Engineering - 1.4-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild + +* Mon Jun 11 2012 Petr Pisar - 1.4-12 +- Perl 5.16 rebuild + +* Fri Jan 13 2012 Fedora Release Engineering - 1.4-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild + +* Fri Jun 17 2011 Marcela Mašláňová - 1.4-10 +- Perl mass rebuild + +* Tue Feb 08 2011 Fedora Release Engineering - 1.4-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild + +* Wed Dec 15 2010 Marcela Maslanova - 1.4-8 +- 661697 rebuild for fixing problems with vendorach/lib + +* Fri Apr 30 2010 Marcela Maslanova - 1.4-7 +- Mass rebuild with perl-5.12.0 + +* Fri Dec 4 2009 Stepan Kasal - 1.4-6 +- rebuild against perl 5.10.1 + +* Sat Jul 25 2009 Fedora Release Engineering - 1.4-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + +* Thu Feb 26 2009 Fedora Release Engineering - 1.4-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + +* Wed Feb 27 2008 Tom "spot" Callaway - 1.4-3 +- Rebuild for perl 5.10 (again) + +* Thu Jan 24 2008 Tom "spot" Callaway 1.4-2 +- rebuild for new perl + +* Mon Oct 15 2007 Steven Pritchard 1.4-1 +- Update to 1.4. +- Update License tag. +- Drop our copy of the license text. +- Improve Summary. +- Make description match cpanspec output. +- BR Test::More. + +* Tue Apr 17 2007 Steven Pritchard 1.03-4 +- Use fixperms macro instead of our own chmod incantation. +- BR ExtUtils::MakeMaker. + +* Sat Sep 16 2006 Steven Pritchard 1.03-3 +- Canonicalize Source0 URL. +- Fix find option order. + +* Thu Sep 08 2005 Steven Pritchard 1.03-2 +- Fix permissions on Singleton.pm. + +* Wed Aug 31 2005 Steven Pritchard 1.03-1 +- Specfile autogenerated.