rpms/perl-IO-Socket-SSL/F-8 .cvsignore, 1.7, 1.8 perl-IO-Socket-SSL.spec, 1.7, 1.8 sources, 1.7, 1.8

Paul Howarth pghmcfc at fedoraproject.org
Tue Nov 18 10:17:04 UTC 2008


Author: pghmcfc

Update of /cvs/pkgs/rpms/perl-IO-Socket-SSL/F-8
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15439

Modified Files:
	.cvsignore perl-IO-Socket-SSL.spec sources 
Log Message:
resync with devel


Index: .cvsignore
===================================================================
RCS file: /cvs/pkgs/rpms/perl-IO-Socket-SSL/F-8/.cvsignore,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- .cvsignore	2 Dec 2006 18:36:23 -0000	1.7
+++ .cvsignore	18 Nov 2008 10:16:34 -0000	1.8
@@ -1 +1 @@
-IO-Socket-SSL-1.02.tar.gz
+IO-Socket-SSL-1.18.tar.gz


Index: perl-IO-Socket-SSL.spec
===================================================================
RCS file: /cvs/pkgs/rpms/perl-IO-Socket-SSL/F-8/perl-IO-Socket-SSL.spec,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- perl-IO-Socket-SSL.spec	16 Oct 2007 20:28:39 -0000	1.7
+++ perl-IO-Socket-SSL.spec	18 Nov 2008 10:16:34 -0000	1.8
@@ -1,23 +1,22 @@
 #
 # Rebuild switch:
-#  --with sessiontests          enable session tests
+#  --with sessiontests		enable session tests
 #
 
