perl-Devel-Cycle-vl.spec 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. Name: perl-Devel-Cycle
  2. Version: 1.12
  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}-root
  10. BuildArch: noarch
  11. BuildRequires: perl(PadWalker)
  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)
  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. * Sat May 18 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 1.12-2
  44. - new upstream release.
  45. - rebuilt with perl-5.26.
  46. * Fri Nov 21 2014 Ryoichi INAGAKI <ryo1@toki.waseda.jp> - 1.12-1
  47. - updated to 1.12
  48. - built with perl 5.16.3
  49. * Mon Apr 25 2011 Kazutaka HARADA <kazutaka@vinelinux.org> 1.10-2
  50. - build with perl 5.12.3
  51. - add Vendor and Distribution tags
  52. * Thu Nov 05 2009 Kazutaka HARADA <kazutaka@dc4.so-net.ne.jp> 1.10-1
  53. - initial build for Vine Linux based on fedora development
  54. * Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.10-3
  55. - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
  56. * Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.10-2
  57. - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
  58. * Tue Jul 15 2008 Steven Pritchard <steve@kspei.com> 1.10-1
  59. - Update to 1.10.
  60. * Thu May 15 2008 Steven Pritchard <steve@kspei.com> 1.09-1
  61. - Update to 1.09.
  62. - Reformat to match cpanspec output.
  63. - Fix find option order.
  64. - Use fixperms macro instead of our own chmod incantation.
  65. * Wed Feb 27 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 1.07-3
  66. - Rebuild for perl 5.10 (again)
  67. * Sun Jan 13 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 1.07-2
  68. - rebuild for new perl
  69. * Mon Oct 15 2007 Tom "spot" Callaway <tcallawa@redhat.com> - 1.07-1.2
  70. - add BR: perl(Test::More)
  71. * Mon Oct 15 2007 Tom "spot" Callaway <tcallawa@redhat.com> - 1.07-1.1
  72. - correct license tag
  73. - add BR: perl(ExtUtils::MakeMaker)
  74. * Wed May 24 2006 Jose Pedro Oliveira <jpo at di.uminho.pt> - 1.07-1
  75. - Update to 1.07.
  76. - Requirement version: perl(PadWalker) >= 1.0.
  77. * Mon May 22 2006 Jose Pedro Oliveira <jpo at di.uminho.pt> - 1.05-1
  78. - Update to 1.05.
  79. - New requirement: perl(PadWalker).
  80. * Thu Feb 16 2006 Jose Pedro Oliveira <jpo at di.uminho.pt> - 1.04-4
  81. - Rebuild for FC5 (perl 5.8.8).
  82. * Sat May 14 2005 Jose Pedro Oliveira <jpo at di.uminho.pt> - 1.04-3
  83. - Add dist tag.
  84. * Mon May 02 2005 Jose Pedro Oliveira <jpo at di.uminho.pt> - 1.04-2
  85. - Update to 1.04.
  86. * Fri Apr 22 2005 Jose Pedro Oliveira <jpo at di.uminho.pt> - 1.03-2
  87. - Fedora Extras: FC-4 version.
  88. * Mon Jan 24 2005 Jose Pedro Oliveira <jpo at di.uminho.pt> - 0:1.03-0.fdr.1
  89. - Update to 1.03.
  90. * Sun Jul 04 2004 Jose Pedro Oliveira <jpo at di.uminho.pt> - 0:1.02-0.fdr.1
  91. - First build.