diff options
Diffstat (limited to 'debian')
-rw-r--r-- | debian/changelog | 6 | ||||
-rw-r--r-- | debian/control | 12 | ||||
-rw-r--r-- | debian/manpages | 1 | ||||
-rw-r--r-- | debian/postrm | 4 |
4 files changed, 19 insertions, 4 deletions
diff --git a/debian/changelog b/debian/changelog index b8648fe..5fa0375 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +live-helper (1.0~a13-1) unstable; urgency=medium + + * New upstream release. + + -- Daniel Baumann <daniel@debian.org> Mon, 4 Jun 2007 00:00:00 +0200 + live-helper (1.0~a12-1) unstable; urgency=medium * New upstream release. diff --git a/debian/control b/debian/control index 2e2aac1..c1e288d 100644 --- a/debian/control +++ b/debian/control @@ -11,7 +11,7 @@ XS-VCS-Browse: http://svn.debian.org/wsvn/debian-live/dists/trunk/live-helper/ Package: live-helper Architecture: all Depends: cdebootstrap (>= 0.3.15) | debootstrap (>= 0.3.3.2) -Conflicts: live-package +Conflicts: live-package (<< 1.0) Replaces: live-package Provides: make-live Description: Debian Live helper programs @@ -25,3 +25,13 @@ Description: Debian Live helper programs of such a program that uses live-helper is make-live (included here). . Homepage: <http://debian-live.alioth.debian.org/> + +Package: live-package +Architecture: all +Depends: live-helper +Description: Debian Live helper programs (transitional package) + Package to ease upgrading from older live-package package to the new + live-helper package. + . + This package can be purged at anytime once the live-helper package has been + installed. diff --git a/debian/manpages b/debian/manpages deleted file mode 100644 index ae53c6c..0000000 --- a/debian/manpages +++ /dev/null @@ -1 +0,0 @@ -contrib/casper-manpage/* diff --git a/debian/postrm b/debian/postrm index 09b0aca..9778835 100644 --- a/debian/postrm +++ b/debian/postrm @@ -2,7 +2,7 @@ set -e -case "$1" in +case "${1}" in purge) rm -f /var/log/live* ;; @@ -12,7 +12,7 @@ case "$1" in ;; *) - echo "postrm called with unknown argument \`$1'" >&2 + echo "postrm called with unknown argument \`${1}'" >&2 exit 1 ;; esac |