-Name:           perl-IO-Socket-SSL
-Version:        1.02
-Release:        1%{?dist}.1
-Summary:        Perl library for transparent SSL
-
-Group:          Development/Libraries
-License:        GPL+ or Artistic
-URL:            http://search.cpan.org/dist/IO-Socket-SSL/
-Source0:        http://www.cpan.org/authors/id/B/BE/BEHROOZI/IO-Socket-SSL-%{version}.tar.gz
-BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
-
-BuildArch:      noarch
-BuildRequires:  perl(Net::SSLeay)
-BuildRequires:  perl(ExtUtils::MakeMaker)
-Requires:       perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
+Name:		perl-IO-Socket-SSL
+Version:	1.18
+Release:	1%{?dist}
+Summary:	Perl library for transparent SSL
+Group:		Development/Libraries
+License:	GPL+ or Artistic
+URL:		http://search.cpan.org/dist/IO-Socket-SSL/
+Source0:	http://search.cpan.org/CPAN/authors/id/S/SU/SULLR/IO-Socket-SSL-%{version}.tar.gz
+BuildRoot:	%{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
+BuildArch:	noarch
+BuildRequires:	perl(ExtUtils::MakeMaker), perl(Test::Simple)
+BuildRequires:	perl(IO::Socket::INET6), perl(Net::LibIDN), perl(Net::SSLeay) >= 1.21
+Requires:	perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
+Requires:	perl(Net::LibIDN)
 
 %description
 This module is a true drop-in replacement for IO::Socket::INET that
@@ -28,37 +27,31 @@
 SSL version selection. As an extra bonus, it works perfectly with
 mod_perl.
 
-
 %prep
 %setup -q -n IO-Socket-SSL-%{version}
-for f in README SSL.pm ; do
-  iconv -f iso-8859-1 -t utf-8 -o $f{.utf8,} ; mv $f{.utf8,}
+for f in README SSL.pm; do
+	/usr/bin/iconv -f iso-8859-1 -t utf-8 -o $f{.utf8,}; %{__mv} $f{.utf8,}
 done
 
-
 %build
 %{__perl} Makefile.PL INSTALLDIRS=vendor
-make %{?_smp_mflags}
-
+%{__make} %{?_smp_mflags}
 
 %install
-rm -rf $RPM_BUILD_ROOT
-make pure_install PERL_INSTALL_ROOT=$RPM_BUILD_ROOT
-find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} ';'
-find $RPM_BUILD_ROOT -type d -depth -exec rmdir {} 2>/dev/null ';'
-chmod -R u+w $RPM_BUILD_ROOT/*
-
+%{__rm} -rf %{buildroot}
+%{__make} pure_install PERL_INSTALL_ROOT=%{buildroot}
+/usr/bin/find %{buildroot} -type f -name .packlist -exec %{__rm} -f {} ';'
+/usr/bin/find %{buildroot} -depth -type d -exec /bin/rmdir {} 2>/dev/null ';'
+%{__chmod} -R u+w %{buildroot}/*
 
 %check
 # Avoid running the session tests (spawns servers, requires 3 free ports
 # and possibly manual configuration).
-%{?!_with_sessiontests:mv t/sessions.t t/sessions.t.disable}
-make test
-
+%{?!_with_sessiontests:%{__mv} t/sessions.t t/sessions.t.disable}
+%{__make} test
 
 %clean
-rm -rf $RPM_BUILD_ROOT
-
+%{__rm} -rf %{buildroot}
 
 %files
 %defattr(-,root,root,-)
@@ -66,11 +59,46 @@
 %{perl_vendorlib}/IO/
 %{_mandir}/man3/*.3*
 
-
 %changelog
+* Tue Nov 18 2008 Paul Howarth <paul at city-fan.org> - 1.18-1
+- Update to latest upstream version: 1.18
+- BR: perl(IO::Socket::INET6) for extra test coverage
+
+* Mon Oct 13 2008 Paul Howarth <paul at city-fan.org> - 1.17-1
+- Update to latest upstream version: 1.17
+
+* Mon Sep 22 2008 Paul Howarth <paul at city-fan.org> - 1.16-1
+- Update to latest upstream version: 1.16
+
+* Sat Aug 30 2008 Paul Howarth <paul at city-fan.org> - 1.15-1
+- Update to latest upstream version: 1.15
+- Add buildreq and req for perl(Net::LibIDN) to avoid croaking when trying to
+  verify an international name against a certificate
+
+* Wed Jul 16 2008 Paul Howarth <paul at city-fan.org> - 1.14-1
+- Update to latest upstream version: 1.14
+- BuildRequire perl(Net::SSLeay) >= 1.21
+
+* Wed Feb 27 2008 Tom "spot" Callaway <tcallawa at redhat.com> - 1.12-4
+- Rebuild for perl 5.10 (again)
+
+* Thu Jan 31 2008 Tom "spot" Callaway <tcallawa at redhat.com> - 1.12-3
+- Rebuild for new perl
+
+* Wed Nov 28 2007 Paul Howarth <paul at city-fan.org> - 1.12-2
+- Cosmetic spec changes suiting new maintainer's preferences
+
+* Fri Oct 26 2007 Robin Norwood <rnorwood at redhat.com> - 1.12-1
+- Update to latest upstream version: 1.12
+- Fix license tag
+- Add BuildRequires for ExtUtils::MakeMaker and Test::Simple
+- Fix package review issues:
+- Source URL
+- Resolves: bz#226264
+
 * Tue Oct 16 2007 Tom "spot" Callaway <tcallawa at redhat.com> - 1.02-1.1
-- correct license tag
-- add BR: perl(ExtUtils::MakeMaker)
+- Correct license tag
+- Add BR: perl(ExtUtils::MakeMaker)
 
 * Sat Dec 02 2006 Robin Norwood <rnorwood at redhat.com> - 1.02-1
 - Upgrade to latest CPAN version: 1.02
@@ -88,7 +116,7 @@
 - 0.991
 
 * Wed Jul 12 2006 Warren Togami <wtogami at redhat.com> - 0.97-3
-- import into FC6
+- Import into FC6
 
 * Tue Feb 28 2006 Jose Pedro Oliveira <jpo at di.uminho.pt> - 0.97-2
 - Rebuild for FC5 (perl 5.8.8).
@@ -99,7 +127,7 @@
 - Convert docs to UTF-8, drop some unuseful ones.
 
 * Fri Apr  7 2005 Michael Schwendt <mschwendt[AT]users.sf.net> - 0.96-4
-- rebuilt
+- Rebuilt
 
 * Tue Oct 12 2004 Ville Skyttä <ville.skytta at iki.fi> - 0:0.96-3
 - Disable session test suite even if Net::SSLeay >= 1.26 is available.


Index: sources
===================================================================
RCS file: /cvs/pkgs/rpms/perl-IO-Socket-SSL/F-8/sources,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- sources	2 Dec 2006 18:36:23 -0000	1.7
+++ sources	18 Nov 2008 10:16:34 -0000	1.8
@@ -1 +1 @@
-54f766398d020cad97bb05765d06b81a  IO-Socket-SSL-1.02.tar.gz
+2b278fb8784e0ba2d6d779ef7ef5f582  IO-Socket-SSL-1.18.tar.gz




More information about the Fedora-perl-devel-list mailing list