live-build/helpers/lh_source_download

78 lines
1.7 KiB
Plaintext
Raw Normal View History

2007-09-23 08:04:46 +00:00
#!/bin/sh
# lh_source_download(1) - download sources
2007-09-23 08:04:48 +00:00
# Copyright (C) 2006-2007 Daniel Baumann <daniel@debian.org>
#
# live-helper comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
# This is free software, and you are welcome to redistribute it
# under certain conditions; see COPYING for details.
2007-09-23 08:04:46 +00:00
set -e
# Source common functions
for FUNCTION in /usr/share/live-helper/functions/*.sh
do
. ${FUNCTION}
done
2007-09-23 08:04:48 +00:00
# Set static variables
DESCRIPTION="download sources"
HELP=""
USAGE="${PROGRAM} [--force]"
Arguments "${@}"
2007-09-23 08:04:46 +00:00
# Reading configuration files
Read_conffile config/common
Read_conffile config/image
Set_defaults
if [ "${LIVE_SOURCE}" = "enabled" ]
then
# Requiring stage file
2007-09-23 08:04:47 +00:00
Require_stagefile .stage/bootstrap
2007-09-23 08:04:46 +00:00
# Checking lock file
2007-09-23 08:04:47 +00:00
Check_lockfile .lock
2007-09-23 08:04:46 +00:00
# Creating lock file
2007-09-23 08:04:47 +00:00
Create_lockfile .lock
2007-09-23 08:04:46 +00:00
# Checking stage file
2007-09-23 08:04:47 +00:00
Check_stagefile .stage/source_download
2007-09-23 08:04:46 +00:00
# Remove old sources
2007-09-23 08:04:47 +00:00
if [ -d source/debian ]
2007-09-23 08:04:46 +00:00
then
2007-09-23 08:04:47 +00:00
rm -rf source/debian
2007-09-23 08:04:46 +00:00
fi
# Download sources
2007-09-23 08:04:47 +00:00
Chroot "dpkg --get-selections" | awk '{ print $1 }' > chroot/root/dpkg-selection.txt
#echo "live-helper" >> chroot/root/dpkg-selection.txt
2007-09-23 08:04:46 +00:00
Chroot "xargs --arg-file=/root/dpkg-selection.txt apt-get source --download-only"
2007-09-23 08:04:47 +00:00
rm -f chroot/root/dpkg-selection.txt
2007-09-23 08:04:46 +00:00
# Sort sources
2007-09-23 08:04:47 +00:00
for DSC in chroot/*.dsc
2007-09-23 08:04:46 +00:00
do
SOURCE="`awk '/Source:/ { print $2; }' ${DSC}`"
if [ "`echo ${SOURCE} | cut -b 1-3`" == "lib" ]
then
LETTER="`echo ${SOURCE} | cut -b 1-4`"
else
LETTER="`echo ${SOURCE} | cut -b 1`"
fi
# Install directory
2007-09-23 08:04:47 +00:00
install -d -m 0755 source/debian/"${LETTER}"/"${SOURCE}"
2007-09-23 08:04:46 +00:00
# Move files
2007-09-23 08:04:47 +00:00
mv chroot/"${SOURCE}"_* source/debian/"${LETTER}"/"${SOURCE}"
2007-09-23 08:04:46 +00:00
done
# Creating stage file
2007-09-23 08:04:47 +00:00
Create_stagefile .stage/source_download
2007-09-23 08:04:46 +00:00
fi