r10333 - in /trunk/libterm-readpassword-perl/debian: ./ changelog compat control copyright rules watch
vdanjean at users.alioth.debian.org
vdanjean at users.alioth.debian.org
Sat Dec 1 12:16:43 UTC 2007
Author: vdanjean
Date: Sat Dec 1 12:16:43 2007
New Revision: 10333
URL: http://svn.debian.org/wsvn/?sc=1&rev=10333
Log:
[svn-inject] Applying Debian modifications to trunk
Added:
trunk/libterm-readpassword-perl/debian/
trunk/libterm-readpassword-perl/debian/changelog
trunk/libterm-readpassword-perl/debian/compat
trunk/libterm-readpassword-perl/debian/control
trunk/libterm-readpassword-perl/debian/copyright
trunk/libterm-readpassword-perl/debian/rules (with props)
trunk/libterm-readpassword-perl/debian/watch
Added: trunk/libterm-readpassword-perl/debian/changelog
URL: http://svn.debian.org/wsvn/trunk/libterm-readpassword-perl/debian/changelog?rev=10333&op=file
==============================================================================
--- trunk/libterm-readpassword-perl/debian/changelog (added)
+++ trunk/libterm-readpassword-perl/debian/changelog Sat Dec 1 12:16:43 2007
@@ -1,0 +1,35 @@
+libterm-readpassword-perl (0.05-1) unstable; urgency=low
+
+ * New upstream release
+
+ -- Jay Bonci <jaybonci at debian.org> Tue, 28 Jun 2005 13:55:46 -0400
+
+libterm-readpassword-perl (0.04-1) unstable; urgency=low
+
+ * New upstream release
+
+ -- Jay Bonci <jaybonci at debian.org> Thu, 7 Apr 2005 12:15:52 -0400
+
+libterm-readpassword-perl (0.02-1) unstable; urgency=low
+
+ * New upstream release
+
+ -- Jay Bonci <jaybonci at debian.org> Wed, 29 Dec 2004 01:45:41 -0500
+
+libterm-readpassword-perl (0.01-2) unstable; urgency=low
+
+ * New Maintainer (Closes: #266461)
+ * Changed section from interpreters to perl
+ * Updated to standards version 3.6.1.0 (No other changes)
+ * Changed to my standard rules template (no tests however)
+ * Copyright file now meets standards. Includes correct license info
+ * Updated to use debhelper 4 (debian/compat)
+
+ -- Jay Bonci <jaybonci at debian.org> Thu, 9 Sep 2004 04:14:18 -0400
+
+libterm-readpassword-perl (0.01-1) unstable; urgency=low
+
+ * Initial release. (closes: Bug#140948)
+
+ -- Luca Filipozzi <lfilipoz at debian.org> Mon, 15 Apr 2002 11:36:11 -0700
+
Added: trunk/libterm-readpassword-perl/debian/compat
URL: http://svn.debian.org/wsvn/trunk/libterm-readpassword-perl/debian/compat?rev=10333&op=file
==============================================================================
--- trunk/libterm-readpassword-perl/debian/compat (added)
+++ trunk/libterm-readpassword-perl/debian/compat Sat Dec 1 12:16:43 2007
@@ -1,0 +1,1 @@
+4
Added: trunk/libterm-readpassword-perl/debian/control
URL: http://svn.debian.org/wsvn/trunk/libterm-readpassword-perl/debian/control?rev=10333&op=file
==============================================================================
--- trunk/libterm-readpassword-perl/debian/control (added)
+++ trunk/libterm-readpassword-perl/debian/control Sat Dec 1 12:16:43 2007
@@ -1,0 +1,18 @@
+Source: libterm-readpassword-perl
+Section: perl
+Priority: optional
+Maintainer: Jay Bonci <jaybonci at debian.org>
+Standards-Version: 3.6.2.1
+Build-Depends-Indep: debhelper (>= 4.1.0), perl (>= 5.6.0-16)
+
+Package: libterm-readpassword-perl
+Architecture: all
+Depends: ${perl:Depends}
+Description: ask the user for a password
+ This module lets you ask the user for a password in the
+ traditional way, from the keyboard, without echoing.
+ .
+ The read_password function prompts for input, reads a line of
+ text from the keyboard, then returns that line to the caller.
+ The line of text doesn't include the newline character, so
+ there's no need to use chomp.
Added: trunk/libterm-readpassword-perl/debian/copyright
URL: http://svn.debian.org/wsvn/trunk/libterm-readpassword-perl/debian/copyright?rev=10333&op=file
==============================================================================
--- trunk/libterm-readpassword-perl/debian/copyright (added)
+++ trunk/libterm-readpassword-perl/debian/copyright Sat Dec 1 12:16:43 2007
@@ -1,0 +1,22 @@
+Download:
+ http://www.cpan.org/dist/Term-ReadPassword
+
+Copyright:
+ Tom Phoenix <rootbeer at redcat.com>
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of either:
+
+ a) the GNU General Public License as published by the Free
+ Software Foundation; either version 1, or (at your option) any
+ later version, or
+
+ b) the "Artistic License"
+
+ See:
+
+ /usr/share/common-licenses/Artistic
+ /usr/share/common-licenses/GPL
+
+ For more information regarding these licensing options
+
Added: trunk/libterm-readpassword-perl/debian/rules
URL: http://svn.debian.org/wsvn/trunk/libterm-readpassword-perl/debian/rules?rev=10333&op=file
==============================================================================
--- trunk/libterm-readpassword-perl/debian/rules (added)
+++ trunk/libterm-readpassword-perl/debian/rules Sat Dec 1 12:16:43 2007
@@ -1,0 +1,54 @@
+#!/usr/bin/make -f
+# Sample debian/rules that uses debhelper.
+# GNU copyright 1997 to 1999 by Joey Hess.
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+# This is the debhelper compatibility version to use.
+# export DH_COMPAT=4
+
+PACKAGE=`pwd | sed -e "s/.*\/\\(.*\\)-.*/\\1/"`
+
+
+build:
+ dh_testdir
+ # Add here commands to compile the package.
+ perl Makefile.PL verbose INSTALLDIRS=vendor
+clean:
+ dh_testdir
+ dh_testroot
+
+ -$(MAKE) clean
+ rm -f Makefile.old
+ dh_clean
+
+install:
+ dh_testdir
+ dh_testroot
+ dh_clean -k
+ dh_installdirs
+
+ #No test here, because they're interactive
+ $(MAKE) PREFIX=$(CURDIR)/debian/$(PACKAGE)/usr OPTIMIZE="-O2 -g -Wall" install
+ -find $(CURDIR)/debian -type d | xargs rmdir -p --ignore-fail-on-non-empty
+
+binary-arch:;
+binary-indep: build install
+ dh_testdir
+ dh_testroot
+ dh_installdocs
+ dh_installman
+ dh_installchangelogs Changes
+ dh_link
+ dh_strip
+ dh_compress
+ dh_fixperms
+ dh_installdeb
+ dh_perl
+ dh_gencontrol
+ dh_md5sums
+ dh_builddeb
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary install configure
Propchange: trunk/libterm-readpassword-perl/debian/rules
------------------------------------------------------------------------------
svn:executable = *
Added: trunk/libterm-readpassword-perl/debian/watch
URL: http://svn.debian.org/wsvn/trunk/libterm-readpassword-perl/debian/watch?rev=10333&op=file
==============================================================================
--- trunk/libterm-readpassword-perl/debian/watch (added)
+++ trunk/libterm-readpassword-perl/debian/watch Sat Dec 1 12:16:43 2007
@@ -1,0 +1,2 @@
+version=2
+http://www.cpan.org/modules/by-category/08_User_Interfaces/Term/Term-ReadPassword-([\d\.]+)\.tar\.gz debian uupdate
More information about the Pkg-perl-cvs-commits
mailing list