source: projects/specs/trunk/p/perl-Devel-Cycle/perl-Devel-Cycle-vl.spec @ 12120

Revision 12120, 3.6 KB checked in by tomop, 5 years ago (diff)

perl-5.26 and friends

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