Processed: Re: Bug#845414: cdebconf: makes debian-installer FTBFS due to libdebconf.so issues (binutils)

2016-11-22 Thread Debian Bug Tracking System
Processing control commands:

> clone 845414 -1
Bug #845414 [src:cdebconf] cdebconf: makes debian-installer FTBFS due to 
libdebconf.so issues (binutils)
Bug 845414 cloned as bug 845418
> reassign -1 mklibs-copy 0.1.42
Bug #845418 [src:cdebconf] cdebconf: makes debian-installer FTBFS due to 
libdebconf.so issues (binutils)
Bug reassigned from package 'src:cdebconf' to 'mklibs-copy'.
No longer marked as found in versions cdebconf/0.219.
Ignoring request to alter fixed versions of bug #845418 to the same values 
previously set
Bug #845418 [mklibs-copy] cdebconf: makes debian-installer FTBFS due to 
libdebconf.so issues (binutils)
Marked as found in versions mklibs/0.1.42.
> retitle -1 mklibs-copy: add support for RUNPATH (for newer binutils)
Bug #845418 [mklibs-copy] cdebconf: makes debian-installer FTBFS due to 
libdebconf.so issues (binutils)
Changed Bug title to 'mklibs-copy: add support for RUNPATH (for newer 
binutils)' from 'cdebconf: makes debian-installer FTBFS due to libdebconf.so 
issues (binutils)'.
> severity -1 important
Bug #845418 [mklibs-copy] mklibs-copy: add support for RUNPATH (for newer 
binutils)
Severity set to 'important' from 'grave'
> tags -1 patch pending
Bug #845418 [mklibs-copy] mklibs-copy: add support for RUNPATH (for newer 
binutils)
Added tag(s) patch and pending.
> block 845414 by -1
Bug #845414 [src:cdebconf] cdebconf: makes debian-installer FTBFS due to 
libdebconf.so issues (binutils)
845414 was not blocked by any bugs.
845414 was not blocking any bugs.
Added blocking bug(s) of 845414: 845418

-- 
845414: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=845414
845418: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=845418
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems



Bug#845401: debian-installer: auto=true not working

2016-11-22 Thread Joerg Jaspert
On 14500 March 1977, Andrey Yarkov wrote:
> I added the following to kernel parameters on Jessie-8.6.0 official 
> installation DVD-1
> auto=true url=http://my.ip.addr.ess/preseed.cfg
> but I got asked keyboard or locale related questions anyway.

As expected, happens to network boot installs too.

> Could it be that the delaying functionality got lost?

I've always had to preseed the various questions asked before network is
available too. d-i offers a feature just for this: A series of short
options for the kernel commandline, see its documentation. If you set
them, it will run without asking anything.

-- 
bye, Joerg



Bug#845414: cdebconf: makes debian-installer FTBFS due to libdebconf.so issues (binutils)

2016-11-22 Thread Cyril Brulebois
Control: clone 845414 -1
Control: reassign -1 mklibs-copy 0.1.42
Control: retitle -1 mklibs-copy: add support for RUNPATH (for newer binutils)
Control: severity -1 important
Control: tags -1 patch pending
Control: block 845414 by -1

Cyril Brulebois  (2016-11-23):
> As expected, libdebconf.so didn't change too much: nm -D and objdump -x
> don't show any differences before/after. But binaries depending on it do
> change; let's look at /usr/lib/cdebconf/debconf for example (still from the
> cdebconf package):
> | (sid-amd64-devel)kibi@wodi:~/debian-installer/packages$ diff -u 
> /tmp/debconf.objdump.{ok,ko}
> | --- /tmp/debconf.objdump.ok 2016-11-23 08:09:37.715596978 +0100
> | +++ /tmp/debconf.objdump.ko 2016-11-23 08:09:42.735672870 +0100
> | @@ -29,7 +29,7 @@
> |NEEDED   libpthread.so.0
> |NEEDED   libdebconf.so
> |NEEDED   libc.so.6
> | -  RPATH/usr/lib/cdebconf
> | +  RUNPATH  /usr/lib/cdebconf
> |INIT 0x0f58
> |FINI 0x1d94
> |INIT_ARRAY   0x00202da8
> 
> Let's see if I can do something with mklibs to account for this change.

It seems it's sufficient to teach mklibs-copy that it can handle RPATH and
RUNPATH in the same way. I've successfully tested a patch that implements
this change, mixing both old and new binaries.

I've managed to build netboot and netboot-gtk images (fetching udebs from
testing to avoid the X11 transition, but pulling cdebconf udebs from sid),
and everything seems to work as intended: build time is OK, and run time
shows cdebconf starting properly (text or gtk).

I think I'll upload mklibs with that patch soon, and I'll probably close
the cdebconf bug report only when that mklibs update reaches testing. With
a little chance, the X11 transition won't last too long, and daily builds
might confirm things are looking good everywhere.

Patch attached for reference.


KiBi.
From 184905b0e534d68400834c1bc4d0d3808c5ab650 Mon Sep 17 00:00:00 2001
From: Cyril Brulebois 
Date: Wed, 23 Nov 2016 08:25:29 +0100
Subject: [PATCH] Add support for DT_RUNPATH in addition to DT_RPATH.

Main reasons to do so include:
 - according to the elf.h header, the latter is deprecated.
 - new versions of binutils generate DT_RUNPATH entries instead of
   DT_RPATH ones, as detailed in cdebconf's #845414.
---
 debian/changelog| 10 ++
 src/mklibs-readelf/elf.cpp  |  1 +
 src/mklibs-readelf/main.cpp |  1 +
 3 files changed, 12 insertions(+)

diff --git a/debian/changelog b/debian/changelog
index b90315d..8af9465 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,13 @@
+mklibs (0.1.43) UNRELEASED; urgency=medium
+
+  * Add support for DT_RUNPATH in addition to DT_RPATH. Main reasons to
+do so include:
+ - according to the elf.h header, the latter is deprecated.
+ - new versions of binutils generate DT_RUNPATH entries instead of
+   DT_RPATH ones, as detailed in cdebconf's #845414.
+
+ -- Cyril Brulebois   Wed, 23 Nov 2016 08:21:57 +0100
+
 mklibs (0.1.42) unstable; urgency=high
 
   * mklibs-readelf: Initialize section_DYNAMIC and section_DYNSYM to
diff --git a/src/mklibs-readelf/elf.cpp b/src/mklibs-readelf/elf.cpp
index b8baa9f..0e4c0f3 100644
--- a/src/mklibs-readelf/elf.cpp
+++ b/src/mklibs-readelf/elf.cpp
@@ -419,6 +419,7 @@ dynamic_data<_class, _data>::dynamic_data (Dyn *dyn) throw ()
 case DT_NEEDED:
 case DT_SONAME:
 case DT_RPATH:
+case DT_RUNPATH:
   this->is_string = true;
   break;
 default:
diff --git a/src/mklibs-readelf/main.cpp b/src/mklibs-readelf/main.cpp
index 2444c39..5eace3b 100644
--- a/src/mklibs-readelf/main.cpp
+++ b/src/mklibs-readelf/main.cpp
@@ -147,6 +147,7 @@ static void process (command cmd, const char *filename)
   break;
 case COMMAND_PRINT_RPATH:
   process_dynamics (file, DT_RPATH);
+  process_dynamics (file, DT_RUNPATH);
   break;
 case COMMAND_PRINT_SONAME:
   process_dynamics (file, DT_SONAME);
-- 
2.10.2



signature.asc
Description: Digital signature


Bug#845414: cdebconf: makes debian-installer FTBFS due to libdebconf.so issues (binutils)

2016-11-22 Thread Cyril Brulebois
Cyril Brulebois  (2016-11-23):
> | mklibs-copy -L ./tmp/netboot/tree/usr/lib -L 
> ./tmp/netboot/tree/usr/lib/x86_64-linux-gnu \
> | -L ./tmp/netboot/udeblibs -v -d ./tmp/netboot/tree/lib 
> --root=./tmp/netboot/tree \
> | -L ./tmp/netboot/tree/usr/lib/cdebconf/frontend \
> | -ltext.so -lnewt.so \
> | `find ./tmp/netboot -type f -a \( -perm /0111 -o -name '*.so' -o -name 
> '*.so.*' \) | \
> |  grep -v udeblibs | grep -v 'usr/lib/xorg/modules/.*\.so'`
> | INFO: Using /lib64/ld-linux-x86-64.so.2 as dynamic linker
> | INFO: library reduction pass 1
> | File not found:libdebconf.so
> | Makefile:485: recipe for target 'stamps/tree-netboot-stamp' failed
> 
> This happened for daily builds, and is reproducible on sid devel chroots,
> on various architectures.
> 
> Based on a hunch, I investigated a few things around binutils: downgrading
> it to try a debian-installer build, with or without cdebconf udebs rebuilt
> against the said binutils. Results:
> 
> cdebconf 0.219 (rebuilt with 2.27.51.20161108-1) => debian-installer builds 
> fine, with old & new binutils.
> cdebconf 0.219 (rebuilt with 2.27.51.20161118-2) => debian-installer FTBFS, 
> with old & new binutils.
> 
> I'll try and investigate a bit more, maybe some other packages are going
> to be affected by this, but cdebconf is special considering it has
> plugins; also, binutils had commits touching the linker…

As expected, libdebconf.so didn't change too much: nm -D and objdump -x
don't show any differences before/after. But binaries depending on it do
change; let's look at /usr/lib/cdebconf/debconf for example (still from the
cdebconf package):
| (sid-amd64-devel)kibi@wodi:~/debian-installer/packages$ diff -u 
/tmp/debconf.objdump.{ok,ko}
| --- /tmp/debconf.objdump.ok   2016-11-23 08:09:37.715596978 +0100
| +++ /tmp/debconf.objdump.ko   2016-11-23 08:09:42.735672870 +0100
| @@ -29,7 +29,7 @@
|NEEDED   libpthread.so.0
|NEEDED   libdebconf.so
|NEEDED   libc.so.6
| -  RPATH/usr/lib/cdebconf
| +  RUNPATH  /usr/lib/cdebconf
|INIT 0x0f58
|FINI 0x1d94
|INIT_ARRAY   0x00202da8

Let's see if I can do something with mklibs to account for this change.


KiBi.


signature.asc
Description: Digital signature


s390-dasd_0.0.44_source.changes ACCEPTED into unstable

2016-11-22 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Wed, 23 Nov 2016 07:26:38 +0100
Source: s390-dasd
Binary: s390-dasd
Architecture: source
Version: 0.0.44
Distribution: unstable
Urgency: medium
Maintainer: Debian Install System Team 
Changed-By: Christian Perrier 
Description:
 s390-dasd  - Configure DASD (udeb)
Changes:
 s390-dasd (0.0.44) unstable; urgency=medium
 .
   [ Updated translations ]
   * Kazakh (kk.po) by Baurzhan Muftakhidinov
Checksums-Sha1:
 572740c283825cae94c603d06df3f8eabc41576f 1707 s390-dasd_0.0.44.dsc
 a0584328563f02c1a717f82093383736a309d098 60204 s390-dasd_0.0.44.tar.xz
Checksums-Sha256:
 0ff6bef0cad102f46a701bdfe438f19acff35aff4abd742328abc7e54273f540 1707 
s390-dasd_0.0.44.dsc
 d9658c8115c9baf2f74d7a16dbed971c77156968c6817e7282680946f6f2ff7b 60204 
s390-dasd_0.0.44.tar.xz
Files:
 9ddb5e79f6e688c3013eaa87e6cea95a 1707 debian-installer standard 
s390-dasd_0.0.44.dsc
 06affb663d29698d9e289b8344c69818 60204 debian-installer standard 
