123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107 |
- Name: perl-Number-Compare
- Version: 0.01
- Release: 17%{?_dist_release}
- Summary: Perl module for numeric comparisons
- License: GPL+ or Artistic
- Group: Development/Libraries
- URL: http://search.cpan.org/dist/Number-Compare/
- Source0: http://www.cpan.org/modules/by-module/Number/Number-Compare-%{version}.tar.gz
- # Address https://bugzilla.redhat.com/show_bug.cgi?id=607982
- # Patch from https://rt.cpan.org/Public/Bug/Display.html?id=58466
- Patch0: https://rt.cpan.org/Ticket/Attachment/792151/410599/Number-Compare-0.01-uninitialized.patch
- 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))
- Vendor: Project Vine
- Distribution: Vine Linux
- %description
- Number::Compare compiles a simple comparison to an anonymous subroutine,
- which you can call with a value to be tested again.
- %prep
- %setup -q -n Number-Compare-%{version}
- %patch0 -p1
- %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 -type d -depth -exec rmdir {} 2>/dev/null ';'
- chmod -R u+w $RPM_BUILD_ROOT/*
- %clean
- rm -rf $RPM_BUILD_ROOT
- %check
- make test
- %files
- %defattr(-,root,root,-)
- %doc Changes
- %{perl_vendorlib}/Number
- %{_mandir}/man3/*
- %changelog
- * Mon Mar 28 2011 IWAI, Masaharu <iwai@alib.jp> 0.01-17
- - build for Vine Linux
- * Tue Dec 21 2010 Marcela Maslanova <mmaslano@redhat.com> - 0.01-16
- - 661697 rebuild for fixing problems with vendorach/lib
- * Sat Jun 26 2010 Ralf Corsépius <corsepiu@fedoraproject.org> - 0.01-15
- - Apply https://rt.cpan.org/Ticket/Attachment/792151/410599/Number-Compare-0.01-uninitialized.patch
- to address https://bugzilla.redhat.com/show_bug.cgi?id=607982.
- * Tue May 04 2010 Marcela Maslanova <mmaslano@redhat.com> - 0.01-14
- - Mass rebuild with perl-5.12.0
- * Mon Dec 7 2009 Stepan Kasal <skasal@redhat.com> - 0.01-13
- - rebuild against perl 5.10.1
- * Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.01-12
- - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
- * Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.01-11
- - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
- * Wed Feb 27 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 0.01-10
- - Rebuild for perl 5.10 (again)
- * Fri Jan 11 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 0.01-9
- - rebuild for new perl
- * Fri Aug 17 2007 Ralf Corsépius <rc040203@freenet.de> - 0.01-8
- - Update license tag.
- * Thu Apr 19 2007 Ralf Corsépius <rc040203@freenet.de> - 0.01-7
- - Reflect perl package split.
- * Tue Sep 05 2006 Ralf Corsépius <rc040203@freenet.de> - 0.01-6
- - Mass rebuild.
- * Tue Feb 28 2006 Ralf Corsépius <rc040203@freenet.de> - 0.01-5
- - Rebuild for perl-5.8.8.
- * Tue Aug 16 2005 Paul Howarth <paul@city-fan.org> - 0.01-4
- - BR: perl redundant for Extras.
- * Sat Aug 13 2005 Ralf Corsepius <ralf@links2linux.de> - 0.01-3
- - Spec cleanup.
- * Wed Aug 10 2005 Ralf Corsepius <ralf@links2linux.de> - 0.01-2
- - FE re-submission.
- * Fri Jul 01 2005 Ralf Corsepius <ralf@links2linux.de> - 0.01-1
- - FE submission.
|