Browse Source

2014-11-22 Ryoichi INAGAKI <ryo1@toki.waseda.jp>

	* perl-Devel-CheckBin: NEW
	* perl-FileHandle-Fmode, perl-Sub-{Identify, Exporter, Name}: updated
	* perl-FreezeThaw: rebuilt
	


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

+ 68 - 0
p/perl-Devel-CheckBin/perl-Devel-CheckBin-vl.spec

@@ -0,0 +1,68 @@
+Name:		perl-Devel-CheckBin
+Version:	0.02
+Release:	4%{?_dist_release}
+Summary:	Check that a command is available
+License:	GPL+ or Artistic
+Group:          Development/Libraries
+URL:		http://search.cpan.org/dist/Devel-CheckBin/
+Source0:	http://search.cpan.org/CPAN/authors/id/T/TO/TOKUHIROM/Devel-CheckBin-%{version}.tar.gz
+
+BuildRoot:	%{_tmppath}/%{name}-%{version}-root
+BuildArch:	noarch
+# Module Build
+BuildRequires:	perl
+BuildRequires:	perl(CPAN::Meta)
+BuildRequires:	perl(CPAN::Meta::Prereqs)
+BuildRequires:	perl(File::Basename)
+BuildRequires:	perl(Module::Build)
+BuildRequires:	perl(utf8)
+# Module Runtime
+BuildRequires:	perl(Config)
+BuildRequires:	perl(Exporter)
+BuildRequires:	perl(ExtUtils::MakeMaker)
+BuildRequires:	perl(File::Spec)
+BuildRequires:	perl(parent)
+BuildRequires:	perl(strict)
+BuildRequires:	perl(warnings)
+# Test Suite
+BuildRequires:	perl(File::Temp)
+BuildRequires:	perl(Test::More) >= 0.98
+# Runtime
+Requires:	perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
+
+%description
+Devel::CheckBin is a perl module that checks whether a particular command is
+available.
+
+%prep
+%setup -q -n Devel-CheckBin-%{version}
+
+%build
+perl Build.PL --installdirs=vendor
+./Build
+
+%install
+./Build install --destdir=%{buildroot} --create_packlist=0
+
+%check
+./Build test
+
+%files
+%license LICENSE
+%doc Changes README.md
+%{perl_vendorlib}/Devel/
+%{_mandir}/man3/Devel::CheckBin.3*
+
+%changelog
+* Sat Nov 22 2014 Ryoichi INAGAKI <ryo1@toki.waseda.jp> - 0.02-4
+- Initial build for Vine Linux
+- built with perl 5.16.3
+
+* Thu Aug 28 2014 Jitka Plesnikova <jplesnik@redhat.com> - 0.02-3
+- Perl 5.20 rebuild
+
+* Fri Aug 15 2014 Paul Howarth <paul@city-fan.org> - 0.02-2
+- Sanitize for Fedora submission
+
+* Fri Aug 15 2014 Paul Howarth <paul@city-fan.org> - 0.02-1
+- Initial RPM version

+ 11 - 3
p/perl-FileHandle-Fmode/perl-FileHandle-Fmode-vl.spec

@@ -1,15 +1,19 @@
 Name:           perl-FileHandle-Fmode
-Version:        0.09
+Version:        0.14
 Release:        1%{?_dist_release}
 Summary:        FileHandle::Fmode Perl module
 License:        GPL+ or Artistic
 Group:          Development/Libraries
 URL:            http://search.cpan.org/dist/FileHandle-Fmode/
 Source0:        http://www.cpan.org/modules/by-module/FileHandle/FileHandle-Fmode-%{version}.tar.gz
-BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
-Requires:       perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
+BuildRoot:      %{_tmppath}/%{name}-%{version}-root
 BuildRequires:  perl(ExtUtils::MakeMaker)
+BuildRequires:  perl(Test::Pod)
 BuildRequires:  dos2unix