s390-dasd_0.0.44.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJYNTfiAAoJEIcvcCxNbiWoy3gP/1YubntvSGFJZXEbqqyrvOnm
m75Jek2A9dTzOXroAjS6OAzZRD8Zs6+9PaZhXnyz5d4waI2Zy8B6c7Yl2BseD+aT
zvsiobamyP3iszhkXAHFzDRcQV9Ob+lWe67G1+ePAhOsN236T4JMZTLVFqFwPwBB
cgxT+7GLJ7/Lphn7tIlm4oZV5xcygSGWj+E11rTx6c/FflUYfZ1xl5IawWDwi0Qa
wIjb0TlaulD2zIjUn9Xarw1mjHu0V/O1rBsUqSqEomUwaeaC2axsGGN7JDfmEJSJ
3YSvIZf1WmgWgzZZTkP7MXZjAktFGHDMgQ9Luv5b/ihxC5jzYUkFBTpNIFlwARlN
u61E6rT9rYegXrqF0RiK2A7xgc5+Dw1xNOp81JmCYqBh7d0+oI+bClvNYOl74e/H
WOngUyDRz3Q7Vijo8xMXdp7xOLNeuefM04hKS82ToprP2ytnVhpW03nsRsiWvLmq
HekOS9uRNtqnXmn4yKTGn6I4yA0K3TaxtNF3ek3zADFZff2BpjVX4I20yHI0zFjS
kIKVW+Edcl6mjUfTM4VJ5dRmUa0cmfGIzu7Zel0XLk39RWypdAYWDgfKFoSbPM95
bDXLtPPVjm1QFrVEn6zeWtWLAbWIHdnwtrYn8Bymb5/CLQgh9pNCYwVjg+hI60y7
dJJEAOhTJQNX315TELWm
=RLRX
-END PGP SIGNATURE-


Thank you for your contribution to Debian.



Bug#845401: debian-installer: auto=true not working

2016-11-22 Thread Андрей Ярков
Following is the quote from this page:  
https://www.debian.org/releases/jessie/i386/apbs02.html.en#preseed-auto  

The  "auto"  kernel parameter is an alias for  "auto-install/enable"  and 
setting it to  "true"  delays
the locale and keyboard questions until after there has been a chance to 
preseed them.


s390-netdevice_0.0.50_source.changes ACCEPTED into unstable

2016-11-22 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Wed, 23 Nov 2016 07:27:08 +0100
Source: s390-netdevice
Binary: s390-netdevice
Architecture: source
Version: 0.0.50
Distribution: unstable
Urgency: medium
Maintainer: Debian Install System Team 
Changed-By: Christian Perrier 
Description:
 s390-netdevice - Configure network hardware (udeb)
Changes:
 s390-netdevice (0.0.50) unstable; urgency=medium
 .
   [ Philipp Kern ]
   * Do not ask for the relative qeth port by default (debconf priority
 critical -> medium).
 .
   [ Updated translations ]
   * Kazakh (kk.po) by Baurzhan Muftakhidinov
Checksums-Sha1:
 ab5338a62cc0d374031d2900cdf4d6b5c85c51be 1787 s390-netdevice_0.0.50.dsc
 92d2bccae703bffa736910703bbd8c95cdcb9af9 95384 s390-netdevice_0.0.50.tar.xz
Checksums-Sha256:
 ede296b426351b502aae4b24460f831ca2585a6bafe6bfe9539efd29d368b4e9 1787 
s390-netdevice_0.0.50.dsc
 a958d24aab5e8029d6f63c9fe61e67f9946ff92c383eb7aba3e66ab42dc03d46 95384 
s390-netdevice_0.0.50.tar.xz
Files:
 4f6df5ae9cfc9b476c280763bf55 1787 debian-installer standard 
s390-netdevice_0.0.50.dsc
 3a3d3d583bd9ede4808b9a3fb6e392bd 95384 debian-installer standard 
s390-netdevice_0.0.50.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJYNTf2AAoJEIcvcCxNbiWoZrYP/Rs/SKH6y60S+xZ/FAq2ym7u
I9Em7pab53nVSzQkez2HEhuMq4aAof7zlbWs/ByIfOak8uUtRNqJEVx1PdCmEfy6
Cf1xJpHgk13pECrMuxhcgef5C8Nswshp5Haug3D+dkY4l8gYE0FZ6vtWoubpUU/A
U4RgsjzR/xnSpWX7mGjTofWkuHVnPCgrzgbO5LwvNV7oipsr5B4HKWj3Goj/nrN7
z/aDrhnshacyaVPXGo9/p4Ltj+Kqpqzm53QouIiNERM6E3XLxSVuet7hnK+qHr1B
Whuu4AHzMRosOz8sEGqIg0PoWUOjlkwRBfhnaSEPsm8Fs6B1Uf0XLxRSDbKLjsy4
vMR+xd98pXLCkrDXQBhGfbLlHVEFjpBJDY85kPtxt7PHq4yTsHldqx+S9eN9rE+T
z6FNUs/UbmGurRZoe9rM0h9IvhQugb9OGb/EuMFPnAlDhyVPGgS6qkwezHDw62Yr
rBtdFjmCIWcyTr5vtkgyTw8U0L+b09r3TOmmgVWK4tWeK4AdqNgvZMADRXG7BWe2
rFpvSdJ/Gos9lQVWug++rdynJEOhm9tp224lbEtTsxf7k8vIhqwu8dAxvn/q0thP
wK8yDODclJOmiCW8asEkC5VndjQkJBaH3NqxomFrDP83LFX8GZF8K/i+ZtkzMnF2
m7aZaaQ9EPWfVousm7J5
=qGbE
-END PGP SIGNATURE-


Thank you for your contribution to Debian.



rescue_1.61_i386.changes ACCEPTED into unstable

2016-11-22 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Wed, 23 Nov 2016 07:17:20 +0100
Source: rescue
Binary: rescue-check rescue-mode
Architecture: source all
Version: 1.61
Distribution: unstable
Urgency: medium
Maintainer: Debian Install System Team 
Changed-By: Christian Perrier 
Description:
 rescue-check - enter d-i rescue mode if requested (udeb)
 rescue-mode - mount requested partition and start a rescue shell (udeb)
Changes:
 rescue (1.61) unstable; urgency=medium
 .
   [ Updated translations ]
   * Czech (cs.po) by Miroslav Kure
Checksums-Sha1:
 841b1a438c56e55200d04f78f78bf5fcccbe07bd 1663 rescue_1.61.dsc
 adc5d2412f3d05f3de58c230989c95987e454014 141232 rescue_1.61.tar.xz
 649efad88c5c05f30efd79f1f8c6d3db48f3 2652 rescue-check_1.61_all.udeb
 042cb8dd4dc0e170eaa28554897b9c7f77d95969 145952 rescue-mode_1.61_all.udeb
 9f34bbc825af2c98ac1c04f16542a30b1db549b0 4807 rescue_1.61_i386.buildinfo
Checksums-Sha256:
 5b5f1dfbb88524c6ebc0dcb4687034a5fdbd81801ce5ed27f1833e9e72be1dff 1663 
rescue_1.61.dsc
 5145f5dea23b777e0e688b7ee58f1bf7d5b715ebf142d3737c9a3a2af367df7e 141232 
rescue_1.61.tar.xz
 7982ddf3a6da87c698bf575959d5df4c48ef3db7887912e53ff3c3e57cbdd2f2 2652 
rescue-check_1.61_all.udeb
 3e919cbee04896b40a153a7ba733502c1c73a57a8beffc279538b52f7a64c232 145952 
rescue-mode_1.61_all.udeb
 bf2b098cfdd2bd84b6af602abe543fea4526177be4245d2d47eaf13242442bc0 4807 
rescue_1.61_i386.buildinfo
Files:
 32bb2472131715b4b79ea7468b20a2cc 1663 debian-installer optional rescue_1.61.dsc
 2d79ce87cc8c4b09a3e94b606d78123e 141232 debian-installer optional 
rescue_1.61.tar.xz
 1d98b33122e39d156d325628203d6387 2652 debian-installer standard 
rescue-check_1.61_all.udeb
 f4c7d8e265788be78d6a064680a64119 145952 debian-installer optional 
rescue-mode_1.61_all.udeb
 ba6de7c196e37ea7a971493b5d834bd6 4807 debian-installer optional 
rescue_1.61_i386.buildinfo

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJYNTfLAAoJEIcvcCxNbiWo0CEQAIlbNB8UWjaJWOQUFM/kT9f+
5xJ/8sKNotOLDA2qX41KmPQsC4ukkSI0jsTwBgsnglxVGyW27EXpcsSPytBGRXtp
UQ4um+5HtL8uTtPM6N5rEc+ALHx1DrFaveuf6gXjdWne3dKNm2R2wPthvi8qtiLy
yarbaLYdh+zmWPHzCPTPGL8wpFvUqjoXUM+nwUdUZ1l0dqyGMptAXbHclIN9fUs/
aRfeQ2K1TzJVl6vtrRF5dSCf15YzryAeTmwEe/NpV29+7GNI4M2lT17StGGCSoLC
0jt1yBhq7UlcqMQnFEp3gc5ECiAIYnYLtvqtT51BMQQmyWf7ZAwMqXqIWj7E4YYL
iKcsrCG95bvWgXS377aybfq9FwSHjEi0zd3dSQUYhkQFjFACoJNUkrPCXQtb5A+0
v8/Bf0KQ6lv73Vils9LGuPDHvqWTBMM/ledz41p1sRSbeK8ncA0/v3JETuYq0gsB
6Kee6aFxhkzYVWlIhq9XMy/RTz1G1FGY1nddc+5hrbrmUx5rZTtFrFYR0lIAxRlI
mmZBDJb0SlzZ//MgWA+ErETFWH0rvIUvQn4JuwakEAiW6DNvrTBaDjxd86xw9kdN
4iTdd+FZ0WPh+w9dFuoOaLjRkaADBf6ND6r9b6j8vGGj4MHCGet6vCORUC1R0eTR
w775Fvm7h25O99j9Tj7d
=Ki6W
-END PGP SIGNATURE-


Thank you for your contribution to Debian.



Bug#845414: cdebconf: makes debian-installer FTBFS due to libdebconf.so issues (binutils)

2016-11-22 Thread Cyril Brulebois
Source: cdebconf
Version: 0.219
Severity: grave
Justification: renders package unusable

This update has to stay away from testing since it generates the following
issue during the build:
| # HACK ALERT: X.Org modules are excluded from the scan as mklibs
| # is unable to find symbols provided by the /usr/bin/Xorg binary
| mklibs-copy -L ./tmp/netboot/tree/usr/lib -L 
./tmp/netboot/tree/usr/lib/x86_64-linux-gnu \
|   -L ./tmp/netboot/udeblibs -v -d ./tmp/netboot/tree/lib 
--root=./tmp/netboot/tree \
|   -L ./tmp/netboot/tree/usr/lib/cdebconf/frontend \
|   -ltext.so -lnewt.so \
|   `find ./tmp/netboot -type f -a \( -perm /0111 -o -name '*.so' -o -name 
'*.so.*' \) | \
|grep -v udeblibs | grep -v 'usr/lib/xorg/modules/.*\.so'`
| INFO: Using /lib64/ld-linux-x86-64.so.2 as dynamic linker
| INFO: library reduction pass 1
| File not found:libdebconf.so
| Makefile:485: recipe for target 'stamps/tree-netboot-stamp' failed

This happened for daily builds, and is reproducible on sid devel chroots,
on various architectures.

Based on a hunch, I investigated a few things around binutils: downgrading
it to try a debian-installer build, with or without cdebconf udebs rebuilt
against the said binutils. Results:

cdebconf 0.219 (rebuilt with 2.27.51.20161108-1) => debian-installer builds 
fine, with old & new binutils.
cdebconf 0.219 (rebuilt with 2.27.51.20161118-2) => debian-installer FTBFS, 
with old & new binutils.

I'll try and investigate a bit more, maybe some other packages are going
to be affected by this, but cdebconf is special considering it has
plugins; also, binutils had commits touching the linker…


