Browse Source

* new packages

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

+ 151 - 0
p/perl-Config-Any/perl-Config-Any-vl.spec

@@ -0,0 +1,151 @@
+Name:           perl-Config-Any
+Summary:        Load configuration from different file formats, transparently
+Version:        0.23
+Release:        1%{?_dist_release}
+License:        GPL+ or Artistic
+Group:          Development/Libraries
+Source0:        http://search.cpan.org/CPAN/authors/id/B/BR/BRICAS/Config-Any-%{version}.tar.gz 
+URL:            http://search.cpan.org/dist/Config-Any/
+BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
+Requires:       perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
+BuildArch:      noarch
+
+BuildRequires:  perl(Config::General)
+BuildRequires:  perl(Config::Tiny)
+BuildRequires:  perl(ExtUtils::MakeMaker) >= 6.42
+BuildRequires:  perl(JSON::XS)
+BuildRequires:  perl(Module::Build)
+BuildRequires:  perl(Module::Pluggable) >= 3.01
+BuildRequires:  perl(Scalar::Util)
+BuildRequires:  perl(Test::More)
+BuildRequires:  perl(Test::Pod)
+BuildRequires:  perl(Test::Pod::Coverage)
+BuildRequires:  perl(version)
+BuildRequires:  perl(XML::LibXML)
+BuildRequires:  perl(XML::Simple)
+BuildRequires:  perl(YAML::XS)
+
+Requires:       perl(Config::General)
+Requires:       perl(Config::Tiny)
+Requires:       perl(JSON::XS)
+Requires:       perl(Module::Pluggable) >= 3.01
+Requires:       perl(XML::Simple)
+Requires:       perl(YAML::XS)
+
+
+%{?perl_default_filter}
+%{?perl_default_subpackage_tests}
+
+%description
+Config::Any provides a facility for Perl applications and libraries to
+load configuration data from multiple different file formats. It supports
+XML, YAML, JSON, Apache-style configuration, Windows INI files, and even
+Perl code.
+
+%prep
+%setup -q -n Config-Any-%{version}
+
+%build
+%{__perl} Makefile.PL INSTALLDIRS=vendor
+make %{?_smp_mflags}
+
+%install
+rm -rf %{buildroot}
+
+make pure_install DESTDIR=%{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,-)
+# conf/ for examples of different config types
+%doc Changes README
+%{perl_vendorlib}/*
+%{_mandir}/man3/*
+
+%changelog
+* Fri Mar 09 2012 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 0.23-1
+- initial build for Vine Linux
+
+* Fri Jan 13 2012 Robin Lee <cheeselee@fedoraproject.org> - 0.23-1
+- Update to 0.23
+- BR: add perl(Test::Pod::Coverage)
+
+* Wed Jul 20 2011 Petr Sabata <contyk@redhat.com> - 0.20-4
+- Perl mass rebuild
+
+* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.20-3
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
+
+* Wed Dec 15 2010 Marcela Maslanova <mmaslano@redhat.com> - 0.20-2
+- 661697 rebuild for fixing problems with vendorach/lib
+
+* Fri Aug 27 2010 Iain Arnell <iarnell@gmail.com> 0.20-1
+- update to latest upstream
+
+* Fri Apr 30 2010 Marcela Maslanova <mmaslano@redhat.com> - 0.19-2
+- Mass rebuild with perl-5.12.0
+
+* Mon Mar 01 2010 Chris Weyl <cweyl@alumni.drew.edu> 0.19-1
+- update by Fedora::App::MaintainerTools 0.004
+- PERL_INSTALL_ROOT => DESTDIR
+- added a new br on perl(ExtUtils::MakeMaker) (version 6.42)
+- dropped old BR on perl(JSON::Syck)
+- added manual BR on perl(JSON::XS)
+- added a new req on perl(Module::Pluggable) (version 3.01)
+- dropped old requires on perl(JSON::Syck)
+- added manual requires on perl(JSON::XS)
+
+* Mon Jan 11 2010 Iain Arnell <iarnell@gmail.com> 0.18-1
+- update to latest upstream version
+- prefer YAML::XS over YAML::Syck
+
+* Fri Dec  4 2009 Stepan Kasal <skasal@redhat.com> - 0.17-4
+- rebuild against perl 5.10.1
+
+* Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.17-3
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
+
+* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.17-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
+
+* Sun Feb 22 2009 Chris Weyl <cweyl@alumni.drew.edu> 0.17-1
+- update to 0.17
+
+* Sat Dec 06 2008 Chris Weyl <cweyl@alumni.drew.edu> 0.16-1
+- update to 0.16
+
+* Thu Sep 25 2008 Chris Weyl <cweyl@alumni.drew.edu> 0.14-1
+- update to 0.14
+- add XML::LibXML to br's
+
+* Wed May 21 2008 Chris Weyl <cweyl@alumni.drew.edu> 0.12-1
+- update to 0.12
+
+* Fri Feb  8 2008 Tom "spot" Callaway <tcallawa@redhat.com> 0.08-2
+- rebuild for new perl
+
+* Tue Oct 23 2007 Chris Weyl <cweyl@alumni.drew.edu> 0.08-1
+- update to 0.08
+- license tag update: GPL -> GPL+
+- Module::Build -> Module::Install
+
+* Fri May 04 2007 Chris Weyl <cweyl@alumni.drew.edu> 0.07-4
+- bump
+
+* Fri May 04 2007 Chris Weyl <cweyl@alumni.drew.edu> 0.07-3
+- add entirety of t/ to %%doc
+
+* Tue Apr 10 2007 Chris Weyl <cweyl@alumni.drew.edu> 0.07-2
+- Additional requires not documented added
+
+* Tue Apr 10 2007 Chris Weyl <cweyl@alumni.drew.edu> 0.07-1
+- Specfile autogenerated by cpanspec 1.70.

+ 160 - 0
p/perl-IPC-Run/perl-IPC-Run-vl.spec

@@ -0,0 +1,160 @@
+Name:           perl-IPC-Run
+Version:        0.89
+Release:        1%{?_dist_release}
+Summary:        Perl module for interacting with child processes
+License:        GPL+ or Artistic
+Group:          Development/Libraries
+URL:            http://search.cpan.org/dist/IPC-Run/
+Source0:        http://search.cpan.org/CPAN/authors/id/T/TO/TODDR/IPC-Run-%{version}.tar.gz
+BuildArch:      noarch
+BuildRequires:  perl(ExtUtils::MakeMaker)
+BuildRequires:  perl(IO::Pty) >= 1.00
+BuildRequires:  perl(Test::More) >= 0.47
+Requires:       perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
+
+%description
+IPC::Run allows you run and interact with child processes using files,
+pipes, and pseudo-ttys. Both system()-style and scripted usages are
+supported and may be mixed. Likewise, functional and OO API styles are
+both supported and may be mixed.
+Various redirection operators reminiscent of those seen on common Unix
+and DOS command lines are provided.
+
+%prep
+%setup -q -n IPC-Run-%{version}
+chmod 644 lib/IPC/*.pm lib/IPC/Run/*.pm Changes eg/*
+for file in eg/run_daemon abuse/timers abuse/blocking_debug_with_sub_coprocess ; do
+    %{__perl} -pi -e 's,^#!.*/perl,%{__perl}, if ($. == 1)' "$file"
+done
+
+%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}/*
+
+rm -f %{buildroot}%{perl_vendorlib}/IPC/Run/Win32*.pm
+rm -f %{buildroot}%{_mandir}/man3/IPC::Run::Win32*.3*
+
+%check
+# test doesn't work in this mock with tty
+make test || :
+
+%clean
+rm -rf %{buildroot}
+
+%files
+%defattr(-,root,root,-)
+%doc Changes LICENSE README TODO
+%doc abuse/ eg/
+%{perl_vendorlib}/*
+%{_mandir}/man3/*
+
+%changelog
+* Fri Mar 09 2012 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 0.89-1
+- initial build for Vine Linux
+
+* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.89-6
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
+
+* Fri Jun 24 2011 Marcela Mašláňová <mmaslano@redhat.com> - 0.89-5
+- Perl mass rebuild
+
+* Fri Jun 24 2011 Marcela Mašláňová <mmaslano@redhat.com> - 0.89-4
+- Perl mass rebuild
+
+* Thu Jun 23 2011 Marcela Mašláňová <mmaslano@redhat.com> - 0.89-3
+- Perl mass rebuild
+
+* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.89-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
+
+* Fri Oct 08 2010 Iain Arnell <iarnell@epo.org> 0.89-1
+- update to latest upstream version
+- clean up spec for modern rpmbuild
+
+* Sun May 02 2010 Marcela Maslanova <mmaslano@redhat.com> - 0.84-3
+- Mass rebuild with perl-5.12.0
+
+* Mon Dec  7 2009 Stepan Kasal <skasal@redhat.com> - 0.84-2
+- rebuild against perl 5.10.1
+
+* Wed Sep 02 2009 Steven Pritchard <steve@kspei.com> 0.84-1
+- Update to 0.84.
+- Drop IPCRUNDEBUG from "make test" (bug fixed long ago).
+
+* Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.82-3
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
+
+* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.82-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
+
+* Fri Jan 16 2009 Steven Pritchard <steve@kspei.com> 0.82-1
+- Update to 0.82.
+- Use fixperms macro instead of our own chmod incantation.
+- Fix Source0 URL.
+- BR Test::More.
+- Include LICENSE, README, and abuse/ in docs.
+- Cleanup to more closely resemble cpanspec output.
+
+* Wed Feb 27 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 0.80-5
+- Rebuild for perl 5.10 (again)
+
+* Mon Jan 28 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 0.80-4
+- rebuild for new perl
+
+* Tue Apr 17 2007 Ville Skyttä <ville.skytta at iki.fi> - 0.80-3
+- BuildRequire perl(ExtUtils::MakeMaker).
+
+* Wed Aug 30 2006 Ville Skyttä <ville.skytta at iki.fi> - 0.80-2
+- Fix order of arguments to find(1).
+
+* Thu May 11 2006 Ville Skyttä <ville.skytta at iki.fi> - 0.80-1
+- 0.80, fine tune build dependencies.
+
+* Tue Jan 17 2006 Ville Skyttä <ville.skytta at iki.fi> - 0.79-3
+- Rebuild, cosmetic cleanups.
+
+* Sun Apr 10 2005 Ville Skyttä <ville.skytta at iki.fi> - 0.79-2
+- Exclude Win32 specific modules.
+- Include more docs.
+- Skip tests if /dev/pts doesn't exist.
+
+* Sat Apr  2 2005 Ville Skyttä <ville.skytta at iki.fi> - 0.79-1
+- 0.79.
+
+* Sat Apr  2 2005 Ville Skyttä <ville.skytta at iki.fi> - 0.78-2
+- Sync with fedora-rpmdevtools' Perl spec template.
+- Improve dependency filtering script.
+
+* Sun Mar 14 2004 Ville Skyttä <ville.skytta at iki.fi> - 0:0.78-0.fdr.1
+- Update to 0.78.
+
+* Sun Feb  1 2004 Ville Skyttä <ville.skytta at iki.fi> - 0:0.77-0.fdr.4
+- Reduce directory ownership bloat.
+
+* Fri Nov 21 2003 Ville Skyttä <ville.skytta at iki.fi> - 0:0.77-0.fdr.3
+- BuildRequire perl-IO-Tty for better test coverage.
+
+* Sat Oct 11 2003 Ville Skyttä <ville.skytta at iki.fi> - 0:0.77-0.fdr.2
+- Fix typo in dependency filtering scriptlet.
+
+* Sat Sep 27 2003 Ville Skyttä <ville.skytta at iki.fi> - 0:0.77-0.fdr.1
+- Update to 0.77.
+
+* Fri Sep  5 2003 Ville Skyttä <ville.skytta at iki.fi> - 0:0.75-0.fdr.3
+- Avoid Win32-specific dependencies.
+- Use PERL_INSTALL_ROOT.
+
+* Sun Aug 31 2003 Ville Skyttä <ville.skytta at iki.fi> - 0:0.75-0.fdr.2
+- Install into vendor dirs.
+
+* Thu Jun 19 2003 Ville Skyttä <ville.skytta at iki.fi> - 0:0.75-0.fdr.1
+- First build.

+ 64 - 0
p/perl-Log-Dispatch-Configurator-Any/perl-Log-Dispatch-Configurator-Any-vl.spec

@@ -0,0 +1,64 @@
+%define real_name Log-Dispatch-Configurator-Any
+
+Summary:        Perl module that implements Log4j
+Name:           perl-%{real_name}
+Version:        1.110690
+Release:        1%{?_dist_release}
+License:        GPL+ or Artistic
+Group:          Development/Libraries
+Source0:        http://search.cpan.org/CPAN/authors/id/M/MI/MIYAGAWA/%{real_name}-%{version}.tar.gz
+URL:            http://search.cpan.org/dist/Log-Dispatch-Config/
+BuildArch:      noarch
+
+BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root
+
+BuildRequires:  perl(AppConfig) >= 1.52
+BuildRequires:  perl(ExtUtils::MakeMaker)
+BuildRequires:  perl(File::Temp) >= 0.12
+BuildRequires:  perl(IO::Scalar)
+BuildRequires:  perl(Log::Dispatch) >= 2
+BuildRequires:  perl(Test::More) >= 0.32
+Requires:       perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
+Requires:       perl(AppConfig) >= 1.52
+Requires:       perl(File::Temp) >= 0.12
+Requires:       perl(IO::Scalar)
+Requires:       perl(Log::Dispatch) >= 2
+Requires:       perl(Test::More) >= 0.32
+
+Vendor:         Project Vine
+Distribution:   Vine Linux
+Packager:       shaolin
+
+%description
+Log-Dispatch-Config is a Perl module that implements Log4j.
+
+%prep
+%setup -q -n %{real_name}-%{version}
+
+%build
+perl Makefile.PL INSTALLDIRS=vendor OPTIMIZE="%{optflags}"
+make %{?_smp_mflags}
+
+%install
+rm -rf %{buildroot}
+make pure_install DESTDIR=%{buildroot}
+find %{buildroot} -type f -name .packlist -exec rm -f {} ';'
+find %{buildroot} -depth -type d -exec rmdir {} ';' 2>/dev/null
+%{_fixperms} %{buildroot}
+
+%clean 
+rm -rf %{buildroot}
+
+%check
+make test
+
+%files
+%defattr(-, root, root, 0755)
+%doc Changes MANIFEST META.yml README
+%doc %{_mandir}/man3/*
+%dir %{perl_vendorlib}/Log/Dispatch/Configurator
+%{perl_vendorlib}/Log/Dispatch/Configurator/*.pm
+
+%changelog
+* Fri Mar 09 2012 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 1.110690-1
+- initial build for Vine Linux

+ 218 - 0
p/perl-Module-Install/perl-Module-Install-vl.spec

@@ -0,0 +1,218 @@
+Name:           perl-Module-Install
+Version:        1.04
+Release:        1%{?_dist_release}
+Summary:        Standalone, extensible Perl module installer
+License:        GPL+ or Artistic
+Group:          Development/Libraries
+URL:            http://search.cpan.org/dist/Module-Install/
+Source0:        http://www.cpan.org/authors/id/A/AD/ADAMK/Module-Install-%{version}.tar.gz
+BuildArch:      noarch
+
+# Note, Makefile.PL is going to complain about having lower versions of
+# certain modules than is supported. (Especially under F-10.) However, 
+# all tests pass and AFAICT everything works just fine in normal usage.
+
+BuildRequires:  perl(Archive::Tar) >= 1.44
+BuildRequires:  perl(CPAN)
+BuildRequires:  perl(Devel::PPPort)
+BuildRequires:  perl(ExtUtils::Install) >= 1.52
+BuildRequires:  perl(ExtUtils::MakeMaker)
+BuildRequires:  perl(ExtUtils::ParseXS) >= 2.19
+BuildRequires:  perl(File::Remove) >= 1.42
+BuildRequires:  perl(File::Spec)
+BuildRequires:  perl(JSON) >= 2.14
+BuildRequires:  perl(LWP::UserAgent) >= 5.812
+BuildRequires:  perl(Module::Build) >= 0.29
+BuildRequires:  perl(Module::CoreList) >= 2.17
+BuildRequires:  perl(Module::ScanDeps) >= 0.89
+BuildRequires:  perl(PAR::Dist) >= 0.29
+BuildRequires:  perl(Parse::CPAN::Meta) >= 1.39
+BuildRequires:  perl(Test::CPAN::Meta) >= 0.07
+BuildRequires:  perl(Test::Harness) >= 3.13
+BuildRequires:  perl(Test::MinimumVersion)
+BuildRequires:  perl(Test::More)
+BuildRequires:  perl(Test::Pod)
+BuildRequires:  perl(YAML::Tiny) >= 1.38
+Requires:       perl(Archive::Tar)
+Requires:       perl(ExtUtils::ParseXS)
+Requires:       perl(Module::Build)
+Requires:       perl(Module::ScanDeps)
+Requires:       perl(PAR::Dist) >= 0.29
+Requires:       perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
+
+Vendor:         Project Vine
+Distribution:   Vine Linux
+Packager:       shaolin
+
+%description
+Module::Install is a package for writing installers for CPAN (or CPAN-like)
+distributions that are clean, simple, minimalist, act in a strictly correct
+manner with ExtUtils::MakeMaker, and will run on any Perl installation
+version 5.005 or newer.
+
+%prep
+%setup -q -n Module-Install-%{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}/blib/lib/auto/share/dist/Module-Install/dist_file.txt
+%{_fixperms} %{buildroot}/*
+find %{buildroot}%{perl_vendorlib} -type f -perm +100 -exec chmod a-x {} \;
+
+%check
+make test AUTOMATED_TESTING=1
+
+%files
+%doc Changes LICENSE README
+%{perl_vendorlib}/*
+%{_mandir}/man3/*
+
+%changelog
+* Fri Mar 09 2012 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 1.04-1
+- initial build for Vine Linux
+
+* Thu Jan 12 2012 Iain Arnell <iarnell@gmail.com> 1.04-1
+- update to latest upstream version
+
+* Tue Jul 19 2011 Petr Sabata <contyk@redhat.com> - 1.01-2
+- Perl mass rebuild
+
+* Sat May 14 2011 Iain Arnell <iarnell@gmail.com> 1.01-1
+- update to latest upstream version
+- clean up spec for modern rpmbuild
+
+* Thu Mar 10 2011 Steven Pritchard <steve@kspei.com> 1.00-1
+- Update to 1.00.
+- Update build dependencies:
+  + Archive::Tar >= 1.44
+  + ExtUtils::Install >= 1.52
+  + ExtUtils::ParseXS >= 2.19
+  + JSON >= 2.14
+  + LWP::UserAgent >= 5.812
+  + Module::Build >= 0.29
+  + Module::CoreList >= 2.17
+  + Module::ScanDeps >= 0.89
+- Update description (pulled from module).
+
+* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.95-3
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
+
+* Mon Dec 20 2010 Marcela Maslanova <mmaslano@redhat.com> - 0.95-2
+- 661697 rebuild for fixing problems with vendorach/lib
+
+* Mon May 03 2010 Marcela Maslanova <mmaslano@redhat.com> - 0.95-1
+- Mass rebuild with perl-5.12.0 & update
+
+* Thu Feb 25 2010 Marcela Mašláňová <mmaslano@redhat.com> - 0.91-4
+- change to DESTDIR
+- add README
+- dist_file.txt wasn't packaged -> removed, it's needed only for test of build
+
+* Mon Dec  7 2009 Stepan Kasal <skasal@redhat.com> - 0.91-3
+- rebuild against perl 5.10.1
+
+* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.91-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
+
+* Sun Jun 14 2009 Chris Weyl <cweyl@alumni.drew.edu> 0.91-1
+- update to 0.91
+- add br on Parse::CPAN::Meta: 1.39
+
+* Sat May 23 2009 Chris Weyl <cweyl@alumni.drew.edu> 0.90-1
+- update to 0.90 
+- add br on JSON, Test::Harness (3.13)
+- update br on YAML::Tiny (1.38)
+
+* Mon May 11 2009 Chris Weyl <cweyl@alumni.drew.edu> 0.87-1
+- update to 0.87
+
+* Sun Apr 26 2009 Chris Weyl <cweyl@alumni.drew.edu> 0.85-1
+- update to 0.85
+- add BR on File::Spec
+
+* Thu Apr 09 2009 Chris Weyl <cweyl@alumni.drew.edu> 0.82-1
+- update to 0.82
+
+* Sun Mar 22 2009 Chris Weyl <cweyl@alumni.drew.edu> 0.80-1
+- update to 0.80 
+- remove 03_autoinstall.t swizzle (now self-skipped; see RT29448)
+
+* Fri Mar 13 2009 Tom "spot" Callaway <tcallawa@redhat.com> - 0.79-1
+- update to 0.79
+
+* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.77-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
+
+* Thu Dec 04 2008 Chris Weyl <cweyl@alumni.drew.edu> 0.77-1
+- update to 0.77
+
+* Wed Jun 04 2008 Steven Pritchard <steve@kspei.com> 0.75-1
+- Update to 0.75.
+
+* Sat May 31 2008 Steven Pritchard <steve@kspei.com> 0.74-1
+- Update to 0.74.
+- Update versioned dependencies for File::Remove, Module::ScanDeps,
+  PAR::Dist, and YAML::Tiny.
+- BR Test::CPAN::Meta.
+
+* Fri May 16 2008 Steven Pritchard <steve@kspei.com> 0.73-1
+- Update to 0.73.
+- BR File::Remove.
+- Drop zero-length README.
+
+* Wed Mar  5 2008 Tom "spot" Callaway <tcallawa@redhat.com> 0.68-3
+- disable broken test (upstream bug present)
+- add Test::MinimumVersion as BR
+
+* Wed Mar  5 2008 Tom "spot" Callaway <tcallawa@redhat.com> 0.68-2
+- rebuild for new perl
+
+* Mon Jan 28 2008 Steven Pritchard <steve@kspei.com> 0.68-1
+- Update to 0.68.
+- Explicitly require Archive::Tar and ExtUtils::ParseXS.
+
+* Sun Dec 30 2007 Ralf Corsépius <rc040203@freenet.de> - 0.67-2
+- BR: perl(Test::More), perl(CPAN) (BZ 419631).
+- Remove TEST_POD (Unused).
+- Add AUTOMATED_TESTING.
+- BR: perl(Test::Pod) for AUTOMATED_TESTING.
+- Adjust License-tag.
+
+* Fri May 18 2007 Steven Pritchard <steve@kspei.com> 0.67-1
+- Update to 0.67.
+- BR Archive::Tar, ExtUtils::ParseXS, and YAML::Tiny.
+- Add a couple more docs.
+
+* Tue Mar 13 2007 Steven Pritchard <steve@kspei.com> 0.65-1
+- Update to 0.65.
+- Use fixperms macro instead of our own chmod incantation.
+- BR ExtUtils::MakeMaker.
+
+* Sun Sep 17 2006 Steven Pritchard <steve@kspei.com> 0.64-2
+- Rebuild.
+
+* Fri Aug 25 2006 Steven Pritchard <steve@kspei.com> 0.64-1
+- Update to 0.64.
+- Fix find option order.
+
+* Thu Jun 08 2006 Steven Pritchard <steve@kspei.com> 0.63-1
+- Update to 0.63.
+
+* Mon May 08 2006 Steven Pritchard <steve@kspei.com> 0.62-2
+- Fix Source0 URL.
+
+* Sat May 06 2006 Steven Pritchard <steve@kspei.com> 0.62-1
+- Update to 0.62.
+- Drop executable bit from everything in vendor_perl to make rpmlint happy.
+
+* Thu Mar 23 2006 Steven Pritchard <steve@kspei.com> 0.61-1
+- Specfile autogenerated by cpanspec 1.63.
+- Drop explicit BR: perl.
+- Turn on TEST_POD.

+ 220 - 0
p/perl-Module-ScanDeps/perl-Module-ScanDeps-vl.spec

@@ -0,0 +1,220 @@
+Name:           perl-Module-ScanDeps
+Summary:        Recursively scan Perl code for dependencies
+Version:        1.08
+Release:        1%{?_dist_release}
+License:        GPL+ or Artistic
+Group:          Development/Libraries
+Source0:        http://search.cpan.org/CPAN/authors/id/R/RS/RSCHUPP/Module-ScanDeps-%{version}.tar.gz 
+URL:            http://search.cpan.org/dist/Module-ScanDeps/
+Requires:       perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
+BuildArch:      noarch
+
+BuildRequires:  perl(Config)
+BuildRequires:  perl(Cwd)
+BuildRequires:  perl(DynaLoader)
+BuildRequires:  perl(Encode)
+BuildRequires:  perl(Exporter)
+BuildRequires:  perl(ExtUtils::MakeMaker) >= 6.42
+BuildRequires:  perl(File::Basename)
+BuildRequires:  perl(File::Find)
+BuildRequires:  perl(File::Path)
+BuildRequires:  perl(File::Spec)
+BuildRequires:  perl(File::Temp)
+BuildRequires:  perl(FileHandle)
+BuildRequires:  perl(Module::Build::ModuleInfo)
+BuildRequires:  perl(Module::Pluggable)
+BuildRequires:  perl(Test::More)
+BuildRequires:  perl(Test::Pod)
+BuildRequires:  perl(constant)
+BuildRequires:  perl(prefork)
+BuildRequires:  perl(vars)
+BuildRequires:  perl(version)
+
+Requires:       perl(DynaLoader)
+Requires:       perl(Encode)
+Requires:       perl(Exporter)
+Requires:       perl(File::Find)
+Requires:       perl(File::Spec)
+Requires:       perl(File::Temp)
+Requires:       perl(Module::Build::ModuleInfo)
+Requires:       perl(version)
+
+
+%{?perl_default_filter}
+%{?perl_default_subpackage_tests}
+
+%description
+This module scans potential modules used by perl programs and returns a
+hash reference.  Its keys are the module names as appears in %INC (e.g.
+Test/More.pm).  The values are hash references.
+
+%prep
+%setup -q -n Module-ScanDeps-%{version}
+
+%build
+%{__perl} Makefile.PL INSTALLDIRS=vendor
+make %{?_smp_mflags}
+
+%install
+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
+
+%files
+%doc AUTHORS Changes README
+%{_bindir}/*
+%{perl_vendorlib}/*
+%{_mandir}/man1/*
+%{_mandir}/man3/*
+
+%changelog
+* Fri Mar 09 2012 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 1.08-1
+- initial build for Vine Linux
+
+* Thu Feb 23 2012 Petr Šabata <contyk@redhat.com> - 1.08-1
+- 1.08 bump
+
+* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.07-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
+
+* Wed Nov 30 2011 Petr Šabata <contyk@redhat.com> - 1.07-1
+- 1.07 bump
+
+* Tue Nov 29 2011 Petr Šabata <contyk@redhat.com> - 1.06-1
+- 1.06 bump
+
+* Thu Nov 03 2011 Petr Sabata <contyk@redhat.com> - 1.05-1
+- 1.05 bump
+
+* Mon Jul 25 2011 Petr Sabata <contyk@redhat.com> - 1.04-1
+- 1.04 bump
+
+* Wed Jul 20 2011 Petr Sabata <contyk@redhat.com> - 1.02-2
+- Perl mass rebuild
+
+* Thu May  5 2011 Petr sabata <psabata@redhat.com> - 1.02-1
+- 1.02 bump (rhbz#691369)
+- Removing now obsolete Buildroot and defattr
+- Correcting BRs/Rs
+
+* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.98-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
+
+* Tue Nov 23 2010 Marcela Mašláňová <mmaslano@redhat.com> 0.98-1
+- update by Fedora::App::MaintainerTools 0.006
+- updating to latest GA CPAN version (0.98)
+- added a new br on perl(File::Spec) (version 0)
+- added a new br on perl(File::Temp) (version 0)
+- added a new req on perl(File::Spec) (version 0)
+- added a new req on perl(File::Temp) (version 0)
+- added a new req on perl(Module::Build::ModuleInfo) (version 0)
+- added a new req on perl(version) (version 0)
+
+* Fri Jun 11 2010 Petr Sabata <psabata@redhat.com> - 0.97-1
+- Update to the latest version
+
+* Mon May 03 2010 Marcela Maslanova <mmaslano@redhat.com> - 0.95-3
+- Mass rebuild with perl-5.12.0
+
+* Mon Dec  7 2009 Stepan Kasal <skasal@redhat.com> - 0.95-2
+- rebuild against perl 5.10.1
+
+* Sun Sep 27 2009 Chris Weyl <cweyl@alumni.drew.edu> 0.95-1
+- auto-update to 0.95 (by cpan-spec-update 0.01)
+- add perl_default_filter (pro forma)
+- altered br on perl(ExtUtils::MakeMaker) (0 => 6.42)
+
+* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.89-3
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
+
+* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.89-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
+
+* Mon Dec 15 2008 Steven Pritchard <steve@kspei.com> 0.89-1
+- Update to 0.89.
+- BR Test::More and prefork.
+- Improve description.
+
+* Fri May 16 2008 Steven Pritchard <steve@kspei.com> 0.84-1
+- Update to 0.84.
+
+* Wed Mar  5 2008 Tom "spot" Callaway <tcallawa@redhat.com> 0.82-2
+- rebuild for new perl
+
+* Mon Jan 28 2008 Steven Pritchard <steve@kspei.com> 0.82-1
+- Update to 0.82.
+- BR version.
+
+* Thu Jan 24 2008 Steven Pritchard <steve@kspei.com> 0.81-1
+- Update to 0.81.
+- Use fixperms macro instead of our own chmod incantation.
+- Reformat to match cpanspec output.
+- BR ExtUtils::MakeMaker.
+
+* Wed Jun 27 2007 Jose Pedro Oliveira <jpo at di.uminho.pt> - 0.75-1
+- Update to 0.75.
+
+* Sat May  5 2007 Jose Pedro Oliveira <jpo at di.uminho.pt> - 0.74-1
+- Update to 0.74.
+
+* Sat Mar 31 2007 Jose Pedro Oliveira <jpo at di.uminho.pt> - 0.73-1
+- Update to 0.73.
+
+* Sun Feb  4 2007 Jose Pedro Oliveira <jpo at di.uminho.pt> - 0.72-1
+- Update to 0.72.
+- Added perl(Module::Pluggable) to the build requirements list (t/2-pluggable.t).
+
+* Fri Jan  5 2007 Jose Pedro Oliveira <jpo at di.uminho.pt> - 0.71-1
+- Update to 0.71.
+
+* Wed Nov 22 2006 Jose Pedro Oliveira <jpo at di.uminho.pt> - 0.70-1
+- Update to 0.70.
+
+* Sat Nov 11 2006 Jose Pedro Oliveira <jpo at di.uminho.pt> - 0.69-1
+- Update to 0.69.
+
+* Sat Oct 28 2006 Jose Pedro Oliveira <jpo at di.uminho.pt> - 0.68-1
+- Update to 0.68.
+
+* Sun Sep 24 2006 Jose Pedro Oliveira <jpo at di.uminho.pt> - 0.66-1
+- Update to 0.66.
+
+* Sat Sep 23 2006 Jose Pedro Oliveira <jpo at di.uminho.pt> - 0.64-1
+- Update to 0.64.
+
+* Mon Sep  4 2006 Jose Pedro Oliveira <jpo at di.uminho.pt> - 0.63-1
+- Update to 0.63.
+
+* Sun Jul 16 2006 Jose Pedro Oliveira <jpo at di.uminho.pt> - 0.62-1
+- Update to 0.62.
+
+* Sat Jul  1 2006 Jose Pedro Oliveira <jpo at di.uminho.pt> - 0.61-1
+- Update to 0.61.
+
+* Wed May 24 2006 Jose Pedro Oliveira <jpo at di.uminho.pt> - 0.60-1
+- Update to 0.60.
+
+* Sun May  7 2006 Jose Pedro Oliveira <jpo at di.uminho.pt> - 0.59-2
+- Source URL corrected (failed to detect the maintainer change).
+
+* Wed May  3 2006 Jose Pedro Oliveira <jpo at di.uminho.pt> - 0.59-1
+- Update to 0.59.
+
+* Thu Mar 16 2006 Jose Pedro Oliveira <jpo at di.uminho.pt> - 0.57-1
+- Update to 0.57.
+
+* Tue Feb 28 2006 Jose Pedro Oliveira <jpo at di.uminho.pt> - 0.56-1
+- Update to 0.56.
+
+* Tue Jan 10 2006 Jose Pedro Oliveira <jpo at di.uminho.pt> - 0.53-1
+- Update to 0.53.
+
+* Fri Sep  9 2005 Jose Pedro Oliveira <jpo at di.uminho.pt> - 0.51-1
+- Update to Fedora Extras Template.
+
+* Sat Jan 08 2005 Jose Pedro Oliveira <jpo at di.uminho.pt> - 0:0.51-0.fdr.1
+- First build.

+ 476 - 0
p/perl-Moose/perl-Moose-vl.spec

@@ -0,0 +1,476 @@
+Name:           perl-Moose
+Summary:        Complete modern object system for Perl 5
+Version:        2.0402
+Release:        1%{?_dist_release}
+License:        GPL+ or Artistic
+Group:          Development/Libraries
+Source0:        http://search.cpan.org/CPAN/authors/id/D/DO/DOY/Moose-%{version}.tar.gz
+URL:            http://search.cpan.org/dist/
+Requires:       perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
+
+# Class::MOP is now included in Moose itself
+Obsoletes:      perl-Class-MOP <= 1.12-2.fc15
+Obsoletes:      perl-Class-MOP-tests <= 1.12-2.fc15
+
+# configure
+BuildRequires:  perl(Dist::CheckConflicts) >= 0.02
+BuildRequires:  perl(ExtUtils::MakeMaker) >= 6.30
+
+# develop
+BuildRequires:  perl(Algorithm::C3)
+BuildRequires:  perl(DBM::Deep) >= 1.0003
+BuildRequires:  perl(DateTime)
+BuildRequires:  perl(DateTime::Calendar::Mayan)
+BuildRequires:  perl(File::Find::Rule)
+BuildRequires:  perl(HTTP::Headers)
+BuildRequires:  perl(IO::File)
+BuildRequires:  perl(IO::String)
+BuildRequires:  perl(Locale::US)
+BuildRequires:  perl(Module::Info)
+BuildRequires:  perl(PadWalker)
+BuildRequires:  perl(Params::Coerce)
+BuildRequires:  perl(Regexp::Common)
+BuildRequires:  perl(Test::Deep)
+# author test - we almost certainly don't want this in mock!
+#BuildRequires:  perl(Test::DependentModules) >= 0.12
+BuildRequires:  perl(Test::Inline)
+BuildRequires:  perl(Test::LeakTrace)
+BuildRequires:  perl(Test::Output)
+BuildRequires:  perl(Test::Spelling)
+BuildRequires:  perl(URI)
+# not decalared in META.json
+BuildRequires:  perl(Carp)
+BuildRequires:  perl(Carp::Heavy)
+BuildRequires:  perl(SUPER) >= 1.10
+
+# test
+BuildRequires:  perl(Test::Fatal) >= 0.001
+BuildRequires:  perl(Test::More) >= 0.88
+BuildRequires:  perl(Test::Requires) >= 0.05
+BuildRequires:  perl(Declare::Constraints::Simple)
+BuildRequires:  perl(Module::Refresh)
+
+# runtime
+BuildRequires:  perl(Class::Load) >= 0.09
+BuildRequires:  perl(Class::Load::XS) >= 0.01
+BuildRequires:  perl(Data::OptList) >= 0.107
+BuildRequires:  perl(Devel::GlobalDestruction)
+BuildRequires:  perl(Eval::Closure) >= 0.04
+BuildRequires:  perl(List::MoreUtils) >= 0.28
+BuildRequires:  perl(MRO::Compat) >= 0.05
+BuildRequires:  perl(Package::DeprecationManager) >= 0.11
+BuildRequires:  perl(Package::Stash) >= 0.32
+BuildRequires:  perl(Package::Stash::XS) >= 0.24
+BuildRequires:  perl(Params::Util) >= 1.00
+BuildRequires:  perl(Scalar::Util) >= 1.19
+BuildRequires:  perl(Sub::Exporter) >= 0.980
+BuildRequires:  perl(Sub::Name) >= 0.05
+BuildRequires:  perl(Task::Weaken)
+BuildRequires:  perl(Try::Tiny) >= 0.02
+
+
+Requires:       perl(Data::OptList) >= 0.107
+Requires:       perl(Dist::CheckConflicts) >= 0.02
+
+# hidden from PAUSE
+Provides:       perl(Moose::Conflicts)
+Provides:       perl(Moose::Error::Util)
+
+# virtual provides for perl-Any-Moose
+Provides:       perl(Any-Moose) = %{version}
+
+# obsolete/provide old tests subpackage
+# can be removed during F19 development cycle
+Obsoletes:      %{name}-tests < 2.0401-2
+Provides:       %{name}-tests = %{version}-%{release}
+
+%{?perl_default_filter}
+
+%description
+Moose is an extension of the Perl 5 object system.
+
+The main goal of Moose is to make Perl 5 Object Oriented programming easier,
+more consistent and less tedious. With Moose you can to think more about what
+you want to do and less about the mechanics of OOP.
+
+Additionally, Moose is built on top of Class::MOP, which is a metaclass system
+for Perl 5. This means that Moose not only makes building normal Perl 5
+objects better, but it provides the power of metaclass programming as well.
+Moose is different from other Perl 5 object systems because it is not a new
+system, but instead an extension of the existing one.
+
+%package -n perl-Test-Moose
+License:    GPL+ or Artistic
+Group:      Development/Libraries
+Summary:    Test functions for Moose specific features
+Requires:   %{name} = %{version}-%{release}
+
+%description -n perl-Test-Moose
+This module provides some useful test functions for Moose based classes.
+It is an experimental first release, so comments and suggestions are
+very welcome.
+
+%prep
+%setup -q -n Moose-%{version}
+
+# silence rpmlint warnings
+find benchmarks/ -type f -name '*.pl' -print0 \
+  | xargs -0 sed -i '1s,#!.*perl,#!%{__perl},'
+find t/ -type f -name '*.t' -print0 \
+  | xargs -0 sed -i '1s,#!.*perl,#!%{__perl},'
+
+%build
+%{__perl} Makefile.PL INSTALLDIRS=vendor OPTIMIZE="%{optflags}"
+make %{?_smp_mflags}
+
+%install
+make pure_install DESTDIR=%{buildroot}
+find %{buildroot} -type f -name .packlist -exec rm -f {} ';'
+find %{buildroot} -type f -name '*.bs' -a -size 0 -exec rm -f {} ';'
+find %{buildroot} -depth -type d -exec rmdir {} 2>/dev/null ';'
+
+%{_fixperms} %{buildroot}/*
+
+chmod -x benchmarks/*.pl benchmarks/cmop/*.pl
+
+%check
+make test
+
+
+%files
+%doc Changes Changes.Class-MOP LICENSE README TODO doap.rdf
+%doc t/ benchmarks/
+%{perl_vendorarch}/*
+%exclude %dir %{perl_vendorarch}/auto/
+%{_mandir}/man3/*
+%{_bindir}/moose-outdated
+%exclude %{perl_vendorarch}/Test
+%exclude %{_mandir}/man3/Test::Moose*
+
+%files -n perl-Test-Moose
+%{perl_vendorarch}/Test
+%{_mandir}/man3/Test::Moose*
+
+%changelog
+* Thu Mar 08 2012 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 2.0402-1
+- initial build for Vine Linux
+
+* Sun Feb 05 2012 Iain Arnell <iarnell@gmail.com> 2.0402-1
+- update to latest upstream version
+
+* Sun Jan 22 2012 Iain Arnell <iarnell@gmail.com> 2.0401-2
+- drop tests subpackage; move tests to main package documentation
+
+* Thu Jan 12 2012 Iain Arnell <iarnell@gmail.com> 2.0401-1
+- update to latest upstream version
+
+* Sun Oct 09 2011 Iain Arnell <iarnell@gmail.com> 2.0205-2
+- add virtual provides for perl-Any-Moose
+
+* Sat Oct 01 2011 Iain Arnell <iarnell@gmail.com> 2.0205-1
+- update to latest upstream version
+
+* Tue Sep 13 2011 Petr Pisar <ppisar@redhat.com> - 2.0204-2
+- Build-require Carp because Carp dual-lives now (bug #736768)
+
+* Sun Aug 28 2011 Iain Arnell <iarnell@gmail.com> 2.0204-1
+- update to latest upstream version
+- additional build/test dependencies for more testing
+
+* Sat Jul 30 2011 Iain Arnell <iarnell@gmail.com> 2.0202-1
+- update to latest upstream version
+
+* Wed Jul 20 2011 Petr Sabata <contyk@redhat.com> - 2.0010-2
+- Perl mass rebuild
+
+* Sat Jun 25 2011 Iain Arnell <iarnell@gmail.com> 2.0010-1
+- update to latest upstream version
+
+* Fri May 20 2011 Iain Arnell <iarnell@gmail.com> 2.0007-1
+- update to latest upstream version
+
+* Tue May 03 2011 Iain Arnell <iarnell@gmail.com> 2.0002-2
+- drop unnecessary BR perl(Devel::PartialDump)
+
+* Tue May 03 2011 Iain Arnell <iarnell@gmail.com> 2.0002-1
+- update to latest upstream version
+
+* Tue Apr 26 2011 Iain Arnell <iarnell@gmail.com> 2.0001-3
+- add explicit perl(Dist::CheckConflicts) requirement
+
+* Sat Apr 23 2011 Iain Arnell <iarnell@gmail.com> 2.0001-2
+- obsolete perl-Class-MOP-tests too
+
+* Sat Apr 23 2011 Iain Arnell <iarnell@gmail.com> 2.0001-1
+- update to latest upstream version
+
+* Fri Apr 22 2011 Iain Arnell <iarnell@gmail.com> 2.00-1
+- update to latest upstream version
+- regenerate BuildRequires from META.json
+- obsoletes perl-Class-MOP (now incluced in Moose itself)
+- clean up spec for modern rpmbuild
+
+* Sun Apr 03 2011 Iain Arnell <iarnell@gmail.com> 1.25-1
+- update to latest upstream version
+
+* Sat Mar 05 2011 Iain Arnell <iarnell@gmail.com> 1.24-1
+- update to latest upstream version
+
+* Thu Feb 17 2011 Iain Arnell <iarnell@gmail.com> 1.23-1
+- update to latest upstream version
+
+* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.21-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
+
+* Mon Jan 24 2011 Iain Arnell <iarnell@gmail.com> 1.21-1
+- update to latest upstream version
+- update R/BR perl(Class::MOP) >= 1.11
+- update R/BR perl(Params::Util) >= 1.00
+- update R/BR perl(Package::DeprecationManager) >= 0.10
+- new BR perl(Test::Fatal) >= 0.001
+- drop old BR perl(Test::Exception)
+
+* Sat Oct 09 2010 Iain Arnell <iarnell@gmail.com> 1.15-1
+- update to latest upstream version
+- update BR perl(Class::MOP) >= 1.09
+- new BR perl(Params:Util)
+
+* Tue Oct 05 2010 Iain Arnell <iarnell@gmail.com> 1.14-1
+- update to latest upstream version
+- update BR perl(Class:MOP) >= 1.05
+- new BR perl(Test::Requires) >= 0.05
+- new R/BR perl(Package::DeprecationManager) >= 0.04
+
+* Sat Jul 03 2010 Iain Arnell <iarnell@gmail.com> 1.08-1
+- update to latest upstream
+- update BR perl(Class:MOP) >= 1.02
+
+* Fri May 07 2010 Marcela Maslanova <mmaslano@redhat.com> - 1.03-1
+- update
+
+* Mon May 03 2010 Marcela Maslanova <mmaslano@redhat.com> - 1.02-1
+- Mass rebuild with perl-5.12.0
+- switch off tests for meantime, needs Class::ISA
+
+* Fri Apr 30 2010 Marclea Mašláňová <mmaslano@redhat.com> 1.01-1
+- update
+
+* Fri Mar 12 2010 Chris Weyl <cweyl@alumni.drew.edu> 0.99-1
+- update by Fedora::App::MaintainerTools 0.006
+- updating to latest GA CPAN version (0.99)
+
+* Sat Feb 20 2010 Chris Weyl <cweyl@alumni.drew.edu> 0.98-1
+- update by Fedora::App::MaintainerTools 0.003
+
+* Sat Feb 13 2010 Chris Weyl <cweyl@alumni.drew.edu> 0.96-1
+- auto-update by cpan-spec-update 0.002
+- dropped old BR on perl(UNIVERSAL::require)
+- dropped old BR on perl(Sub::Install)
+- dropped old BR on perl(Test::LongString)
+- dropped old BR on perl(Filter::Simple)
+
+* Fri Feb 05 2010 Chris Weyl <cweyl@alumni.drew.edu> 0.94-3
+- PERL_INSTALL_ROOT => DESTDIR
+- add perl_default_subpackage_tests
+- properly exclude vendorarch/auto/ directory
+- add br on DateTime::Calendar::Mayan
+
+* Wed Jan 20 2010 Chris Weyl <cweyl@alumni.drew.edu> 0.94-2
+- we're not noarch anymore :)
+
+* Wed Jan 20 2010 Chris Weyl <cweyl@alumni.drew.edu> 0.94-1
+- auto-update to 0.94 (by cpan-spec-update 0.01)
+- altered br on perl(Class::MOP) (0.94 => 0.98)
+- altered req on perl(Class::MOP) (0.94 => 0.98)
+
+* Mon Dec  7 2009 Stepan Kasal <skasal@redhat.com> - 0.92-2
+- rebuild against perl 5.10.1
+
+* Sun Sep 27 2009 Chris Weyl <cweyl@alumni.drew.edu> 0.92-1
+- auto-update to 0.92 (by cpan-spec-update 0.01)
+- altered br on perl(Class::MOP) (0.93 => 0.94)
+- altered req on perl(Class::MOP) (0.93 => 0.94)
+
+* Fri Sep 18 2009 Chris Weyl <cweyl@alumni.drew.edu> 0.90-1
+- switch filtering systems...
+- auto-update to 0.90 (by cpan-spec-update 0.01)
+- altered br on perl(Class::MOP) (0.92 => 0.93)
+- altered br on perl(Test::More) (0.77 => 0.88)
+- added a new br on perl(Try::Tiny) (version 0.02)
+- altered req on perl(Class::MOP) (0.92 => 0.93)
+- added a new req on perl(Try::Tiny) (version 0.02)
+
+* Wed Aug 19 2009 Chris Weyl <cweyl@alumni.drew.edu> 0.89-1
+- auto-update to 0.89 (by cpan-spec-update 0.01)
+- altered br on perl(Class::MOP) (0.89 => 0.92)
+- altered req on perl(Class::MOP) (0.89 => 0.92)
+
+* Mon Jul 27 2009 Chris Weyl <cweyl@alumni.drew.edu> 0.88-1
+- auto-update to 0.88 (by cpan-spec-update 0.01)
+- altered br on perl(Class::MOP) (0.85 => 0.89)
+- altered br on perl(Sub::Exporter) (0.972 => 0.980)
+- added a new req on perl(Carp) (version 0)
+- added a new req on perl(Class::MOP) (version 0.89)
+- added a new req on perl(Data::OptList) (version 0)
+- added a new req on perl(List::MoreUtils) (version 0.12)
+- added a new req on perl(Scalar::Util) (version 1.19)
+- added a new req on perl(Sub::Exporter) (version 0.980)
+- added a new req on perl(Sub::Name) (version 0)
+- added a new req on perl(Task::Weaken) (version 0)
+
+* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.81-3
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
+
+* Mon Jun 22 2009 Chris Weyl <cweyl@alumni.drew.edu> 0.81-2
+- split off Test::Moose
+
+* Tue Jun 09 2009 Chris Weyl <cweyl@alumni.drew.edu> 0.81-1
+- auto-update to 0.81 (by cpan-spec-update 0.01)
+- altered br on perl(Class::MOP) (0.83 => 0.85)
+
+* Sun Jun 07 2009 Chris Weyl <cweyl@alumni.drew.edu> 0.80-1
+- auto-update to 0.80 (by cpan-spec-update 0.01)
+
+* Tue May 19 2009 Chris Weyl <cweyl@alumni.drew.edu> 0.79-1
+- auto-update to 0.79 (by cpan-spec-update 0.01)
+
+* Wed May 13 2009 Chris Weyl <cweyl@alumni.drew.edu> 0.78-1
+- auto-update to 0.78 (by cpan-spec-update 0.01)
+- altered br on perl(Test::Exception) (0.21 => 0.27)
+- altered br on perl(ExtUtils::MakeMaker) (0 => 6.42)
+- added a new br on perl(Sub::Name) (version 0)
+- altered br on perl(Class::MOP) (0.81 => 0.83)
+- altered br on perl(Sub::Exporter) (0.954 => 0.972)
+- added a new br on perl(Carp) (version 0)
+
+* Mon May 04 2009 Chris Weyl <cweyl@alumni.drew.edu> 0.74-2
+- switch filtering to a cleaner system
+
+* Sat Apr 18 2009 Chris Weyl <cweyl@alumni.drew.edu> 0.74-1
+- update to 0.74
+
+* Wed Apr 01 2009 Chris Weyl <cweyl@alumni.drew.edu> 0.73-1
+- update to 0.73
+
+* Sun Mar 08 2009 Chris Weyl <cweyl@alumni.drew.edu> 0.72-1
+- update to 0.72
+
+* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.71-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
+
+* Sun Feb 22 2009 Chris Weyl <cweyl@alumni.drew.edu> 0.71-1
+- update to 0.71
+
+* Sun Jan 04 2009 Chris Weyl <cweyl@alumni.drew.edu> 0.64-1
+- update to 0.64
+
+* Sun Dec 28 2008 Chris Weyl <cweyl@alumni.drew.edu> 0.63-1
+- update to 0.63
+- bump br versions on Moose, List::MoreUtils
+
+* Sat Dec 06 2008 Chris Weyl <cweyl@alumni.drew.edu> 0.62-1
+- update to 0.62
+- new Task::Weaken and Class::MOP requirements
+
+* Sat Nov 08 2008 Chris Weyl <cweyl@alumni.drew.edu> 0.61-4
+- aaaand drop them again, as it was really perl-Class-MOP's issue.
+
+* Sat Nov 08 2008 Chris Weyl <cweyl@alumni.drew.edu> 0.61-3
+- same with Devel::GlobalDestruction (same RT as below)
+
+* Sat Nov 08 2008 Chris Weyl <cweyl@alumni.drew.edu> 0.61-2
+- add Sub::Name as a build dep (RT#40772)
+
+* Sat Nov 08 2008 Chris Weyl <cweyl@alumni.drew.edu> 0.61-1
+- update to 0.61
+- update BR's
+
+* Sat Sep 06 2008 Chris Weyl <cweyl@alumni.drew.edu> 0.57-2
+- add additional test BR's
+
+* Sat Sep 06 2008 Chris Weyl <cweyl@alumni.drew.edu> 0.57-1
+- update to 0.57
+
+* Fri Jul 18 2008 Chris Weyl <cweyl@alumni.drew.edu> 0.54-1
+- update to 0.54
+
+* Sat Jun 28 2008 Chris Weyl <cweyl@alumni.drew.edu> 0.51-1
+- update to 0.51
+
+* Tue Jun 17 2008 Chris Weyl <cweyl@alumni.drew.edu> 0.50-1
+- update to 0.50
+- drop obviated test patch
+
+* Wed May 28 2008 Chris Weyl <cweyl@alumni.drew.edu> 0.44-2
+- bump
+
+* Wed May 21 2008 Chris Weyl <cweyl@alumni.drew.edu> 0.44-1
+- update to 0.44
+
+* Wed Mar 05 2008 Tom "spot" Callaway <tcallawa@redhat.com> 0.33-3
+- rebuild for new perl
+
+* Mon Jan 07 2008 Chris Weyl <cweyl@alumni.drew.edu> 0.33-2
+- remove *.orig files from t/ (BZ#427754)
+
+* Sat Dec 15 2007 Chris Weyl <cweyl@alumni.drew.edu> 0.33-1
+- update to 0.33
+
+* Wed Dec 05 2007 Chris Weyl <cweyl@alumni.drew.edu> 0.32-1
+- update to 0.32
+
+* Sun Nov 25 2007 Chris Weyl <cweyl@alumni.drew.edu> 0.30-1
+- update to 0.30
+
+* Sat Nov 17 2007 Chris Weyl <cweyl@alumni.drew.edu> 0.29-1
+- update to 0.29
+- refactor to Module::Install
+
+* Sun Oct 14 2007 Chris Weyl <cweyl@alumni.drew.edu> 0.26-1
+- udpate to 0.26
+
+* Sat Aug 11 2007 Chris Weyl <cweyl@alumni.drew.edu> 0.24-1
+- update to 0.24
+- license tag: GPL -> GPL+
+- patch t/202_...t to write to a tmpdir rather than .
+
+* Thu May 31 2007 Chris Weyl <cweyl@alumni.drew.edu> 0.22-1
+- update to 0.22
+
+* Fri May 04 2007 Chris Weyl <cweyl@alumni.drew.edu> 0.21-1
+- update to 0.21
+
+* Tue May 01 2007 Chris Weyl <cweyl@alumni.drew.edu> 0.20-2
+- add t/ to %%doc
+- add br for optional test #7
+
+* Sat Apr 07 2007 Chris Weyl <cweyl@alumni.drew.edu> 0.20-1
+- update to 0.20
+- add additional BR's for new optional tests
+
+* Fri Mar 23 2007 Chris Weyl <cweyl@alumni.drew.edu> 0.18-1
+- Sub::Name only needed as a br for Moose < 0.18
+- update to 0.18
+
+* Thu Nov 16 2006 Chris Weyl <cweyl@alumni.drew.edu> 0.17-2
+- add IO::File and IO::String to br's for testing
+
+* Thu Nov 16 2006 Chris Weyl <cweyl@alumni.drew.edu> 0.17-1
+- update to 0.17
+
+* Mon Nov 06 2006 Chris Weyl <cweyl@alumni.drew.edu> 0.15-1
+- update to 0.15
+
+* Tue Oct 10 2006 Chris Weyl <cweyl@alumni.drew.edu> 0.14-1
+- update to 0.14
+- drop some cruft from the specfile
+- make %%description a touch more verbose :)
+
+* Tue Oct 03 2006 Chris Weyl <cweyl@alumni.drew.edu> 0.13-1
+- update to 0.13
+
+* Fri Sep 08 2006 Chris Weyl <cweyl@alumni.drew.edu> 0.12-2
+- bump
+
+* Sat Sep 02 2006 Chris Weyl <cweyl@alumni.drew.edu> 0.12-1
+- Specfile autogenerated by cpanspec 1.69.1.

+ 56 - 0
p/perl-Net-Appliance-Session/perl-Net-Appliance-Session-vl.spec

@@ -0,0 +1,56 @@
+Name:           perl-Net-Appliance-Session
+Summary:        Run command-line sessions to network appliances
+Version:        3.120560
+Release:        1%{?_dist_release}
+License:        Artistic or GPL+
+Group:          Development/Libraries
+Source:         http://search.cpan.org/CPAN/authors/id/O/OL/OLIVER/Net-Appliance-Session-%{version}.tar.gz
+URL:            http://search.cpan.org/dist/Net-Appliance-Session/
+BuildArch:      noarch
+
+BuildRequires:  perl(ExtUtils::MakeMaker)
+BuildRequires:  perl(Test::More) >= 0.88
+BuildRequires:  perl(strict)
+BuildRequires:  perl(warnings)
+
+Requires:       perl(Moose)
+Requires:       perl(Moose::Role)
+Requires:       perl(Net::CLI::Interact)
+Requires:       perl(overload)
+Requires:       perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
+
+%description
+Run command-line sessions to network appliances
+
+%prep
+%setup -q -n Net-Appliance-Session-%{version}
+
+%build
+%{__perl} Makefile.PL INSTALLDIRS="vendor"
+%{__make} %{?_smp_mflags}
+
+%install
+%{__rm} -rf %{buildroot}
+%{__make} pure_install DESTDIR=%{buildroot}
+
+### Clean up buildroot
+find %{buildroot} -name .packlist -exec %{__rm} {} \;
+
+### Clean up docs
+find examples/ -type f -exec %{__chmod} a-x {} \;
+
+%clean
+%{__rm} -rf %{buildroot}
+
+%check
+%{__make} test
+
+%files
+%defattr(-, root, root, -)
+%doc Changes LICENSE MANIFEST META.* README examples/
+%{perl_vendorlib}/*
+%{_mandir}/man3/*
+
+%changelog
+* Fri Mar 09 2012 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 1.36-1
+- initial build for Vine Linux

+ 68 - 0
p/perl-Net-CLI-Interact/perl-Net-CLI-Interact-vl.spec

@@ -0,0 +1,68 @@
+%define real_name Net-CLI-Interact
+
+Summary:        Toolkit for CLI Automation
+Name:           perl-%{real_name}
+Version:        1.120670
+Release:        1%{?_dist_release}
+License:        GPL+ or Artistic
+Group:          Development/Libraries
+Source0:        http://search.cpan.org/CPAN/authors/id/O/OL/OLIVER/%{real_name}-%{version}.tar.gz
+URL:            http://search.cpan.org/dist/%{real_name}
+BuildArch:      noarch
+
+BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root
+
+BuildRequires:  perl(Class::MOP)
+BuildRequires:  perl(Class::MOP::Class)
+BuildRequires:  perl(File::Basename)
+BuildRequires:  perl(FileHandle)
+BuildRequires:  perl(IPC::Run)
+BuildRequires:  perl(List::Util)
+BuildRequires:  perl(Log::Dispatch::Config)
+BuildRequires:  perl(Log::Dispatch::Configurator::Any)
+BuildRequires:  perl(Moose)
+BuildRequires:  perl(Moose::Role)
+BuildRequires:  perl(Moose::Util::TypeConstraints)
+BuildRequires:  perl(Net::Telnet)
+BuildRequires:  perl(POSIX)
+BuildRequires:  perl(Path::Class)
+BuildRequires:  perl(Time::HiRes)
+Requires:       perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
+
+Vendor:         Project Vine
+Distribution:   Vine Linux
+Packager:       shaolin
+
+%description
+This module exists to support developers of applications
+and libraries which must interact with a command line interface.
+
+%prep
+%setup -q -n %{real_name}-%{version}
+
+%build
+perl Makefile.PL INSTALLDIRS=vendor OPTIMIZE="%{optflags}"
+make %{?_smp_mflags}
+
+%install
+rm -rf %{buildroot}
+make pure_install DESTDIR=%{buildroot}
+find %{buildroot} -type f -name .packlist -exec rm -f {} ';'
+find %{buildroot} -depth -type d -exec rmdir {} ';' 2>/dev/null
+%{_fixperms} %{buildroot}
+
+%clean 
+rm -rf %{buildroot}
+
+%check
+make test
+
+%files
+%defattr(-, root, root, 0755)
+%doc Changes MANIFEST META.yml README
+%doc %{_mandir}/man3/*
+%{perl_vendorlib}/*
+
+%changelog
+* Fri Mar 09 2012 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 1.03-1
+- initial build for Vine Linux

+ 125 - 0
p/perl-Spiffy/perl-Spiffy-vl.spec

@@ -0,0 +1,125 @@
+Name:           perl-Spiffy
+Version:        0.30
+Release:        1%{?_dist_release}
+Summary:        Framework for doing object oriented (OO) programming in Perl
+License:        GPL+ or Artistic
+Group:          Development/Libraries
+URL:            http://search.cpan.org/dist/Spiffy/
+Source0:        http://www.cpan.org/authors/id/I/IN/INGY/Spiffy-%{version}.tar.gz
+BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
+BuildArch:      noarch
+BuildRequires:  perl(ExtUtils::MakeMaker)
+BuildRequires:  perl(Test::More)
+Requires:       perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
+
+%if "%{_dist_release}" <= "vl6"
+# Filter bogus provide of perl(DB) (rpm < 4.9)
+%global provfilt /bin/sh -c "%{__perl_provides} | sed -e '/^perl(DB)$/d'"
+%define __perl_provides %{provfilt}
+%else
+# Equivalent filter for rpm 4.9 onwards
+%global __provides_exclude ^perl\\(DB\\)
+%endif
+
+%description
+"Spiffy" is a framework and methodology for doing object oriented (OO)
+programming in Perl. Spiffy combines the best parts of Exporter.pm,
+base.pm, mixin.pm and SUPER.pm into one magic foundation class. It attempts
+to fix all the nits and warts of traditional Perl OO, in a clean,
+straightforward and (perhaps someday) standard way.
+
+%prep
+%setup -q -n Spiffy-%{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 README
+%{perl_vendorlib}/Spiffy.pm
+%{_mandir}/man3/Spiffy.3pm*
+
+%changelog
+* Fri Mar 09 2012 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 0.30-1
+- initial build for Vine Linux
+
+* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.30-18
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
+
+* Fri Jun 17 2011 Marcela Mašláňová <mmaslano@redhat.com> - 0.30-17
+- Perl mass rebuild
+
+* Tue Apr 19 2011 Paul Howarth <paul@city-fan.org> - 0.30-16
+- Make the provides filter work with rpm 4.9 too
+
+* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.30-15
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
+
+* Wed Dec 22 2010 Marcela Maslanova <mmaslano@redhat.com> - 0.30-14
+- Rebuild to fix problems with vendorarch/lib (#661697)
+
+* Thu May 06 2010 Marcela Maslanova <mmaslano@redhat.com> - 0.30-13
+- Mass rebuild with perl-5.12.0
+
+* Mon Dec  7 2009 Stepan Kasal <skasal@redhat.com> - 0.30-12
+- rebuild against perl 5.10.1
+
+* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.30-11
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
+
+* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.30-10
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
+
+* Sat Feb 02 2008 Tom "spot" Callaway <tcallawa@redhat.com> 0.30-9
+- rebuild for new perl
+
+* Wed Jan 02 2008 Ralf Corsépius <rc040203@freenet.de> 0.30-8
+- Adjust License-tag.
+- BR: perl(Test::More) (BZ 419631).
+
+* Wed Apr 18 2007 Steven Pritchard <steve@kspei.com> 0.30-7
+- Use fixperms macro instead of our own chmod incantation.
+- BR ExtUtils::MakeMaker.
+
+* Mon Sep 04 2006 Steven Pritchard <steve@kspei.com> 0.30-6
+- Rework spec to look more like current cpanspec output.
+
+* Tue Feb 28 2006 Steven Pritchard <steve@kspei.com> 0.30-5
+- Improve filter.
+
+* Mon Feb 27 2006 Steven Pritchard <steve@kspei.com> 0.30-4
+- Drop dummy mixin.pm.
+
+* Mon Feb 27 2006 Steven Pritchard <steve@kspei.com> 0.30-3
+- Filter out Provides: perl(DB).
+
+* Mon Feb 27 2006 Steven Pritchard <steve@kspei.com> 0.30-2
+- Drop explicit Provides: mixin.
+- Add dummy mixin.pm.
+- Improve Summary.
+- Fix Source0.
+
+* Sat Feb 25 2006 Steven Pritchard <steve@kspei.com> 0.30-1
+- Update to 0.30.
+- Drop explicit perl BR.
+
+* Wed Dec 28 2005 Steven Pritchard <steve@kspei.com> 0.24-1
+- Specfile autogenerated.

+ 126 - 0
p/perl-Test-Base/perl-Test-Base-vl.spec

@@ -0,0 +1,126 @@
+Name:           perl-Test-Base
+Version:        0.60
+Release:        1%{?_dist_release}
+Summary:        Data Driven Testing Framework
+License:        GPL+ or Artistic
+Group:          Development/Libraries
+URL:            http://search.cpan.org/dist/Test-Base/
+Source0:        http://www.cpan.org/authors/id/I/IN/INGY/Test-Base-%{version}.tar.gz
+BuildArch:      noarch
+BuildRequires:  perl(ExtUtils::MakeMaker)
+BuildRequires:  perl(Spiffy) >= 0.30
+BuildRequires:  perl(Test::Deep)
+BuildRequires:  perl(Test::More) >= 0.62
+BuildRequires:  perl(Test::Tester)
+BuildRequires:  perl(Text::Diff) >= 0.35
+BuildRequires:  perl(YAML)
+Requires:       perl(Text::Diff) >= 0.35
+Requires:       perl(LWP::Simple)
+Requires:       perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
+
+%description
+Testing is usually the ugly part of Perl module authoring. Perl gives you a
+standard way to run tests with Test::Harness, and basic testing primitives
+with Test::More. After that you are pretty much on your own to develop a
+testing framework and philosophy. Test::More encourages you to make your
+own framework by subclassing Test::Builder, but that is not trivial.
+
+%prep
+%setup -q -n Test-Base-%{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
+%doc Changes README
+%{perl_vendorlib}/*
+%{_mandir}/man3/*
+
+%changelog
+* Fri Mar 09 2012 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 0.60-1
+- initial build for Vine Linux
+
+* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.60-3
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
+
+* Wed Jun 29 2011 Marcela Mašláňová <mmaslano@redhat.com> - 0.60-2
+- Perl mass rebuild
+
+* Sat May 14 2011 Iain Arnell <iarnell@gmail.com> 0.60-1
+- update to latest upstream version
+- clean up spec for modern rpmbuild
+
+* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.59-3
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
+
+* Wed Dec 22 2010 Marcela Maslanova <mmaslano@redhat.com> - 0.59-2
+- 661697 rebuild for fixing problems with vendorach/lib
+
+* Mon Dec 13 2010 Steven Pritchard <steve@kspei.com> 0.59-1
+- Update to 0.59.
+
+* Thu May 06 2010 Marcela Maslanova <mmaslano@redhat.com> - 0.58-4
+- Mass rebuild with perl-5.12.0
+
+* Fri Dec  4 2009 Stepan Kasal <skasal@redhat.com> - 0.58-3
+- rebuild against perl 5.10.1
+
+* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.58-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
+
+* Sun May 17 2009 Steven Pritchard <steve@kspei.com> 0.58-1
+- Update to 0.58.
+- BR Test::Deep and Test::Tester.
+
+* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.55-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
+
+* Wed Dec 10 2008 Steven Pritchard <steve@kspei.com> 0.55-1
+- Update to 0.55.
+- Explicitly BR Test::More >= 0.62.
+- BR YAML.
+
+* Thu Mar 06 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 0.54-3
+- Rebuild for new perl
+
+* Sat Jul 07 2007 Steven Pritchard <steve@kspei.com> 0.54-2
+- BR Test::More.
+
+* Mon Jul 02 2007 Steven Pritchard <steve@kspei.com> 0.54-1
+- Update to 0.54.
+
+* Wed Apr 18 2007 Steven Pritchard <steve@kspei.com> 0.53-2
+- BR ExtUtils::MakeMaker.
+
+* Sat Dec 09 2006 Steven Pritchard <steve@kspei.com> 0.53-1
+- Update to 0.53.
+- Use fixperms macro instead of our own chmod incantation.
+
+* Sat Sep 16 2006 Steven Pritchard <steve@kspei.com> 0.52-2
+- Fix find option order.
+
+* Sat Jul 01 2006 Steven Pritchard <steve@kspei.com> 0.52-1
+- Update to 0.52.
+
+* Mon May 08 2006 Steven Pritchard <steve@kspei.com> 0.50-2
+- Add explicit dependencies for Text::Diff and LWP::Simple.
+
+* Thu May 04 2006 Steven Pritchard <steve@kspei.com> 0.50-1
+- Specfile autogenerated by cpanspec 1.65.
+- Remove explicit BR: perl and Requires: perl(Spiffy).

+ 116 - 0
p/perl-Text-Diff/perl-Text-Diff-vl.spec

@@ -0,0 +1,116 @@
+Name:           perl-Text-Diff
+Version:        1.41
+Release:        1%{?_dist_release}
+Summary:        Perform diffs on files and record sets
+License:        GPL+ or Artistic
+Group:          Development/Libraries
+URL:            http://search.cpan.org/dist/Text-Diff/
+Source0:        http://search.cpan.org/CPAN/authors/id/O/OV/OVID/Text-Diff-%{version}.tar.gz
+BuildArch:      noarch
+BuildRequires:  perl(constant)
+BuildRequires:  perl(Algorithm::Diff)
+BuildRequires:  perl(Carp)
+BuildRequires:  perl(Data::Dumper)
+BuildRequires:  perl(ExtUtils::MakeMaker)
+BuildRequires:  perl(Exporter)
+BuildRequires:  perl(IO::File)
+BuildRequires:  perl(Test)
+BuildRequires:  perl(Test::More)
+Requires:       perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
+
+%{?perl_default_filter}
+
+%description
+Text::Diff provides a basic set of services akin to the GNU diff utility.
+It is not anywhere near as feature complete as GNU diff, but it is better
+integrated with Perl and available on all platforms. It is often faster
+than shelling out to a system's diff executable for small files, and
+generally slower on larger files.
+
+%prep
+%setup -q -n Text-Diff-%{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
+%doc Changes LICENSE README
+%{perl_vendorlib}/*
+%{_mandir}/man3/*
+
+%changelog
+* Fri Mar 09 2012 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 1.41-1
+- initial build for Vine Linux
+
+* Fri Jan 27 2012 Petr Šabata <contyk@redhat.com> - 1.41-1
+- 1.41 bump, spec modernization and cleanup
+- Update Source URL
+
+* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.37-8
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
+
+* Fri Jun 17 2011 Marcela Mašláňová <mmaslano@redhat.com> - 1.37-7
+- Perl mass rebuild
+
+* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.37-6
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
+
+* Thu Dec 23 2010 Marcela Maslanova <mmaslano@redhat.com> - 1.37-5
+- 661697 rebuild for fixing problems with vendorach/lib
+
+* Fri May 07 2010 Marcela Maslanova <mmaslano@redhat.com> - 1.37-4
+- Mass rebuild with perl-5.12.0
+
+* Fri Dec  4 2009 Stepan Kasal <skasal@redhat.com> - 1.37-3
+- rebuild against perl 5.10.1
+
+* Sun Sep 27 2009 Chris Weyl <cweyl@alumni.drew.edu> 1.37-2
+- add Test::More as a BR (rt#50040)
+
+* Sun Sep 27 2009 Chris Weyl <cweyl@alumni.drew.edu> 1.37-1
+- add filtering
+- auto-update to 1.37 (by cpan-spec-update 0.01)
+- altered br on perl(Algorithm::Diff) (0 => 1.19)
+- added a new br on perl(Exporter) (version 0)
+- added a new br on perl(Test) (version 0)
+
+* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.35-8
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
+
+* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.35-7
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
+
+* Wed Feb 27 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 0.35-6
+- Rebuild for perl 5.10 (again)
+
+* Thu Jan 24 2008 Tom "spot" Callaway <tcallawa@redhat.com> 0.35-5
+- rebuild for new perl
+
+* Wed Apr 18 2007 Steven Pritchard <steve@kspei.com> 0.35-4
+- Use fixperms macro instead of our own chmod incantation.
+- BR ExtUtils::MakeMaker.
+
+* Mon Aug 28 2006 Steven Pritchard <steve@kspei.com> 0.35-3
+- Improve Summary, description, and Source0 URL.
+- Fix find option ordering.
+- Don't generate license texts.
+
+* Fri Sep 16 2005 Steven Pritchard <steve@kspei.com> 0.35-2
+- Minor spec cleanup.
+
+* Sat Aug 27 2005 Steven Pritchard <steve@kspei.com> 0.35-1
+- Specfile autogenerated.

+ 117 - 0
p/perl-YAML-LibYAML/perl-YAML-LibYAML-vl.spec

@@ -0,0 +1,117 @@
+Name:           perl-YAML-LibYAML
+Version:        0.38
+Release:        1%{?_dist_release}
+Summary:        Perl YAML Serialization using XS and libyaml
+License:        GPL+ or Artistic
+Group:          Development/Libraries
+URL:            http://search.cpan.org/dist/YAML-LibYAML/
+Source0:        http://search.cpan.org/CPAN/authors/id/I/IN/INGY/YAML-LibYAML-%{version}.tar.gz
+BuildRequires:  perl(B::Deparse)
+BuildRequires:  perl(base)
+BuildRequires:  perl(constant)
+BuildRequires:  perl(Cwd)
+BuildRequires:  perl(Exporter)
+BuildRequires:  perl(ExtUtils::MakeMaker)
+BuildRequires:  perl(File::Find)
+BuildRequires:  perl(File::Path)
+BuildRequires:  perl(File::Spec)
+BuildRequires:  perl(Test::Builder)
+BuildRequires:  perl(Test::Builder::Module)
+BuildRequires:  perl(Test::More)
+# Tests only
+BuildRequires:  perl(Devel::Peek)
+BuildRequires:  perl(File::Path)
+BuildRequires:  perl(Scalar::Util)
+BuildRequires:  perl(Test::Base)
+BuildRequires:  perl(Test::Base::Filter)
+BuildRequires:  perl(Tie::Array)
+BuildRequires:  perl(Tie::Hash)
+Requires:       perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
+
+%{?perl_default_filter}
+
+%description
+Kirill Siminov's "libyaml" is arguably the best YAML
+implementation. The C library is written precisely to the YAML 1.1
+specification. It was originally bound to Python and was later
+bound to Ruby.
+
+%prep
+%setup -q -n YAML-LibYAML-%{version}
+
+%build
+%{__perl} Makefile.PL INSTALLDIRS=perl OPTIMIZE="%{optflags}"
+make %{?_smp_mflags}
+
+%install
+rm -rf %{buildroot}
+make pure_install DESTDIR=%{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
+%doc Changes README
+%{perl_archlib}/auto/*
+%{perl_archlib}/YAML*
+%{_mandir}/man3/*
+
+%changelog
+* Fri Mar 09 2012 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 0.38-1
+- initial build for Vine Linux
+
+* Fri Jan 13 2012 Marcela Mašláňová <mmaslano@redhat.com> - 0.38-2
+- bump to 0.38
+
+* Fri Sep 30 2011 Petr Sabata <contyk@redhat.com> - 0.37-1
+- 0.37 bump
+- Remove defattr
+- Correct BR
+
+* Fri Jun 17 2011 Marcela Mašláňová <mmaslano@redhat.com> - 0.35-2
+- Perl mass rebuild
+
+* Mon Apr 04 2011 Petr Sabata <psabata@redhat.com> - 0.35-1
+- 0.35 bump
+- Removing obsolete buildroot stuff
+
+* Wed Mar 16 2011 Paul Howarth <paul@city-fan.org> - 0.34-4
+- Improve overly-generic package summary
+- README is already UTF-8 encoded in version 0.34 so don't try converting it
+
+* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.34-3
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
+
+* Wed Sep 29 2010 jkeating - 0.34-2
+- Rebuilt for gcc bug 634757
+
+* Fri Sep 23 2010 Marcela Mašláňová <mmaslano@redhat.com> - 0.34-1
+- update
+
+* Thu Jun  3 2010 Marcela Maslanova <mmaslano@redhat.com> - 0.33-1
+- update
+
+* Fri May 07 2010 Marcela Maslanova <mmaslano@redhat.com> - 0.32-6
+- Mass rebuild with perl-5.12.0
+
+* Sat Mar 27 2010 Chris Weyl <cweyl@alumni.drew.edu> - 0.32-5
+- perl_default_filter, PERL_INSTALL_ROOT => DESTDIR
+
+* Mon Dec  7 2009 Stepan Kasal <skasal@redhat.com> - 0.32-4
+- rebuild against perl 5.10.1
+
+* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.32-3
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
+
+* Wed Apr 29 2009 Marcela Mašláňová <mmaslano@redhat.com> 0.32-2
+- add BR
+
+* Wed Apr 29 2009 Marcela Mašláňová <mmaslano@redhat.com> 0.32-1
+- Specfile autogenerated by cpanspec 1.78.