123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160 |
- Name: perl-Exception-Class
- Version: 1.44
- Release: 1%{?_dist_release}
- Summary: Module that allows you to declare real exception classes in Perl
- License: Artistic 2.0
- Group: Development/Libraries
- URL: http://search.cpan.org/dist/Exception-Class/
- Source0: http://www.cpan.org/authors/id/D/DR/DROLSKY/Exception-Class-%{version}.tar.gz
- BuildRoot: %{_tmppath}/%{name}-%{version}-root
- BuildArch: noarch
- BuildRequires: perl(Class::Data::Inheritable)
- BuildRequires: perl(Devel::StackTrace)
- BuildRequires: perl(ExtUtils::MakeMaker)
- BuildRequires: perl(Test::More)
- BuildRequires: perl(Test::Pod)
- BuildRequires: perl(Test::Pod::Coverage)
- Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
- Vendor: Project Vine
- Distribution: Vine Linux
- Packager: shaolin
- %description
- Exception::Class allows you to declare exception hierarchies in your
- modules in a "Java-esque" manner.
- %prep
- %setup -q -n Exception-Class-%{version}
- chmod a-x lib/Exception/Class.pm
- %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
- export IS_MAINTAINER=1
- make test
- %clean
- rm -rf ${RPM_BUILD_ROOT}
- %files
- %defattr(-,root,root,-)
- %license LICENSE
- %doc Changes README
- %dir %{perl_vendorlib}/Exception/Class
- %{perl_vendorlib}/Exception/Class/*
- %{perl_vendorlib}/Exception/Class.pm
- %{_mandir}/man3/*
- %changelog
- * Sat May 18 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 1.44-1
- - new upstream release.
- - rebuilt with perl-5.26.
- * Thu Nov 20 2014 Ryoichi INAGAKI <ryo1@toki.waseda.jp> - 1.36-1
- - updated to 1.36
- - built with perl 5.16.3
- * Thu Mar 01 2012 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 1.32-2
- - rebuild
- * Thu Feb 23 2012 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 1.32-1
- - initial build for Vine Linux
- * Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.32-4
- - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
- * Tue Jun 21 2011 Marcela Mašláňová <mmaslano@redhat.com> - 1.32-3
- - Perl mass rebuild
- * Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.32-2
- - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
- * Wed Dec 22 2010 Steven Pritchard <steve@kspei.com> 1.32-1
- - Update to 1.32.
- - License is now Artistic 2.0.
- - Switch back to building with ExtUtils::MakeMaker/Makefile.PL. (Dave
- Rolsky needs to make up his mind.)
- - Add README to docs.
- * Thu Dec 16 2010 Marcela Maslanova <mmaslano@redhat.com> - 1.29-5
- - 661697 rebuild for fixing problems with vendorach/lib
- * Sat May 01 2010 Marcela Maslanova <mmaslano@redhat.com> - 1.29-4
- - Mass rebuild with perl-5.12.0
- * Fri Apr 30 2010 Marcela Maslanova <mmaslano@redhat.com> - 1.29-3
- - Mass rebuild with perl-5.12.0
- * Mon Dec 7 2009 Stepan Kasal <skasal@redhat.com> - 1.29-2
- - rebuild against perl 5.10.1
- * Thu Jul 30 2009 Ralf Corsépius <corsepiu@fedoraproject.org> - 1.29-1
- - Upstream update (Required by other packages, fix mass rebuild breakdowns).
- * Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.26-3
- - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
- * Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.26-2
- - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
- * Fri Dec 12 2008 Steven Pritchard <steve@kspei.com> 1.26-1
- - Update to 1.26.
- - Bump Devel::StackTrace dependency to 1.20.
- * Sat May 31 2008 Steven Pritchard <steve@kspei.com> 1.24-1
- - Update to 1.24.
- - Bump Devel::StackTrace dependency to 1.17.
- - Clean up to match current cpanspec output.
- - Improve Summary and description.
- - Build with Module::Build.
- - BR Test::Pod and Test::Pod::Coverage and define IS_MAINTAINER.
- * Wed Feb 27 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 1.23-6
- - Rebuild for perl 5.10 (again)
- * Mon Jan 14 2008 Tom "spot" Callaway <tcallawa@redhat.com> 1.23-5
- - rebuild against new perl
- * Sat Dec 29 2007 Ralf Corsépius 1.23-4
- - BR: perl(Test::More) (BZ 419631).
- - Adjust License-tag.
- * Tue Apr 17 2007 Steven Pritchard <steve@kspei.com> 1.23-3
- - Use fixperms macro instead of our own chmod incantation.
- - BR ExtUtils::MakeMaker.
- * Sat Sep 16 2006 Steven Pritchard <steve@kspei.com> 1.23-2
- - Canonicalize Source0 URL.
- - Fix find option order.
- - Drop executable bit from Exception/Class.pm to avoid a rpmlint warning.
- * Fri Feb 03 2006 Steven Pritchard <steve@kspei.com> 1.23-1
- - Update to 1.23
- * Tue Jan 10 2006 Steven Pritchard <steve@kspei.com> 1.22-1
- - Update to 1.22
- * Mon Sep 05 2005 Steven Pritchard <steve@kspei.com> 1.21-3
- - Remove explicit core module dependencies
- - Add COPYING and Artistic
- * Wed Aug 17 2005 Steven Pritchard <steve@kspei.com> 1.21-2
- - Minor spec cleanup
- * Tue Aug 16 2005 Steven Pritchard <steve@kspei.com> 1.21-1
- - Specfile autogenerated.
|