On not entirely unrelated notes:
 - cdebconf will FTBFS on buildds due to this x11-common bug: #845405
   (seen with jenkins jobs going red as noticed on IRC)
 - d-i will FTBFS for a while on x86 due to the X11 transition.


KiBi.



Processing of s390-netdevice_0.0.50_source.changes

2016-11-22 Thread Debian FTP Masters
s390-netdevice_0.0.50_source.changes uploaded successfully to localhost
along with the files:
  s390-netdevice_0.0.50.dsc
  s390-netdevice_0.0.50.tar.xz

Greetings,

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



Processing of s390-dasd_0.0.44_source.changes

2016-11-22 Thread Debian FTP Masters
s390-dasd_0.0.44_source.changes uploaded successfully to localhost
along with the files:
  s390-dasd_0.0.44.dsc
  s390-dasd_0.0.44.tar.xz

Greetings,

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



Processing of rescue_1.61_i386.changes

2016-11-22 Thread Debian FTP Masters
rescue_1.61_i386.changes uploaded successfully to localhost
along with the files:
  rescue_1.61.dsc
  rescue_1.61.tar.xz
  rescue-check_1.61_all.udeb
  rescue-mode_1.61_all.udeb
  rescue_1.61_i386.buildinfo

Greetings,

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



partman-btrfs_25_i386.changes ACCEPTED into unstable

2016-11-22 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Wed, 23 Nov 2016 07:14:05 +0100
Source: partman-btrfs
Binary: partman-btrfs
Architecture: source all
Version: 25
Distribution: unstable
Urgency: medium
Maintainer: Debian Install System Team 
Changed-By: Christian Perrier 
Description:
 partman-btrfs - Add to partman support for btrfs (udeb)
Changes:
 partman-btrfs (25) unstable; urgency=medium
 .
   [ Updated translations ]
   * Czech (cs.po) by Miroslav Kure
   * Kazakh (kk.po) by Baurzhan Muftakhidinov
Checksums-Sha1:
 bc2d7a30e10d3844e74b5d7c2048aa6748248929 1694 partman-btrfs_25.dsc
 de73d7ee0e4d88eef661187d124a7db28d5be261 44452 partman-btrfs_25.tar.xz
 aa3634d1a41446fd1f7b37b9376f75cea7ac55f8 8542 partman-btrfs_25_all.udeb
 857f4c1d308434c3905323fc1eff09ef0abfdbb1 4577 partman-btrfs_25_i386.buildinfo
Checksums-Sha256:
 73b88dd69fc2a8fe3611e212efc127443d25c289e032ff9f4d50c94be37bfdd2 1694 
partman-btrfs_25.dsc
 c064dbcef316163a6afca8930f94fecb7a34a9fa8bf8c274cd9c5b66834bf724 44452 
partman-btrfs_25.tar.xz
 dd48bf11f9caf6306d73a97dd70094ec0981d079d4584201f136285577cfbc93 8542 
partman-btrfs_25_all.udeb
 9c3dbf9221ddf480589bf77b74584ac8a109a023f13470c6e606538ac856 4577 
partman-btrfs_25_i386.buildinfo
Files:
 49a90dbab84263b0ad8e12016a14b2a0 1694 debian-installer standard 
partman-btrfs_25.dsc
 7e84a086c931e495391d5cbeaa3e384d 44452 debian-installer standard 
partman-btrfs_25.tar.xz
 15779d3ed38ef372931398fe8c88cb7d 8542 debian-installer standard 
partman-btrfs_25_all.udeb
 10672d6f8c533257de65c0a73189009a 4577 debian-installer standard 
partman-btrfs_25_i386.buildinfo

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJYNTZIAAoJEIcvcCxNbiWoXFoQAKkZ6Ia5gBqPFLZBSk+D3whv
5l68PPeMNRG0QcS3pO6WNhbWdnMbrzVSLCbkCzWLaozcmT2JQHDB8sdU/ro+oRit
t3SzgTtlCVftE8ixFb8vYGQD9vON+qu1c1EuTbBPBXv1FpGUMEZ0zlJnqIu3ett6
WaAsEV1wmbo08FkqP2G/0mhdbaV5xz07sHJIs110l8saJR8NPq8tXd+V2y+/PzcI
Y1symnz2Gb7GHTb0Z6AiCYgBpRldV3XOc709w5tr9UNjfKkhL6AzhBFthc0A5+2X
18UoZypdWNYs1ganzjMdA9xrAMbEOaa38ueqSA+2acug5Z3EzS1X1VSAptYR+wL/
lqNojRuJpXxaMJYTHr6ASiD6XZMTRNwfTQBHYUW+rFtwhuVC6wo/Ho352Pz7F0+I
DYFXrOQpWpZ/ylk26PkqUMf//xBORlj9Sao28HxmR0a0axJsT7OtF19paS3iQWLp
JE+ka5h6hsPd+Xu8lwy/Ob7fHdOWszrL7wkuc3tgg3JEgRCy9vvOMTUHSKUpeFL+
pR0Mgby4vACIG2HyERh7Zp1tJEcIvMriarpkdIS7KZFzbwuG9Hbf+xsIVhVyxK8z
YyQSYb3h2D6fCStwP/+i5zri6ex4tPlO5epb8rMc4RYnq3COTzLaojMXS4Tue8tH
PGVrteXICRItxdgizAuT
=hR13
-END PGP SIGNATURE-


Thank you for your contribution to Debian.



partman-nbd_0.42_i386.changes ACCEPTED into unstable

2016-11-22 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Wed, 23 Nov 2016 07:16:07 +0100
Source: partman-nbd
Binary: partman-nbd
Architecture: source all
Version: 0.42
Distribution: unstable
Urgency: medium
Maintainer: Debian Install System Team 
Changed-By: Christian Perrier 
Description:
 partman-nbd - Adds support for NBD to partman (udeb)
Changes:
 partman-nbd (0.42) unstable; urgency=medium
 .
   [ Updated translations ]
   * Kazakh (kk.po) by Baurzhan Muftakhidinov
Checksums-Sha1:
 e3d22b492814adf16e23de653b8dd7d55d32a876 1635 partman-nbd_0.42.dsc
 a0f16a35a79007ef9848f56e981340787a62b6cf 66400 partman-nbd_0.42.tar.xz
 5715e5c0181479e426dffbe031e630b97fc70221 38646 partman-nbd_0.42_all.udeb
 feb317fbb0828c86919d00ce61ff876e206a80c3 4578 partman-nbd_0.42_i386.buildinfo
Checksums-Sha256:
 0fe73b739da27872ff5348e0e4c07259b5086b4a22b29228e438d1fa60088d56 1635 
partman-nbd_0.42.dsc
 be4221db90d627e1b105f60ba9cd40732d10bda2d6623950ae5acd09525a261e 66400 
partman-nbd_0.42.tar.xz
 ec9afdf2086dd78bdd1e2d19e7e4e861eae9abbe8a73ecb883c1b3deca097fdf 38646 
partman-nbd_0.42_all.udeb
 993fcf7373a85fa3e9f90871041e1c55ce83d8954aa0ec0416a7956dbd39b735 4578 
partman-nbd_0.42_i386.buildinfo
Files:
 9ff4beab6e05c88d63e5475d0677dd8b 1635 debian-installer optional 
partman-nbd_0.42.dsc
 cff7265f782b77fab0517d6f9436667d 66400 debian-installer optional 
partman-nbd_0.42.tar.xz
 392904296344a7a8cbf9c88160ce405e 38646 debian-installer optional 
partman-nbd_0.42_all.udeb
 403a73447ad077358b0a9199035c0b4a 4578 debian-installer optional 
partman-nbd_0.42_i386.buildinfo

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJYNTZgAAoJEIcvcCxNbiWoZhQP/1g+YiW53GGYeiSHBmBvf7mo
aqE+aVlHAfME1GAVN/EizP9A9cmsNESq/oY2BTddAiBmQBZbqb1agxty35JM1rtl
wKybbFTsHXY2O8Vt+XSAgl+fBsSESmjAFUZoXllQtAKQXmWkZFlGK6xc4vr502/F
hn/FVVvc7WECcO5XskcwzBuIs+/1It96du0nRxQcInsEGRibm2gd8OgGs0JU3qD7
kpYC9O09eQK7GJR/wGc6JvApvKHi7EizYgrjMUZEAxcrJF4XF9Fz0GIJo+cTv9qo
zDlUPjC0JiobDZcrYI20vevyipiN6RYyXJleftRLErwMMYrBVgBxKU87xR7yHtYS
T9K13geXqpX+Gy951L4CB0/wexLyBko7BcJDPmOYWuzfSy/X8NQDVbLgDX+xK5p8
syMpzJTvGaXD8zsjcRpeanYJvo0775aVt+AFGtE2XdF+pXCLLbLp9agsgUEGyNKj
tPn/anIsYRQdi8V4eeg0632qmGemAwG6dT1p6tUUS7RzbqW4qPMiVIILa751q0Vb
vt4p+mRVz3YTT2blzTmBJmZ83qlHqs/3h2NxdOl7VTGlAqfGQh+VM5cIjy6DuCkq
hA94JSZXRnrpys1EIagMrKG3eC5Q81cf7QFHbt/codBc4DT6aObFeAG1iKuo8znm
HlWcRfP8xw61GoffdFeG
=EHJ2
-END PGP SIGNATURE-


Thank you for your contribution to Debian.



network-console_1.62_i386.changes ACCEPTED into unstable

2016-11-22 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Wed, 23 Nov 2016 07:13:47 +0100
Source: network-console
Binary: network-console
Architecture: source i386
Version: 1.62
Distribution: unstable
Urgency: medium
Maintainer: Debian Install System Team 
Changed-By: Christian Perrier 
Description:
 network-console - Continue installation remotely using SSH (udeb)
Changes:
 network-console (1.62) unstable; urgency=medium
 .
   [ Updated translations ]
   * Kazakh (kk.po) by Baurzhan Muftakhidinov
Checksums-Sha1:
 a7fbf479fe5576f6e58f0a85a30748c14f97e2ed 1666 network-console_1.62.dsc
 5084cf84ff28a487c9e81188729d9a3e67cafbb1 97108 network-console_1.62.tar.xz
 93318d3929b043bc45291eb416f758d95f33f06a 4604 
network-console_1.62_i386.buildinfo
 44b1d68b7dfc9eaf12f267be8be6d3fcf7287e34 73584 network-console_1.62_i386.udeb
Checksums-Sha256:
 c88973d8012a0bd9559d000344992297deed07eeb2c3f3dd943942ef1f879b02 1666 
network-console_1.62.dsc
 a29d568d00964a206894344d67463ee6d652be3ecd5ea37b4f75c30c8f80071d 97108 
network-console_1.62.tar.xz
 5b3a2261033c9eb8e5f670c7677ef08088f1d1067911f63318f479fc70720651 4604 
network-console_1.62_i386.buildinfo
 f0408bdb48eb52b7578ae02969af40c0f80103ea38d85a93e9afd049e40635e8 73584 
network-console_1.62_i386.udeb
Files:
 28b0e9d21c881b802c30e04766ed314a 1666 debian-installer optional 
network-console_1.62.dsc
 c814076f2c7ed5f40cc7b66ab38974dc 97108 debian-installer optional 
network-console_1.62.tar.xz
 d5e06f722e9ab8ce518da7808b17e498 4604 debian-installer optional 
network-console_1.62_i386.buildinfo
 0ca218bdadc1bf249c8e72208a00cdbe 73584 debian-installer optional 
