Adding live-helper 1.0~a24-1.
This commit is contained in:
parent
403452b08b
commit
1e10fc3a45
6
Makefile
6
Makefile
|
@ -91,9 +91,9 @@ uninstall:
|
|||
update:
|
||||
set -e; for FILE in functions/*.sh examples/cron/*.sh manpages/*.de.* manpages/*.en.*; \
|
||||
do \
|
||||
sed -i -e 's/2007\\-08\\-13/2007\\-08\\-20/' \
|
||||
-e 's/13.08.2007/20.08.2007/' \
|
||||
-e 's/1.0~a23/1.0~a24/' \
|
||||
sed -i -e 's/2007\\-08\\-20/2007\\-08\\-27/' \
|
||||
-e 's/20.08.2007/27.08.2007/' \
|
||||
-e 's/1.0~a24/1.0~a25/' \
|
||||
$$FILE; \
|
||||
done
|
||||
|
||||
|
|
|
@ -1,3 +1,11 @@
|
|||
live-helper (1.0~a24-1) unstable; urgency=medium
|
||||
|
||||
* New upstream release:
|
||||
- lh_clean accepts more than one argument at the same time
|
||||
(Closes: #439947).
|
||||
|
||||
-- Daniel Baumann <daniel@debian.org> Mon, 20 Aug 2007 00:00:00 +0200
|
||||
|
||||
live-helper (1.0~a23-1) unstable; urgency=medium
|
||||
|
||||
* New upstream release.
|
||||
|
|
|
@ -1,3 +1,8 @@
|
|||
2007-08-28 Daniel Baumann <daniel@debian.org>
|
||||
|
||||
* helpers/lh_clean:
|
||||
- Accepting more than one parameter at the same time.
|
||||
|
||||
2007-08-14 Daniel Baumann <daniel@debian.org>
|
||||
|
||||
* helpers/*:
|
||||
|
|
|
@ -10,4 +10,4 @@
|
|||
set -e
|
||||
|
||||
PROGRAM="`basename ${0}`"
|
||||
VERSION="1.0~a23"
|
||||
VERSION="1.0~a24"
|
||||
|
|
129
helpers/lh_clean
129
helpers/lh_clean
|
@ -35,81 +35,84 @@ Set_defaults
|
|||
|
||||
rm -f .lock
|
||||
|
||||
case "${1}" in
|
||||
all)
|
||||
"${0}" chroot
|
||||
"${0}" binary
|
||||
"${0}" stage
|
||||
"${0}" source
|
||||
for ARGUMENT in ${@}
|
||||
do
|
||||
case "${ARGUMENT}" in
|
||||
all)
|
||||
"${0}" chroot
|
||||
"${0}" binary
|
||||
"${0}" stage
|
||||
"${0}" source
|
||||
|
||||
if [ -d chroot ]
|
||||
then
|
||||
mkdir -p .stage
|
||||
touch .stage/bootstrap
|
||||
fi
|
||||
;;
|
||||
if [ -d chroot ]
|
||||
then
|
||||
mkdir -p .stage
|
||||
touch .stage/bootstrap
|
||||
fi
|
||||
;;
|
||||
|
||||
cache)
|
||||
${LH_ROOT_COMMAND} rm -rf cache
|
||||
;;
|
||||
cache)
|
||||
${LH_ROOT_COMMAND} rm -rf cache
|
||||
;;
|
||||
|
||||
chroot)
|
||||
Echo_message "Cleaning chroot"
|
||||
${LH_ROOT_COMMAND} umount -f chroot/sys > /dev/null 2>&1 || true
|
||||
${LH_ROOT_COMMAND} umount -f chroot/proc/sys/fs/binfmt_misc > /dev/null 2>&1 || true
|
||||
${LH_ROOT_COMMAND} umount -f chroot/proc > /dev/null 2>&1 || true
|
||||
${LH_ROOT_COMMAND} umount -f chroot/lib/init/rw > /dev/null 2>&1 || true
|
||||
${LH_ROOT_COMMAND} umount -f chroot/dev/shm > /dev/null 2>&1 || true
|
||||
${LH_ROOT_COMMAND} umount -f chroot/dev/pts > /dev/null 2>&1 || true
|
||||
${LH_ROOT_COMMAND} umount -f chroot/dev > /dev/null 2>&1 || true
|
||||
chroot)
|
||||
Echo_message "Cleaning chroot"
|
||||
${LH_ROOT_COMMAND} umount -f chroot/sys > /dev/null 2>&1 || true
|
||||
${LH_ROOT_COMMAND} umount -f chroot/proc/sys/fs/binfmt_misc > /dev/null 2>&1 || true
|
||||
${LH_ROOT_COMMAND} umount -f chroot/proc > /dev/null 2>&1 || true
|
||||
${LH_ROOT_COMMAND} umount -f chroot/lib/init/rw > /dev/null 2>&1 || true
|
||||
${LH_ROOT_COMMAND} umount -f chroot/dev/shm > /dev/null 2>&1 || true
|
||||
${LH_ROOT_COMMAND} umount -f chroot/dev/pts > /dev/null 2>&1 || true
|
||||
${LH_ROOT_COMMAND} umount -f chroot/dev > /dev/null 2>&1 || true
|
||||
|
||||
${LH_ROOT_COMMAND} rm -rf chroot chroot.tmp
|
||||
${LH_ROOT_COMMAND} rm -rf chroot chroot.tmp
|
||||
|
||||
if [ "${PURGE}" != "true" ] && [ -d cache/stages_bootstrap ]
|
||||
then
|
||||
${LH_ROOT_COMMAND} cp -a cache/stages_bootstrap chroot
|
||||
mkdir -p .stage
|
||||
touch .stage/bootstrap
|
||||
fi
|
||||
if [ "${PURGE}" != "true" ] && [ -d cache/stages_bootstrap ]
|
||||
then
|
||||
${LH_ROOT_COMMAND} cp -a cache/stages_bootstrap chroot
|
||||
mkdir -p .stage
|
||||
touch .stage/bootstrap
|
||||
fi
|
||||
|
||||
rm -f .stage/chroot*
|
||||
;;
|
||||
rm -f .stage/chroot*
|
||||
;;
|
||||
|
||||
binary)
|
||||
${LH_ROOT_COMMAND} umount -f binary.tmp > /dev/null 2>&1 || true
|
||||
rm -rf binary.tmp binary.deb binary.udeb
|
||||
rm -f binary.iso
|
||||
rm -f binary.img
|
||||
rm -f binary*.tar.gz
|
||||
rm -f binary.sh
|
||||
binary)
|
||||
${LH_ROOT_COMMAND} umount -f binary.tmp > /dev/null 2>&1 || true
|
||||
rm -rf binary.tmp binary.deb binary.udeb
|
||||
rm -f binary.iso
|
||||
rm -f binary.img
|
||||
rm -f binary*.tar.gz
|
||||
rm -f binary.sh
|
||||
|
||||
rm -rf binary
|
||||
rm -rf tftpboot
|
||||
rm -rf binary
|
||||
rm -rf tftpboot
|
||||
|
||||
rm -f .stage/binary*
|
||||
;;
|
||||
rm -f .stage/binary*
|
||||
;;
|
||||
|
||||
purge)
|
||||
PURGE="true" "${0}" all
|
||||
"${0}" cache
|
||||
;;
|
||||
purge)
|
||||
PURGE="true" "${0}" all
|
||||
"${0}" cache
|
||||
;;
|
||||
|
||||
stage)
|
||||
rm -rf .stage
|
||||
;;
|
||||
stage)
|
||||
rm -rf .stage
|
||||
;;
|
||||
|
||||
source)
|
||||
rm -f source.iso
|
||||
rm -f source.img
|
||||
rm -f source*.tar
|
||||
rm -f source*.tar.gz
|
||||
source)
|
||||
rm -f source.iso
|
||||
rm -f source.img
|
||||
rm -f source*.tar
|
||||
rm -f source*.tar.gz
|
||||
|
||||
rm -rf source
|
||||
rm -rf source
|
||||
|
||||
rm -f .stage/source*
|
||||
;;
|
||||
rm -f .stage/source*
|
||||
;;
|
||||
|
||||
*)
|
||||
"${0}" all
|
||||
;;
|
||||
esac
|
||||
*)
|
||||
"${0}" all
|
||||
;;
|
||||
esac
|
||||
done
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.TH LH_BINARY 1 "13.08.2007" "1.0~a23" "live\-helper"
|
||||
.TH LH_BINARY 1 "20.08.2007" "1.0~a24" "live\-helper"
|
||||
|
||||
.SH NAME
|
||||
lh_binary \- Meta\-Helper f\[:u]r lh_binary_*
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.TH LH_BINARY 1 "2007\-08\-13" "1.0~a23" "live\-helper"
|
||||
.TH LH_BINARY 1 "2007\-08\-20" "1.0~a24" "live\-helper"
|
||||
|
||||
.SH NAME
|
||||
lh_binary \- meta\-helper for lh_binary_*
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.TH LH_BOOTSTRAP 1 "13.08.2007" "1.0~a23" "live\-helper"
|
||||
.TH LH_BOOTSTRAP 1 "20.08.2007" "1.0~a24" "live\-helper"
|
||||
|
||||
.SH NAME
|
||||
lh_bootstrap \- Meta\-Helper f\[:u]r lh_bootstrap_*
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.TH LH_BOOTSTRAP 1 "2007\-08\-13" "1.0~a23" "live\-helper"
|
||||
.TH LH_BOOTSTRAP 1 "2007\-08\-20" "1.0~a24" "live\-helper"
|
||||
|
||||
.SH NAME
|
||||
lh_bootstrap \- meta\-helper for lh_bootstrap_*
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.TH LH_BOOTSTRAP_CDEBOOTSTRAP 1 "13.08.2007" "1.0~a23" "live\-helper"
|
||||
.TH LH_BOOTSTRAP_CDEBOOTSTRAP 1 "20.08.2007" "1.0~a24" "live\-helper"
|
||||
|
||||
.SH NAME
|
||||
lh_bootstrap_cdebootstrap \- erstellt ein Debian-System mit \fIcdebootstrap\fR(1)
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.TH LH_BOOTSTRAP_CDEBOOTSTRAP 1 "2007\-08\-13" "1.0~a23" "live\-helper"
|
||||
.TH LH_BOOTSTRAP_CDEBOOTSTRAP 1 "2007\-08\-20" "1.0~a24" "live\-helper"
|
||||
|
||||
.SH NAME
|
||||
lh_bootstrap_cdebootstrap \- bootstrap a Debian system with \fIcdebootstrap\fR(1)
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.TH LH_BOOTSTRAP_DEBOOTSTRAP 1 "13.08.2007" "1.0~a23" "live\-helper"
|
||||
.TH LH_BOOTSTRAP_DEBOOTSTRAP 1 "20.08.2007" "1.0~a24" "live\-helper"
|
||||
|
||||
.SH NAME
|
||||
lh_bootstrap_debootstrap \- erstellt ein Debian-System mit \fIdebootstrap\fR(8)
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.TH LH_BOOTSTRAP_DEBOOTSTRAP 1 "2007\-08\-13" "1.0~a23" "live\-helper"
|
||||
.TH LH_BOOTSTRAP_DEBOOTSTRAP 1 "2007\-08\-20" "1.0~a24" "live\-helper"
|
||||
|
||||
.SH NAME
|
||||
lh_bootstrap_debootstrap \- bootstrap a Debian system with \fIdebootstrap\fR(8)
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.TH LH_BUILD 1 "13.08.2007" "1.0~a23" "live\-helper"
|
||||
.TH LH_BUILD 1 "20.08.2007" "1.0~a24" "live\-helper"
|
||||
|
||||
.SH NAME
|
||||
lh_build \- erstellen eines Live-Systemes
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.TH LH_BUILD 1 "2007\-08\-13" "1.0~a23" "live\-helper"
|
||||
.TH LH_BUILD 1 "2007\-08\-20" "1.0~a24" "live\-helper"
|
||||
|
||||
.SH NAME
|
||||
lh_build \- building a live system
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.TH LH_CHROOT 1 "13.08.2007" "1.0~a23" "live\-helper"
|
||||
.TH LH_CHROOT 1 "20.08.2007" "1.0~a24" "live\-helper"
|
||||
|
||||
.SH NAME
|
||||
lh_chroot \- Meta\-Helper f\[:u]r lh_chroot_*
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.TH LH_CHROOT 1 "2007\-08\-13" "1.0~a23" "live\-helper"
|
||||
.TH LH_CHROOT 1 "2007\-08\-20" "1.0~a24" "live\-helper"
|
||||
|
||||
.SH NAME
|
||||
lh_chroot \- meta\-helper for lh_chroot_*
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.TH LH_CLEAN 1 "13.08.2007" "1.0~a23" "live\-helper"
|
||||
.TH LH_CLEAN 1 "20.08.2007" "1.0~a24" "live\-helper"
|
||||
|
||||
.SH NAME
|
||||
lh_clean \- r\[:a]umt das Build-Verzeichnis auf
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.TH LH_CLEAN 1 "2007\-08\-13" "1.0~a23" "live\-helper"
|
||||
.TH LH_CLEAN 1 "2007\-08\-20" "1.0~a24" "live\-helper"
|
||||
|
||||
.SH NAME
|
||||
lh_clean \- clean up system build directories
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.TH LH_CONFIG 1 "13.08.2007" "1.0~a23" "live\-helper"
|
||||
.TH LH_CONFIG 1 "20.08.2007" "1.0~a24" "live\-helper"
|
||||
|
||||
.SH NAME
|
||||
lh_config \- erstellt live-helper(7) Konfiguration
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.TH LH_CONFIG 1 "2007\-08\-13" "1.0~a23" "live\-helper"
|
||||
.TH LH_CONFIG 1 "2007\-08\-20" "1.0~a24" "live\-helper"
|
||||
|
||||
.SH NAME
|
||||
lh_config \- create configuration for live-helper(7)
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.TH LH_SOURCE 1 "13.08.2007" "1.0~a23" "live\-helper"
|
||||
.TH LH_SOURCE 1 "20.08.2007" "1.0~a24" "live\-helper"
|
||||
|
||||
.SH NAME
|
||||
lh_source \- Meta\-Helper f\[:u]r lh_source_*
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.TH LH_SOURCE 1 "2007\-08\-13" "1.0~a23" "live\-helper"
|
||||
.TH LH_SOURCE 1 "2007\-08\-20" "1.0~a24" "live\-helper"
|
||||
|
||||
.SH NAME
|
||||
lh_source \- meta\-helper for lh_source_*
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.TH LH_TESTROOT 1 "13.08.2007" "1.0~a23" "live\-helper"
|
||||
.TH LH_TESTROOT 1 "20.08.2007" "1.0~a24" "live\-helper"
|
||||
|
||||
.SH NAME
|
||||
lh_testroot \- stellt sicher dass das System als root gebaut wird
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.TH LH_TESTROOT 1 "2007\-08\-13" "1.0~a23" "live\-helper"
|
||||
.TH LH_TESTROOT 1 "2007\-08\-20" "1.0~a24" "live\-helper"
|
||||
|
||||
.SH NAME
|
||||
lh_testroot \- ensure that a system is built as root
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.TH LIVE\-HELPER 7 "13.08.2007" "1.0~a23" "live\-helper"
|
||||
.TH LIVE\-HELPER 7 "20.08.2007" "1.0~a24" "live\-helper"
|
||||
|
||||
.SH NAME
|
||||
live\-helper \- Debian Live Helper-Programme
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.TH LIVE\-HELPER 7 "2007\-08\-13" "1.0~a23" "live\-helper"
|
||||
.TH LIVE\-HELPER 7 "2007\-08\-20" "1.0~a24" "live\-helper"
|
||||
|
||||
.SH NAME
|
||||
live\-helper \- Debian Live helper programs
|
||||
|
|
Loading…
Reference in New Issue