Re: Please dak copy-installer 20150422 & hint it into testing

2015-04-22 Thread Adam D. Barratt
On Thu, 2015-04-23 at 03:04 +0200, Cyril Brulebois wrote:
> Release team, please hint it into testing:
> 
>   unblock debian-installer/20150422
>   urgent debian-installer/20150422

Added.

Regards,

Adam


-- 
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/1429764040.4498.34.ca...@adam-barratt.org.uk



Please dak copy-installer 20150422 & hint it into testing

2015-04-22 Thread Cyril Brulebois
Hi,

FTPmasters, please sync the installer from sid to testing:

  dak copy-installer 20150422


Release team, please hint it into testing:

  unblock debian-installer/20150422
  urgent debian-installer/20150422


Happy release!

Mraw,
KiBi.


signature.asc
Description: Digital signature


Re: kFreeBSD CD/DVD builds for Jessie

2015-04-22 Thread Steven Chamberlain
Hi Steve,

Steve McIntyre wrote:
> I know that the kFreeBSD ports are not being officially released
> [1]. What plans (if any) have been made for any *un*official releases?
> I've just removed the BSD builds from the debian-cd architecture lists
> in preparation for next weekend, but I've not heard anything more...

kfreebsd as a whole, I feel has been in a releaseable state for some
months (massive improvement over wheezy, and no bugs that are absolutely
RC).  I'd still like to make a stable release out of it.

But since we need to move it to a jessie-kfreebsd suite first, I think
we are behind schedule with that.  I'm not familiar in that area, but
Christoph was speaking with ftpmaster about it.

I expect it will require changes in debian-installer (for new repository
URLs), and there are other d-i issues I'd quite like to patch if
possible, and lots of testing I wanted to do (incl. of CD images).
Given how busy I am at the  moment, I couldn't do that in time for the
official release.

Would it be reasonable and practical - even preferable - to postpone
release of kfreebsd until at least 1-2 weeks after the official release?

Thanks,
Regards,
-- 
Steven Chamberlain
ste...@pyro.eu.org


signature.asc
Description: Digital signature


Bug#783145: jessie-pu: package sqlcipher/3.2.0-1

2015-04-22 Thread Micah Anderson
Package: release.debian.org
Severity: normal
Tags: jessie
User: release.debian@packages.debian.org
Usertags: pu

Hello!

It seems we missed the RC bug fix date, and now we are in the quiet
period. However, I have uploaded a NMU to unstable to fix #776987 so I
wanted to file a bug here, as was detailed in debian-devel-announce.

Please find attached the debdiff against the two source packages.

Micah


