Fw: Re: debootstrap: APTCACHE for debootstrap

2018-04-01 Thread Hideki Yamane
Hi list,

 Please look at attached patch to improve debootstrap speed via
 using pre-downloaded .deb files. If you have any comments, please
 send it to Bug #844118

Begin forwarded message:

Hi,

On Sat, 12 Nov 2016 22:26:02 +0530
Ritesh Raj Sarraf  wrote:
> It'd be nice if we could have debootstrap accept a new switch,
> --cachedir. This will help a lot, especially in cases where people are
> making chroots in a Debian box. Because, in most common cases, the
> running Debian instanace may have some .debs available in its cache
> folder.

 I've tried to add --cachedir, not tested much, but it works.
 Could you check attached patch, please?

 
Test result without cache (normal)
real3m39.558s
user1m28.939s
sys 0m10.473s

With cache
real1m49.924s
user1m29.232s
sys 0m8.732s


-- 
Regards,

 Hideki Yamane henrich @ debian.org/iijmio-mail.jp
>From e8250df72852f1a3af35ad356925ee3df6af458e Mon Sep 17 00:00:00 2001
From: Hideki Yamane 
Date: Sun, 1 Apr 2018 19:43:31 +0900
Subject: [PATCH] Add cachedir feature

Save deb files under cachedir, it reduce fetch time and improve installation
time. Closes #551838 and #844118
---
 debootstrap   | 20 
 debootstrap.8 |  3 +++
 functions | 16 +---
 3 files changed, 36 insertions(+), 3 deletions(-)

diff --git a/debootstrap b/debootstrap
index 9b547ad..14b031c 100755
--- a/debootstrap
+++ b/debootstrap
@@ -45,6 +45,7 @@ VERBOSE=""
 CERTIFICATE=""
 CHECKCERTIF=""
 PRIVATEKEY=""
+CACHE_DIR=""
 
 DEF_MIRROR="http://deb.debian.org/debian;
 DEF_HTTPS_MIRROR="https://deb.debian.org/debian;
@@ -109,6 +110,8 @@ usage()
  of a missing keyring), aborting otherwise
   --no-resolve-deps  don't try to resolve dependencies automatically
 
+  --cachedir=DIR Use DIR as package cache directory
+
   --unpack-tarball=T acquire .debs from a tarball instead of http
   --make-tarball=T   download .debs and create a tarball (tgz format)
   --second-stage-target=DIR
@@ -238,6 +241,23 @@ if [ $# != 0 ] ; then
 			error 1 BADEXTRACTOR "%s: unknown extractor" "$EXTRACTOR_OVERRIDE"
 		fi
 		;;
+	--cachedir|--cachedir=?*)
+		if [ "$1" = "--cachedir" ] && [ -n "$2" ] ; then
+			CACHE_DIR="$2"
+			shift 2
+		elif [ "$1" != "${1#--cachedir=}" ]; then
+			CACHE_DIR="${1#--cachedir=}"
+			shift
+		else
+			error 1 NEEDARG "option requires an argument %s" "$1"
+		fi
+		if [ ! -d "$CACHE_DIR" ] ; then
+			error 1 NOCACHEDIR "%s: No such directory" "$CACHE_DIR"
+		fi
+		if [ ! -z ${CACHE_DIR##/*} ]; then
+			error 1 NOTABSOLUTEPATH "cachedir should be specified as absolute path"
+		fi
+		;;
 	--unpack-tarball|--unpack-tarball=?*)
 		if [ "$1" = "--unpack-tarball" -a -n "$2" ] ; then
 			UNPACK_TARBALL="$2"
diff --git a/debootstrap.8 b/debootstrap.8
index e802003..fe65d85 100644
--- a/debootstrap.8
+++ b/debootstrap.8
@@ -136,6 +136,9 @@ a foreign chroot) (requires \-\-second\-stage)
 Don't delete the /debootstrap directory in the target after completing the
 installation.
 .IP
+.IP "\fB\-\-cachedir=DIR\fP"
+Cache .deb files under directory. It should be absolute path.
+.IP
 .IP "\fB\-\-unpack\-tarball=FILE\fP"
 Acquire .debs from tarball FILE instead of downloading via http.
 .IP