network-console_1.62_i386.udeb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJYNTYmAAoJEIcvcCxNbiWoCP8P/RcDiN3H80CcS1eshNtptLJq
XCHrOZ9I6tBfKtWB3myhMCfB2qSOACiPjcmLhv08kLaTI5MbH7kRkyewc29933l7
6NaqyR8aYVJNYq7xTLnSe+JTUmXTyqQvgH/Q9aE2wMP1aEwsHKTJJoZG7e3dCETq
dnJhXWYh7Rrko6Hl5d7kQVMUVVRzAswyhsgdG7sE4beVcPPmwEj8GF+rsny8khg8
KZ8/CBkoHoqA55zdCkicZ6oG+WU43h2U7Ba3Ti+Q8E6FeDW97QDG0TXCUfxBujw9
TgWqCfeUUMGeLj0WcwqjM74JDTZIoZ7YiGmA501JK3UgsQJaW5vH0HIR7UfHjKGX
++vkjsVo/hdf05zl90dla4OHxKriG9yHqp4wLK8S3ds2zWmH0CFnHxyl4CN/l9gY
8DNmNbcUHQf1+H66SJHx13acKY+U79kP2WG2f7dLeKKFw1W/LtCAPKUUA6i40Eod
GV88onhmYcATSH6bJMWLkaG0rDrlyPyrAwwkmzDVbAqJp/pryIfZRbYXWdVTKd5B
7TZyjUoR0VRulzYoVVfFZd/XAV8o9ISXgXOvdR3l/aCe5B0dqZJjtqw5VCwTK3gT
uXFCMmKFxdB9B3YjzeC/bUL6q1pyeoDi/kAyI/CKcYghoUtNZkNhg1gUeGPdF+wz
Zhw4oBPBUCyRJt32g8lz
=HsiY
-END PGP SIGNATURE-


Thank you for your contribution to Debian.



Processing of partman-nbd_0.42_i386.changes

2016-11-22 Thread Debian FTP Masters
partman-nbd_0.42_i386.changes uploaded successfully to localhost
along with the files:
  partman-nbd_0.42.dsc
  partman-nbd_0.42.tar.xz
  partman-nbd_0.42_all.udeb
  partman-nbd_0.42_i386.buildinfo

Greetings,

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



Re: On uploads and responsibilities

2016-11-22 Thread Cyril Brulebois
Hi Christian,

Christian PERRIER  (2016-11-21):
> I'm always balanced about this and, up to now, try to have a look at
> code changes when I apply my "upload fast" policy. But, well, it's
> also obvious that I'm too much disconnected from the current
> development challengesand thus may miss important potential
> breakages.
> 
> So, on one hand that would suggest more deep care and investigation
> before uploading.
> 
> On the other hand, fast uploading should, at least theoretically,
> reveal potential breakages (see recent debootstrap or base-installer
> stories) and, indeed, it does. The main problem seems to be that
> we desperately lack manpower to *process* reported breakagesand
> thus take appropriate action (for what I've seen, Julien reverted the
> debootstrap usr-merge changes but probably only after he noticed that
> nobody else would take action).

The problem is two-fold:
 - we need people to fix breakages that are reported.
 - we need to detect those breakages.

We're slowly getting more automated testing, but there's indeed some
workload as far as keeping stuff working goes, on both topics.

> I don't really know what to do, indeed. Continuing to upload quickly
> is likely to lead to such situations. Poking people about their
> changeswill I really commit to do this, I'm not sure, given the
> (very limited) time I currently keep for this work. Stopping fast
> uploads : I'm fairly sure this would lead to "commits wait for ages to
> be uploaded" situations.

Given we're slowly progressing through the release cycle, I think it
would be better at this point to have commits staged but not uploaded
instead of stuff getting uploaded without “after-sales service”.

People pushing changes should be encouraged to take responsibility and
upload themselves instead of waiting for someone to do that; with that
someone being you…

(As I tried to convey in my first mail: I'm very happy you're still
spending time on d-i after all these years; but I also think we need to
find something that works a little better, and doesn't make you feel
like the one responsible for regressions.)

> I might adapt to something like "check non uploaded stuff, except
> l10n, on a weekly or monthly basis, and not daily". That would help
> avoiding "too quick" uploads. I'm however quiute sure that I can't
> commit to promise poking each and every person about their
> changes.we also need everybody with commit rights to D-I git to be
> responsible and try to anticipate the consequences of their changes.

I'm not sure the problem is about quickness; probably more about the
contents of the changes.

Speaking of which, I'd like to get more traction on the l10n front (4
languages uptodate right now…), maybe we'll be able to find something
that works fine to get work (translation) done and uploaded…


KiBi.


signature.asc
Description: Digital signature


Processing of network-console_1.62_i386.changes

2016-11-22 Thread Debian FTP Masters
network-console_1.62_i386.changes uploaded successfully to localhost
along with the files:
  network-console_1.62.dsc
  network-console_1.62.tar.xz
  network-console_1.62_i386.buildinfo
  network-console_1.62_i386.udeb

Greetings,

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



Processing of partman-btrfs_25_i386.changes

2016-11-22 Thread Debian FTP Masters
partman-btrfs_25_i386.changes uploaded successfully to localhost
along with the files:
  partman-btrfs_25.dsc
  partman-btrfs_25.tar.xz
  partman-btrfs_25_all.udeb
  partman-btrfs_25_i386.buildinfo

Greetings,

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



main-menu_1.49_i386.changes ACCEPTED into unstable

2016-11-22 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 22 Nov 2016 09:14:03 +0100
Source: main-menu
Binary: main-menu
Architecture: source i386
Version: 1.49
Distribution: unstable
Urgency: medium
Maintainer: Debian Install System Team 
Changed-By: Christian Perrier 
Description:
 main-menu  - Debian installer main menu (udeb)
Changes:
 main-menu (1.49) unstable; urgency=medium
 .
   [ Updated translations ]
   * Kazakh (kk.po) by Baurzhan Muftakhidinov
Checksums-Sha1:
 1e12224fec6c1ae95bc54e882aa232eabd45c580 1675 main-menu_1.49.dsc
 6f72a908f4223a8e163d153913c5f8a4138b5940 51424 main-menu_1.49.tar.xz
 6a7286fba30213ee61fcb99d89b474617cd0ae67 4693 main-menu_1.49_i386.buildinfo
 30fcf256b1addd6170dccd10182f190976032d52 26448 main-menu_1.49_i386.udeb
Checksums-Sha256:
 60e3791ebdf828c13a223c7a176707e42e9d9dcc9e90e0a55ba2b885b23ae772 1675 
main-menu_1.49.dsc
 175b1ef4fa284ad757f45b494bd7759d0deea360c0a631326b500af25d857124 51424 
main-menu_1.49.tar.xz
 c1d9d70bf96b14f3578a380e31454b76108fcdce72762f87565f5a6a8daa9ccf 4693 
main-menu_1.49_i386.buildinfo
 545ba5af82ce4f2b925e80ff6551e51d97845dbeaf713bf491133e86888b2321 26448 
main-menu_1.49_i386.udeb
Files:
 2c48b68e30dd12722b4668c10935c070 1675 debian-installer standard 
main-menu_1.49.dsc
 e0edda070e8787f5ac7b7bdab8b0b1a9 51424 debian-installer standard 
main-menu_1.49.tar.xz
 c8c0c39bac2037e6a11aaa7bde92c990 4693 debian-installer standard 
main-menu_1.49_i386.buildinfo
 10c7dd21e299cd1cc90a9ec7ba82563a 26448 debian-installer standard 
main-menu_1.49_i386.udeb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJYNTN9AAoJEIcvcCxNbiWoLwEP/31MDchjRlFL/8FL6yq/Cysk
bQ7Irn6/vvJhVjY4xx2xCNf9hKW7xC0cdj/+pR/51fuiQp4ScKwF7koeSsHBHanO
lDQtxC3b8kqv4G0edp0bE0F9jmPwLz94pbRfwGkq9eu/eMbg2PibiE3v8DFCjpP1
KPWqKNqVIfK8WPXulsf9g9xiz9/5snv2n7CMvAslSsic8Hi562R4Q3OypYDc4PQk
rpiu5MyZxGUtq4MJ6u1TQfE+KfiKXIgjvwRPtvi3+oEmLJB6y63y5L198UWNYx+B
mHQcydJA1JDXPn7NNguj6ez9Gs6QIv91J60XdmrhoBmYBsZYMCTV4VeHhc/KSBAS
KWn8FjL2sMFRLlMef5Azs3fNuz/1sMit3CVPS0901M0fQPE1Kt5Rqk/EnGlU6yM8
/L2aljixGNdEgHL5gozgORlXojsG5LKcUJuLZFxYby13Fch/ttvlMUjQvWhYeuMY
QnI8pTBUHsZ3H7lmYi0DtVw/9zPGgmnHcNRC7UmLY1WIN5RWLoizMF1TOnJqiopA
lVRCq/gIcV23RjNTxpIWILur1vyslp3NIMMu8bD9Of8BtsX+DrVKpaVY1hZ6oz01
pH2coJsrf9IsMVJbLBIX2QMjIxCfwD468UV3G0NmwAB/VYm2NEfVJkHcQl7rxF83
CiRQo9ZxURk8WnXyOH4m
=/tVk
-END PGP SIGNATURE-


Thank you for your contribution to Debian.



console-setup_1.154_i386.changes ACCEPTED into unstable

2016-11-22 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 22 Nov 2016 09:13:24 +0100
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 all
Version: 1.154
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.154) unstable; urgency=medium
 .
   [ Updated translations ]
   * Kazakh (kk.po) by Baurzhan Muftakhidinov
Checksums-Sha1:
 ecb428929698d60ef03c47e03e92c79b16dfdede 3273 console-setup_1.154.dsc
 eda2220cf5c93531883bad8fa53778515af771a4 1641728 console-setup_1.154.tar.xz
 e3da05d55fa5a6e4022ca6abc4c6e6a444065a0c 53044 bdf2psf_1.154_all.deb
 e05678e4ae45376636231e5c4ad845a43f681a44 40874 
console-setup-amiga-ekmap_1.154_all.udeb
 7b129021feef91b7d20d73ce6b28c4c52f05a0a3 40810 
console-setup-ataritt-ekmap_1.154_all.udeb
 bd53740c4ded564eeb0b292529d8e35ed2e56aef 6938 
console-setup-freebsd-charmaps-udeb_1.154_all.udeb
 f48bc0d931eac9d9c6fdc97f7db8a1c34035f1ed 11012 
console-setup-freebsd-fonts-udeb_1.154_all.udeb
 e7b7565d78e696e47ecac0c8d57337bd33b01359 122382 
console-setup-freebsd_1.154_all.deb
 aae41498bb31e6856b0ee7ccba61b9ac5182f15e 22208 
console-setup-linux-charmaps-udeb_1.154_all.udeb
 805ba1b330272d2feac92fdb1ca28b0b8f804027 17928 
console-setup-linux-fonts-udeb_1.154_all.udeb
 73cc10e5ff1a7cdf011aba0a408423d8aad17ccc 983084 
console-setup-linux_1.154_all.deb
 bd721587dc6073b0512a96329517bee7f0ae8d65 40682 
console-setup-macintoshold-ekmap_1.154_all.udeb
 8fd0e02e43a27662d5c803469ebd5780906e161d 658950 
console-setup-mini_1.154_all.deb
 ef4da2780036d056ea7172074549ff6aca7a1b04 30770 
console-setup-pc-ekbd_1.154_all.udeb
 96e95989ed4a5c028a08ea9919bdabf4fde80f39 42034 
console-setup-pc-ekmap_1.154_all.udeb
 8aef6040c774fc344334eee5edf2825842e0f94a 41892 
console-setup-sun4-ekmap_1.154_all.udeb
 14f69d7ea734d6a19ac2686cb508f9bb11034562 41888 
console-setup-sun5-ekmap_1.154_all.udeb
 a78fc6af844b5216908f87dbff74a73a976a7cc9 212738 
