Codebase list live-build / 18e07a3
Import Debian version 20170920 live-build (1:20170920) unstable; urgency=medium * Auto-update version strings in manual pages. * Update default value of PREPARER to correct the embedded URL. * Pass --partscan to losetup to clean up partition devices lingering from former operations. Closes: #865586 Thanks to Matthijs Kooijman <[email protected]> for the patch. * Fix multiple issues with LB_BUILD_WITH_CHROOT=false. Closes: #873513 Thanks to Matthijs Kooijman <[email protected]> for the patch. * Fix size calculation when we use FAT filesystems that do not support hardlinks. Closes: #873640 Thanks to Matthijs Kooijman <[email protected]> for the patch. * Replace "kirkwood" and "orion5x" armel flavors with the new "marvell" (as done by the linux source package since its version 4.4). Raphaël Hertzog authored 6 years ago Sophie Brun committed 6 years ago
68 changed file(s) with 410 addition(s) and 569 deletion(s). Raw diff Collapse all Expand all
0 live-build (1:20170920) unstable; urgency=medium
1
2 * Auto-update version strings in manual pages.
3 * Update default value of PREPARER to correct the embedded URL.
4 * Pass --partscan to losetup to clean up partition devices lingering
5 from former operations. Closes: #865586
6 Thanks to Matthijs Kooijman <[email protected]> for the patch.
7 * Fix multiple issues with LB_BUILD_WITH_CHROOT=false. Closes: #873513
8 Thanks to Matthijs Kooijman <[email protected]> for the patch.
9 * Fix size calculation when we use FAT filesystems that do not support
10 hardlinks. Closes: #873640
11 Thanks to Matthijs Kooijman <[email protected]> for the patch.
12 * Replace "kirkwood" and "orion5x" armel flavors with the new
13 "marvell" (as done by the linux source package since its version 4.4).
14
15 -- Raphaël Hertzog <[email protected]> Wed, 20 Sep 2017 10:01:42 +0200
16
017 live-build (1:20170829) unstable; urgency=medium
118
219 * Add .disk/mkisofs file recording the xorriso command line. Thanks
44 Uploaders: Raphaël Hertzog <[email protected]>
55 Build-Depends:
66 debhelper (>= 10),
7 po4a,
8 gettext,
79 Standards-Version: 4.1.0
810 Homepage: https://debian-live.alioth.debian.org/live-build/
911 Vcs-Browser: https://anonscm.debian.org/cgit/debian-live/live-build.git
00 #!/usr/bin/make -f
1
2 include /usr/share/dpkg/pkg-info.mk
31
42 %:
53 dh $@
64
75 override_dh_auto_install:
6 # Update manual pages first
7 $(MAKE) -C manpages update
8 $(MAKE) -C manpages build
9
810 dh_auto_install -- DESTDIR=debian/live-build
9
10 # Update VERSION file
11 echo $(DEB_VERSION) >debian/live-build/usr/share/live/build/VERSION
1211
1312 # Removing unused files
1413 rm -f debian/live-build/usr/share/doc/live-build/COPYING
412412 armel)
413413 # armel will have special images: one rootfs image and many additional kernel images.
414414 # therefore we default to all available armel flavours
415 LB_LINUX_FLAVOURS="${LB_LINUX_FLAVOURS:-kirkwood orion5x}"
415 LB_LINUX_FLAVOURS="${LB_LINUX_FLAVOURS:-marvell}"
416416 ;;
417417
418418 armhf)
650650 esac
651651
652652 # Set iso preparer
653 LB_ISO_PREPARER="${LB_ISO_PREPARER:-live-build \$VERSION; https://debian-live.alioth.debian.org/devel/live-build}"
653 LB_ISO_PREPARER="${LB_ISO_PREPARER:-live-build \$VERSION; https://debian-live.alioth.debian.org/live-build}"
654654
655655 # Set iso publisher
656656 case "${LB_MODE}" in
3939 FILE="${2}"
4040 PARTITION="${3:-1}"
4141
42 ${LB_LOSETUP} --read-only "${DEVICE}" "${FILE}"
42 ${LB_LOSETUP} --read-only --partscan "${DEVICE}" "${FILE}"
4343 FDISK_OUT="$(${LB_FDISK} -l -u ${DEVICE} 2>&1)"
4444 Lodetach "${DEVICE}"
4545
4949 then
5050 Echo_message "Mounting %s with offset 0" "${DEVICE}"
5151
52 ${LB_LOSETUP} "${DEVICE}" "${FILE}"
52 ${LB_LOSETUP} --partscan "${DEVICE}" "${FILE}"
5353 else
5454 SECTORS="$(echo "$FDISK_OUT" | sed -ne "s|^$LOOPDEVICE[ *]*\([0-9]*\).*|\1|p")"
5555 OFFSET="$(expr ${SECTORS} '*' 512)"
5656
5757 Echo_message "Mounting %s with offset %s" "${DEVICE}" "${OFFSET}"
5858
59 ${LB_LOSETUP} -o "${OFFSET}" "${DEVICE}" "${FILE}"
59 ${LB_LOSETUP} --partscan -o "${OFFSET}" "${DEVICE}" "${FILE}"
6060 fi
6161 }
6262
1515
1616 Check_installed "${CHROOT}" "${FILE}" "${PACKAGE}"
1717
18 case "${INSTALL_STATUS}" in
19 1)
18 if [ "${INSTALL_STATUS}" -ne 0 ]
19 then
20 if [ "${LB_BUILD_WITH_CHROOT}" != "false" ]
21 then
2022 _LB_PACKAGES="${_LB_PACKAGES} ${PACKAGE}"
21 ;;
22
23 2)
23 else
2424 Echo_error "You need to install %s on your host system." "${PACKAGE}"
2525 exit 1
26 ;;
27 esac
26 fi
27 fi
2828 }
2929
3030 Install_package ()
0 .TH LIVE\-BUILD 1 2017\-08\-29 1:20170807kali1 "Live Systems Project"
0 .TH LIVE\-BUILD 1 2017\-08\-29 1:20170829 "Live Systems Project"
11
22 .SH NAME
33 \fBlb\fR \- wrapper for live\-build programs
0 .TH LIVE\-BUILD 1 2017\-08\-29 1:20170807kali1 "Live Systems Project"
0 .TH LIVE\-BUILD 1 2017\-08\-29 1:20170829 "Live Systems Project"
11
22 .SH NAME
33 \fBlb_binary\fR \- Complete the binary stage
0 .TH LIVE\-BUILD 1 2017\-08\-29 1:20170807kali1 "Live Systems Project"
0 .TH LIVE\-BUILD 1 2017\-08\-29 1:20170829 "Live Systems Project"
11
22 .SH NAME
33 \fBlb_bootstrap\fR \- Complete the bootstrap stage
0 .TH LIVE\-BUILD 1 2017\-08\-29 1:20170807kali1 "Live Systems Project"
0 .TH LIVE\-BUILD 1 2017\-08\-29 1:20170829 "Live Systems Project"
11
22 .SH NAME
33 \fBlb_build\fR \- Complete the bootstrap, chroot, binary, and source stages
0 .TH LIVE\-BUILD 1 2017\-08\-29 1:20170807kali1 "Live Systems Project"
0 .TH LIVE\-BUILD 1 2017\-08\-29 1:20170829 "Live Systems Project"
11
22 .SH NAME
33 \fBlb_chroot\fR \- Complete the chroot stage
0 .TH LIVE\-BUILD 1 2017\-08\-29 1:20170807kali1 "Live Systems Project"
0 .TH LIVE\-BUILD 1 2017\-08\-29 1:20170829 "Live Systems Project"
11
22 .SH NAME
33 \fBlb_clean\fR \- Clean build directory
0 .TH LIVE\-BUILD 1 2017\-08\-29 1:20170807kali1 "Live Systems Project"
0 .TH LIVE\-BUILD 1 2017\-08\-29 1:20170829 "Live Systems Project"
11
22 .SH NAME
33 \fBlb_config\fR \- Create config directory
343343 .IP "\fB\-\-iso\-application\fR \fINAME\fR" 4
344344 sets the APPLICATION field in the header of a resulting CD/DVD image and defaults to "Debian Live" in debian mode, and "Ubuntu Live" in ubuntu mode.
345345 .IP "\fB\-\-iso\-preparer\fR \fINAME\fR" 4
346 sets the PREPARER field in the header of a resulting CD/DVD image. By default this is set to "live\-build \fIVERSION\fR; http://packages.qa.debian.org/live\-build", where VERSION is expanded to the version of live\-build that was used to build the image.
346 sets the PREPARER field in the header of a resulting CD/DVD image. By default this is set to "live\-build \fIVERSION\fR; http://debian-live.alioth.debian.org/live\-build", where VERSION is expanded to the version of live\-build that was used to build the image.
347347 .IP "\fB\-\-iso\-publisher\fR \fINAME\fR" 4
348348 sets the PUBLISHED field in the header of a resulting CD/DVD image. By default, this is set to 'Live Systems project; http:/live-systems.org/; debian\[email protected]'. Remember to change this to the appropriate values at latest when you distributing custom and unofficial images.
349349 .IP "\fB\-\-iso\-volume\fR \fINAME\fR" 4
0 .TH LIVE\-BUILD 1 2017\-08\-29 1:20170807kali1 "Live Systems Project"
0 .TH LIVE\-BUILD 1 2017\-08\-29 1:20170829 "Live Systems Project"
11
22 .SH NAME
33 \fBlb_installer\fR \- Complete the installer stage
0 .TH LIVE\-BUILD 1 2017\-08\-29 1:20170807kali1 "Live Systems Project"
0 .TH LIVE\-BUILD 1 2017\-08\-29 1:20170829 "Live Systems Project"
11
22 .SH NAME
33 \fBlb_source\fR \- Complete the source stage
0 .TH LIVE\-BUILD 7 2017\-08\-29 1:20170807kali1 "Live Systems Project"
0 .TH LIVE\-BUILD 7 2017\-08\-29 1:20170829 "Live Systems Project"
11
22 .SH NAME
33 \fBlive\-build\fR \- the live systems tool suite
22 .\" This file was generated with po4a. Translate the source file.
33 .\"
44 .\"*******************************************************************
5 .TH LIVE\-BUILD 1 21.10.2015 5.0~a11\-1 "Projet Live Systems"
5 .TH LIVE\-BUILD 1 2017\-08\-29 1:20170807kali1 "Projet Live Systems"
66
77 .SH NOM
88 \fBlb\fP \- emballage pour les programmes live\-build
22 .\" This file was generated with po4a. Translate the source file.
33 .\"
44 .\"*******************************************************************
5 .TH LIVE\-BUILD 1 21.10.2015 5.0~a11\-1 "Projet Live Systems"
5 .TH LIVE\-BUILD 1 2017\-08\-29 1:20170807kali1 "Projet Live Systems"
66
77 .SH NOM
88 \fBlb_binary\fP \- Complete the binary stage
22 .\" This file was generated with po4a. Translate the source file.
33 .\"
44 .\"*******************************************************************
5 .TH LIVE\-BUILD 1 21.10.2015 5.0~a11\-1 "Projet Live Systems"
5 .TH LIVE\-BUILD 1 2017\-08\-29 1:20170807kali1 "Projet Live Systems"
66
77 .SH NOM
88 \fBlb_bootstrap\fP \- Complete the bootstrap stage
22 .\" This file was generated with po4a. Translate the source file.
33 .\"
44 .\"*******************************************************************
5 .TH LIVE\-BUILD 1 21.10.2015 5.0~a11\-1 "Projet Live Systems"
5 .TH LIVE\-BUILD 1 2017\-08\-29 1:20170807kali1 "Projet Live Systems"
66
77 .SH NOM
88 \fBlb_build\fP \- Complete the bootstrap, chroot, binary, and source stages
22 .\" This file was generated with po4a. Translate the source file.
33 .\"
44 .\"*******************************************************************
5 .TH LIVE\-BUILD 1 21.10.2015 5.0~a11\-1 "Projet Live Systems"
5 .TH LIVE\-BUILD 1 2017\-08\-29 1:20170807kali1 "Projet Live Systems"
66
77 .SH NOM
88 \fBlb_chroot\fP \- Complete the chroot stage
22 .\" This file was generated with po4a. Translate the source file.
33 .\"
44 .\"*******************************************************************
5 .TH LIVE\-BUILD 1 21.10.2015 5.0~a11\-1 "Projet Live Systems"
5 .TH LIVE\-BUILD 1 2017\-08\-29 1:20170807kali1 "Projet Live Systems"
66
77 .SH NOM
88 \fBlb_clean\fP \- Clean build directory
22 .\" This file was generated with po4a. Translate the source file.
33 .\"
44 .\"*******************************************************************
5 .TH LIVE\-BUILD 1 21.10.2015 5.0~a11\-1 "Projet Live Systems"
5 .TH LIVE\-BUILD 1 2017\-08\-29 1:20170807kali1 "Projet Live Systems"
66
77 .SH NOM
88 \fBlb_config\fP \- Create config directory
516516 .IP "\fB\-\-iso\-preparer\fP \fINAME\fP" 4
517517 sets the PREPARER field in the header of a resulting CD/DVD image. By
518518 default this is set to "live\-build \fIVERSION\fP;
519 http://packages.qa.debian.org/live\-build", where VERSION is expanded to the
520 version of live\-build that was used to build the image.
519 http://debian\-live.alioth.debian.org/live\-build", where VERSION is expanded
520 to the version of live\-build that was used to build the image.
521521 .IP "\fB\-\-iso\-publisher\fP \fINAME\fP" 4
522522 sets the PUBLISHED field in the header of a resulting CD/DVD image. By
523523 default, this is set to 'Live Systems project; http:/live\-systems.org/;
22 .\" This file was generated with po4a. Translate the source file.
33 .\"
44 .\"*******************************************************************
5 .TH LIVE\-BUILD 1 21.10.2015 5.0~a11\-1 "Projet Live Systems"
5 .TH LIVE\-BUILD 1 2017\-08\-29 1:20170807kali1 "Projet Live Systems"
66
77 .SH NOM
88 \fBlb_source\fP \- Complete the source stage
22 .\" This file was generated with po4a. Translate the source file.
33 .\"
44 .\"*******************************************************************
5 .TH LIVE\-BUILD 7 21.10.2015 5.0~a11\-1 "Projet Live Systems"
5 .TH LIVE\-BUILD 7 2017\-08\-29 1:20170807kali1 "Projet Live Systems"
66
77 .SH NOM
88 \fBlive\-build\fP \- la suite d'outils live systems
22 .\" This file was generated with po4a. Translate the source file.
33 .\"
44 .\"*******************************************************************
5 .TH LIVE\-BUILD 1 2015\-10\-21 5.0~a11\-1 "Live システムプロジェクト"
5 .TH LIVE\-BUILD 1 2017\-08\-29 1:20170807kali1 "Live システムプロジェクト"
66
77 .SH 名前
88 \fBlb\fP \- live\-build プログラムのラッパー
22 .\" This file was generated with po4a. Translate the source file.
33 .\"
44 .\"*******************************************************************
5 .TH LIVE\-BUILD 1 2015\-10\-21 5.0~a11\-1 "Live システムプロジェクト"
5 .TH LIVE\-BUILD 1 2017\-08\-29 1:20170807kali1 "Live システムプロジェクト"
66
77 .SH 名前
88 \fBlb_binary\fP \- Complete the binary stage
22 .\" This file was generated with po4a. Translate the source file.
33 .\"
44 .\"*******************************************************************
5 .TH LIVE\-BUILD 1 2015\-10\-21 5.0~a11\-1 "Live システムプロジェクト"
5 .TH LIVE\-BUILD 1 2017\-08\-29 1:20170807kali1 "Live システムプロジェクト"
66
77 .SH 名前
88 \fBlb_bootstrap\fP \- Complete the bootstrap stage
22 .\" This file was generated with po4a. Translate the source file.
33 .\"
44 .\"*******************************************************************
5 .TH LIVE\-BUILD 1 2015\-10\-21 5.0~a11\-1 "Live システムプロジェクト"
5 .TH LIVE\-BUILD 1 2017\-08\-29 1:20170807kali1 "Live システムプロジェクト"
66
77 .SH 名前
88 \fBlb_build\fP \- Complete the bootstrap, chroot, binary, and source stages
22 .\" This file was generated with po4a. Translate the source file.
33 .\"
44 .\"*******************************************************************
5 .TH LIVE\-BUILD 1 2015\-10\-21 5.0~a11\-1 "Live システムプロジェクト"
5 .TH LIVE\-BUILD 1 2017\-08\-29 1:20170807kali1 "Live システムプロジェクト"
66
77 .SH 名前
88 \fBlb_chroot\fP \- Complete the chroot stage
22 .\" This file was generated with po4a. Translate the source file.
33 .\"
44 .\"*******************************************************************
5 .TH LIVE\-BUILD 1 2015\-10\-21 5.0~a11\-1 "Live システムプロジェクト"
5 .TH LIVE\-BUILD 1 2017\-08\-29 1:20170807kali1 "Live システムプロジェクト"
66
77 .SH 名前
88 \fBlb_clean\fP \- Clean build directory
22 .\" This file was generated with po4a. Translate the source file.
33 .\"
44 .\"*******************************************************************
5 .TH LIVE\-BUILD 1 2015\-10\-21 5.0~a11\-1 "Live システムプロジェクト"
5 .TH LIVE\-BUILD 1 2017\-08\-29 1:20170807kali1 "Live システムプロジェクト"
66
77 .SH 名前
88 \fBlb_config\fP \- Create config directory
428428 出来上がる CD/DVD イメージのヘッダの APPLICATION フィールドをセットします。デフォルトは Debian モードでは「Debian
429429 Live」、ubuntu モードでは「Ubuntu Live」となっています。
430430 .IP "\fB\-\-iso\-preparer\fP \fI名前\fP" 4
431 出来上がる CD/DVD イメージのヘッダの PREPARER フィールドをセットします。デフォルトは「live\-build \fIバージョン\fP;
432 http://packages.qa.debian.org/live\-build」で、バージョンはそのイメージのビルドに利用した live\-build
433 のバージョンに展開されます。
431 sets the PREPARER field in the header of a resulting CD/DVD image. By
432 default this is set to "live\-build \fIVERSION\fP;
433 http://debian\-live.alioth.debian.org/live\-build", where VERSION is expanded
434 to the version of live\-build that was used to build the image.
434435 .IP "\fB\-\-iso\-publisher\fP \fI名前\fP" 4
435436 出来上がる CD/DVD イメージのヘッダの PUBLISHED フィールドをセットします。デフォルトは「Live Systems project;
436437 http:/live\-systems.org/;
22 .\" This file was generated with po4a. Translate the source file.
33 .\"
44 .\"*******************************************************************
5 .TH LIVE\-BUILD 1 2015\-10\-21 5.0~a11\-1 "Live システムプロジェクト"
5 .TH LIVE\-BUILD 1 2017\-08\-29 1:20170807kali1 "Live システムプロジェクト"
66
77 .SH 名前
88 \fBlb_source\fP \- Complete the source stage
22 .\" This file was generated with po4a. Translate the source file.
33 .\"
44 .\"*******************************************************************
5 .TH LIVE\-BUILD 7 2015\-10\-21 5.0~a11\-1 "Live システムプロジェクト"
5 .TH LIVE\-BUILD 7 2017\-08\-29 1:20170807kali1 "Live システムプロジェクト"
66
77 .SH 名前
88 \fBlive\-build\fP \- Live システムツール集
44 msgid ""
55 msgstr ""
66 "Project-Id-Version: live-build 5.0~a11-1\n"
7 "POT-Creation-Date: 2017-08-29 14:07+0200\n"
7 "POT-Creation-Date: 2017-08-29 15:05+0200\n"
88 "PO-Revision-Date: 2015-09-20 14:53+0200\n"
99 "Last-Translator: Olivier Humbert <[email protected]>\n"
1010 "Language-Team: none\n"
2626 #: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
2727 #: en/live-build.7:1
2828 #, no-wrap
29 msgid "2015-10-21"
30 msgstr "29.08.2017"
31
32 #. type: TH
33 #: en/lb.1:1 en/lb_binary.1:1 en/lb_bootstrap.1:1 en/lb_build.1:1
34 #: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
35 #: en/live-build.7:1
36 #, no-wrap
37 msgid "5.0~a11-1"
38 msgstr "5.0~a11-1"
29 msgid "2017-08-29"
30 msgstr ""
31
32 #. type: TH
33 #: en/lb.1:1 en/lb_binary.1:1 en/lb_bootstrap.1:1 en/lb_build.1:1
34 #: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
35 #: en/live-build.7:1
36 #, no-wrap
37 msgid "1:20170807kali1"
38 msgstr ""
3939
4040 #. type: TH
4141 #: en/lb.1:1 en/lb_binary.1:1 en/lb_bootstrap.1:1 en/lb_build.1:1
161161 #: en/lb_chroot.1:27 en/lb_clean.1:50 en/lb_config.1:492 en/lb_source.1:27
162162 #: en/live-build.7:242
163163 #, fuzzy
164 #| msgid ""
165 #| "More information about live-build and the Live Systems project can be "
166 #| "found on the homepage at E<lt>I<https://debian-live.alioth.debian.org/"
167 #| ">E<gt> and in the manual at E<lt>I<https://debian-live.alioth.debian.org/"
168 #| "manual/>E<gt>."
169164 msgid ""
170165 "More information about live-build and the Live Systems project can be found "
171166 "on the homepage at E<lt>I<https://debian-live.alioth.debian.org/>E<gt>."
44 msgid ""
55 msgstr ""
66 "Project-Id-Version: live-build 5.0~a11-1\n"
7 "POT-Creation-Date: 2017-08-29 14:07+0200\n"
7 "POT-Creation-Date: 2017-08-29 15:05+0200\n"
88 "PO-Revision-Date: 2015-09-20 14:53+0200\n"
99 "Last-Translator: Olivier Humbert <[email protected]>\n"
1010 "Language-Team: none\n"
2626 #: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
2727 #: en/live-build.7:1
2828 #, no-wrap
29 msgid "2015-10-21"
30 msgstr "29.08.2017"
31
32 #. type: TH
33 #: en/lb.1:1 en/lb_binary.1:1 en/lb_bootstrap.1:1 en/lb_build.1:1
34 #: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
35 #: en/live-build.7:1
36 #, no-wrap
37 msgid "5.0~a11-1"
38 msgstr "5.0~a11-1"
29 msgid "2017-08-29"
30 msgstr ""
31
32 #. type: TH
33 #: en/lb.1:1 en/lb_binary.1:1 en/lb_bootstrap.1:1 en/lb_build.1:1
34 #: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
35 #: en/live-build.7:1
36 #, no-wrap
37 msgid "1:20170807kali1"
38 msgstr ""
3939
4040 #. type: TH
4141 #: en/lb.1:1 en/lb_binary.1:1 en/lb_bootstrap.1:1 en/lb_build.1:1
126126 #: en/lb_chroot.1:27 en/lb_clean.1:50 en/lb_config.1:492 en/lb_source.1:27
127127 #: en/live-build.7:242
128128 #, fuzzy
129 #| msgid ""
130 #| "More information about live-build and the Live Systems project can be "
131 #| "found on the homepage at E<lt>I<https://debian-live.alioth.debian.org/"
132 #| ">E<gt> and in the manual at E<lt>I<https://debian-live.alioth.debian.org/"
133 #| "manual/>E<gt>."
134129 msgid ""
135130 "More information about live-build and the Live Systems project can be found "
136131 "on the homepage at E<lt>I<https://debian-live.alioth.debian.org/>E<gt>."
44 msgid ""
55 msgstr ""
66 "Project-Id-Version: live-build 5.0~a11-1\n"
7 "POT-Creation-Date: 2017-08-29 14:07+0200\n"
7 "POT-Creation-Date: 2017-08-29 15:05+0200\n"
88 "PO-Revision-Date: 2015-09-20 14:53+0200\n"
99 "Last-Translator: Olivier Humbert <[email protected]>\n"
1010 "Language-Team: none\n"
2626 #: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
2727 #: en/live-build.7:1
2828 #, no-wrap
29 msgid "2015-10-21"
30 msgstr "29.08.2017"
31
32 #. type: TH
33 #: en/lb.1:1 en/lb_binary.1:1 en/lb_bootstrap.1:1 en/lb_build.1:1
34 #: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
35 #: en/live-build.7:1
36 #, no-wrap
37 msgid "5.0~a11-1"
38 msgstr "5.0~a11-1"
29 msgid "2017-08-29"
30 msgstr ""
31
32 #. type: TH
33 #: en/lb.1:1 en/lb_binary.1:1 en/lb_bootstrap.1:1 en/lb_build.1:1
34 #: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
35 #: en/live-build.7:1
36 #, no-wrap
37 msgid "1:20170807kali1"
38 msgstr ""
3939
4040 #. type: TH
4141 #: en/lb.1:1 en/lb_binary.1:1 en/lb_bootstrap.1:1 en/lb_build.1:1
126126 #: en/lb_chroot.1:27 en/lb_clean.1:50 en/lb_config.1:492 en/lb_source.1:27
127127 #: en/live-build.7:242
128128 #, fuzzy
129 #| msgid ""
130 #| "More information about live-build and the Live Systems project can be "
131 #| "found on the homepage at E<lt>I<https://debian-live.alioth.debian.org/"
132 #| ">E<gt> and in the manual at E<lt>I<https://debian-live.alioth.debian.org/"
133 #| "manual/>E<gt>."
134129 msgid ""
135130 "More information about live-build and the Live Systems project can be found "
136131 "on the homepage at E<lt>I<https://debian-live.alioth.debian.org/>E<gt>."
44 msgid ""
55 msgstr ""
66 "Project-Id-Version: live-build 5.0~a11-1\n"
7 "POT-Creation-Date: 2017-08-29 14:07+0200\n"
7 "POT-Creation-Date: 2017-08-29 15:05+0200\n"
88 "PO-Revision-Date: 2015-09-20 14:53+0200\n"
99 "Last-Translator: Olivier Humbert <[email protected]>\n"
1010 "Language-Team: none\n"
2626 #: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
2727 #: en/live-build.7:1
2828 #, no-wrap
29 msgid "2015-10-21"
30 msgstr "29.08.2017"
31
32 #. type: TH
33 #: en/lb.1:1 en/lb_binary.1:1 en/lb_bootstrap.1:1 en/lb_build.1:1
34 #: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
35 #: en/live-build.7:1
36 #, no-wrap
37 msgid "5.0~a11-1"
38 msgstr "5.0~a11-1"
29 msgid "2017-08-29"
30 msgstr ""
31
32 #. type: TH
33 #: en/lb.1:1 en/lb_binary.1:1 en/lb_bootstrap.1:1 en/lb_build.1:1
34 #: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
35 #: en/live-build.7:1
36 #, no-wrap
37 msgid "1:20170807kali1"
38 msgstr ""
3939
4040 #. type: TH
4141 #: en/lb.1:1 en/lb_binary.1:1 en/lb_bootstrap.1:1 en/lb_build.1:1
119119 #: en/lb_chroot.1:27 en/lb_clean.1:50 en/lb_config.1:492 en/lb_source.1:27
120120 #: en/live-build.7:242
121121 #, fuzzy
122 #| msgid ""
123 #| "More information about live-build and the Live Systems project can be "
124 #| "found on the homepage at E<lt>I<https://debian-live.alioth.debian.org/"
125 #| ">E<gt> and in the manual at E<lt>I<https://debian-live.alioth.debian.org/"
126 #| "manual/>E<gt>."
127122 msgid ""
128123 "More information about live-build and the Live Systems project can be found "
129124 "on the homepage at E<lt>I<https://debian-live.alioth.debian.org/>E<gt>."
44 msgid ""
55 msgstr ""
66 "Project-Id-Version: live-build 5.0~a11-1\n"
7 "POT-Creation-Date: 2017-08-29 14:07+0200\n"
7 "POT-Creation-Date: 2017-08-29 15:05+0200\n"
88 "PO-Revision-Date: 2015-09-20 14:53+0200\n"
99 "Last-Translator: Olivier Humbert <[email protected]>\n"
1010 "Language-Team: none\n"
2626 #: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
2727 #: en/live-build.7:1
2828 #, no-wrap
29 msgid "2015-10-21"
30 msgstr "29.08.2017"
31
32 #. type: TH
33 #: en/lb.1:1 en/lb_binary.1:1 en/lb_bootstrap.1:1 en/lb_build.1:1
34 #: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
35 #: en/live-build.7:1
36 #, no-wrap
37 msgid "5.0~a11-1"
38 msgstr "5.0~a11-1"
29 msgid "2017-08-29"
30 msgstr ""
31
32 #. type: TH
33 #: en/lb.1:1 en/lb_binary.1:1 en/lb_bootstrap.1:1 en/lb_build.1:1
34 #: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
35 #: en/live-build.7:1
36 #, no-wrap
37 msgid "1:20170807kali1"
38 msgstr ""
3939
4040 #. type: TH
4141 #: en/lb.1:1 en/lb_binary.1:1 en/lb_bootstrap.1:1 en/lb_build.1:1
126126 #: en/lb_chroot.1:27 en/lb_clean.1:50 en/lb_config.1:492 en/lb_source.1:27
127127 #: en/live-build.7:242
128128 #, fuzzy
129 #| msgid ""
130 #| "More information about live-build and the Live Systems project can be "
131 #| "found on the homepage at E<lt>I<https://debian-live.alioth.debian.org/"
132 #| ">E<gt> and in the manual at E<lt>I<https://debian-live.alioth.debian.org/"
133 #| "manual/>E<gt>."
134129 msgid ""
135130 "More information about live-build and the Live Systems project can be found "
136131 "on the homepage at E<lt>I<https://debian-live.alioth.debian.org/>E<gt>."
44 msgid ""
55 msgstr ""
66 "Project-Id-Version: live-build 5.0~a11-1\n"
7 "POT-Creation-Date: 2017-08-29 14:07+0200\n"
7 "POT-Creation-Date: 2017-08-29 15:05+0200\n"
88 "PO-Revision-Date: 2015-09-20 14:53+0200\n"
99 "Last-Translator: Olivier Humbert <[email protected]>\n"
1010 "Language-Team: none\n"
2626 #: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
2727 #: en/live-build.7:1
2828 #, no-wrap
29 msgid "2015-10-21"
30 msgstr "29.08.2017"
29 msgid "2017-08-29"
30 msgstr ""
3131
3232 #. type: TH
3333 #: en/lb.1:1 en/lb_binary.1:1 en/lb_bootstrap.1:1 en/lb_build.1:1
3434 #: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
3535 #: en/live-build.7:1
3636 #, no-wrap
37 msgid "5.0~a11-1"
38 msgstr "5.0~a11-1"
37 msgid "1:20170807kali1"
38 msgstr ""
3939
4040 #. type: TH
4141 #: en/lb.1:1 en/lb_binary.1:1 en/lb_bootstrap.1:1 en/lb_build.1:1
119119 #: en/lb_chroot.1:27 en/lb_clean.1:50 en/lb_config.1:492 en/lb_source.1:27
120120 #: en/live-build.7:242
121121 #, fuzzy
122 #| msgid ""
123 #| "More information about live-build and the Live Systems project can be "
124 #| "found on the homepage at E<lt>I<https://debian-live.alioth.debian.org/"
125 #| ">E<gt> and in the manual at E<lt>I<https://debian-live.alioth.debian.org/"
126 #| "manual/>E<gt>."
127122 msgid ""
128123 "More information about live-build and the Live Systems project can be found "
129124 "on the homepage at E<lt>I<https://debian-live.alioth.debian.org/>E<gt>."
44 msgid ""
55 msgstr ""
66 "Project-Id-Version: live-build 5.0~a11-1\n"
7 "POT-Creation-Date: 2017-08-29 14:07+0200\n"
7 "POT-Creation-Date: 2017-08-29 15:05+0200\n"
88 "PO-Revision-Date: 2015-09-20 14:53+0200\n"
99 "Last-Translator: Olivier Humbert <[email protected]>\n"
1010 "Language-Team: none\n"
2626 #: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
2727 #: en/live-build.7:1
2828 #, no-wrap
29 msgid "2015-10-21"
30 msgstr "29.08.2017"
29 msgid "2017-08-29"
30 msgstr ""
3131
3232 #. type: TH
3333 #: en/lb.1:1 en/lb_binary.1:1 en/lb_bootstrap.1:1 en/lb_build.1:1
3434 #: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
3535 #: en/live-build.7:1
3636 #, no-wrap
37 msgid "5.0~a11-1"
38 msgstr "5.0~a11-1"
37 msgid "1:20170807kali1"
38 msgstr ""
3939
4040 #. type: TH
4141 #: en/lb.1:1 en/lb_binary.1:1 en/lb_bootstrap.1:1 en/lb_build.1:1
119119 #: en/lb_chroot.1:27 en/lb_clean.1:50 en/lb_config.1:492 en/lb_source.1:27
120120 #: en/live-build.7:242
121121 #, fuzzy
122 #| msgid ""
123 #| "More information about live-build and the Live Systems project can be "
124 #| "found on the homepage at E<lt>I<https://debian-live.alioth.debian.org/"
125 #| ">E<gt> and in the manual at E<lt>I<https://debian-live.alioth.debian.org/"
126 #| "manual/>E<gt>."
127122 msgid ""
128123 "More information about live-build and the Live Systems project can be found "
129124 "on the homepage at E<lt>I<https://debian-live.alioth.debian.org/>E<gt>."
17631758 #: en/lb_config.1:348
17641759 msgid ""
17651760 "sets the PREPARER field in the header of a resulting CD/DVD image. By "
1766 "default this is set to \"live-build I<VERSION>; http://packages.qa.debian."
1767 "org/live-build\", where VERSION is expanded to the version of live-build "
1768 "that was used to build the image."
1761 "default this is set to \"live-build I<VERSION>; http://debian-live.alioth."
1762 "debian.org/live-build\", where VERSION is expanded to the version of live-"
1763 "build that was used to build the image."
17691764 msgstr ""
17701765
17711766 #. type: IP
44 msgid ""
55 msgstr ""
66 "Project-Id-Version: live-build 5.0~a11-1\n"
7 "POT-Creation-Date: 2017-08-29 14:07+0200\n"
7 "POT-Creation-Date: 2017-08-29 15:05+0200\n"
88 "PO-Revision-Date: 2015-09-20 14:53+0200\n"
99 "Last-Translator: Olivier Humbert <[email protected]>\n"
1010 "Language-Team: none\n"
2626 #: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
2727 #: en/live-build.7:1
2828 #, no-wrap
29 msgid "2015-10-21"
30 msgstr "29.08.2017"
31
32 #. type: TH
33 #: en/lb.1:1 en/lb_binary.1:1 en/lb_bootstrap.1:1 en/lb_build.1:1
34 #: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
35 #: en/live-build.7:1
36 #, no-wrap
37 msgid "5.0~a11-1"
38 msgstr "5.0~a11-1"
29 msgid "2017-08-29"
30 msgstr ""
31
32 #. type: TH
33 #: en/lb.1:1 en/lb_binary.1:1 en/lb_bootstrap.1:1 en/lb_build.1:1
34 #: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
35 #: en/live-build.7:1
36 #, no-wrap
37 msgid "1:20170807kali1"
38 msgstr ""
3939
4040 #. type: TH
4141 #: en/lb.1:1 en/lb_binary.1:1 en/lb_bootstrap.1:1 en/lb_build.1:1
126126 #: en/lb_chroot.1:27 en/lb_clean.1:50 en/lb_config.1:492 en/lb_source.1:27
127127 #: en/live-build.7:242
128128 #, fuzzy
129 #| msgid ""
130 #| "More information about live-build and the Live Systems project can be "
131 #| "found on the homepage at E<lt>I<https://debian-live.alioth.debian.org/"
132 #| ">E<gt> and in the manual at E<lt>I<https://debian-live.alioth.debian.org/"
133 #| "manual/>E<gt>."
134129 msgid ""
135130 "More information about live-build and the Live Systems project can be found "
136131 "on the homepage at E<lt>I<https://debian-live.alioth.debian.org/>E<gt>."
44 msgid ""
55 msgstr ""
66 "Project-Id-Version: live-build 5.0~a11-1\n"
7 "POT-Creation-Date: 2017-08-29 14:07+0200\n"
7 "POT-Creation-Date: 2017-08-29 15:05+0200\n"
88 "PO-Revision-Date: 2015-09-20 14:53+0200\n"
99 "Last-Translator: Olivier Humbert <[email protected]>\n"
1010 "Language-Team: none\n"
2626 #: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
2727 #: en/live-build.7:1
2828 #, no-wrap
29 msgid "2015-10-21"
30 msgstr "29.08.2017"
29 msgid "2017-08-29"
30 msgstr ""
3131
3232 #. type: TH
3333 #: en/lb.1:1 en/lb_binary.1:1 en/lb_bootstrap.1:1 en/lb_build.1:1
3434 #: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
3535 #: en/live-build.7:1
3636 #, no-wrap
37 msgid "5.0~a11-1"
38 msgstr "5.0~a11-1"
37 msgid "1:20170807kali1"
38 msgstr ""
3939
4040 #. type: TH
4141 #: en/lb.1:1 en/lb_binary.1:1 en/lb_bootstrap.1:1 en/lb_build.1:1
113113 #: en/lb_chroot.1:27 en/lb_clean.1:50 en/lb_config.1:492 en/lb_source.1:27
114114 #: en/live-build.7:242
115115 #, fuzzy
116 #| msgid ""
117 #| "More information about live-build and the Live Systems project can be "
118 #| "found on the homepage at E<lt>I<https://debian-live.alioth.debian.org/"
119 #| ">E<gt> and in the manual at E<lt>I<https://debian-live.alioth.debian.org/"
120 #| "manual/>E<gt>."
121116 msgid ""
122117 "More information about live-build and the Live Systems project can be found "
123118 "on the homepage at E<lt>I<https://debian-live.alioth.debian.org/>E<gt>."
44 msgid ""
55 msgstr ""
66 "Project-Id-Version: live-build\n"
7 "POT-Creation-Date: 2017-08-29 14:07+0200\n"
7 "POT-Creation-Date: 2017-08-29 15:05+0200\n"
88 "PO-Revision-Date: 2014-08-28 02:52+0900\n"
99 "Last-Translator: victory <[email protected]>\n"
1010 "Language-Team: none\n"
2525 #: en/lb.1:1 en/lb_binary.1:1 en/lb_bootstrap.1:1 en/lb_build.1:1
2626 #: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
2727 #: en/live-build.7:1
28 #, fuzzy, no-wrap
29 msgid "2015-10-21"
30 msgstr "2015-02-07"
31
32 #. type: TH
33 #: en/lb.1:1 en/lb_binary.1:1 en/lb_bootstrap.1:1 en/lb_build.1:1
34 #: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
35 #: en/live-build.7:1
36 #, fuzzy, no-wrap
37 msgid "5.0~a11-1"
38 msgstr "5.0~a3-1"
28 #, no-wrap
29 msgid "2017-08-29"
30 msgstr ""
31
32 #. type: TH
33 #: en/lb.1:1 en/lb_binary.1:1 en/lb_bootstrap.1:1 en/lb_build.1:1
34 #: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
35 #: en/live-build.7:1
36 #, no-wrap
37 msgid "1:20170807kali1"
38 msgstr ""
3939
4040 #. type: TH
4141 #: en/lb.1:1 en/lb_binary.1:1 en/lb_bootstrap.1:1 en/lb_build.1:1
161161 #: en/lb_chroot.1:27 en/lb_clean.1:50 en/lb_config.1:492 en/lb_source.1:27
162162 #: en/live-build.7:242
163163 #, fuzzy
164 #| msgid ""
165 #| "More information about live-build and the Live Systems project can be "
166 #| "found on the homepage at E<lt>I<https://debian-live.alioth.debian.org/"
167 #| ">E<gt> and in the manual at E<lt>I<https://debian-live.alioth.debian.org/"
168 #| "manual/>E<gt>."
169164 msgid ""
170165 "More information about live-build and the Live Systems project can be found "
171166 "on the homepage at E<lt>I<https://debian-live.alioth.debian.org/>E<gt>."
44 msgid ""
55 msgstr ""
66 "Project-Id-Version: live-build\n"
7 "POT-Creation-Date: 2017-08-29 14:07+0200\n"
7 "POT-Creation-Date: 2017-08-29 15:05+0200\n"
88 "PO-Revision-Date: 2014-08-28 02:52+0900\n"
99 "Last-Translator: victory <[email protected]>\n"
1010 "Language-Team: none\n"
2525 #: en/lb.1:1 en/lb_binary.1:1 en/lb_bootstrap.1:1 en/lb_build.1:1
2626 #: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
2727 #: en/live-build.7:1
28 #, fuzzy, no-wrap
29 msgid "2015-10-21"
30 msgstr "2015-02-07"
31
32 #. type: TH
33 #: en/lb.1:1 en/lb_binary.1:1 en/lb_bootstrap.1:1 en/lb_build.1:1
34 #: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
35 #: en/live-build.7:1
36 #, fuzzy, no-wrap
37 msgid "5.0~a11-1"
38 msgstr "5.0~a3-1"
28 #, no-wrap
29 msgid "2017-08-29"
30 msgstr ""
31
32 #. type: TH
33 #: en/lb.1:1 en/lb_binary.1:1 en/lb_bootstrap.1:1 en/lb_build.1:1
34 #: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
35 #: en/live-build.7:1
36 #, no-wrap
37 msgid "1:20170807kali1"
38 msgstr ""
3939
4040 #. type: TH
4141 #: en/lb.1:1 en/lb_binary.1:1 en/lb_bootstrap.1:1 en/lb_build.1:1
126126 #: en/lb_chroot.1:27 en/lb_clean.1:50 en/lb_config.1:492 en/lb_source.1:27
127127 #: en/live-build.7:242
128128 #, fuzzy
129 #| msgid ""
130 #| "More information about live-build and the Live Systems project can be "
131 #| "found on the homepage at E<lt>I<https://debian-live.alioth.debian.org/"
132 #| ">E<gt> and in the manual at E<lt>I<https://debian-live.alioth.debian.org/"
133 #| "manual/>E<gt>."
134129 msgid ""
135130 "More information about live-build and the Live Systems project can be found "
136131 "on the homepage at E<lt>I<https://debian-live.alioth.debian.org/>E<gt>."
44 msgid ""
55 msgstr ""
66 "Project-Id-Version: live-build\n"
7 "POT-Creation-Date: 2017-08-29 14:07+0200\n"
7 "POT-Creation-Date: 2017-08-29 15:05+0200\n"
88 "PO-Revision-Date: 2014-08-29 06:25+0900\n"
99 "Last-Translator: victory <[email protected]>\n"
1010 "Language-Team: none\n"
2525 #: en/lb.1:1 en/lb_binary.1:1 en/lb_bootstrap.1:1 en/lb_build.1:1
2626 #: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
2727 #: en/live-build.7:1
28 #, fuzzy, no-wrap
29 msgid "2015-10-21"
30 msgstr "2015-02-07"
31
32 #. type: TH
33 #: en/lb.1:1 en/lb_binary.1:1 en/lb_bootstrap.1:1 en/lb_build.1:1
34 #: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
35 #: en/live-build.7:1
36 #, fuzzy, no-wrap
37 msgid "5.0~a11-1"
38 msgstr "5.0~a3-1"
28 #, no-wrap
29 msgid "2017-08-29"
30 msgstr ""
31
32 #. type: TH
33 #: en/lb.1:1 en/lb_binary.1:1 en/lb_bootstrap.1:1 en/lb_build.1:1
34 #: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
35 #: en/live-build.7:1
36 #, no-wrap
37 msgid "1:20170807kali1"
38 msgstr ""
3939
4040 #. type: TH
4141 #: en/lb.1:1 en/lb_binary.1:1 en/lb_bootstrap.1:1 en/lb_build.1:1
126126 #: en/lb_chroot.1:27 en/lb_clean.1:50 en/lb_config.1:492 en/lb_source.1:27
127127 #: en/live-build.7:242
128128 #, fuzzy
129 #| msgid ""
130 #| "More information about live-build and the Live Systems project can be "
131 #| "found on the homepage at E<lt>I<https://debian-live.alioth.debian.org/"
132 #| ">E<gt> and in the manual at E<lt>I<https://debian-live.alioth.debian.org/"
133 #| "manual/>E<gt>."
134129 msgid ""
135130 "More information about live-build and the Live Systems project can be found "
136131 "on the homepage at E<lt>I<https://debian-live.alioth.debian.org/>E<gt>."
44 msgid ""
55 msgstr ""
66 "Project-Id-Version: live-build\n"
7 "POT-Creation-Date: 2017-08-29 14:07+0200\n"
7 "POT-Creation-Date: 2017-08-29 15:05+0200\n"
88 "PO-Revision-Date: 2014-08-28 02:52+0900\n"
99 "Last-Translator: victory <[email protected]>\n"
1010 "Language-Team: none\n"
2525 #: en/lb.1:1 en/lb_binary.1:1 en/lb_bootstrap.1:1 en/lb_build.1:1
2626 #: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
2727 #: en/live-build.7:1
28 #, fuzzy, no-wrap
29 msgid "2015-10-21"
30 msgstr "2015-02-07"
31
32 #. type: TH
33 #: en/lb.1:1 en/lb_binary.1:1 en/lb_bootstrap.1:1 en/lb_build.1:1
34 #: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
35 #: en/live-build.7:1
36 #, fuzzy, no-wrap
37 msgid "5.0~a11-1"
38 msgstr "5.0~a3-1"
28 #, no-wrap
29 msgid "2017-08-29"
30 msgstr ""
31
32 #. type: TH
33 #: en/lb.1:1 en/lb_binary.1:1 en/lb_bootstrap.1:1 en/lb_build.1:1
34 #: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
35 #: en/live-build.7:1
36 #, no-wrap
37 msgid "1:20170807kali1"
38 msgstr ""
3939
4040 #. type: TH
4141 #: en/lb.1:1 en/lb_binary.1:1 en/lb_bootstrap.1:1 en/lb_build.1:1
119119 #: en/lb_chroot.1:27 en/lb_clean.1:50 en/lb_config.1:492 en/lb_source.1:27
120120 #: en/live-build.7:242
121121 #, fuzzy
122 #| msgid ""
123 #| "More information about live-build and the Live Systems project can be "
124 #| "found on the homepage at E<lt>I<https://debian-live.alioth.debian.org/"
125 #| ">E<gt> and in the manual at E<lt>I<https://debian-live.alioth.debian.org/"
126 #| "manual/>E<gt>."
127122 msgid ""
128123 "More information about live-build and the Live Systems project can be found "
129124 "on the homepage at E<lt>I<https://debian-live.alioth.debian.org/>E<gt>."
44 msgid ""
55 msgstr ""
66 "Project-Id-Version: live-build\n"
7 "POT-Creation-Date: 2017-08-29 14:07+0200\n"
7 "POT-Creation-Date: 2017-08-29 15:05+0200\n"
88 "PO-Revision-Date: 2014-08-28 02:52+0900\n"
99 "Last-Translator: victory <[email protected]>\n"
1010 "Language-Team: none\n"
2525 #: en/lb.1:1 en/lb_binary.1:1 en/lb_bootstrap.1:1 en/lb_build.1:1
2626 #: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
2727 #: en/live-build.7:1
28 #, fuzzy, no-wrap
29 msgid "2015-10-21"
30 msgstr "2015-02-07"
31
32 #. type: TH
33 #: en/lb.1:1 en/lb_binary.1:1 en/lb_bootstrap.1:1 en/lb_build.1:1
34 #: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
35 #: en/live-build.7:1
36 #, fuzzy, no-wrap
37 msgid "5.0~a11-1"
38 msgstr "5.0~a3-1"
28 #, no-wrap
29 msgid "2017-08-29"
30 msgstr ""
31
32 #. type: TH
33 #: en/lb.1:1 en/lb_binary.1:1 en/lb_bootstrap.1:1 en/lb_build.1:1
34 #: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
35 #: en/live-build.7:1
36 #, no-wrap
37 msgid "1:20170807kali1"
38 msgstr ""
3939
4040 #. type: TH
4141 #: en/lb.1:1 en/lb_binary.1:1 en/lb_bootstrap.1:1 en/lb_build.1:1
126126 #: en/lb_chroot.1:27 en/lb_clean.1:50 en/lb_config.1:492 en/lb_source.1:27
127127 #: en/live-build.7:242
128128 #, fuzzy
129 #| msgid ""
130 #| "More information about live-build and the Live Systems project can be "
131 #| "found on the homepage at E<lt>I<https://debian-live.alioth.debian.org/"
132 #| ">E<gt> and in the manual at E<lt>I<https://debian-live.alioth.debian.org/"
133 #| "manual/>E<gt>."
134129 msgid ""
135130 "More information about live-build and the Live Systems project can be found "
136131 "on the homepage at E<lt>I<https://debian-live.alioth.debian.org/>E<gt>."
44 msgid ""
55 msgstr ""
66 "Project-Id-Version: live-build\n"
7 "POT-Creation-Date: 2017-08-29 14:07+0200\n"
7 "POT-Creation-Date: 2017-08-29 15:05+0200\n"
88 "PO-Revision-Date: 2014-08-28 02:52+0900\n"
99 "Last-Translator: victory <[email protected]>\n"
1010 "Language-Team: none\n"
2525 #: en/lb.1:1 en/lb_binary.1:1 en/lb_bootstrap.1:1 en/lb_build.1:1
2626 #: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
2727 #: en/live-build.7:1
28 #, fuzzy, no-wrap
29 msgid "2015-10-21"
30 msgstr "2015-02-07"
28 #, no-wrap
29 msgid "2017-08-29"
30 msgstr ""
3131
3232 #. type: TH
3333 #: en/lb.1:1 en/lb_binary.1:1 en/lb_bootstrap.1:1 en/lb_build.1:1
3434 #: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
3535 #: en/live-build.7:1
36 #, fuzzy, no-wrap
37 msgid "5.0~a11-1"
38 msgstr "5.0~a3-1"
36 #, no-wrap
37 msgid "1:20170807kali1"
38 msgstr ""
3939
4040 #. type: TH
4141 #: en/lb.1:1 en/lb_binary.1:1 en/lb_bootstrap.1:1 en/lb_build.1:1
119119 #: en/lb_chroot.1:27 en/lb_clean.1:50 en/lb_config.1:492 en/lb_source.1:27
120120 #: en/live-build.7:242
121121 #, fuzzy
122 #| msgid ""
123 #| "More information about live-build and the Live Systems project can be "
124 #| "found on the homepage at E<lt>I<https://debian-live.alioth.debian.org/"
125 #| ">E<gt> and in the manual at E<lt>I<https://debian-live.alioth.debian.org/"
126 #| "manual/>E<gt>."
127122 msgid ""
128123 "More information about live-build and the Live Systems project can be found "
129124 "on the homepage at E<lt>I<https://debian-live.alioth.debian.org/>E<gt>."
44 msgid ""
55 msgstr ""
66 "Project-Id-Version: live-build\n"
7 "POT-Creation-Date: 2017-08-29 14:07+0200\n"
7 "POT-Creation-Date: 2017-08-29 15:05+0200\n"
88 "PO-Revision-Date: 2015-02-07 14:57+0900\n"
99 "Last-Translator: victory <[email protected]>\n"
1010 "Language-Team: none\n"
2525 #: en/lb.1:1 en/lb_binary.1:1 en/lb_bootstrap.1:1 en/lb_build.1:1
2626 #: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
2727 #: en/live-build.7:1
28 #, fuzzy, no-wrap
29 msgid "2015-10-21"
30 msgstr "2015-02-07"
28 #, no-wrap
29 msgid "2017-08-29"
30 msgstr ""
3131
3232 #. type: TH
3333 #: en/lb.1:1 en/lb_binary.1:1 en/lb_bootstrap.1:1 en/lb_build.1:1
3434 #: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
3535 #: en/live-build.7:1
36 #, fuzzy, no-wrap
37 msgid "5.0~a11-1"
38 msgstr "5.0~a3-1"
36 #, no-wrap
37 msgid "1:20170807kali1"
38 msgstr ""
3939
4040 #. type: TH
4141 #: en/lb.1:1 en/lb_binary.1:1 en/lb_bootstrap.1:1 en/lb_build.1:1
119119 #: en/lb_chroot.1:27 en/lb_clean.1:50 en/lb_config.1:492 en/lb_source.1:27
120120 #: en/live-build.7:242
121121 #, fuzzy
122 #| msgid ""
123 #| "More information about live-build and the Live Systems project can be "
124 #| "found on the homepage at E<lt>I<https://debian-live.alioth.debian.org/"
125 #| ">E<gt> and in the manual at E<lt>I<https://debian-live.alioth.debian.org/"
126 #| "manual/>E<gt>."
127122 msgid ""
128123 "More information about live-build and the Live Systems project can be found "
129124 "on the homepage at E<lt>I<https://debian-live.alioth.debian.org/>E<gt>."
17771772
17781773 #. type: Plain text
17791774 #: en/lb_config.1:348
1775 #, fuzzy
1776 #| msgid ""
1777 #| "sets the PREPARER field in the header of a resulting CD/DVD image. By "
1778 #| "default this is set to \"live-build I<VERSION>; http://packages.qa.debian."
1779 #| "org/live-build\", where VERSION is expanded to the version of live-build "
1780 #| "that was used to build the image."
17801781 msgid ""
17811782 "sets the PREPARER field in the header of a resulting CD/DVD image. By "
1782 "default this is set to \"live-build I<VERSION>; http://packages.qa.debian."
1783 "org/live-build\", where VERSION is expanded to the version of live-build "
1784 "that was used to build the image."
1783 "default this is set to \"live-build I<VERSION>; http://debian-live.alioth."
1784 "debian.org/live-build\", where VERSION is expanded to the version of live-"
1785 "build that was used to build the image."
17851786 msgstr ""
17861787 "出来上がる CD/DVD イメージのヘッダの PREPARER フィールドをセットします。デ"
17871788 "フォルトは「live-build I<バージョン>; http://packages.qa.debian.org/live-"
44 msgid ""
55 msgstr ""
66 "Project-Id-Version: live-build\n"
7 "POT-Creation-Date: 2017-08-29 14:07+0200\n"
7 "POT-Creation-Date: 2017-08-29 15:05+0200\n"
88 "PO-Revision-Date: 2014-08-28 02:52+0900\n"
99 "Last-Translator: victory <[email protected]>\n"
1010 "Language-Team: none\n"
2525 #: en/lb.1:1 en/lb_binary.1:1 en/lb_bootstrap.1:1 en/lb_build.1:1
2626 #: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
2727 #: en/live-build.7:1
28 #, fuzzy, no-wrap
29 msgid "2015-10-21"
30 msgstr "2015-02-07"
31
32 #. type: TH
33 #: en/lb.1:1 en/lb_binary.1:1 en/lb_bootstrap.1:1 en/lb_build.1:1
34 #: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
35 #: en/live-build.7:1
36 #, fuzzy, no-wrap
37 msgid "5.0~a11-1"
38 msgstr "5.0~a3-1"
28 #, no-wrap
29 msgid "2017-08-29"
30 msgstr ""
31
32 #. type: TH
33 #: en/lb.1:1 en/lb_binary.1:1 en/lb_bootstrap.1:1 en/lb_build.1:1
34 #: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
35 #: en/live-build.7:1
36 #, no-wrap
37 msgid "1:20170807kali1"
38 msgstr ""
3939
4040 #. type: TH
4141 #: en/lb.1:1 en/lb_binary.1:1 en/lb_bootstrap.1:1 en/lb_build.1:1
126126 #: en/lb_chroot.1:27 en/lb_clean.1:50 en/lb_config.1:492 en/lb_source.1:27
127127 #: en/live-build.7:242
128128 #, fuzzy
129 #| msgid ""
130 #| "More information about live-build and the Live Systems project can be "
131 #| "found on the homepage at E<lt>I<https://debian-live.alioth.debian.org/"
132 #| ">E<gt> and in the manual at E<lt>I<https://debian-live.alioth.debian.org/"
133 #| "manual/>E<gt>."
134129 msgid ""
135130 "More information about live-build and the Live Systems project can be found "
136131 "on the homepage at E<lt>I<https://debian-live.alioth.debian.org/>E<gt>."
44 msgid ""
55 msgstr ""
66 "Project-Id-Version: live-build\n"
7 "POT-Creation-Date: 2017-08-29 14:07+0200\n"
7 "POT-Creation-Date: 2017-08-29 15:05+0200\n"
88 "PO-Revision-Date: 2014-08-28 02:52+0900\n"
99 "Last-Translator: victory <[email protected]>\n"
1010 "Language-Team: none\n"
2525 #: en/lb.1:1 en/lb_binary.1:1 en/lb_bootstrap.1:1 en/lb_build.1:1
2626 #: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
2727 #: en/live-build.7:1
28 #, fuzzy, no-wrap
29 msgid "2015-10-21"
30 msgstr "2015-02-07"
28 #, no-wrap
29 msgid "2017-08-29"
30 msgstr ""
3131
3232 #. type: TH
3333 #: en/lb.1:1 en/lb_binary.1:1 en/lb_bootstrap.1:1 en/lb_build.1:1
3434 #: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
3535 #: en/live-build.7:1
36 #, fuzzy, no-wrap
37 msgid "5.0~a11-1"
38 msgstr "5.0~a3-1"
36 #, no-wrap
37 msgid "1:20170807kali1"
38 msgstr ""
3939
4040 #. type: TH
4141 #: en/lb.1:1 en/lb_binary.1:1 en/lb_bootstrap.1:1 en/lb_build.1:1
113113 #: en/lb_chroot.1:27 en/lb_clean.1:50 en/lb_config.1:492 en/lb_source.1:27
114114 #: en/live-build.7:242
115115 #, fuzzy
116 #| msgid ""
117 #| "More information about live-build and the Live Systems project can be "
118 #| "found on the homepage at E<lt>I<https://debian-live.alioth.debian.org/"
119 #| ">E<gt> and in the manual at E<lt>I<https://debian-live.alioth.debian.org/"
120 #| "manual/>E<gt>."
121116 msgid ""
122117 "More information about live-build and the Live Systems project can be found "
123118 "on the homepage at E<lt>I<https://debian-live.alioth.debian.org/>E<gt>."
55 #, fuzzy
66 msgid ""
77 msgstr ""
8 "Project-Id-Version: live-build 1:20170807kali1\n"
9 "POT-Creation-Date: 2017-08-29 14:07+0200\n"
8 "Project-Id-Version: live-build 1:20170829\n"
9 "POT-Creation-Date: 2017-08-29 15:05+0200\n"
1010 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1111 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1212 "Language-Team: LANGUAGE <[email protected]>\n"
2828 #: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
2929 #: en/live-build.7:1
3030 #, no-wrap
31 msgid "2015-10-21"
31 msgid "2017-08-29"
3232 msgstr ""
3333
3434 #. type: TH
3636 #: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
3737 #: en/live-build.7:1
3838 #, no-wrap
39 msgid "5.0~a11-1"
39 msgid "1:20170807kali1"
4040 msgstr ""
4141
4242 #. type: TH
55 #, fuzzy
66 msgid ""
77 msgstr ""
8 "Project-Id-Version: live-build 1:20170807kali1\n"
9 "POT-Creation-Date: 2017-08-29 14:07+0200\n"
8 "Project-Id-Version: live-build 1:20170829\n"
9 "POT-Creation-Date: 2017-08-29 15:05+0200\n"
1010 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1111 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1212 "Language-Team: LANGUAGE <[email protected]>\n"
2828 #: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
2929 #: en/live-build.7:1
3030 #, no-wrap
31 msgid "2015-10-21"
32 msgstr ""
33
34 #. type: TH
35 #: en/lb.1:1 en/lb_binary.1:1 en/lb_bootstrap.1:1 en/lb_build.1:1
36 #: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
37 #: en/live-build.7:1
38 #, no-wrap
39 msgid "5.0~a11-1"
31 msgid "2017-08-29"
32 msgstr ""
33
34 #. type: TH
35 #: en/lb.1:1 en/lb_binary.1:1 en/lb_bootstrap.1:1 en/lb_build.1:1
36 #: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
37 #: en/live-build.7:1
38 #, no-wrap
39 msgid "1:20170807kali1"
4040 msgstr ""
4141
4242 #. type: TH
55 #, fuzzy
66 msgid ""
77 msgstr ""
8 "Project-Id-Version: live-build 1:20170807kali1\n"
9 "POT-Creation-Date: 2017-08-29 14:07+0200\n"
8 "Project-Id-Version: live-build 1:20170829\n"
9 "POT-Creation-Date: 2017-08-29 15:05+0200\n"
1010 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1111 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1212 "Language-Team: LANGUAGE <[email protected]>\n"
2828 #: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
2929 #: en/live-build.7:1
3030 #, no-wrap
31 msgid "2015-10-21"
32 msgstr ""
33
34 #. type: TH
35 #: en/lb.1:1 en/lb_binary.1:1 en/lb_bootstrap.1:1 en/lb_build.1:1
36 #: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
37 #: en/live-build.7:1
38 #, no-wrap
39 msgid "5.0~a11-1"
31 msgid "2017-08-29"
32 msgstr ""
33
34 #. type: TH
35 #: en/lb.1:1 en/lb_binary.1:1 en/lb_bootstrap.1:1 en/lb_build.1:1
36 #: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
37 #: en/live-build.7:1
38 #, no-wrap
39 msgid "1:20170807kali1"
4040 msgstr ""
4141
4242 #. type: TH
55 #, fuzzy
66 msgid ""
77 msgstr ""
8 "Project-Id-Version: live-build 1:20170807kali1\n"
9 "POT-Creation-Date: 2017-08-29 14:07+0200\n"
8 "Project-Id-Version: live-build 1:20170829\n"
9 "POT-Creation-Date: 2017-08-29 15:05+0200\n"
1010 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1111 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1212 "Language-Team: LANGUAGE <[email protected]>\n"
2828 #: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
2929 #: en/live-build.7:1
3030 #, no-wrap
31 msgid "2015-10-21"
32 msgstr ""
33
34 #. type: TH
35 #: en/lb.1:1 en/lb_binary.1:1 en/lb_bootstrap.1:1 en/lb_build.1:1
36 #: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
37 #: en/live-build.7:1
38 #, no-wrap
39 msgid "5.0~a11-1"
31 msgid "2017-08-29"
32 msgstr ""
33
34 #. type: TH
35 #: en/lb.1:1 en/lb_binary.1:1 en/lb_bootstrap.1:1 en/lb_build.1:1
36 #: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
37 #: en/live-build.7:1
38 #, no-wrap
39 msgid "1:20170807kali1"
4040 msgstr ""
4141
4242 #. type: TH
55 #, fuzzy
66 msgid ""
77 msgstr ""
8 "Project-Id-Version: live-build 1:20170807kali1\n"
9 "POT-Creation-Date: 2017-08-29 14:07+0200\n"
8 "Project-Id-Version: live-build 1:20170829\n"
9 "POT-Creation-Date: 2017-08-29 15:05+0200\n"
1010 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1111 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1212 "Language-Team: LANGUAGE <[email protected]>\n"
2828 #: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
2929 #: en/live-build.7:1
3030 #, no-wrap
31 msgid "2015-10-21"
32 msgstr ""
33
34 #. type: TH
35 #: en/lb.1:1 en/lb_binary.1:1 en/lb_bootstrap.1:1 en/lb_build.1:1
36 #: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
37 #: en/live-build.7:1
38 #, no-wrap
39 msgid "5.0~a11-1"
31 msgid "2017-08-29"
32 msgstr ""
33
34 #. type: TH
35 #: en/lb.1:1 en/lb_binary.1:1 en/lb_bootstrap.1:1 en/lb_build.1:1
36 #: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
37 #: en/live-build.7:1
38 #, no-wrap
39 msgid "1:20170807kali1"
4040 msgstr ""
4141
4242 #. type: TH
55 #, fuzzy
66 msgid ""
77 msgstr ""
8 "Project-Id-Version: live-build 1:20170807kali1\n"
9 "POT-Creation-Date: 2017-08-29 14:07+0200\n"
8 "Project-Id-Version: live-build 1:20170829\n"
9 "POT-Creation-Date: 2017-08-29 15:05+0200\n"
1010 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1111 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1212 "Language-Team: LANGUAGE <[email protected]>\n"
2828 #: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
2929 #: en/live-build.7:1
3030 #, no-wrap
31 msgid "2015-10-21"
32 msgstr ""
33
34 #. type: TH
35 #: en/lb.1:1 en/lb_binary.1:1 en/lb_bootstrap.1:1 en/lb_build.1:1
36 #: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
37 #: en/live-build.7:1
38 #, no-wrap
39 msgid "5.0~a11-1"
31 msgid "2017-08-29"
32 msgstr ""
33
34 #. type: TH
35 #: en/lb.1:1 en/lb_binary.1:1 en/lb_bootstrap.1:1 en/lb_build.1:1
36 #: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
37 #: en/live-build.7:1
38 #, no-wrap
39 msgid "1:20170807kali1"
4040 msgstr ""
4141
4242 #. type: TH
55 #, fuzzy
66 msgid ""
77 msgstr ""
8 "Project-Id-Version: live-build 1:20170807kali1\n"
9 "POT-Creation-Date: 2017-08-29 14:07+0200\n"
8 "Project-Id-Version: live-build 1:20170829\n"
9 "POT-Creation-Date: 2017-08-29 15:05+0200\n"
1010 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1111 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1212 "Language-Team: LANGUAGE <[email protected]>\n"
2828 #: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
2929 #: en/live-build.7:1
3030 #, no-wrap
31 msgid "2015-10-21"
31 msgid "2017-08-29"
3232 msgstr ""
3333
3434 #. type: TH
3636 #: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
3737 #: en/live-build.7:1
3838 #, no-wrap
39 msgid "5.0~a11-1"
39 msgid "1:20170807kali1"
4040 msgstr ""
4141
4242 #. type: TH
15221522 #: en/lb_config.1:348
15231523 msgid ""
15241524 "sets the PREPARER field in the header of a resulting CD/DVD image. By "
1525 "default this is set to \"live-build I<VERSION>; http://packages.qa.debian."
1526 "org/live-build\", where VERSION is expanded to the version of live-build "
1527 "that was used to build the image."
1525 "default this is set to \"live-build I<VERSION>; http://debian-live.alioth."
1526 "debian.org/live-build\", where VERSION is expanded to the version of live-"
1527 "build that was used to build the image."
15281528 msgstr ""
15291529
15301530 #. type: IP
55 #, fuzzy
66 msgid ""
77 msgstr ""
8 "Project-Id-Version: live-build 1:20170807kali1\n"
9 "POT-Creation-Date: 2017-08-29 14:07+0200\n"
8 "Project-Id-Version: live-build 1:20170829\n"
9 "POT-Creation-Date: 2017-08-29 15:05+0200\n"
1010 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1111 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1212 "Language-Team: LANGUAGE <[email protected]>\n"
2828 #: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
2929 #: en/live-build.7:1
3030 #, no-wrap
31 msgid "2015-10-21"
32 msgstr ""
33
34 #. type: TH
35 #: en/lb.1:1 en/lb_binary.1:1 en/lb_bootstrap.1:1 en/lb_build.1:1
36 #: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
37 #: en/live-build.7:1
38 #, no-wrap
39 msgid "5.0~a11-1"
31 msgid "2017-08-29"
32 msgstr ""
33
34 #. type: TH
35 #: en/lb.1:1 en/lb_binary.1:1 en/lb_bootstrap.1:1 en/lb_build.1:1
36 #: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
37 #: en/live-build.7:1
38 #, no-wrap
39 msgid "1:20170807kali1"
4040 msgstr ""
4141
4242 #. type: TH
55 #, fuzzy
66 msgid ""
77 msgstr ""
8 "Project-Id-Version: live-build 1:20170807kali1\n"
9 "POT-Creation-Date: 2017-08-29 14:07+0200\n"
8 "Project-Id-Version: live-build 1:20170829\n"
9 "POT-Creation-Date: 2017-08-29 15:05+0200\n"
1010 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1111 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1212 "Language-Team: LANGUAGE <[email protected]>\n"
2828 #: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
2929 #: en/live-build.7:1
3030 #, no-wrap
31 msgid "2015-10-21"
31 msgid "2017-08-29"
3232 msgstr ""
3333
3434 #. type: TH
3636 #: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
3737 #: en/live-build.7:1
3838 #, no-wrap
39 msgid "5.0~a11-1"
39 msgid "1:20170807kali1"
4040 msgstr ""
4141
4242 #. type: TH
4444 Check_crossarchitectures
4545
4646 # Checking depends
47 case "${LB_BUILD_WITH_CHROOT}" in
48 true)
49 _CHROOT_DIR=""
50
51 Check_package chroot /usr/lib/grub/x86_64-efi/configfile.mod grub-efi-amd64-bin
52 Check_package chroot /usr/lib/grub/i386-efi/configfile.mod grub-efi-ia32-bin
53 Check_package chroot /usr/bin/grub-mkimage grub-common
54 Check_package chroot /usr/bin/mcopy mtools
55 Check_package chroot /sbin/mkfs.msdos dosfstools
56 ;;
57
58 false)
59 _CHROOT_DIR="chroot"
60
61 if [ ! -e /usr/lib/grub/x86_64-efi ]
62 then
63 # grub-efi-amd64-bin
64 Echo_error "/usr/lib/grub/x86_64-efi - no such directory"
65 exit 1
66 fi
67
68 if [ ! -e /usr/lib/grub/i386-efi ]
69 then
70 # grub-efi-ia32-bin
71 Echo_error "/usr/lib/grub/i386-efi - no such directory"
72 exit 1
73 fi
74
75 if [ ! -e /usr/bin/grub-mkimage ]
76 then
77 # grub-common
78 Echo_error "/usr/bin/grub-mkimage - no such file."
79 exit 1
80 fi
81
82 if [ ! -e /usr/bin/mcopy ]
83 then
84 # mtools
85 Echo_error "/usr/bin/mcopy - no such file."
86 exit 1
87 fi
88
89 if [ ! -e /sbin/mkfs.msdos ]
90 then
91 # dosfstools
92 Echo_error "/sbin/mkfs.msdos - no such file."
93 exit 1
94 fi
95 ;;
96 esac
47 Check_package chroot /usr/lib/grub/x86_64-efi/configfile.mod grub-efi-amd64-bin
48 Check_package chroot /usr/lib/grub/i386-efi/configfile.mod grub-efi-ia32-bin
49 Check_package chroot /usr/bin/grub-mkimage grub-common
50 Check_package chroot /usr/bin/mcopy mtools
51 Check_package chroot /sbin/mkfs.msdos dosfstools
9752
9853 # Setting destination directory
9954 case "${LIVE_IMAGE_TYPE}" in
12479 mkdir -p chroot/${LIVE_BUILD_PATH}
12580 cp "${LIVE_BUILD_PATH}/efi-image" "chroot/${LIVE_BUILD_PATH}"
12681 cp "${LIVE_BUILD_PATH}/grub-cpmodules" "chroot/${LIVE_BUILD_PATH}"
82
83 _CHROOT_DIR=""
84 ;;
85 false)
86 _CHROOT_DIR="chroot"
12787 ;;
12888 esac
12989 #####
9696 rm -f ${LIVE_iMAGE_NAME}.img
9797 fi
9898
99 case "${LB_BINARY_FILESYSTEM}" in
100 fat*)
101 # If the target does not support hardlinks, tell du to
102 # count them double
103 DU_OPTIONS="--count-links"
104 ;;
105
106 *)
107 DU_OPTIONS=""
108 ;;
109 esac
110
111
99112 # Enforce fat32 if we find individual files bigger than 2GB
100113 if [ "${LB_BINARY_FILESYSTEM}" = "fat16" ] && [ -n "$(find binary -size +1999M)" ]
101114 then
106119 fi
107120
108121 # Enforce fat32 if we have images in total bigger than 2GB
109 if [ "${LB_BINARY_FILESYSTEM}" = "fat16" ] && [ "$(du -s binary | awk '{ print $1 }')" -gt "1900000" ]
122 if [ "${LB_BINARY_FILESYSTEM}" = "fat16" ] && [ "$(du ${DU_OPTIONS} -s binary | awk '{ print $1 }')" -gt "1900000" ]
110123 then
111124 Echo_warning "FAT16 doesn't support partitions larger than 2GB, automatically enforcing FAT32"
112125
126139 # Everything which comes here needs to be cleaned up,
127140 if [ "$LB_HDD_SIZE" = "auto" ];
128141 then
129 DU_DIM="$(du -ms binary | cut -f1)"
142 DU_DIM="$(du ${DU_OPTIONS} -ms binary | cut -f1)"
130143 REAL_DIM="$(Calculate_partition_size ${DU_DIM} ${LB_BINARY_FILESYSTEM})"
131144 else
132145 REAL_DIM=$LB_HDD_SIZE
4242 # Creating lock file
4343 Create_lockfile .lock
4444
45
4546 case "${LB_ARCHITECTURES}" in
4647 amd64|i386)
48 # Checking depends
49 Check_package chroot /usr/lib/loadlin/loadlin.exe.gz loadlin
50
51 # Restoring cache
52 Restore_cache cache/packages.binary
53
54 # Installing depends
55 Install_package
56
4757 case "${LB_BUILD_WITH_CHROOT}" in
4858 true)
49 # Checking depends
50 Check_package chroot /usr/lib/loadlin/loadlin.exe.gz loadlin
51
52 # Restoring cache
53 Restore_cache cache/packages.binary
54
55 # Installing depends
56 Install_package
57
5859 _PREFIX="chroot"
5960 ;;
6061
6869 gunzip -c "${_PREFIX}/usr/lib/loadlin/loadlin.exe.gz" > binary/tools/loadlin.exe
6970 gunzip -c "${_PREFIX}/usr/share/doc/loadlin/manual.txt.gz" > binary/tools/loadlin.txt
7071
71 case "${LB_BUILD_WITH_CHROOT}" in
72 true)
73 # Saving cache
74 Save_cache cache/packages.binary
72 # Saving cache
73 Save_cache cache/packages.binary
7574
76 # Removing depends
77 Remove_package
78 ;;
79 esac
75 # Removing depends
76 Remove_package
8077
8178 cat > binary/install/install.bat << EOF
8279 \tools\loadlin.exe vmlinuz initrd=initrd.gz
5454 then
5555 # Check depends
5656 Check_package host /usr/bin/apt-ftparchive apt-utils
57 Check_package chroot /usr/bin/grep-aptavail dctrl-tools
5758
58 case "${LB_BUILD_WITH_CHROOT}" in
59 true)
60 # Restoring cache
61 Restore_cache cache/packages.chroot
59 # Restoring cache
60 Restore_cache cache/packages.chroot
6261
63 # Check depends
64 Check_package chroot /usr/bin/grep-aptavail dctrl-tools
65
66 # Installing depends
67 Install_package
68 ;;
69
70 false)
71 Check_package host /usr/bin/grep-aptavail dctrl-tools
72 ;;
73 esac
62 # Installing depends
63 Install_package
7464
7565 if [ -e "${LIVE_BUILD}/share/bin/Packages" ]
7666 then
162152 rm -rf chroot/binary.deb
163153 mv chroot/var/lib/dpkg/status.tmp chroot/var/lib/dpkg/status
164154
165 case "${LB_BUILD_WITH_CHROOT}" in
166 true)
167 # Removing depends
168 Remove_package
155 # Removing depends
156 Remove_package
169157
170 # Saving cache
171 Save_cache cache/packages.chroot
172 ;;
173 esac
158 # Saving cache
159 Save_cache cache/packages.chroot
174160
175161 # Creating stage file
176162 Create_stagefile .build/binary_package-lists
113113 fi
114114
115115 # Checking depends
116 case "${LB_BUILD_WITH_CHROOT}" in
117 true)
118 Check_package chroot /usr/lib/$(echo ${_BOOTLOADER} | tr [a-z] [A-Z]) ${_BOOTLOADER}
119 Check_package chroot /usr/lib/syslinux syslinux-common
120
121 if ls "${_SOURCE}"/*.svg* > /dev/null 2>&1
122 then
123 Check_package chroot /usr/bin/rsvg-convert librsvg2-bin
124 fi
125 ;;
126
127 false)
128 if [ ! -e "/usr/share/$(echo ${_BOOTLOADER} | tr [a-z] [A-Z])" ]
129 then
130 Echo_error "/usr/share/$(echo ${_BOOTLOADER} | tr [a-z] [A-Z])"
131 exit 1
132 fi
133
134 if [ ! -e /usr/lib/syslinux ]
135 then
136 # syslinux-common
137 Echo_error "/usr/lib/syslinux - no such directory"
138 exit 1
139 fi
140
141 if ls "${_SOURCE}"/*.svg* > /dev/null 2>&1
142 then
143 if [ ! -e /usr/bin/rsvg-convert ]
144 then
145 # librsvg2-bin
146 Echo_error "/usr/bin/rsvg-convert - no such file"
147 exit 1
148 fi
149 fi
150 ;;
151 esac
116 Check_package chroot /usr/lib/$(echo ${_BOOTLOADER} | tr [a-z] [A-Z]) ${_BOOTLOADER}
117 Check_package chroot /usr/lib/syslinux syslinux-common
118
119 if ls "${_SOURCE}"/*.svg* > /dev/null 2>&1
120 then
121 Check_package chroot /usr/bin/rsvg-convert librsvg2-bin
122 fi
152123
153124 # Restoring cache
154125 Restore_cache cache/packages.binary
5454
5555 case "${LB_ARCHITECTURES}" in
5656 amd64|i386)
57 # Checking depends
58 Check_package chroot /usr/share/win32/win32-loader.exe win32-loader
59
60 # Restoring cache
61 Restore_cache cache/packages.binary
62
63 # Installing depends
64 Install_package
65
5766 if [ "${LB_BUILD_WITH_CHROOT}" = "true" ]
5867 then
59 # Checking depends
60 Check_package chroot /usr/share/win32/win32-loader.exe win32-loader
61
62 # Restoring cache
63 Restore_cache cache/packages.binary
64
65 # Installing depends
66 Install_package
67
6868 # Copying win32-loader
6969 cp -r chroot/usr/share/win32/* binary
7070 else
4848 exit 0
4949 fi
5050
51 case "${LB_BUILD_WITH_CHROOT}" in
52 true)
53 # Checking depends
54 Check_package chroot /usr/bin/grep-aptavail dctrl-tools
51 # Checking depends
52 Check_package chroot /usr/bin/grep-aptavail dctrl-tools
5553
56 # Restoring cache
57 Restore_cache cache/packages.chroot
54 # Restoring cache
55 Restore_cache cache/packages.chroot
5856
59 # Installing depends
60 Install_package
61 ;;
62
63 false)
64 if [ ! -e /usr/bin/grep-aptavail ]; then
65 # dctrl-tools
66 Echo_error "/usr/bin/grep-aptavail - no such file."
67 exit 1
68 fi
69 ;;
70 esac
57 # Installing depends
58 Install_package
7159
7260 if [ -e "${LIVE_BUILD}/share/bin/Packages" ]
7361 then
10189
10290 rm -f chroot/bin/Packages
10391
104 case "${LB_BUILD_WITH_CHROOT}" in
105 true)
106 # Removing dctrl-tools again if the user has not installed it
107 if ! grep -qs dctrl-tools chroot/root/packages.chroot
108 then
109 # Removing depends
110 Remove_package
111 fi
92 Remove_package
11293
113 # Saving cache
114 Save_cache cache/packages.chroot
115 ;;
116 esac
94 # Saving cache
95 Save_cache cache/packages.chroot
11796
11897 # Creating stage file
11998 Create_stagefile .build/chroot_package-lists.${_PASS}