diff --git a/functions b/functions
index b780488..309399b 100644
--- a/functions
+++ b/functions
@@ -337,7 +337,9 @@ get () {
 		*)   from="$1"; dest="$2" ;;
 		esac
 
-		if [ "${dest#/}" = "$dest" ]; then
+		if [ ! -z "$CACHE_DIR" ]; then
+			dest="${dest%%*/}"
+		elif [ "${dest#/}" = "$dest" ]; then
 			dest="./$dest"
 		fi
 		local dest2="$dest"
@@ -347,7 +349,9 @@ get () {
 
 		while [ "$iters" -lt 10 ]; do
 			info RETRIEVING "Retrieving %s %s" "$displayname" "$versionname"
-			if ! just_get "$from" "$dest2"; then continue 2; fi
+			if [ ! -e "$dest2" ]; then
+if ! just_get "$from" "$dest2"; then continue 2; fi
+			fi
 			if [ "$checksum" != "" ]; then
 info VALIDATING "Validating %s %s" "$displayname" "$versionname"
 if verify_checksum "$dest2" "$checksum" "$siz"; then
@@ -717,10 +721,16 @@ download_debs () {
 			else
 progress_next "$(($dloaddebs + $size))"
 local debdest="$($DLDEST deb "$p" "$ver" "$arc" "$m" "$fil")"
-if get "$m/$fil" "$TARGET/$debdest" "$checksum" "$size"; then
+local debcache="$(echo "$p"_"$ver"_"$arc".deb | sed 's/:/%3a/')"
+if [ -z "$CACHE_DIR" ] && get "$m/$fil" "$TARGET/$debdest" "$checksum" "$size"; then
+	dloaddebs="$(($dloaddebs + $size))"
+	echo >>$TARGET/debootstrap/deburis "$p $ver $m/$fil"
+	echo >>$TARGET/debootstrap/debpaths "$p $debdest"
+elif [ -d "$CACHE_DIR" ] && get "$m/$fil" "$CACHE_DIR/$debcache" "$checksum" "$size"; then
 	dloaddebs="$(($dloaddebs + $size))"
 	echo >>$TARGET/debootstrap/deburis "$p $ver $m/$fil"
 	echo >>$TARGET/debootstrap/debpaths "$p $debdest"
+	cp "$CACHE_DIR/$debcache" "$TARGET/$debdest"
 else
 	warning COULDNTDL 

Processed: your mail

2018-04-01 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> tags 844118 +patch
Bug #844118 [debootstrap] debootstrap: APTCACHE for debootstrap
Added tag(s) patch.
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
844118: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=844118
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems



Re: Installing 2 encrypted Debians alongside Windows

2018-04-01 Thread coco...@t-online.de
Hi,

@Ben Hildred:
I used a separate /boot partition for each.

I was actually able to work around the issue by manually creating a new
menu entry in custom.cfg using a duplicate of the grub entry that was
created for the new Debian install, and pointing the new entry at the
"lost" /boot partition instead.  This worked because each install was
prepared in exactly the same way.

I'm surprised, however, that interest in this matter isn't higher: 
haven't I demonstrated a possible bug in Debian Installer?  An edge
case, perhaps, but still...

I'm willing to answer further questions if it's necessary for making
sure this issue gets properly understood and, if necessary, fixed in a
future update.

On March 23rd, Ben Hildred wrote:
> Did you use the same boot partition for both
> installs, or did you create a boot partition for
> each?












win32-loader_0.9.0_source.changes ACCEPTED into unstable

2018-04-01 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sun, 01 Apr 2018 16:34:36 +0200
Source: win32-loader
Binary: win32-loader
Architecture: source
Version: 0.9.0
Distribution: unstable
Urgency: medium
Maintainer: Debian Install System Team 
Changed-By: Didier Raboud 
Description:
 win32-loader - Debian-Installer loader for win32
Changes:
 win32-loader (0.9.0) unstable; urgency=medium
 .
   * The « ፨ ለስላሳ » release
 .
   * Migrate to NSIS 3
 .
   [ Thomas Gaugler ]
   * Code cleanup; port to NSIS 3 and BCD
 .
   [ Didier Raboud ]
   * Remove Robert Millan and Christian Perrier from Uploaders with thanks for
 their past work
   * Link statically against libwsock32.a
   * Bump Standards-Version to 4.1.3
   * Set priority to optional
 .
   [ Eva Vranici ]
   * Translation of win32-loader to Albanian (sq)
Checksums-Sha1:
 ed3a58ed9843dc9a5e240e4e1bc8e5e4e32a7970 1878 win32-loader_0.9.0.dsc
 c3c1c6200fcc855e8fb3e270e6a8fbed5fc5bd28 234040 win32-loader_0.9.0.tar.xz
Checksums-Sha256:
 d69c36521b6b942d1ff8cff13cf9548230e8f907e274d25f5da38e72ae779160 1878 
win32-loader_0.9.0.dsc
 c548d29d13c32cadb99d7a490d3a349f4e1a2d1b432f02c85956da62f0683c2d 234040 
win32-loader_0.9.0.tar.xz
Files:
 38484c38f5669879ddb82a21de41a47b 1878 utils optional win32-loader_0.9.0.dsc
 97ff08ca2762510bda814ae855153bca 234040 utils optional 
win32-loader_0.9.0.tar.xz

-BEGIN PGP SIGNATURE-

iQGzBAEBCgAdFiEEe+WPIRpjNw1/GSB7i8+nHsoWNFUFAlrA8DYACgkQi8+nHsoW
NFWgkwv9E9SaOSAQDvRfSf8cvxz1l8OWhqorlwH10j7cpA/vgrluMiykGl18k6sV
8NqfG4SpV+fE/kNaXcZBtWKKRzIcdiP39nM/eAczPUMKZZgrHG25wqNosBdft+Ro
k8sLVCKct/H5UkPaNxMuPpNsliYbmbadi/Xy4loLMtyC8Lxg5zcJbTSf1wi/odgh
zy6i26tVTJL+lfMuPUnU2MeyRp9nHE7Qm3eqboCSsuNJ4s0GuDJOEQ0gNP9ZHmUA
kxY2iyF6QgEmTzM84qlCsqToNzwMSYlmwx7kT3AG71zH1kGFqPzB0I8Odpnq5qkE
xJojC251y7eOri4rWp3kPYqmHaoaMZrGO7ig4VEfpX2pLNU3gCnGRK7sPl484rQP
sRrX1kSo12Gupcfc94gOsEaVMrV/MYbiqTDa+Kjg0JTqiLEPIa56SqtvVQX7veY7
Urc4+yHTFXO9KvrIwlEgEYRWJvlHHQEKIQCWvUqv23yAL84uOGquSezqSSNUD9zy
wqZk0I94
=FC+o
-END PGP SIGNATURE-


Thank you for your contribution to Debian.



Processing of win32-loader_0.9.0_source.changes

2018-04-01 Thread Debian FTP Masters
win32-loader_0.9.0_source.changes uploaded successfully to localhost
along with the files:
  win32-loader_0.9.0.dsc
  win32-loader_0.9.0.tar.xz

Greetings,

Your Debian queue daemon (running on host usper.debian.org)



Accepted win32-loader 0.9.0 (source) into unstable

2018-04-01 Thread Didier Raboud
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sun, 01 Apr 2018 16:34:36 +0200
Source: win32-loader
Binary: win32-loader
Architecture: source
Version: 0.9.0
Distribution: unstable
Urgency: medium
Maintainer: Debian Install System Team 
Changed-By: Didier Raboud 
Description:
 win32-loader - Debian-Installer loader for win32
Changes:
 win32-loader (0.9.0) unstable; urgency=medium
 .
   * The « ፨ ለስላሳ » release
 .
   * Migrate to NSIS 3
 .
   [ Thomas Gaugler ]
   * Code cleanup; port to NSIS 3 and BCD
 .
   [ Didier Raboud ]
   * Remove Robert Millan and Christian Perrier from Uploaders with thanks for
 their past work
   * Link statically against libwsock32.a
   * Bump Standards-Version to 4.1.3
   * Set priority to optional
 .
   [ Eva Vranici ]
   * Translation of win32-loader to Albanian (sq)
Checksums-Sha1:
 ed3a58ed9843dc9a5e240e4e1bc8e5e4e32a7970 1878 win32-loader_0.9.0.dsc
 c3c1c6200fcc855e8fb3e270e6a8fbed5fc5bd28 234040 win32-loader_0.9.0.tar.xz
Checksums-Sha256:
 d69c36521b6b942d1ff8cff13cf9548230e8f907e274d25f5da38e72ae779160 1878 
win32-loader_0.9.0.dsc
 c548d29d13c32cadb99d7a490d3a349f4e1a2d1b432f02c85956da62f0683c2d 234040 
win32-loader_0.9.0.tar.xz
Files:
 38484c38f5669879ddb82a21de41a47b 1878 utils optional win32-loader_0.9.0.dsc
 97ff08ca2762510bda814ae855153bca 234040 utils optional 
win32-loader_0.9.0.tar.xz

-BEGIN PGP SIGNATURE-

iQGzBAEBCgAdFiEEe+WPIRpjNw1/GSB7i8+nHsoWNFUFAlrA8DYACgkQi8+nHsoW
NFWgkwv9E9SaOSAQDvRfSf8cvxz1l8OWhqorlwH10j7cpA/vgrluMiykGl18k6sV
8NqfG4SpV+fE/kNaXcZBtWKKRzIcdiP39nM/eAczPUMKZZgrHG25wqNosBdft+Ro
k8sLVCKct/H5UkPaNxMuPpNsliYbmbadi/Xy4loLMtyC8Lxg5zcJbTSf1wi/odgh
zy6i26tVTJL+lfMuPUnU2MeyRp9nHE7Qm3eqboCSsuNJ4s0GuDJOEQ0gNP9ZHmUA
kxY2iyF6QgEmTzM84qlCsqToNzwMSYlmwx7kT3AG71zH1kGFqPzB0I8Odpnq5qkE
xJojC251y7eOri4rWp3kPYqmHaoaMZrGO7ig4VEfpX2pLNU3gCnGRK7sPl484rQP
sRrX1kSo12Gupcfc94gOsEaVMrV/MYbiqTDa+Kjg0JTqiLEPIa56SqtvVQX7veY7
Urc4+yHTFXO9KvrIwlEgEYRWJvlHHQEKIQCWvUqv23yAL84uOGquSezqSSNUD9zy
wqZk0I94
=FC+o
-END PGP SIGNATURE-



mdcfg_1.59_source.changes ACCEPTED into unstable

2018-04-01 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sun, 01 Apr 2018 09:56:45 +0200
Source: mdcfg
Binary: mdcfg mdcfg-utils
Architecture: source
Version: 1.59
Distribution: unstable
Urgency: medium
Maintainer: Debian Install System Team 
Changed-By: Christian Perrier 
Description:
 mdcfg  - Configure MD devices (udeb)
 mdcfg-utils - Configure MD devices (udeb)
Changes:
 mdcfg (1.59) unstable; urgency=medium
 .
   [ Updated translations ]
   * Hebrew (he.po) by Yaron Shahrabani
   * Indonesian (id.po) by Andika Triwidada
Checksums-Sha1:
 af269b57dfa8172dcd22d53e521ab6c062da2615 1657 mdcfg_1.59.dsc
 3eaa110bff3a8665fbb513b39d2628812f82fcbd 145236 mdcfg_1.59.tar.xz
Checksums-Sha256:
 2f9a65704f160fe263aa69615226054ea9b8e69d5f68b7e143af777cd51918bb 1657 
mdcfg_1.59.dsc
 37236acc6d80434dad78ea734d678a0a4e3e0ea03e721fa04c34e8c5d54524de 145236 
mdcfg_1.59.tar.xz
Files:
 8af050192b86861a3980463e7e66144d 1657 debian-installer optional mdcfg_1.59.dsc
 b95879457aae3bf0c4595373491e2dd9 145236 debian-installer optional 
mdcfg_1.59.tar.xz

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEE1cL5v8oSi7oip3IYhy9wLE1uJagFAlrA2eUACgkQhy9wLE1u
JahoOg//aygr65RcJjK9HwS7rQix9KEWO4buqN5KXnrqySYAA7FGT9QuzhpL5vBA
EPoZlhzaZiVeYD76Ywg/JS4C3rgnKhsGNEK8aihLUVmZ5TKjMJfvX5wFNxnNp3wt
Avk2rXQRKpeaw1YT4GsAxZz4UCjBo/9ynX4OHDb9xwFKYEydEW6FFfnPbqYxMNsk
JDBqqGe9rwDxFM2ZYo4JlvF5fq+1kfLkmyXFxsUvfD/0gcPSW2d3SjyblQOw4Kni
yFEx8M92dPM+hmXr9zNyxlnsr7Unok/qHwanPJD84b1YnzNy5x8o3JsICX5mlQsh
crFHE4yWEC4ok9WW3pf1FAa5HqtmN9ZGk4FR6ar+TivLO2M33srltW6WLnullYG0
qeiPJavDzVYcDiZq3h9Rym9TF1r5HBd6zRVpd6E8ePttrlggHYFLPiUOzu7eWCES
JGosOAyTSS0MAMOYt1pVL8eMf5aWR/jzoveh+c5ybNxAxwpU0udv0Y0+yWTLYlMN
mpAfbCQy8dKRt3RW/FLyPojzzcnk+LQJUjeV+px/gkkuHD1r4yQbnOuJ34nLhZ3g
rNHvorKNU9k3CAdIv8FrHMzSYPyxTP07BTuF9z1PwUBlh1dkX0APOB8oA3p3nctB
Q3NzloTuPj/DAhWPMqe2rrMxq6uOJAqz7UuXN+hKNlvZYQs3xyk=
=zybM
-END PGP SIGNATURE-


Thank you for your contribution to Debian.



Processing of mdcfg_1.59_source.changes

2018-04-01 Thread Debian FTP Masters
mdcfg_1.59_source.changes uploaded successfully to localhost
along with the files:
  mdcfg_1.59.dsc
  mdcfg_1.59.tar.xz

Greetings,

Your Debian queue daemon (running on host usper.debian.org)



Accepted mdcfg 1.59 (source) into unstable

2018-04-01 Thread Christian Perrier
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sun, 01 Apr 2018 09:56:45 +0200
Source: mdcfg
Binary: mdcfg mdcfg-utils
Architecture: source
Version: 1.59
Distribution: unstable
Urgency: medium
Maintainer: Debian Install System Team 
Changed-By: Christian Perrier 
Description:
 mdcfg  - Configure MD devices (udeb)
 mdcfg-utils - Configure MD devices (udeb)
Changes:
 mdcfg (1.59) unstable; urgency=medium
 .
   [ Updated translations ]
   * Hebrew (he.po) by Yaron Shahrabani
   * Indonesian (id.po) by Andika Triwidada
Checksums-Sha1:
 af269b57dfa8172dcd22d53e521ab6c062da2615 1657 mdcfg_1.59.dsc
 3eaa110bff3a8665fbb513b39d2628812f82fcbd 145236 mdcfg_1.59.tar.xz
Checksums-Sha256:
 2f9a65704f160fe263aa69615226054ea9b8e69d5f68b7e143af777cd51918bb 1657 
mdcfg_1.59.dsc
 37236acc6d80434dad78ea734d678a0a4e3e0ea03e721fa04c34e8c5d54524de 145236 
mdcfg_1.59.tar.xz
Files:
 8af050192b86861a3980463e7e66144d 1657 debian-installer optional mdcfg_1.59.dsc
 b95879457aae3bf0c4595373491e2dd9 145236 debian-installer optional 
mdcfg_1.59.tar.xz

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEE1cL5v8oSi7oip3IYhy9wLE1uJagFAlrA2eUACgkQhy9wLE1u
JahoOg//aygr65RcJjK9HwS7rQix9KEWO4buqN5KXnrqySYAA7FGT9QuzhpL5vBA
EPoZlhzaZiVeYD76Ywg/JS4C3rgnKhsGNEK8aihLUVmZ5TKjMJfvX5wFNxnNp3wt
Avk2rXQRKpeaw1YT4GsAxZz4UCjBo/9ynX4OHDb9xwFKYEydEW6FFfnPbqYxMNsk
JDBqqGe9rwDxFM2ZYo4JlvF5fq+1kfLkmyXFxsUvfD/0gcPSW2d3SjyblQOw4Kni
yFEx8M92dPM+hmXr9zNyxlnsr7Unok/qHwanPJD84b1YnzNy5x8o3JsICX5mlQsh
crFHE4yWEC4ok9WW3pf1FAa5HqtmN9ZGk4FR6ar+TivLO2M33srltW6WLnullYG0
qeiPJavDzVYcDiZq3h9Rym9TF1r5HBd6zRVpd6E8ePttrlggHYFLPiUOzu7eWCES
JGosOAyTSS0MAMOYt1pVL8eMf5aWR/jzoveh+c5ybNxAxwpU0udv0Y0+yWTLYlMN
mpAfbCQy8dKRt3RW/FLyPojzzcnk+LQJUjeV+px/gkkuHD1r4yQbnOuJ34nLhZ3g
rNHvorKNU9k3CAdIv8FrHMzSYPyxTP07BTuF9z1PwUBlh1dkX0APOB8oA3p3nctB
Q3NzloTuPj/DAhWPMqe2rrMxq6uOJAqz7UuXN+hKNlvZYQs3xyk=
=zybM
-END PGP SIGNATURE-



Re: install logging

2018-04-01 Thread Steve McIntyre
On Sat, Mar 31, 2018 at 11:03:39PM -0400, Jude DaShiell wrote:
>If in the course of a debian install I need to execute a shell and logs are
>being preserved, will what I type in the shell also be saved to one of the
>log files?

Not by default, no.

>I have a procedure to get a secure wifi login done after reboot and
>post-install and this way I could send logs and it would be available
>for others.  The secure wifi connection happens with ifup with a
>little help from wpa_passphrase and grep and ex.

You could save the information in a clunky way by using "logger" on
the command line, something like (untested!):

  # logger -t my-script ""
  #  | logger -t my-script 2>&1

That way you'll have to issue each of your commands twice, first to
log what you're sending and secondly to run it, with output redirected
to logger. "logger" is a tool to put things in syslog.

-- 
Steve McIntyre, Cambridge, UK.st...@einval.com
Google-bait:   http://www.debian.org/CD/free-linux-cd
  Debian does NOT ship free CDs. Please do NOT contact the mailing
  lists asking us to send them to you.



console-setup_1.182_source.changes ACCEPTED into unstable

2018-04-01 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sat, 31 Mar 2018 08:29:50 +0200
Source: console-setup
Binary: keyboard-configuration console-setup console-setup-mini 
console-setup-linux console-setup-freebsd bdf2psf console-setup-udeb 
console-setup-amiga-ekmap console-setup-ataritt-ekmap 
console-setup-macintoshold-ekmap console-setup-pc-ekmap 
console-setup-sun4-ekmap console-setup-sun5-ekmap console-setup-pc-ekbd 
console-setup-linux-fonts-udeb console-setup-freebsd-fonts-udeb 
console-setup-linux-charmaps-udeb console-setup-freebsd-charmaps-udeb
Architecture: source
Version: 1.182
Distribution: unstable
Urgency: medium
Maintainer: Debian Install System Team 
Changed-By: Christian Perrier 
Description:
 bdf2psf- font converter to generate console fonts from BDF source fonts
 console-setup - console font and keymap setup program
 console-setup-amiga-ekmap - encoded Linux keyboard layouts for Amiga keyboards 
(udeb)
 console-setup-ataritt-ekmap - encoded Linux keyboard layouts for Atari TT 
keyboards (udeb)
 console-setup-freebsd - FreeBSD specific part of console-setup
 console-setup-freebsd-charmaps-udeb - FreeBSD 8-bit charmaps for 
console-setup-udeb (udeb)
 console-setup-freebsd-fonts-udeb - FreeBSD console fonts for Debian Installer 
(udeb)
 console-setup-linux - Linux specific part of console-setup
 console-setup-linux-charmaps-udeb - Linux 8-bit charmaps for 
console-setup-udeb (udeb)
 console-setup-linux-fonts-udeb - Linux console fonts for Debian Installer 
(udeb)
 console-setup-macintoshold-ekmap - encoded Linux keyboard layouts for 
old-style Macintosh keyboards (udeb)
 console-setup-mini - console font and keymap setup program - reduced version 
for Linux
 console-setup-pc-ekbd - encoded FreeBSD keyboard layouts for PC keyboards 
(udeb)
 console-setup-pc-ekmap - encoded Linux keyboard layouts for PC keyboards (udeb)
 console-setup-sun4-ekmap - encoded Linux keyboard layouts for Sun4 keyboards 
(udeb)
 console-setup-sun5-ekmap - encoded Linux keyboard layouts for Sun5 keyboards 
(udeb)
 console-setup-udeb - Configure the keyboard (udeb)
 keyboard-configuration - system-wide keyboard preferences
Changes:
 console-setup (1.182) unstable; urgency=medium
 .
   [ Updated translations ]
   * Czech (cs.po) by Miroslav Kure
   * German (de.po) by Holger Wansing
Checksums-Sha1:
 0436a59c5c7cb111660926bd955a1b4f68734674 3287 console-setup_1.182.dsc
 d1a6c79611b16ecf0bb4b87018de4bfb6231cd94 1648264 console-setup_1.182.tar.xz
Checksums-Sha256:
 3ed6a9b22c72f125de3cda6e994ef2f2257304dd4d144093316d5263f69ed578 3287 
console-setup_1.182.dsc
 6575fe4fc79dab7d259e6a12e95c63c7e414831284c19454c0bd8a81b7f1faff 1648264 
console-setup_1.182.tar.xz
Files:
 2738a7d11a8126ce47f7bf636d0fa801 3287 utils optional console-setup_1.182.dsc
 0885896db0623b3c0e00757cf823b9cc 1648264 utils optional 
console-setup_1.182.tar.xz

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEE1cL5v8oSi7oip3IYhy9wLE1uJagFAlrAidcACgkQhy9wLE1u
Jag0+w//dIGn33ia9b+vtql6RmVlK+Qv+CFW3M5u2HHVt/6ZG4QrlTrGHa/RQmbf
/bsPGs+UVVNYgDq0Ce9+YJRYewlj/WUnLzjzaA9SbxlLGh2n4qTesXQ218W46JES
8kY503taJxCQFGdUtkPvno5DywCJmWtFS1aDw/jzXnfc53JKrsJ69Im/m3wIWwSa
mIHrJrVEzlNqgeNlJS9wxaV8BbOHV3lHSnjELf22i3QmcODI8cBNDy6x9wn0f/ZF
LmMfPVnAm6HO9SDzBkK+p3M4UW6lICfANmPEvEC30JwW5O8piEwe+ROqjB8QZIDT
gdPqD3pXFCLpWXuE0U3pCnuy9uF9Kw92wNJ0UT6hxeFIPJNL1YuicF1uq16ANFiM
0/vVUJgu9tKDLl5kSXtExzUcsNvunVy6d9u3KfX1Iix9XKUqDjycp+z4193OZy4q
I676oUUL8jCSg1sz/UKGV7QfkU640I3gO8UIukk0BwlTZOCptQIlvkAdSt3CrpR1
LrMVC+WQ/jxSxDoI9rN+AFOShxOOCeETwHN2ioynR/4OoXxvhTHDtp+nzQYjttQO
CSYFIkAotaE2Ij7yGIo3ttg16+bGH+5LdfX91vpXJ198WJaItJMnqhM2LXhVyIBD
IDxF36a0pwJ32Sq6euJ2y8oQTFL65YcStPvJzoO+mWw//ihwmCE=
=nkD+
-END PGP SIGNATURE-


Thank you for your contribution to Debian.



Processing of console-setup_1.182_source.changes

2018-04-01 Thread Debian FTP Masters
console-setup_1.182_source.changes uploaded successfully to localhost
along with the files:
  console-setup_1.182.dsc
  console-setup_1.182.tar.xz

Greetings,

Your Debian queue daemon (running on host usper.debian.org)



Accepted console-setup 1.182 (source) into unstable

2018-04-01 Thread Christian Perrier
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sat, 31 Mar 2018 08:29:50 +0200
Source: console-setup
Binary: keyboard-configuration console-setup console-setup-mini 
console-setup-linux console-setup-freebsd bdf2psf console-setup-udeb 
console-setup-amiga-ekmap console-setup-ataritt-ekmap 
console-setup-macintoshold-ekmap console-setup-pc-ekmap 
console-setup-sun4-ekmap console-setup-sun5-ekmap console-setup-pc-ekbd 
console-setup-linux-fonts-udeb console-setup-freebsd-fonts-udeb 
console-setup-linux-charmaps-udeb console-setup-freebsd-charmaps-udeb
Architecture: source
Version: 1.182
Distribution: unstable
Urgency: medium
Maintainer: Debian Install System Team 
Changed-By: Christian Perrier 
Description:
 bdf2psf- font converter to generate console fonts from BDF source fonts
 console-setup - console font and keymap setup program
 console-setup-amiga-ekmap - encoded Linux keyboard layouts for Amiga keyboards 
(udeb)
 console-setup-ataritt-ekmap - encoded Linux keyboard layouts for Atari TT 
keyboards (udeb)
 console-setup-freebsd - FreeBSD specific part of console-setup
 console-setup-freebsd-charmaps-udeb - FreeBSD 8-bit charmaps for 
console-setup-udeb (udeb)
 console-setup-freebsd-fonts-udeb - FreeBSD console fonts for Debian Installer 
(udeb)
 console-setup-linux - Linux specific part of console-setup
 console-setup-linux-charmaps-udeb - Linux 8-bit charmaps for 
console-setup-udeb (udeb)
 console-setup-linux-fonts-udeb - Linux console fonts for Debian Installer 
(udeb)
 console-setup-macintoshold-ekmap - encoded Linux keyboard layouts for 
old-style Macintosh keyboards (udeb)
 console-setup-mini - console font and keymap setup program - reduced version 
for Linux
 console-setup-pc-ekbd - encoded FreeBSD keyboard layouts for PC keyboards 
(udeb)
 console-setup-pc-ekmap - encoded Linux keyboard layouts for PC keyboards (udeb)
 console-setup-sun4-ekmap - encoded Linux keyboard layouts for Sun4 keyboards 
(udeb)
 console-setup-sun5-ekmap - encoded Linux keyboard layouts for Sun5 keyboards 
(udeb)
 console-setup-udeb - Configure the keyboard (udeb)
 keyboard-configuration - system-wide keyboard preferences
Changes:
 console-setup (1.182) unstable; urgency=medium
 .
   [ Updated translations ]
   * Czech (cs.po) by Miroslav Kure
   * German (de.po) by Holger Wansing
Checksums-Sha1:
 0436a59c5c7cb111660926bd955a1b4f68734674 3287 console-setup_1.182.dsc
 d1a6c79611b16ecf0bb4b87018de4bfb6231cd94 1648264 console-setup_1.182.tar.xz
Checksums-Sha256:
 3ed6a9b22c72f125de3cda6e994ef2f2257304dd4d144093316d5263f69ed578 3287 
console-setup_1.182.dsc
 6575fe4fc79dab7d259e6a12e95c63c7e414831284c19454c0bd8a81b7f1faff 1648264 
console-setup_1.182.tar.xz
Files:
 2738a7d11a8126ce47f7bf636d0fa801 3287 utils optional console-setup_1.182.dsc
 0885896db0623b3c0e00757cf823b9cc 1648264 utils optional 
console-setup_1.182.tar.xz

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEE1cL5v8oSi7oip3IYhy9wLE1uJagFAlrAidcACgkQhy9wLE1u
Jag0+w//dIGn33ia9b+vtql6RmVlK+Qv+CFW3M5u2HHVt/6ZG4QrlTrGHa/RQmbf
/bsPGs+UVVNYgDq0Ce9+YJRYewlj/WUnLzjzaA9SbxlLGh2n4qTesXQ218W46JES
8kY503taJxCQFGdUtkPvno5DywCJmWtFS1aDw/jzXnfc53JKrsJ69Im/m3wIWwSa
mIHrJrVEzlNqgeNlJS9wxaV8BbOHV3lHSnjELf22i3QmcODI8cBNDy6x9wn0f/ZF
LmMfPVnAm6HO9SDzBkK+p3M4UW6lICfANmPEvEC30JwW5O8piEwe+ROqjB8QZIDT
gdPqD3pXFCLpWXuE0U3pCnuy9uF9Kw92wNJ0UT6hxeFIPJNL1YuicF1uq16ANFiM
0/vVUJgu9tKDLl5kSXtExzUcsNvunVy6d9u3KfX1Iix9XKUqDjycp+z4193OZy4q
I676oUUL8jCSg1sz/UKGV7QfkU640I3gO8UIukk0BwlTZOCptQIlvkAdSt3CrpR1
LrMVC+WQ/jxSxDoI9rN+AFOShxOOCeETwHN2ioynR/4OoXxvhTHDtp+nzQYjttQO
CSYFIkAotaE2Ij7yGIo3ttg16+bGH+5LdfX91vpXJ198WJaItJMnqhM2LXhVyIBD
IDxF36a0pwJ32Sq6euJ2y8oQTFL65YcStPvJzoO+mWw//ihwmCE=
=nkD+
-END PGP SIGNATURE-