console-setup-udeb_1.154_all.udeb
 e6d4375d60abfc64ec7f1200af7c06b81f77592f 117404 console-setup_1.154_all.deb
 72b2eecc274372eeafea01072c684c3f4dff6a50 10765 
console-setup_1.154_i386.buildinfo
 b5800a0b72b38747ad46d92d05aaa563103ea6e3 659684 
keyboard-configuration_1.154_all.deb
Checksums-Sha256:
 abb8af116ec1fb38c2154422ba63d851f601f8be6c419f218b4000f7ffd2194b 3273 
console-setup_1.154.dsc
 38a72be5c9c7ce7a2016fa4ac46c34a64e28030aec6c52a217451a9cd34be37f 1641728 
console-setup_1.154.tar.xz
 9fc6be43d039ee459ca5cf5b818720ba2f3cbf6f41364aab9ca75f8483555141 53044 
bdf2psf_1.154_all.deb
 51f7183667c5f0e7086e0d7148ddc960b6e03e9f32f6d89b9581237a0dfca2ec 40874 
console-setup-amiga-ekmap_1.154_all.udeb
 c3052d7e55c7ba209bdb43e582dd023cfe371947e2b0ae9911c7649c10ab0d8b 40810 
console-setup-ataritt-ekmap_1.154_all.udeb
 d6a00da2d38ffbfe107de0c90d88a11709f126933bfc748e54e5fa863378177e 6938 
console-setup-freebsd-charmaps-udeb_1.154_all.udeb
 5af3401bcbc75cb203a7d8df0d29e16bef90a8beebe7001c9595ae8714183318 11012 
console-setup-freebsd-fonts-udeb_1.154_all.udeb
 

finish-install_2.73_i386.changes ACCEPTED into unstable

2016-11-22 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 22 Nov 2016 09:13:44 +0100
Source: finish-install
Binary: finish-install
Architecture: source all
Version: 2.73
Distribution: unstable
Urgency: medium
Maintainer: Debian Install System Team 
Changed-By: Christian Perrier 
Description:
 finish-install - Finish the installation and reboot (udeb)
Changes:
 finish-install (2.73) unstable; urgency=medium
 .
   [ Updated translations ]
   * Kazakh (kk.po) by Baurzhan Muftakhidinov
Checksums-Sha1:
 c48b1f1dc0d5098267d842507a5b2dff8aa946cc 1626 finish-install_2.73.dsc
 bb1f4752bb039144083653784259a221b4c45239 55076 finish-install_2.73.tar.xz
 53a88132ef44167635676e3ea6ad2f22f1823698 17886 finish-install_2.73_all.udeb
 c6e5375e29081d86dcc43098338f14d9a8669af1 4591 
finish-install_2.73_i386.buildinfo
Checksums-Sha256:
 1284c1eb59cd6cc372231cbf9e3fe89f33b2203cf2daa78a4ecb0dbe2418369f 1626 
finish-install_2.73.dsc
 601adb4eb01e65d5338146fc7179553202c895d8d8cee36c2c0e1644d59cc08e 55076 
finish-install_2.73.tar.xz
 660be572b08b747b92b4d01a6aebc735115bd4dbb6e44f9ccec331c508d43678 17886 
finish-install_2.73_all.udeb
 d27b7eb1ec82ac5500c0c3278fb8b02ba6bcb53b803ef44c6e9ecbf870a77aad 4591 
finish-install_2.73_i386.buildinfo
Files:
 20c3a12c767500955f337d3c516688a4 1626 debian-installer required 
finish-install_2.73.dsc
 41def10bc36f8e1712e8cf0c000e0257 55076 debian-installer required 
finish-install_2.73.tar.xz
 6118595407fc940e6e6c97cb476510cb 17886 debian-installer required 
finish-install_2.73_all.udeb
 3fb57be4839b9a0556c206fa4e33d881 4591 debian-installer required 
finish-install_2.73_i386.buildinfo

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJYNTNpAAoJEIcvcCxNbiWoo7sP/3ynV20AldQumPihmQebfyhX
AD+rjAENkfhLmLFjVSzL7LHV47RHPTBFe/2D7AVhTlzelm6fEArFJUuRNmMO/xuI
OLxwUKh4yEJ12wywcaZv5rqdSlEe396duwPXjMVgJrXEbOs13K3siNLzj5KfqTPp
YcdzS/tTunk2epv8XHEW3MSU+IGb8k4VThtYhJ8lijC7VBldWUO1bYFWKHHXbjsh
zvSpmqxBrZovUPRyTg7KY/acEtPjZ3ZMFY2bU9070fZFZ8bbW+KeCpOaVZmXmr4t
hoOhZzDR5e2sa6GpanQYbL7F/Zt5d/kNLa2q8E8YusLYpqZUwwEMOAYPUNIU7l99
n5LqCiDcT6yJ3IPLc5Y2QgTO5gFqw5Yujp7J8+B5Bdh5GmVJw7RsfMVweOH/4YU3
rvLtcL4D4ZA00X5ySN+gE4vQSFecB/ShsAD04dc8lJcoSSC+Gz/akqsMJNreig9K
em54491+MIwIN9RDIAILhZ8QgxxcIBnayGnL0Yab8D52q8JOeiDm3vxB5xFwBO5+
NRWT5q/vVnqyVJz6xb01pSERbi0vqQtxSoNeioJmtlYgYtvkuOfKnK/TJKKebgtP
MVfSNgK/Wzt9Fkvdk1+boDMTs3z9TLYA37TYtNsRproJSrOOsZKxmihuMhD6IVJP
Sam94162k7QBv2Yb7MY6
=xru/
-END PGP SIGNATURE-


Thank you for your contribution to Debian.



Processing of finish-install_2.73_i386.changes

2016-11-22 Thread Debian FTP Masters
finish-install_2.73_i386.changes uploaded successfully to localhost
along with the files:
  finish-install_2.73.dsc
  finish-install_2.73.tar.xz
  finish-install_2.73_all.udeb
  finish-install_2.73_i386.buildinfo

Greetings,

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




Processing of main-menu_1.49_i386.changes

2016-11-22 Thread Debian FTP Masters
main-menu_1.49_i386.changes uploaded successfully to localhost
along with the files:
  main-menu_1.49.dsc
  main-menu_1.49.tar.xz
  main-menu_1.49_i386.buildinfo
  main-menu_1.49_i386.udeb

Greetings,

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



Processing of console-setup_1.154_i386.changes

2016-11-22 Thread Debian FTP Masters
console-setup_1.154_i386.changes uploaded successfully to localhost
along with the files:
  console-setup_1.154.dsc
  console-setup_1.154.tar.xz
  bdf2psf_1.154_all.deb
  console-setup-amiga-ekmap_1.154_all.udeb
  console-setup-ataritt-ekmap_1.154_all.udeb
  console-setup-freebsd-charmaps-udeb_1.154_all.udeb
  console-setup-freebsd-fonts-udeb_1.154_all.udeb
  console-setup-freebsd_1.154_all.deb
  console-setup-linux-charmaps-udeb_1.154_all.udeb
  console-setup-linux-fonts-udeb_1.154_all.udeb
  console-setup-linux_1.154_all.deb
  console-setup-macintoshold-ekmap_1.154_all.udeb
  console-setup-mini_1.154_all.deb
  console-setup-pc-ekbd_1.154_all.udeb
  console-setup-pc-ekmap_1.154_all.udeb
  console-setup-sun4-ekmap_1.154_all.udeb
  console-setup-sun5-ekmap_1.154_all.udeb
  console-setup-udeb_1.154_all.udeb
  console-setup_1.154_all.deb
  console-setup_1.154_i386.buildinfo
  keyboard-configuration_1.154_all.deb

Greetings,

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



Bug#845412: installation-guide: FTBFS in German pages after r70343

2016-11-22 Thread Cyril Brulebois
Source: installation-guide
Severity: serious
Justification: FTBFS

Hi,

The installation guide can't be compiled from svn, see error messages
below. If my svn foo isn't too crappy, I've tracked it down to this
revision, which was supposed to add support for mips64el:
| 
| r70343 | holgerw | 2016-11-22 22:45:31 +0100 (Tue, 22 Nov 2016) | 2 lines
| 
| Update german d-i manual back to 100%
| 
| 

