perl-Devel-Cycle-vl.spec 3.4 KB

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