Browse Source

2014-10-25 Ryoichi INAGAKI <ryo1@toki.waseda.jp>

	* perl-CGI-{Application, Session, Simple}: updated
	* perl-Class-ISA: new
	* perl-HTML-SimpleParse: rebuilt
	


git-svn-id: http://trac.vinelinux.org/repos/projects/specs@9023 ec354946-7b23-47d6-9f5a-488ba84defc7
inagaki 9 years ago
parent
commit
a2626a2757

+ 11 - 2
p/perl-CGI-Application/perl-CGI-Application-vl.spec

@@ -1,7 +1,7 @@
 Summary: Framework for building reusable web-applications
 Name: perl-CGI-Application
-Version: 4.31
-Release: 2%{?_dist_release}
+Version: 4.50
+Release: 1%{?_dist_release}
 Group: Development/Libraries
 License: GPL or Artistic
 URL: http://search.cpan.org/~markstos/CGI-Application/
@@ -10,6 +10,7 @@ Source0: http://search.cpan.org/CPAN/authors/id/M/MA/MARKSTOS/CGI-Application-%{
 BuildRoot: %{_tmppath}/%{name}-%{version}-root
 BuildArch: noarch
 BuildRequires: perl-HTML-Template
+BuildRequires: perl-Class-ISA
 Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
 
 Vendor: Project Vine
@@ -35,6 +36,9 @@ rm -rf $RPM_BUILD_ROOT
 mkdir -p $RPM_BUILD_ROOT%{_prefix}
 make DESTDIR=$RPM_BUILD_ROOT install
 
+find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} ';'
+find $RPM_BUILD_ROOT -type d -depth -exec rmdir {} 2>/dev/null ';'
+
 find $RPM_BUILD_ROOT%{_prefix} -type f -print | 
 	sed "s@^$RPM_BUILD_ROOT@@g" | 
 	grep -v ^%{_mandir} | 
@@ -63,6 +67,11 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*.3*
 
 %changelog
+* Sat Oct 25 2014 Ryoichi INAGAKI <ryo1@toki.waseda.jp> 4.50-1
+- updated to 4.50
+- built with perl-5.16.3
+- added BR: perl-Class-ISA
+
 * Sun May 22 2011 IWAI, Masaharu <iwai@alib.jp> 4.31-2
 - build with perl 5.12.3
 - add Vendor and Distribution tags

+ 9 - 1
p/perl-CGI-Session/perl-CGI-Session-vl.spec

@@ -1,6 +1,6 @@
 Summary: persistent session data in CGI applications with Perl
 Name: perl-CGI-Session
-Version: 4.43
+Version: 4.48
 Release: 1%{?_dist_release}
 License: Artistic
 Group: Development/Libraries
@@ -10,6 +10,10 @@ URL: http://search.cpan.org/~sherzodr/CGI-Session/
 BuildRoot: %{_tmppath}/%{name}-%{version}-root
 BuildArch: noarch
 BuildRequires: perl >= 5.8.2
+# for test
+BuildRequires: perl-FreezeThaw
+BuildRequires: perl-CGI-Simple
+
 Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
 
 Vendor: Project Vine
@@ -62,6 +66,10 @@ rm -rf $RPM_BUILD_ROOT
 %dir %{perl_vendorlib}/CGI/Session/Test
 
 %changelog
+* Sat Oct 25 2014 Ryoichi INAGAKI <ryo1@toki.waseda.jp> 4.48-1
+- new upstream release
+- built with perl 5.16.3
+
 * Sun May 22 2011 IWAI, Masaharu <iwai@alib.jp> 4.43-1
 - new upstream release
 

+ 5 - 1
p/perl-CGI-Simple/perl-CGI-Simple-vl.spec

@@ -1,6 +1,6 @@
 Summary: Simple totally OO CGI interface that is CGI.pm compliant
 Name: perl-CGI-Simple
-Version: 1.113
+Version: 1.115
 Release: 1%{?_dist_release}
 Group: Development/Libraries
 License: GPL or Artistic
@@ -50,6 +50,10 @@ rm -rf $RPM_BUILD_ROOT
 
 
 %changelog
+* Sat Oct 25 2014 Ryoichi INAGAKI <ryo1@toki.waseda.jp> 1.115-1
+- new upstream release
+- built with perl 5.16.3
+
 * Sun May 22 2011 IWAI, Masaharu <iwai@alib.jp> 1.113-1
 - new upstream release
 - add Vendor and Distribution tags

+ 87 - 0
p/perl-Class-ISA/perl-Class-ISA-vl.spec