(Holger x-d-cc'd accordingly.)

For reference, when building amd64 for German:
| (sid-amd64-devel)kibi@wodi:~/debian-installer/manual$ ./build/buildone.sh 
amd64 de
| Info: creating temporary profiled .xml file...
| warning: failed to load external entity 
"/home/kibi/debian-installer/manual/de/hardware/supported/mips64el.xml"
| /home/kibi/debian-installer/manual/de/hardware/hardware-supported.xml:211: 
parser error : Failure to process entity supported-mips64el.xml
| 
| ^
| /home/kibi/debian-installer/manual/de/hardware/hardware-supported.xml:211: 
parser error : Entity 'supported-mips64el.xml' not defined
| 
| ^
| /home/kibi/debian-installer/manual/de/hardware/hardware-supported.xml:482: 
parser error : chunk is not well balanced
| 
| ^
| /home/kibi/debian-installer/manual/de/hardware/hardware.xml:15: parser error 
: Failure to process entity hardware-supported.xml
| 
| ^
| /home/kibi/debian-installer/manual/de/hardware/hardware.xml:15: parser error 
: Entity 'hardware-supported.xml' not defined
| 
| ^
| /home/kibi/debian-installer/manual/de/hardware/hardware.xml:21: parser error 
: chunk is not well balanced
| 
| ^
| build.tmp/install.de.xml:30: parser error : Failure to process entity 
hardware.xml
| 
|   ^
| build.tmp/install.de.xml:30: parser error : Entity 'hardware.xml' not defined
| 
|   ^
| /home/kibi/debian-installer/manual/de/boot-installer/x86.xml:4: element 
sect2: validity error : ID usb-boot already defined
|   
|   ^
| /home/kibi/debian-installer/manual/de/boot-installer/x86.xml:267: element 
sect2: validity error : ID boot-tftp already defined
|   Mit TFTP booten
|   ^
| /home/kibi/debian-installer/manual/de/boot-installer/x86.xml:489: element 
footnote: validity error : ID gtk-miniiso already defined
| mini ISO-Image
|^
| /home/kibi/debian-installer/manual/de/boot-installer/ia64.xml:332: element 
sect2: validity error : ID boot-tftp already defined
|   Booten per TFTP
|^
| /home/kibi/debian-installer/manual/de/boot-installer/mips.xml:5: element 
sect2: validity error : ID boot-tftp already defined
|   Booten per TFTP
|^
| /home/kibi/debian-installer/manual/de/boot-installer/mipsel.xml:4: element 
sect2: validity error : ID boot-tftp already defined
|   Per TFTP booten
|   ^
| /home/kibi/debian-installer/manual/de/boot-installer/powerpc.xml:142: element 
sect2: validity error : ID usb-boot already defined
|   
|   ^
| /home/kibi/debian-installer/manual/de/boot-installer/powerpc.xml:203: element 
sect2: validity error : ID boot-tftp already defined
|   Per TFTP booten
|   ^
| /home/kibi/debian-installer/manual/de/boot-installer/sparc.xml:4: element 
sect2: validity error : ID boot-tftp already defined
|   Booten per TFTP
| ^
| unable to parse build.tmp/install.de.xml


KiBi.



Bug#845401: debian-installer: auto=true not working

2016-11-22 Thread Hakan Bayındır

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

When both the file (url) and interfce is defined at the same time, d-i
initializes the network and gets the file, then it tries to make a
full-automatic installation without asking any questions. IIRC, that's
called d-i early-network-init preseeding. I was unable to find the
documentation at the moment, but I regularly use this method to automate
installs.

Regards,

Hakan


On 11/23/2016 06:35 AM, Cyril Brulebois wrote:
> Control: severity -1 normal
> Control: tag -1 - d-i
>
> Andrey Yarkov  (2016-11-23):
>> Package: debian-installer
>> Severity: grave
>> Tags: d-i
>> Justification: renders package unusable
>
> Sorry, but I'm going to disagree here…
>
>> Dear Maintainer,
>>
>> I added the following to kernel parameters on Jessie-8.6.0 official
>> installation DVD-1
>>
>> auto=true url=http://my.ip.addr.ess/preseed.cfg
>>
>> but I got asked keyboard or locale related questions anyway.
>>
>> Could it be that the delaying functionality got lost?
>
> I think that's documented in the installation guide:
>
> “B.4.1. Localization
>
> Setting localization values will only work if you are using initrd
> preseeding. With all other methods the preconfiguration file will only
> be loaded after these questions have been asked.”
>
> See: https://www.debian.org/releases/stable/amd64/apbs04.html.en
>
> Leaving this open for the time being, but I think it should be closed as
> not a bug.
>
>
> KiBi.

-BEGIN PGP SIGNATURE-

iQJHBAEBCAAxFiEEULItFeESq+SJGkXo3mItzvCdB5wFAlg1MPETHGhha2FuQGJh
eWluZGlyLm9yZwAKCRDeYi3O8J0HnG5QEAC++5NgMl/7RWcMSl0itzsikB+/yyJe
TDUym2Zzmk/M2vMTGa4P9zPBI4A+Njh1HoqAZthOQKX/xoV83H0paVyJqIiSKd91
ZPE9CmS0bsZKD/y210U4gDBkhiI5jS8ZVlVPQH85ZUUNOI/ehLv0dJhNhopglxs0
k2ruXCJIq8IAXOoeOlSdu+AmmMWuTwY0ZAF66b1wD0KaJJeeYJ5hM1DalPGpt3KH
aYTx7/uGi0MzHUGp0tN5Uem5rER3uFROPXCnQKrDIGr8TfGJW2DI/PltYxv1X2hk
GUtCNtgZhuY8Yh5TF6qTFi0WBi4SU1geRBogIlJa3lbaxh1nOHYYfVlDAPe8JR+h
Dj0JyC1hVhQg9s6pc/k2xsjhSiody/uAxTBc654Ds/fKeBGg7n6hp/6/ly7Xm8ll
ZncwC8Lb2QLCjuYSVTjHvb1z+zNfLag22wDSt91pKZwRqRRSrenu37MLKBiusVr9
Zc5FCCKnNfCQbqMKt9MKniCYMqRXwSojiWn8moXz8eJGkwEAN6lWMsFixLK6MuZ3
hoLHgGJ2vzi9C9pvhqDzMclIh2MtfnepVemnX/uVF10QaeoGFfvPvR+bcPsi3zFd
u58nhDB+oXjnfPvD9Imr66o2rrkl3ttvLsrUy/gMkyTgsGyB0OJNQT91jpDd41l2
WYN2HRG76ACKmg==
=HiO3
-END PGP SIGNATURE-



kgb config update: gitweb → cgit

2016-11-22 Thread Cyril Brulebois
Hi,

It's been a while since cgit has been the preferred way to access git
repositories on alioth from a web browser, and redirections were put
into place between gitweb and cgit. I seem to recall it used to work
(without being absolutely certain), but it certainly doesn't work now.

I've therefore updated the kgb configuration (/git/d-i/kgb-client.conf)
to point directly at cgit:
-web-link: http://git.debian.org/?p=d-i/${module}.git;a=commitdiff;h=${commit}
+web-link: 
https://anonscm.debian.org/cgit/d-i/${module}.git/commit/?id=${commit}

The deb.li URL shortener is still being used (even if that means posting
http:// links on IRC).


KiBi.


signature.asc
Description: Digital signature


Bug#845110: installation-report: Installation appears to be succesful

2016-11-22 Thread Cyril Brulebois
Hi,

and thanks for your report.

Jeroen N. Witmond  (2016-11-20):
> Comments on installation report:
> https://d-i.debian.org/manual/en.i386/ch05s04.html#submit-bug asks me
> to install the installation-report and reportbug packages but they
> already were installed. 

Maybe that could be reworded to mention that they can be pre-installed
but I doubt that's a huge issue.

> On the same page command reportbug installation-reports is wrong;
> should not have the final 's'.

The command is actually correct: installation-report is a package, while
installation-reports is a pseudo package which collects installation
reports.

> Perhaps I should take the next item elsewhere: Once installation is
> complete, I cannot find Apper, nor can I get Discover to install
> additional software.

I think it would be nice to file a separate bug report for that.


KiBi.


signature.asc
Description: Digital signature


Bug#845401: debian-installer: auto=true not working

2016-11-22 Thread Cyril Brulebois
Control: severity -1 normal
Control: tag -1 - d-i

Andrey Yarkov  (2016-11-23):
> Package: debian-installer
> Severity: grave
> Tags: d-i
> Justification: renders package unusable

Sorry, but I'm going to disagree here…

> Dear Maintainer,
> 
> I added the following to kernel parameters on Jessie-8.6.0 official
> installation DVD-1
> 
> auto=true url=http://my.ip.addr.ess/preseed.cfg
> 
> but I got asked keyboard or locale related questions anyway.
> 
> Could it be that the delaying functionality got lost?

I think that's documented in the installation guide:

“B.4.1. Localization

Setting localization values will only work if you are using initrd
preseeding. With all other methods the preconfiguration file will only
be loaded after these questions have been asked.”

See: https://www.debian.org/releases/stable/amd64/apbs04.html.en

Leaving this open for the time being, but I think it should be closed as
not a bug.


KiBi.


signature.asc
Description: Digital signature


Processed: Re: Bug#845401: debian-installer: auto=true not working

2016-11-22 Thread Debian Bug Tracking System
Processing control commands:

> severity -1 normal
Bug #845401 [debian-installer] debian-installer: auto=true not working
Severity set to 'normal' from 'grave'
> tag -1 - d-i
Bug #845401 [debian-installer] debian-installer: auto=true not working
Removed tag(s) d-i.

-- 
845401: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=845401
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems



Processed: Re: Bug#845326: debian-installer: When using auto=true priority=critical url=hostname it tries to download from jessie, not stretch

2016-11-22 Thread Debian Bug Tracking System
Processing control commands:

> reassign -1 preseed 1.72
Bug #845326 [debian-installer] debian-installer: When using auto=true 
priority=critical url=hostname it tries to download from jessie, not stretch
Bug reassigned from package 'debian-installer' to 'preseed'.
No longer marked as found in versions debian-installer/20161031.
Ignoring request to alter fixed versions of bug #845326 to the same values 
previously set
Bug #845326 [preseed] debian-installer: When using auto=true priority=critical 
url=hostname it tries to download from jessie, not stretch
There is no source info for the package 'preseed' at version '1.72' with 
architecture ''
Unable to make a source version for version '1.72'
Marked as found in versions 1.72.
> tag -1 patch pending
Bug #845326 [preseed] debian-installer: When using auto=true priority=critical 
url=hostname it tries to download from jessie, not stretch
Added tag(s) pending and patch.

-- 
845326: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=845326
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems



Bug#845326: debian-installer: When using auto=true priority=critical url=hostname it tries to download from jessie, not stretch

2016-11-22 Thread Cyril Brulebois
Control: reassign -1 preseed 1.72
Control: tag -1 patch pending

Hi,

and thanks for your report.

Bart-Jan Vrielink  (2016-11-22):
> Package: debian-installer
> Version: 20161031
> Severity: normal
> 
> Dear Maintainer,
> 
> When trying to install a debian stretch VM using virt-install and a preseed
> URL, I found out to my surprise that it downloads /d-i/jessie/./preseed.cfg
> instead of /d-i/stretch/./preseed.cfg
> 
> Actual command line used:
> virt-install --connect qemu:///system --name=stretch --file-size=2 \
> --vcpus=1,maxvcpus=4 --memory=512,maxmemory=4096 --os-type=linux \
> --os-variant=generic --graphics none --console pty,target_type=serial \
> --extra-args 'console=ttyS0,115200n8 serial auto=true priority=critical 
> url=ix' \
> --location 
> http://ftp.nl.debian.org/debian/dists/stretch/main/installer-amd64/ 
>  
> 
> I would expect that by using the stretch installer, it would also fetch a
> preseed from the stretch directory, and not from jessie.

I think Philip fixed it in git, and it should be uploaded soon (we
detected a few bits that needed a fix before an upload):
| commit 1150b87454baf6eb6ac6d4a55294e7d9ffe893e2
| Author: Philip Hands 
| Date:   Tue Nov 1 08:37:30 2016 +0100
| 
| update auto-install/defaultroot for stretch

See: 
https://anonscm.debian.org/cgit/d-i/preseed.git/commit/?id=1150b87454baf6eb6ac6d4a55294e7d9ffe893e2

So I'm tagging this bug report accordingly, and cc-ing Philip for
confirmation.


KiBi.


signature.asc
Description: Digital signature


Bug#819484: marked as done (installation-reports: Successful Reiser4 Software Format Release Number 4.0.1 kernel installed on Debian Sid)

2016-11-22 Thread Debian Bug Tracking System
Your message dated Wed, 23 Nov 2016 04:26:26 +0100
with message-id <20161123032626.gb6...@mraw.org>
and subject line Re: Bug#819484: installation-reports: Successful Reiser4 
Software Format Release Number 4.0.1 kernel installed on Debian Sid
has caused the Debian Bug report #819484,
regarding installation-reports: Successful Reiser4 Software Format Release 
Number 4.0.1 kernel installed on Debian Sid
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
819484: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=819484
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: installation-reports
Severity: normal

Dear Maintainer,

*** Reporter, please consider answering these questions, where appropriate ***

   * What led up to the situation?
   * What exactly did you do (or not do) that was effective (or
 ineffective)?
   * What was the outcome of this action?
   * What outcome did you expect instead?

*** End of the template - remove these template lines ***


-- Package-specific info:

Boot method: CD
Image version: Unstable (Sid) d-i
Date: March 03, 2016

Machine: HP Pavilion dv6-6c53cl
Partitions:
 Filesystem Type 1K-blocks Used Available Use% Mounted on
udev   devtmpfs   81678400   8167840   0% /dev
tmpfs  tmpfs  1634408  972   1633436   1% /run
/dev/sda15 reiser4   92435000 74331708  18103292  81% /
tmpfs  tmpfs 51204  5116   1% /run/lock
tmpfs  tmpfs  385516018300   3836860   1% /run/shm
/dev/sda9  ext213626986373 42626  67% /boot
/dev/sda12 jfs   80317856 73055436   7262420  91% /home
cgroup tmpfs   12012   0% /sys/fs/cgroup
cgmfs  tmpfs  1000   100   0% /run/cgmanager/fs
tmpfs  tmpfs  1634408   16   1634392   1% /run/user/119
tmpfs  tmpfs  1634408   36   1634372   1% /run/user/1000
/dev/sda13 reiser4   9730  8264288  89035712   9% /mnt/sda13
/dev/sda1  jfs  123243648 75285948  47957700  62% /mnt/abc
/dev/sda8  reiser4   61468304 49140316  12327988  80% /mnt/def
/dev/sda11 reiser4   92791120 46791348  45999772  51% /mnt/ghi
/dev/sda14 ext4  25066604 14563168   9207052  62% /mnt/uvw
/dev/sda17 reiser4   24170476 12561380  11609096  52% /mnt/xyz


Base System Installation Checklist:
[O] = OK, [E] = Error (please elaborate below), [ ] = didn't try it

Initial boot:   [O]
Detect network card:[O]
Configure network:  [O]
Detect CD:  [O]
Load installer modules: [O]
Clock/timezone setup:   [O]
User/password setup:[O]
Detect hard drives: [O]
Partition hard drives:  [O]
Install base system:[O]
Install tasks:  [O]
Install boot loader:[O]
Overall install:[O]

Comments/Problems:

Reiser4 SFRN 4.0.1-enabled d-i smooth installation.

-- 

Please make sure that the hardware-summary log file, and any other
installation logs that you think would be useful are attached to this
report. Please compress large files using gzip.

Once you have filled out this report, mail it to sub...@bugs.debian.org.

==
Installer lsb-release:
==
DISTRIB_ID=Debian
DISTRIB_DESCRIPTION="Debian GNU/Linux installer"
DISTRIB_RELEASE="9 (stretch) - installer build 20160303-06:42"
X_INSTALLATION_MEDIUM=netboot

==
Installer hardware-summary:
==
uname -a: Linux cohuatlicue 4.4.0-1+reiser4.0.1-amd64 #1 SMP Debian 
4.4.2-3+reiser4.0.1 (2016-02-21) x86_64 Xonecuiltzin
lspci -knn: 00:00.0 Host bridge [0600]: Intel Corporation 2nd Generation Core 
Processor Family DRAM Controller [8086:0104] (rev 09)
lspci -knn: Subsystem: Hewlett-Packard Company Device [103c:1658]
lspci -knn: 00:02.0 VGA compatible controller [0300]: Intel Corporation 2nd 
Generation Core Processor Family Integrated Graphics Controller [8086:0116] 
(rev 09)
lspci -knn: Subsystem: Hewlett-Packard Company Device [103c:1658]
lspci -knn: 00:16.0 Communication controller [0780]: Intel Corporation 6 
Series/C200 Series Chipset Family MEI Controller #1 [8086:1c3a] (rev 04)
lspci -knn: Subsystem: Hewlett-Packard Company Device [103c:1658]
lspci -knn: 00:1a.0 USB controller [0c03]: Intel Corporation 6 Series/C200 
Series Chipset Family USB Enhanced Host Controller #2 [8086:1c2d] (rev 05)
lspci -knn: Subsystem: Hewlett-Packard Company Device [103c:1658]
lspci -knn: Kernel driver 

Bug#819470: marked as done (installation-reports: Reiser4 Software Format Release Number 4.0.1 kernel successfully installed on Debian Stretch)

2016-11-22 Thread Debian Bug Tracking System
Your message dated Wed, 23 Nov 2016 04:25:37 +0100
with message-id <20161123032537.ga6...@mraw.org>
and subject line Re: Bug#819470: installation-reports: Reiser4 Software Format 
Release Number 4.0.1 kernel successfully installed on Debian Stretch
has caused the Debian Bug report #819470,
regarding installation-reports: Reiser4 Software Format Release Number 4.0.1 
kernel successfully installed on Debian Stretch
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
819470: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=819470
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: installation-reports
Severity: normal

Dear Maintainer,

*** Reporter, please consider answering these questions, where appropriate
***

   * What led up to the situation?
   * What exactly did you do (or not do) that was effective (or
 ineffective)?
   * What was the outcome of this action?
   * What outcome did you expect instead?

*** End of the template - remove these template lines ***


-- Package-specific info:

Boot method: CD
Image version: Sid (Unstable) d-i
Date: 03-28-2016

Machine: VirtualBox
Partitions: Filesystem Type 1K-blocks   Used Available Use% Mounted
on
udev   devtmpfs371716  0371716   0% /dev
tmpfs  tmpfs76280   1356 74924   2% /run
/dev/sda5  reiser46123092 605608   5517484  10% /
tmpfs  tmpfs   381380  0381380   0% /dev/shm
tmpfs  tmpfs 5120  0  5120   0% /run/lock
tmpfs  tmpfs   381380  0381380   0% /sys/fs/cgroup
/dev/sda6  jfs3876540 233852   3642688   7% /var
/dev/sda1  ext2140805  32524101011  25% /boot
tmpfs  tmpfs76280  0 76280   0% /run/user/1000


Base System Installation Checklist:
[O] = OK, [E] = Error (please elaborate below), [ ] = didn't try it

Initial boot:   [O]
Detect network card:[O]
Configure network:  [O]
Detect CD:  [O]
Load installer modules: [O]
Clock/timezone setup:   [O]
User/password setup:[O]
Detect hard drives: [O]
Partition hard drives:  [O]
Install base system:[O]
Install tasks:  [O]
Install boot loader:[O]
Overall install:[O]

Comments/Problems:

  One to the smoothest Reiser4 installations I've ever done.


-- 

Please make sure that the hardware-summary log file, and any other
installation logs that you think would be useful are attached to this
report. Please compress large files using gzip.

Once you have filled out this report, mail it to sub...@bugs.debian.org.

==
Installer lsb-release:
==
DISTRIB_ID=Debian
DISTRIB_DESCRIPTION="Debian GNU/Linux installer"
DISTRIB_RELEASE="9 (stretch) - installer build 20160325-08:35"
X_INSTALLATION_MEDIUM=netboot

==
Installer hardware-summary:
==
uname -a: Linux oyohualli 4.4.0-1-amd64 #1 SMP Debian 4.4.6-2 (2016-03-17)
x86_64 Xonecuiltzin
lspci -knn: 00:00.0 Host bridge [0600]: Intel Corporation 440FX - 82441FX
PMC [Natoma] [8086:1237] (rev 02)
lspci -knn: 00:01.0 ISA bridge [0601]: Intel Corporation 82371SB PIIX3 ISA
[Natoma/Triton II] [8086:7000]
lspci -knn: 00:01.1 IDE interface [0101]: Intel Corporation 82371AB/EB/MB
PIIX4 IDE [8086:7111] (rev 01)
lspci -knn: Kernel driver in use: ata_piix
lspci -knn: Kernel modules: ata_piix, ata_generic
lspci -knn: 00:02.0 VGA compatible controller [0300]: InnoTek
Systemberatung GmbH VirtualBox Graphics Adapter [80ee:beef]
lspci -knn: 00:03.0 Ethernet controller [0200]: Intel Corporation 82540EM
Gigabit Ethernet Controller [8086:100e] (rev 02)
lspci -knn: Subsystem: Intel Corporation Device [8086:001e]
lspci -knn: Kernel driver in use: e1000
lspci -knn: Kernel modules: e1000
lspci -knn: 00:04.0 System peripheral [0880]: InnoTek Systemberatung GmbH
VirtualBox Guest Service [80ee:cafe]
lspci -knn: 00:06.0 USB controller [0c03]: Apple Inc. KeyLargo/Intrepid USB
[106b:003f]
lspci -knn: Kernel driver in use: ohci-pci
lspci -knn: Kernel modules: ohci_pci
lspci -knn: 00:07.0 Bridge [0680]: Intel Corporation 82371AB/EB/MB PIIX4
ACPI [8086:7113] (rev 08)
lspci -knn: 00:0d.0 SATA controller [0106]: Intel Corporation 82801HM/HEM
(ICH8M/ICH8M-E) SATA Controller [AHCI mode] [8086:2829] (rev 02)
lspci -knn: Kernel driver in use: ahci
lspci -knn: Kernel modules: ahci
usb-list:
usb-list: Bus 01 Device 01: OHCI PCI host controller [1d6b:0001]
usb-list:Level 00 Parent 00 Port 00 

Bug#845401: debian-installer: auto=true not working

2016-11-22 Thread Andrey Yarkov
Package: debian-installer
Severity: grave
Tags: d-i
Justification: renders package unusable

Dear Maintainer,

I added the following to kernel parameters on Jessie-8.6.0 official 
installation DVD-1

auto=true url=http://my.ip.addr.ess/preseed.cfg

but I got asked keyboard or locale related questions anyway.

Could it be that the delaying functionality got lost?

-- System Information:
Debian Release: 8.6
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'stable')
Architecture: i386 (i686)

Kernel: Linux 3.16.0-4-686-pae (SMP w/2 CPU cores)
Locale: LANG=ru_RU.UTF-8, LC_CTYPE=ru_RU.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)



