summaryrefslogtreecommitdiff
path: root/debian
diff options
context:
space:
mode:
authorDaniel Baumann <daniel@debian.org>2007-09-23 10:05:11 +0200
committerDaniel Baumann <daniel@debian.org>2011-03-09 18:18:30 +0100
commit85c342c299231131d22764c0dfdcf977c57ce147 (patch)
tree1226c8a7ad43a2dd53e411c2e379969424e88e32 /debian
parentd1ee66e44c8272bb7a0053a456a3d8b0bd152268 (diff)
downloadlive-build-85c342c299231131d22764c0dfdcf977c57ce147.zip
live-build-85c342c299231131d22764c0dfdcf977c57ce147.tar.gz
Adding live-helper 1.0~a13-1.
Diffstat (limited to 'debian')
-rw-r--r--debian/changelog6
-rw-r--r--debian/control12
-rw-r--r--debian/manpages1
-rw-r--r--debian/postrm4
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