@@ -0,0 +1,87 @@
+Name:           perl-Class-ISA
+Version:        0.36
+Release:        1015%{?_dist_release}
+Summary:        Report the search path for a class's ISA tree
+License:        GPL+ or Artistic
+Group:          Development/Libraries
+URL:            http://search.cpan.org/dist/Class-ISA/
+Source0:        http://www.cpan.org/authors/id/S/SM/SMUELLER/Class-ISA-%{version}.tar.gz
+
+BuildRoot:      %{_tmppath}/%{name}-%{version}-root
+BuildArch:      noarch
+BuildRequires:  perl(ExtUtils::MakeMaker)
+BuildRequires:  perl(Test)
+Requires:       perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
+
+%description
+This library provides functions that return the list (in order) of names of
+(super-)classes Perl would search to find a method, with no duplicates.
+
+%prep
+%setup -q -n Class-ISA-%{version}
+
+%build
+perl Makefile.PL INSTALLDIRS=vendor
+make %{?_smp_mflags}
+
+%install
+make pure_install DESTDIR=%{buildroot}
+find %{buildroot} -type f -name .packlist -exec rm -f {} \;
+find %{buildroot} -depth -type d -exec rmdir {} 2>/dev/null \;
+rm -rf %{buildroot}/%{_mandir}/man3/*
+%{_fixperms} %{buildroot}/*
+
+%check
+make test
+
+%files
+%doc ChangeLog README
+%{perl_vendorlib}/*
+
+%changelog
+* Sat Oct 25 2014 Ryoichi INAGAKI <ryo1@toki.waseda.jp> 0.36-1015
+- initial build for Vine Linux
+- rebuilt with perl-5.16.3
+
+* Wed Aug 27 2014 Jitka Plesnikova <jplesnik@redhat.com> - 0.36-1014
+- Perl 5.20 rebuild
+
+* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.36-1013
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
+
+* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.36-1012
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
+
+* Thu Jul 18 2013 Petr Pisar <ppisar@redhat.com> - 0.36-1011
+- Perl 5.18 rebuild
+
+* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.36-1010
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
+
+* Fri Jul 20 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.36-1009
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
+
+* Mon Jun 11 2012 Petr Pisar <ppisar@redhat.com> - 0.36-1008
+- Perl 5.16 rebuild
+
+* Fri Apr 13 2012 Petr Šabata <contyk@redhat.com> - 0.36-1007
+- Change description to something more descriptive (#811144)
+- Modernize spec
+
+* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.36-1006
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
+
+* Fri Jun 17 2011 Marcela Mašláňová <mmaslano@redhat.com> - 0.36-1005
+- Perl mass rebuild
+
+* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.36-1004
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
+
+* Tue Nov 09 2010 Petr Pisar <ppisar@redhat.com> - 0.36-1003
+- Increase release number to be higher than Perl core package (bug #651317)
+
+* Mon May 10 2010 Marcela Mašláňová <mmaslano@redhat.com> 0.36-2
+- fix of conflicting man pages 
+
+* Mon May 03 2010 Marcela Mašláňová <mmaslano@redhat.com> 0.36-1
+- Specfile autogenerated by cpanspec 1.78.

+ 14 - 9
p/perl-HTML-SimpleParse/perl-HTML-SimpleParse-vl.spec

@@ -3,25 +3,24 @@
 # Basic Information
 Name:		perl-%{pkgname}
 Version:	0.12
-Release:	2%{?_dist_release}
+Release:	3%{?_dist_release}
 License:	Artistic or GPL
 Group:		Development/Libraries
 Source0:	http://search.cpan.org/CPAN/authors/id/K/KW/KWILLIAMS/%{pkgname}-%{version}.tar.gz
+
+Summary:	a bare-bones HTML parser
+Summary(ja):	簡易 HTML パーサー
+
 BuildRoot:	%{_tmppath}/%{name}-%{version}-root
 BuildArch:	noarch
+BuildRequires:  perl
+# Dependency
+Requires:       perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
 
 Vendor:		Project Vine
 Distribution:	Vine Linux
 Packager:	yasumichi
 
-Summary:	HTML::SimpleParse - a bare-bones HTML parser
-Summary(ja):	HTML::SimpleParse - 簡易 HTML パーサー
-
-# Dependency
-Requires:       perl
-Requires:       perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
-
-BuildRequires:  perl
 
 %description
 This module is a simple HTML parser. It is similar in concept to
@@ -62,12 +61,18 @@ fi
 %clean
 %{__rm} -rf ${RPM_BUILD_ROOT}
 
+%check
+%{__make} test
+
 
 %files -f %{name}.files
 %defattr(-,root,root)
 %doc Changes README
 
 %changelog
+* Sat Oct 25 2014 Ryoichi INAGAKI <ryo1@toki.waseda.jp> 0.12-3
+- rebuilt with perl-5.16.3
+
 * Thu Oct 18 2012 Yasumichi Akahoshi <yasumichi@vinelinux.org> 0.12-2
 - fixed Summary(ja)