Re: d-i manual: missing mips64el in translated 'arch-title' entity

2016-11-22 Thread Samuel Thibault
Hello,

Holger Wansing, on Tue 22 Nov 2016 23:12:34 +0100, wrote:
> I just noticed that for French and Italian, translated entities in
> build/entities/l10n/ are used, but in the entity for 'arch-title' the
> condition for the new mips64el architecture is missing.

Mmm, these are problematic indeed: contrary to .po files, there is
nothing that makes the build system use english variants if the
translation is outdated...

I have fixed them, thanks.

Samuel



d-i manual: missing mips64el in translated 'arch-title' entity

2016-11-22 Thread Holger Wansing
Hi,

I just noticed that for French and Italian, translated entities in
build/entities/l10n/ are used, but in the entity for 'arch-title' the
condition for the new mips64el architecture is missing.
You should add it, to get a proper arch name for mips64el shown.

In other words: sync the fr.ent / it.ent file against
https://anonscm.debian.org/viewvc/d-i?view=revision=70320
respective
https://anonscm.debian.org/viewvc/d-i?view=revision=70325


Holger

-- 

Created with Sylpheed 3.5.0 under
D E B I A N   L I N U X   8 . 0   " J E S S I E " .

Registered Linux User #311290 - https://linuxcounter.net/




Bug#845110: Stretch Alpha *: Problem with locale

2016-11-22 Thread Geert Stappers
On Tue, Nov 22, 2016 at 07:52:42PM +0100, Jeroen N. Witmond wrote:
> An addition to the installation report. If this belongs somewhere
> else please let me know.
> 
> I live in the Netherlands but I prefer to communicate with my
> computer systems in English.  I have answered the related questions
> during installation accordingly.
> 
> Now a number of applications complain about the locale. An example is:
> jeroen@zandbak:~$ man ssh-keygen
> man: can't set the locale; make sure $LC_* and $LANG are correct
> 
> The $LC_* variables appear to not be set.
> 
> jeroen@zandbak:~$ echo $LANG
> en_NL.UTF-8
> jeroen@zandbak:~$ echo $LANGUAGE
> en_US:en
> 
> Regards, Jeroen.
> 

dpkg-reconfigure locales


signature.asc
Description: Digital signature


Bug#845376: debian-installer: don't add "swap" flag in crypttab if pasword is not random

2016-11-22 Thread Łukasz Stelmach
Package: debian-installer
Severity: normal

Dear Maintainer,

I installed Debian (8.6) on a laptop.

I created two encrypted partition. One for the root filesystem and the
I marked in partman to be used as swap. I chose not to use /dev/urandom
as keyfile because I wanted the swap to hold hibernation image.

One of the flags in the fourth field in crypttab for the swap partition
is "swap". I am afraid (I haven't tested it) that boot scripts would run
mkswap and erase hibernation image.

The "swap" flag in the crypttab set only if one chooses to use random
password.

-- System Information:
Debian Release: 8.6
  APT prefers proposed-updates
  APT policy: (500, 'proposed-updates'), (500, 'stable')
Architecture: i386 (i686)

Kernel: Linux 3.16.0-4-586
Locale: LANG=pl_PL.UTF-8, LC_CTYPE=pl_PL.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

-- 
Było mi bardzo miło.  --- Rurku. --- ...
>Łukasz<--- To dobrze, że mnie słuchasz.


pgpFMD4YOdHUP.pgp
Description: PGP signature


Bug#845110: Stretch Alpha *: Problem with locale

2016-11-22 Thread Jeroen N. Witmond
An addition to the installation report. If this belongs somewhere else 
please let me know.


I live in the Netherlands but I prefer to communicate with my computer 
systems in English.  I have answered the related questions during 
installation accordingly.


Now a number of applications complain about the locale. An example is:
jeroen@zandbak:~$ man ssh-keygen
man: can't set the locale; make sure $LC_* and $LANG are correct

The $LC_* variables appear to not be set.

jeroen@zandbak:~$ echo $LANG
en_NL.UTF-8
jeroen@zandbak:~$ echo $LANGUAGE
en_US:en

Regards, Jeroen.



Bug#845326: debian-installer: When using auto=true priority=critical url=hostname it tries to download from jessie, not stretch

2016-11-22 Thread Bart-Jan Vrielink
Package: debian-installer
Version: 20161031
Severity: normal

Dear Maintainer,

When trying to install a debian stretch VM using virt-install and a preseed
URL, I found out to my surprise that it downloads /d-i/jessie/./preseed.cfg
instead of /d-i/stretch/./preseed.cfg

Actual command line used:
virt-install --connect qemu:///system --name=stretch --file-size=2 \
--vcpus=1,maxvcpus=4 --memory=512,maxmemory=4096 --os-type=linux \
--os-variant=generic --graphics none --console pty,target_type=serial \
--extra-args 'console=ttyS0,115200n8 serial auto=true priority=critical url=ix' 
\
--location http://ftp.nl.debian.org/debian/dists/stretch/main/installer-amd64/ 
 

I would expect that by using the stretch installer, it would also fetch a
preseed from the stretch directory, and not from jessie.

-- System Information:
Debian Release: 8.6
  APT prefers stable
  APT policy: (700, 'stable')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 3.16.0-4-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_GB.utf8, LC_CTYPE=en_GB.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)



