perl-Digest-SHA1-vl.spec 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. %define real_name Digest-SHA1
  2. Summary: Digest-SHA1 Perl module
  3. Name: perl-Digest-SHA1
  4. Version: 2.12
  5. Release: 1%{_dist_release}
  6. License: distributable
  7. Group: Development/Libraries
  8. URL: http://search.cpan.org/dist/Digest-SHA1/
  9. Source: http://www.cpan.org/modules/by-module/Digest/Digest-SHA1-%{version}.tar.gz
  10. BuildRoot: %{_tmppath}/%{name}-%{version}-root
  11. BuildRequires: perl >= 0:5.10.0
  12. Requires: perl >= 0:5.10.0
  13. %description
  14. The Digest::SHA1 module allows you to use the NIST SHA-1 message
  15. digest algorithm from within Perl programs. The algorithm takes as
  16. input a message of arbitrary length and produces as output a 160-bit
  17. "fingerprint" or "message digest" of the input.
  18. The Digest::SHA1 module provide a procedural interface for simple use,
  19. as well as an object oriented interface that can handle messages of
  20. arbitrary length and which can read files directly.
  21. A binary digest will be 20 bytes long. A hex digest will be 40
  22. characters long. A base64 digest will be 27 characters long.
  23. %prep
  24. %setup -n %{real_name}-%{version}
  25. %build
  26. CFLAGS="%{optflags}" %{__perl} Makefile.PL INSTALLDIRS="vendor" PREFIX="%{buildroot}%{_prefix}"
  27. %{__make} %{?_smp_mflags} OPTIMIZE="%{optflags}"
  28. %install
  29. %{__rm} -rf %{buildroot}
  30. %makeinstall
  31. ### Clean up buildroot
  32. %{__rm} -rf %{buildroot}%{perl_archlib} %{buildroot}%{perl_vendorarch}/auto/*{,/*{,/*}}/.packlist
  33. %clean
  34. %{__rm} -rf %{buildroot}
  35. %files
  36. %defattr(-, root, root, 0755)
  37. %doc Changes MANIFEST README fip180-1*
  38. %doc %{_mandir}/man3/*.3pm*
  39. %dir %{perl_vendorarch}/Digest/
  40. %{perl_vendorarch}/Digest/SHA1.pm
  41. %dir %{perl_vendorarch}/auto/Digest/
  42. %{perl_vendorarch}/auto/Digest/SHA1/
  43. %changelog
  44. * Wed Jul 8 2009 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 2.12-1
  45. - new upstream release.
  46. * Tue Apr 29 2008 Tomohiro 'Tomo-p' KATO <tomop@teamgedoh.net> - 2.11-2
  47. - rebuilt with perl-5.10.0.
  48. * Sat Sep 30 2006 Ryoichi INAGAKI <ryo1@bc.wakwak.com> - 2.11-1vl1
  49. - Initial built for Vine Linux
  50. * Mon Sep 18 2006 Dries Verachtert <dries@ulyssis.org> - 2.11-1
  51. - Updated to release 2.11.
  52. * Sat Apr 08 2006 Dries Verachtert <dries@ulyssis.org> - 2.10-1.2
  53. - Rebuild for Fedora Core 5.
  54. * Fri Mar 18 2005 Dag Wieers <dag@wieers.com> - 2.10-1
  55. - Cosmetic cleanup.
  56. * Thu Mar 18 2004 Dag Wieers <dag@wieers.com> - 2.07-1
  57. - Updated to release 2.07.
  58. * Sun Jan 26 2003 Dag Wieers <dag@wieers.com> - 2.03-0
  59. - Initial package. (using DAR)