Bug#774688: unblock: pbbuttonsd/0.7.9-3

2015-01-07 Thread Mathieu Malaterre
On Tue, Jan 6, 2015 at 8:01 PM, Sven Joachim svenj...@gmx.de wrote:
 On 2015-01-06 10:24 +0100, Mathieu Malaterre wrote:

 diff -Nru pbbuttonsd-0.7.9/debian/changelog pbbuttonsd-0.7.9/debian/changelog
 --- pbbuttonsd-0.7.9/debian/changelog 2014-01-22 13:08:34.0 +0100
 +++ pbbuttonsd-0.7.9/debian/changelog 2015-01-06 10:12:42.0 +0100
 @@ -1,3 +1,10 @@
 +pbbuttonsd (0.7.9-4) unstable; urgency=low
 +
 +  * Adopt package. Closes: #422162
 +  * Fix for linux kernel 3.x. Closes: #711685

 How about future 4.x kernels?  It seems quite possible that those will be
 released during jessie's lifetime.

In which case, someone will need to report a bug that pbbuttonsd does
or does not work for kernel 4.x when this happens.


-- 
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/CA+7wUsz+QmNc4WisO=wgzgk40x-4zrs-uv9fr53uozt1eqo...@mail.gmail.com



Bug#774688: unblock: pbbuttonsd/0.7.9-3

2015-01-07 Thread Mathieu Malaterre
On Tue, Jan 6, 2015 at 7:31 PM, Jonathan Wiltshire j...@debian.org wrote:
 Control: tag -1 moreinfo

 On Tue, Jan 06, 2015 at 10:24:40AM +0100, Mathieu Malaterre wrote:
 +pbbuttonsd (0.7.9-4) unstable; urgency=low
 +
 +  * Adopt package. Closes: #422162

 I'll happily trade the adoption for an unblock, but you don't appear to
 have updated the maintainer field:

Sorry I skrew-up. Do I need another source-upload ?


-- 
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/CA+7wUsxakr=ad+lwp0bu5k+sgk2wnfd1ku9pexfeesg7ob9...@mail.gmail.com



Bug#774759: [pre-approval] unblock: ghostscript/9.06~dfsg-2

2015-01-07 Thread Didier 'OdyX' Raboud
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Dear RT,

I'd like to get the patch for #732440 included in Jessie. The bug was
reported three independent times and is a premature abort in Ghostscript
processing. The patch that fixes that bug was included in upstream's
9.14 version and can be directly cherry-picked on top of 9.06~dfsg-1 as
currently in jessie.

Here goes the proposed changelog:

ghostscript (9.06~dfsg-2) unstable; urgency=medium

  * Add patch cherry-picked upstream to fix /typecheck error in /findfont
(Closes: #732440)

The cherry-picked patch as well as the full debdiff are attached.

TIA, cheers,

OdyX
diff -Nru ghostscript-9.06~dfsg/debian/changelog ghostscript-9.06~dfsg/debian/changelog
--- ghostscript-9.06~dfsg/debian/changelog	2014-08-27 04:08:44.0 +0200
+++ ghostscript-9.06~dfsg/debian/changelog	2015-01-07 08:28:03.0 +0100
@@ -1,3 +1,10 @@
+ghostscript (9.06~dfsg-2) unstable; urgency=medium
+
+  * Add patch cherry-picked upstream to fix /typecheck error in /findfont
+(Closes: #732440)
+
+ -- Didier Raboud o...@debian.org  Wed, 07 Jan 2015 08:27:52 +0100
+
 ghostscript (9.06~dfsg-1) unstable; urgency=medium
 
   * Team upload
diff -Nru ghostscript-9.06~dfsg/debian/patches/020140211~f4584b0.patch ghostscript-9.06~dfsg/debian/patches/020140211~f4584b0.patch
--- ghostscript-9.06~dfsg/debian/patches/020140211~f4584b0.patch	1970-01-01 01:00:00.0 +0100
+++ ghostscript-9.06~dfsg/debian/patches/020140211~f4584b0.patch	2015-01-07 08:26:20.0 +0100
@@ -0,0 +1,48 @@
+From: Chris Liddell chris.lidd...@artifex.com
+Date: Tue, 11 Feb 2014 15:15:56 + (+)
+Subject: Bug 695031: don't assume we can read a font file
+X-Git-Tag: ghostpdl-9.12rc1~50
+X-Git-Url: http://git.ghostscript.com/?p=ghostpdl.git;a=commitdiff_plain;h=f4584b0e162a96ec143f0057de63c116e649e02b
+Bug-Debian: https://bugs.debian.org/732440
+
+Bug 695031: don't assume we can read a font file
+
+When we scan system fonts, we were assuming fonts found would be in a format
+Ghostscript understands. This is not necessarily the case.
+
+So put the minimal parsing call to get the font's name in a stopped context,
+so we can skip the file it's not an understandable format. And clean up the
+stack in the event we try such a file.
+
+No cluster differences.
+---
+
+--- a/Resource/Init/gs_fonts.ps
 b/Resource/Init/gs_fonts.ps
+@@ -385,12 +385,20 @@
+ pop pop pop
+   }{
+ % we could open the font file
+-.findfontname
+-not { dup 0 get } if  % stack: (newname) [ (name) (path) ]
+-% DEBUG { (  found ) print dup print (\n) print flush } if
+-% add entry to the fontmap
+-1 index exch 0 exch dup type /nametype ne {cvn} if put
+-aload pop .definefontmap
++mark 2 1 roll
++{.findfontname} stopped
++{
++  cleartomark
++  pop pop
++}
++{
++  3 -1 roll pop
++  not { dup 0 get } if  % stack: (newname) [ (name) (path) ]
++  % DEBUG { (  found ) print dup print (\n) print flush } if
++  % add entry to the fontmap
++  1 index exch 0 exch dup type /nametype ne {cvn} if put
++  aload pop .definefontmap
++} ifelse
+   } ifelse
+ } forall
+   } if
diff -Nru ghostscript-9.06~dfsg/debian/patches/series ghostscript-9.06~dfsg/debian/patches/series
--- ghostscript-9.06~dfsg/debian/patches/series	2014-08-27 03:59:17.0 +0200
+++ ghostscript-9.06~dfsg/debian/patches/series	2015-01-07 08:25:44.0 +0100
@@ -3,6 +3,7 @@
 020121130~a3d00da.patch
 020130619~1b87b82.patch
 020130619~daceba6.patch
+020140211~f4584b0.patch
 1001_document_inkcov_device.patch
 2001_docdir_fix_for_debian.patch
 2002_gs_man_fix_debian.patch
From: Chris Liddell chris.lidd...@artifex.com
Date: Tue, 11 Feb 2014 15:15:56 + (+)
Subject: Bug 695031: don't assume we can read a font file
X-Git-Tag: ghostpdl-9.12rc1~50
X-Git-Url: http://git.ghostscript.com/?p=ghostpdl.git;a=commitdiff_plain;h=f4584b0e162a96ec143f0057de63c116e649e02b
Bug-Debian: https://bugs.debian.org/732440

Bug 695031: don't assume we can read a font file

When we scan system fonts, we were assuming fonts found would be in a format
Ghostscript understands. This is not necessarily the case.

So put the minimal parsing call to get the font's name in a stopped context,
so we can skip the file it's not an understandable format. And clean up the
stack in the event we try such a file.

No cluster differences.
---