+Requires:       perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
+
+Vendor:         Project Vine
+Distribution:   Vine Linux
 
 %description
 Determine whether a filehandle is opened for reading, writing, or both.
@@ -48,6 +52,10 @@ rm -rf %{buildroot}
 %{_mandir}/man3/*
 
 %changelog
+* Sat Nov 22 2014 Ryoichi INAGAKI <ryo1@toki.waseda.jp> - 0.14-1
+- updated to 0.14
+- built with perl 5.16.3
+
 * Thu Mar 08 2012 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 0.09-1
 - initial build for Vine Linux
 

+ 10 - 2
p/perl-FreezeThaw/perl-FreezeThaw-vl.spec

@@ -1,6 +1,6 @@
 Name:           perl-FreezeThaw
 Version:        0.5001
-Release:        1%{?_dist_release}
+Release:        2%{?_dist_release}
 Summary:        Convert Perl structures to strings and back
 
 Group:          Development/Libraries
@@ -10,7 +10,11 @@ Source0:        http://www.cpan.org/authors/id/I/IL/ILYAZ/modules/FreezeThaw-%{v
 BuildRoot:      %{_tmppath}/%{name}-%{version}-root
 
 BuildArch:      noarch
-BuildRequires:  perl >= 5.8.6
+BuildRequires:  perl(ExtUtils::MakeMaker)
+Requires:       perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
+
+Vendor:         Project Vine
+Distribution:   Vine Linux
 
 %description
 Converts data to/from stringified form, appropriate for
@@ -44,6 +48,10 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*.3pm*
 
 %changelog
+* Sat Nov 22 2014 Ryoichi INAGAKI <ryo1@toki.waseda.jp> - 0.5001-2
+- rebuilt with perl 5.16.3
+- added Vendor and Distribution tag
+
 * Sat Apr 30 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.5001-1
 - update to 0.5001
 

+ 9 - 5
p/perl-Sub-Exporter/perl-Sub-Exporter-vl.spec

@@ -1,23 +1,23 @@
 Name:		perl-Sub-Exporter
-Version:	0.982
+Version:	0.987
 Release:	1%{?_dist_release}
 Summary:	Sophisticated exporter for custom-built routines
 License:	GPL+ or Artistic
 Group:		Development/Libraries
 URL:		http://search.cpan.org/dist/Sub-Exporter/
 Source0:	http://search.cpan.org/CPAN/authors/id/R/RJ/RJBS/Sub-Exporter-%{version}.tar.gz
-BuildRoot:	%{_tmppath}/%{name}-%{version}-%{release}-root-%(id -nu)
+BuildRoot:	%{_tmppath}/%{name}-%{version}-root
 BuildArch:	noarch
 # Build
-BuildRequires:	perl(ExtUtils::MakeMaker)
+BuildRequires:	perl(ExtUtils::MakeMaker) >= 6.30
 # Module
 BuildRequires:	perl(Carp)
-BuildRequires:	perl(Data::OptList) >= 0.1
+BuildRequires:	perl(Data::OptList) >= 0.100
 BuildRequires:	perl(Package::Generator)
 BuildRequires:	perl(Params::Util) >= 0.14
 BuildRequires:	perl(Sub::Install) >= 0.92
 # Test suite
-BuildRequires:	perl(Test::More)
+BuildRequires:	perl(Test::More) >= 0.96
 # Runtime
 Requires:	perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
 Requires:	perl(Package::Generator)
@@ -66,6 +66,10 @@ rm -rf %{buildroot}
 %{_mandir}/man3/Sub::Exporter::Util.3pm*
 
 %changelog
+* Sat Nov 22 2014 Ryoichi INAGAKI <ryo1@toki.waseda.jp> - 0.987-1
+- updated to 0.987
+- built with perl 5.16.3
+
 * Mon Mar 05 2012 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 0.982-1
 - initial build for Vine Linux
 

+ 6 - 2
p/perl-Sub-Identify/perl-Sub-Identify-vl.spec

@@ -1,12 +1,12 @@
 Name:		perl-Sub-Identify
-Version:	0.04
+Version:	0.08
 Release:	1%{?_dist_release}
 Summary:	Retrieve names of code references
 License:	GPL+ or Artistic
 Group:		Development/Libraries
 URL:		http://search.cpan.org/dist/Sub-Identify/
 Source0:	http://search.cpan.org/CPAN/authors/id/R/RG/RGARCIA/Sub-Identify-%{version}.tar.gz
-BuildRoot:	%{_tmppath}/%{name}-%{version}-%{release}-root-%(id -nu)
+BuildRoot:	%{_tmppath}/%{name}-%{version}-root
 BuildRequires:	perl(Exporter)
 BuildRequires:	perl(ExtUtils::MakeMaker)
 BuildRequires:	perl(Test::More)
@@ -51,6 +51,10 @@ rm -rf %{buildroot}
 %{_mandir}/man3/Sub::Identify.3pm*
 
 %changelog
+* Sat Nov 22 2014 Ryoichi INAGAKI <ryo1@toki.waseda.jp> - 0.08-1
+- updated to 0.08
+- built with perl 5.16.3
+
 * Thu Mar 08 2012 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 0.04-1
 - initial build for Vine Linux
 

+ 11 - 8
p/perl-Sub-Name/perl-Sub-Name-vl.spec

@@ -2,21 +2,22 @@
 %global rpm49 %(rpm --version | perl -pi -e 's/^.* (\\d+)\\.(\\d+).*/sprintf("%d.%03d",$1,$2) ge 4.009 ? 1 : 0/e')
 
 Name:		perl-Sub-Name
