mirror of
https://git.launchpad.net/livecd-rootfs
synced 2025-05-15 21:01:47 +00:00
Import patches-unapplied version 0.72 to ubuntu/intrepid
Imported using git-ubuntu import. Changelog parent: c983df7186cca1d8629484cc0f2623c829878777 New changelog entries: * Fix source mirror for -updates in generated sources.list (it was incorrect for ports architectures). * Fix description of universe in generated sources.list: packages there are expected to be under a free licence. * Enable universe and multiverse for DVDs (there isn't generally enough space on CDs; see LP #105511).
This commit is contained in:
parent
c983df7186
commit
78bda77b06
11
debian/changelog
vendored
11
debian/changelog
vendored
@ -1,3 +1,14 @@
|
|||||||
|
livecd-rootfs (0.72) intrepid; urgency=low
|
||||||
|
|
||||||
|
* Fix source mirror for -updates in generated sources.list (it was
|
||||||
|
incorrect for ports architectures).
|
||||||
|
* Fix description of universe in generated sources.list: packages there
|
||||||
|
are expected to be under a free licence.
|
||||||
|
* Enable universe and multiverse for DVDs (there isn't generally enough
|
||||||
|
space on CDs; see LP #105511).
|
||||||
|
|
||||||
|
-- Colin Watson <cjwatson@ubuntu.com> Thu, 09 Oct 2008 02:13:41 +0100
|
||||||
|
|
||||||
livecd-rootfs (0.71) intrepid; urgency=low
|
livecd-rootfs (0.71) intrepid; urgency=low
|
||||||
|
|
||||||
* change mobile to use the mobile-mobile task instead of teh metapackage for
|
* change mobile to use the mobile-mobile task instead of teh metapackage for
|
||||||
|
50
livecd.sh
50
livecd.sh
@ -240,6 +240,12 @@ Flags: seen
|
|||||||
case "$FS" in
|
case "$FS" in
|
||||||
*-dvd)
|
*-dvd)
|
||||||
LIVELIST="$LIVELIST ${FS}-live^"
|
LIVELIST="$LIVELIST ${FS}-live^"
|
||||||
|
UNIVERSE=1
|
||||||
|
MULTIVERSE=1
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
UNIVERSE=
|
||||||
|
MULTIVERSE=
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
@ -414,21 +420,47 @@ deb-src ${SECSRCMIRROR} ${STE}-security ${COMP}
|
|||||||
## Major bug fix updates produced after the final release of the
|
## Major bug fix updates produced after the final release of the
|
||||||
## distribution.
|
## distribution.
|
||||||
deb ${USERMIRROR} ${STE}-updates ${COMP}
|
deb ${USERMIRROR} ${STE}-updates ${COMP}
|
||||||
deb-src ${USERMIRROR} ${STE}-updates ${COMP}
|
deb-src ${SRCMIRROR} ${STE}-updates ${COMP}
|
||||||
|
|
||||||
|
@@EOF
|
||||||
|
if [ "$UNIVERSE" ]; then
|
||||||
|
COMMENT=
|
||||||
|
else
|
||||||
|
cat << @@EOF >> ${ROOT}etc/apt/sources.list
|
||||||
## Uncomment the following two lines to add software from the 'universe'
|
## Uncomment the following two lines to add software from the 'universe'
|
||||||
## repository.
|
## repository.
|
||||||
|
@@EOF
|
||||||
|
COMMENT='# '
|
||||||
|
fi
|
||||||
|
cat << @@EOF >> ${ROOT}etc/apt/sources.list
|
||||||
|
## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu
|
||||||
|
## team. Also, please note that software in universe WILL NOT receive any
|
||||||
|
## review or updates from the Ubuntu security team.
|
||||||
|
${COMMENT}deb ${USERMIRROR} $STE universe
|
||||||
|
${COMMENT}deb-src ${SRCMIRROR} $STE universe
|
||||||
|
${COMMENT}deb ${USERMIRROR} ${STE}-updates universe
|
||||||
|
${COMMENT}deb-src ${SRCMIRROR} ${STE}-updates universe
|
||||||
|
${COMMENT}deb ${SECMIRROR} ${STE}-security universe
|
||||||
|
${COMMENT}deb-src ${SECSRCMIRROR} ${STE}-security universe
|
||||||
|
|
||||||
|
@@EOF
|
||||||
|
if [ "$MULTIVERSE" ]; then
|
||||||
|
COMMENT=
|
||||||
|
else
|
||||||
|
COMMENT='# '
|
||||||
|
fi
|
||||||
|
cat << @@EOF >> ${ROOT}etc/apt/sources.list
|
||||||
## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu
|
## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu
|
||||||
## team, and may not be under a free licence. Please satisfy yourself as to
|
## team, and may not be under a free licence. Please satisfy yourself as to
|
||||||
## your rights to use the software. Also, please note that software in
|
## your rights to use the software. Also, please note that software in
|
||||||
## universe WILL NOT receive any review or updates from the Ubuntu security
|
## multiverse WILL NOT receive any review or updates from the Ubuntu
|
||||||
## team.
|
## security team.
|
||||||
# deb ${USERMIRROR} $STE universe
|
${COMMENT}deb ${USERMIRROR} $STE multiverse
|
||||||
# deb-src ${SRCMIRROR} $STE universe
|
${COMMENT}deb-src ${SRCMIRROR} $STE multiverse
|
||||||
# deb ${USERMIRROR} ${STE}-updates universe
|
${COMMENT}deb ${USERMIRROR} ${STE}-updates multiverse
|
||||||
# deb-src ${USERMIRROR} ${STE}-updates universe
|
${COMMENT}deb-src ${SRCMIRROR} ${STE}-updates multiverse
|
||||||
# deb ${USERMIRROR} ${STE}-security universe
|
${COMMENT}deb ${SECMIRROR} ${STE}-security multiverse
|
||||||
# deb-src ${USERMIRROR} ${STE}-security universe
|
${COMMENT}deb-src ${SECSRCMIRROR} ${STE}-security multiverse
|
||||||
@@EOF
|
@@EOF
|
||||||
mv ${ROOT}etc/apt/trusted.gpg.$$ ${ROOT}etc/apt/trusted.gpg
|
mv ${ROOT}etc/apt/trusted.gpg.$$ ${ROOT}etc/apt/trusted.gpg
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user