--- a/Resource/Init/gs_fonts.ps
+++ b/Resource/Init/gs_fonts.ps
@@ -385,12 +385,20 @@
 pop pop pop
   }{
 % we could open the font file
-.findfontname
-not { dup 0 get } if  % stack: (newname) [ (name) (path) ]
-% DEBUG { (  found ) print dup print (\n) print flush } if
-% add entry to the fontmap
-1 index exch 0 exch dup type /nametype ne {cvn} if put
-

Bug#774759: [pre-approval] unblock: ghostscript/9.06~dfsg-2

2015-01-07 Thread Jonas Smedegaard
Quoting Didier 'OdyX' Raboud (2015-01-07 09:20:05)
 I'd like to get the patch for #732440 included in Jessie. The bug was 
 reported three independent times and is a premature abort in 
 Ghostscript processing. The patch that fixes that bug was included in 
 upstream's 9.14 version and can be directly cherry-picked on top of 
 9.06~dfsg-1 as currently in jessie.
 
 Here goes the proposed changelog:
 
 ghostscript (9.06~dfsg-2) unstable; urgency=medium
 
   * Add patch cherry-picked upstream to fix /typecheck error in /findfont
 (Closes: #732440)
 
 The cherry-picked patch as well as the full debdiff are attached.

Newer Ghostscript is licensed AGPL.  Is that patch compatible with the 
more relaxed licensing of older Ghostscript?


 - Jonas

-- 
 * Jonas Smedegaard - idealist  Internet-arkitekt
 * Tlf.: +45 40843136  Website: http://dr.jones.dk/

 [x] quote me freely  [ ] ask before reusing  [ ] keep private


signature.asc
Description: signature


Bug#774773: wheezy-pu: package policyd-weight/policyd-weight/0.1.15.2-5+wheezy2

2015-01-07 Thread Julien Cristau
On Wed, Jan  7, 2015 at 14:20:44 +0100, Werner Detter wrote:

 Package: release.debian.org
 Severity: important
 Tags: wheezy
 User: release.debian@packages.debian.org
 Usertags: pu
 
 Dear Maintainer,
 
 policyd-weight uses the abusive hosts blocking list which has been shutdown 
 on january 1st,
 more information can be found on the website of the dnsbl: 
 
 http://www.ahbl.org/content/last-notice-wildcarding-services-jan-1st
 
 The list now replies which a positive response which may lead to false 
 positives. I hereby
 ask someone to upload/confirm the package. The package for unstable has 
 already been uploaded. 
 I've recreated the package for stable with the patch applied and uploaded the 
 package also
 to mentors.debian.net - debdiff is found under [1]
 
Thanks for the quick reaction.

 diff -Nru policyd-weight-0.1.15.2/debian/changelog 
 policyd-weight-0.1.15.2/debian/changelog
 --- policyd-weight-0.1.15.2/debian/changelog  2014-03-15 13:24:45.0 
 +0100
 +++ policyd-weight-0.1.15.2/debian/changelog  2015-01-07 07:56:59.0 
 +0100
 @@ -1,3 +1,11 @@
 +policyd-weight (0.1.15.2-5+wheezy2) unstable; urgency=low

s/unstable/wheezy/

 +
 +  * Add 10_del_rhsbl.ahbl.org.patch which removes rhsbl.ahbl.org list due
 +to service shutdown
 + 
 + -- Werner Detter wer...@aloah-from-hell.de  Wed,  7 Jan 2015 07:30:14 
 +0100
 +
 +
  policyd-weight (0.1.15.2-5+wheezy1) wheezy; urgency=low
  
  * Add 09_fix_net_dns_usage.patch which fixes infinite loop when dns 
 resolver
 diff -Nru policyd-weight-0.1.15.2/debian/patches/10_del_rhsbl.ahbl.org.patch 
 policyd-weight-0.1.15.2/debian/patches/10_del_rhsbl.ahbl.org.patch
 --- policyd-weight-0.1.15.2/debian/patches/10_del_rhsbl.ahbl.org.patch
 1970-01-01 01:00:00.0 +0100
 +++ policyd-weight-0.1.15.2/debian/patches/10_del_rhsbl.ahbl.org.patch
 2015-01-07 07:55:16.0 +0100
 @@ -0,0 +1,15 @@
 +Description: removes RHSBL rhsbl.ahbl.org from policyd-weight source
 +Author: Werner Detter wer...@aloah-from-hell.de
 +DEP: 3
 +--- a/policyd-weight
  b/policyd-weight
 +@@ -389,8 +389,7 @@
 + 
 + ## RHSBL settings
 + my @rhsbl_score = (
 +-'multi.surbl.org', 4,0,'SURBL',
 +-'rhsbl.ahbl.org',  4,0,'AHBL'
 ++'multi.surbl.org', 4,0,'SURBL'
 + );
 + 
 + my $BL_ERROR_SKIP = 2;  # skip a RBL if this RBL had this many 
 continuous
 diff -Nru policyd-weight-0.1.15.2/debian/patches/series 
 policyd-weight-0.1.15.2/debian/patches/series
 --- policyd-weight-0.1.15.2/debian/patches/series 2014-03-15 
 13:26:31.0 +0100
 +++ policyd-weight-0.1.15.2/debian/patches/series 2015-01-07 
 07:54:13.0 +0100
 @@ -7,3 +7,4 @@
  07_del_rfc-ignorant.org.patch
  08_del_dnsbl.njabl.org.patch
  09_fix_net_dns_usage.patch
 +10_del_rhsbl.ahbl.org.patch
 
You might also want to update the manpage?

Cheers,
Julien


-- 
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/20150107133450.ga27...@sh76.dev.logilab.fr



Bug#774773: wheezy-pu: package policyd-weight/policyd-weight/0.1.15.2-5+wheezy2

2015-01-07 Thread Werner Detter
Package: release.debian.org
Severity: important
Tags: wheezy
User: release.debian@packages.debian.org
Usertags: pu

Dear Maintainer,

policyd-weight uses the abusive hosts blocking list which has been shutdown on 
january 1st,
more information can be found on the website of the dnsbl: 

http://www.ahbl.org/content/last-notice-wildcarding-services-jan-1st

The list now replies which a positive response which may lead to false 
positives. I hereby
ask someone to upload/confirm the package. The package for unstable has already 
been uploaded. 
I've recreated the package for stable with the patch applied and uploaded the 
package also
to mentors.debian.net - debdiff is found under [1]

 * Package name: policyd-weight
   Version : policyd-weight/0.1.15.2-5+wheezy2
   Upstream Author : Robert Felber
 * URL : www.policyd-weight.org
 * License : GPL-2+
   Section : mail

The URL of your package is:
http://mentors.debian.net/package/policyd-weight

The respective dsc file can be found at:
http://mentors.debian.net/debian/pool/main/p/policyd-weight/policyd-weight_0.1.15.2-5+wheezy2.dsc

Thanks, 
Werner Detter

[1] debdiff

diff -Nru policyd-weight-0.1.15.2/debian/changelog 
policyd-weight-0.1.15.2/debian/changelog
--- policyd-weight-0.1.15.2/debian/changelog2014-03-15 13:24:45.0 
+0100
+++ policyd-weight-0.1.15.2/debian/changelog2015-01-07 07:56:59.0 
+0100
@@ -1,3 +1,11 @@
+policyd-weight (0.1.15.2-5+wheezy2) unstable; urgency=low
+
+  * Add 10_del_rhsbl.ahbl.org.patch which removes rhsbl.ahbl.org list due
+to service shutdown
+   
+ -- Werner Detter wer...@aloah-from-hell.de  Wed,  7 Jan 2015 07:30:14 +0100
+
+
 policyd-weight (0.1.15.2-5+wheezy1) wheezy; urgency=low
 
 * Add 09_fix_net_dns_usage.patch which fixes infinite loop when dns 
resolver
diff -Nru policyd-weight-0.1.15.2/debian/patches/10_del_rhsbl.ahbl.org.patch 
policyd-weight-0.1.15.2/debian/patches/10_del_rhsbl.ahbl.org.patch
--- policyd-weight-0.1.15.2/debian/patches/10_del_rhsbl.ahbl.org.patch  
1970-01-01 01:00:00.0 +0100
+++ policyd-weight-0.1.15.2/debian/patches/10_del_rhsbl.ahbl.org.patch  
2015-01-07 07:55:16.0 +0100
@@ -0,0 +1,15 @@
+Description: removes RHSBL rhsbl.ahbl.org from policyd-weight source
+Author: Werner Detter wer...@aloah-from-hell.de
+DEP: 3
+--- a/policyd-weight
 b/policyd-weight
+@@ -389,8 +389,7 @@
+ 
+ ## RHSBL settings
+ my @rhsbl_score = (
+-'multi.surbl.org', 4,0,'SURBL',
+-'rhsbl.ahbl.org',  4,0,'AHBL'
++'multi.surbl.org', 4,0,'SURBL'
+ );
+ 
+ my $BL_ERROR_SKIP = 2;  # skip a RBL if this RBL had this many continuous
diff -Nru policyd-weight-0.1.15.2/debian/patches/series 
policyd-weight-0.1.15.2/debian/patches/series
--- policyd-weight-0.1.15.2/debian/patches/series   2014-03-15 
13:26:31.0 +0100
+++ policyd-weight-0.1.15.2/debian/patches/series   2015-01-07 
07:54:13.0 +0100
@@ -7,3 +7,4 @@
 07_del_rfc-ignorant.org.patch
 08_del_dnsbl.njabl.org.patch
 09_fix_net_dns_usage.patch
+10_del_rhsbl.ahbl.org.patch


-- System Information:
Debian Release: 8.0
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: amd64 (x86_64)

Kernel: Linux 3.16.0-4-amd64 (SMP w/1 CPU core)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: sysvinit (via /sbin/init)


-- 
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/20150107132044.7979.31564.reportbug@smaint.localdomain



Bug#774776: unblock: nova/2014.1.3-8, neutron/2014.1.3-9, glance/2014.1.3-7

2015-01-07 Thread Thomas Goirand
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Hi,

This is a follow-up after unblocking openstack-pkg-tools version 21.
I have rebuilt all OpenStack packages, and nova, neutron and glance
only contains the build-depends change (debdiff attached for all of
them 3). I'm sending separate unblock requests for designate, heat,
keystone and openstack-trove as they contain other changes, as per
the recommendation of Ivo De Decker.

Please unblock:
- nova/2014.1.3-8
- neutron/2014.1.3-9
- glance/2014.1.3-7

Cheers,

Thomas Goirand (zigo)
diff -Nru neutron-2014.1.3/debian/changelog neutron-2014.1.3/debian/changelog
--- neutron-2014.1.3/debian/changelog	2014-12-18 12:39:54.0 +
+++ neutron-2014.1.3/debian/changelog	2015-01-06 21:40:25.0 +
@@ -1,3 +1,10 @@
+neutron (2014.1.3-9) unstable; urgency=medium
+
+  * Build-depends on openstack-pkg-tools (= 21~) to ensure we have the sysv-rc
+fixes.
+
+ -- Thomas Goirand z...@debian.org  Tue, 06 Jan 2015 21:39:14 +
+
 neutron (2014.1.3-8) unstable; urgency=medium
 
   * Only use dbconfig-common and change the connection directive if the user
diff -Nru neutron-2014.1.3/debian/control neutron-2014.1.3/debian/control
--- neutron-2014.1.3/debian/control	2014-12-18 12:39:54.0 +
+++ neutron-2014.1.3/debian/control	2015-01-06 21:40:25.0 +
@@ -7,7 +7,7 @@
Mehdi Abaakouk sil...@sileht.net
 Build-Depends: debhelper (= 9),
dh-systemd,
-   openstack-pkg-tools (= 20~),
+   openstack-pkg-tools (= 21~),
po-debconf,
python-all (= 2.6),
python-pbr (= 0.6),
diff -Nru glance-2014.1.3/debian/changelog glance-2014.1.3/debian/changelog
--- glance-2014.1.3/debian/changelog	2014-12-25 09:29:14.0 +
+++ glance-2014.1.3/debian/changelog	2015-01-05 21:57:57.0 +
@@ -1,3 +1,10 @@
+glance (2014.1.3-7) unstable; urgency=medium
+
+  * Build-depends on openstack-pkg-tools (= 21~) to ensure we have the
+sysv-rc fixes.
+
+ -- Thomas Goirand z...@debian.org  Mon, 05 Jan 2015 21:57:15 +
+
 glance (2014.1.3-6) unstable; urgency=high
 
   * Added restrict_client_download_and_delete_files_in_glance-api_juno.patch
diff -Nru glance-2014.1.3/debian/control glance-2014.1.3/debian/control
--- glance-2014.1.3/debian/control	2014-12-25 09:29:14.0 +
+++ glance-2014.1.3/debian/control	2015-01-05 21:57:57.0 +
@@ -5,7 +5,7 @@
 Uploaders: Thomas Goirand z...@debian.org
 Build-Depends: debhelper (= 9),
dh-systemd,
-   openstack-pkg-tools (= 20~),
+   openstack-pkg-tools (= 21~),
po-debconf,
python-all (= 2.6.6-3~),
python-pbr (= 0.6),
diff -Nru nova-2014.1.3/debian/changelog nova-2014.1.3/debian/changelog
--- nova-2014.1.3/debian/changelog	2014-12-30 22:45:51.0 +
+++ nova-2014.1.3/debian/changelog	2015-01-06 22:09:56.0 +
@@ -1,3 +1,9 @@
+nova (2014.1.3-8) unstable; urgency=medium
+
+  * Rebuilt with openstack-pkg-tools (= 21~).
+
+ -- Thomas Goirand z...@debian.org  Tue, 06 Jan 2015 22:09:21 +
+
 nova (2014.1.3-7.1) unstable; urgency=medium
 
   * Non-maintainer upload.
diff -Nru nova-2014.1.3/debian/control nova-2014.1.3/debian/control
--- nova-2014.1.3/debian/control	2014-12-30 22:36:11.0 +
+++ nova-2014.1.3/debian/control	2015-01-06 22:09:56.0 +
@@ -9,7 +9,7 @@
gustavo panizzo g...@zumbi.com.ar
 Build-Depends: debhelper (= 9),
dh-systemd,
-   openstack-pkg-tools (= 20~),
+   openstack-pkg-tools (= 21~),
po-debconf,
python-all (= 2.6.6-3~),
python-pbr (= 0.6),


Bug#774778: unblock: keystone/2014.1.3-5

2015-01-07 Thread Thomas Goirand
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock package keystone. It contains the below fixes:

* Fix cron job to not error after package removal (Closes: #773494), by
checking if keystone-manage is available in /usr/bin and executable.

* Rebuild against openstack-pkg-tools = 21~ to fix sysv-rc script.

Please unblock keystone/2014.1.3-5.

Cheers,

Thomas Goirand (zigo)
diff -Nru keystone-2014.1.3/debian/changelog keystone-2014.1.3/debian/changelog
--- keystone-2014.1.3/debian/changelog	2014-12-18 11:07:23.0 +
+++ keystone-2014.1.3/debian/changelog	2015-01-06 20:27:39.0 +
@@ -1,3 +1,10 @@
+keystone (2014.1.3-5) unstable; urgency=medium
+
+  * Fix cron job to not error after package removal (Closes: #773494).
+  * Rebuild against openstack-pkg-tools = 21~ to fix sysv-rc script.
+
+ -- Thomas Goirand z...@debian.org  Tue, 06 Jan 2015 20:23:24 +
+
 keystone (2014.1.3-4) unstable; urgency=medium
 
   * Manually activates keystone.service since we're not using #DEBHELPER#.
diff -Nru keystone-2014.1.3/debian/control keystone-2014.1.3/debian/control
--- keystone-2014.1.3/debian/control	2014-12-18 11:07:23.0 +
+++ keystone-2014.1.3/debian/control	2015-01-06 20:27:39.0 +
@@ -7,7 +7,7 @@
Mehdi Abaakouk sil...@sileht.net
 Build-Depends: debhelper (= 9),
dh-systemd,
-   openstack-pkg-tools (= 20~),
+   openstack-pkg-tools (= 21~),
po-debconf,
python-all (= 2.6.6-3~),
python-pbr (= 0.6),
diff -Nru keystone-2014.1.3/debian/keystone.cron.hourly keystone-2014.1.3/debian/keystone.cron.hourly
--- keystone-2014.1.3/debian/keystone.cron.hourly	2014-12-18 11:07:23.0 +
+++ keystone-2014.1.3/debian/keystone.cron.hourly	2015-01-06 20:27:39.0 +
@@ -2,4 +2,6 @@
 
 set -e
 
-su -c '/usr/bin/keystone-manage token_flush /var/log/keystone/keystone-tokenflush.log 21' keystone
+if [ -x /usr/bin/keystone-manage ] ; then
+	su -c '/usr/bin/keystone-manage token_flush /var/log/keystone/keystone-tokenflush.log 21' keystone
+fi


Bug#774777: unblock: designate/2014.1-16

2015-01-07 Thread Thomas Goirand
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock package designate. It contains the below changes:

Minor fix:
- Fixed homepage: stackforge - openstack.

Debian SSLv3 removal fix:
- Added a no-SSLv3.patch to remove the use of ssl.PROTOCOL_SSLv3 which is not
  available in Debian anymore.

Init script fix:
- Rebuilt against openstack-pkg-tools = 21~ (after unblocking
  openstack-pkg-tools version 21).
- Fixed PROJECT_NAME instead of SERVICE_NAME for the init script of
  designate-api. Thanks to Gaudenz Steinlin. (Closes: #774383).

Debdiff attached.

Please unblock designate/2014.1-16.

Cheers,

Thomas Goirand (zigo)


-- 
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/20150107141826.16973.21403.report...@buzig.gplhost.com



Re: License incompatibility below RC threshold

2015-01-07 Thread Russ Allbery
Russ Allbery r...@debian.org writes:

 The only specific claim that Francesco has made that I was able to find
 is that the choice of venue clause in CeCILL-C makes it incompatible.
 However, CeCILL also contains a choice of venue clause, and the FSF
 state that it is GPL-compatible.  Given that they base those
 determinations on the advice of lawyers, I'm dubious of this argument.

Ah!  I'm sorry -- I missed a subtlety here.  The CeCILL license can be
explicitly converted to the GPL v2, hence shedding its choice of venue
clause.  The CeCILL-C license doesn't have an explicit conversion clause,
which is why I believe Francesco feels it is a problem.

Okay, this is actually a somewhat reasonable concern, in my opinion.  The
FSF does declare other licenses as being GPL-incompatible for having
choice of venue clauses.  See, for example:

https://www.gnu.org/licenses/license-list.html#lucent102

I agree that this may actually be a problem.  I don't think it's a
particularly *large* problem -- historically, we've not treated choice of
venue clauses with a great deal of urgency.  This is also relying on the
assumption that a library linked with a GPL v2 library requires every
other library linked with it to be relicensble under the GPL v2, something
that I think we believe in principle, but which we have not always
enforced elsewhere in the archive.

But I was wrong to dismiss this -- the choice of venue clause is usually
something the FSF considers problematic.

-- 
Russ Allbery (r...@debian.org)   http://www.eyrie.org/~eagle/


-- 
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/878uhe6klq@hope.eyrie.org



Bug#746946: wheezy-pu: package distro-info-data/0.23~deb7u1

2015-01-07 Thread Stefano Rivera
Hi Adam (2015.01.06_22:11:55_+0200)
 To summarise discussions from IRC, Julien pointed out that there are a
 number of other places where we still refer to Wheezy as 7.0, including
 the Release Notes and debian-installer-netboot-images. Combined with the
 fact that this would be a change in stable, I think we should leave the
 Wheezy package as-is in terms of referring to Wheezy as 7.0.

Does that apply to only Wheezy, or Jessie too?

SR

-- 
Stefano Rivera
  http://tumbleweed.org.za/
  +1 415 683 3272


-- 
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/20150108041908.gw3...@bach.rivera.co.za



Re: Please dak copy-installer 20150107 hint it into testing

2015-01-07 Thread Cyril Brulebois
Ansgar Burchardt ans...@debian.org (2015-01-07):
 Cyril Brulebois k...@debian.org writes:
  dak copy-installer 20150107
 
 Done.

Thanks, Ansgar.

Release team, I've gone ahead and hinted debian-installer myself, so that
Steve (cc'd through debian-cd@) can trigger a build after the 1000 britney
and 1352 dinstall runs (and associated mirror pulse).


Steve, please use jessie_di_rc1, which seems to be the kind of URL we've
been using for release candidates (if I'm reading cvs's output properly).

FWIW the announce text is nowhere ready and I'm travelling this thursday;
so I doubt the release will be built + ready to announce before somewhen
on friday.

Mraw,
KiBi.


signature.asc
Description: Digital signature


License incompatibility below RC threshold

2015-01-07 Thread Francesco Poli
Dear Release Team,
I am concerned that a license incompatibility (bug #741196 and the
other similar bug reports against other packages) might slip through
into the jessie release without being noticed or addressed adequately.

Please read #741196 bug log, or, at least:

https://bugs.debian.org/741196#5
https://bugs.debian.org/741196#53
https://bugs.debian.org/741196#96

What do you think should be done?

I am very disappointed by the lack of replies from the FTP Masters and
by the status of this bug: it seems that nobody is addressing it in any
way and the severity is being kept below the RC threshold (during the
wait for an official statement that seems to never arrive).

Looking forward to hear back from you.
Thanks for your time.


-- 
 http://www.inventati.org/frx/
 fsck is a four letter word...
. Francesco Poli .
 GnuPG key fpr == CA01 1147 9CD2 EFDF FB82  3925 3E1C 27E1 1F69 BFFE


pgplwXQ_IpvW_.pgp
Description: PGP signature


Bug#774820: wheezy-pu: clamav/0.98.5+dfsg-0+deb7u3

2015-01-07 Thread Sebastian Andrzej Siewior
Package: release.debian.org
Severity: normal
Tags: wheezy
User: release.debian@packages.debian.org
Usertags: pu

Dear release team:

I'd like to update the clamav package in Wheezy with the following change:
|   * add mspack-fix-division-by-zero-in-chm-format-handling to fix divide
| by zero in the chm unpacked. Found  patch by Jakub Wilk (Closes: 
#774766).
|   * add mspack-fix-overflow-in-pointer-arithmetic-on-32bit to avoid overflow
| in pointer arithmetic causing a segfault on 32bit (Closes: #774767).

There are two equivalent bugs open against libmspack which is Jessie+
only.
Attaching a slightly edited .debdiff (the pointless index changes have
been removed).

Sebastian
diff -Nru clamav-0.98.5+dfsg/debian/changelog 
clamav-0.98.5+dfsg/debian/changelog
--- clamav-0.98.5+dfsg/debian/changelog 2015-01-04 00:41:33.0 +0100
+++ clamav-0.98.5+dfsg/debian/changelog 2015-01-07 21:59:47.0 +0100
@@ -1,3 +1,12 @@
+clamav (0.98.5+dfsg-0+deb7u3) stable; urgency=medium
+
+  * add mspack-fix-division-by-zero-in-chm-format-handling to fix divide
+by zero in the chm unpacked. Found  patch by Jakub Wilk (Closes: #774766).
+  * add mspack-fix-overflow-in-pointer-arithmetic-on-32bit to avoid overflow
+in pointer arithmetic causing a segfault on 32bit (Closes: #774767).
+
+ -- Sebastian Andrzej Siewior sebast...@breakpoint.cc  Wed, 07 Jan 2015 
21:56:21 +0100
+
 clamav (0.98.5+dfsg-0+deb7u2) stable; urgency=medium
 
   * Add libmspack-qtmd-fix-frame_end-overflow to avoid endless-loop on
diff -Nru clamav-0.98.5+dfsg/debian/.git-dpm clamav-0.98.5+dfsg/debian/.git-dpm
--- clamav-0.98.5+dfsg/debian/.git-dpm  2015-01-04 00:41:33.0 +0100
+++ clamav-0.98.5+dfsg/debian/.git-dpm  2015-01-07 21:59:47.0 +0100
@@ -1,6 +1,6 @@
 # see git-dpm(1) from git-dpm package
-a0449d2079c4ba5822e6567ad7094c10108f16cd
-a0449d2079c4ba5822e6567ad7094c10108f16cd
+1a5b9b3aba6e15f6c7371aa23adbc0600a0cf830
+1a5b9b3aba6e15f6c7371aa23adbc0600a0cf830
 14c3d5ca803fd6baa5ab413e87ca6d6bb2e26a3d
 14c3d5ca803fd6baa5ab413e87ca6d6bb2e26a3d
 clamav_0.98.5+dfsg.orig.tar.xz
diff -Nru 
clamav-0.98.5+dfsg/debian/patches/0019-mspack-fix-division-by-zero-in-chm-format-handling.patch
 
clamav-0.98.5+dfsg/debian/patches/0019-mspack-fix-division-by-zero-in-chm-format-handling.patch
--- 
clamav-0.98.5+dfsg/debian/patches/0019-mspack-fix-division-by-zero-in-chm-format-handling.patch
 1970-01-01 01:00:00.0 +0100
+++ 
clamav-0.98.5+dfsg/debian/patches/0019-mspack-fix-division-by-zero-in-chm-format-handling.patch
 2015-01-07 21:59:48.0 +0100
@@ -0,0 +1,30 @@
+From c673c5b4aabdd1d71fe9cc2df67f394e6038404d Mon Sep 17 00:00:00 2001
+From: Jakub Wilk jw...@debian.org
+Date: Wed, 7 Jan 2015 14:05:38 +0100
+Subject: mspack: fix division by zero in chm format handling
+
+Fix division by 0 error found by special crated .chm by AFL.
+
+BTS:
+   https://bugs.debian.org/774725
+   https://bugs.debian.org/774766
+
+[bigeasy: patch description]
+Signed-off-by: Sebastian Andrzej Siewior sebast...@breakpoint.cc
+---
+ libclamav/libmspack-0.4alpha/mspack/chmd.c | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/libclamav/libmspack-0.4alpha/mspack/chmd.c 
b/libclamav/libmspack-0.4alpha/mspack/chmd.c
+index 19dc47b..005c930 100644
+--- a/libclamav/libmspack-0.4alpha/mspack/chmd.c
 b/libclamav/libmspack-0.4alpha/mspack/chmd.c
+@@ -1123,7 +1123,7 @@ static int chmd_init_decomp(struct mschm_decompressor_p 
*self,
+   }
+ 
+   /* validate reset_interval */
+-  if (reset_interval % LZX_FRAME_SIZE) {
++  if (reset_interval % LZX_FRAME_SIZE || !reset_interval) {
+ D((bad controldata reset interval))
+ return self-error = MSPACK_ERR_DATAFORMAT;
+   }
diff -Nru 
clamav-0.98.5+dfsg/debian/patches/0020-mspack-fix-overflow-in-pointer-arithmetic-on-32bit.patch
 
clamav-0.98.5+dfsg/debian/patches/0020-mspack-fix-overflow-in-pointer-arithmetic-on-32bit.patch
--- 
clamav-0.98.5+dfsg/debian/patches/0020-mspack-fix-overflow-in-pointer-arithmetic-on-32bit.patch
 1970-01-01 01:00:00.0 +0100
+++ 
clamav-0.98.5+dfsg/debian/patches/0020-mspack-fix-overflow-in-pointer-arithmetic-on-32bit.patch
 2015-01-07 21:59:48.0 +0100
@@ -0,0 +1,63 @@
+From 1a5b9b3aba6e15f6c7371aa23adbc0600a0cf830 Mon Sep 17 00:00:00 2001
+From: Sebastian Andrzej Siewior sebast...@breakpoint.cc
+Date: Wed, 7 Jan 2015 21:31:36 +0100
+Subject: mspack: fix overflow in pointer arithmetic on 32bit
+
+There are two checks to ensure that the encoded length of the file name does 
not
+exceed the length of the memory where it is stored. That check is written as
+   p + name_len  end
+
+in general it works. On 32bit architectures it is possible that a large 
name_len
+overflows and p + name_len is less than p and therefore also less than end and
+the check does not catch it.
+Jakub rewrote the check as
+   name_len  end - p
+
+so name_len is compared against the remaining space in the memory chunk.
+

NEW changes in stable-new

2015-01-07 Thread Debian FTP Masters
Processing changes file: nvidia-graphics-modules_304.125+3.2.0+1_multi.changes
  ACCEPT


-- 
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/e1y8zna-0004t9...@franck.debian.org



Bug#774819: unblock: neutron/2014.1.3-10

2015-01-07 Thread Thomas Goirand
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Hi,

Yet another patch that needs to enter Jessie.

By default, to be policy compliant, Neutron should *not* handle
the database bits of Neutron, unless the user explicitely asks
for it on the Debconf prompts. I'm not sure why Neutron had a
different behavior/debconf default value, but this patch fixes
the issue there.

Please unblock neutron/2014.1.3-10.

Cheers,

Thomas Goirand (zigo)
diff -Nru neutron-2014.1.3/debian/changelog neutron-2014.1.3/debian/changelog
--- neutron-2014.1.3/debian/changelog	2015-01-06 21:40:25.0 +
+++ neutron-2014.1.3/debian/changelog	2015-01-07 23:10:06.0 +
@@ -1,3 +1,9 @@
+neutron (2014.1.3-10) unstable; urgency=medium
+
+  * Sets neutron/configure_db default value to false (Closes: #770944).
+
+ -- Thomas Goirand z...@debian.org  Thu, 08 Jan 2015 00:05:56 +0100
+
 neutron (2014.1.3-9) unstable; urgency=medium
 
   * Build-depends on openstack-pkg-tools (= 21~) to ensure we have the sysv-rc
diff -Nru neutron-2014.1.3/debian/neutron-common.templates neutron-2014.1.3/debian/neutron-common.templates
--- neutron-2014.1.3/debian/neutron-common.templates	2015-01-06 21:40:25.0 +
+++ neutron-2014.1.3/debian/neutron-common.templates	2015-01-07 23:10:06.0 +
@@ -45,7 +45,7 @@
 
 Template: neutron/configure_db
 Type: boolean 
-Default: true
+Default: false
 _Description: Set up a database for Neutron?
  No database has been set up for Neutron to use. Before continuing, you should
  make sure you have the following information:


Bug#773149: what to do with x52pro???

2015-01-07 Thread Andreas Beckmann
Control: tags -1 - moreinfo

On 2014-12-23 17:55, Ivo De Decker wrote:
 OK. Please go ahead with the upload and remove the moreinfo tag once the new
 version is in unstable.

Uploaded.

 The updated udev rules are not used, just integrated in case someone
 wants to play with the source package.
 
 Could you mention that in the patch comment?

Done.


Andreas


-- 
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/54add6d5.9080...@debian.org



Processed: Re: Bug#773149: what to do with x52pro???

2015-01-07 Thread Debian Bug Tracking System
Processing control commands:

 tags -1 - moreinfo
Bug #773149 [release.debian.org] unblock: x52pro/0.1.1-2.2 (pre-approval)
Removed tag(s) moreinfo.

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


--
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/handler.s.b773149.14206788739061.transcr...@bugs.debian.org



Re: Is there still hope for hgettext?

2015-01-07 Thread Ivo De Decker
Hi,

On Wed, Jan 07, 2015 at 08:21:48PM +0100, Sven Bartscher wrote:
 We (the haskell-team) recently fixed an RC-bug[1] in haskell-hgettext.
 We uploaded the fix to experimental and were wondering if there’s
 still a chance to get it into jessie, though we don’t think it’s very 
 important
 to get it into jessie.

There certainly is a chance (see below).

What do you mean when you write we don't think it's very important to get it
into jessie? If the severity of the bug isn't correct, you should downgrade
it. If the bug is really grave, and it won't be fixed, then haskell-hgettext
will be removed from jessie and not be in the release. But you can also just
fix the bug.

 So can you tell, if there’s a chance for hgettext, before we prepare a
 proper release for unstable and file a bug or is it clear that hgettext
 won’t make it?

As stated in the freeze policy, targeted fixes for RC bugs are still accepted
for jessie. So if you have a targeted fix, you can upload it to unstable and
file an unblock request (using reportbug). In that case, there is no need to
remove haskell-hgettext from jessie, which is probably the preferred way
forward for you.

https://release.debian.org/jessie/freeze_policy.html

Cheers,

Ivo


-- 
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/20150107205258.ga3...@ugent.be



Is there still hope for hgettext?

2015-01-07 Thread Sven Bartscher
Greetings,

We (the haskell-team) recently fixed an RC-bug[1] in haskell-hgettext.
We uploaded the fix to experimental and were wondering if there’s
still a chance to get it into jessie, though we don’t think it’s very important
to get it into jessie.

So can you tell, if there’s a chance for hgettext, before we prepare a
proper release for unstable and file a bug or is it clear that hgettext
won’t make it?

Regards
Sven

[1]: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=774802

--
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/6e581ed2-515d-48e3-83e1-9923b2310...@weltraumschlangen.de



Bug#774812: wheezy-pu: package nvidia-graphics-modules/304.125+3.2.0+1

2015-01-07 Thread Andreas Beckmann
Package: release.debian.org
Severity: normal
Tags: wheezy
User: release.debian@packages.debian.org
Usertags: pu

Rebuilt kernel modules for the new upstream
nvidia-graphics-drivers/304.125-1 in wheezy-proposed-updates

No +deb7u1 suffix to avoid version number explosion.

I know it's a bit late, but I just came back from holidays where I've
been offline longer than expected. This package B-D on the new
nvidia-graphics-drivers in wheezy-p-u, so I couldn't prepare it earlier.

The current nvidia-graphics-modules/304.117+3.2.0+1 will be useless
together with nvidia-graphics-drivers/304.125-1

To avoid any further delays I'll upload once it has been built.


Andreas
diff -Nru nvidia-graphics-modules-304.117+3.2.0+1/debian/changelog nvidia-graphics-modules-304.125+3.2.0+1/debian/changelog
--- nvidia-graphics-modules-304.117+3.2.0+1/debian/changelog	2014-04-11 15:05:55.0 +0200
+++ nvidia-graphics-modules-304.125+3.2.0+1/debian/changelog	2015-01-07 20:47:01.0 +0100
@@ -1,3 +1,11 @@
+nvidia-graphics-modules (304.125+3.2.0+1) wheezy; urgency=medium
+
+  * Use nvidia-kernel-source 304.125.
+  * Update Vcs-* URLs.
+  * Upload to wheezy.
+
+ -- Andreas Beckmann a...@debian.org  Wed, 07 Jan 2015 20:37:21 +0100
+
 nvidia-graphics-modules (304.117+3.2.0+1) wheezy; urgency=low
 
   * Use nvidia-kernel-source 304.117.
diff -Nru nvidia-graphics-modules-304.117+3.2.0+1/debian/control nvidia-graphics-modules-304.125+3.2.0+1/debian/control
--- nvidia-graphics-modules-304.117+3.2.0+1/debian/control	2014-04-11 15:05:55.0 +0200
+++ nvidia-graphics-modules-304.125+3.2.0+1/debian/control	2015-01-07 20:47:01.0 +0100
@@ -7,16 +7,16 @@
  Andreas Beckmann a...@debian.org,
 Build-Depends: debhelper (= 8),
  linux-headers-3.2.0-4-amd64 [i386 amd64], linux-headers-3.2.0-4-486 [i386], linux-headers-3.2.0-4-686-pae [i386],
- nvidia-kernel-source (= 304.117), nvidia-kernel-source ( 304.117.~),
+ nvidia-kernel-source (= 304.125), nvidia-kernel-source ( 304.125.~),
 Standards-Version: 3.9.3
 Homepage: http://www.nvidia.com/
-Vcs-Git: git://anonscm.debian.org/pkg-nvidia/nvidia-graphics-modules.git
-Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-nvidia/nvidia-graphics-modules.git
+Vcs-Git: git://anonscm.debian.org/pkg-nvidia/nvidia-graphics-modules.git -b wheezy
+Vcs-Browser: https://anonscm.debian.org/cgit/pkg-nvidia/nvidia-graphics-modules.git
 XS-Autobuild: yes
 
 Package: nvidia-kernel-amd64
 Architecture: i386 amd64
-Depends: ${misc:Depends}, nvidia-kernel-3.2.0-4-amd64 (= 304.117)
+Depends: ${misc:Depends}, nvidia-kernel-3.2.0-4-amd64 (= 304.125)
 Breaks: nvidia-kernel-2.6-amd64 ( 295)
 Replaces: nvidia-kernel-2.6-amd64 ( 295)
 Description: NVIDIA kernel module for Linux (amd64 flavor)
@@ -44,7 +44,7 @@
 
 Package: nvidia-kernel-486
 Architecture: i386
-Depends: ${misc:Depends}, nvidia-kernel-3.2.0-4-486 (= 304.117)
+Depends: ${misc:Depends}, nvidia-kernel-3.2.0-4-486 (= 304.125)
 Breaks: nvidia-kernel-2.6-486 ( 295)
 Replaces: nvidia-kernel-2.6-486 ( 295)
 Description: NVIDIA kernel module for Linux (486 flavor)
@@ -72,7 +72,7 @@
 
 Package: nvidia-kernel-686-pae
 Architecture: i386
-Depends: ${misc:Depends}, nvidia-kernel-3.2.0-4-686-pae (= 304.117)
+Depends: ${misc:Depends}, nvidia-kernel-3.2.0-4-686-pae (= 304.125)
 Breaks: nvidia-kernel-2.6-686-pae ( 295)
 Replaces: nvidia-kernel-2.6-686-pae ( 295)
 Description: NVIDIA kernel module for Linux (686-pae flavor)
diff -Nru nvidia-graphics-modules-304.117+3.2.0+1/debian/control.md5sum nvidia-graphics-modules-304.125+3.2.0+1/debian/control.md5sum
--- nvidia-graphics-modules-304.117+3.2.0+1/debian/control.md5sum	2014-04-11 15:05:55.0 +0200
+++ nvidia-graphics-modules-304.125+3.2.0+1/debian/control.md5sum	2015-01-07 20:47:01.0 +0100
@@ -1,6 +1,6 @@
-43016338a348af304c7a9331795c1407  debian/control
-e24cb1172a9e708cd6ca8e9a5aa2c86d  debian/control.source
+648d63caee3a36fc20f7fd3826f024e6  debian/control
+604424135c845d2bafd91b15e03670f7  debian/control.source
 8dce140a73e725f1cd59a7aef8ecc83d  debian/control.flavor
 6015281d47a4a606e6e430597d75c27d  debian/rules
 94561696e96a4338bb92f811f1058ec6  debian/rules.defs
-#UPSTREAM_VERSION=304.117#
+#UPSTREAM_VERSION=304.125#
diff -Nru nvidia-graphics-modules-304.117+3.2.0+1/debian/control.source nvidia-graphics-modules-304.125+3.2.0+1/debian/control.source
--- nvidia-graphics-modules-304.117+3.2.0+1/debian/control.source	2014-04-11 15:05:55.0 +0200
+++ nvidia-graphics-modules-304.125+3.2.0+1/debian/control.source	2015-01-07 20:47:01.0 +0100
@@ -10,6 +10,6 @@
  #SOURCE_PKG# (= #UPSTREAM_VERSION##SOURCE_MIN_REV#), #SOURCE_PKG# ( #UPSTREAM_VERSION##SOURCE_MAX_SUFFIX#),
 Standards-Version: 3.9.3
 Homepage: http://www.nvidia.com/
-Vcs-Git: git://anonscm.debian.org/pkg-nvidia/nvidia-graphics-modules.git
-Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-nvidia/nvidia-graphics-modules.git
+Vcs-Git: git://anonscm.debian.org/pkg-nvidia/nvidia-graphics-modules.git -b wheezy

Bug#774781: unblock: openstack-trove/2014.1.3-5

2015-01-07 Thread Thomas Goirand
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Dear release team,

Please unblock package openstack-trove. It contains the below
fixes:

- Also purges /var/lib/trove when package is purged (Closes: #769771) by
doing rm -rf /var/lib/trove on purge.
- Rebuilt using openstack-pkg-tools (= 21~) to ensure init scripts fixes.

Debdiff attached.

Please unblock openstack-trove/2014.1.3-5.

Cheers,

Thomas Goirand (zigo)
diff -Nru openstack-trove-2014.1.3/debian/changelog openstack-trove-2014.1.3/debian/changelog
--- openstack-trove-2014.1.3/debian/changelog	2014-12-03 12:51:53.0 +
+++ openstack-trove-2014.1.3/debian/changelog	2015-01-07 00:05:15.0 +
@@ -1,3 +1,10 @@
+openstack-trove (2014.1.3-5) unstable; urgency=medium
+
+  * Also purges /var/lib/trove when package is purged (Closes: #769771).
+  * Rebuilt using openstack-pkg-tools (= 21~) to ensure init scripts fixes.
+
+ -- Thomas Goirand z...@debian.org  Wed, 07 Jan 2015 00:02:07 +
+
 openstack-trove (2014.1.3-4) unstable; urgency=medium
 
   * Fixed ucfr call to use trove-common and not nova-common (Closes: #771873).
diff -Nru openstack-trove-2014.1.3/debian/control openstack-trove-2014.1.3/debian/control
--- openstack-trove-2014.1.3/debian/control	2014-12-03 12:51:53.0 +
+++ openstack-trove-2014.1.3/debian/control	2015-01-07 00:05:15.0 +
@@ -6,7 +6,7 @@
Thomas Goirand z...@debian.org,
Mehdi Abaakouk sil...@sileht.net
 Build-Depends: debhelper (= 9),
-   openstack-pkg-tools (= 12~),
+   openstack-pkg-tools (= 21~),
po-debconf,
python-all (= 2.6.6-3~),
python-pbr (= 0.6),
diff -Nru openstack-trove-2014.1.3/debian/trove-common.postrm openstack-trove-2014.1.3/debian/trove-common.postrm
--- openstack-trove-2014.1.3/debian/trove-common.postrm	2014-12-03 12:51:53.0 +
+++ openstack-trove-2014.1.3/debian/trove-common.postrm	2015-01-07 00:05:15.0 +
@@ -23,6 +23,7 @@
 	rm -f /etc/trove/api-paste.ini
 	rm -f /etc/trove/trove.conf
 	[ -d /etc/trove ]  rmdir --ignore-fail-on-non-empty /etc/trove
+	rm -rf /var/lib/trove
 fi
 
 #DEBHELPER#


Bug#774783: unblock keysync/0.2.1.1-2

2015-01-07 Thread Hans-Christoph Steiner

Package: release.debian.org
User: release.debian@packages.debian.org
Usertags: unblock
Severity: normal

unblock keysync/0.2.1.1-2

Fixes missing dependency that pydist didn't find:
https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=774531


$ debdiff /tmp/keysync_0.2.1.1-1.dsc keysync_0.2.1.1-2.dsc
diff -Nru keysync-0.2.1.1/debian/changelog keysync-0.2.1.1/debian/changelog
--- keysync-0.2.1.1/debian/changelog2014-07-07 22:23:52.0 +0200
+++ keysync-0.2.1.1/debian/changelog2015-01-07 14:23:55.0 +0100
@@ -1,3 +1,10 @@
+keysync (0.2.1.1-2) unstable; urgency=low
+
+  * Standards-Version: 3.9.6
+  * add missing dep to pydist-overrides (Closes: #774531)
+
+ -- Hans-Christoph Steiner h...@eds.org  Wed, 07 Jan 2015 14:23:24 +0100
+
 keysync (0.2.1.1-1) unstable; urgency=low

   * new upstream release
diff -Nru keysync-0.2.1.1/debian/control keysync-0.2.1.1/debian/control
--- keysync-0.2.1.1/debian/control  2014-07-07 22:23:34.0 +0200
+++ keysync-0.2.1.1/debian/control  2015-01-07 14:21:48.0 +0100
@@ -6,7 +6,7 @@
 Build-Depends: debhelper (= 7.0.8),
python (= 2.6.6-3~),
python-setuptools
-Standards-Version: 3.9.5
+Standards-Version: 3.9.6
 Homepage: https://guardianproject.info/apps/keysync
 Vcs-Git: https://alioth.debian.org/anonscm/git/collab-maint/keysync.git
 Vcs-Browser: http://anonscm.debian.org/gitweb/?p=collab-maint/keysync.git
@@ -18,6 +18,7 @@
   python-crypto,
   python-imaging-tk,
   python-pymtp (= 0.0.6~),
+  python-pkg-resources,
   python-tk
 X-Python-Version: = 2.7
 Description: Syncs OTR identities between the different chat programs
diff -Nru keysync-0.2.1.1/debian/pydist-overrides
keysync-0.2.1.1/debian/pydist-overrides
--- keysync-0.2.1.1/debian/pydist-overrides 2013-11-07 21:07:32.0 
+0100
+++ keysync-0.2.1.1/debian/pydist-overrides 2015-01-07 14:12:34.0 
+0100
@@ -1,2 +1,3 @@
 pil python-imaging
 ordereddict python
+pkg_resources python-pkg-resources



signature.asc
Description: OpenPGP digital signature


Bug#774773: wheezy-pu: package policyd-weight/policyd-weight/0.1.15.2-5+wheezy2

2015-01-07 Thread Werner Detter
Hi, 

 diff -Nru policyd-weight-0.1.15.2/debian/changelog 
 policyd-weight-0.1.15.2/debian/changelog
 --- policyd-weight-0.1.15.2/debian/changelog 2014-03-15 13:24:45.0 
 +0100
 +++ policyd-weight-0.1.15.2/debian/changelog 2015-01-07 07:56:59.0 
 +0100
 @@ -1,3 +1,11 @@
 +policyd-weight (0.1.15.2-5+wheezy2) unstable; urgency=low
 
 s/unstable/wheezy/

Thanks, fixed and uploaded to mentors, debdiff attached[1].
http://mentors.debian.net/debian/pool/main/p/policyd-weight/policyd-weight_0.1.15.2-5+wheezy2.dsc

 You might also want to update the manpage?
the man5 manpage needs to be updated, right. I will do this in unstable with 
the next version? 
Otherwise I need to recreate the both packages and we need to upload stable and 
unstable again. 
What do you propose? 

Cheers, 
Werner

[1]
werner@smaint:~/wheezy$ debdiff policyd-weight_0.1.15.2-5+wheezy1.dsc 
policyd-weight_0.1.15.2-5+wheezy2.dsc 
diff -Nru policyd-weight-0.1.15.2/debian/changelog 
policyd-weight-0.1.15.2/debian/changelog
--- policyd-weight-0.1.15.2/debian/changelog2014-03-15 13:24:45.0 
+0100
+++ policyd-weight-0.1.15.2/debian/changelog2015-01-07 14:34:55.0 
+0100
@@ -1,3 +1,11 @@
+policyd-weight (0.1.15.2-5+wheezy2) wheezy; urgency=low
+
+  * Add 10_del_rhsbl.ahbl.org.patch which removes rhsbl.ahbl.org list due
+to service shutdown
+   
+ -- Werner Detter wer...@aloah-from-hell.de  Wed,  7 Jan 2015 07:30:14 +0100
+
+
 policyd-weight (0.1.15.2-5+wheezy1) wheezy; urgency=low
 
 * Add 09_fix_net_dns_usage.patch which fixes infinite loop when dns 
resolver
diff -Nru policyd-weight-0.1.15.2/debian/patches/10_del_rhsbl.ahbl.org.patch 
policyd-weight-0.1.15.2/debian/patches/10_del_rhsbl.ahbl.org.patch
--- policyd-weight-0.1.15.2/debian/patches/10_del_rhsbl.ahbl.org.patch  
1970-01-01 01:00:00.0 +0100
+++ policyd-weight-0.1.15.2/debian/patches/10_del_rhsbl.ahbl.org.patch  
2015-01-07 07:55:16.0 +0100
@@ -0,0 +1,15 @@
+Description: removes RHSBL rhsbl.ahbl.org from policyd-weight source
+Author: Werner Detter wer...@aloah-from-hell.de
+DEP: 3
+--- a/policyd-weight
 b/policyd-weight
+@@ -389,8 +389,7 @@
+ 
+ ## RHSBL settings
+ my @rhsbl_score = (
+-'multi.surbl.org', 4,0,'SURBL',
+-'rhsbl.ahbl.org',  4,0,'AHBL'
++'multi.surbl.org', 4,0,'SURBL'
+ );
+ 
+ my $BL_ERROR_SKIP = 2;  # skip a RBL if this RBL had this many continuous
diff -Nru policyd-weight-0.1.15.2/debian/patches/series 
policyd-weight-0.1.15.2/debian/patches/series
--- policyd-weight-0.1.15.2/debian/patches/series   2014-03-15 
13:26:31.0 +0100
+++ policyd-weight-0.1.15.2/debian/patches/series   2015-01-07 
07:54:13.0 +0100
@@ -7,3 +7,4 @@
 07_del_rfc-ignorant.org.patch
 08_del_dnsbl.njabl.org.patch
 09_fix_net_dns_usage.patch
+10_del_rhsbl.ahbl.org.patch


-- 
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/54ad38d8.8000...@aloah-from-hell.de



Bug#774229: nmu: db5.3_5.3.28-7~deb8u1, cyrus-imapd-2.4_2.4.17+caldav~beta10-12

2015-01-07 Thread Ondřej Surý
Hi Ivo,

On Tue, Jan 6, 2015, at 20:56, Ivo De Decker wrote:
  I will prepare db5.3_5.3.28-7+deb8u2 and
  cyrus-imapd-2.4_2.4.17+caldav~beta10-12+deb8u1 and upload when you ack
  it. OK?
 
 You can go ahead with db5.3_5.3.28-7+deb8u2.

Done.

I also had to prepare yet another update for cyrus-imapd-2.4, because I
have noticed that jessie doesn't have required debhelper (that correctly
sets ${misc:Pre-Depends}) and thus the Pre-Depends needs to be set to a
fixed value. This wouldn't be a problem for migrating, but any binNMU
(or s-p-u) would fail.

Cheers,
-- 
Ondřej Surý ond...@sury.org
Knot DNS (https://www.knot-dns.cz/) – a high-performance DNS server


--
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/1420643682.1175098.210723133.650c8...@webmail.messagingengine.com



Bug#774818: unblock: mod-proxy-msrpc/0.5-2

2015-01-07 Thread Micha Lenk
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please consider to unblock package mod-proxy-msrpc 0.5-2. This version adds
upsteam-big-endian-patch.diff to fix FTBFS #774285 on big endian architectures.

unblock mod-proxy-msrpc/0.5-2

Thanks for considering,
Micha
diffstat for mod-proxy-msrpc-0.5 mod-proxy-msrpc-0.5

 changelog  |   12 +
 control|2 
 patches/series |1 
 patches/upstream-big-endian-patch.diff |  381 +
 4 files changed, 395 insertions(+), 1 deletion(-)

diff -Nru mod-proxy-msrpc-0.5/debian/changelog mod-proxy-msrpc-0.5/debian/changelog
--- mod-proxy-msrpc-0.5/debian/changelog	2014-04-29 22:08:12.0 +0200
+++ mod-proxy-msrpc-0.5/debian/changelog	2015-01-07 23:07:19.0 +0100
@@ -1,3 +1,15 @@
+mod-proxy-msrpc (0.5-2) experimental; urgency=medium
+
+  * Upload to experimental because I don't know whether this change will
+get a freeze exception for Debian Jessie.
+  * Add patch upstream-big-endian-patch.diff to fix build on big endian
+architectures (closes: #774285). This essentially updates the source to
+upstream Git commit 03ed564ee88b1a35e830c4f141e178125010c265 (all changes
+since the release 0.5 were only related to big-endian support).
+  * Package is compliant to Debian Policy 3.9.6 (no changes needed).
+
+ -- Micha Lenk mi...@debian.org  Wed, 07 Jan 2015 22:48:39 +0100
+
 mod-proxy-msrpc (0.5-1) unstable; urgency=medium
 
   * New upstream version
diff -Nru mod-proxy-msrpc-0.5/debian/control mod-proxy-msrpc-0.5/debian/control
--- mod-proxy-msrpc-0.5/debian/control	2014-04-29 21:50:06.0 +0200
+++ mod-proxy-msrpc-0.5/debian/control	2015-01-07 23:07:12.0 +0100
@@ -5,7 +5,7 @@
 Build-Depends: debhelper (= 8.0.0), pkg-config,
  apache2-dev (= 2.4), uuid-dev,
  check, dh-autoreconf
-Standards-Version: 3.9.5
+Standards-Version: 3.9.6
 Homepage: https://github.com/bombadil/mod_proxy_msrpc
 Vcs-Git: https://github.com/bombadil/mod_proxy_msrpc.git -b debian/unstable
 Vcs-Browser: https://github.com/bombadil/mod_proxy_msrpc/tree/debian/unstable
diff -Nru mod-proxy-msrpc-0.5/debian/patches/series mod-proxy-msrpc-0.5/debian/patches/series
--- mod-proxy-msrpc-0.5/debian/patches/series	1970-01-01 01:00:00.0 +0100
+++ mod-proxy-msrpc-0.5/debian/patches/series	2015-01-07 22:47:46.0 +0100
@@ -0,0 +1 @@
+upstream-big-endian-patch.diff
diff -Nru mod-proxy-msrpc-0.5/debian/patches/upstream-big-endian-patch.diff mod-proxy-msrpc-0.5/debian/patches/upstream-big-endian-patch.diff
--- mod-proxy-msrpc-0.5/debian/patches/upstream-big-endian-patch.diff	1970-01-01 01:00:00.0 +0100
+++ mod-proxy-msrpc-0.5/debian/patches/upstream-big-endian-patch.diff	2015-01-07 22:46:54.0 +0100
@@ -0,0 +1,381 @@
+Author: Micha Lenk mi...@lenk.info
+Description: Add support for build on big-endian architectures
+ This essentially updates the source to upstream Git commit
+ 03ed564ee88b1a35e830c4f141e178125010c265 (all changes since the
+ release 0.5 were only related to big-endian support). 
+Origin: upstream, https://github.com/bombadil/mod_proxy_msrpc/commit/03ed564ee88b1a35e830c4f141e178125010c265
+Bug: https://github.com/bombadil/mod_proxy_msrpc/issues/18
+Bug-Debian: http://bugs.debian.org/774285
+
+--- mod-proxy-msrpc-0.5.orig/src/msrpc_pdu_parser.c
 mod-proxy-msrpc-0.5/src/msrpc_pdu_parser.c
+@@ -72,6 +72,8 @@ static const char const *msrpc_rts_pdu_c
+ NULL,
+ };
+ 
++#define MSRPC_PDU_IS_LITTLE_ENDIAN (pdu-data_representation == MSRPC_PDU_DATA_REPRESENTATION_LITTLE_ENDIAN)
++
+ apr_status_t msrpc_pdu_get_length(const char *buf, apr_size_t *length)
+ {
+ msrpc_pdu_t *pdu = (msrpc_pdu_t *)buf;
+@@ -81,7 +83,10 @@ apr_status_t msrpc_pdu_get_length(const
+ return APR_INCOMPLETE;
+ }
+ 
+-*length = pdu-frag_length;
++#ifdef DEBUG_MSRPC_PDU_PARSER
++printf(data representation: 0x%08x\n, (uint32_t)pdu-data_representation);
++#endif
++*length = MSRPC_PDU_IS_LITTLE_ENDIAN ? pdu-frag_length : swap_bytes_uint16_t(pdu-frag_length);
+ return APR_SUCCESS;
+ }
+ 
+@@ -110,11 +115,13 @@ apr_status_t msrpc_pdu_validate(const ch
+ if (error) *error = PDU type;
+ return APR_FROM_OS_ERROR(EBADMSG);
+ }
+-if (pdu-data_representation != 16) {
++if ((pdu-data_representation != MSRPC_PDU_DATA_REPRESENTATION_LITTLE_ENDIAN) 
++(pdu-data_representation != MSRPC_PDU_DATA_REPRESENTATION_BIG_ENDIAN)) {
+ if (error) *error = data representation;
+ return APR_FROM_OS_ERROR(EBADMSG);
+ }
+-if (pdu-frag_length % 4 != 0) {
++uint16_t frag_length = MSRPC_PDU_IS_LITTLE_ENDIAN ? pdu-frag_length : swap_bytes_uint16_t(pdu-frag_length);
++if (frag_length % 4 != 0) {
+ if (error) *error = unaligned length;
+ return APR_FROM_OS_ERROR(EBADMSG);
+ }
+@@ -130,18 +137,24 @@ 

Processed: Re: Bug#774812: wheezy-pu: package nvidia-graphics-modules/304.125+3.2.0+1

2015-01-07 Thread Debian Bug Tracking System
Processing control commands:

 tags -1 + pending
Bug #774812 [release.debian.org] wheezy-pu: package 
nvidia-graphics-modules/304.125+3.2.0+1
Added tag(s) pending.

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


--
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/handler.s.b774812.142067020723201.transcr...@bugs.debian.org



Bug#774812: wheezy-pu: package nvidia-graphics-modules/304.125+3.2.0+1

2015-01-07 Thread Adam D. Barratt
Control: tags -1 + pending

On Wed, 2015-01-07 at 21:16 +0100, Andreas Beckmann wrote:
 Rebuilt kernel modules for the new upstream
 nvidia-graphics-drivers/304.125-1 in wheezy-proposed-updates
 
 No +deb7u1 suffix to avoid version number explosion.
 
 I know it's a bit late,

Somewhat. :-(

 but I just came back from holidays where I've
 been offline longer than expected. This package B-D on the new
 nvidia-graphics-drivers in wheezy-p-u, so I couldn't prepare it earlier.
 
 The current nvidia-graphics-modules/304.117+3.2.0+1 will be useless
 together with nvidia-graphics-drivers/304.125-1

Well, the alternative would be not to include either of them, and leave
them until 7.9.

After some pondering, I've decided to accept this to keep the security
fix in, and as we don't have to wait for builds.

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/1420670197.392.9.ca...@adam-barratt.org.uk



Re: Please dak copy-installer 20150107 hint it into testing

2015-01-07 Thread Ansgar Burchardt
Hi,

Cyril Brulebois k...@debian.org writes:
 dak copy-installer 20150107

Done.

Thanks for all your work on d-i,
Ansgar


-- 
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/87oaqagu8k@deep-thought.43-1.org



Bug#774688: unblock: pbbuttonsd/0.7.9-3

2015-01-07 Thread Paul Wise
On Wed, Jan 7, 2015 at 3:01 AM, Sven Joachim wrote:
 On 2015-01-06 10:24 +0100, Mathieu Malaterre wrote:

 diff -Nru pbbuttonsd-0.7.9/debian/changelog pbbuttonsd-0.7.9/debian/changelog
 --- pbbuttonsd-0.7.9/debian/changelog 2014-01-22 13:08:34.0 +0100
 +++ pbbuttonsd-0.7.9/debian/changelog 2015-01-06 10:12:42.0 +0100
 @@ -1,3 +1,10 @@
 +pbbuttonsd (0.7.9-4) unstable; urgency=low
 +
 +  * Adopt package. Closes: #422162
 +  * Fix for linux kernel 3.x. Closes: #711685

 How about future 4.x kernels?  It seems quite possible that those will be
 released during jessie's lifetime.

Why does the script care about the Linux kernel version instead of
looking at which sysfs entries are present and using them?

-- 
bye,
pabs

https://wiki.debian.org/PaulWise


-- 
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/CAKTje6FCozwLam+4=mvju0psjgmpnzukcfnuw9esgbmr_hu...@mail.gmail.com



Bug#773256: dbus + triggers + apt issue (was: Bug#773256: pre-approval: unblock: dpkg/1.17.23)

2015-01-07 Thread Guillem Jover
[ @deity: please check out the dbus issue below. ]

Hi!

On Sat, 2014-12-27 at 18:45:38 +0100, Niels Thykier wrote:
 I hope you are feeling better now. :)

Yes, much better, thanks. :)

 TL;DR: Please upload dpkg/1.17.23 with the proposed fix for #771730 at
 your earliest convenience - by the looks of it, might fix one or two of
 our upgrade tests on jenkins.d.n.

Thanks for the unblock.

[ Re dbus issue ]
 Noted.  Do we (still?) have a (reliable) way of reproducing the dbus
 trigger issue?

We didn't up to now (AFAIK), but there's now very valuable data from
Karl Ljungkvist at #774124. I've been able to reproduce the issue with
that status file and apt (over a clean debootstrap of jessie, and
adding i386 as a foreign arch). And have been trying out several things:

  * It seems to affect both apt from jessie/sid and wheezy. :(
apt gets into a state it cannot recover from by itself.
  * «dpkg --configure --pending» solves the issue.
  * Using dpkg --force-configure-any only fixes the issue partially, :(
because apt does not notice that the package has been implicitly
configured, and tries to configure the package again and dpkg exits
with an error for that run, which apt does not like much either (as
I feared). So I'd need to also change dpkg to not fail configuring
an already configure package, or try to detect that specific case.

This is the (trimmed) «dpkg -C» output for the broken status file:

,---
The following packages have been unpacked but not yet configured.
They must be configured using dpkg --configure or the configure
menu option in dselect for them to work:
 bluezBluetooth tools and daemons
 bzip2high-quality block-sorting file compressor - utilities
 libdbus-1-3:amd64simple interprocess messaging system (library)
 libdbus-1-3:i386 simple interprocess messaging system (library)
 libdbus-1-dev:amd64  simple interprocess messaging system (development headers
 libperl5.20  shared Perl library
 perl Larry Wall's Practical Extraction and Report Language
 perl-modules Core Perl modules
 systemd-sysv system and service manager - SysV links
 tzdata-java  time zone and daylight-saving time data for use by java r

The following packages are awaiting processing of triggers that they
have activated in other packages.  This processing can be requested using
dselect or dpkg --configure --pending (or dpkg --triggers-only):
 systemd  system and service manager

The following packages have been triggered, but the trigger processing
has not yet been done.  Trigger processing can be requested using
dselect or dpkg --configure --pending (or dpkg --triggers-only):
 dbus simple interprocess messaging system (daemon and utilitie
`---

And here's the «apt-get install -f -s» output:

,---
Reading package lists... Done
Building dependency tree
Reading state information... Done
Correcting dependencies... Done
The following extra packages will be installed:
  libpam-systemd
The following packages will be upgraded:
  libpam-systemd
1 upgraded, 0 newly installed, 0 to remove and 238 not upgraded.
10 not fully installed or removed.
Conf systemd-sysv (215-8 Debian:testing [amd64]) [libpam-systemd:amd64 ]
Inst libpam-systemd [215-7] (215-8 Debian:testing [amd64])
Conf libdbus-1-3 (1.8.12-3 Debian:testing [amd64])
Conf libdbus-1-3:i386 (1.8.12-3  [i386])
Conf bzip2 (1.0.6-7+b2 Debian:testing [amd64])
Conf perl-modules (5.20.1-4 Debian:testing [all])
Conf perl (5.20.1-4 Debian:testing [amd64])
Conf bluez (5.23-2 Debian:testing [amd64])
Conf libdbus-1-dev (1.8.12-3 Debian:testing [amd64])
Conf libperl5.20 (5.20.1-4 Debian:testing [amd64])
Conf tzdata-java (2014j-1 Debian:testing [all])
Conf libpam-systemd (215-8 Debian:testing [amd64])
`---

Trying to run the first action gives the undesired unsatisfied trigger
dependency problem:

,---
$ dpkg --configure systemd-sysv
dpkg: dependency problems prevent processing triggers for dbus:
 dbus depends on libdbus-1-3 (= 1.7.6); however:
  Package libdbus-1-3:amd64 is not configured yet.

dpkg: error processing package dbus (--configure):
 dependency problems - leaving triggers unprocessed
[…]
dpkg: too many errors, stopping
Errors were encountered while processing:
 dbus
[…]
Processing was halted because there were too many errors.
`---

Before considering either reverting, or trying to find a workaround
for this in dpkg, I'd like to know if this is easily fixable in apt
and the implications of this problem (i.e. can it affect similar
situations regardless of the recent dpkg trigger changes?) and the
implications of such a fix.

Thanks,
Guillem


-- 
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/20150108014705.gc30...@gaara.hadrons.org



Re: License incompatibility below RC threshold

2015-01-07 Thread Russ Allbery
Francesco Poli invernom...@paranoici.org writes:

 Dear Release Team,
 I am concerned that a license incompatibility (bug #741196 and the
 other similar bug reports against other packages) might slip through
 into the jessie release without being noticed or addressed adequately.

 Please read #741196 bug log, or, at least:

 https://bugs.debian.org/741196#5
 https://bugs.debian.org/741196#53
 https://bugs.debian.org/741196#96

For those who are curious what this is about, it's a library that links
with both libraries covered under the GNU GPL v2 or later and the CeCILL-C
v1.0 license.  Francesco believes these are incompatible licenses and has
asserted this in multiple bugs, but does not appear to have presented any
actual evidence of that.  The FSF doesn't state a position on CeCILL-C,
but explicitly says that CeCILL v2 is a GPL-compatible license [1].
Wikipedia claims that CeCILL-C is compatible with the GNU LGPL v2, which
would also make it compatible with the GNU GPL v2.  CeCILL-C is a
less-restrictive version of CeCILL, so it would make sense for it to be
compatible.

[1] https://www.gnu.org/licenses/license-list.html#CeCILL

The only specific claim that Francesco has made that I was able to find is
that the choice of venue clause in CeCILL-C makes it incompatible.
However, CeCILL also contains a choice of venue clause, and the FSF state
that it is GPL-compatible.  Given that they base those determinations on
the advice of lawyers, I'm dubious of this argument.

 What do you think should be done?

Nothing, in the absence of more credible evidence that there is a license
incomaptibility.

-- 
Russ Allbery (r...@debian.org)   http://www.eyrie.org/~eagle/


-- 
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/87k30y6l70@hope.eyrie.org



Bug#774776: marked as done (unblock: nova/2014.1.3-8, neutron/2014.1.3-9, glance/2014.1.3-7)

2015-01-07 Thread Debian Bug Tracking System
Your message dated Wed, 7 Jan 2015 18:04:38 +
with message-id 20150107180438.gu10...@lupin.home.powdarrmonkey.net
and subject line Re: Bug#774776: unblock: nova/2014.1.3-8, neutron/2014.1.3-9, 
glance/2014.1.3-7
has caused the Debian Bug report #774776,
regarding unblock: nova/2014.1.3-8, neutron/2014.1.3-9, glance/2014.1.3-7
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.)


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

Hi,

This is a follow-up after unblocking openstack-pkg-tools version 21.
I have rebuilt all OpenStack packages, and nova, neutron and glance
only contains the build-depends change (debdiff attached for all of
them 3). I'm sending separate unblock requests for designate, heat,
keystone and openstack-trove as they contain other changes, as per
the recommendation of Ivo De Decker.

Please unblock:
- nova/2014.1.3-8
- neutron/2014.1.3-9
- glance/2014.1.3-7

Cheers,

Thomas Goirand (zigo)
diff -Nru neutron-2014.1.3/debian/changelog neutron-2014.1.3/debian/changelog
--- neutron-2014.1.3/debian/changelog	2014-12-18 12:39:54.0 +
+++ neutron-2014.1.3/debian/changelog	2015-01-06 21:40:25.0 +
@@ -1,3 +1,10 @@
+neutron (2014.1.3-9) unstable; urgency=medium
+
+  * Build-depends on openstack-pkg-tools (= 21~) to ensure we have the sysv-rc
+fixes.
+
+ -- Thomas Goirand z...@debian.org  Tue, 06 Jan 2015 21:39:14 +
+
 neutron (2014.1.3-8) unstable; urgency=medium
 
   * Only use dbconfig-common and change the connection directive if the user
diff -Nru neutron-2014.1.3/debian/control neutron-2014.1.3/debian/control
--- neutron-2014.1.3/debian/control	2014-12-18 12:39:54.0 +
+++ neutron-2014.1.3/debian/control	2015-01-06 21:40:25.0 +
@@ -7,7 +7,7 @@
Mehdi Abaakouk sil...@sileht.net
 Build-Depends: debhelper (= 9),
dh-systemd,
-   openstack-pkg-tools (= 20~),
+   openstack-pkg-tools (= 21~),
po-debconf,
python-all (= 2.6),
python-pbr (= 0.6),
diff -Nru glance-2014.1.3/debian/changelog glance-2014.1.3/debian/changelog
--- glance-2014.1.3/debian/changelog	2014-12-25 09:29:14.0 +
+++ glance-2014.1.3/debian/changelog	2015-01-05 21:57:57.0 +
@@ -1,3 +1,10 @@
+glance (2014.1.3-7) unstable; urgency=medium
+
+  * Build-depends on openstack-pkg-tools (= 21~) to ensure we have the
+sysv-rc fixes.
+
+ -- Thomas Goirand z...@debian.org  Mon, 05 Jan 2015 21:57:15 +
+
 glance (2014.1.3-6) unstable; urgency=high
 
   * Added restrict_client_download_and_delete_files_in_glance-api_juno.patch
diff -Nru glance-2014.1.3/debian/control glance-2014.1.3/debian/control
--- glance-2014.1.3/debian/control	2014-12-25 09:29:14.0 +
+++ glance-2014.1.3/debian/control	2015-01-05 21:57:57.0 +
@@ -5,7 +5,7 @@
 Uploaders: Thomas Goirand z...@debian.org
 Build-Depends: debhelper (= 9),
dh-systemd,
-   openstack-pkg-tools (= 20~),
+   openstack-pkg-tools (= 21~),
po-debconf,
python-all (= 2.6.6-3~),
python-pbr (= 0.6),
diff -Nru nova-2014.1.3/debian/changelog nova-2014.1.3/debian/changelog
--- nova-2014.1.3/debian/changelog	2014-12-30 22:45:51.0 +
+++ nova-2014.1.3/debian/changelog	2015-01-06 22:09:56.0 +
@@ -1,3 +1,9 @@
+nova (2014.1.3-8) unstable; urgency=medium
+
+  * Rebuilt with openstack-pkg-tools (= 21~).
+
+ -- Thomas Goirand z...@debian.org  Tue, 06 Jan 2015 22:09:21 +
+
 nova (2014.1.3-7.1) unstable; urgency=medium
 
   * Non-maintainer upload.
diff -Nru nova-2014.1.3/debian/control nova-2014.1.3/debian/control
--- nova-2014.1.3/debian/control	2014-12-30 22:36:11.0 +
+++ nova-2014.1.3/debian/control	2015-01-06 22:09:56.0 +
@@ -9,7 +9,7 @@
gustavo panizzo g...@zumbi.com.ar
 Build-Depends: debhelper (= 9),
dh-systemd,
-   openstack-pkg-tools (= 20~),
+   openstack-pkg-tools (= 21~),
po-debconf,
python-all (= 2.6.6-3~),
python-pbr (= 0.6),
---End Message---
---BeginMessage---
On Wed, Jan 07, 2015 at 03:15:29PM +0100, Thomas Goirand wrote:
 This is a follow-up after unblocking openstack-pkg-tools version 21.
 I have rebuilt all OpenStack packages, and nova, neutron and glance
 only contains the 

Bug#774718: marked as done (nmu: tulip_4.6.0dfsg-2)

2015-01-07 Thread Debian Bug Tracking System
Your message dated Wed, 7 Jan 2015 18:08:15 +
with message-id 20150107180815.gv10...@lupin.home.powdarrmonkey.net
and subject line Re: Bug#774718: nmu: tulip_4.6.0dfsg-2
has caused the Debian Bug report #774718,
regarding nmu: tulip_4.6.0dfsg-2
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.)


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

nmu tulip_4.6.0dfsg-2 . ALL . -m rebuild against binutils 2.25-3

tulip 4.6.0dfsg-2+b4 still depends on binutils ( 2.24.91)

-- 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.18.0-trunk-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_US.utf8, LC_CTYPE=en_US.utf8 (charmap=UTF-8) (ignored: LC_ALL 
set to en_US.utf8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)
---End Message---
---BeginMessage---
On Tue, Jan 06, 2015 at 08:16:37PM +0100, Ralf Treinen wrote:
 nmu tulip_4.6.0dfsg-2 . ALL . -m rebuild against binutils 2.25-3
 
 tulip 4.6.0dfsg-2+b4 still depends on binutils ( 2.24.91)

Scheduled, please reopen if it builds against the wrong version again and
we can use extra-depends.


-- 
Jonathan Wiltshire  j...@debian.org
Debian Developer http://people.debian.org/~jmw

4096R: 0xD3524C51 / 0A55 B7C5 1223 3942 86EC  74C3 5394 479D D352 4C51



signature.asc
Description: Digital signature
---End Message---


Bug#774720: marked as done (nmu: ggcov_0.9-6)

2015-01-07 Thread Debian Bug Tracking System
Your message dated Wed, 7 Jan 2015 18:10:01 +
with message-id 20150107181001.gw10...@lupin.home.powdarrmonkey.net
and subject line Re: Bug#774720: nmu: ggcov_0.9-6
has caused the Debian Bug report #774720,
regarding nmu: ggcov_0.9-6
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.)


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

nmu ggcov_0.9-6 . ALL . -m rebuild against binutils 2.25-3

ggcov 0.9-6+b12 still depends on binutils ( 2.24.91)

-- 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.18.0-trunk-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_US.utf8, LC_CTYPE=en_US.utf8 (charmap=UTF-8) (ignored: LC_ALL 
set to en_US.utf8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)
---End Message---
---BeginMessage---
On Tue, Jan 06, 2015 at 08:21:26PM +0100, Ralf Treinen wrote:
 nmu ggcov_0.9-6 . ALL . -m rebuild against binutils 2.25-3
 
 ggcov 0.9-6+b12 still depends on binutils ( 2.24.91)

Scheduled, please reopen if it builds against the wrong version again.


-- 
Jonathan Wiltshire  j...@debian.org
Debian Developer http://people.debian.org/~jmw

4096R: 0xD3524C51 / 0A55 B7C5 1223 3942 86EC  74C3 5394 479D D352 4C51



signature.asc
Description: Digital signature
---End Message---


Processed: tagging 774759

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

 tags 774759 + moreinfo
Bug #774759 [release.debian.org] [pre-approval] unblock: ghostscript/9.06~dfsg-2
Added tag(s) moreinfo.
 thanks
Stopping processing here.

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


--
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/handler.s.c.142065427015778.transcr...@bugs.debian.org



Bug#774229: nmu: db5.3_5.3.28-7~deb8u1, cyrus-imapd-2.4_2.4.17+caldav~beta10-12

2015-01-07 Thread Ivo De Decker
Hi,

On Wed, Jan 07, 2015 at 04:14:42PM +0100, Ondřej Surý wrote:
 On Tue, Jan 6, 2015, at 20:56, Ivo De Decker wrote:
   I will prepare db5.3_5.3.28-7+deb8u2 and
   cyrus-imapd-2.4_2.4.17+caldav~beta10-12+deb8u1 and upload when you ack
   it. OK?
  
  You can go ahead with db5.3_5.3.28-7+deb8u2.
 
 Done.

The changes with wrap-and-sort really aren't appropriate during the freeze.
They make it harder to review without any benefit. Also, the changes in TPU
should also be applied to the version in unstable.

 I also had to prepare yet another update for cyrus-imapd-2.4, because I
 have noticed that jessie doesn't have required debhelper (that correctly
 sets ${misc:Pre-Depends}) and thus the Pre-Depends needs to be set to a
 fixed value. This wouldn't be a problem for migrating, but any binNMU
 (or s-p-u) would fail.

The timing of this upload is unfortunate, as it interferes with the libical
transition. As it is built on all architectures already, I unblocked and
urgented it. Here also the wrap-and-sort should have been avoided.

Cheers,

Ivo


-- 
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/20150107184355.ga2...@ugent.be



Please dak copy-installer 20150107 hint it into testing

2015-01-07 Thread Cyril Brulebois
Hi,

FTPmasters, please sync the installer from sid to testing:

  dak copy-installer 20150107


Release team, please hint it into testing:

  unblock debian-installer/20150107
  urgent debian-installer/20150107


Thanks for your time.

Mraw,
KiBi.


signature.asc
Description: Digital signature


Processed: retitle 774646 to unblock: vtk6/6.1.0+dfsg2-5

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

 retitle 774646 unblock: vtk6/6.1.0+dfsg2-5
Bug #774646 [release.debian.org] unblock: vtk6/debian/6.1.0+dfsg2-5
Changed Bug title to 'unblock: vtk6/6.1.0+dfsg2-5' from 'unblock: 
vtk6/debian/6.1.0+dfsg2-5'
 thanks
Stopping processing here.

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


--
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/handler.s.c.142065683031319.transcr...@bugs.debian.org



Bug#774804: unblock: cabextract/1.4-5

2015-01-07 Thread Moritz Muehlenhoff
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Hi,
please unblock cabextract 1.4-5. It fixes a security issue in
cabextract by moving to the fixed system-wide libmspack (this also 
reducing the overhead for future potential security issues in 
libmspack).

unblock cabextract/1.4-5

Cheers,
Moritz

Debdiff:

diff -Nru cabextract-1.4/debian/changelog
cabextract-1.4/debian/changelog
--- cabextract-1.4/debian/changelog 2013-02-17 19:23:32.0
+0100
+++ cabextract-1.4/debian/changelog 2014-12-16 20:43:14.0
+0100
@@ -1,3 +1,9 @@
+cabextract (1.4-5) unstable; urgency=low
+
+  * Switch to an external mspack library: Closes: #675560
+
+ -- Eric Sharkey shar...@debian.org  Tue, 16 Dec 2014 14:41:18
-0500
+
 cabextract (1.4-4) unstable; urgency=low

   * Mark as multi-arch foreign: Closes: #700683
diff -Nru cabextract-1.4/debian/control cabextract-1.4/debian/control
--- cabextract-1.4/debian/control   2013-02-17 19:23:32.0
+0100
+++ cabextract-1.4/debian/control   2014-12-16 20:51:46.0
+0100
@@ -2,8 +2,8 @@
 Section: utils
 Priority: optional
 Maintainer: Eric Sharkey shar...@debian.org
-Build-Depends: debhelper ( 6.0.0), sharutils
-Standards-Version: 3.9.3
+Build-Depends: debhelper ( 6.0.0), sharutils, libmspack-dev
+Standards-Version: 3.9.6

 Package: cabextract
 Architecture: any
diff -Nru cabextract-1.4/debian/rules cabextract-1.4/debian/rules
--- cabextract-1.4/debian/rules 2012-04-28 00:56:01.0 +0200
+++ cabextract-1.4/debian/rules 2014-12-16 20:36:49.0 +0100
@@ -13,7 +13,7 @@
 configure-stamp:
dh_testdir
# Add here commands to configure the package.
-   ./configure CPPFLAGS=$(CPPFLAGS) CFLAGS=$(CFLAGS)
 LDFLAGS=$(LDFLAGS) --prefix=$(CURDIR)/debian/cabextract/usr
+--mandir=$(CURDIR)/debian/cabextract/usr/share/man
 --infodir=$(CURDIR)/debian/cabextract/usr/share/info
+   ./configure CPPFLAGS=$(CPPFLAGS) CFLAGS=$(CFLAGS)
 LDFLAGS=$(LDFLAGS) --prefix=$(CURDIR)/debian/cabextract/usr
+--mandir=$(CURDIR)/debian/cabextract/usr/share/man
 --infodir=$(CURDIR)/debian/cabextract/usr/share/info
+--with-external-libmspack=yes


touch configure-stamp


-- 
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/20150107190852.3087.24978.reportbug@pisco.westfalen.local



Bug#774688: marked as done (unblock pbbuttonsd/0.7.9-4)

2015-01-07 Thread Debian Bug Tracking System
Your message dated Wed, 7 Jan 2015 17:56:39 +
with message-id 20150107175639.go10...@lupin.home.powdarrmonkey.net
and subject line Re: Bug#774688: unblock: pbbuttonsd/0.7.9-3
has caused the Debian Bug report #774688,
regarding unblock pbbuttonsd/0.7.9-4
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.)


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

Please unblock package pbbuttonsd

This upload fixes 711685, I took the liberty to also fix a lintian error 
(dpkg-dev version in B-D).


unblock pbbuttonsd/0.7.9-3

-- System Information:
Debian Release: 7.4
  APT prefers stable
  APT policy: (700, 'stable'), (500, 'stable-updates'), (200, 'testing'), (100, 
'unstable')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 3.16.0-0.bpo.4-amd64 (SMP w/8 CPU cores)
Locale: LANG=en_US.utf8, LC_CTYPE=en_US.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
diff -Nru pbbuttonsd-0.7.9/debian/changelog pbbuttonsd-0.7.9/debian/changelog
--- pbbuttonsd-0.7.9/debian/changelog	2014-01-22 13:08:34.0 +0100
+++ pbbuttonsd-0.7.9/debian/changelog	2015-01-06 10:12:42.0 +0100
@@ -1,3 +1,10 @@
+pbbuttonsd (0.7.9-4) unstable; urgency=low
+
+  * Adopt package. Closes: #422162
+  * Fix for linux kernel 3.x. Closes: #711685
+
+ -- Mathieu Malaterre ma...@debian.org  Tue, 06 Jan 2015 10:12:35 +0100
+
 pbbuttonsd (0.7.9-3) unstable; urgency=low
 
   * QA upload.
diff -Nru pbbuttonsd-0.7.9/debian/control pbbuttonsd-0.7.9/debian/control
--- pbbuttonsd-0.7.9/debian/control	2014-01-22 13:05:01.0 +0100
+++ pbbuttonsd-0.7.9/debian/control	2015-01-06 10:11:51.0 +0100
@@ -2,7 +2,7 @@
 Section: admin
 Priority: optional
 Maintainer: Debian QA Group packa...@qa.debian.org
-Build-Depends: debhelper (= 9), bison, gettext, libasound2-dev, libglib2.0-dev, pkg-config
+Build-Depends: debhelper (= 9), bison, gettext, libasound2-dev, libglib2.0-dev, pkg-config, dpkg-dev (= 1.16.1~)
 Standards-Version: 3.9.5
 
 Package: pbbuttonsd
diff -Nru pbbuttonsd-0.7.9/debian/patches/cpufreq.patch pbbuttonsd-0.7.9/debian/patches/cpufreq.patch
--- pbbuttonsd-0.7.9/debian/patches/cpufreq.patch	1970-01-01 01:00:00.0 +0100
+++ pbbuttonsd-0.7.9/debian/patches/cpufreq.patch	2015-01-05 12:19:16.0 +0100
@@ -0,0 +1,28 @@
+Description: pbbuttonsd is not rewritten for kernel 3.2
+Author: Mathieu Malaterre ma...@debian.org
+Origin: https://bugs.gentoo.org/show_bug.cgi?id=429306#c1
+Bug-Debian: http://bugs.debian.org/711685
+Reviewed-by: Mathieu Malaterre ma...@debian.org
+
+Index: pbbuttonsd-0.7.9/scripts/scripts.d/cpufreq
+===
+--- pbbuttonsd-0.7.9.orig/scripts/scripts.d/cpufreq	2015-01-05 12:05:46.542701600 +0100
 pbbuttonsd-0.7.9/scripts/scripts.d/cpufreq	2015-01-05 12:05:50.220539855 +0100
+@@ -18,7 +18,7 @@
+ case $1 in
+   powersave|custom)
+ case $KVER in
+-  2.6.*)
++  2.6.*|3.*)
+ if [ -d /sys ]; then
+   echo -n userspace  /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor
+   cat /sys/devices/system/cpu/cpu0/cpufreq/cpuinfo_min_freq  /sys/devices/system/cpu/cpu0/cpufreq/scaling_min_freq
+@@ -41,7 +41,7 @@
+;;
+   performance)
+  case $KVER in
+-  2.6.*)
++  2.6.*|3.*)
+ if [ -d /sys ]; then
+   echo -n userspace  /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor
+   cat /sys/devices/system/cpu/cpu0/cpufreq/cpuinfo_min_freq  /sys/devices/system/cpu/cpu0/cpufreq/scaling_min_freq
diff -Nru pbbuttonsd-0.7.9/debian/patches/laptopmode.patch pbbuttonsd-0.7.9/debian/patches/laptopmode.patch
--- pbbuttonsd-0.7.9/debian/patches/laptopmode.patch	1970-01-01 01:00:00.0 +0100
+++ pbbuttonsd-0.7.9/debian/patches/laptopmode.patch	2015-01-05 12:19:18.0 +0100
@@ -0,0 +1,37 @@
+Description: pbbuttonsd is not rewritten for kernel 3.2
+Author: Mathieu Malaterre ma...@debian.org
+Origin: https://bugs.gentoo.org/show_bug.cgi?id=429306#c2
+Bug-Debian: http://bugs.debian.org/711685
+Reviewed-by: Mathieu Malaterre ma...@debian.org
+
+Index: pbbuttonsd-0.7.9/scripts/scripts.d/laptopmode.sh
+===
+--- pbbuttonsd-0.7.9.orig/scripts/scripts.d/laptopmode.sh	2006-10-01 17:34:12.0 +0200
 pbbuttonsd-0.7.9/scripts/scripts.d/laptopmode.sh	2015-01-05 12:12:09.217970623 +0100
+@@ -122,7 +122,7 @@
+ 	 )

Bug#774688: unblock: pbbuttonsd/0.7.9-3

2015-01-07 Thread Jonathan Wiltshire
On Tue, Jan 06, 2015 at 08:01:28PM +0100, Sven Joachim wrote:
 On 2015-01-06 10:24 +0100, Mathieu Malaterre wrote:
 
  diff -Nru pbbuttonsd-0.7.9/debian/changelog 
  pbbuttonsd-0.7.9/debian/changelog
  --- pbbuttonsd-0.7.9/debian/changelog   2014-01-22 13:08:34.0 
  +0100
  +++ pbbuttonsd-0.7.9/debian/changelog   2015-01-06 10:12:42.0 
  +0100
  @@ -1,3 +1,10 @@
  +pbbuttonsd (0.7.9-4) unstable; urgency=low
  +
  +  * Adopt package. Closes: #422162
  +  * Fix for linux kernel 3.x. Closes: #711685
 
 How about future 4.x kernels?  It seems quite possible that those will be
 released during jessie's lifetime.

If and when that happens it can be dealt with through a point update.

-- 
Jonathan Wiltshire  j...@debian.org
Debian Developer http://people.debian.org/~jmw

4096R: 0xD3524C51 / 0A55 B7C5 1223 3942 86EC  74C3 5394 479D D352 4C51



signature.asc
Description: Digital signature


Bug#774777: marked as done (unblock: designate/2014.1-16)

2015-01-07 Thread Debian Bug Tracking System
Your message dated Wed, 7 Jan 2015 18:00:14 +
with message-id 20150107180014.gq10...@lupin.home.powdarrmonkey.net
and subject line Re: Bug#774777: unblock: designate/2014.1-16
has caused the Debian Bug report #774777,
regarding unblock: designate/2014.1-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.)


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

Please unblock package designate. It contains the below changes:

Minor fix:
- Fixed homepage: stackforge - openstack.

Debian SSLv3 removal fix:
- Added a no-SSLv3.patch to remove the use of ssl.PROTOCOL_SSLv3 which is not
  available in Debian anymore.

Init script fix:
- Rebuilt against openstack-pkg-tools = 21~ (after unblocking
  openstack-pkg-tools version 21).
- Fixed PROJECT_NAME instead of SERVICE_NAME for the init script of
  designate-api. Thanks to Gaudenz Steinlin. (Closes: #774383).

Debdiff attached.

Please unblock designate/2014.1-16.

Cheers,

Thomas Goirand (zigo)
---End Message---
---BeginMessage---
On Wed, Jan 07, 2015 at 03:18:26PM +0100, Thomas Goirand wrote:
 Debdiff attached.

Are you sure about that? :)

I generated one; unblocked.

Thanks,

-- 
Jonathan Wiltshire  j...@debian.org
Debian Developer http://people.debian.org/~jmw

4096R: 0xD3524C51 / 0A55 B7C5 1223 3942 86EC  74C3 5394 479D D352 4C51



signature.asc
Description: Digital signature
---End Message---


Bug#774778: marked as done (unblock: keystone/2014.1.3-5)

2015-01-07 Thread Debian Bug Tracking System
Your message dated Wed, 7 Jan 2015 18:01:39 +
with message-id 20150107180139.gr10...@lupin.home.powdarrmonkey.net
and subject line Re: Bug#774778: unblock: keystone/2014.1.3-5
has caused the Debian Bug report #774778,
regarding unblock: keystone/2014.1.3-5
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.)


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

Please unblock package keystone. It contains the below fixes:

* Fix cron job to not error after package removal (Closes: #773494), by
checking if keystone-manage is available in /usr/bin and executable.

* Rebuild against openstack-pkg-tools = 21~ to fix sysv-rc script.

Please unblock keystone/2014.1.3-5.

Cheers,

Thomas Goirand (zigo)
diff -Nru keystone-2014.1.3/debian/changelog keystone-2014.1.3/debian/changelog
--- keystone-2014.1.3/debian/changelog	2014-12-18 11:07:23.0 +
+++ keystone-2014.1.3/debian/changelog	2015-01-06 20:27:39.0 +
@@ -1,3 +1,10 @@
+keystone (2014.1.3-5) unstable; urgency=medium
+
+  * Fix cron job to not error after package removal (Closes: #773494).
+  * Rebuild against openstack-pkg-tools = 21~ to fix sysv-rc script.
+
+ -- Thomas Goirand z...@debian.org  Tue, 06 Jan 2015 20:23:24 +
+
 keystone (2014.1.3-4) unstable; urgency=medium
 
   * Manually activates keystone.service since we're not using #DEBHELPER#.
diff -Nru keystone-2014.1.3/debian/control keystone-2014.1.3/debian/control
--- keystone-2014.1.3/debian/control	2014-12-18 11:07:23.0 +
+++ keystone-2014.1.3/debian/control	2015-01-06 20:27:39.0 +
@@ -7,7 +7,7 @@
Mehdi Abaakouk sil...@sileht.net
 Build-Depends: debhelper (= 9),
dh-systemd,
-   openstack-pkg-tools (= 20~),
+   openstack-pkg-tools (= 21~),
po-debconf,
python-all (= 2.6.6-3~),
python-pbr (= 0.6),
diff -Nru keystone-2014.1.3/debian/keystone.cron.hourly keystone-2014.1.3/debian/keystone.cron.hourly
--- keystone-2014.1.3/debian/keystone.cron.hourly	2014-12-18 11:07:23.0 +
+++ keystone-2014.1.3/debian/keystone.cron.hourly	2015-01-06 20:27:39.0 +
@@ -2,4 +2,6 @@
 
 set -e
 
-su -c '/usr/bin/keystone-manage token_flush /var/log/keystone/keystone-tokenflush.log 21' keystone
+if [ -x /usr/bin/keystone-manage ] ; then
+	su -c '/usr/bin/keystone-manage token_flush /var/log/keystone/keystone-tokenflush.log 21' keystone
+fi
---End Message---
---BeginMessage---
On Wed, Jan 07, 2015 at 03:20:10PM +0100, Thomas Goirand wrote:
 Package: release.debian.org
 Severity: normal
 User: release.debian@packages.debian.org
 Usertags: unblock
 
 Please unblock package keystone. It contains the below fixes:
 
 * Fix cron job to not error after package removal (Closes: #773494), by
 checking if keystone-manage is available in /usr/bin and executable.
 
 * Rebuild against openstack-pkg-tools = 21~ to fix sysv-rc script.
 
 Please unblock keystone/2014.1.3-5.
 
 Cheers,
 
 Thomas Goirand (zigo)

 diff -Nru keystone-2014.1.3/debian/changelog 
 keystone-2014.1.3/debian/changelog
 --- keystone-2014.1.3/debian/changelog2014-12-18 11:07:23.0 
 +
 +++ keystone-2014.1.3/debian/changelog2015-01-06 20:27:39.0 
 +
 @@ -1,3 +1,10 @@
 +keystone (2014.1.3-5) unstable; urgency=medium
 +
 +  * Fix cron job to not error after package removal (Closes: #773494).
 +  * Rebuild against openstack-pkg-tools = 21~ to fix sysv-rc script.
 +
 + -- Thomas Goirand z...@debian.org  Tue, 06 Jan 2015 20:23:24 +
 +
  keystone (2014.1.3-4) unstable; urgency=medium
  
* Manually activates keystone.service since we're not using #DEBHELPER#.
 diff -Nru keystone-2014.1.3/debian/control keystone-2014.1.3/debian/control
 --- keystone-2014.1.3/debian/control  2014-12-18 11:07:23.0 +
 +++ keystone-2014.1.3/debian/control  2015-01-06 20:27:39.0 +
 @@ -7,7 +7,7 @@
 Mehdi Abaakouk sil...@sileht.net
  Build-Depends: debhelper (= 9),
 dh-systemd,
 -   openstack-pkg-tools (= 20~),
 +   openstack-pkg-tools (= 21~),
 po-debconf,
 python-all (= 2.6.6-3~),
 python-pbr (= 0.6),
 diff -Nru keystone-2014.1.3/debian/keystone.cron.hourly 
 keystone-2014.1.3/debian/keystone.cron.hourly
 --- keystone-2014.1.3/debian/keystone.cron.hourly 2014-12-18 
 

Bug#774783: marked as done (unblock keysync/0.2.1.1-2)

2015-01-07 Thread Debian Bug Tracking System
Your message dated Wed, 7 Jan 2015 18:02:48 +
with message-id 20150107180248.gt10...@lupin.home.powdarrmonkey.net
and subject line Re: Bug#774783: unblock keysync/0.2.1.1-2
has caused the Debian Bug report #774783,
regarding unblock keysync/0.2.1.1-2
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.)


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

Package: release.debian.org
User: release.debian@packages.debian.org
Usertags: unblock
Severity: normal

unblock keysync/0.2.1.1-2

Fixes missing dependency that pydist didn't find:
https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=774531


$ debdiff /tmp/keysync_0.2.1.1-1.dsc keysync_0.2.1.1-2.dsc
diff -Nru keysync-0.2.1.1/debian/changelog keysync-0.2.1.1/debian/changelog
--- keysync-0.2.1.1/debian/changelog2014-07-07 22:23:52.0 +0200
+++ keysync-0.2.1.1/debian/changelog2015-01-07 14:23:55.0 +0100
@@ -1,3 +1,10 @@
+keysync (0.2.1.1-2) unstable; urgency=low
+
+  * Standards-Version: 3.9.6
+  * add missing dep to pydist-overrides (Closes: #774531)
+
+ -- Hans-Christoph Steiner h...@eds.org  Wed, 07 Jan 2015 14:23:24 +0100
+
 keysync (0.2.1.1-1) unstable; urgency=low

   * new upstream release
diff -Nru keysync-0.2.1.1/debian/control keysync-0.2.1.1/debian/control
--- keysync-0.2.1.1/debian/control  2014-07-07 22:23:34.0 +0200
+++ keysync-0.2.1.1/debian/control  2015-01-07 14:21:48.0 +0100
@@ -6,7 +6,7 @@
 Build-Depends: debhelper (= 7.0.8),
python (= 2.6.6-3~),
python-setuptools
-Standards-Version: 3.9.5
+Standards-Version: 3.9.6
 Homepage: https://guardianproject.info/apps/keysync
 Vcs-Git: https://alioth.debian.org/anonscm/git/collab-maint/keysync.git
 Vcs-Browser: http://anonscm.debian.org/gitweb/?p=collab-maint/keysync.git
@@ -18,6 +18,7 @@
   python-crypto,
   python-imaging-tk,
   python-pymtp (= 0.0.6~),
+  python-pkg-resources,
   python-tk
 X-Python-Version: = 2.7
 Description: Syncs OTR identities between the different chat programs
diff -Nru keysync-0.2.1.1/debian/pydist-overrides
keysync-0.2.1.1/debian/pydist-overrides
--- keysync-0.2.1.1/debian/pydist-overrides 2013-11-07 21:07:32.0 
+0100
+++ keysync-0.2.1.1/debian/pydist-overrides 2015-01-07 14:12:34.0 
+0100
@@ -1,2 +1,3 @@
 pil python-imaging
 ordereddict python
+pkg_resources python-pkg-resources



signature.asc
Description: OpenPGP digital signature
---End Message---
---BeginMessage---
On Wed, Jan 07, 2015 at 04:40:04PM +0100, Hans-Christoph Steiner wrote:
 unblock keysync/0.2.1.1-2
 
 Fixes missing dependency that pydist didn't find:
 https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=774531

Unblocked.


-- 
Jonathan Wiltshire  j...@debian.org
Debian Developer http://people.debian.org/~jmw

4096R: 0xD3524C51 / 0A55 B7C5 1223 3942 86EC  74C3 5394 479D D352 4C51



signature.asc
Description: Digital signature
---End Message---


Bug#774781: marked as done (unblock: openstack-trove/2014.1.3-5)

2015-01-07 Thread Debian Bug Tracking System
Your message dated Wed, 7 Jan 2015 18:01:57 +
with message-id 20150107180157.gs10...@lupin.home.powdarrmonkey.net
and subject line Re: Bug#774781: unblock: openstack-trove/2014.1.3-5
has caused the Debian Bug report #774781,
regarding unblock: openstack-trove/2014.1.3-5
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.)


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

Dear release team,

Please unblock package openstack-trove. It contains the below
fixes:

- Also purges /var/lib/trove when package is purged (Closes: #769771) by
doing rm -rf /var/lib/trove on purge.
- Rebuilt using openstack-pkg-tools (= 21~) to ensure init scripts fixes.

Debdiff attached.

Please unblock openstack-trove/2014.1.3-5.

Cheers,

Thomas Goirand (zigo)
diff -Nru openstack-trove-2014.1.3/debian/changelog openstack-trove-2014.1.3/debian/changelog
--- openstack-trove-2014.1.3/debian/changelog	2014-12-03 12:51:53.0 +
+++ openstack-trove-2014.1.3/debian/changelog	2015-01-07 00:05:15.0 +
@@ -1,3 +1,10 @@
+openstack-trove (2014.1.3-5) unstable; urgency=medium
+
+  * Also purges /var/lib/trove when package is purged (Closes: #769771).
+  * Rebuilt using openstack-pkg-tools (= 21~) to ensure init scripts fixes.
+
+ -- Thomas Goirand z...@debian.org  Wed, 07 Jan 2015 00:02:07 +
+
 openstack-trove (2014.1.3-4) unstable; urgency=medium
 
   * Fixed ucfr call to use trove-common and not nova-common (Closes: #771873).
diff -Nru openstack-trove-2014.1.3/debian/control openstack-trove-2014.1.3/debian/control
--- openstack-trove-2014.1.3/debian/control	2014-12-03 12:51:53.0 +
+++ openstack-trove-2014.1.3/debian/control	2015-01-07 00:05:15.0 +
@@ -6,7 +6,7 @@
Thomas Goirand z...@debian.org,
Mehdi Abaakouk sil...@sileht.net
 Build-Depends: debhelper (= 9),
-   openstack-pkg-tools (= 12~),
+   openstack-pkg-tools (= 21~),
po-debconf,
python-all (= 2.6.6-3~),
python-pbr (= 0.6),
diff -Nru openstack-trove-2014.1.3/debian/trove-common.postrm openstack-trove-2014.1.3/debian/trove-common.postrm
--- openstack-trove-2014.1.3/debian/trove-common.postrm	2014-12-03 12:51:53.0 +
+++ openstack-trove-2014.1.3/debian/trove-common.postrm	2015-01-07 00:05:15.0 +
@@ -23,6 +23,7 @@
 	rm -f /etc/trove/api-paste.ini
 	rm -f /etc/trove/trove.conf
 	[ -d /etc/trove ]  rmdir --ignore-fail-on-non-empty /etc/trove
+	rm -rf /var/lib/trove
 fi
 
 #DEBHELPER#
---End Message---
---BeginMessage---
On Wed, Jan 07, 2015 at 03:22:06PM +0100, Thomas Goirand wrote:
 Please unblock package openstack-trove. It contains the below
 fixes:

Unblocked.

-- 
Jonathan Wiltshire  j...@debian.org
Debian Developer http://people.debian.org/~jmw

4096R: 0xD3524C51 / 0A55 B7C5 1223 3942 86EC  74C3 5394 479D D352 4C51



signature.asc
Description: Digital signature
---End Message---


Bug#774804: marked as done (unblock: cabextract/1.4-5)

2015-01-07 Thread Debian Bug Tracking System
Your message dated Wed, 7 Jan 2015 19:34:36 +
with message-id 20150107193436.gx10...@lupin.home.powdarrmonkey.net
and subject line Re: Bug#774804: unblock: cabextract/1.4-5
has caused the Debian Bug report #774804,
regarding unblock: cabextract/1.4-5
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.)


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

Hi,
please unblock cabextract 1.4-5. It fixes a security issue in
cabextract by moving to the fixed system-wide libmspack (this also 
reducing the overhead for future potential security issues in 
libmspack).

unblock cabextract/1.4-5

Cheers,
Moritz

Debdiff:

diff -Nru cabextract-1.4/debian/changelog
cabextract-1.4/debian/changelog
--- cabextract-1.4/debian/changelog 2013-02-17 19:23:32.0
+0100
+++ cabextract-1.4/debian/changelog 2014-12-16 20:43:14.0
+0100
@@ -1,3 +1,9 @@
+cabextract (1.4-5) unstable; urgency=low
+
+  * Switch to an external mspack library: Closes: #675560
+
+ -- Eric Sharkey shar...@debian.org  Tue, 16 Dec 2014 14:41:18
-0500
+
 cabextract (1.4-4) unstable; urgency=low

   * Mark as multi-arch foreign: Closes: #700683
diff -Nru cabextract-1.4/debian/control cabextract-1.4/debian/control
--- cabextract-1.4/debian/control   2013-02-17 19:23:32.0
+0100
+++ cabextract-1.4/debian/control   2014-12-16 20:51:46.0
+0100
@@ -2,8 +2,8 @@
 Section: utils
 Priority: optional
 Maintainer: Eric Sharkey shar...@debian.org
-Build-Depends: debhelper ( 6.0.0), sharutils
-Standards-Version: 3.9.3
+Build-Depends: debhelper ( 6.0.0), sharutils, libmspack-dev
+Standards-Version: 3.9.6

 Package: cabextract
 Architecture: any
diff -Nru cabextract-1.4/debian/rules cabextract-1.4/debian/rules
--- cabextract-1.4/debian/rules 2012-04-28 00:56:01.0 +0200
+++ cabextract-1.4/debian/rules 2014-12-16 20:36:49.0 +0100
@@ -13,7 +13,7 @@
 configure-stamp:
dh_testdir
# Add here commands to configure the package.
-   ./configure CPPFLAGS=$(CPPFLAGS) CFLAGS=$(CFLAGS)
 LDFLAGS=$(LDFLAGS) --prefix=$(CURDIR)/debian/cabextract/usr
+--mandir=$(CURDIR)/debian/cabextract/usr/share/man
 --infodir=$(CURDIR)/debian/cabextract/usr/share/info
+   ./configure CPPFLAGS=$(CPPFLAGS) CFLAGS=$(CFLAGS)
 LDFLAGS=$(LDFLAGS) --prefix=$(CURDIR)/debian/cabextract/usr
+--mandir=$(CURDIR)/debian/cabextract/usr/share/man
 --infodir=$(CURDIR)/debian/cabextract/usr/share/info
+--with-external-libmspack=yes


touch configure-stamp
---End Message---
---BeginMessage---
On Wed, Jan 07, 2015 at 08:08:52PM +0100, Moritz Muehlenhoff wrote:
 please unblock cabextract 1.4-5. It fixes a security issue in
 cabextract by moving to the fixed system-wide libmspack (this also 
 reducing the overhead for future potential security issues in 
 libmspack).

Unblocked.

-- 
Jonathan Wiltshire  j...@debian.org
Debian Developer http://people.debian.org/~jmw

4096R: 0xD3524C51 / 0A55 B7C5 1223 3942 86EC  74C3 5394 479D D352 4C51



signature.asc
Description: Digital signature
---End Message---