diff --git a/Changes b/Changes index 8e7fd9c..1bfd076 100644 --- a/Changes +++ b/Changes @@ -1,4 +1,8 @@ Revision history for Perl extension POE::Component::SSLify. + +* 0.09 + + Minor tweak of POD to enable better distro building - thanks RT #31238 * 0.08 diff --git a/META.yml b/META.yml index 0d0388e..957d74a 100644 --- a/META.yml +++ b/META.yml @@ -1,6 +1,6 @@ --- #YAML:1.0 name: POE-Component-SSLify -version: 0.08 +version: 0.09 abstract: Makes using SSL in the world of POE easy! license: perl generated_by: ExtUtils::MakeMaker version 6.31 diff --git a/debian/changelog b/debian/changelog index d3f7092..ebc7d24 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,12 @@ +libpoe-component-sslify-perl (0.09-1) unstable; urgency=low + + * New upstream release. + * debian/patches/fix-pod-docs-for-names.patch: dropped -- taken upstream. + * debian/control: bumped standards version. + * debian/rules: adjusted to follow cleaner stamp conventions. + + -- Kees Cook Fri, 07 Dec 2007 15:07:46 -0800 + libpoe-component-sslify-perl (0.08-1) unstable; urgency=low * Initial Release (Closes: #439853). diff --git a/debian/control b/debian/control index a48fa77..0bbe813 100644 --- a/debian/control +++ b/debian/control @@ -5,7 +5,7 @@ Uploaders: Kees Cook Build-Depends: debhelper (>= 5.0.0), quilt Build-Depends-Indep: perl (>= 5.8.8-7), libnet-ssleay-perl, libtest-pod-perl -Standards-Version: 3.7.2 +Standards-Version: 3.7.3 Homepage: http://search.cpan.org/dist/POE-Component-SSLify/ Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libpoe-component-sslify-perl/ Vcs-Browser: http://svn.debian.org/wsvn/pkg-perl/trunk/libpoe-component-sslify-perl/ diff --git a/debian/patches/fix-pod-docs-for-names.patch b/debian/patches/fix-pod-docs-for-names.patch deleted file mode 100644 index 5684aaa..0000000 --- a/debian/patches/fix-pod-docs-for-names.patch +++ /dev/null @@ -1,47 +0,0 @@ -This patch has been sent upstream: - http://rt.cpan.org/Ticket/Display.html?id=31238 - -Index: libpoe-component-sslify-perl/lib/POE/Component/SSLify.pm -=================================================================== ---- libpoe-component-sslify-perl.orig/lib/POE/Component/SSLify.pm 2007-10-23 11:03:03.000000000 -0700 -+++ libpoe-component-sslify-perl/lib/POE/Component/SSLify.pm 2007-10-23 11:03:09.000000000 -0700 -@@ -183,6 +183,7 @@ - 1; - - __END__ -+ - =head1 NAME - - POE::Component::SSLify - Makes using SSL in the world of POE easy! -Index: libpoe-component-sslify-perl/lib/POE/Component/SSLify/ClientHandle.pm -=================================================================== ---- libpoe-component-sslify-perl.orig/lib/POE/Component/SSLify/ClientHandle.pm 2007-10-23 11:03:03.000000000 -0700 -+++ libpoe-component-sslify-perl/lib/POE/Component/SSLify/ClientHandle.pm 2007-10-23 11:03:09.000000000 -0700 -@@ -58,9 +58,10 @@ - 1; - - __END__ -+ - =head1 NAME - --POE::Component::SSLify::ClientHandle -+POE::Component::SSLify::ClientHandle - client object for POE::Component::SSLify - - =head1 ABSTRACT - -Index: libpoe-component-sslify-perl/lib/POE/Component/SSLify/ServerHandle.pm -=================================================================== ---- libpoe-component-sslify-perl.orig/lib/POE/Component/SSLify/ServerHandle.pm 2007-10-23 11:03:03.000000000 -0700 -+++ libpoe-component-sslify-perl/lib/POE/Component/SSLify/ServerHandle.pm 2007-10-23 11:03:09.000000000 -0700 -@@ -161,9 +161,10 @@ - 1; - - __END__ -+ - =head1 NAME - --POE::Component::SSLify::ServerHandle -+POE::Component::SSLify::ServerHandle - server object for POE::Component::SSLify - - =head1 ABSTRACT - diff --git a/debian/patches/series b/debian/patches/series index a363983..e69de29 100644 --- a/debian/patches/series +++ b/debian/patches/series @@ -1 +0,0 @@ -fix-pod-docs-for-names.patch diff --git a/debian/rules b/debian/rules index 9777415..b0a3023 100755 --- a/debian/rules +++ b/debian/rules @@ -21,8 +21,8 @@ include /usr/share/quilt/quilt.make -build: patch build-stamp -build-stamp: +build: build-stamp +build-stamp: $(QUILT_STAMPFN) dh_testdir # Add commands to compile the package here @@ -41,8 +41,8 @@ # Add commands to clean up after the build process here [ ! -f Makefile ] || $(MAKE) realclean -install: build install-stamp -install-stamp: +install: install-stamp +install-stamp: build-stamp dh_testdir dh_testroot dh_clean -k diff --git a/lib/POE/Component/SSLify/ClientHandle.pm b/lib/POE/Component/SSLify/ClientHandle.pm index 0f4d216..bb652f8 100644 --- a/lib/POE/Component/SSLify/ClientHandle.pm +++ b/lib/POE/Component/SSLify/ClientHandle.pm @@ -6,9 +6,9 @@ use warnings FATAL => 'all'; # Enable warnings to catch errors # Initialize our version -# $Revision: 1168 $ +# $Revision: 1223 $ use vars qw( $VERSION ); -$VERSION = '0.02'; +$VERSION = '0.03'; # Import the SSL death routines use Net::SSLeay qw( die_now die_if_ssl_error ); @@ -60,7 +60,7 @@ __END__ =head1 NAME -POE::Component::SSLify::ClientHandle +POE::Component::SSLify::ClientHandle - client object for POE::Component::SSLify =head1 ABSTRACT diff --git a/lib/POE/Component/SSLify/ServerHandle.pm b/lib/POE/Component/SSLify/ServerHandle.pm index c1da581..e55cafa 100644 --- a/lib/POE/Component/SSLify/ServerHandle.pm +++ b/lib/POE/Component/SSLify/ServerHandle.pm @@ -6,9 +6,9 @@ use warnings FATAL => 'all'; # Enable warnings to catch errors # Initialize our version -# $Revision: 1168 $ +# $Revision: 1223 $ use vars qw( $VERSION ); -$VERSION = '0.03'; +$VERSION = '0.04'; # Import the SSL death routines use Net::SSLeay qw( die_now die_if_ssl_error ); @@ -163,7 +163,7 @@ __END__ =head1 NAME -POE::Component::SSLify::ServerHandle +POE::Component::SSLify::ServerHandle - server object for POE::Component::SSLify =head1 ABSTRACT diff --git a/lib/POE/Component/SSLify.pm b/lib/POE/Component/SSLify.pm index d43d130..2aeadc5 100644 --- a/lib/POE/Component/SSLify.pm +++ b/lib/POE/Component/SSLify.pm @@ -6,8 +6,8 @@ use warnings FATAL => 'all'; # Enable warnings to catch errors # Initialize our version -# $Revision: 1213 $ -our $VERSION = '0.08'; +# $Revision: 1223 $ +our $VERSION = '0.09'; # We need Net::SSLeay or all's a failure! BEGIN {