libnet-telnet-perl (3.03-3) debian-dir only changes

Summary

 debian/changelog |   61 +++++++++++++++++++++++++++++++++++++++++
 debian/compat    |    1 
 debian/control   |   25 ++++++++++++++++
 debian/copyright |   20 +++++++++++++
 debian/rules     |   81 +++++++++++++++++++++++++++++++++++++++++++++++++++++++
 debian/watch     |    6 ++++
 6 files changed, 194 insertions(+)

    
download this patch

Patch contents

--- libnet-telnet-perl-3.03.orig/debian/compat
+++ libnet-telnet-perl-3.03/debian/compat
@@ -0,0 +1 @@
+5
--- libnet-telnet-perl-3.03.orig/debian/watch
+++ libnet-telnet-perl-3.03/debian/watch
@@ -0,0 +1,6 @@
+# Example watch control file for uscan
+# Rename this file to "watch" and then you can run the "uscan" command
+# to check for upstream updates and more.
+# Site		Directory		Pattern			Version	Script
+version=2
+http://www.cpan.org/modules/by-module/Net/Net-Telnet-(\d.*)\.tar\.gz
--- libnet-telnet-perl-3.03.orig/debian/control
+++ libnet-telnet-perl-3.03/debian/control
@@ -0,0 +1,25 @@
+Source: libnet-telnet-perl
+Maintainer: Debian Perl Project <pkg-perl-maintainers@lists.alioth.debian.org>
+Uploaders: Gunnar Wolf <gwolf@debian.org>
+Priority: optional
+Section: perl
+Build-Depends: debhelper (>= 5)
+Homepage: http://search.cpan.org/dist/Net-Telnet/
+Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libnet-telnet-perl/
+Vcs-Browser: http://svn.debian.org/wsvn/pkg-perl/trunk/libnet-telnet-perl/
+Standards-Version: 3.7.3
+
+Package: libnet-telnet-perl
+Architecture: all
+Priority: optional
+Section: perl
+Depends: ${perl:Depends}
+Description: Script telnetable connections
+ Net::Telnet allows you to make client connections to a TCP port and
+ do network I/O, especially to a port using the TELNET protocol.
+ Simple I/O methods such as print, get, and getline are provided.
+ More sophisticated interactive features are provided because
+ connecting to a TELNET port ultimately means communicating with a
+ program designed for human interaction.  These interactive features
+ include the ability to specify a timeout and to wait for patterns to
+ appear in the input stream, such as the prompt from a shell.
--- libnet-telnet-perl-3.03.orig/debian/rules
+++ libnet-telnet-perl-3.03/debian/rules
@@ -0,0 +1,81 @@
+#!/usr/bin/make -f
+# This debian/rules file is provided as a template for normal perl
+# packages. It was created by Marc Brockschmidt <marc@dch-faq.de> for
+# the Debian Perl Group (http://pkg-perl.alioth.debian.org/) but may
+# be used freely wherever it is useful.
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+# If set to a true value then MakeMaker's prompt function will
+# always return the default without waiting for user input.
+export PERL_MM_USE_DEFAULT=1
+
+PACKAGE=$(shell dh_listpackages)
+
+ifndef PERL
+PERL = /usr/bin/perl
+endif
+
+TMP     =$(CURDIR)/debian/$(PACKAGE)
+
+build: build-stamp
+build-stamp:
+	dh_testdir
+
+	# As this is a architecture independent package, we are not
+	# supposed to install stuff to /usr/lib. MakeMaker creates
+	# the dirs, we prevent this by setting the INSTALLVENDORARCH
+	# and VENDORARCHEXP environment variables.
+
+	# Add commands to compile the package here
+	$(PERL) Makefile.PL INSTALLDIRS=vendor \
+		INSTALLVENDORARCH=/usr/share/perl5/ \
+		VENDORARCHEXP=/usr/share/perl5/
+	$(MAKE)
+	#TEST#
+
+	touch $@
+
+clean:
+	dh_testdir
+	dh_testroot
+
+	dh_clean build-stamp install-stamp
+
+	# Add commands to clean up after the build process here
+	[ ! -f Makefile ] || $(MAKE) realclean
+
+install: build install-stamp
+install-stamp:
+	dh_testdir
+	dh_testroot
+	dh_clean -k
+
+	# Add commands to install the package into debian/$PACKAGE_NAME here
+	$(MAKE) install DESTDIR=$(TMP) PREFIX=/usr
+
+	touch $@
+
+binary-arch:
+# We have nothing to do here for an architecture-independent package
+
+binary-indep: build install
+	dh_testdir
+	dh_testroot
+	dh_installexamples
+	dh_installdocs #DOCS#
+	dh_installchangelogs #CHANGES#
+	dh_perl
+	dh_compress
+	dh_fixperms
+	dh_installdeb
+	dh_gencontrol
+	dh_md5sums
+	dh_builddeb
+
+source diff:
+	@echo >&2 'source and diff are obsolete - use dpkg-source -b'; false
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary
--- libnet-telnet-perl-3.03.orig/debian/changelog
+++ libnet-telnet-perl-3.03/debian/changelog
@@ -0,0 +1,61 @@
+libnet-telnet-perl (3.03-3) unstable; urgency=low
+
+  * Now _really_ transferred the package over to the group (yes, I had
+    forgotten to note it in debian/control the previous upload :-/
+  * Added homepage, vcs-svn and vcs-browser fields to debian/control
+
+ -- Gunnar Wolf <gwolf@debian.org>  Sun, 23 Dec 2007 12:05:58 -0600
+
+libnet-telnet-perl (3.03-2) unstable; urgency=low
+
+  * Handed over maintainership to the pkg-perl group
+  * Replaced the old (and full of staleness) debian/rules by dh-make-
+    perl's stock
+  * Bumped up dh-compat level to 5
+  * Bumped up standards-version to 3.7.3 (no changes needed)
+  * Moved debhelper from b-d-i to b-d
+
+ -- Gunnar Wolf <gwolf@debian.org>  Sun, 23 Dec 2007 11:13:12 -0600
+
+libnet-telnet-perl (3.03-1) unstable; urgency=low
+
+  * New upstream release
+  * New maintainer - Gunnar Wolf
+
+ -- Gunnar Wolf <gwolf@debian.org>  Sat,  8 Nov 2003 12:17:58 -0600
+
+libnet-telnet-perl (3.02-1.2) unstable; urgency=low
+
+  * Non Maintainer Upload by Gunnar Wolf
+  * Adds pointers to the correct license information files (Closes:
+    #157627)
+  * Fixes some lintian warnings
+  * Bumped up standards-version to 3.6.1
+
+ -- Gunnar Wolf <gwolf@debian.org>  Wed,  5 Nov 2003 09:35:17 -0600
+
+libnet-telnet-perl (3.02-1.1) unstable; urgency=low
+
+  * NMU.
+  * Add Build-Depends-Indep field.  Closes: #168395.
+
+ -- Daniel Schepler <schepler@debian.org>  Mon, 28 Jul 2003 14:53:01 -0700
+
+libnet-telnet-perl (3.02-1) unstable; urgency=low
+
+  * New upstream release
+
+ -- Michael Alan Dorman <mdorman@debian.org>  Mon,  9 Oct 2000 10:39:14 -0400
+
+libnet-telnet-perl (3.01-2) unstable; urgency=low
+
+  * Modified for new perl packages.
+  * Modified to use debhelper.
+
+ -- Michael Alan Dorman <mdorman@debian.org>  Sun,  4 Jul 1999 22:45:26 +0000
+
+libnet-telnet-perl (3.01-1) unstable; urgency=low
+
+  * Initial debianization
+
+ -- Michael Alan Dorman <mdorman@debian.org>  Fri, 12 Feb 1999 09:41:52 -0500
--- libnet-telnet-perl-3.03.orig/debian/copyright
+++ libnet-telnet-perl-3.03/debian/copyright
@@ -0,0 +1,20 @@
+This is Debian GNU/Linux's prepackaged Net::Telnet.  This package was
+put together by Michael Alan Dorman <mdorman@debian.org>.  The
+original sources should always be available from the Comprehensive
+Perl Archive Network (CPAN). Visit <URL:http://www.perl.com/CPAN/> to
+find a CPAN site near you.
+
+The only change for the Debian package was the addition of the debian/
+files.
+
+                      Net::Telnet, version 3.01
+
+    Copyright (c) 1997 Jay Rogers.  All rights reserved.  This program
+    is free software; you can redistribute it and/or modify it under
+    the same terms as Perl itself (GPL or Artistic license).
+
+On Debian systems the complete text of the GPL and Artistic
+licenses can be found at:
+        /usr/share/common-licenses/GPL and
+        /usr/share/common-licenses/Artistic
+