Codebase list live-build / f4dcf28
Import Debian version 20171207 live-build (1:20171207) unstable; urgency=medium * Use $SOURCE_DATE_EPOCH when updating timestamps of manual pages in order to make the package reproducible at build time. Closes: #879169 Thanks to Chris Lamb <[email protected]> for the patch. * Accept kernels without initrd. Closes: #878430 Thanks to Balint Reczey <[email protected]> for the patch. * Fix the way the .disk/mkisofs file is created. Closes: #881941 Thanks to Daniel Reichelt <[email protected]> for the patch. Raphaël Hertzog authored 6 years ago Sophie Brun committed 6 years ago
4 changed file(s) with 22 addition(s) and 6 deletion(s). Raw diff Collapse all Expand all
0 live-build (1:20171207) unstable; urgency=medium
1
2 * Use $SOURCE_DATE_EPOCH when updating timestamps of manual pages in order
3 to make the package reproducible at build time. Closes: #879169
4 Thanks to Chris Lamb <[email protected]> for the patch.
5 * Accept kernels without initrd. Closes: #878430
6 Thanks to Balint Reczey <[email protected]> for the patch.
7 * Fix the way the .disk/mkisofs file is created. Closes: #881941
8 Thanks to Daniel Reichelt <[email protected]> for the patch.
9
10 -- Raphaël Hertzog <[email protected]> Thu, 07 Dec 2017 20:29:59 +0100
11
012 live-build (1:20170920) unstable; urgency=medium
113
214 * Auto-update version strings in manual pages.
1212 PROGRAM="LIVE\\\-BUILD"
1313 VERSION="$(cd .. && dpkg-parsechangelog -S Version)"
1414
15 DATE="$(LC_ALL=C date +%Y\\\\-%m\\\\-%d)"
15 DATE="$(LC_ALL=C date --utc --date="@${SOURCE_DATE_EPOCH:-$(date +%s)}" +%Y\\\\-%m\\\\-%d)"
1616
17 DAY="$(LC_ALL=C date +%d)"
18 MONTH="$(LC_ALL=C date +%m)"
19 YEAR="$(LC_ALL=C date +%Y)"
17 DAY="$(LC_ALL=C date --utc --date="@${SOURCE_DATE_EPOCH:-$(date +%s)}" +%d)"
18 MONTH="$(LC_ALL=C date --utc --date="@${SOURCE_DATE_EPOCH:-$(date +%s)}" +%m)"
19 YEAR="$(LC_ALL=C date --utc --date="@${SOURCE_DATE_EPOCH:-$(date +%s)}" +%Y)"
2020
2121 echo "Updating version headers..."
2222
213213 cat >> binary.sh << EOF
214214
215215 mkdir -p binary/.disk
216 echo "xorriso -as mkisofs ${XORRISO_OPTIONS} -o ${IMAGE} binary" > binary/.disk/mkisofs
216 xorriso -as mkisofs ${XORRISO_OPTIONS} -o ${IMAGE} binary
217 EOF
218
219 # retain the xorriso command used to create the image in the image itself
220 cat <<-EOF >binary/.disk/mkisofs
217221 xorriso -as mkisofs ${XORRISO_OPTIONS} -o ${IMAGE} binary
218222 EOF
219223
6969
7070 # Installing linux-image
7171 cp chroot/boot/"${LINUX}"-* "${DESTDIR}"
72 cp chroot/boot/initrd.img-* "${DESTDIR}"
72 cp chroot/boot/initrd.img-* "${DESTDIR}" 2>&1 || Echo_message "Skip installing missing initrd."
7373
7474 case "${LB_INITRAMFS}" in
7575 live-boot)