-- System Information:
Debian Release: 8.0
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 3.16.0-4-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_US.utf8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)
diff -Nru sqlcipher-3.2.0/debian/changelog sqlcipher-3.2.0/debian/changelog
--- sqlcipher-3.2.0/debian/changelog	2014-10-17 20:16:29.0 -0300
+++ sqlcipher-3.2.0/debian/changelog	2015-04-22 17:03:50.0 -0300
@@ -1,3 +1,11 @@
+sqlcipher (3.2.0-1.1) unstable; urgency=high
+
+  [ Ben Carrillo ]
+  * Non-maintainer upload.
+  * use a separate variable to track SQLCIPHER version (Closes: #776987)
+
+ -- Micah Anderson   Wed, 22 Apr 2015 10:38:05 -0400
+
 sqlcipher (3.2.0-1) unstable; urgency=low
 
   * updated to latest upstream: v3.2.0
diff -Nru sqlcipher-3.2.0/debian/patches/20-change-name-to-sqlcipher.patch sqlcipher-3.2.0/debian/patches/20-change-name-to-sqlcipher.patch
--- sqlcipher-3.2.0/debian/patches/20-change-name-to-sqlcipher.patch	2014-10-17 00:24:01.0 -0300
+++ sqlcipher-3.2.0/debian/patches/20-change-name-to-sqlcipher.patch	2015-04-22 17:03:50.0 -0300
@@ -1,7 +1,38 @@
 a/VERSION
-+++ b/VERSION
-@@ -1 +1 @@
--3.8.6
-\ No newline at end of file
+--- a/Makefile.in
 b/Makefile.in
+@@ -89,6 +89,7 @@ TCC += $(OPTS)
+ VERSION = @VERSION@
+ VERSION_NUMBER = @VERSION_NUMBER@
+ RELEASE = @RELEASE@
++SQLCIPHER_VERSION = @SQLCIPHER_VERSION@
+ 
+ # Filename extensions
+ #
+--- /dev/null
 b/VERSION_SQLCIPHER
+@@ -0,0 +1 @@
 +3.2.0
-\ No newline at end of file
+--- a/configure.ac
 b/configure.ac
+@@ -179,6 +179,10 @@ VERSION_NUMBER=[`cat $srcdir/VERSION \
+ AC_MSG_NOTICE(Version number set to $VERSION_NUMBER)
+ AC_SUBST(VERSION_NUMBER)
+ 
++SQLCIPHER_VERSION=[`cat $srcdir/VERSION_SQLCIPHER | sed 's/^\([0-9]*\.*[0-9]*\).*/\1/'`]
++AC_MSG_NOTICE(SQLCipher Version set to $SQLCIPHER_VERSION)
++AC_SUBST(SQLCIPHER_VERSION)
++
+ #
+ # Check to see if the --with-hints=FILE option is used.  If there is none,
+ # then check for a files named "$host.hints" and ../$hosts.hints where
+--- a/sqlcipher.pc.in
 b/sqlcipher.pc.in
+@@ -7,7 +7,7 @@ includedir=@includedir@
+ 
+ Name: SQLCipher
+ Description: SQL database engine
+-Version: @PACKAGE_VERSION@
++Version: @SQLCIPHER_VERSION@
+ Libs: -L${libdir} -lsqlcipher
+ Libs.private: @LIBS@
+ Cflags: -I${includedir}
diff -Nru sqlcipher-3.2.0/debian/patches/32-fix-pkgconfig-libname.patch sqlcipher-3.2.0/debian/patches/32-fix-pkgconfig-libname.patch
--- sqlcipher-3.2.0/debian/patches/32-fix-pkgconfig-libname.patch	2014-10-17 00:25:32.0 -0300
+++ sqlcipher-3.2.0/debian/patches/32-fix-pkgconfig-libname.patch	2015-04-22 17:03:50.0 -0300
@@ -1,7 +1,7 @@
 --- a/sqlcipher.pc.in
 +++ b/sqlcipher.pc.in
 @@ -10,4 +10,4 @@ Description: SQL database engine
- Version: @PACKAGE_VERSION@
+ Version: @SQLCIPHER_VERSION@
  Libs: -L${libdir} -lsqlcipher
  Libs.private: @LIBS@
 -Cflags: -I${includedir}


Bug#782712: marked as done (unblock: systemd/215-17)

2015-04-22 Thread Debian Bug Tracking System
Your message dated Wed, 22 Apr 2015 13:46:28 +0100
with message-id 
<23db45b6ff07d65dc43d0ec938aeb...@mowgli.jungle.funky-badger.org>
and subject line Re: Bug#782712: pre-upload unblock request: systemd/215-17 for 
RC bug #751707
has caused the Debian Bug report #782712,
regarding unblock: systemd/215-17
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.)


-- 
782712: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=782712
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Hello release team,

yesterday I discovered that systemd breaks a common way of setting up
plain cryptsetup partitions. Turns out that this has already been
known for a while, but the impact wasn't appreciated enough:

  http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=751707

What happens is that systemd's cryptsetup integration ignores the
"offset=" parameter in crypttab and instead uses the whole device. So
if you had a swap or other partition underneath in order to identify
the partition via UUID or label instead of an unreliable hardcoded
device name, switching to systemd destroys the underlying metadata,
and causes a boot hang as crypttab now refers to a nonexisting
UUID/label. This is quite a common way to set up encrypted swap, the
way that ecryptfs' own swap setup tool does it (the Ubuntu installer
calls that if you select "encrypt my home directory"; I'm not sure
whether Debian's installer does the same).

IMHO this qualifies as data loss, and we cannot repair this
automatically after the damage happened. So I'd really like to fix
this in jessie, and I upgraded it to RC.

The patch is quite straightforward. It got a first review by upstream,
I made it a bit more defensive since the first version, and it'll
probably land today. I attached my test script to the upstream bug [1]
which allows you to play around with various offset= options and
verify that it doesn't destroy the initial part of the partition.

I realize this is a somewhat awkward timing as we want to deep-freeze
in two days, and this means an udeb change (although only formally as
there are no effective changes in udev). 215-16 should go into testing
tonight, and I'm prepared to upload 215-17 with that fix right after
that with urgency=high.

What would you recommend how to proceed?

Thank you in advance!

Martin

[1] https://bugs.freedesktop.org/show_bug.cgi?id=87717
-- 
Martin Pitt| http://www.piware.de
Ubuntu Developer (www.ubuntu.com)  | Debian Developer  (www.debian.org)
diff --git a/debian/changelog b/debian/changelog
index 29ff5a3..103d8ce 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+systemd (215-17) UNRELEASED; urgency=medium
+
+  * cryptsetup: Implement offset and skip options. (Closes: #751707,
+LP: #953875)
+
+ -- Martin Pitt   Thu, 16 Apr 2015 07:12:08 -0500
+
 systemd (215-16) unstable; urgency=medium
 
   [ Christian Seiler ]
diff --git a/debian/patches/cryptsetup-Implement-offset-and-skip-options.patch 
b/debian/patches/cryptsetup-Implement-offset-and-skip-options.patch
new file mode 100644
index 000..f392bbc
--- /dev/null
+++ b/debian/patches/cryptsetup-Implement-offset-and-skip-options.patch
@@ -0,0 +1,66 @@
+From: Martin Pitt 
+Date: Thu, 16 Apr 2015 06:44:07 -0500
+Subject: cryptsetup: Implement offset and skip options
+
+These are useful for plain devices as they don't have any metadata by
+themselves. Instead of using an unreliable hardcoded device name in crypttab
+you can then put static metadata at the start of the partition for a stable
+UUID or label.
+
+https://bugs.freedesktop.org/show_bug.cgi?id=87717
+https://bugs.debian.org/751707
+https://launchpad.net/bugs/953875
+---
+ src/cryptsetup/cryptsetup.c | 21 +++--
+ 1 file changed, 19 insertions(+), 2 deletions(-)
+
+diff --git a/src/cryptsetup/cryptsetup.c b/src/cryptsetup/cryptsetup.c
+index a67d85e..6257c81 100644
+--- a/src/cryptsetup/cryptsetup.c
 b/src/cryptsetup/cryptsetup.c
+@@ -50,12 +50,12 @@ static bool arg_discards = false;
+ static bool arg_tcrypt_hidden = false;
+ static bool arg_tcrypt_system = false;
+ static char **arg_tcrypt_keyfiles = NULL;
++static uint64_t arg_offset = 0;
++static uint64_t arg_skip = 0;
+ static usec_t arg_timeout = 0;
+ 
+ /* Options Debian's crypttab knows we don't:
+ 
+-offset=
+-skip=
+ precheck=
+ check=
+ checkargs=
+@@ -168,6 +168,20 @@ static int parse_one_option(const char *option) {
+ return 0;
+   

Bug#783080: marked as done (unblock: oldsys-preseed/3.16)

2015-04-22 Thread Debian Bug Tracking System
Your message dated Wed, 22 Apr 2015 13:20:05 +0100
with message-id 

and subject line Re: Bug#783080: unblock: oldsys-preseed/3.16
has caused the Debian Bug report #783080,
regarding unblock: oldsys-preseed/3.16
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.)


-- 
783080: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=783080
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: release.debian.org
Severity: normal
Tags: d-i
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock package oldsys-preseed

This fixes #783019 which is a failure to correctly function on many kirkwood
and orion5x armel platforms. Since this package exists to aid with headless
installs d-i is basically unusable on any affected system, since it will ask
questions on the (non-existent) serial port before enabling the network
install path.

This package only produces udebs.

diff -Nru oldsys-preseed-3.15/debian/changelog 
oldsys-preseed-3.16/debian/changelog
--- oldsys-preseed-3.15/debian/changelog2015-02-26 03:55:12.0 
+
+++ oldsys-preseed-3.16/debian/changelog2015-04-21 06:07:22.0 
+0100
@@ -1,3 +1,11 @@
+oldsys-preseed (3.16) unstable; urgency=medium
+
+  [ Ian Campbell ]
+  * Avoid exiting prematurely on arm*/orion5x or arm*/kirkwood platforms when
+they do not use device tree. (Closes: #783019)
+
+ -- Christian Perrier   Tue, 21 Apr 2015 07:07:22 +0200
+
 oldsys-preseed (3.15) unstable; urgency=medium
 
   [ Michael Walle ]
diff -Nru oldsys-preseed-3.15/oldsys-preseed oldsys-preseed-3.16/oldsys-preseed
--- oldsys-preseed-3.15/oldsys-preseed  2015-02-26 03:53:17.0 +
+++ oldsys-preseed-3.16/oldsys-preseed  2015-04-21 04:01:47.0 +0100
@@ -115,7 +115,11 @@
arm*/orion5x | arm*/kirkwood)
machine=$(grep "^Hardware" /proc/cpuinfo | sed 
's/Hardware\s*:\s*//')
# /proc/device-tree may not exist on all architectures
-   dt_model=$(cat /proc/device-tree/model 2>/dev/null)
+   if [ -e /proc/device-tree/model ] ; then
+   dt_model=$(cat /proc/device-tree/model 2>/dev/null)
+   else
+   dt_model="UNKNOWN"
+   fi
if echo "$machine" | grep -q "^Buffalo/Revogear Kurobox Pro"; 
then
check_file /proc/mtd
rootfs=$(get_mtdblock "rootfs")

unblock oldsys-preseed/3.16

-- System Information:
Debian Release: 8.0
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable'), (500, 'stable')
Architecture: amd64 (x86_64)
Foreign Architectures: i386, armhf, armel

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/bash
Init: sysvinit (via /sbin/init)
--- End Message ---
--- Begin Message ---

On 2015-04-21 21:40, Jonathan Wiltshire wrote:

On Tue, Apr 21, 2015 at 09:19:41PM +0200, Cyril Brulebois wrote:

[...]

Looking at brltty is already on my to-do list, and is likely a reason
for another debian-installer upload. oldsys-preseed looks small enough
to have that merged for r0.


Ok, I'll delay unblocking until you're ready though.


This got done as part of KiBi's RC4 hint set.

Regards,

Adam--- End Message ---


Re: Hints for d-i jessie RC4

2015-04-22 Thread Adam D. Barratt

On 2015-04-22 12:52, Cyril Brulebois wrote:

Hi people,

here's a single round of unblock/unblock-udeb/urgent hints for the
upcoming d-i upload. It's what we would normally either call RC4 or
final or something like this, but I don't think it makes sense to
announce it separately. Announcing Jessie is way better. ;)


All added.


For those on #debian-release, the plan is to have a manual britney run
in a few minutes so that we don't wait some extra hours to have these
packages in testing.


That's done, and the three packages are now in testing (pending dinstall 
so that the mirrors being used by the buildds know that).


Regards,

Adam


--
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
https://lists.debian.org/b5f68f3b96a763a0764042b8eebcb...@mowgli.jungle.funky-badger.org



Bug#783114: unblock: debian-edu-doc/1.6~20150422~8+edu0~beta1

2015-04-22 Thread Holger Levsen
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock
x-debbugs-cc: debian-...@lists.debian.org

Dear release team,

This is an unblock request as previously discussed (*) for debian-edu-doc
with translation changes and an update to debian/copyright only.

The package has been accepted into unstable, but I only uploaded with 
urgency=medium, so maybe some aging would be nice.

It would be very nice to have this package in jessie for the release, as we 
plan to release Edu Jessie beta1 this saturday too, and up2date documentation 
is critical for our users.

(*) see https://lists.debian.org/20141107121705.gf3...@coloquinte.cristau.org

debian-edu-doc (1.6~20150422~8+edu0~beta1) unstable; urgency=medium

  [ Holger Levsen ]
  * Update Debian Edu Jessie manual from the wiki.
  * Update debian/copyright from the wikis using the update-copyright
target.

  [ Jessie Manual translation updates ]
  * Norwegian Bokmål: Ingrid Yrvin, Alexander Alemayhu
  * German: Wolfgang Schweer.
  * Danish: Joe Hansen.
  * Dutch: Frans Spiesschaert.
  * French: Cédric Boutillier.

  [ Audacity Manual updates ]
  * Norwegian Bokmål: Ingrid Yrvin, Alexander Alemayhu

 -- Holger Levsen   Wed, 22 Apr 2015 11:02:18 +

$ debdiff debian-edu-doc_1.6~20150413~8+edu0~beta1.dsc debian-edu-
doc_1.6~20150422~8+edu0~beta1.dsc|diffstat
 debian/changelog   |   19 
 debian/copyright   |6 
 documentation/audacity/audacity-manual.nb.po   |   90 
 documentation/debian-edu-jessie/debian-edu-jessie-manual.da.po | 1138 ++
 documentation/debian-edu-jessie/debian-edu-jessie-manual.de.po |  196 -
 documentation/debian-edu-jessie/debian-edu-jessie-manual.es.po |  148 
 documentation/debian-edu-jessie/debian-edu-jessie-manual.fr.po |  268 -
 documentation/debian-edu-jessie/debian-edu-jessie-manual.it.po |  195 -
 documentation/debian-edu-jessie/debian-edu-jessie-manual.nb.po | 1762 
+-
 documentation/debian-edu-jessie/debian-edu-jessie-manual.nl.po |  248 -
 documentation/debian-edu-jessie/debian-edu-jessie-manual.pot   |   86 
 documentation/debian-edu-jessie/debian-edu-jessie-manual.xml   |   49 
 12 files changed, 2147 insertions(+), 2058 deletions(-)

I've attached it with xz compressed.

Thanks for your work on jessie!


cheers,
Holger


debian-edu-doc_1.6~20150422~8+edu0~beta1.diff.xz
Description: application/xz


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


Hints for d-i jessie RC4

2015-04-22 Thread Cyril Brulebois
Hi people,

here's a single round of unblock/unblock-udeb/urgent hints for the
upcoming d-i upload. It's what we would normally either call RC4 or
final or something like this, but I don't think it makes sense to
announce it separately. Announcing Jessie is way better. ;)

For those on #debian-release, the plan is to have a manual britney run
in a few minutes so that we don't wait some extra hours to have these
packages in testing.


# fix d-i on many arm* platforms (#783019):
unblock oldsys-preseed/3.16
unblock-udeb oldsys-preseed/3.16
urgent oldsys-preseed/3.16

# l10n-only:
unblock console-setup/1.123
unblock-udeb console-setup/1.123
urgent console-setup/1.123

# l10n-only:
unblock grub-installer/1.117
unblock-udeb grub-installer/1.117
urgent grub-installer/1.117


Thanks for your time.

Mraw,
KiBi.


-- 
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/20150422115224.gb16...@mraw.org