Bug#844579: console-setup: CyrAsia font missing Kazakh letter

2016-11-22 Thread Baurzhan Muftakhidinov
Dear Anton,

I checked fonts CyrAsia-Fixed16 and CyrAsia-Terminus16 from Debian repo,
and numero sign *is* there, so, it is definitely something I made wrong with
my own build. Lets forget about it, because it is unrelated to the topic of this
bugreport, which is to add three symbols to CyrAsia fontset definition.

Does it sound reasonable?

BTW, those symbols again for your convenience:

Ұ U+04B0 Cyrillic Capital Letter Straight U with Stroke
ұ U+04B1 Cyrillic Small Letter Straight U with Stroke
₸ U+20B8 Unicode Character 'TENGE SIGN'

Thanks,



Bug#844579: console-setup: CyrAsia font missing Kazakh letter

2016-11-22 Thread Anton Zinoviev
On Tue, Nov 22, 2016 at 06:44:15AM +0500, Baurzhan Muftakhidinov wrote:
> 
> Fonts/CyrAsia-Fixed13.log:WARNING: U+2116: no glyph defined
> Fonts/CyrAsia-Fixed13.log:WARNING: U+2116: no glyph defined
> Fonts/CyrAsia-Fixed14.log:WARNING: U+2116: no glyph defined
> Fonts/CyrAsia-Fixed14.log:WARNING: U+2116: no glyph defined
> Fonts/CyrAsia-Fixed14.raw.log:WARNING: U+2116: no glyph defined
> Fonts/CyrAsia-Fixed14.raw.log:WARNING: U+2116: no glyph defined
> Fonts/CyrAsia-Fixed15.log:WARNING: U+2116: no glyph defined
> Fonts/CyrAsia-Fixed15.log:WARNING: U+2116: no glyph defined
> Fonts/CyrAsia-Fixed16.log:WARNING: U+2116: no glyph defined
> Fonts/CyrAsia-Fixed16.log:WARNING: U+2116: no glyph defined
> Fonts/CyrAsia-Fixed16.raw.log:WARNING: U+2116: no glyph defined
> Fonts/CyrAsia-Fixed16.raw.log:WARNING: U+2116: no glyph defined
> Fonts/CyrAsia-Fixed18.log:WARNING: U+2116: no glyph defined
> Fonts/CyrAsia-Fixed18.log:WARNING: U+2116: no glyph defined
> Fonts/CyrAsia-Terminus14.raw.log:WARNING: U+2116: no glyph defined
> Fonts/CyrAsia-Terminus14.raw.log:WARNING: U+2116: no glyph defined
> Fonts/CyrAsia-Terminus16.raw.log:WARNING: U+2116: no glyph defined
> Fonts/CyrAsia-Terminus16.raw.log:WARNING: U+2116: no glyph defined
> Fonts/CyrAsia-TerminusBold14.raw.log:WARNING: U+2116: no glyph defined
> Fonts/CyrAsia-TerminusBold14.raw.log:WARNING: U+2116: no glyph defined
> Fonts/CyrAsia-TerminusBold16.raw.log:WARNING: U+2116: no glyph defined
> Fonts/CyrAsia-TerminusBold16.raw.log:WARNING: U+2116: no glyph defined
> Fonts/CyrAsia-TerminusBoldVGA14.raw.log:WARNING: U+2116: no glyph defined
> Fonts/CyrAsia-TerminusBoldVGA14.raw.log:WARNING: U+2116: no glyph defined
> Fonts/CyrAsia-TerminusBoldVGA16.raw.log:WARNING: U+2116: no glyph defined
> Fonts/CyrAsia-TerminusBoldVGA16.raw.log:WARNING: U+2116: no glyph defined

Are these all messages?  So the numero sign is missing only in CyrAsia 
and in no other fontset?  Also, the numero sign is missing in 
CyrAsia-Terminus16.raw.log and not in CyrAsia-Terminus16.log (the first 
font is for BSD, the second for Linux)?

Can you try building the package using clean sources, without any 
changes, and see if this helps.

Anton Zinoviev



Re: Bug#843775: jessie-pu: package mdadm/3.3.2-5+deb8u2

2016-11-22 Thread Jens Sauer
Am Sonntag, den 20.11.2016, 19:27 +0100 schrieb Cyril Brulebois:
> Control: tag -1 + confirmed - moreinfo
> 
> Jonathan Wiltshire  (2016-11-20):
> > On Wed, Nov 09, 2016 at 01:52:25PM +0100, Jens Sauer wrote:
> > > I prepared a package for mdadm to fix bug #840743
> > > (https://bugs.debian.org/840743) which prevents a correct reshape
> > > when only one 'spare' device and no backup-file is used. This can
> > > result in a nonfunctional array.
> > 
> > Twitched too soon; mdadm has a udeb, so it needs a d-i ack first. Sorry,
> > please wait.
> 
> I don't think d-i is hitting a “grow” / “-G” codepath, and a quick grep
> seems to confirm that. So it looks to me a patch touching Grow.c should
> have no consequences on d-i (famous last words).
> 
> => Please go ahead.
> 
> 
> KiBi.

Hey,

Thank you for reviewing this package. It was my first time doing this, I hope 
everything is alright.

I opened a RFS to find a sponsor for the upload: https://bugs.debian.org/845311

Regards
-- 
Jens Sauer 

GPG Key: 5C0B0084
Fingerprint: 75F3 6232 1F69 82E8 F5E0 D151 850E 2908 5C0B 0084

signature.asc
Description: This is a digitally signed message part


Re: On uploads and responsibilities

2016-11-22 Thread Philipp Kern
On 20.11.2016 04:37, Tianon Gravi wrote:
> On 19 November 2016 at 16:08, Philipp Kern  wrote:
>> I saw the followup thread between Tianon and Philip and thought that a
>> proper patch had been identified. Otherwise I would've went, mea
>> culpa'ed and uploaded a fix. I didn't realize that it still wasn't
>> uploaded, sorry about that. :(
> Apologies again for being the author of the offending patch too. :x
> The work and diligence of the team is definitely highly appreciated!

And to make another clarification here: The patch was tested in the case
that it fixed (i.e. with a set debootstrap script, by Marga). The
default case wasn't what was tested, which is unfortunate and somewhat
my fault.

Kind regards
Philipp Kern



signature.asc
Description: OpenPGP digital signature


cdrom-detect_1.65_i386.changes ACCEPTED into unstable

2016-11-22 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 22 Nov 2016 07:42:40 +0100
Source: cdrom-detect
Binary: cdrom-detect
Architecture: source all
Version: 1.65
Distribution: unstable
Urgency: medium
Maintainer: Debian Install System Team 
Changed-By: Christian Perrier 
Description:
 cdrom-detect - Detect CDROM devices and mount the CD (udeb)
Changes:
 cdrom-detect (1.65) unstable; urgency=medium
 .
   [ Updated translations ]
   * Kazakh (kk.po) by Baurzhan Muftakhidinov
Checksums-Sha1:
 ceaa53917efc11cd05013fc94ac4d42a73121478 1654 cdrom-detect_1.65.dsc
 2eee1f4f4f045d9ff15fe3aaee08837049064fcc 121844 cdrom-detect_1.65.tar.xz
 416397a62a42967dc69ea29e782ab5786e8cf99a 115618 cdrom-detect_1.65_all.udeb
 00cff70fdc33d70ac63324154d3e73cf40ccad2f 4576 cdrom-detect_1.65_i386.buildinfo
Checksums-Sha256:
 77cdaa753d1e52be7c681e550ea37e985e5528a4767277e7c5a379194b234349 1654 
cdrom-detect_1.65.dsc
 b80cf8ffa39c164cbc61942dea17169bfce3cdb2926ac81b25a37ecf5743489c 121844 
cdrom-detect_1.65.tar.xz
 1b37a224e0cf28ce1287a26ddf4f89079aa97703ae49f7bc0c24a70ae7bde233 115618 
cdrom-detect_1.65_all.udeb
 c8b4fdeed7eb025381d0db9d866ff720cedadc8f665f06862fbe6401963fdee8 4576 
cdrom-detect_1.65_i386.buildinfo
Files:
 afbac5b72fba838e6b9c091a3b006ea3 1654 debian-installer optional 
cdrom-detect_1.65.dsc
 7b0890f78a01b573d50f25764e0d64af 121844 debian-installer optional 
cdrom-detect_1.65.tar.xz
 77a5fb5c7be60172e827ac4cadc1a467 115618 debian-installer optional 
cdrom-detect_1.65_all.udeb
 94008f6be6ff1bd22679fb0e6902fc87 4576 debian-installer optional 
cdrom-detect_1.65_i386.buildinfo

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJYM/31AAoJEIcvcCxNbiWoBxcP/3g48uOklRd5wM4xNQuHSDvm
tznRUpz6gqCURf2EyWNa/Q0PyfyjQBPMA2I41w78Sk3yqNXns/+WAF62whtLImuk
H9B1UfBbKU1Pzglw9ArWcytXBKP1gXiWFKO3s9wfPmZFrOo/zBvp9kismsScsvUy
w0XLybXGtpFghWTFaiArT8qbU26i73HN7i7EDq0mdyyma1es4XLQZVkrvNQSY7ns
BeekJB+Jf9VvQAupnV55pwG0RDXdABdhRvBXURuZoQU3ox1kjhwi3+DLLAw5GCfG
CjLiRVbWcyBpM9GaSLVv7pEPJikPvXvi2bPglhD5Sa4i6D6V8U3qxsjAzMRoiauN
rKvdwOHjBP87Q/JdW7uWll4U+ubWW5eZlHpggc2807r5rmtDIlSgpZdjQtQ9upTo
AfNUeW66J8ghbpct4K7NeaHp/VLZYEvx87DQgWx544GecBOSBxfZFCsF8COADX3X
2VOUEzyCqT8WnNtbn3+OLNavP1md18mcZLGEaLJHf3wmivU13GGGRozdDZOFAdJ9
LR8/XVrSTk74JM38nQV3cH3RrYKm8lsW9ObdHiEZ1y/WVbIeEExEP/3Pl8D7FTN6
qh104edN1NnxNBEp/0dZyXrbeQ+D34J1L5/0TSrThecb+NHq0ItUy1o84Xaa3vzi
DkZarsy7i/jS6eWZNhSG
=S+0X
-END PGP SIGNATURE-


Thank you for your contribution to Debian.



Processing of cdrom-detect_1.65_i386.changes

2016-11-22 Thread Debian FTP Masters
cdrom-detect_1.65_i386.changes uploaded successfully to localhost
along with the files:
  cdrom-detect_1.65.dsc
  cdrom-detect_1.65.tar.xz
  cdrom-detect_1.65_all.udeb
  cdrom-detect_1.65_i386.buildinfo

Greetings,

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