Adding live-helper 1.0~a25-1.
This commit is contained in:
parent
1e10fc3a45
commit
cac98503f3
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\\-20/2007\\-08\\-27/' \
|
||||
-e 's/20.08.2007/27.08.2007/' \
|
||||
-e 's/1.0~a24/1.0~a25/' \
|
||||
sed -i -e 's/2007\\-08\\-27/2007\\-09\\-03/' \
|
||||
-e 's/27.08.2007/03.09.2007/' \
|
||||
-e 's/1.0~a25/1.0~a26/' \
|
||||
$$FILE; \
|
||||
done
|
||||
|
||||
|
|
|
@ -1,3 +1,9 @@
|
|||
live-helper (1.0~a25-1) unstable; urgency=medium
|
||||
|
||||
* New upstream release.
|
||||
|
||||
-- Daniel Baumann <daniel@debian.org> Mon, 27 Aug 2007 00:00:00 +0200
|
||||
|
||||
live-helper (1.0~a24-1) unstable; urgency=medium
|
||||
|
||||
* New upstream release:
|
||||
|
|
|
@ -10,7 +10,7 @@ XS-VCS-Browse: http://svn.debian.org/wsvn/debian-live/dists/trunk/live-helper/
|
|||
|
||||
Package: live-helper
|
||||
Architecture: all
|
||||
Depends: cdebootstrap | debootstrap
|
||||
Depends: debootstrap | cdebootstrap
|
||||
Suggests: dosfstools, genisoimage | mkisofs, memtest86+ | memtest86, mtools, parted, squashfs-tools | genext2fs, syslinux | grub
|
||||
Description: Debian Live helper programs
|
||||
Live-helper is a collection of programs that can be used to build Debian Live
|
||||
|
|
|
@ -1,7 +1,18 @@
|
|||
2007-08-28 Daniel Baumann <daniel@debian.org>
|
||||
|
||||
* functions/defaults.sh:
|
||||
- Prefering debootstrap over cdebootstrap.
|
||||
* helpers/lh_chroot_local-packages:
|
||||
- Only copy packages matching the build-architecture. This way, you
|
||||
can store local packages for different architectures in the very
|
||||
same config directory.
|
||||
* Uploading 1.0~a25-1.
|
||||
|
||||
2007-08-28 Daniel Baumann <daniel@debian.org>
|
||||
|
||||
* helpers/lh_clean:
|
||||
- Accepting more than one parameter at the same time.
|
||||
* Uploading 1.0~a24-1.
|
||||
|
||||
2007-08-14 Daniel Baumann <daniel@debian.org>
|
||||
|
||||
|
|
|
@ -10,4 +10,4 @@
|
|||
set -e
|
||||
|
||||
PROGRAM="`basename ${0}`"
|
||||
VERSION="1.0~a24"
|
||||
VERSION="1.0~a25"
|
||||
|
|
|
@ -102,12 +102,12 @@ Set_defaults ()
|
|||
then
|
||||
case "${LH_MODE}" in
|
||||
debian|debian-edu)
|
||||
if [ -x "/usr/bin/cdebootstrap" ]
|
||||
then
|
||||
LH_BOOTSTRAP="cdebootstrap"
|
||||
elif [ -x "/usr/sbin/debootstrap" ]
|
||||
if [ -x "/usr/sbin/debootstrap" ]
|
||||
then
|
||||
LH_BOOTSTRAP="debootstrap"
|
||||
elif [ -x "/usr/bin/cdebootstrap" ]
|
||||
then
|
||||
LH_BOOTSTRAP="cdebootstrap"
|
||||
else
|
||||
echo "E: Can't process file /usr/bin/cdebootstrap or /usr/sbin/debootstrap (FIXME)"
|
||||
exit 1
|
||||
|
@ -115,12 +115,12 @@ Set_defaults ()
|
|||
;;
|
||||
|
||||
ubuntu)
|
||||
if [ -x "/usr/bin/cdebootstrap" ] && [ -d /usr/share/cdebootstrap/generic-ubuntu ]
|
||||
then
|
||||
LH_BOOTSTRAP="cdebootstrap"
|
||||
elif [ -x "/usr/sbin/debootstrap" ] && [ -f /usr/lib/debootstrap/scripts/gutsy ]
|
||||
if [ -x "/usr/sbin/debootstrap" ] && [ -f /usr/lib/debootstrap/scripts/gutsy ]
|
||||
then
|
||||
LH_BOOTSTRAP="debootstrap"
|
||||
elif [ -x "/usr/bin/cdebootstrap" ] && [ -d /usr/share/cdebootstrap/generic-ubuntu ]
|
||||
then
|
||||
LH_BOOTSTRAP="cdebootstrap"
|
||||
else
|
||||
echo "E: Your version of debootstrap or cdebootstrap is outdated and does not support ubuntu."
|
||||
exit 1
|
||||
|
|
|
@ -18,7 +18,7 @@ Help ()
|
|||
|
||||
if [ -n "${USAGE}" ]
|
||||
then
|
||||
echo " ${USAGE}"
|
||||
echo -e "${USAGE}"
|
||||
echo
|
||||
fi
|
||||
|
||||
|
|
|
@ -53,7 +53,8 @@ then
|
|||
Restore_cache cache/packages_local-packages
|
||||
|
||||
# Copying packages
|
||||
cp config/chroot_local-packages/*.deb chroot/root
|
||||
cp config/chroot_local-packages/*_"${LH_ARCHITECTURE}".deb chroot/root
|
||||
cp config/chroot_local-packages/*_all.deb chroot/root
|
||||
|
||||
# Installing packages
|
||||
Chroot "find /root -name *.deb" > chroot/root/local-packages
|
||||
|
|
|
@ -20,7 +20,82 @@ done
|
|||
# Setting static variables
|
||||
DESCRIPTION="create configuration for live-helper(7)"
|
||||
HELP="FIXME"
|
||||
USAGE="${PROGRAM} [--apt apt|aptitude] [--apt-ftp-proxy URL] [--apt-http-proxy URL] [--apt-pdiffs enabled|disabled] [--apt-pipeline FIXME] [--apt-recommends enabled|disabled] [--apt-secure enabled|disabled] [-a|--architecture ARCHITECTURE] [-b|--binary-images iso|net|tar|usb-hdd] [--binary-indices enabled|disabled] [--bootappend PARAMETER|\"PARAMETERS\"] [--bootloader grub|syslinux|yaboot] [--bootstrap cdebootstrap|debootstrap] [--bootstrap-config FILE] [-f|--bootstrap-flavour minimal|standard] [--bootstrap-keyring PACKAGE] [--breakpoints] [--cache enabled|disabled] [--cache-indices enabled|disabled] [--cache-packages enabled|disabled] [--cache-stages STAGE|\"STAGES\"] [--chroot-build enabled|disabled] [--chroot-filesystem ext2|ext3|squashfs|plain] [-c|--conffile FILE] [--debconf-frontend dialog|editor|noninteractive|readline] [--debconf-nowarnings enabled|disabled] [--debconf-priority low|medium|high|critical] [--debian-installer enabled|disabled] [--debug] [-d|--distribution CODENAME] [-e|--encryption aes128|aes192|aes256] [--force] [--genisoimage genisomage|mkisofs] [--grub-splash FILE] [--hooks FILE] [--hostname NAME] [--includes PATH] [--initramfs auto|live-initramfs|casper] [--interactive shell] [--iso-application NAME] [--iso-preparer NAME] [--iso-publisher NAME] [--iso-volume NAME] [--keyring-packages PACKAGE|\"PACKAGES\"] [-l|--language LANGUAGE] [-k|--linux-flavours FLAVOUR|\"FLAVOURS\"] [--linux-packages \"PACKAGES\"] [--losetup losetup|losetup.orig] [--memtest memtest86+|memtest86] [-m|--mirror-binary-security URL] [--mirror-binary URL] [--mirror-bootstrap-security URL] [--mirror-bootstrap URL] [--mode debian|debian-edu|ubuntu] [--net-filesystem nfs|cfs] [--net-mountoptions OPTIONS] [--net-path PATH] [--net-server IP|HOSTNAME] [-p|--packages-lists FILE] [--packages PACKAGE|\"PACKAGES\"] [--quiet] [--root-command sudo] [--sections SECTION|\"SECTIONS\"] [--security enabled|disabled] [--source enabled|disabled] [-s|--source-images iso|net|tar|usb-hdd] [--symlinks enabled|disabled] [--syslinux-splash FILE] [--syslinux-timeout MILISECONDS] [--sysvinit enabled|disabled] [--tasksel aptitude|tasksel] [--tasks TASK] [--templates PATH] [--union-filesystem aufs|unionfs] [--username NAME] [--verbose]"
|
||||
USAGE="${PROGRAM} [--apt apt|aptitude]\n\
|
||||
\t [--apt-ftp-proxy URL]\n\
|
||||
\t [--apt-http-proxy URL]\n\
|
||||
\t [--apt-pdiffs enabled|disabled]\n\
|
||||
\t [--apt-pipeline FIXME]\n\
|
||||
\t [--apt-recommends enabled|disabled]\n\
|
||||
\t [--apt-secure enabled|disabled]\n\
|
||||
\t [-a|--architecture ARCHITECTURE]\n\
|
||||
\t [-b|--binary-images iso|net|tar|usb-hdd]\n\
|
||||
\t [--binary-indices enabled|disabled]\n\
|
||||
\t [--bootappend PARAMETER|\"PARAMETERS\"]\n\
|
||||
\t [--bootloader grub|syslinux|yaboot]\n\
|
||||
\t [--bootstrap cdebootstrap|debootstrap]\n\
|
||||
\t [--bootstrap-config FILE]\n\
|
||||
\t [-f|--bootstrap-flavour minimal|standard]\n\
|
||||
\t [--bootstrap-keyring PACKAGE]\n\
|
||||
\t [--breakpoints]\n\
|
||||
\t [--cache enabled|disabled]\n\
|
||||
\t [--cache-indices enabled|disabled]\n\
|
||||
\t [--cache-packages enabled|disabled]\n\
|
||||
\t [--cache-stages STAGE|\"STAGES\"]\n\
|
||||
\t [--chroot-build enabled|disabled]\n\
|
||||
\t [--chroot-filesystem ext2|ext3|squashfs|plain]\n\
|
||||
\t [-c|--conffile FILE]\n\
|
||||
\t [--debconf-frontend dialog|editor|noninteractive|readline]\n\
|
||||
\t [--debconf-nowarnings enabled|disabled]\n\
|
||||
\t [--debconf-priority low|medium|high|critical]\n\
|
||||
\t [--debian-installer enabled|disabled]\n\
|
||||
\t [--debug]\n\
|
||||
\t [-d|--distribution CODENAME]\n\
|
||||
\t [-e|--encryption aes128|aes192|aes256]\n\
|
||||
\t [--force]\n\
|
||||
\t [--genisoimage genisomage|mkisofs]\n\
|
||||
\t [--grub-splash FILE]\n\
|
||||
\t [--hooks FILE]\n\
|
||||
\t [--hostname NAME]\n\
|
||||
\t [--includes PATH]\n\
|
||||
\t [--initramfs auto|live-initramfs|casper]\n\
|
||||
\t [--interactive shell]\n\
|
||||
\t [--iso-application NAME]\n\
|
||||
\t [--iso-preparer NAME]\n\
|
||||
\t [--iso-publisher NAME]\n\
|
||||
\t [--iso-volume NAME]\n\
|
||||
\t [--keyring-packages PACKAGE|\"PACKAGES\"]\n\
|
||||
\t [-l|--language LANGUAGE]\n\
|
||||
\t [-k|--linux-flavours FLAVOUR|\"FLAVOURS\"]\n\
|
||||
\t [--linux-packages \"PACKAGES\"]\n\
|
||||
\t [--losetup losetup|losetup.orig]\n\
|
||||
\t [--memtest memtest86+|memtest86]\n\
|
||||
\t [-m|--mirror-binary-security URL]\n\
|
||||
\t [--mirror-binary URL]\n\
|
||||
\t [--mirror-bootstrap-security URL]\n\
|
||||
\t [--mirror-bootstrap URL]\n\
|
||||
\t [--mode debian|debian-edu|ubuntu]\n\
|
||||
\t [--net-filesystem nfs|cfs]\n\
|
||||
\t [--net-mountoptions OPTIONS]\n\
|
||||
\t [--net-path PATH]\n\
|
||||
\t [--net-server IP|HOSTNAME]\n\
|
||||
\t [-p|--packages-lists FILE]\n\
|
||||
\t [--packages PACKAGE|\"PACKAGES\"]\n\
|
||||
\t [--quiet]\n\
|
||||
\t [--root-command sudo]\n\
|
||||
\t [--sections SECTION|\"SECTIONS\"]\n\
|
||||
\t [--security enabled|disabled]\n\
|
||||
\t [--source enabled|disabled]\n\
|
||||
\t [-s|--source-images iso|net|tar|usb-hdd]\n\
|
||||
\t [--symlinks enabled|disabled]\n\
|
||||
\t [--syslinux-splash FILE]\n\
|
||||
\t [--syslinux-timeout MILISECONDS]\n\
|
||||
\t [--sysvinit enabled|disabled]\n\
|
||||
\t [--tasksel aptitude|tasksel]\n\
|
||||
\t [--tasks TASK]\n\
|
||||
\t [--templates PATH]\n\
|
||||
\t [--union-filesystem aufs|unionfs]\n\
|
||||
\t [--username NAME]\n\
|
||||
\t [--verbose]"
|
||||
|
||||
Local_arguments ()
|
||||
{
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
|
||||
set -e
|
||||
|
||||
echo "make-live is deprecated."
|
||||
echo "make-live is obsolete."
|
||||
echo "Use lh_config and lh_build instead."
|
||||
|
||||
exit 1
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.TH LH_BINARY 1 "20.08.2007" "1.0~a24" "live\-helper"
|
||||
.TH LH_BINARY 1 "27.08.2007" "1.0~a25" "live\-helper"
|
||||
|
||||
.SH NAME
|
||||
lh_binary \- Meta\-Helper f\[:u]r lh_binary_*
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.TH LH_BINARY 1 "2007\-08\-20" "1.0~a24" "live\-helper"
|
||||
.TH LH_BINARY 1 "2007\-08\-27" "1.0~a25" "live\-helper"
|
||||
|
||||
.SH NAME
|
||||
lh_binary \- meta\-helper for lh_binary_*
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.TH LH_BOOTSTRAP 1 "20.08.2007" "1.0~a24" "live\-helper"
|
||||
.TH LH_BOOTSTRAP 1 "27.08.2007" "1.0~a25" "live\-helper"
|
||||
|
||||
.SH NAME
|
||||
lh_bootstrap \- Meta\-Helper f\[:u]r lh_bootstrap_*
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.TH LH_BOOTSTRAP 1 "2007\-08\-20" "1.0~a24" "live\-helper"
|
||||
.TH LH_BOOTSTRAP 1 "2007\-08\-27" "1.0~a25" "live\-helper"
|
||||
|
||||
.SH NAME
|
||||
lh_bootstrap \- meta\-helper for lh_bootstrap_*
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.TH LH_BOOTSTRAP_CDEBOOTSTRAP 1 "20.08.2007" "1.0~a24" "live\-helper"
|
||||
.TH LH_BOOTSTRAP_CDEBOOTSTRAP 1 "27.08.2007" "1.0~a25" "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\-20" "1.0~a24" "live\-helper"
|
||||
.TH LH_BOOTSTRAP_CDEBOOTSTRAP 1 "2007\-08\-27" "1.0~a25" "live\-helper"
|
||||
|
||||
.SH NAME
|
||||
lh_bootstrap_cdebootstrap \- bootstrap a Debian system with \fIcdebootstrap\fR(1)
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.TH LH_BOOTSTRAP_DEBOOTSTRAP 1 "20.08.2007" "1.0~a24" "live\-helper"
|
||||
.TH LH_BOOTSTRAP_DEBOOTSTRAP 1 "27.08.2007" "1.0~a25" "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\-20" "1.0~a24" "live\-helper"
|
||||
.TH LH_BOOTSTRAP_DEBOOTSTRAP 1 "2007\-08\-27" "1.0~a25" "live\-helper"
|
||||
|
||||
.SH NAME
|
||||
lh_bootstrap_debootstrap \- bootstrap a Debian system with \fIdebootstrap\fR(8)
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.TH LH_BUILD 1 "20.08.2007" "1.0~a24" "live\-helper"
|
||||
.TH LH_BUILD 1 "27.08.2007" "1.0~a25" "live\-helper"
|
||||
|
||||
.SH NAME
|
||||
lh_build \- erstellen eines Live-Systemes
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.TH LH_BUILD 1 "2007\-08\-20" "1.0~a24" "live\-helper"
|
||||
.TH LH_BUILD 1 "2007\-08\-27" "1.0~a25" "live\-helper"
|
||||
|
||||
.SH NAME
|
||||
lh_build \- building a live system
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.TH LH_CHROOT 1 "20.08.2007" "1.0~a24" "live\-helper"
|
||||
.TH LH_CHROOT 1 "27.08.2007" "1.0~a25" "live\-helper"
|
||||
|
||||
.SH NAME
|
||||
lh_chroot \- Meta\-Helper f\[:u]r lh_chroot_*
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.TH LH_CHROOT 1 "2007\-08\-20" "1.0~a24" "live\-helper"
|
||||
.TH LH_CHROOT 1 "2007\-08\-27" "1.0~a25" "live\-helper"
|
||||
|
||||
.SH NAME
|
||||
lh_chroot \- meta\-helper for lh_chroot_*
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.TH LH_CLEAN 1 "20.08.2007" "1.0~a24" "live\-helper"
|
||||
.TH LH_CLEAN 1 "27.08.2007" "1.0~a25" "live\-helper"
|
||||
|
||||
.SH NAME
|
||||
lh_clean \- r\[:a]umt das Build-Verzeichnis auf
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.TH LH_CLEAN 1 "2007\-08\-20" "1.0~a24" "live\-helper"
|
||||
.TH LH_CLEAN 1 "2007\-08\-27" "1.0~a25" "live\-helper"
|
||||
|
||||
.SH NAME
|
||||
lh_clean \- clean up system build directories
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.TH LH_CONFIG 1 "20.08.2007" "1.0~a24" "live\-helper"
|
||||
.TH LH_CONFIG 1 "27.08.2007" "1.0~a25" "live\-helper"
|
||||
|
||||
.SH NAME
|
||||
lh_config \- erstellt live-helper(7) Konfiguration
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.TH LH_CONFIG 1 "2007\-08\-20" "1.0~a24" "live\-helper"
|
||||
.TH LH_CONFIG 1 "2007\-08\-27" "1.0~a25" "live\-helper"
|
||||
|
||||
.SH NAME
|
||||
lh_config \- create configuration for live-helper(7)
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.TH LH_SOURCE 1 "20.08.2007" "1.0~a24" "live\-helper"
|
||||
.TH LH_SOURCE 1 "27.08.2007" "1.0~a25" "live\-helper"
|
||||
|
||||
.SH NAME
|
||||
lh_source \- Meta\-Helper f\[:u]r lh_source_*
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.TH LH_SOURCE 1 "2007\-08\-20" "1.0~a24" "live\-helper"
|
||||
.TH LH_SOURCE 1 "2007\-08\-27" "1.0~a25" "live\-helper"
|
||||
|
||||
.SH NAME
|
||||
lh_source \- meta\-helper for lh_source_*
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.TH LH_TESTROOT 1 "20.08.2007" "1.0~a24" "live\-helper"
|
||||
.TH LH_TESTROOT 1 "27.08.2007" "1.0~a25" "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\-20" "1.0~a24" "live\-helper"
|
||||
.TH LH_TESTROOT 1 "2007\-08\-27" "1.0~a25" "live\-helper"
|
||||
|
||||
.SH NAME
|
||||
lh_testroot \- ensure that a system is built as root
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.TH LIVE\-HELPER 7 "20.08.2007" "1.0~a24" "live\-helper"
|
||||
.TH LIVE\-HELPER 7 "27.08.2007" "1.0~a25" "live\-helper"
|
||||
|
||||
.SH NAME
|
||||
live\-helper \- Debian Live Helper-Programme
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.TH LIVE\-HELPER 7 "2007\-08\-20" "1.0~a24" "live\-helper"
|
||||
.TH LIVE\-HELPER 7 "2007\-08\-27" "1.0~a25" "live\-helper"
|
||||
|
||||
.SH NAME
|
||||
live\-helper \- Debian Live helper programs
|
||||
|
|
Loading…
Reference in New Issue