Adding live-helper 1.0~a26-1.
This commit is contained in:
parent
cac98503f3
commit
c7f53a9af5
6
Makefile
6
Makefile
|
@ -91,9 +91,9 @@ uninstall:
|
||||||
update:
|
update:
|
||||||
set -e; for FILE in functions/*.sh examples/cron/*.sh manpages/*.de.* manpages/*.en.*; \
|
set -e; for FILE in functions/*.sh examples/cron/*.sh manpages/*.de.* manpages/*.en.*; \
|
||||||
do \
|
do \
|
||||||
sed -i -e 's/2007\\-08\\-27/2007\\-09\\-03/' \
|
sed -i -e 's/2007\\-09\\-03/2007\\-09\\-10/' \
|
||||||
-e 's/27.08.2007/03.09.2007/' \
|
-e 's/03.09.2007/10.09.2007/' \
|
||||||
-e 's/1.0~a25/1.0~a26/' \
|
-e 's/1.0~a26/1.0~a27/' \
|
||||||
$$FILE; \
|
$$FILE; \
|
||||||
done
|
done
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,9 @@
|
||||||
|
live-helper (1.0~a26-1) unstable; urgency=medium
|
||||||
|
|
||||||
|
* New upstream release.
|
||||||
|
|
||||||
|
-- Daniel Baumann <daniel@debian.org> Mon, 3 Sep 2007 00:00:00 +0200
|
||||||
|
|
||||||
live-helper (1.0~a25-1) unstable; urgency=medium
|
live-helper (1.0~a25-1) unstable; urgency=medium
|
||||||
|
|
||||||
* New upstream release.
|
* New upstream release.
|
||||||
|
|
|
@ -1,3 +1,14 @@
|
||||||
|
2007-09-04 Daniel Baumann <daniel@debian.org>
|
||||||
|
|
||||||
|
* helpers/lh_binary_syslinux, lh_config:
|
||||||
|
- Applied fixes from Peter Holik <peter@holik.at>.
|
||||||
|
* helpers/lh_chroot_local-packages:
|
||||||
|
- Added check for actual packages as mentioned by Peter Holik
|
||||||
|
<peter@holik.at>.
|
||||||
|
* helpers/lh_bootstrap_cache:
|
||||||
|
- Added forgotten creation of the stagefile as mentioned by
|
||||||
|
Peter Holik <peter@holik.at>.
|
||||||
|
|
||||||
2007-08-28 Daniel Baumann <daniel@debian.org>
|
2007-08-28 Daniel Baumann <daniel@debian.org>
|
||||||
|
|
||||||
* functions/defaults.sh:
|
* functions/defaults.sh:
|
||||||
|
|
|
@ -10,4 +10,4 @@
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
PROGRAM="`basename ${0}`"
|
PROGRAM="`basename ${0}`"
|
||||||
VERSION="1.0~a25"
|
VERSION="1.0~a26"
|
||||||
|
|
|
@ -381,7 +381,7 @@ case "${LH_BINARY_IMAGES}" in
|
||||||
if [ "${LH_SYSLINUX_SPLASH}" = "none" ]
|
if [ "${LH_SYSLINUX_SPLASH}" = "none" ]
|
||||||
then
|
then
|
||||||
rm -f binary/isolinux/splash.rle
|
rm -f binary/isolinux/splash.rle
|
||||||
sed -e "s/.*splash.*//" binary/isolinux/boot.txt
|
sed -i -e "s/.*splash.*//" binary/isolinux/boot.txt
|
||||||
else
|
else
|
||||||
cp -f "${LH_SYSLINUX_SPLASH}" binary/isolinux/splash.rle
|
cp -f "${LH_SYSLINUX_SPLASH}" binary/isolinux/splash.rle
|
||||||
fi
|
fi
|
||||||
|
|
|
@ -90,6 +90,9 @@ do
|
||||||
then
|
then
|
||||||
${LH_ROOT_COMMAND} chown -R `whoami`:`whoami` cache/stages_bootstrap
|
${LH_ROOT_COMMAND} chown -R `whoami`:`whoami` cache/stages_bootstrap
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# Creating stage file
|
||||||
|
Create_stagefile .stage/bootstrap_cache.save
|
||||||
fi
|
fi
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
|
@ -53,8 +53,15 @@ then
|
||||||
Restore_cache cache/packages_local-packages
|
Restore_cache cache/packages_local-packages
|
||||||
|
|
||||||
# Copying packages
|
# Copying packages
|
||||||
cp config/chroot_local-packages/*_"${LH_ARCHITECTURE}".deb chroot/root
|
if ls config/chroot_local-packages/*_"${LH_ARCHITECTURE}".deb > /dev/null 2>&1
|
||||||
cp config/chroot_local-packages/*_all.deb chroot/root
|
then
|
||||||
|
cp config/chroot_local-packages/*_"${LH_ARCHITECTURE}".deb chroot/root
|
||||||
|
fi
|
||||||
|
|
||||||
|
if ls config/chroot_local-packages/*_all.deb > /dev/null 2>&1
|
||||||
|
then
|
||||||
|
cp config/chroot_local-packages/*_all.deb chroot/root
|
||||||
|
fi
|
||||||
|
|
||||||
# Installing packages
|
# Installing packages
|
||||||
Chroot "find /root -name *.deb" > chroot/root/local-packages
|
Chroot "find /root -name *.deb" > chroot/root/local-packages
|
||||||
|
|
|
@ -899,6 +899,10 @@ LH_NET_SERVER="${LH_NET_SERVER}"
|
||||||
# (Default: empty)
|
# (Default: empty)
|
||||||
LH_SYSLINUX_SPLASH="${LH_SYSLINUX_SPLASH}"
|
LH_SYSLINUX_SPLASH="${LH_SYSLINUX_SPLASH}"
|
||||||
|
|
||||||
|
# \$LH_SYSLINUX_TIMEOUT: set custom syslinux timeout
|
||||||
|
# (Default: 0)
|
||||||
|
LH_SYSLINUX_TIMEOUT="${LH_SYSLINUX_TIMEOUT}"
|
||||||
|
|
||||||
# \$LH_USERNAME: set username
|
# \$LH_USERNAME: set username
|
||||||
# (Default: ${LH_USERNAME})
|
# (Default: ${LH_USERNAME})
|
||||||
LH_USERNAME="${LH_USERNAME}"
|
LH_USERNAME="${LH_USERNAME}"
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
.TH LH_BINARY 1 "27.08.2007" "1.0~a25" "live\-helper"
|
.TH LH_BINARY 1 "03.09.2007" "1.0~a26" "live\-helper"
|
||||||
|
|
||||||
.SH NAME
|
.SH NAME
|
||||||
lh_binary \- Meta\-Helper f\[:u]r lh_binary_*
|
lh_binary \- Meta\-Helper f\[:u]r lh_binary_*
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
.TH LH_BINARY 1 "2007\-08\-27" "1.0~a25" "live\-helper"
|
.TH LH_BINARY 1 "2007\-09\-03" "1.0~a26" "live\-helper"
|
||||||
|
|
||||||
.SH NAME
|
.SH NAME
|
||||||
lh_binary \- meta\-helper for lh_binary_*
|
lh_binary \- meta\-helper for lh_binary_*
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
.TH LH_BOOTSTRAP 1 "27.08.2007" "1.0~a25" "live\-helper"
|
.TH LH_BOOTSTRAP 1 "03.09.2007" "1.0~a26" "live\-helper"
|
||||||
|
|
||||||
.SH NAME
|
.SH NAME
|
||||||
lh_bootstrap \- Meta\-Helper f\[:u]r lh_bootstrap_*
|
lh_bootstrap \- Meta\-Helper f\[:u]r lh_bootstrap_*
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
.TH LH_BOOTSTRAP 1 "2007\-08\-27" "1.0~a25" "live\-helper"
|
.TH LH_BOOTSTRAP 1 "2007\-09\-03" "1.0~a26" "live\-helper"
|
||||||
|
|
||||||
.SH NAME
|
.SH NAME
|
||||||
lh_bootstrap \- meta\-helper for lh_bootstrap_*
|
lh_bootstrap \- meta\-helper for lh_bootstrap_*
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
.TH LH_BOOTSTRAP_CDEBOOTSTRAP 1 "27.08.2007" "1.0~a25" "live\-helper"
|
.TH LH_BOOTSTRAP_CDEBOOTSTRAP 1 "03.09.2007" "1.0~a26" "live\-helper"
|
||||||
|
|
||||||
.SH NAME
|
.SH NAME
|
||||||
lh_bootstrap_cdebootstrap \- erstellt ein Debian-System mit \fIcdebootstrap\fR(1)
|
lh_bootstrap_cdebootstrap \- erstellt ein Debian-System mit \fIcdebootstrap\fR(1)
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
.TH LH_BOOTSTRAP_CDEBOOTSTRAP 1 "2007\-08\-27" "1.0~a25" "live\-helper"
|
.TH LH_BOOTSTRAP_CDEBOOTSTRAP 1 "2007\-09\-03" "1.0~a26" "live\-helper"
|
||||||
|
|
||||||
.SH NAME
|
.SH NAME
|
||||||
lh_bootstrap_cdebootstrap \- bootstrap a Debian system with \fIcdebootstrap\fR(1)
|
lh_bootstrap_cdebootstrap \- bootstrap a Debian system with \fIcdebootstrap\fR(1)
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
.TH LH_BOOTSTRAP_DEBOOTSTRAP 1 "27.08.2007" "1.0~a25" "live\-helper"
|
.TH LH_BOOTSTRAP_DEBOOTSTRAP 1 "03.09.2007" "1.0~a26" "live\-helper"
|
||||||
|
|
||||||
.SH NAME
|
.SH NAME
|
||||||
lh_bootstrap_debootstrap \- erstellt ein Debian-System mit \fIdebootstrap\fR(8)
|
lh_bootstrap_debootstrap \- erstellt ein Debian-System mit \fIdebootstrap\fR(8)
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
.TH LH_BOOTSTRAP_DEBOOTSTRAP 1 "2007\-08\-27" "1.0~a25" "live\-helper"
|
.TH LH_BOOTSTRAP_DEBOOTSTRAP 1 "2007\-09\-03" "1.0~a26" "live\-helper"
|
||||||
|
|
||||||
.SH NAME
|
.SH NAME
|
||||||
lh_bootstrap_debootstrap \- bootstrap a Debian system with \fIdebootstrap\fR(8)
|
lh_bootstrap_debootstrap \- bootstrap a Debian system with \fIdebootstrap\fR(8)
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
.TH LH_BUILD 1 "27.08.2007" "1.0~a25" "live\-helper"
|
.TH LH_BUILD 1 "03.09.2007" "1.0~a26" "live\-helper"
|
||||||
|
|
||||||
.SH NAME
|
.SH NAME
|
||||||
lh_build \- erstellen eines Live-Systemes
|
lh_build \- erstellen eines Live-Systemes
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
.TH LH_BUILD 1 "2007\-08\-27" "1.0~a25" "live\-helper"
|
.TH LH_BUILD 1 "2007\-09\-03" "1.0~a26" "live\-helper"
|
||||||
|
|
||||||
.SH NAME
|
.SH NAME
|
||||||
lh_build \- building a live system
|
lh_build \- building a live system
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
.TH LH_CHROOT 1 "27.08.2007" "1.0~a25" "live\-helper"
|
.TH LH_CHROOT 1 "03.09.2007" "1.0~a26" "live\-helper"
|
||||||
|
|
||||||
.SH NAME
|
.SH NAME
|
||||||
lh_chroot \- Meta\-Helper f\[:u]r lh_chroot_*
|
lh_chroot \- Meta\-Helper f\[:u]r lh_chroot_*
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
.TH LH_CHROOT 1 "2007\-08\-27" "1.0~a25" "live\-helper"
|
.TH LH_CHROOT 1 "2007\-09\-03" "1.0~a26" "live\-helper"
|
||||||
|
|
||||||
.SH NAME
|
.SH NAME
|
||||||
lh_chroot \- meta\-helper for lh_chroot_*
|
lh_chroot \- meta\-helper for lh_chroot_*
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
.TH LH_CLEAN 1 "27.08.2007" "1.0~a25" "live\-helper"
|
.TH LH_CLEAN 1 "03.09.2007" "1.0~a26" "live\-helper"
|
||||||
|
|
||||||
.SH NAME
|
.SH NAME
|
||||||
lh_clean \- r\[:a]umt das Build-Verzeichnis auf
|
lh_clean \- r\[:a]umt das Build-Verzeichnis auf
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
.TH LH_CLEAN 1 "2007\-08\-27" "1.0~a25" "live\-helper"
|
.TH LH_CLEAN 1 "2007\-09\-03" "1.0~a26" "live\-helper"
|
||||||
|
|
||||||
.SH NAME
|
.SH NAME
|
||||||
lh_clean \- clean up system build directories
|
lh_clean \- clean up system build directories
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
.TH LH_CONFIG 1 "27.08.2007" "1.0~a25" "live\-helper"
|
.TH LH_CONFIG 1 "03.09.2007" "1.0~a26" "live\-helper"
|
||||||
|
|
||||||
.SH NAME
|
.SH NAME
|
||||||
lh_config \- erstellt live-helper(7) Konfiguration
|
lh_config \- erstellt live-helper(7) Konfiguration
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
.TH LH_CONFIG 1 "2007\-08\-27" "1.0~a25" "live\-helper"
|
.TH LH_CONFIG 1 "2007\-09\-03" "1.0~a26" "live\-helper"
|
||||||
|
|
||||||
.SH NAME
|
.SH NAME
|
||||||
lh_config \- create configuration for live-helper(7)
|
lh_config \- create configuration for live-helper(7)
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
.TH LH_SOURCE 1 "27.08.2007" "1.0~a25" "live\-helper"
|
.TH LH_SOURCE 1 "03.09.2007" "1.0~a26" "live\-helper"
|
||||||
|
|
||||||
.SH NAME
|
.SH NAME
|
||||||
lh_source \- Meta\-Helper f\[:u]r lh_source_*
|
lh_source \- Meta\-Helper f\[:u]r lh_source_*
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
.TH LH_SOURCE 1 "2007\-08\-27" "1.0~a25" "live\-helper"
|
.TH LH_SOURCE 1 "2007\-09\-03" "1.0~a26" "live\-helper"
|
||||||
|
|
||||||
.SH NAME
|
.SH NAME
|
||||||
lh_source \- meta\-helper for lh_source_*
|
lh_source \- meta\-helper for lh_source_*
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
.TH LH_TESTROOT 1 "27.08.2007" "1.0~a25" "live\-helper"
|
.TH LH_TESTROOT 1 "03.09.2007" "1.0~a26" "live\-helper"
|
||||||
|
|
||||||
.SH NAME
|
.SH NAME
|
||||||
lh_testroot \- stellt sicher dass das System als root gebaut wird
|
lh_testroot \- stellt sicher dass das System als root gebaut wird
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
.TH LH_TESTROOT 1 "2007\-08\-27" "1.0~a25" "live\-helper"
|
.TH LH_TESTROOT 1 "2007\-09\-03" "1.0~a26" "live\-helper"
|
||||||
|
|
||||||
.SH NAME
|
.SH NAME
|
||||||
lh_testroot \- ensure that a system is built as root
|
lh_testroot \- ensure that a system is built as root
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
.TH LIVE\-HELPER 7 "27.08.2007" "1.0~a25" "live\-helper"
|
.TH LIVE\-HELPER 7 "03.09.2007" "1.0~a26" "live\-helper"
|
||||||
|
|
||||||
.SH NAME
|
.SH NAME
|
||||||
live\-helper \- Debian Live Helper-Programme
|
live\-helper \- Debian Live Helper-Programme
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
.TH LIVE\-HELPER 7 "2007\-08\-27" "1.0~a25" "live\-helper"
|
.TH LIVE\-HELPER 7 "2007\-09\-03" "1.0~a26" "live\-helper"
|
||||||
|
|
||||||
.SH NAME
|
.SH NAME
|
||||||
live\-helper \- Debian Live helper programs
|
live\-helper \- Debian Live helper programs
|
||||||
|
|
Loading…
Reference in New Issue