r11517 - in /trunk/libnet-telnet-perl/debian: ./ changelog control copyright rules watch

gwolf at users.alioth.debian.org gwolf at users.alioth.debian.org
Sun Dec 23 16:58:06 UTC 2007


Author: gwolf
Date: Sun Dec 23 16:58:05 2007
New Revision: 11517

URL: http://svn.debian.org/wsvn/?sc=1&rev=11517
Log:
[svn-inject] Applying Debian modifications to trunk

Added:
    trunk/libnet-telnet-perl/debian/
    trunk/libnet-telnet-perl/debian/changelog
    trunk/libnet-telnet-perl/debian/control
    trunk/libnet-telnet-perl/debian/copyright
    trunk/libnet-telnet-perl/debian/rules   (with props)
    trunk/libnet-telnet-perl/debian/watch

Added: trunk/libnet-telnet-perl/debian/changelog
URL: http://svn.debian.org/wsvn/trunk/libnet-telnet-perl/debian/changelog?rev=11517&op=file
==============================================================================
--- trunk/libnet-telnet-perl/debian/changelog (added)
+++ trunk/libnet-telnet-perl/debian/changelog Sun Dec 23 16:58:05 2007
@@ -1,0 +1,42 @@
+libnet-telnet-perl (3.03-1) unstable; urgency=low
+
+  * New upstream release
+  * New maintainer - Gunnar Wolf
+
+ -- Gunnar Wolf <gwolf at 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 at 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 at 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 at 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 at 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 at debian.org>  Fri, 12 Feb 1999 09:41:52 -0500

Added: trunk/libnet-telnet-perl/debian/control
URL: http://svn.debian.org/wsvn/trunk/libnet-telnet-perl/debian/control?rev=11517&op=file
==============================================================================
--- trunk/libnet-telnet-perl/debian/control (added)
+++ trunk/libnet-telnet-perl/debian/control Sun Dec 23 16:58:05 2007
@@ -1,0 +1,21 @@
+Source: libnet-telnet-perl
+Maintainer: Gunnar Wolf <gwolf at debian.org>
+Priority: optional
+Section: perl
+Build-Depends-Indep: debhelper (>= 2)
+Standards-Version: 3.6.1
+
+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.

Added: trunk/libnet-telnet-perl/debian/copyright
URL: http://svn.debian.org/wsvn/trunk/libnet-telnet-perl/debian/copyright?rev=11517&op=file
==============================================================================
--- trunk/libnet-telnet-perl/debian/copyright (added)
+++ trunk/libnet-telnet-perl/debian/copyright Sun Dec 23 16:58:05 2007
@@ -1,0 +1,20 @@
+This is Debian GNU/Linux's prepackaged Net::Telnet.  This package was
+put together by Michael Alan Dorman <mdorman at 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
+

Added: trunk/libnet-telnet-perl/debian/rules
URL: http://svn.debian.org/wsvn/trunk/libnet-telnet-perl/debian/rules?rev=11517&op=file
==============================================================================
--- trunk/libnet-telnet-perl/debian/rules (added)
+++ trunk/libnet-telnet-perl/debian/rules Sun Dec 23 16:58:05 2007
@@ -1,0 +1,56 @@
+#!/usr/bin/make -f
+# -*- Makefile -*-
+
+# Use debhelper V. 2
+export DH_COMPAT := 2
+
+# Make sure perl is defined (allow overriding from the command line
+PERL ?= /usr/bin/perl
+
+# Set our build directory
+b := $(shell pwd)/debian/libnet-telnet-perl
+
+binary: binary-stamp
+binary-stamp: binary-indep-stamp binary-arch-stamp
+
+binary-arch: binary-arch-stamp
+binary-arch-stamp: build install
+
+binary-indep: binary-indep-stamp
+binary-indep-stamp: build install
+	dh_testdir
+	dh_testroot
+	dh_installdocs README
+	dh_installchangelogs ChangeLog
+	dh_compress
+	dh_fixperms
+	dh_installdeb
+	dh_perl
+	dh_gencontrol
+	dh_md5sums
+	dh_builddeb
+
+build: build-stamp
+build-stamp: config-stamp
+	dh_testdir
+	$(MAKE)
+	touch build-stamp
+
+clean:
+	dh_testdir
+	dh_testroot
+	if [ -e Makefile ]; then $(MAKE) -i distclean; fi
+	dh_clean binary-stamp binary-arch-stamp binary-indep-stamp build-stamp config-stamp install-stamp
+
+config: config-stamp
+config-stamp:
+	dh_testdir
+	$(PERL) Makefile.PL INSTALLDIRS=vendor
+	touch config-stamp
+
+install: install-stamp
+install-stamp: build-stamp
+	dh_testdir
+	$(MAKE) pure_install PREFIX=$(b)/usr
+
+.PHONY: binary binary-arch binary-indep clean config install

Propchange: trunk/libnet-telnet-perl/debian/rules
------------------------------------------------------------------------------
    svn:executable = *

Added: trunk/libnet-telnet-perl/debian/watch
URL: http://svn.debian.org/wsvn/trunk/libnet-telnet-perl/debian/watch?rev=11517&op=file
==============================================================================
--- trunk/libnet-telnet-perl/debian/watch (added)
+++ trunk/libnet-telnet-perl/debian/watch Sun Dec 23 16:58:05 2007
@@ -1,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




More information about the Pkg-perl-cvs-commits mailing list