source: projects/specs/trunk/p/perl-Cache-Cache/perl-Cache-Cache-vl.spec @ 5799

Revision 5799, 4.4 KB checked in by shaolin, 12 years ago (diff)
  • new packages
Line 
1Name:           perl-Cache-Cache
2Version:        1.06
3Release:        1%{?dist}
4Summary:        Generic cache interface and implementations
5License:        GPL+ or Artistic
6Group:          Development/Libraries
7URL:            http://search.cpan.org/dist/Cache-Cache/
8Source0:        http://www.cpan.org/authors/id/J/JS/JSWARTZ/Cache-Cache-%{version}.tar.gz
9BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
10BuildArch:      noarch
11BuildRequires:  perl(Digest::SHA1) >= 2.02
12BuildRequires:  perl(Error) >= 0.15
13BuildRequires:  perl(ExtUtils::MakeMaker)
14BuildRequires:  perl(IPC::ShareLite)
15Requires:       perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
16
17Vendor:         Project Vine
18Distribution:   Vine Linux
19Packager:       shaolin
20
21%description
22The Cache modules are designed to assist a developer in persisting data for a
23specified period of time.  Often these modules are used in web applications to
24store data locally to save repeated and redundant expensive calls to remote
25machines or databases.  People have also been known to use Cache::Cache for
26its straightforward interface in sharing data between runs of an application
27or invocations of a CGI-style script or simply as an easy to use abstraction
28of the filesystem or shared memory.
29
30%prep
31%setup -q -n Cache-Cache-%{version}
32
33%build
34%{__perl} Makefile.PL INSTALLDIRS=vendor
35make %{?_smp_mflags}
36
37%install
38rm -rf %{buildroot}
39
40make pure_install PERL_INSTALL_ROOT=%{buildroot}
41
42find %{buildroot} -type f -name .packlist -exec rm -f {} \;
43find %{buildroot} -depth -type d -exec rmdir {} 2>/dev/null \;
44
45%{_fixperms} %{buildroot}/*
46
47%check
48make test
49
50%clean
51rm -rf %{buildroot}
52
53%files
54%defattr(-,root,root,-)
55%doc CHANGES COPYING CREDITS DISCLAIMER README STYLE
56%{perl_vendorlib}/*
57%{_mandir}/man3/*
58
59%changelog
60* Fri Mar 02 2012 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 1.06-1
61- initial build for Vine Linux
62
63* Mon Jun 20 2011 Marcela Mašláňová <mmaslano@redhat.com> - 1.06-7
64- Perl mass rebuild
65
66* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.06-6
67- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
68
69* Wed Dec 15 2010 Marcela Maslanova <mmaslano@redhat.com> - 1.06-5
70- 661697 rebuild for fixing problems with vendorach/lib
71
72* Thu Apr 29 2010 Marcela Maslanova <mmaslano@redhat.com> - 1.06-4
73- Mass rebuild with perl-5.12.0
74
75* Mon Dec  7 2009 Stepan Kasal <skasal@redhat.com> - 1.06-3
76- rebuild against perl 5.10.1
77
78* Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.06-2
79- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
80
81* Wed May 13 2009 Steven Pritchard <steve@kspei.com> 1.06-1
82- Update to 1.06.
83- Reformat to match cpanspec output.
84- Fix find option order.
85- Use fixperms macro instead of our own chmod incantation.
86- Drop explicit perl build dependency.
87- Update Source0 URL.
88
89* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.05-3
90- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
91
92* Fri Feb  8 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 1.05-2
93- rebuild for new perl
94
95* Mon Oct 15 2007 Tom "spot" Callaway <tcallawa@redhat.com> - 1.05-1.1
96- correct license tag
97- add BR: perl(ExtUtils::MakeMaker)
98
99* Mon May 29 2006 Jose Pedro Oliveira <jpo at di.uminho.pt> - 1.05-1
100- Update to 1.05.
101
102* Mon Feb 20 2006 Jose Pedro Oliveira <jpo at di.uminho.pt> - 1.04-4
103- Rebuild for FC5 (perl 5.8.8).
104
105* Thu Dec 29 2005 Jose Pedro Oliveira <jpo at di.uminho.pt> - 1.04-3
106- Dist tag.
107
108* Fri Apr  7 2005 Michael Schwendt <mschwendt[AT]users.sf.net> - 1.04-2
109- rebuilt
110
111* Fri Mar 18 2005 Jose Pedro Oliveira <jpo at di.uminho.pt> - 1.04-1
112- Update to 1.04.
113
114* Mon Feb 28 2005 Jose Pedro Oliveira <jpo at di.uminho.pt> - 1.03-2
115- Bring up to date with current fedora.extras perl spec template.
116
117* Tue Feb  1 2005 Matthias Saou <http://freshrpms.net/> 1.03-1
118- Merge in changes from Jose Pedro Oliveira's fedora.us package : #146741.
119- Update to 1.03.
120
121* Tue Nov 16 2004 Matthias Saou <http://freshrpms.net/> 1.02-4
122- Bump release to provide Extras upgrade path.
123
124* Wed May 26 2004 Matthias Saou <http://freshrpms.net/> 1.02-3
125- Rebuilt for Fedora Core 2.
126
127* Fri Apr  2 2004 Matthias Saou <http://freshrpms.net/> 1.02-2
128- Change the explicit package deps to perl package style ones to fix the
129  perl-Storable obsoletes problem.
130
131* Fri Mar 19 2004 Matthias Saou <http://freshrpms.net/> 1.02-1
132- Initial RPM release.
133
Note: See TracBrowser for help on using the repository browser.