Standards-Version/Lintian fixes:
authorIan Beckwith <ianb@erislabs.net>
Thu, 26 Feb 2009 22:42:12 +0000 (22:42 +0000)
committerIan Beckwith <ianb@erislabs.net>
Thu, 26 Feb 2009 22:42:12 +0000 (22:42 +0000)
* Add debian/README.source pointing to quilt docs.
* debian/copyright: note that ckermit is non-free and not part of
  Debian, and explain why.
* control: add Homepage: field.
* postinst, postrm, config: switch from /bin/sh -e to set -e.
* Standards-version: 3.8.0.

debian/README.source [new file with mode: 0644]
debian/changelog
debian/config
debian/control
debian/copyright
debian/postinst
debian/postrm

diff --git a/debian/README.source b/debian/README.source
new file mode 100644 (file)
index 0000000..e203b27
--- /dev/null
@@ -0,0 +1,4 @@
+This package uses quilt to manage patches.
+See /usr/share/doc/quilt/README.source for instructions.
+
+ -- Ian Beckwith <ianb@erislabs.net>, Thu, 26 Feb 2009 22:18:30 +0000
index 39ed30b..7223c63 100644 (file)
@@ -1,3 +1,14 @@
+ckermit (211-12) unstable; urgency=low
+
+  * Add debian/README.source pointing to quilt docs.
+  * debian/copyright: note that ckermit is non-free and not part of
+    Debian, and explain why.
+  * control: add Homepage: field.
+  * postinst, postrm, config: switch from /bin/sh -e to set -e.
+  * Standards-version: 3.8.0.
+
+ -- Ian Beckwith <ianb@erislabs.net>  Thu, 26 Feb 2009 22:31:09 +0000
+
 ckermit (211-11) unstable; urgency=low
 
   * New Russian debconf translation (Closes: #511935)
index c66a2e9..adf28ad 100644 (file)
@@ -1,4 +1,6 @@
-#!/bin/sh -e
+#!/bin/sh
+
+set -e
 
 . /usr/share/debconf/confmodule
 
@@ -11,7 +13,7 @@ if [ "$RET"   = true ]
 then
        db_input medium ckermit/iksd-anon || true
        db_go || true
-               
+
        db_get ckermit/iksd-anon || true
        if [ "$RET" = true ]
        then
index c4f8b2b..4364421 100644 (file)
@@ -3,9 +3,10 @@ Section: non-free/comm
 Priority: extra
 Maintainer: Ian Beckwith <ianb@erislabs.net>
 Build-Depends: libncurses5-dev, debhelper (>= 6), libpam0g-dev, libsocks4, quilt
-Standards-Version: 3.7.3
+Standards-Version: 3.8.0
 XS-Autobuild: yes
 DM-Upload-Allowed: yes
+Homepage: http://www.kermit-project.org
 
 Package: ckermit
 Architecture: any
index a0c98e6..9986df5 100644 (file)
@@ -1,4 +1,4 @@
-This package was (re)debianized by Ian Beckwith <ianb@nessie.mcc.ac.uk> on
+This package was (re)debianized by Ian Beckwith <ianb@erislabs.net> on
 Mon, 24 Nov 2003 13:02:10 +0000.
 
 An earlier version was debianized and maintained by Vaidhyanathan G
@@ -6,6 +6,10 @@ Mayilrangam <vaidhy@debian.org>
 
 It was downloaded from http://www.columbia.edu/kermit/ckermit.html
 
+ckermit is in the non-free archive, and as such is not part of
+Debian GNU/Linux. This is chiefly because the license forbids
+distributing ckermit along with non-free commercial products.
+
 Upstream Authors: Kermit Team at Columbia University
 
 Copyright: Copyright (C) 1985, 2002,
index 3b220ea..f5d92ac 100644 (file)
@@ -1,4 +1,6 @@
-#!/bin/sh -e
+#!/bin/sh
+
+set -e
 
 . /usr/share/debconf/confmodule
 
@@ -22,7 +24,7 @@ then
                                                dir="$RET"
                                fi
                fi
-               
+
                iksd_args="$iksd_args --root:$dir --anonymous:$anon"
                update-inetd --remove "kermit"
                update-inetd --add "$prefix$inetdentry $iksd_args"
index e25f8e5..4cbf6c3 100644 (file)
@@ -1,4 +1,7 @@
-#!/bin/sh -e
+#!/bin/sh
+
+set -e
+
 case "$1" in
 remove)
        [ -e /usr/sbin/update-inetd ] && update-inetd --remove "kermit"