--- libio-socket-ssl-perl-0.96.orig/debian/changelog +++ libio-socket-ssl-perl-0.96/debian/changelog @@ -0,0 +1,83 @@ +libio-socket-ssl-perl (0.96-1) unstable; urgency=medium + + * New upstream version, closes: #231572. + + -- Davide Puricelli (evo) Sat, 21 Aug 2004 18:18:55 +0200 + +libio-socket-ssl-perl (0.92-1) unstable; urgency=low + + * New upstream version. + + -- Davide Puricelli (evo) Sun, 19 Jan 2003 19:21:52 +0100 + +libio-socket-ssl-perl (0.81-2) unstable; urgency=low + + * debian/copyright: added a pointer to Perl license; closes: #157597. + + -- Davide Puricelli (evo) Mon, 2 Sep 2002 10:44:16 +0200 + +libio-socket-ssl-perl (0.81-1) unstable; urgency=low + + * New upstream version, closes: #150090. + + -- Davide Puricelli (evo) Sat, 15 Jun 2002 22:48:11 +0200 + +libio-socket-ssl-perl (0.80-2) unstable; urgency=low + + * Moved from non-US to main. + + -- Davide Puricelli (evo) Sat, 23 Mar 2002 12:10:59 +0100 + +libio-socket-ssl-perl (0.80-1) unstable; urgency=high + + * New upstream version. + * New package name; closes: #110064. + + -- Davide Puricelli (evo) Sun, 2 Sep 2001 17:19:20 +0200 + +libnet-socketssl-perl (0.79-1) unstable; urgency=low + + * New upstream version. + + -- Davide Puricelli (evo) Sat, 21 Jul 2001 15:22:10 +0200 + +libnet-socketssl-perl (0.77-2) unstable; urgency=low + + * Updated debian/rules because of perl 5.6 and new perl policy. + + -- Davide Puricelli (evo) Thu, 15 Feb 2001 22:24:51 +0100 + +libnet-socketssl-perl (0.77-1) unstable; urgency=low + + * New upstream version (closes: #82044). + + -- Davide Puricelli (evo) Mon, 5 Feb 2001 14:12:05 +0100 + +libnet-socketssl-perl (0.76-1) unstable; urgency=low + + * New upstream version, closes: #80721. + + -- Davide Puricelli (evo) Thu, 28 Dec 2000 18:17:03 +0100 + +libnet-socketssl-perl (0.75-1) unstable; urgency=low + + * New upstream version. + * New maintainer email address. + + -- Davide Puricelli (evo) Tue, 15 Aug 2000 16:06:44 +0200 + +libnet-socketssl-perl (0.74-2) unstable; urgency=low + + * Sponsor upload + + -- Christian Surchi Thu, 10 Aug 2000 14:48:38 +0200 + +libnet-socketssl-perl (0.74-1) unstable; urgency=low + + * Initial Release. + + -- Davide Puricelli (evo) Mon, 7 Aug 2000 18:46:27 +0200 + +Local variables: +mode: debian-changelog +End: --- libio-socket-ssl-perl-0.96.orig/debian/control +++ libio-socket-ssl-perl-0.96/debian/control @@ -0,0 +1,15 @@ +Source: libio-socket-ssl-perl +Section: interpreters +Priority: optional +Maintainer: Davide Puricelli (evo) +Standards-Version: 3.5.8.0 +Build-Depends-Indep: debhelper (>= 3.0.5), perl (>= 5.8.0) + +Package: libio-socket-ssl-perl +Architecture: all +Depends: ${perl:Depends}, openssl, libnet-ssleay-perl +Replaces: libnet-socketssl-perl +Conflicts: libnet-socketssl-perl +Description: Class implementing an object oriented interface to SSL sockets + The class is a descendent of IO::Socket::INET and provides a subset + of the base class's interface methods. --- libio-socket-ssl-perl-0.96.orig/debian/copyright +++ libio-socket-ssl-perl-0.96/debian/copyright @@ -0,0 +1,14 @@ +This package was debianized by Davide Puricelli (evo) on +Mon, 7 Aug 2000 18:46:27 +0200. + +It was downloaded from http://www.cpan.org/modules/by-module/IO/ + +Upstream Author: Marko Asplund + +Copyright 1999, Marko Asplund + +This library is free software; you can redistribute it and/or +modify it under the same terms as Perl itself. + +Debian GNU/Linux users can find the Perl license terms under +/usr/share/doc/perl-base/copyright or /usr/share/doc/perl/copyright. --- libio-socket-ssl-perl-0.96.orig/debian/rules +++ libio-socket-ssl-perl-0.96/debian/rules @@ -0,0 +1,50 @@ +#!/usr/bin/make -f +# -*- Makefile -*- + +tmp:=$(shell pwd)/debian/tmp + +ifndef PERL +PERL=/usr/bin/perl +endif + +binary: binary-indep binary-arch + +binary-indep: build install + dh_testdir + dh_testroot + dh_installdocs MANIFEST README docs/* + dh_installchangelogs Changes + dh_installexamples example/* + dh_perl + dh_installdeb + dh_fixperms + chmod -x debian/tmp/usr/share/doc/libio-socket-ssl-perl/examples/* + dh_compress + dh_strip + dh_md5sums + dh_gencontrol + dh_builddeb + +binary-arch: build install + +build: build-stamp +build-stamp: + dh_testdir + $(PERL) Makefile.PL INSTALLDIRS=vendor + $(MAKE) OPTIMIZE="-O2 -g -Wall" + touch build-stamp + +clean: + dh_testdir + dh_testroot + if [ -e Makefile ]; then $(MAKE) -i distclean; fi + dh_clean build-stamp + +install: + dh_testdir + $(MAKE) install PREFIX=$(tmp)/usr + rm -f $(tmp)/usr/lib/perl5/perllocal.pod + rm -rf $(tmp)/usr/lib + find debian/tmp -type f -name .packlist | xargs rm -f + +.PHONY: binary binary-arch binary-indep clean build install