perl-Devel-Cycle-vl.spec 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. Summary: Find memory cycles in objects
  2. Name: perl-Devel-Cycle
  3. Version: 1.12
  4. Release: 3%{?_dist_release}
  5. Group: programming
  6. Vendor: Project Vine
  7. Distribution: Vine Linux
  8. License: GPL+ or Artistic
  9. URL: https://metacpan.org/pod/Devel::Cycle
  10. Source0: https://cpan.metacpan.org/authors/id/L/LD/LDS/Devel-Cycle-%{version}.tar.gz
  11. BuildArch: noarch
  12. BuildRoot: %{_tmppath}/%{name}-%{version}-root
  13. BuildRequires: perl(PadWalker)
  14. BuildRequires: perl(ExtUtils::MakeMaker)
  15. BuildRequires: perl(Test::More)
  16. Requires: perl >= 2:5.34.0
  17. Requires: perl(PadWalker)
  18. %{?perl_default_filter}
  19. %description
  20. This is a simple developer's tool for finding circular references in
  21. objects and other types of references. Because of Perl's reference-count
  22. based memory management, circular references will cause memory leaks.
  23. %prep
  24. %setup -q -n Devel-Cycle-%{version}
  25. %build
  26. %{__perl} Makefile.PL INSTALLDIRS=vendor NO_PACKLIST=1 NO_PERLLOCAL=1
  27. %{__make} %{?_smp_mflags}
  28. %install
  29. %{__rm} -rf $RPM_BUILD_ROOT
  30. %{__make} pure_install PERL_INSTALL_ROOT=$RPM_BUILD_ROOT
  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 Nov 20 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 1.12-3
  44. - rebuilt with perl-5.34.0.
  45. * Sat May 18 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 1.12-2
  46. - new upstream release.
  47. - rebuilt with perl-5.26.
  48. * Fri Nov 21 2014 Ryoichi INAGAKI <ryo1@toki.waseda.jp> - 1.12-1
  49. - updated to 1.12
  50. - built with perl 5.16.3
  51. * Mon Apr 25 2011 Kazutaka HARADA <kazutaka@vinelinux.org> 1.10-2
  52. - build with perl 5.12.3
  53. - add Vendor and Distribution tags
  54. * Thu Nov 05 2009 Kazutaka HARADA <kazutaka@dc4.so-net.ne.jp> 1.10-1
  55. - initial build for Vine Linux based on fedora development
  56. * Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.10-3
  57. - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
  58. * Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.10-2
  59. - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
  60. * Tue Jul 15 2008 Steven Pritchard <steve@kspei.com> 1.10-1
  61. - Update to 1.10.
  62. * Thu May 15 2008 Steven Pritchard <steve@kspei.com> 1.09-1
  63. - Update to 1.09.
  64. - Reformat to match cpanspec output.
  65. - Fix find option order.
  66. - Use fixperms macro instead of our own chmod incantation.
  67. * Wed Feb 27 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 1.07-3
  68. - Rebuild for perl 5.10 (again)
  69. * Sun Jan 13 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 1.07-2
  70. - rebuild for new perl
  71. * Mon Oct 15 2007 Tom "spot" Callaway <tcallawa@redhat.com> - 1.07-1.2
  72. - add BR: perl(Test::More)
  73. * Mon Oct 15 2007 Tom "spot" Callaway <tcallawa@redhat.com> - 1.07-1.1
  74. - correct license tag
  75. - add BR: perl(ExtUtils::MakeMaker)
  76. * Wed May 24 2006 Jose Pedro Oliveira <jpo at di.uminho.pt> - 1.07-1
  77. - Update to 1.07.
  78. - Requirement version: perl(PadWalker) >= 1.0.
  79. * Mon May 22 2006 Jose Pedro Oliveira <jpo at di.uminho.pt> - 1.05-1
  80. - Update to 1.05.
  81. - New requirement: perl(PadWalker).
  82. * Thu Feb 16 2006 Jose Pedro Oliveira <jpo at di.uminho.pt> - 1.04-4
  83. - Rebuild for FC5 (perl 5.8.8).
  84. * Sat May 14 2005 Jose Pedro Oliveira <jpo at di.uminho.pt> - 1.04-3
  85. - Add dist tag.
  86. * Mon May 02 2005 Jose Pedro Oliveira <jpo at di.uminho.pt> - 1.04-2
  87. - Update to 1.04.
  88. * Fri Apr 22 2005 Jose Pedro Oliveira <jpo at di.uminho.pt> - 1.03-2
  89. - Fedora Extras: FC-4 version.
  90. * Mon Jan 24 2005 Jose Pedro Oliveira <jpo at di.uminho.pt> - 0:1.03-0.fdr.1
  91. - Update to 1.03.
  92. * Sun Jul 04 2004 Jose Pedro Oliveira <jpo at di.uminho.pt> - 0:1.02-0.fdr.1
  93. - First build.