-Version:	0.05
+Version:	0.12
 Release:	1%{?_dist_release}
 Summary:	Name - or rename - a sub
 License:	GPL+ or Artistic
 Group:		Development/Libraries
 URL:		http://search.cpan.org/dist/Sub-Name/
 Source0:	http://search.cpan.org/CPAN/authors/id/F/FL/FLORA/Sub-Name-%{version}.tar.gz
-Patch0:		Sub-Name-0.05-cpan50524.patch
-BuildRoot:	%{_tmppath}/%{name}-%{version}-%{release}-root-%(id -nu)
+
+BuildRoot:	%{_tmppath}/%{name}-%{version}-root
 BuildRequires:	perl(base)
+BuildRequires:	perl(Devel::CheckBin)
 BuildRequires:	perl(DynaLoader)
-BuildRequires:	perl(Exporter)
+BuildRequires:	perl(Exporter) >= 5.57
 BuildRequires:	perl(ExtUtils::MakeMaker)
 BuildRequires:	perl(strict)
-BuildRequires:	perl(Test::More)
+BuildRequires:	perl(Test::More) >= 0.88
 BuildRequires:	perl(warnings)
 Requires:	perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
 %if ! %{rpm49}
@@ -37,9 +38,6 @@ by the new name (without some deep magic).
 %prep
 %setup -q -n Sub-Name-%{version}
 
-# Copy the contents of the %%DB::sub entry if it exists (CPAN RT#50524)
-%patch0 -p1
-
 %build
 perl Makefile.PL INSTALLDIRS=vendor optimize="%{optflags}"
 make %{?_smp_mflags}
@@ -66,6 +64,11 @@ rm -rf %{buildroot}
 %{_mandir}/man3/Sub::Name.3pm*
 
 %changelog
+* Sat Nov 22 2014 Ryoichi INAGAKI <ryo1@toki.waseda.jp> - 0.12-1
+- updated to 0.12
+- added BR: perl(Devel::CheckBin)
+- built with perl 5.16.3
+
 * Mon Mar 05 2012 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 0.05-1
 - initial build for Vine Linux