perl-Devel-Cycle-vl.spec 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. Name: perl-Devel-Cycle
  2. Version: 1.10
  3. Release: 1%{?_dist_release}
  4. Summary: Find memory cycles in objects
  5. License: GPL+ or Artistic
  6. Group: Development/Libraries
  7. URL: http://search.cpan.org/dist/Devel-Cycle/
  8. Source0: http://www.cpan.org/authors/id/L/LD/LDS/Devel-Cycle-%{version}.tar.gz
  9. BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
  10. BuildArch: noarch
  11. BuildRequires: perl(PadWalker) >= 1.0
  12. BuildRequires: perl(ExtUtils::MakeMaker)
  13. BuildRequires: perl(Test::More)
  14. Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
  15. Requires: perl(PadWalker) >= 1.0
  16. %description
  17. This is a simple developer's tool for finding circular references in
  18. objects and other types of references. Because of Perl's reference-count
  19. based memory management, circular references will cause memory leaks.
  20. %prep
  21. %setup -q -n Devel-Cycle-%{version}
  22. %build
  23. %{__perl} Makefile.PL INSTALLDIRS=vendor
  24. %{__make} %{?_smp_mflags}
  25. %install
  26. %{__rm} -rf $RPM_BUILD_ROOT
  27. %{__make} pure_install PERL_INSTALL_ROOT=$RPM_BUILD_ROOT
  28. find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} \;
  29. find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null \;
  30. %{_fixperms} $RPM_BUILD_ROOT/*
  31. %check
  32. %{__make} test
  33. %clean
  34. %{__rm} -rf $RPM_BUILD_ROOT
  35. %files
  36. %defattr(-,root,root,-)
  37. %doc Changes README
  38. %{perl_vendorlib}/*
  39. %{_mandir}/man3/*
  40. %changelog
  41. * Thu Nov 05 2009 Kazutaka HARADA <kazutaka@dc4.so-net.ne.jp> 1.10-1
  42. - initial build for Vine Linux based on fedora development
  43. * Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.10-3
  44. - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
  45. * Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.10-2
  46. - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
  47. * Tue Jul 15 2008 Steven Pritchard <steve@kspei.com> 1.10-1
  48. - Update to 1.10.
  49. * Thu May 15 2008 Steven Pritchard <steve@kspei.com> 1.09-1
  50. - Update to 1.09.
  51. - Reformat to match cpanspec output.
  52. - Fix find option order.
  53. - Use fixperms macro instead of our own chmod incantation.
  54. * Wed Feb 27 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 1.07-3
  55. - Rebuild for perl 5.10 (again)
  56. * Sun Jan 13 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 1.07-2
  57. - rebuild for new perl
  58. * Mon Oct 15 2007 Tom "spot" Callaway <tcallawa@redhat.com> - 1.07-1.2
  59. - add BR: perl(Test::More)
  60. * Mon Oct 15 2007 Tom "spot" Callaway <tcallawa@redhat.com> - 1.07-1.1
  61. - correct license tag
  62. - add BR: perl(ExtUtils::MakeMaker)
  63. * Wed May 24 2006 Jose Pedro Oliveira <jpo at di.uminho.pt> - 1.07-1
  64. - Update to 1.07.
  65. - Requirement version: perl(PadWalker) >= 1.0.
  66. * Mon May 22 2006 Jose Pedro Oliveira <jpo at di.uminho.pt> - 1.05-1
  67. - Update to 1.05.
  68. - New requirement: perl(PadWalker).
  69. * Thu Feb 16 2006 Jose Pedro Oliveira <jpo at di.uminho.pt> - 1.04-4
  70. - Rebuild for FC5 (perl 5.8.8).
  71. * Sat May 14 2005 Jose Pedro Oliveira <jpo at di.uminho.pt> - 1.04-3
  72. - Add dist tag.
  73. * Mon May 02 2005 Jose Pedro Oliveira <jpo at di.uminho.pt> - 1.04-2
  74. - Update to 1.04.
  75. * Fri Apr 22 2005 Jose Pedro Oliveira <jpo at di.uminho.pt> - 1.03-2
  76. - Fedora Extras: FC-4 version.
  77. * Mon Jan 24 2005 Jose Pedro Oliveira <jpo at di.uminho.pt> - 0:1.03-0.fdr.1
  78. - Update to 1.03.
  79. * Sun Jul 04 2004 Jose Pedro Oliveira <jpo at di.uminho.pt> - 0:1.02-0.fdr.1
  80. - First build.