Browse Source

* new packages

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

+ 61 - 0
p/perl-Authen-Krb5-Simple/perl-Authen-Krb5-Simple-vl.spec

@@ -0,0 +1,61 @@
+%define real_name Authen-Krb5-Simple
+
+Summary:        Basic user authentication using Kerberos 5
+Name:           perl-%{real_name}
+Version:        0.43
+Release:        1%{?_dist_release}
+License:        Artistic or GPL+
+Group:          Development/Libraries
+URL:            http://search.cpan.org/dist/Authen-Krb5-Simple/
+
+Source:         http://search.cpan.org/CPAN/authors/id/D/DS/DSTUART/Authen-Krb5-Simple-%{version}.tar.gz
+BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root
+
+BuildRequires:  perl
+BuildRequires:  perl(ExtUtils::MakeMaker)
+BuildRequires:  perl(Test::More)
+Requires:       perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
+
+
+%description
+The Authen::Krb5::Simple module provides a means to authenticate a
+user/password using Kerberos 5 protocol. The module's authenticate function
+takes a username (or user@kerberos_realm) and a password, and authenticates
+that user using the local Kerberos 5 installation. It was initially created to
+allow perl scripts to perform authentication against a Microsoft Active
+Directory (AD) server configured to accept Kerberos client requests.
+
+It is important to note: This module only performs simple authentication. It
+does not get, grant, use, or retain any kerberos tickets. It will check user
+credentials against the Kerberos server (as configured on the local system)
+each time the authenticate method is called.
+
+%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}
+
+%check
+make test
+
+%clean
+rm -rf %{buildroot}
+
+%files
+%defattr(-, root, root, -)
+%doc Changes MANIFEST README 
+%{perl_vendorarch}/*
+%{_mandir}/man3/*
+
+%changelog
+* Sat Mar 10 2012 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 0.43-1
+- initial build for Vine Linux

+ 113 - 0
p/perl-Authen-Krb5/perl-Authen-Krb5-vl.spec

@@ -0,0 +1,113 @@
+Name:           perl-Authen-Krb5
+Version:        1.9
+Release:        1%{?_dist_release}
+Summary:        Krb5 Perl module
+License:        GPL+ or Artistic
+Group:          Development/Libraries
+URL:            http://search.cpan.org/dist/Krb5/
+Source0:        http://www.cpan.org/authors/id/J/JH/JHORWITZ/Krb5-%{version}.tar.gz
+BuildRoot:      %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX)
+BuildRequires:  perl(ExtUtils::MakeMaker) 
+BuildRequires:  krb5-devel
+Requires:       perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
+
+Vendor:         Project Vine
+Distribution:   Vine Linux
+
+%description
+Authen::Krb5 is an object oriented interface to the Kerberos 5 API. Both
+the implementation and documentation are nowhere near complete, and may
+require previous experience with Kerberos 5 programming. Most of the
+functions here are documented in detail in the Kerberos 5 API
+documentation.
+
+%prep
+%setup -q -n Krb5-%{version}
+
+# Fix the references to /usr/local/bin/perl
+sed -i 's|/usr/local/bin/perl|/usr/bin/perl|' \
+  sample_client sample_server simple_client simple_server
+
+%build
+
+# Rewrite the Makefile with our local paths
+mv Makefile.PL Makefile.PL.old
+cat Makefile.PL.old | \
+  sed -e's|/usr/lib|%{_libdir}|' \
+      -e's|/usr/include|%{_includedir}|' \
+  > Makefile.PL
+
+%{__perl} Makefile.PL INSTALLDIRS=vendor OPTIMIZE="%{optflags}"
+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}
+chmod 644 sample_client sample_server simple_client simple_server
+
+%check
+make test
+
+%clean
+rm -rf %{buildroot}
+
+%files
+%defattr(-,root,root,-)
+%doc Changes COPYRIGHT README sample_client sample_server simple_client simple_server TODO
+%{perl_vendorarch}/auto/*
+%{perl_vendorarch}/Authen
+%{_mandir}/man3/*
+
+%changelog
+* Sat Mar 10 2012 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 1.9-1
+- initial build for Vine Linux
+
+* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.9-4
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
+
+* Fri Jun 17 2011 Marcela Mašláňová <mmaslano@redhat.com> - 1.9-3
+- Perl mass rebuild
+
+* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.9-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
+
+* Tue Feb 8 2011 Simon Wilkinson <simon@sxw.org.uk> - 1.9-1
+- 673472 Update to 1.9
+
+* Wed Dec 15 2010 Marcela Maslanova <mmaslano@redhat.com> - 1.7-10
+- 661697 rebuild for fixing problems with vendorach/lib
+
+* Thu Apr 29 2010 Marcela Maslanova <mmaslano@redhat.com> - 1.7-9
+- Mass rebuild with perl-5.12.0
+
+* Mon Dec  7 2009 Stepan Kasal <skasal@redhat.com> - 1.7-8
+- rebuild against perl 5.10.1
+
+* Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.7-7
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
+
+* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.7-6
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
+
+* Thu Mar 06 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 1.7-5
+Rebuild for new perl
+
+* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 1.7-4
+- Autorebuild for GCC 4.3
+
+* Tue Jan 29 2008 Simon Wilkinson <simon@sxw.org.uk> 1.7-3
+- Fix library path, so that libk5crypto is used, and not libcrypto
+
+* Mon Jan 28 2008 Simon Wilkinson <simon@sxw.org.uk> 1.7-2
+- Use sed, rather than a patch to fix references to perl binary 
+  review comment)
+
+* Mon Jan 28 2008 Simon Wilkinson <simon@sxw.org.uk> 1.7-1
+- Specfile autogenerated by cpanspec 1.74.

+ 103 - 0
p/perl-Authen-Radius/perl-Authen-Radius-vl.spec

@@ -0,0 +1,103 @@
+Name:           perl-Authen-Radius
+Version:        0.13
+Release:        1%{?_dist_release}
+Summary:        Perl Authen::Radius modules
+# See LICENSING.txt
+License:        Artistic 2.0
+Group:          Development/Libraries
+URL:            http://search.cpan.org/dist/RadiusPerl/
+Source0:        http://www.cpan.org/modules/by-module/Authen/RadiusPerl-%{version}.tar.gz
+Source1:	LICENSING.txt
+BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
+BuildArch:      noarch
+BuildRequires:  perl(Data::HexDump) >= 0.02
+BuildRequires:  perl(Digest::MD5) >= 2.20, perl(IO) >= 1.12
+Requires:       perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
+
+Vendor:         Project Vine
+Distribution:   Vine Linux
+
+%description
+RadiusPerl is a Perl 5 module (Radius.pm) which allows you to 
+communicate with a Radius server from Perl. You can just authenticate 
+usernames/passwords via Radius, or completely imitate AAA requests and 
+process server response.
+
+%prep
+%setup -q -n Authen-Radius-%{version}
+cp %{SOURCE1} .
+
+%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} -type d -depth -exec rmdir {} 2>/dev/null \;
+
+chmod -R u+rwX,go+rX,go-w %{buildroot}/*
+
+%check
+# Disabled check, as a running Radius-server is needed
+#make test
+
+%clean
+rm -rf %{buildroot}
+
+%files
+%defattr(-,root,root,-)
+%doc Changes README LICENSING.txt
+%{perl_vendorlib}/*
+%{_mandir}/man3/*
+
+%changelog
+* Sat Mar 10 2012 MATSUBAYASHI Kohji <shaolin@vinelinux.org>- 0.13-1
+- initial build for Vine Linux
+
+* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.13-11
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
+
+* Mon Jun 20 2011 Marcela Mašláňová <mmaslano@redhat.com> - 0.13-10
+- Perl mass rebuild
+
+* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.13-9
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
+
+* Wed Dec 15 2010 Marcela Maslanova <mmaslano@redhat.com> - 0.13-8
+- 661697 rebuild for fixing problems with vendorach/lib
+
+* Thu Apr 29 2010 Marcela Maslanova <mmaslano@redhat.com> - 0.13-7
+- Mass rebuild with perl-5.12.0
+
+* Mon Dec  7 2009 Stepan Kasal <skasal@redhat.com> - 0.13-6
+- rebuild against perl 5.10.1
+
+* Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.13-5
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
+
+* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.13-4
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
+
+* Tue Sep  9 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 0.13-3
+- fix license tag (with permission from upstream)
+
+* Thu Feb  7 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 0.13-2
+- rebuild for new perl
+
+* Sat Mar 10 2007 Andreas Thienemann <andreas@bawue.net> - 0.13-1
+- Updated to 0.13
+- Added perl-devel BuildReq
+
+* Fri Sep 08 2006 Andreas Thienemann <andreas@bawue.net> - 0.12-3
+- FE6 Rebuild
+
+* Thu Apr 13 2006 Andreas Thienemann <andreas@bawue.net> 0.12-2
+- Final cleanup for inclusion.
+
+* Wed Mar 29 2006 Andreas Thienemann <andreas@bawue.net> 0.12-1
+- Cleaned up for FE
+- Specfile autogenerated by cpanspec 1.64.

+ 99 - 0
p/perl-Data-HexDump/perl-Data-HexDump-vl.spec

@@ -0,0 +1,99 @@
+Name:           perl-Data-HexDump
+Version:        0.02
+Release:        1%{?_dist_release}
+Summary:        Hexadecial Dumper
+License:        GPL+ or Artistic
+Group:          Development/Libraries
+URL:            http://search.cpan.org/dist/Data-HexDump/
+Source0:        http://www.cpan.org/modules/by-module/Data/Data-HexDump-%{version}.tar.gz
+BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
+BuildArch:      noarch
+BuildRequires:  perl(ExtUtils::MakeMaker)
+Requires:       perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
+
+Vendor:         Project Vine
+Distribution:   Vine Linux
+
+%description
+Dump in hexadecimal the content of a scalar. The result is returned in a
+string. Each line of the result consists of the offset in the source in the
+leftmost column of each line, followed by one or more columns of data from
+the source in hexadecimal. The rightmost column of each line shows the
+printable characters (all others are shown as single dots).
+
+%prep
+%setup -q -n Data-HexDump-%{version}
+
+%build
+%{__perl} Makefile.PL INSTALLDIRS=vendor
+make %{?_smp_mflags}
+
+%install
+rm -rf %{buildroot}
+
+make pure_install PERL_INSTALL_ROOT=%{buildroot}
+# rename binary not to conflict with util-linux
+mv %{buildroot}%{_bindir}/hexdump %{buildroot}%{_bindir}/hexdump.pl
+
+find %{buildroot} -type f -name .packlist -exec rm -f {} \;
+find %{buildroot} -type d -depth -exec rmdir {} 2>/dev/null \;
+
+chmod -R u+rwX,go+rX,go-w %{buildroot}/*
+
+%check
+make test
+
+%clean
+rm -rf %{buildroot}
+
+%files
+%defattr(-,root,root,-)
+%doc README
+%{_bindir}/hexdump.pl
+%{perl_vendorlib}/*
+%{_mandir}/man3/*
+
+%changelog
+* Sat Mar 10 2012 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 0.02-1
+- initial build for Vine Linux
+
+* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.02-12
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
+
+* Fri Jun 17 2011 Marcela Mašláňová <mmaslano@redhat.com> - 0.02-11
+- Perl mass rebuild
+
+* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.02-10
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
+
+* Thu Dec 16 2010 Marcela Maslanova <mmaslano@redhat.com> - 0.02-9
+- 661697 rebuild for fixing problems with vendorach/lib
+
+* Fri Apr 30 2010 Marcela Maslanova <mmaslano@redhat.com> - 0.02-8
+- Mass rebuild with perl-5.12.0
+
+* Mon Dec  7 2009 Stepan Kasal <skasal@redhat.com> - 0.02-7
+- rebuild against perl 5.10.1
+
+* Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.02-6
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
+
+* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.02-5
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
+
+* Thu Feb  7 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 0.02-4
+- rebuild for new perl
+
+* Mon Oct 15 2007 Tom "spot" Callaway <tcallawa@redhat.com> - 0.02-3.1
+- correct license tag
+- add BR: perl(ExtUtils::MakeMaker)
+
+* Fri Sep 08 2006 Andreas Thienemann <andreas@bawue.net> - 0.02-3
+- FE6 Rebuild
+
+* Thu Mar 30 2006 Andreas Thienemann <andreas@bawue.net> 0.02-2
+- Fixed review showstoppers
+
+* Thu Mar 30 2006 Andreas Thienemann <andreas@bawue.net> 0.02-1
+- Cleaned up for FE
+- Specfile autogenerated by cpanspec 1.64.