Browse Source

* new packages

git-svn-id: http://trac.vinelinux.org/repos/projects/specs@5799 ec354946-7b23-47d6-9f5a-488ba84defc7
shaolin 12 years ago
parent
commit
8a8c1589f5

+ 133 - 0
p/perl-Cache-Cache/perl-Cache-Cache-vl.spec

@@ -0,0 +1,133 @@
+Name:           perl-Cache-Cache
+Version:        1.06
+Release:        1%{?dist}
+Summary:        Generic cache interface and implementations
+License:        GPL+ or Artistic
+Group:          Development/Libraries
+URL:            http://search.cpan.org/dist/Cache-Cache/
+Source0:        http://www.cpan.org/authors/id/J/JS/JSWARTZ/Cache-Cache-%{version}.tar.gz
+BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
+BuildArch:      noarch
+BuildRequires:  perl(Digest::SHA1) >= 2.02
+BuildRequires:  perl(Error) >= 0.15
+BuildRequires:  perl(ExtUtils::MakeMaker)
+BuildRequires:  perl(IPC::ShareLite)
+Requires:       perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
+
+Vendor:         Project Vine
+Distribution:   Vine Linux
+Packager:       shaolin
+
+%description
+The Cache modules are designed to assist a developer in persisting data for a
+specified period of time.  Often these modules are used in web applications to
+store data locally to save repeated and redundant expensive calls to remote
+machines or databases.  People have also been known to use Cache::Cache for
+its straightforward interface in sharing data between runs of an application
+or invocations of a CGI-style script or simply as an easy to use abstraction
+of the filesystem or shared memory.
+
+%prep
+%setup -q -n Cache-Cache-%{version}
+
+%build
+%{__perl} Makefile.PL INSTALLDIRS=vendor
+make %{?_smp_mflags}
+
+%install
+rm -rf %{buildroot}
+
+make pure_install PERL_INSTALL_ROOT=%{buildroot}
+
+find %{buildroot} -type f -name .packlist -exec rm -f {} \;
+find %{buildroot} -depth -type d -exec rmdir {} 2>/dev/null \;
+
+%{_fixperms} %{buildroot}/*
+
+%check
+make test
+
+%clean
+rm -rf %{buildroot}
+
+%files
+%defattr(-,root,root,-)
+%doc CHANGES COPYING CREDITS DISCLAIMER README STYLE
+%{perl_vendorlib}/*
+%{_mandir}/man3/*
+
+%changelog
+* Fri Mar 02 2012 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 1.06-1
+- initial build for Vine Linux
+
+* Mon Jun 20 2011 Marcela Mašláňová <mmaslano@redhat.com> - 1.06-7
+- Perl mass rebuild
+
+* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.06-6
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
+
+* Wed Dec 15 2010 Marcela Maslanova <mmaslano@redhat.com> - 1.06-5
+- 661697 rebuild for fixing problems with vendorach/lib
+
+* Thu Apr 29 2010 Marcela Maslanova <mmaslano@redhat.com> - 1.06-4
+- Mass rebuild with perl-5.12.0
+
+* Mon Dec  7 2009 Stepan Kasal <skasal@redhat.com> - 1.06-3
+- rebuild against perl 5.10.1
+
+* Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.06-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
+
+* Wed May 13 2009 Steven Pritchard <steve@kspei.com> 1.06-1
+- Update to 1.06.
+- Reformat to match cpanspec output.
+- Fix find option order.
+- Use fixperms macro instead of our own chmod incantation.
+- Drop explicit perl build dependency.
+- Update Source0 URL.
+
+* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.05-3
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
+
+* Fri Feb  8 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 1.05-2
+- rebuild for new perl
+
+* Mon Oct 15 2007 Tom "spot" Callaway <tcallawa@redhat.com> - 1.05-1.1
+- correct license tag
+- add BR: perl(ExtUtils::MakeMaker)
+
+* Mon May 29 2006 Jose Pedro Oliveira <jpo at di.uminho.pt> - 1.05-1
+- Update to 1.05.
+
+* Mon Feb 20 2006 Jose Pedro Oliveira <jpo at di.uminho.pt> - 1.04-4
+- Rebuild for FC5 (perl 5.8.8).
+
+* Thu Dec 29 2005 Jose Pedro Oliveira <jpo at di.uminho.pt> - 1.04-3
+- Dist tag.
+
+* Fri Apr  7 2005 Michael Schwendt <mschwendt[AT]users.sf.net> - 1.04-2
+- rebuilt
+
+* Fri Mar 18 2005 Jose Pedro Oliveira <jpo at di.uminho.pt> - 1.04-1
+- Update to 1.04.
+
+* Mon Feb 28 2005 Jose Pedro Oliveira <jpo at di.uminho.pt> - 1.03-2
+- Bring up to date with current fedora.extras perl spec template.
+
+* Tue Feb  1 2005 Matthias Saou <http://freshrpms.net/> 1.03-1
+- Merge in changes from Jose Pedro Oliveira's fedora.us package : #146741.
+- Update to 1.03.
+
+* Tue Nov 16 2004 Matthias Saou <http://freshrpms.net/> 1.02-4
+- Bump release to provide Extras upgrade path.
+
+* Wed May 26 2004 Matthias Saou <http://freshrpms.net/> 1.02-3
+- Rebuilt for Fedora Core 2.
+
+* Fri Apr  2 2004 Matthias Saou <http://freshrpms.net/> 1.02-2
+- Change the explicit package deps to perl package style ones to fix the
+  perl-Storable obsoletes problem.
+
+* Fri Mar 19 2004 Matthias Saou <http://freshrpms.net/> 1.02-1
+- Initial RPM release.
+

+ 125 - 0
p/perl-IPC-ShareLite/perl-IPC-ShareLite-vl.spec

@@ -0,0 +1,125 @@
+Name:           perl-IPC-ShareLite
+Version:        0.17
+Release:        1%{?_dist_release}
+Summary:        Lightweight interface to shared memory
+License:        GPL+ or Artistic
+Group:          Development/Libraries
+URL:            http://search.cpan.org/dist/IPC-ShareLite/
+Source0:        http://www.cpan.org/authors/id/A/AN/ANDYA/IPC-ShareLite-%{version}.tar.gz
+BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
+BuildRequires:  perl(ExtUtils::MakeMaker)
+BuildRequires:  perl(Test::More)
+BuildRequires:  perl(Test::Pod)
+Requires:       perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
+
+%description
+IPC::ShareLite provides a simple interface to shared memory, allowing
+data to be efficiently communicated between processes.
+
+%prep
+%setup -q -n IPC-ShareLite-%{version}
+
+%build
+%{__perl} Makefile.PL INSTALLDIRS=vendor OPTIMIZE="$RPM_OPT_FLAGS"
+make %{?_smp_mflags}
+
+%install
+rm -rf %{buildroot}
+
+make pure_install PERL_INSTALL_ROOT=%{buildroot}
+
+find %{buildroot} -type f -name .packlist -exec rm -f {} \;
+find %{buildroot} -type f -name '*.bs' -size 0 -exec rm -f {} \;
+find %{buildroot} -depth -type d -exec rmdir {} 2>/dev/null \;
+
+%{_fixperms} %{buildroot}/*
+
+%check
+make test
+
+%clean
+rm -rf %{buildroot}
+
+%files
+%defattr(-,root,root,-)
+%doc Changes README
+%{perl_vendorarch}/auto/*
+%{perl_vendorarch}/IPC*
+%{_mandir}/man3/*
+
+%changelog
+* Fri Mar 02 2012 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 0.17-1
+- initial build for Vine Linux
+
+* Mon Jun 20 2011 Marcela Mašláňová <mmaslano@redhat.com> - 0.17-4
+- Perl mass rebuild
+
+* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.17-3
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
+
+* Mon Dec 20 2010 Marcela Maslanova <mmaslano@redhat.com> - 0.17-2
+- 661697 rebuild for fixing problems with vendorach/lib
+
+* Fri Jun 25 2010 Xavier Bachelot <xavier@bachelot.org> 0.17-1
+- Update to 0.17.
+
+* Sun May 02 2010 Marcela Maslanova <mmaslano@redhat.com> - 0.13-5
+- Mass rebuild with perl-5.12.0
+
+* Mon Dec  7 2009 Stepan Kasal <skasal@redhat.com> - 0.13-4
+- rebuild against perl 5.10.1
+
+* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.13-3
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
+
+* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.13-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
+
+* Thu May 15 2008 Steven Pritchard <steve@kspei.com> 0.13-1
+- Update to 0.13.
+- Update Source0 URL.
+
+* Mon Mar  3 2008 Tom "spot" Callaway <tcallawa@redhat.com> 0.12-1
+- 0.12, works right now
+
+* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 0.09-12
+- Autorebuild for GCC 4.3
+
+* Wed Feb 13 2008 Tom "spot" Callaway <tcallawa@redhat.com> 0.09-11
+- still not quite right on x86_64, but not segfaulting anymore.
+
+* Fri Feb  8 2008 Tom "spot" Callaway <tcallawa@redhat.com> 0.09-10
+- rebuild for new perl
+
+* Tue Apr 17 2007 Steven Pritchard <steve@kspei.com> 0.09-9
+- Use fixperms macro instead of our own chmod incantation.
+- BR ExtUtils::MakeMaker.
+
+* Mon Aug 28 2006 Steven Pritchard <steve@kspei.com> 0.09-8
+- Rebuild.
+- Fix find option order.
+- Minor cleanup to more closely match cpanspec output.
+
+* Sat Feb 18 2006 Steven Pritchard <steve@kspei.com> 0.09-7
+- Rebuild.
+
+* Mon Sep 05 2005 Steven Pritchard <steve@kspei.com> 0.09-6
+- Cleanup (closer to current spec template).
+- Include COPYING and Artistic.
+
+* Fri Apr  7 2005 Michael Schwendt <mschwendt[AT]users.sf.net>
+- rebuilt
+
+* Fri Jun 25 2004 Ville Skyttä <ville.skytta at iki.fi> - 0:0.09-0.fdr.4
+- Avoid empty RPATHs.
+
+* Mon May 10 2004 Ville Skyttä <ville.skytta at iki.fi> - 0:0.09-0.fdr.3
+- BuildRequire perl >= 1:5.6.1 for support for vendor installdirs.
+- Use pure_install to avoid perllocal.pod workarounds.
+
+* Mon Apr 26 2004 Ville Skyttä <ville.skytta at iki.fi> - 0:0.09-0.fdr.2
+- Reduce directory ownership bloat.
+- Require perl(:MODULE_COMPAT_*).
+
+* Tue Nov 18 2003 Ville Skyttä <ville.skytta at iki.fi> - 0:0.09-0.fdr.1
+- First build.