Bug#692002: unblock: esmtp/1.2-10

2012-10-31 Thread Salvatore Bonaccorso
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Hi Release-Team

Please unblock package esmtp

esmtp 1.2-10 includes only a fix to the french debconf translation. It
had the wrong charset previously:

+  * Fix charset to UTF-8 for french translation
+debian/po/fr.po uses UTF-8, but was declared as using ISO-8859-1. That
+causes the debconf screen to be broken in French.
+Thanks to David Prévot  (Closes: #691926)

Could you unblock esmtp 1.2-10? Attached is the debdiff.

unblock esmtp/1.2-10

Many thanks for your work,

Regards,
Salvatore

-- System Information:
Debian Release: wheezy/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.32-5-amd64 (SMP w/8 CPU cores)
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)
Shell: /bin/sh linked to /bin/dash
Base version: esmtp_1.2-9 from testing
Target version: esmtp_1.2-10 from unstable

No hints in place.

 changelog |9 +
 po/fr.po  |2 +-
 2 files changed, 10 insertions(+), 1 deletion(-)

diff -Nru esmtp-1.2/debian/changelog esmtp-1.2/debian/changelog
--- esmtp-1.2/debian/changelog	2012-04-19 10:53:53.0 +
+++ esmtp-1.2/debian/changelog	2012-10-31 14:46:59.0 +
@@ -1,3 +1,12 @@
+esmtp (1.2-10) unstable; urgency=low
+
+  * Fix charset to UTF-8 for french translation
+debian/po/fr.po uses UTF-8, but was declared as using ISO-8859-1. That
+causes the debconf screen to be broken in French.
+Thanks to David Prévot  (Closes: #691926)
+
+ -- Salvatore Bonaccorso   Wed, 31 Oct 2012 15:38:47 +0100
+
 esmtp (1.2-9) unstable; urgency=low
 
   * Update debian/copyright file.
diff -Nru esmtp-1.2/debian/po/fr.po esmtp-1.2/debian/po/fr.po
--- esmtp-1.2/debian/po/fr.po	2012-04-19 10:53:53.0 +
+++ esmtp-1.2/debian/po/fr.po	2012-10-31 14:46:59.0 +
@@ -21,7 +21,7 @@
 "Language-Team: French \n"
 "Language: fr\n"
 "MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=ISO-8859-1\n"
+"Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 
 #. Type: boolean


Bug#691990: unblock: wicd/1.7.2.4-3 (pre-approval)

2012-10-31 Thread David Paleino
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Hello RT,

I'm requesting pre-approval for an upload of wicd to unstable (targeted to
testing). Please see the attached patch.

It fixes a RC bug, and a couple other easy bugs (which don't affect the
functionality of the package in a significant way).

If the diff is OK, I'll upload the package, and please unblock it for migration
to testing.

Thanks for your hard work,
David

-- 
 . ''`.   Debian developer | http://wiki.debian.org/DavidPaleino
 : :'  : Linuxer #334216 --|-- http://www.hanskalabs.net/
 `. `'`  GPG: 1392B174 | http://deb.li/dapal
   `-   2BAB C625 4E66 E7B8 450A C3E1 E6AA 9017 1392 B174
diff --git a/debian/changelog b/debian/changelog
index 3ceb288..e4c976a 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,13 @@
+wicd (1.7.2.4-3) UNRELEASED; urgency=low
+
+  * Fix debian/watch
+  * Recommend rfkill in wicd-daemon (Closes: #683559)
+  * Substitute dependency on dhcp3-client with isc-dhcp-client
+(Closes: #680976)
+  * Fix handling of /etc/resolv.conf when it's a symlink (Closes: #691973)
+
+ -- David Paleino   Thu, 01 Nov 2012 00:30:25 +0100
+
 wicd (1.7.2.4-2) unstable; urgency=high
 
   * Fix comments inside /etc/default/wicd (Closes: #668327)
diff --git a/debian/control b/debian/control
index b0639f0..6bc40a8 100644
--- a/debian/control
+++ b/debian/control
@@ -47,7 +47,7 @@ Depends:
  , dbus
  , wpasupplicant
  , wireless-tools
- , dhcpcd | dhcp3-client | pump | udhcpc
+ , dhcpcd | isc-dhcp-client | pump | udhcpc
  , net-tools | ethtool
  , net-tools | iproute
  , adduser
@@ -57,6 +57,7 @@ Depends:
  , python-wicd (= ${source:Version})
 Pre-Depends: debconf (>= 1.5.34)
 Recommends: wicd-gtk (= ${source:Version}) | wicd-curses (= ${source:Version}) | wicd-cli (= ${source:Version}) | wicd-client
+ , rfkill
 Suggests: pm-utils
 Breaks: wicd (<= 1.6.2.2-4)
 Replaces: wicd (<= 1.6.2.2-4)
diff --git a/debian/patches/01-remove_unused_icons.patch b/debian/patches/01-remove_unused_icons.patch
index 7361f66..022a095 100644
--- a/debian/patches/01-remove_unused_icons.patch
+++ b/debian/patches/01-remove_unused_icons.patch
@@ -5,7 +5,7 @@ Don't install rarely-used icons, save disk space
 
 --- wicd.orig/setup.py
 +++ wicd/setup.py
-@@ -535,15 +535,11 @@ try:
+@@ -538,15 +538,11 @@ try:
  if not wpath.no_install_man:
  data.append((wpath.mandir + 'man1/', [ 'man/wicd-client.1' ]))
  data.append((wpath.icons + 'scalable/apps/', ['icons/scalable/wicd-gtk.svg']))
diff --git a/debian/patches/02-workaround_dhclient_bug.patch b/debian/patches/02-workaround_dhclient_bug.patch
index 8f46a1e..d4119fa 100644
--- a/debian/patches/02-workaround_dhclient_bug.patch
+++ b/debian/patches/02-workaround_dhclient_bug.patch
@@ -10,7 +10,7 @@ Forwarded: no
 
 --- wicd.orig/wicd/wnettools.py
 +++ wicd/wicd/wnettools.py
-@@ -284,7 +284,7 @@ class BaseInterface(object):
+@@ -285,7 +285,7 @@ class BaseInterface(object):
  
  client_dict = {
  "dhclient" : 
diff --git a/debian/patches/04-fix_resolv.conf_backup-restore.patch b/debian/patches/04-fix_resolv.conf_backup-restore.patch
new file mode 100644
index 000..25903d6
--- /dev/null
+++ b/debian/patches/04-fix_resolv.conf_backup-restore.patch
@@ -0,0 +1,40 @@
+From: David Paleino 
+Subject: fix handling of resolv.conf when it's a symlink
+Forwarded: not-needed
+Origin: upstream
+Bug-Debian: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=691973
+
+---
+ wicd/wicd-daemon.py |   14 --
+ 1 file changed, 12 insertions(+), 2 deletions(-)
+
+--- wicd.orig/wicd/wicd-daemon.py
 wicd/wicd/wicd-daemon.py
+@@ -1703,7 +1703,11 @@ def main(argv):
+ # don't back up if .orig exists, probably there cause
+ # wicd exploded
+ if not os.path.exists(backup_location):
+-shutil.copy2('/etc/resolv.conf', backup_location)
++if os.path.islink('/etc/resolv.conf'):
++dest = os.readlink('/etc/resolv.conf')
++os.symlink(dest, backup_location)
++else:
++shutil.copy2('/etc/resolv.conf', backup_location)
+ os.chmod(backup_location, 0644)
+ except IOError:
+ print 'error backing up resolv.conf'
+@@ -1750,7 +1754,13 @@ def main(argv):
+ 
+ # restore resolv.conf on quit
+ try:
+-shutil.move(wpath.varlib + 'resolv.conf.orig', '/etc/resolv.conf')
++backup_location = wpath.varlib + 'resolv.conf.orig'
++if os.path.islink(backup_location):
++dest = os.readlink(backup_location)
++os.remove('/etc/resolv.conf')
++os.symlink(dest, '/etc/resolv.conf')
++else:
++shutil.move(backup_location, '/etc/resolv.conf')
+ os.chmod('/etc/resolv.conf', 0644)
+ except IOError:
+ print 'error restoring resolv.conf'
diff --git a/debian/patch

Processed: tagging 690664

2012-10-31 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> tags 690664 + security
Bug #690664 [release.debian.org] unblock: request-tracker4/4.0.7-2
Added tag(s) security.
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
690664: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=690664
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: 
http://lists.debian.org/handler.s.c.13517250571785.transcr...@bugs.debian.org



Processed: retitle 690664 to unblock: request-tracker4/4.0.7-2

2012-10-31 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> retitle 690664 unblock: request-tracker4/4.0.7-2
Bug #690664 [release.debian.org] [request-tracker-maintainers] Freeze exception 
for RT 4.0.7?
Changed Bug title to 'unblock: request-tracker4/4.0.7-2' from 
'[request-tracker-maintainers] Freeze exception for RT 4.0.7?'
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
690664: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=690664
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: 
http://lists.debian.org/handler.s.c.13517250121264.transcr...@bugs.debian.org



Bug#691988: pre-approve unblock: libpam-ssh/1.92-15

2012-10-31 Thread Jerome Benoit
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Dear release team managers,

please pre-approve the unblock of libpam-ssh/1.92-15

in view to encourage potential sponsor to upload it for reintroduction.

libpam-ssh was removed because some easy to fix RC bugs persisted due to its 
unofficial orphan state.
This pacakge is already in Squeeze, and bug reports have been filled to request
its reintroduction to ( #664177 ).

This minimal version purposely fixes only these easy to fix RC bugs: it is 
meant for Wheezy,
hence my request.

Note that an upstream version of the package with ECDSA support is ready to be 
uploaded,
but it is meant for Jessie.

Jerome

unblock libpam-ssh/1.92-15

-- System Information:
Debian Release: Wheezy*
  APT prefers testing
  APT policy: (990, 'testing')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 3.2.23-amd64-mbp62 (SMP w/4 CPU cores)
Locale: LANG=en_GB, LC_CTYPE=en_GB (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/dash


-- 
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/20121031225816.6076.29055.report...@nen.dnsalias.org



Bug#691984: marked as done (RM: lgeneral/1.1.1-5)

2012-10-31 Thread Debian Bug Tracking System
Your message dated Wed, 31 Oct 2012 23:26:46 +0100
with message-id <5091a5a6.1030...@thykier.net>
and subject line Re: RM: lgeneral/1.1.1-5
has caused the Debian Bug report #691984,
regarding RM: lgeneral/1.1.1-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.)


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

Please remove lgeneral from testing. A DFSG-clean and up-to-date
version will be provided in unstable and delivered through 
wheezy-backports.

See 
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=691451#22

Cheers,
Moritz


-- System Information:
Debian Release: wheezy/sid
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 2.6.32-5-amd64 (SMP w/2 CPU cores)
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
--- End Message ---
--- Begin Message ---
Removal hint added, thanks.

~Niels--- End Message ---


Bug#691984: RM: lgeneral/1.1.1-5

2012-10-31 Thread Moritz Muehlenhoff
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: rm

Please remove lgeneral from testing. A DFSG-clean and up-to-date
version will be provided in unstable and delivered through 
wheezy-backports.

See 
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=691451#22

Cheers,
Moritz


-- System Information:
Debian Release: wheezy/sid
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 2.6.32-5-amd64 (SMP w/2 CPU cores)
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash


-- 
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/20121031221418.5764.22257.reportbug@pisco.westfalen.local



Bug#691934: marked as done (unblock: w3c-linkchecker/4.81-7)

2012-10-31 Thread Debian Bug Tracking System
Your message dated Wed, 31 Oct 2012 23:07:59 +0100
with message-id <5091a13f.7040...@thykier.net>
and subject line Re: Bug#691934: unblock: w3c-linkchecker/4.81-7
has caused the Debian Bug report #691934,
regarding unblock: w3c-linkchecker/4.81-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.)


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

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Hi Release-Team

Please unblock package w3c-linkchecker

The package adds the Japanese translation, see #691776.

Attached is the debdiff.

unblock w3c-linkchecker/4.81-7

Regards,
Salvatore

- -- System Information:
Debian Release: wheezy/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.32-5-amd64 (SMP w/8 CPU cores)
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)
Shell: /bin/sh linked to /bin/dash

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.12 (GNU/Linux)

iQIcBAEBCgAGBQJQkTyPAAoJEHidbwV/2GP+YgoQAJ3TvfTAKcpyXIzLVxgyPMfz
00qcJbEzQYYkoLZuS4EpAVM4sLfQlmtG3XYrUuXsfdmeZs4tGHYDknML12+cW3ud
pk+GAj71x/UkH/a03tBLCQ05Swnh1eJxgFiNDu2/GELrNk8m+A9RpxUN+1zZ3Bs0
Gc4HS7o8pWogPpuF+gV0B+d3WCEvECY0A+BtfbecUa/z4m5DRx3/wn35VyaGv8Jz
roBnnnVZioquy7h2K4Y1u0jtYPf3YVKBfOmOcGHt0Ui0h+7kWTGlQztOzUwVk0au
uOjJYovdozH/ytTnSz3qXrIUbLINJgzL/FmNIAnE1j0thT1BivLFNMp5d7xi64mi
L9tPRwwC2VKseNQsO5ITuLPAnVBRcsHVb9cto5QCxyEy8BrNjjcAxSDtZazZhJz9
cYCJeTztBakwvhiRBdspw2vO+4rSxkacLuHvo9Q5ilFX2H3fYa+VuixJniFbp5H6
jl9vaAQjJLxYPyXbccU1UAbO5S2phjRY1/gYxJaZLJwv/KEv4RLOcSKRGP7ECoMD
bJCx1+0XZjysRSCwuO6bXxc5WH5SMcIY0eNxE2aGRFfyy5FHyJdmFsN1XTO4W/2h
S6YjeNr9KEwsgQkCz+1UdUQx5cr66O0nPV/z6OUboZiLtCm9WHoy9wMqy5dtIgjb
T7JJMjNT/71LoRXR22xh
=LY2S
-END PGP SIGNATURE-
Base version: w3c-linkchecker_4.81-6 from testing
Target version: w3c-linkchecker_4.81-7 from unstable

No hints in place.

 changelog |9 +
 copyright |4 
 po/ja.po  |   51 +++
 3 files changed, 64 insertions(+)

diff -Nru w3c-linkchecker-4.81/debian/changelog w3c-linkchecker-4.81/debian/changelog
--- w3c-linkchecker-4.81/debian/changelog	2012-10-02 16:39:40.0 +
+++ w3c-linkchecker-4.81/debian/changelog	2012-10-31 12:20:47.0 +
@@ -1,3 +1,12 @@
+w3c-linkchecker (4.81-7) unstable; urgency=low
+
+  * Team upload.
+  * Added Japanese translation.
+Thanks to victory  (Closes: #691776)
+  * Add copyright information for japanese translation
+
+ -- Salvatore Bonaccorso   Wed, 31 Oct 2012 13:20:01 +0100
+
 w3c-linkchecker (4.81-6) unstable; urgency=low
 
   * Team upload.
diff -Nru w3c-linkchecker-4.81/debian/copyright w3c-linkchecker-4.81/debian/copyright
--- w3c-linkchecker-4.81/debian/copyright	2012-10-02 16:39:40.0 +
+++ w3c-linkchecker-4.81/debian/copyright	2012-10-31 12:20:47.0 +
@@ -68,6 +68,10 @@
 Copyright: 2011-2012, Michal Simunek 
 License: Artistic or GPL-1+
 
+Files: debian/po/ja.po
+Copyright: 2012, victory 
+License: Artistic or GPL-1+
+
 License: Artistic
  This program is free software; you can redistribute it and/or modify
  it under the terms of the Artistic License, which comes with Perl.
diff -Nru w3c-linkchecker-4.81/debian/po/ja.po w3c-linkchecker-4.81/debian/po/ja.po
--- w3c-linkchecker-4.81/debian/po/ja.po	1970-01-01 00:00:00.0 +
+++ w3c-linkchecker-4.81/debian/po/ja.po	2012-10-31 12:20:47.0 +
@@ -0,0 +1,51 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# victory , 2012.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: w3c-linkchecker\n"
+"Report-Msgid-Bugs-To: w3c-linkchec...@packages.debian.org\n"
+"POT-Creation-Date: 2012-10-03 14:36+\n"
+"PO-Revision-Date: 2012-10-03 23:36+0900\n"
+"Last-Translator: victory \n"
+"Language-Team: Japanese \n"
+"Language: ja\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. Type: string
+#. Description
+#: ../templates:1001
+msgid "Host name for W3C LinkChecker service:"
+msgstr "W3C LinkChecker サービスのホスト名:"
+
+#. Type: string
+#. Description
+#: ../templates:1001
+msgid ""
+"Please specify the fully qualified domain name that the w3c-linkchecker "
+"service should be remotely accessible on, if any. By default it will only be "
+"available on localhost."
+msgstr ""
+"リ

Bug#691967: marked as done (unblock: iodine/0.6.0~rc1-12)

2012-10-31 Thread Debian Bug Tracking System
Your message dated Wed, 31 Oct 2012 23:03:32 +0100
with message-id <5091a034.8070...@thykier.net>
and subject line Re: Bug#691967: unblock: iodine/0.6.0~rc1-12
has caused the Debian Bug report #691967,
regarding unblock: iodine/0.6.0~rc1-12
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.)


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

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Please unblock package iodine 0.6.0~rc1-12.

This version fixes #691959, a wrong charset declaration in the German
debconf file.

Complete debdiff:

#v+
diff --git a/debian/changelog b/debian/changelog
index 7ca2eb8..70c6ae6 100644
- --- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+iodine (0.6.0~rc1-12) unstable; urgency=low
+
+  [ David Prévot ]
+  * debian/po/de.po: Fix charset (Closes: #691959)
+
+ -- gregor herrmann   Wed, 31 Oct 2012 20:38:01 +0100
+
 iodine (0.6.0~rc1-11) unstable; urgency=low
 
   * New version of iodine-client-start (1.0.4), pulled from upstream git
diff --git a/debian/po/de.po b/debian/po/de.po
index ac4ca2a..a4fb18d 100644
- --- a/debian/po/de.po
+++ b/debian/po/de.po
@@ -12,7 +12,7 @@ msgstr ""
 "Language-Team: German \n"
 "Language: de\n"
 "MIME-Version: 1.0\n"
- -"Content-Type: text/plain; charset=ISO-8859-15\n"
+"Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 
 #. Type: boolean
#v-


unblock iodine/0.6.0~rc1-12


Thanks in advance,
gregor

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.12 (GNU/Linux)

iQIcBAEBCAAGBQJQkX+1AAoJELs6aAGGSaoGH8MP/jePEdIXNBNB9FaAov6blk3p
1VdWJ8mQh37s2Cd4jEcEf09dfSezB2hxzy/ZenO1B0Tm56mecVIZSJ8K7H9Q4P3z
NdcsHZiQzAXrVfmmPSa4499dnUGjyHY/9deUOwXcJEWKvRp15E4L7UYTbiW7SyEH
OR6mDQvxF8e3bvVUuKCT6RlbzGcSjjpwNS8wpKUaki7v1yhvf3q32FYQlm6setQb
sngQapTq95UnO/wxYVExuvijCHL+pYTsbHlNnVAD2SYxL6zHzz5/TWOJ35u0ZZNK
Hi6DJu4HmDAPi1IIgk05nY8FTGIiikOcWCIjN8fxttxurvvE4qmbTXJEk09h53If
foXHMFyXSwsoDSz+BcgRkZx+Sg7XecLsHiBum2Z8Ie4Ny/Rh5Si0Ukf3mFKrLQJs
Vj//tAm7utPN4jZFblgt9eQ4OOG/7Lr4lCxa0AfbVL2dArL4avQeM4O/eHvKX0rG
EYoTjNXHDlQwwuuL8V9uz0aNy/xyNuOLgQJM6uURDpIO2Nk3jmiUPCEQXFRiE+xk
GfYnzEHaETXFiiNMS7OQ2wukxhvmyQrArbLm+sx5aIU5kdYuJSzBjzl39LdCrlQ9
/LCSb55cMQdhMdy3ZBvrwqWpx0ioNqHlkh5Kk4I0EajwgMbzBFU0aaJz1BGvGv49
EDAj/ovSU9N/NYI8QGbI
=mvLr
-END PGP SIGNATURE-
--- End Message ---
--- Begin Message ---
On 2012-10-31 20:44, gregor herrmann wrote:
> Package: release.debian.org
> Severity: normal
> User: release.debian@packages.debian.org
> Usertags: unblock
> 
> Please unblock package iodine 0.6.0~rc1-12.
> 
> This version fixes #691959, a wrong charset declaration in the German
> debconf file.
> 
> Complete debdiff:
> 
> [...]
> 
> 
> unblock iodine/0.6.0~rc1-12
> 
> 
> Thanks in advance,
> gregor
> 
> 
> 

Unblocked, thanks.

~Niels--- End Message ---


Bug#691980: marked as done (unblock: mumble-django/2.7-7)

2012-10-31 Thread Debian Bug Tracking System
Your message dated Wed, 31 Oct 2012 23:02:17 +0100
with message-id <50919fe9.2010...@thykier.net>
and subject line Re: Bug#691980: unblock: mumble-django/2.7-7
has caused the Debian Bug report #691980,
regarding unblock: mumble-django/2.7-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.)


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

Please unblock package mumble-django

I've included a Japanese debconf translation (see bug 691939), and I've fixed 
the following Lintian warning regarding the package's Description field:
> W: mumble-django: spelling-error-in-description bandwith bandwidth

Debdiff:

diff -Nru mumble-django-2.7/debian/changelog mumble-django-2.7/debian/changelog
--- mumble-django-2.7/debian/changelog  2012-08-25 16:38:33.0 +0200
+++ mumble-django-2.7/debian/changelog  2012-10-31 22:25:34.0 +0100
@@ -1,3 +1,10 @@
+mumble-django (2.7-7) unstable; urgency=low
+
+  * Include Japanese Debconf translation (Closes: 691939).
+  * Fix Lintian warning (spelling-error-in-description).
+
+ -- Michael Ziegler   Wed, 31 Oct 2012 22:22:16 
+0100
+
 mumble-django (2.7-6) unstable; urgency=low
 
   * Add 03-templates.diff that adds "activation_complete.html" and removes an
diff -Nru mumble-django-2.7/debian/control mumble-django-2.7/debian/control
--- mumble-django-2.7/debian/control2012-08-24 19:32:13.0 +0200
+++ mumble-django-2.7/debian/control2012-10-31 22:24:38.0 +0100
@@ -70,7 +70,7 @@
   * existing server instances and users are recognized during installation
   * Admin group members can configure basic settings like MOTD and server
 password via the web interface, without getting access to settings like
-maximum user count and allowed bandwith
+maximum user count and allowed bandwidth
   * Does not require access to Murmur's database
   * Setting users' textures
   * Munin plugin that graphs the user count on each server instance
diff -Nru mumble-django-2.7/debian/po/ja.po mumble-django-2.7/debian/po/ja.po
--- mumble-django-2.7/debian/po/ja.po   1970-01-01 01:00:00.0 +0100
+++ mumble-django-2.7/debian/po/ja.po   2012-10-31 22:14:45.0 +0100
@@ -0,0 +1,45 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# victory , 2012.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: mumble-django\n"
+"Report-Msgid-Bugs-To: mumble-dja...@packages.debian.org\n"
+"POT-Creation-Date: 2012-08-26 15:38+\n"
+"PO-Revision-Date: 2012-08-27 00:38+0900\n"
+"Last-Translator: victory \n"
+"Language-Team: Japanese \n"
+"Language: ja\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. Type: note
+#. Description
+#: ../mumble-django.templates:1001
+msgid "In order to complete the installation of Mumble-Django, you need to"
+msgstr "Mumble-Django のインストールを完了させるためには、"
+
+#. Type: note
+#. Description
+#: ../mumble-django.templates:1001
+msgid "run the following command:"
+msgstr "以下のコマンドを実行する必要があります:"
+
+#. Type: note
+#. Description
+#: ../mumble-django.templates:1001
+msgid "  mumble-django-configure"
+msgstr "  mumble-django-configure"
+
+#. Type: note
+#. Description
+#: ../mumble-django.templates:1001
+msgid ""
+"Please refer to /usr/share/doc/mumble-django/README.Debian for more "
+"information."
+msgstr ""
+"さらなる情報については、/usr/share/doc/mumble-django/README.Debian を参照して"
+"ください。"


unblock mumble-django/2.7-7

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

Kernel: Linux 3.6-3.slh.3-aptosid-amd64 (SMP w/4 CPU cores; PREEMPT)
Locale: LANG=en_US.utf8, LC_CTYPE=en_US.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
--- End Message ---
--- Begin Message ---
On 2012-10-31 22:45, Michael Ziegler wrote:
> Package: release.debian.org
> Severity: normal
> User: release.debian@packages.debian.org
> Usertags: unblock
> 
> Please unblock package mumble-django
> 
> I've included a Japanese debconf translation (see bug 691939), and I've fixed 
> the following Lintian warning regarding the package's Description field:
>> W: mumble-django: spelling-error-in-description bandwith bandwidth
> 
> Debdiff:
> 
> [...]
> 
> 
> unblock mumble-django/2.7-7
> 
> [...]

Unblocked, thanks.

~Niels--- End Message ---


Bug#691980: unblock: mumble-django/2.7-7

2012-10-31 Thread Michael Ziegler
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock package mumble-django

I've included a Japanese debconf translation (see bug 691939), and I've fixed 
the following Lintian warning regarding the package's Description field:
> W: mumble-django: spelling-error-in-description bandwith bandwidth

Debdiff:

diff -Nru mumble-django-2.7/debian/changelog mumble-django-2.7/debian/changelog
--- mumble-django-2.7/debian/changelog  2012-08-25 16:38:33.0 +0200
+++ mumble-django-2.7/debian/changelog  2012-10-31 22:25:34.0 +0100
@@ -1,3 +1,10 @@
+mumble-django (2.7-7) unstable; urgency=low
+
+  * Include Japanese Debconf translation (Closes: 691939).
+  * Fix Lintian warning (spelling-error-in-description).
+
+ -- Michael Ziegler   Wed, 31 Oct 2012 22:22:16 
+0100
+
 mumble-django (2.7-6) unstable; urgency=low
 
   * Add 03-templates.diff that adds "activation_complete.html" and removes an
diff -Nru mumble-django-2.7/debian/control mumble-django-2.7/debian/control
--- mumble-django-2.7/debian/control2012-08-24 19:32:13.0 +0200
+++ mumble-django-2.7/debian/control2012-10-31 22:24:38.0 +0100
@@ -70,7 +70,7 @@
   * existing server instances and users are recognized during installation
   * Admin group members can configure basic settings like MOTD and server
 password via the web interface, without getting access to settings like
-maximum user count and allowed bandwith
+maximum user count and allowed bandwidth
   * Does not require access to Murmur's database
   * Setting users' textures
   * Munin plugin that graphs the user count on each server instance
diff -Nru mumble-django-2.7/debian/po/ja.po mumble-django-2.7/debian/po/ja.po
--- mumble-django-2.7/debian/po/ja.po   1970-01-01 01:00:00.0 +0100
+++ mumble-django-2.7/debian/po/ja.po   2012-10-31 22:14:45.0 +0100
@@ -0,0 +1,45 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# victory , 2012.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: mumble-django\n"
+"Report-Msgid-Bugs-To: mumble-dja...@packages.debian.org\n"
+"POT-Creation-Date: 2012-08-26 15:38+\n"
+"PO-Revision-Date: 2012-08-27 00:38+0900\n"
+"Last-Translator: victory \n"
+"Language-Team: Japanese \n"
+"Language: ja\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. Type: note
+#. Description
+#: ../mumble-django.templates:1001
+msgid "In order to complete the installation of Mumble-Django, you need to"
+msgstr "Mumble-Django のインストールを完了させるためには、"
+
+#. Type: note
+#. Description
+#: ../mumble-django.templates:1001
+msgid "run the following command:"
+msgstr "以下のコマンドを実行する必要があります:"
+
+#. Type: note
+#. Description
+#: ../mumble-django.templates:1001
+msgid "  mumble-django-configure"
+msgstr "  mumble-django-configure"
+
+#. Type: note
+#. Description
+#: ../mumble-django.templates:1001
+msgid ""
+"Please refer to /usr/share/doc/mumble-django/README.Debian for more "
+"information."
+msgstr ""
+"さらなる情報については、/usr/share/doc/mumble-django/README.Debian を参照して"
+"ください。"


unblock mumble-django/2.7-7

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

Kernel: Linux 3.6-3.slh.3-aptosid-amd64 (SMP w/4 CPU cores; PREEMPT)
Locale: LANG=en_US.utf8, LC_CTYPE=en_US.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash


--
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20121031214523.24946.12161.reportbug@localhost



Bug#691971: unblock: mh-e/8.3-1.1

2012-10-31 Thread Sébastien Villemot

Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock
X-Debbugs-CC: m...@packages.debian.org

Please unblock package mh-e. The version in sid fixes RC bug #689806.
The debdiff is attached.

unblock mh-e/8.3-1.1

Thanks,
diff -Nru mh-e-8.3/debian/changelog mh-e-8.3/debian/changelog
--- mh-e-8.3/debian/changelog	2011-11-11 17:10:10.0 +0100
+++ mh-e-8.3/debian/changelog	2012-10-21 16:15:05.0 +0200
@@ -1,3 +1,13 @@
+mh-e (8.3-1.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * No longer create /root/.gnupg during installation of the package. This
+is achieved by binding epg-gpg-home-directory to a temporary directory
+during bytecode compilation (implementation in
+debian/emacsen-install). (Closes: #689806)
+
+ -- Sébastien Villemot   Sun, 21 Oct 2012 16:13:53 +0200
+
 mh-e (8.3-1) unstable; urgency=low
 
   * New upstream release.
diff -Nru mh-e-8.3/debian/emacsen-install mh-e-8.3/debian/emacsen-install
--- mh-e-8.3/debian/emacsen-install	2007-08-14 02:57:11.0 +0200
+++ mh-e-8.3/debian/emacsen-install	2012-10-21 16:13:17.0 +0200
@@ -59,12 +59,17 @@
 done
 cd ${ELCDIR}
 
+# Prevent epg from manipulating /root/.gnupg (#689806)
+TMPGNUPGHOME=`mktemp -d --tmpdir gnupg.XX`
+
 cat << EOF > path.el
 (setq load-path (append '("." "/usr/share/emacs/site-lisp/etc/images/mh-e")
 load-path)
   byte-compile-warnings nil)
+(setq epg-gpg-home-directory "${TMPGNUPGHOME}")
 EOF
 ${FLAVOR} ${FLAGS} ${BYTECOMPILEFILES}
 rm -f path.el
+rm -rf ${TMPGNUPGHOME}
 
 exit 0


-- 
 .''`.Sébastien Villemot
: :' :Debian Developer
`. `' http://www.dynare.org/sebastien
  `-  GPG Key: 4096R/381A7594


pgpv7lQ4QCGcs.pgp
Description: PGP signature


Re: Is #685251 fixed in quantum_2012.1-6?

2012-10-31 Thread Ola Lundqvist
Hi Thomas

No that upload does not fix the bug you refer to. If you read
the mail thread for that bug report I have sent a question
about this one, but I never got an answer.

I see three options for this one:
1) Move whole quantum package (and all packages that depends on it)
 to the contrib section.
2) No longer provide quantum-plugin-ryu and
 quantum-plugin-ryu-agent.
3) Consider this to be an exceptional case, not to bother about.
 At least not now (mark the bug as important instead of grave).
 Maybe that is acceptable, but I can not judge that, really.

I suggest alternative 2.

What do you think?

// Ola

On Thu, Nov 01, 2012 at 02:53:47AM +0800, Thomas Goirand wrote:
> Hi,
> 
> I can see that Loic Dachary uploaded 2012.1-6 in SID, and the
> changelog contains:
> 
>   * Moved plugin files to the respective plugin package.
> 
> So if I'm not mistaking, this fixes the issue. Loic or Ola, can you
> confirm? If so, then the changelog should have closed the bug. If
> not, any idea how to fix?
> 
> I'm CC-ing the debian-release, since this bug has already been
> spotted by the release team and could be a reason for removal in
> their view.
> 
> Cheers,
> 
> Thomas
> 

-- 
 --- Inguza Technology AB --- MSc in Information Technology 
/  o...@inguza.comAnnebergsslingan 37\
|  o...@debian.org   654 65 KARLSTAD|
|  http://inguza.com/Mobile: +46 (0)70-332 1551 |
\  gpg/f.p.: 7090 A92B 18FE 7994 0C36 4FE4 18A1 B1CF 0FE5 3DD9  /
 ---


-- 
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20121031190939.gb31...@inguza.net



Bug#691969: unblock: emacs-goodies-el/35.2+nmu1

2012-10-31 Thread Sébastien Villemot

Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock
X-Debbugs-CC: emacs-goodies...@packages.debian.org

Please unblock package emacs-goodies-el. The version in sid fixes RC bug
#689807. The debdiff is attached.

unblock emacs-goodies-el/35.2+nmu1

Thanks,
diff -Nru emacs-goodies-el-35.2/debian/changelog emacs-goodies-el-35.2+nmu1/debian/changelog
--- emacs-goodies-el-35.2/debian/changelog	2011-10-27 19:30:01.0 +0200
+++ emacs-goodies-el-35.2+nmu1/debian/changelog	2012-10-21 13:17:55.0 +0200
@@ -1,3 +1,13 @@
+emacs-goodies-el (35.2+nmu1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * No longer create /root/.gnupg during installation of gnus-bonus-el.
+This is achieved by binding epg-gpg-home-directory to a temporary
+directory during bytecode compilation (implementation in
+debian/emacsen-install.template). (Closes: #689807)
+
+ -- Sébastien Villemot   Sun, 21 Oct 2012 11:30:47 +0200
+
 emacs-goodies-el (35.2) unstable; urgency=low
 
   [ Roland Mas ]
diff -Nru emacs-goodies-el-35.2/debian/emacsen-install.template emacs-goodies-el-35.2+nmu1/debian/emacsen-install.template
--- emacs-goodies-el-35.2/debian/emacsen-install.template	2010-01-07 04:24:14.0 +0100
+++ emacs-goodies-el-35.2+nmu1/debian/emacsen-install.template	2012-10-21 11:45:05.0 +0200
@@ -101,10 +101,22 @@
 EOF
 fi
 
+# Prevent epg from manipulating /root/.gnupg (#689807)
+if [ ${PACKAGE} = gnus-bonus-el ]; then
+	TMPGNUPGHOME=`mktemp -d --tmpdir gnupg.XX`
+	cat << EOF >> path.el
+(setq epg-gpg-home-directory "${TMPGNUPGHOME}")
+EOF
+fi
+
 echo ${FLAVOR} ${FLAGS} ${FILES} >> ${LOG}
 "${FLAVOR}" ${FLAGS} ${FILES} >> ${LOG} 2>&1
 egrep -s -e "While compiling|\*\*" ${LOG} || /bin/true
 echo install/${PACKAGE}: Deleting ${LOG}
 rm -f path.el ${LOG}
 
+if [ ${PACKAGE} = gnus-bonus-el ]; then
+	rm -rf ${TMPGNUPGHOME}
+fi
+
 exit 0
-- 
 .''`.Sébastien Villemot
: :' :Debian Developer
`. `' http://www.dynare.org/sebastien
  `-  GPG Key: 4096R/381A7594


pgpIQmQum953l.pgp
Description: PGP signature


Bug#691967: unblock: iodine/0.6.0~rc1-12

2012-10-31 Thread gregor herrmann
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Please unblock package iodine 0.6.0~rc1-12.

This version fixes #691959, a wrong charset declaration in the German
debconf file.

Complete debdiff:

#v+
diff --git a/debian/changelog b/debian/changelog
index 7ca2eb8..70c6ae6 100644
- --- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+iodine (0.6.0~rc1-12) unstable; urgency=low
+
+  [ David Prévot ]
+  * debian/po/de.po: Fix charset (Closes: #691959)
+
+ -- gregor herrmann   Wed, 31 Oct 2012 20:38:01 +0100
+
 iodine (0.6.0~rc1-11) unstable; urgency=low
 
   * New version of iodine-client-start (1.0.4), pulled from upstream git
diff --git a/debian/po/de.po b/debian/po/de.po
index ac4ca2a..a4fb18d 100644
- --- a/debian/po/de.po
+++ b/debian/po/de.po
@@ -12,7 +12,7 @@ msgstr ""
 "Language-Team: German \n"
 "Language: de\n"
 "MIME-Version: 1.0\n"
- -"Content-Type: text/plain; charset=ISO-8859-15\n"
+"Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 
 #. Type: boolean
#v-


unblock iodine/0.6.0~rc1-12


Thanks in advance,
gregor

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.12 (GNU/Linux)

iQIcBAEBCAAGBQJQkX+1AAoJELs6aAGGSaoGH8MP/jePEdIXNBNB9FaAov6blk3p
1VdWJ8mQh37s2Cd4jEcEf09dfSezB2hxzy/ZenO1B0Tm56mecVIZSJ8K7H9Q4P3z
NdcsHZiQzAXrVfmmPSa4499dnUGjyHY/9deUOwXcJEWKvRp15E4L7UYTbiW7SyEH
OR6mDQvxF8e3bvVUuKCT6RlbzGcSjjpwNS8wpKUaki7v1yhvf3q32FYQlm6setQb
sngQapTq95UnO/wxYVExuvijCHL+pYTsbHlNnVAD2SYxL6zHzz5/TWOJ35u0ZZNK
Hi6DJu4HmDAPi1IIgk05nY8FTGIiikOcWCIjN8fxttxurvvE4qmbTXJEk09h53If
foXHMFyXSwsoDSz+BcgRkZx+Sg7XecLsHiBum2Z8Ie4Ny/Rh5Si0Ukf3mFKrLQJs
Vj//tAm7utPN4jZFblgt9eQ4OOG/7Lr4lCxa0AfbVL2dArL4avQeM4O/eHvKX0rG
EYoTjNXHDlQwwuuL8V9uz0aNy/xyNuOLgQJM6uURDpIO2Nk3jmiUPCEQXFRiE+xk
GfYnzEHaETXFiiNMS7OQ2wukxhvmyQrArbLm+sx5aIU5kdYuJSzBjzl39LdCrlQ9
/LCSb55cMQdhMdy3ZBvrwqWpx0ioNqHlkh5Kk4I0EajwgMbzBFU0aaJz1BGvGv49
EDAj/ovSU9N/NYI8QGbI
=mvLr
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/20121031194453.2719.84136.report...@jadzia.comodo.priv.at



Bug#691185: pre-approval: perl/5.14.2-15

2012-10-31 Thread Niko Tyni
On Sat, Oct 27, 2012 at 07:52:17PM +0100, Adam D. Barratt wrote:
> On Mon, 2012-10-22 at 21:45 +0300, Niko Tyni wrote:
> > Upstream recently released 5.14.3, which is a bugfix only stable
> > update. We're assuming that importing this into wheezy is out of question
> > at this point, but please let us know if you'd be willing to entertain
> > that option. The upstream rules for stable updates are quite strict;
> > see the 'MAINTENANCE BRANCHES' section in perlpolicy(1) of the perl-doc
> > package for details.
> 
> In principle it doesn't sound entirely unreasonable, but I'd like a
> little more information as to the specific fixes included.

Hi Adam,

Dominic covered this nicely, but in case you want all the details:
I've put full debdiffs of a proposed 5.14.3-1 available on
 http://people.debian.org/~ntyni/perl/perl_5.14.2-14_5.14.3-1.debdiff
 http://people.debian.org/~ntyni/perl/perl_5.14.2-15_5.14.3-1.debdiff

One is against the current sid/wheezy version (5.14.2-14) and the
other against the acked 5.14.2-15. There's some unfortunate churn in
debian/patches due to the tool we're using to prepare them (git-dpm),
sorry about that.

These are based on the ntyni/debian-5.14.3 branch of
 git://anonscm.debian.org/perl/perl.git

Hope this helps a bit.

> +perl (5.14.2-15) UNRELEASED; urgency=low

> These look fine; thanks.

Thank you for the review!

As things are, I'm not proceeding with this 5.14.2-15 until you've
reached a decision about 5.14.3.

However, please let us know if you'd like to decouple the issues and
we'll get -15 in sid right away (read: "probably next weekend" :)
-- 
Niko Tyni   nt...@debian.org


-- 
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20121031192059.GA8729@madeleine.local.invalid



Is #685251 fixed in quantum_2012.1-6?

2012-10-31 Thread Thomas Goirand

Hi,

I can see that Loic Dachary uploaded 2012.1-6 in SID, and the changelog 
contains:


  * Moved plugin files to the respective plugin package.

So if I'm not mistaking, this fixes the issue. Loic or Ola, can you 
confirm? If so, then the changelog should have closed the bug. If not, 
any idea how to fix?


I'm CC-ing the debian-release, since this bug has already been spotted 
by the release team and could be a reason for removal in their view.


Cheers,

Thomas


--
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/509173bb.3010...@debian.org



Bug#691938: marked as done (release.debian.org: unblock: parcimonie/0.7.1-1)

2012-10-31 Thread Debian Bug Tracking System
Your message dated Wed, 31 Oct 2012 16:52:11 +0100
with message-id <5091492b.50...@thykier.net>
and subject line Re: Bug#691938: release.debian.org: unblock: parcimonie/0.7.1-1
has caused the Debian Bug report #691938,
regarding release.debian.org: unblock: parcimonie/0.7.1-1
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.)


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

Hi,

Please unblock package parcimonie.

After being alerted of an important bug in parcimonie (#690577), with
my upstream developer hat on, I have put a bugfix-only release out.
It has been living just fine in unstable for 10 days.

Changes are:

  * 4 lines of code were changed, only to fix two bugs (#690577 and
another one that was hiding behind the former) that make the
parcimonie applet currently unusable in testing. These bugs are
not RC only because the applet is not shipped in a separate binary
package, and the CLI daemon works fine.

  * Some boring automatic boilerplate changes, such as VERSION
variable in every module.

debdiff from testing to unstable is attached.

(FWIW, parcimonie is a leaf package with few users according to popcon
=> low risk.)

Cheers!
--
  intrigeri
  | GnuPG key @ https://gaffer.ptitcanardnoir.org/intrigeri/intrigeri.asc
  | OTR fingerprint @ https://gaffer.ptitcanardnoir.org/intrigeri/otr.asc

diff -Nru parcimonie-0.7/bin/parcimonie parcimonie-0.7.1/bin/parcimonie
--- parcimonie-0.7/bin/parcimonie	2012-06-23 23:25:38.0 +0200
+++ parcimonie-0.7.1/bin/parcimonie	2012-10-20 12:53:02.0 +0200
@@ -6,7 +6,7 @@
 
 =head1 VERSION
 
-Version 0.7
+Version 0.7.1
 
 =head1 SYNOPSIS
 
@@ -134,7 +134,7 @@
 use strict;
 use warnings;
 
-our $VERSION = '0.7';
+our $VERSION = '0.7.1';
 
 use FindBin;
 use lib "$FindBin::Bin/../lib";
diff -Nru parcimonie-0.7/bin/parcimonie-applet parcimonie-0.7.1/bin/parcimonie-applet
--- parcimonie-0.7/bin/parcimonie-applet	2012-06-23 23:25:38.0 +0200
+++ parcimonie-0.7.1/bin/parcimonie-applet	2012-10-20 12:53:02.0 +0200
@@ -10,7 +10,7 @@
 use warnings;
 use 5.10.0;
 
-our $VERSION = '0.7'; # VERSION
+our $VERSION = '0.7.1'; # VERSION
 
 use FindBin;
 use lib "$FindBin::Bin/../lib";
diff -Nru parcimonie-0.7/Build.PL parcimonie-0.7.1/Build.PL
--- parcimonie-0.7/Build.PL	2012-06-23 23:25:38.0 +0200
+++ parcimonie-0.7.1/Build.PL	2012-10-20 12:53:02.0 +0200
@@ -29,7 +29,7 @@
 "intrigeri "
   ],
   "dist_name" => "App-Parcimonie",
-  "dist_version" => "0.7",
+  "dist_version" => "0.7.1",
   "license" => "perl",
   "module_name" => "App::Parcimonie",
   "recommends" => {},
diff -Nru parcimonie-0.7/Changes parcimonie-0.7.1/Changes
--- parcimonie-0.7/Changes	2012-06-23 23:25:38.0 +0200
+++ parcimonie-0.7.1/Changes	2012-10-20 12:53:02.0 +0200
@@ -1,5 +1,13 @@
 Revision history for App-Parcimonie
 
+0.7.1   20121020
+Fix critical applet bugs:
+  - Use correct method name to set tooltip on status icon.
+Thanks to Vagrant Cascadian for reporting it
+as Debian bug #690577.
+  - Pass the -1 placeholder for text length when inserting
+into a TextBuffer.
+
 0.7 20120623
 Migrate from Gtk2 to Gtk3:
   - Remove obsolete library import.
diff -Nru parcimonie-0.7/debian/changelog parcimonie-0.7.1/debian/changelog
--- parcimonie-0.7/debian/changelog	2012-06-23 23:33:08.0 +0200
+++ parcimonie-0.7.1/debian/changelog	2012-10-20 13:04:14.0 +0200
@@ -1,3 +1,12 @@
+parcimonie (0.7.1-1) unstable; urgency=low
+
+  * Imported Upstream version 0.7.1, that fixes critical bugs in the applet:
+- Use correct method name to set tooltip on status icon.
+  Thanks to Vagrant Cascadian for reporting it. (Closes: #690577)
+- Pass the -1 placeholder for text length when inserting into a TextBuffer.
+
+ -- intrigeri   Sat, 20 Oct 2012 13:01:52 +0200
+
 parcimonie (0.7-1) unstable; urgency=low
 
   * Imported Upstream version 0.7
diff -Nru parcimonie-0.7/lib/App/Parcimonie/Applet.pm parcimonie-0.7.1/lib/App/Parcimonie/Applet.pm
--- parcimonie-0.7/lib/App/Parcimonie/Applet.pm	2012-06-23 23:25:38.0 +0200
+++ parcimonie-0.7.1/lib/App/Parcimonie/Applet.pm	2012-10-20 12:53:02.0 +0200
@@ -10,7 +10,7 @@
 use Any::Moose;
 with 'App::Parcimonie::Role::HasEncoding';
 
-our $VERSION = '0.7'; # VERSION
+our $VERSI

Bug#686387: unblock: upstart/1.5-1, mountall/2.39, ifupdown/0.7.3, udev/175-8 sysvinit/2.88dsf-33

2012-10-31 Thread intrigeri
Hi,

Julien Cristau wrote (19 Sep 2012 17:42:01 GMT) :
> Looks sane to me, other than the init_is_upstart inlining in the
> udev init script I mentioned on IRC.

If I understand this sentence right, this is a blocker.

Gentle ping, then: Steve, what's happening on this front?

Cheers,
--
  intrigeri
  | GnuPG key @ https://gaffer.ptitcanardnoir.org/intrigeri/intrigeri.asc
  | OTR fingerprint @ https://gaffer.ptitcanardnoir.org/intrigeri/otr.asc


-- 
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/85fw4umz1k@boum.org



Bug#686547: unblock: calibre/0.8.64+dfsg-1

2012-10-31 Thread intrigeri
Hi,

Julien Cristau wrote (30 Sep 2012 13:10:55 GMT) :
> On Sat, Sep 15, 2012 at 20:34:45 +0200, Arno Töll wrote:

>> I didn't upload the update, because of the bugs mentioned in this bug
>> report. There are basically two alternatives as it looks:
>> 
>> 1) Do a t-p-u for calibre fixing #653328 only. That's what I did, find a
>> debdiff attached below (note, however, it needs a new original tarball).
>> The full source and binary packages are available on [1]. Feel free to
>> upload, or tell me to upload it if you want to go that track.
>> 
>> 2) Unblock 0.8.64+dfsg-1 which adds an entirely new upstream release
>> which fixes the problems outlined in this bug, and ships
>> quick_start.epub with liberated license terms - so no update is needed
>> beyond umblocking calibre
>> 
> There's a third:

> 3) upload to tpu a fix for whatever issues are serious enough, not just
> #653328.

Apart of #653328, only bugs of severity normal or minor were fixed
since 0.8.51+dfsg-1.

However, the fixes for #678686 (typo in package description) and
#674838 (fonts-liberation path changed and the symbolic link is
broken) look trivial, harmless, and useful enough to be worth
including in Wheezy at this point.
=> Julien's third alternative makes sense to me.

Cheers,
--
  intrigeri
  | GnuPG key @ https://gaffer.ptitcanardnoir.org/intrigeri/intrigeri.asc
  | OTR fingerprint @ https://gaffer.ptitcanardnoir.org/intrigeri/otr.asc


--
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/85objimz8s@boum.org



Bug#691938: release.debian.org: unblock: parcimonie/0.7.1-1

2012-10-31 Thread intrigeri
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock
X-Debbugs-Cc: vagr...@debian.org

Hi,

Please unblock package parcimonie.

After being alerted of an important bug in parcimonie (#690577), with
my upstream developer hat on, I have put a bugfix-only release out.
It has been living just fine in unstable for 10 days.

Changes are:

  * 4 lines of code were changed, only to fix two bugs (#690577 and
another one that was hiding behind the former) that make the
parcimonie applet currently unusable in testing. These bugs are
not RC only because the applet is not shipped in a separate binary
package, and the CLI daemon works fine.

  * Some boring automatic boilerplate changes, such as VERSION
variable in every module.

debdiff from testing to unstable is attached.

(FWIW, parcimonie is a leaf package with few users according to popcon
=> low risk.)

Cheers!
--
  intrigeri
  | GnuPG key @ https://gaffer.ptitcanardnoir.org/intrigeri/intrigeri.asc
  | OTR fingerprint @ https://gaffer.ptitcanardnoir.org/intrigeri/otr.asc

diff -Nru parcimonie-0.7/bin/parcimonie parcimonie-0.7.1/bin/parcimonie
--- parcimonie-0.7/bin/parcimonie	2012-06-23 23:25:38.0 +0200
+++ parcimonie-0.7.1/bin/parcimonie	2012-10-20 12:53:02.0 +0200
@@ -6,7 +6,7 @@
 
 =head1 VERSION
 
-Version 0.7
+Version 0.7.1
 
 =head1 SYNOPSIS
 
@@ -134,7 +134,7 @@
 use strict;
 use warnings;
 
-our $VERSION = '0.7';
+our $VERSION = '0.7.1';
 
 use FindBin;
 use lib "$FindBin::Bin/../lib";
diff -Nru parcimonie-0.7/bin/parcimonie-applet parcimonie-0.7.1/bin/parcimonie-applet
--- parcimonie-0.7/bin/parcimonie-applet	2012-06-23 23:25:38.0 +0200
+++ parcimonie-0.7.1/bin/parcimonie-applet	2012-10-20 12:53:02.0 +0200
@@ -10,7 +10,7 @@
 use warnings;
 use 5.10.0;
 
-our $VERSION = '0.7'; # VERSION
+our $VERSION = '0.7.1'; # VERSION
 
 use FindBin;
 use lib "$FindBin::Bin/../lib";
diff -Nru parcimonie-0.7/Build.PL parcimonie-0.7.1/Build.PL
--- parcimonie-0.7/Build.PL	2012-06-23 23:25:38.0 +0200
+++ parcimonie-0.7.1/Build.PL	2012-10-20 12:53:02.0 +0200
@@ -29,7 +29,7 @@
 "intrigeri "
   ],
   "dist_name" => "App-Parcimonie",
-  "dist_version" => "0.7",
+  "dist_version" => "0.7.1",
   "license" => "perl",
   "module_name" => "App::Parcimonie",
   "recommends" => {},
diff -Nru parcimonie-0.7/Changes parcimonie-0.7.1/Changes
--- parcimonie-0.7/Changes	2012-06-23 23:25:38.0 +0200
+++ parcimonie-0.7.1/Changes	2012-10-20 12:53:02.0 +0200
@@ -1,5 +1,13 @@
 Revision history for App-Parcimonie
 
+0.7.1   20121020
+Fix critical applet bugs:
+  - Use correct method name to set tooltip on status icon.
+Thanks to Vagrant Cascadian for reporting it
+as Debian bug #690577.
+  - Pass the -1 placeholder for text length when inserting
+into a TextBuffer.
+
 0.7 20120623
 Migrate from Gtk2 to Gtk3:
   - Remove obsolete library import.
diff -Nru parcimonie-0.7/debian/changelog parcimonie-0.7.1/debian/changelog
--- parcimonie-0.7/debian/changelog	2012-06-23 23:33:08.0 +0200
+++ parcimonie-0.7.1/debian/changelog	2012-10-20 13:04:14.0 +0200
@@ -1,3 +1,12 @@
+parcimonie (0.7.1-1) unstable; urgency=low
+
+  * Imported Upstream version 0.7.1, that fixes critical bugs in the applet:
+- Use correct method name to set tooltip on status icon.
+  Thanks to Vagrant Cascadian for reporting it. (Closes: #690577)
+- Pass the -1 placeholder for text length when inserting into a TextBuffer.
+
+ -- intrigeri   Sat, 20 Oct 2012 13:01:52 +0200
+
 parcimonie (0.7-1) unstable; urgency=low
 
   * Imported Upstream version 0.7
diff -Nru parcimonie-0.7/lib/App/Parcimonie/Applet.pm parcimonie-0.7.1/lib/App/Parcimonie/Applet.pm
--- parcimonie-0.7/lib/App/Parcimonie/Applet.pm	2012-06-23 23:25:38.0 +0200
+++ parcimonie-0.7.1/lib/App/Parcimonie/Applet.pm	2012-10-20 12:53:02.0 +0200
@@ -10,7 +10,7 @@
 use Any::Moose;
 with 'App::Parcimonie::Role::HasEncoding';
 
-our $VERSION = '0.7'; # VERSION
+our $VERSION = '0.7.1'; # VERSION
 
 use 5.10.0;
 use namespace::autoclean;
@@ -248,7 +248,7 @@
 my $self = shift;
 my $mesg = shift;
 my $buffer = $self->logbuffer;
-$buffer->insert($buffer->get_end_iter, $mesg . "\n");
+$buffer->insert($buffer->get_end_iter, $mesg . "\n", -1);
 }
 
 sub signal_fetch_begin_cb {
@@ -261,7 +261,7 @@
 );
 $self->debug($mesg);
 $self->statusicon->set_from_stock('gtk-refresh');
-$self->statusicon->set_tooltip($mesg);
+$self->statusicon->set_tooltip_text($mesg);
 $self->append_mesg($mesg);
 $self->statusicon->set_visible(TRUE);
 }
@@ -292,7 +292,7 @@
 
 $self->debug($mesg);
 $self->statusicon->set_from_stock($new_pixmap);
-$self->statusicon->set_tooltip($mesg);
+$self->statusicon->set_tooltip_text($mesg);
 $self->append_mesg($mesg);
 $self->statusicon->set_visible(

Bug#691934: unblock: w3c-linkchecker/4.81-7

2012-10-31 Thread Salvatore Bonaccorso
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Hi Release-Team

Please unblock package w3c-linkchecker

The package adds the Japanese translation, see #691776.

Attached is the debdiff.

unblock w3c-linkchecker/4.81-7

Regards,
Salvatore

- -- System Information:
Debian Release: wheezy/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.32-5-amd64 (SMP w/8 CPU cores)
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)
Shell: /bin/sh linked to /bin/dash

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.12 (GNU/Linux)

iQIcBAEBCgAGBQJQkTyPAAoJEHidbwV/2GP+YgoQAJ3TvfTAKcpyXIzLVxgyPMfz
00qcJbEzQYYkoLZuS4EpAVM4sLfQlmtG3XYrUuXsfdmeZs4tGHYDknML12+cW3ud
pk+GAj71x/UkH/a03tBLCQ05Swnh1eJxgFiNDu2/GELrNk8m+A9RpxUN+1zZ3Bs0
Gc4HS7o8pWogPpuF+gV0B+d3WCEvECY0A+BtfbecUa/z4m5DRx3/wn35VyaGv8Jz
roBnnnVZioquy7h2K4Y1u0jtYPf3YVKBfOmOcGHt0Ui0h+7kWTGlQztOzUwVk0au
uOjJYovdozH/ytTnSz3qXrIUbLINJgzL/FmNIAnE1j0thT1BivLFNMp5d7xi64mi
L9tPRwwC2VKseNQsO5ITuLPAnVBRcsHVb9cto5QCxyEy8BrNjjcAxSDtZazZhJz9
cYCJeTztBakwvhiRBdspw2vO+4rSxkacLuHvo9Q5ilFX2H3fYa+VuixJniFbp5H6
jl9vaAQjJLxYPyXbccU1UAbO5S2phjRY1/gYxJaZLJwv/KEv4RLOcSKRGP7ECoMD
bJCx1+0XZjysRSCwuO6bXxc5WH5SMcIY0eNxE2aGRFfyy5FHyJdmFsN1XTO4W/2h
S6YjeNr9KEwsgQkCz+1UdUQx5cr66O0nPV/z6OUboZiLtCm9WHoy9wMqy5dtIgjb
T7JJMjNT/71LoRXR22xh
=LY2S
-END PGP SIGNATURE-
Base version: w3c-linkchecker_4.81-6 from testing
Target version: w3c-linkchecker_4.81-7 from unstable

No hints in place.

 changelog |9 +
 copyright |4 
 po/ja.po  |   51 +++
 3 files changed, 64 insertions(+)

diff -Nru w3c-linkchecker-4.81/debian/changelog w3c-linkchecker-4.81/debian/changelog
--- w3c-linkchecker-4.81/debian/changelog	2012-10-02 16:39:40.0 +
+++ w3c-linkchecker-4.81/debian/changelog	2012-10-31 12:20:47.0 +
@@ -1,3 +1,12 @@
+w3c-linkchecker (4.81-7) unstable; urgency=low
+
+  * Team upload.
+  * Added Japanese translation.
+Thanks to victory  (Closes: #691776)
+  * Add copyright information for japanese translation
+
+ -- Salvatore Bonaccorso   Wed, 31 Oct 2012 13:20:01 +0100
+
 w3c-linkchecker (4.81-6) unstable; urgency=low
 
   * Team upload.
diff -Nru w3c-linkchecker-4.81/debian/copyright w3c-linkchecker-4.81/debian/copyright
--- w3c-linkchecker-4.81/debian/copyright	2012-10-02 16:39:40.0 +
+++ w3c-linkchecker-4.81/debian/copyright	2012-10-31 12:20:47.0 +
@@ -68,6 +68,10 @@
 Copyright: 2011-2012, Michal Simunek 
 License: Artistic or GPL-1+
 
+Files: debian/po/ja.po
+Copyright: 2012, victory 
+License: Artistic or GPL-1+
+
 License: Artistic
  This program is free software; you can redistribute it and/or modify
  it under the terms of the Artistic License, which comes with Perl.
diff -Nru w3c-linkchecker-4.81/debian/po/ja.po w3c-linkchecker-4.81/debian/po/ja.po
--- w3c-linkchecker-4.81/debian/po/ja.po	1970-01-01 00:00:00.0 +
+++ w3c-linkchecker-4.81/debian/po/ja.po	2012-10-31 12:20:47.0 +
@@ -0,0 +1,51 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# victory , 2012.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: w3c-linkchecker\n"
+"Report-Msgid-Bugs-To: w3c-linkchec...@packages.debian.org\n"
+"POT-Creation-Date: 2012-10-03 14:36+\n"
+"PO-Revision-Date: 2012-10-03 23:36+0900\n"
+"Last-Translator: victory \n"
+"Language-Team: Japanese \n"
+"Language: ja\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. Type: string
+#. Description
+#: ../templates:1001
+msgid "Host name for W3C LinkChecker service:"
+msgstr "W3C LinkChecker サービスのホスト名:"
+
+#. Type: string
+#. Description
+#: ../templates:1001
+msgid ""
+"Please specify the fully qualified domain name that the w3c-linkchecker "
+"service should be remotely accessible on, if any. By default it will only be "
+"available on localhost."
+msgstr ""
+"リモートから w3c-linkchecker サービスにアクセス可能となる完全修飾ドメイン名が"
+"あれば指定してください。デフォルトではローカルホストでのみ利用可能です。"
+
+#. Type: boolean
+#. Description
+#: ../templates:2001
+msgid "Allow private IP addresses?"
+msgstr "プライベート IP アドレスを許可しますか?"
+
+#. Type: boolean
+#. Description
+#: ../templates:2001
+msgid ""
+"Please specify whether w3c-linkchecker should permit validation of websites "
+"on private networks. By default it will only permit public IP addresses."
+msgstr ""
+"w3c-linkchecker にプライベートネットワークにあるウェブサイトの検証を許可するか"
+"どうかを指定してください。デフォルトではパブリック IP アドレスだけを許可します。"
+


Bison: Downgrade to version 2.4 until wheezy is released?

2012-10-31 Thread Felipe Sateler
Dear release team,

I'd like to point you to this bug in bison. Certain new features of
Bison 2.6 have caused incompatibilities with 2.4. This has resulted in
at least one package failing to build.

I have set the severity to serious, because it causes other packages
to FTBFS. Please advise with how to proceed for packages that
build-depend on bison (eg, see #689988).


Saludos,
Felipe Sateler


-- 
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/CAAfdZj-rsmJRpe46nTijhg8VcByf6jR6=zhntrtgpzc7t_7...@mail.gmail.com



Bug#687492: unblock: aptitude/0.6.8.2-1 (pre-approve)

2012-10-31 Thread David Kalnischkies
On Wed, Oct 31, 2012 at 8:51 AM, Daniel Hartwig  wrote:
> On 31 October 2012 14:44, Adam D. Barratt  wrote:
>> On Thu, 2012-09-13 at 17:45 +0800, Daniel Hartwig wrote:
>>> I have also attached another patch which is entirely optional, but of
>>> notable value to end users and relatively non-invasive.  It brings in
>>> support for APT::Changelogs::Server which apt-cache and others have
>>> been using for some time.  Previously we hardcoded the default value
>>> of that.  Please also consider this patch and give it an ACK for
>>> inclusion if this is ok.
>>
>> +  string server = aptcfg->Find("APT::Changelogs::Server",
>> +   
>> "http://packages.debian.org/changelogs";);
>>
>> I assume it's not possible to determine the default value being used by
>> apt here?
>
> Correct.
>
> Attached is patch for apt which would change that.  CC to deity@
> for maybe comment.

I guess we can apply the patch to APT, but I still wouldn't change the
aptitude code here to avoid aptitude depending on a higher libapt-pkg
version (or alternatively breaking aptitude from libapt-pkg) just for this.

If we set it in apt-pkg/init.cc it will overrule whatever aptitude provides as
a default anyway (and I hope in general the URI isn't changing that often …).
The really interesting point Daniel has already said is that derivatives can
override this option with a configuration file which e.g. Ubuntu does already.
(They don't ship [complete?] changelog files anymore as far as I know,
 so the command is a bit more useful for them than it is for us here)


Best regards

David Kalnischkies

P.S.: Daniel, I noticed that you haven't CC the unblock requests to the
aptitude-devel@ list, you might want to do that so it is easier to follow
what is happening in aptitude-land. ;)


--
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/caaz6_fdv1894v-v4omchud8woc9mkh3zzlhhgj39cgi34p2...@mail.gmail.com



Bug#691781: marked as done (unblock: kfreebsd-9/9.0-7)

2012-10-31 Thread Debian Bug Tracking System
Your message dated Wed, 31 Oct 2012 12:33:59 +
with message-id <58429c30a10263c1520c922faa11b...@mail.adsl.funky-badger.org>
and subject line Re: Bug#691781: unblock: kfreebsd-9/9.0-7
has caused the Debian Bug report #691781,
regarding unblock: kfreebsd-9/9.0-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.)


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

Please unblock package kfreebsd-9

<<< debian/changelog
   * Pick SVN 239447 from FreeBSD 9-STABLE to fix a remote DoS
 vulnerability of SCTP (CVE-2012-3549) (Closes: #686962)
>>>

unblock kfreebsd-9/9.0-7

-- System Information:
Debian Release: 6.0.6
  APT prefers stable
  APT policy: (990, 'stable'), (500, 'proposed-updates'), (500, 'unstable'), 
(1, 'experimental')
Architecture: mipsel (mips64)

Kernel: Linux 3.2.0-0.bpo.2-loongson-2f
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
--- End Message ---
--- Begin Message ---

On 31.10.2012 11:27, Cyril Brulebois wrote:

Adam D. Barratt  (30/10/2012):

Control: tags -1 - moreinfo
Control: tags -1 + confirmed d-i

On Mon, 2012-10-29 at 18:57 +, Adam D. Barratt wrote:
> On Mon, 2012-10-29 at 17:53 +0100, Christoph Egger wrote:
> > Please unblock package kfreebsd-9
> >
> > <<< debian/changelog
> >* Pick SVN 239447 from FreeBSD 9-STABLE to fix a remote DoS
> >  vulnerability of SCTP (CVE-2012-3549) (Closes: #686962)
>
> It also appears to drop all of the udebs?

-8 was uploaded fixing that. I'm happy to unblock it, but it'll need 
a

d-i ack.


d-i ack.


In which case, unblocked; thanks.

Regards,

Adam--- End Message ---


Bug#691781: unblock: kfreebsd-9/9.0-7

2012-10-31 Thread Cyril Brulebois
Adam D. Barratt  (30/10/2012):
> Control: tags -1 - moreinfo
> Control: tags -1 + confirmed d-i
> 
> On Mon, 2012-10-29 at 18:57 +, Adam D. Barratt wrote:
> > On Mon, 2012-10-29 at 17:53 +0100, Christoph Egger wrote:
> > > Please unblock package kfreebsd-9
> > > 
> > > <<< debian/changelog
> > >* Pick SVN 239447 from FreeBSD 9-STABLE to fix a remote DoS
> > >  vulnerability of SCTP (CVE-2012-3549) (Closes: #686962)
> > 
> > It also appears to drop all of the udebs?
> 
> -8 was uploaded fixing that. I'm happy to unblock it, but it'll need a
> d-i ack.

d-i ack.

Mraw,
KiBi.


signature.asc
Description: Digital signature


Bug#691914: marked as done (unblock: vim-addon-manager/0.5.2)

2012-10-31 Thread Debian Bug Tracking System
Your message dated Wed, 31 Oct 2012 11:35:09 +0100
with message-id <5090fedd.50...@thykier.net>
and subject line Re: Bug#691914: unblock: vim-addon-manager/0.5.2
has caused the Debian Bug report #691914,
regarding unblock: vim-addon-manager/0.5.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.)


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

Please unblock package vim-addon-manager

The version in unstable fixes one imporant bug (#681870), and also a
regression with the provided bash completion script. I think it is
important to get these fixes in wheezy.

You can find the debdiff between this version and the one in wheezy
attached to this email.

unblock vim-addon-manager/0.5.2

-- System Information:
Debian Release: wheezy/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 3.2.0-4-amd64 (SMP w/4 CPU cores)
Locale: LANG=pt_BR.utf8, LC_CTYPE=pt_BR.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

-- 
Antonio Terceiro 
diff -Nru vim-addon-manager-0.5.0/debian/changelog 
vim-addon-manager-0.5.2/debian/changelog
--- vim-addon-manager-0.5.0/debian/changelog2012-06-05 00:10:40.0 
+0200
+++ vim-addon-manager-0.5.2/debian/changelog2012-10-30 18:52:14.0 
+0100
@@ -1,3 +1,21 @@
+vim-addon-manager (0.5.2) unstable; urgency=low
+
+  * New upload to remove `tags` file accidentally included in the source
+package.
+
+ -- Antonio Terceiro   Tue, 30 Oct 2012 18:51:40 +0100
+
+vim-addon-manager (0.5.1) unstable; urgency=low
+
+  [ James McCoy ]
+  * Fix calls to override_file and logger.info.  (Closes: #681870)
+
+  [ Antonio Terceiro ]
+  * Fix regression that caused bash completion file to not be installed.
+  * Fix bash completion function to work with alternative program names
+
+ -- Antonio Terceiro   Tue, 30 Oct 2012 16:39:20 +0100
+
 vim-addon-manager (0.5.0) unstable; urgency=low
 
   * Addons now can now use a new layout: instead of having its files symlinked
diff -Nru vim-addon-manager-0.5.0/debian/gbp.conf 
vim-addon-manager-0.5.2/debian/gbp.conf
--- vim-addon-manager-0.5.0/debian/gbp.conf 1970-01-01 01:00:00.0 
+0100
+++ vim-addon-manager-0.5.2/debian/gbp.conf 2012-09-30 22:26:39.0 
+0200
@@ -0,0 +1,2 @@
+[DEFAULT]
+debian-tag = %(version)s
diff -Nru vim-addon-manager-0.5.0/debian/vim-addon-manager.install 
vim-addon-manager-0.5.2/debian/vim-addon-manager.install
--- vim-addon-manager-0.5.0/debian/vim-addon-manager.install1970-01-01 
01:00:00.0 +0100
+++ vim-addon-manager-0.5.2/debian/vim-addon-manager.install2012-09-30 
22:27:29.0 +0200
@@ -0,0 +1 @@
+etc/bash_completion.d/vim-addon-manager etc/bash_completion.d
diff -Nru vim-addon-manager-0.5.0/etc/bash_completion.d/vim-addon-manager 
vim-addon-manager-0.5.2/etc/bash_completion.d/vim-addon-manager
--- vim-addon-manager-0.5.0/etc/bash_completion.d/vim-addon-manager 
2012-04-09 03:13:18.0 +0200
+++ vim-addon-manager-0.5.2/etc/bash_completion.d/vim-addon-manager 
2012-10-30 11:42:19.0 +0100
@@ -19,7 +19,7 @@
   any_option=$(echo $options | sed -e 's/\s\+/|/g')
 
   # complete commands
-  if [[ "$prev" == 'vim-addons' ]]; then
+  if [[ "$prev" == 'vim-addons' ]] || [[ "$prev" == 'vim-addon-manager' ]] || 
[[ "$prev" == 'vam' ]]; then
 COMPREPLY=( $( compgen -W "$commands" -- $cur ) )
 return 0
   fi
diff -Nru vim-addon-manager-0.5.0/lib/vim/addon_manager.rb 
vim-addon-manager-0.5.2/lib/vim/addon_manager.rb
--- vim-addon-manager-0.5.0/lib/vim/addon_manager.rb2012-03-06 
12:31:57.0 +0100
+++ vim-addon-manager-0.5.2/lib/vim/addon_manager.rb2012-09-30 
22:26:39.0 +0200
@@ -96,7 +96,7 @@
 logger.info "enabling disabled addon '#{addon}'"
 lines.reject! {|line| addon.is_disabled_by? line}
   else
-logger "ignoring addon '#{addon}' which is enabled"
+logger.info "ignoring addon '#{addon}' which is enabled"
   end
 end
   end
@@ -122,7 +122,7 @@
 
 def map_override_lines
   override_lines = []
-  override_file = logger.override_file @target_dir
+  override_file = Vim::AddonManager.override_file @target_dir
   if File.exist? override_file
 File.open(override_file) do |file|
   override_lines += file.to_a


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

Bug#691914: unblock: vim-addon-manager/0.5.2

2012-10-31 Thread Antonio Terceiro
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock package vim-addon-manager

The version in unstable fixes one imporant bug (#681870), and also a
regression with the provided bash completion script. I think it is
important to get these fixes in wheezy.

You can find the debdiff between this version and the one in wheezy
attached to this email.

unblock vim-addon-manager/0.5.2

-- System Information:
Debian Release: wheezy/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 3.2.0-4-amd64 (SMP w/4 CPU cores)
Locale: LANG=pt_BR.utf8, LC_CTYPE=pt_BR.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

-- 
Antonio Terceiro 
diff -Nru vim-addon-manager-0.5.0/debian/changelog 
vim-addon-manager-0.5.2/debian/changelog
--- vim-addon-manager-0.5.0/debian/changelog2012-06-05 00:10:40.0 
+0200
+++ vim-addon-manager-0.5.2/debian/changelog2012-10-30 18:52:14.0 
+0100
@@ -1,3 +1,21 @@
+vim-addon-manager (0.5.2) unstable; urgency=low
+
+  * New upload to remove `tags` file accidentally included in the source
+package.
+
+ -- Antonio Terceiro   Tue, 30 Oct 2012 18:51:40 +0100
+
+vim-addon-manager (0.5.1) unstable; urgency=low
+
+  [ James McCoy ]
+  * Fix calls to override_file and logger.info.  (Closes: #681870)
+
+  [ Antonio Terceiro ]
+  * Fix regression that caused bash completion file to not be installed.
+  * Fix bash completion function to work with alternative program names
+
+ -- Antonio Terceiro   Tue, 30 Oct 2012 16:39:20 +0100
+
 vim-addon-manager (0.5.0) unstable; urgency=low
 
   * Addons now can now use a new layout: instead of having its files symlinked
diff -Nru vim-addon-manager-0.5.0/debian/gbp.conf 
vim-addon-manager-0.5.2/debian/gbp.conf
--- vim-addon-manager-0.5.0/debian/gbp.conf 1970-01-01 01:00:00.0 
+0100
+++ vim-addon-manager-0.5.2/debian/gbp.conf 2012-09-30 22:26:39.0 
+0200
@@ -0,0 +1,2 @@
+[DEFAULT]
+debian-tag = %(version)s
diff -Nru vim-addon-manager-0.5.0/debian/vim-addon-manager.install 
vim-addon-manager-0.5.2/debian/vim-addon-manager.install
--- vim-addon-manager-0.5.0/debian/vim-addon-manager.install1970-01-01 
01:00:00.0 +0100
+++ vim-addon-manager-0.5.2/debian/vim-addon-manager.install2012-09-30 
22:27:29.0 +0200
@@ -0,0 +1 @@
+etc/bash_completion.d/vim-addon-manager etc/bash_completion.d
diff -Nru vim-addon-manager-0.5.0/etc/bash_completion.d/vim-addon-manager 
vim-addon-manager-0.5.2/etc/bash_completion.d/vim-addon-manager
--- vim-addon-manager-0.5.0/etc/bash_completion.d/vim-addon-manager 
2012-04-09 03:13:18.0 +0200
+++ vim-addon-manager-0.5.2/etc/bash_completion.d/vim-addon-manager 
2012-10-30 11:42:19.0 +0100
@@ -19,7 +19,7 @@
   any_option=$(echo $options | sed -e 's/\s\+/|/g')
 
   # complete commands
-  if [[ "$prev" == 'vim-addons' ]]; then
+  if [[ "$prev" == 'vim-addons' ]] || [[ "$prev" == 'vim-addon-manager' ]] || 
[[ "$prev" == 'vam' ]]; then
 COMPREPLY=( $( compgen -W "$commands" -- $cur ) )
 return 0
   fi
diff -Nru vim-addon-manager-0.5.0/lib/vim/addon_manager.rb 
vim-addon-manager-0.5.2/lib/vim/addon_manager.rb
--- vim-addon-manager-0.5.0/lib/vim/addon_manager.rb2012-03-06 
12:31:57.0 +0100
+++ vim-addon-manager-0.5.2/lib/vim/addon_manager.rb2012-09-30 
22:26:39.0 +0200
@@ -96,7 +96,7 @@
 logger.info "enabling disabled addon '#{addon}'"
 lines.reject! {|line| addon.is_disabled_by? line}
   else
-logger "ignoring addon '#{addon}' which is enabled"
+logger.info "ignoring addon '#{addon}' which is enabled"
   end
 end
   end
@@ -122,7 +122,7 @@
 
 def map_override_lines
   override_lines = []
-  override_file = logger.override_file @target_dir
+  override_file = Vim::AddonManager.override_file @target_dir
   if File.exist? override_file
 File.open(override_file) do |file|
   override_lines += file.to_a


signature.asc
Description: Digital signature


Bug#691742: unblock: fs2ram/0.3.12

2012-10-31 Thread Philippe Le Brouster
Le lundi 29 octobre 2012 à 19:04 +, Adam D. Barratt a écrit:
> On Mon, 2012-10-29 at 12:05 +0100, Philippe Le Brouster wrote:
> > The current freezed version 0.3.10 of fs2ram doesn't take care of the
> > sysvinit modification done for wheezy (tmpfs usage for several
> > mountpoints). The version 0.3.11 should do that but was blocked due to a
> > RC bug[1]. The version 0.3.12 fixes this RC bug.
> > 
> > [1] http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=679715
> > 
> > Here are the full changelog between the version 0.3.11 and the version 
> > 0.3.12:
> 
> As you mentioned above, testing currently has 0.3.10. The relevant diff
> is thus 0.3.10 to 0.3.12, not from 0.3.11.

Here are the information from 0.3.10 to 0.3.12 :

changelog:
  
  fs2ram (0.3.12) unstable; urgency=low
  
[ Christian Perrier ]
* Debconf templates and debian/control reviewed by the debian-l10n-
  english team as part of the Smith review project. Closes: #679869
* [Debconf translation updates]
* Slovak (Ivan Masár).  Closes: #681222
* Russian (Yuri Kozlov).  Closes: #681369
* German (Florian Rehnisch).  Closes: #681382
* Swedish (Martin Bagge / brother).  Closes: #681391
* Czech (Michal Simunek).  Closes: #681516
* French (Julien Patriarca).  Closes: #681559
* Polish (Michał Kułach).  Closes: #681686
* Italian (Beatrice Torracca).  Closes: #682262
* Portuguese (Pedro Ribeiro).  Closes: #682380
* Danish (Joe Hansen).  Closes: #682383
* Spanish; (# traductor (campo Last-Translator) y ponga en copia a la
  lista de Javier Fernández-Sanguino).  Closes: #682558
  
[ Philippe Le Brouster ]
* Remove the ability to set the variables RAMLOCK and RAMTMP in
  /etc/default/tmpfs (Closes: #679715) 
  
   -- Philippe Le Brouster   Thu, 27 Sep 2012 15:07:50 +0200
  
  fs2ram (0.3.11) unstable; urgency=low
  
* /var/run, /var/lock and /tmp are no more handled by fs2ram by default as
  the init scripts already provide the options RAMLOCK, RAMTMP. See
  /etc/default/tmpfs
* Add an unmount script to backup/restore a mountpoint entirely.
* Use ucf for fs2ram.conf.
* Add a select template to choose the type of installation.
* Some minor enhancements.
* The keep_{folder,file}_structure scripts use now the numerical id of
  groups/users instead of their names (Closes: #649179).
* Update the config script according to sysvinit changes in 2.88dsf-23
* Update the debian standards version to 3.9.3
* Update to debhelper 9
* Allow DM to upload this package.
  
   -- Philippe Le Brouster   Wed, 27 Jun 2012 12:45:40 +0200
  
And the diffstat :

   b/debian/NEWS   |8 +
   b/debian/changelog  |   43 
   b/debian/compat |2 
   b/debian/control|   27 ++---
   b/debian/fs2ram.8   |   27 +++--
   b/debian/fs2ram.README.Debian   |1 
   b/debian/fs2ram.config  |8 +
   b/debian/fs2ram.install |2 
   b/debian/fs2ram.postinst|   59 ++-
   b/debian/fs2ram.postrm  |   18 +++
   b/debian/po/POTFILES.in |1 
   b/debian/po/cs.po   |   71 +
   b/debian/po/da.po   |   71 +
   b/debian/po/de.po   |   71 +
   b/debian/po/es.po   |  102 

   b/debian/po/fr.po   |   77 +++
   b/debian/po/it.po   |   79 +++
   b/debian/po/pl.po   |   76 ++
   b/debian/po/pt.po   |   71 +
   b/debian/po/ru.po   |   73 ++
   b/debian/po/sk.po   |   71 +
   b/debian/po/sv.po   |   72 ++
   b/debian/po/templates.pot   |   63 
   b/debian/rules  |2 
   b/debian/templates  |   24 
   b/doc/README|1 
   b/doc/examples/fs2ram.conf  |3 
   b/lib/fs2ram/unmount-scripts/common.sh  |   71 +
   b/lib/fs2ram/unmount-scripts/keep_file_content  |   27 +
   b/lib/fs2ram/unmount-scripts/keep_file_structure|   63 ++--
   b/lib/fs2ram/unmount-scripts/keep_folder_structure  |   45 +---
   b/lib/init/fs2ram-functions.sh  |4 
   b/sbin/fs2ram   |5 
   b/usr/sha

Bug#691910: unblock: php5/5.4.4-9

2012-10-31 Thread Ondřej Surý
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock package php5

Hi,

this is the beast with ten horns :-/.

The -8 update fixes:

 - one security related bug (extended DES not detected when salt
   didn't have lenght == 9)
 - one security RC bug (PHP files exposed due typoed IfModule
   directive in apache2filter SAPI)
 - fixes libphp5-embed, so it can be used by external applications

The -9 update fixes:

 - adds more text about the mess created by php5 mime types removed
   from mime-support package, there could be another update coming,
   but there is still no agreement what solution would be the best.
 - adds logrotate script for php5-fpm so the log file doesn't fill
   up the disk.
 - adds Breaks: php5-suhosin, so it's explicit that php5-suhosin
   doesn't work with php5.4.

$ diffstat ~/tmp/php5_5.4.4-9.debdiff
 debian/patches/expose_all_built_and_installed_apis.patch |   27 +++
 debian/patches/use_system_crypt_fixes.patch  |   11 ---
 php5-5.4.4/debian/changelog  |   23 ++
 php5-5.4.4/debian/control|3 
 php5-5.4.4/debian/libapache2-mod-php5.conf   |   52 +++
 php5-5.4.4/debian/libapache2-mod-php5filter.conf |   20 ++---
 php5-5.4.4/debian/patches/006-debian_quirks.patch|6 +
 php5-5.4.4/debian/patches/php_crypt_revamped.patch   |5 -
 php5-5.4.4/debian/patches/series |2 
 php5-5.4.4/debian/php5-cgi.NEWS  |   16 +++-
 php5-5.4.4/debian/php5-fpm.logrotate |   11 ---
 php5-5.4.4/debian/php5-sapi.lintian-overrides|2 
 php5-5.4.4/debian/rules  |1 
 13 files changed, 112 insertions(+), 67 deletions(-)

unblock php5/5.4.4-9

-- System Information:
Debian Release: wheezy/sid
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: amd64 (x86_64)

Kernel: Linux 3.2.0-3-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
diff -u php5-5.4.4/debian/php5-fpm.logrotate php5-5.4.4/debian/php5-fpm.logrotate
--- php5-5.4.4/debian/php5-fpm.logrotate
+++ php5-5.4.4/debian/php5-fpm.logrotate
@@ -1,16 +1,11 @@
-# cat /etc/logrotate.d/php5-fpm
 /var/log/php5-fpm.log {
+	rotate 12
 	weekly
 	missingok
-	rotate 7
+	notifempty
 	compress
 	delaycompress
-	notifempty
 	postrotate
-	 if [ -x /usr/sbin/invoke-rc.d ]; then \
-		invoke-rc.d php5-fpm reopen-logs > /dev/null 2>&1; \
-	 else \
-		/etc/init.d/php5-fpm reopen-logs > /dev/null 2>&1; \
-	 fi; \
+		invoke-rc.d php5-fpm reopen-logs > /dev/null
 	endscript
 }
diff -u php5-5.4.4/debian/rules php5-5.4.4/debian/rules
--- php5-5.4.4/debian/rules
+++ php5-5.4.4/debian/rules
@@ -529,6 +529,7 @@
 
 	# install embed SAPI
 	cd embed-build && make install-headers install-build install-sapi install-programs INSTALL_ROOT=$(CURDIR)/debian/libphp5-embed
+	rm $(CURDIR)/debian/libphp5-embed/usr/lib/php5/*.la
 
 	# install the apache modules' files
 	cd apache2-build && $(MAKE) install-headers install-build install-modules install-programs INSTALL_ROOT=$(CURDIR)/debian/libapache2-mod-php5
diff -u php5-5.4.4/debian/libapache2-mod-php5filter.conf php5-5.4.4/debian/libapache2-mod-php5filter.conf
--- php5-5.4.4/debian/libapache2-mod-php5filter.conf
+++ php5-5.4.4/debian/libapache2-mod-php5filter.conf
@@ -1,11 +1,9 @@
-
-
-	SetInputFilter PHP
-	SetOutputFilter PHP
-
-# Deny access to files without filename (e.g. '.php')
-
-Order Deny,Allow
-Deny from all
-
-
+
+SetInputFilter PHP
+SetOutputFilter PHP
+
+# Deny access to files without filename (e.g. '.php')
+
+Order Deny,Allow
+Deny from all
+
diff -u php5-5.4.4/debian/php5-sapi.lintian-overrides php5-5.4.4/debian/php5-sapi.lintian-overrides
--- php5-5.4.4/debian/php5-sapi.lintian-overrides
+++ php5-5.4.4/debian/php5-sapi.lintian-overrides
@@ -11,6 +11,8 @@
 php5-cli: embedded-library usr/bin/php5: file
 php5-fpm: embedded-library usr/sbin/php5-fpm: file
 libphp5-embed: embedded-library usr/lib/libphp5.so: file
+libphp5-embed: embedded-library usr/lib/php5/libphp5-*.so: file
+libphp5-embed: missing-dependency-on-phpapi
 libapache2-mod-php5: embedded-library ./usr/lib/apache2/modules/libphp5.so: file
 libapache2-mod-php5filter: embedded-library ./usr/lib/apache2/modules/libphp5filter.so: file
 php5-cgi: embedded-library ./usr/bin/php5-cgi: file
diff -u php5-5.4.4/debian/php5-cgi.NEWS php5-5.4.4/debian/php5-cgi.NEWS
--- php5-5.4.4/debian/php5-cgi.NEWS
+++ php5-5.4.4/debian/php5-cgi.NEWS
@@ -1,8 +1,8 @@
 php5 (5.4.4-5) unstable; urgency=low
 
  Please be aware that the mime-support package has dropped non-standard
- definitions for PHP that might affect any systems using PHP 5 running
- as CGI or FastCGI.  The following definitions were dropped:
+ definitions for PHP, which mi

Bug#691909: unblock: ldns/1.6.13-3

2012-10-31 Thread Ondřej Surý
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock package ldns

Sorry to send this so late.  I have converted the package to
dh_python2 (and moved ldns-config to -dev package).  Very small
changes in packaging.  (But no hurt feelings if you reject this.)

unblock ldns/1.6.13-3

-- System Information:
Debian Release: wheezy/sid
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: amd64 (x86_64)

Kernel: Linux 3.2.0-3-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
diff -Nru ldns-1.6.13/debian/changelog ldns-1.6.13/debian/changelog
--- ldns-1.6.13/debian/changelog	2012-05-28 09:40:48.0 +0200
+++ ldns-1.6.13/debian/changelog	2012-09-07 14:43:04.0 +0200
@@ -1,3 +1,16 @@
+ldns (1.6.13-3) unstable; urgency=low
+
+  * Also move manual page for ldns-config to libldns-dev package
+
+ -- Ondřej Surý   Fri, 07 Sep 2012 14:36:11 +0200
+
+ldns (1.6.13-2) unstable; urgency=low
+
+  * Convert python-ldns package to dh_python2
+  * Move ldns-config to /usr/sbin and to libldns-dev where it belongs
+
+ -- Ondřej Surý   Fri, 13 Jul 2012 12:43:03 +0200
+
 ldns (1.6.13-1) unstable; urgency=low
 
   [ Daniel Baumann ]
diff -Nru ldns-1.6.13/debian/control ldns-1.6.13/debian/control
--- ldns-1.6.13/debian/control	2012-05-28 09:40:48.0 +0200
+++ ldns-1.6.13/debian/control	2012-09-07 14:43:04.0 +0200
@@ -8,16 +8,15 @@
 	   libtool,
 	   libpcap-dev,
 	   doxygen,
-	   python-all-dev,
+	   python-all-dev (>= 2.6.6-3~),
 	   swig,
-	   python-support,
 	   hardening-wrapper,
 	   chrpath,
 	   autoconf,
 	   automake,
 	   pkg-config
-XS-Python-Version: >= 2.5
-Standards-Version: 3.9.2
+X-Python-Version: >= 2.5
+Standards-Version: 3.9.3
 Section: net
 Vcs-Browser: http://git.debian.org/?p=pkg-nlnetlabs/ldns.git
 Vcs-Git: git://git.debian.org/pkg-nlnetlabs/ldns.git
@@ -51,6 +50,8 @@
 Package: libldns-dev
 Section: libdevel
 Architecture: any
+Replaces: ldnsutil (<< 1.6.13-2)
+Breaks: ldnsutil (<< 1.6.13-2)
 Depends: libldns1 (= ${binary:Version}),
 	 ${shlibs:Depends},
 	 ${misc:Depends},
diff -Nru ldns-1.6.13/debian/libldns-dev.install ldns-1.6.13/debian/libldns-dev.install
--- ldns-1.6.13/debian/libldns-dev.install	2012-05-28 09:40:48.0 +0200
+++ ldns-1.6.13/debian/libldns-dev.install	2012-09-07 14:43:04.0 +0200
@@ -1,4 +1,6 @@
+debian/tmp/usr/sbin/ldns-config
 debian/tmp/usr/include/*
 debian/tmp/usr/lib/libldns.a
 debian/tmp/usr/lib/libldns.so
 debian/tmp/usr/share/man/man3/*
+debian/tmp/usr/share/man/man1/ldns-config.*
diff -Nru ldns-1.6.13/debian/rules ldns-1.6.13/debian/rules
--- ldns-1.6.13/debian/rules	2012-05-28 09:40:48.0 +0200
+++ ldns-1.6.13/debian/rules	2012-09-07 14:43:04.0 +0200
@@ -15,7 +15,7 @@
 BUILD_GOST=$(shell dpkg --compare-versions $(OPENSSLVER) gt 1.0.0 && echo "--enable-gost" || echo "--disable-gost")
 
 %:
-	dh --with quilt --with python-support ${@}
+	dh --with quilt --with python2 ${@}
 
 override_dh_auto_clean:
 	[ -e $(CURDIR)/libtool ] || ln -s /usr/bin/libtool
@@ -77,11 +77,18 @@
 	  mv $(CURDIR)/debian/tmp$${PYTHON_DIR}/$$(readlink $(CURDIR)/debian/tmp$${PYTHON_DIR}/_ldns.so) $(CURDIR)/debian/tmp$${PYTHON_DIR}/_ldns.so; \
 	  chrpath -d $(CURDIR)/debian/tmp$${PYTHON_DIR}/_ldns.so; \
 	done
+	mkdir $(CURDIR)/debian/tmp/usr/sbin
+	mv $(CURDIR)/debian/tmp/usr/bin/ldns-config $(CURDIR)/debian/tmp/usr/sbin/
 
 override_dh_strip:
 	dh_strip -p libldns1 --dbg-package=libldns1-dbg
 	dh_strip -a --remaining-packages
 
+override_dh_install:
+	dh_install -p libldns-dev
+	rm $(CURDIR)/debian/tmp/usr/share/man/man1/ldns-config.*
+	dh_install -a --remaining-packages
+
 override_dh_makeshlibs:
 	if dpkg --compare-versions $(OPENSSLVER) gt 1.0.0; \
 	then \


Bug#691908: unblock: cyrus-sasl2/2.1.25.dfsg1-6

2012-10-31 Thread Ondřej Surý
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock package cyrus-sasl2

The update pulls an upstream patch to fix auth failures when there is
a problem with hostname.

Diffstat:

 changelog   |6 +++
 patches/0037-abort_if_no_fqdn_fix.patch |   59 
 patches/series  |1 
 3 files changed, 66 insertions(+)

unblock cyrus-sasl2/2.1.25.dfsg1-6

-- System Information:
Debian Release: wheezy/sid
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: amd64 (x86_64)

Kernel: Linux 3.2.0-3-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
diff -Nru cyrus-sasl2-2.1.25.dfsg1/debian/changelog cyrus-sasl2-2.1.25.dfsg1/debian/changelog
--- cyrus-sasl2-2.1.25.dfsg1/debian/changelog	2012-08-06 13:35:13.0 +0200
+++ cyrus-sasl2-2.1.25.dfsg1/debian/changelog	2012-10-26 14:06:17.0 +0200
@@ -1,3 +1,9 @@
+cyrus-sasl2 (2.1.25.dfsg1-6) unstable; urgency=low
+
+  * Fix failures when the host have broken hostname (Closes: #683555)
+
+ -- Ondřej Surý   Fri, 26 Oct 2012 14:06:11 +0200
+
 cyrus-sasl2 (2.1.25.dfsg1-5) unstable; urgency=low
 
   * New sourceful upload (Closes: #676914)
diff -Nru cyrus-sasl2-2.1.25.dfsg1/debian/patches/0037-abort_if_no_fqdn_fix.patch cyrus-sasl2-2.1.25.dfsg1/debian/patches/0037-abort_if_no_fqdn_fix.patch
--- cyrus-sasl2-2.1.25.dfsg1/debian/patches/0037-abort_if_no_fqdn_fix.patch	1970-01-01 01:00:00.0 +0100
+++ cyrus-sasl2-2.1.25.dfsg1/debian/patches/0037-abort_if_no_fqdn_fix.patch	2012-10-26 14:06:17.0 +0200
@@ -0,0 +1,59 @@
+--- a/lib/saslutil.c
 b/lib/saslutil.c
+@@ -555,32 +555,44 @@ int get_fqhostname(
+ 		  NULL,		/* don't care abour service/port */
+ 		  &hints,
+ 		  &result) != 0) {
+-	/* errno on Unix, WSASetLastError on Windows are already done by the function */
+-	return (-1);
++if (abort_if_no_fqdn) {
++	/* errno on Unix, WSASetLastError on Windows are already done by the function */
++	return (-1);
++	} else {
++	goto LOWERCASE;
++	}
+ }
+ 
+-if (abort_if_no_fqdn && (result == NULL || result->ai_canonname == NULL)) {
++if (result == NULL || result->ai_canonname == NULL) {
+ 	freeaddrinfo (result);
++if (abort_if_no_fqdn) {
+ #ifdef WIN32
+-	WSASetLastError (WSANO_DATA);
++	WSASetLastError (WSANO_DATA);
+ #elif defined(ENODATA)
+-	errno = ENODATA;
++	errno = ENODATA;
+ #elif defined(EADDRNOTAVAIL)
+-	errno = EADDRNOTAVAIL;
++	errno = EADDRNOTAVAIL;
+ #endif
+-	return (-1);
++	return (-1);
++	} else {
++	goto LOWERCASE;
++	}
+ }
+ 
+-if (abort_if_no_fqdn && strchr (result->ai_canonname, '.') == NULL) {
++if (strchr (result->ai_canonname, '.') == NULL) {
+ 	freeaddrinfo (result);
++if (abort_if_no_fqdn) {
+ #ifdef WIN32
+-	WSASetLastError (WSANO_DATA);
++	WSASetLastError (WSANO_DATA);
+ #elif defined(ENODATA)
+-	errno = ENODATA;
++	errno = ENODATA;
+ #elif defined(EADDRNOTAVAIL)
+-	errno = EADDRNOTAVAIL;
++	errno = EADDRNOTAVAIL;
+ #endif
+-	return (-1);
++	return (-1);
++	} else {
++	goto LOWERCASE;
++	}
+ }
+ 
+ 
diff -Nru cyrus-sasl2-2.1.25.dfsg1/debian/patches/series cyrus-sasl2-2.1.25.dfsg1/debian/patches/series
--- cyrus-sasl2-2.1.25.dfsg1/debian/patches/series	2012-08-06 13:35:13.0 +0200
+++ cyrus-sasl2-2.1.25.dfsg1/debian/patches/series	2012-10-26 14:06:17.0 +0200
@@ -21,3 +21,4 @@
 0034-fix_dovecot_authentication.patch
 0035-temporary_multiarch_fixes.patch
 0036-add-reference-to-LDAP_SASLAUTHD-file.patch
+0037-abort_if_no_fqdn_fix.patch


Re: Fwd: apt-show-versions_0.19~squeeze1_amd64.changes ACCEPTED into proposed-updates->stable-new

2012-10-31 Thread Philipp Kern
Christoph,

am Wed, Oct 31, 2012 at 09:54:21AM +0100 hast du folgendes geschrieben:
> Am 29.10.2012 23:01, schrieb Philipp Kern:
> > On Wed, Oct 24, 2012 at 05:44:00PM +0100, Adam D. Barratt wrote:
> >> From a very quick scan and with apologies if I'm missing something
> >> due to unfamiliarity with the codebase:
> > […]
> > also the added apt hook/setting is a behaviour change if it's suddenly
> > called post-apt. Such a change is not suitable for inclusion into
> > stable. I'd prefer if that one could be dropped from the stable update.
> I could do a new upload with the apt hook change removed and the still
> missing release names added. Would you accept this in stable-updates?
> 
> Should I put the somewhere for you to inspect it?

please send a debdiff between the old and the new version to
debian-release@lists.debian.org for inspection and then we'll tell you if you
can go ahead or not (the former being likely).

That's the normal procedure for stable updates.

Kind regards
Philipp Kern


signature.asc
Description: Digital signature


Re: Fwd: apt-show-versions_0.19~squeeze1_amd64.changes ACCEPTED into proposed-updates->stable-new

2012-10-31 Thread Christoph Martin
Hi

Am 29.10.2012 23:01, schrieb Philipp Kern:
> Hi,
> 
> On Wed, Oct 24, 2012 at 05:44:00PM +0100, Adam D. Barratt wrote:
>> From a very quick scan and with apologies if I'm missing something
>> due to unfamiliarity with the codebase:
> […]
> 
> also the added apt hook/setting is a behaviour change if it's suddenly
> called post-apt. Such a change is not suitable for inclusion into
> stable. I'd prefer if that one could be dropped from the stable update.

I could do a new upload with the apt hook change removed and the still
missing release names added. Would you accept this in stable-updates?

Should I put the somewhere for you to inspect it?

Christoph

-- 

Christoph Martin, Zentrum für Datenverarbeitung, Uni-Mainz, Germany
 Instant-Messaging: Jabber: mar...@uni-mainz.de
  (Siehe http://www.zdv.uni-mainz.de/4010.php)
<>

signature.asc
Description: OpenPGP digital signature


Bug#687492: unblock: aptitude/0.6.8.2-1 (pre-approve)

2012-10-31 Thread Daniel Hartwig
On 31 October 2012 14:44, Adam D. Barratt  wrote:
> On Thu, 2012-09-13 at 17:45 +0800, Daniel Hartwig wrote:
>> I have also attached another patch which is entirely optional, but of
>> notable value to end users and relatively non-invasive.  It brings in
>> support for APT::Changelogs::Server which apt-cache and others have
>> been using for some time.  Previously we hardcoded the default value
>> of that.  Please also consider this patch and give it an ACK for
>> inclusion if this is ok.
>
> +  string server = aptcfg->Find("APT::Changelogs::Server",
> +   
> "http://packages.debian.org/changelogs";);
>
> I assume it's not possible to determine the default value being used by
> apt here?

Correct.

Attached is patch for apt which would change that.  CC to deity@
for maybe comment.

Without that patch this is still a major improvement.  The default
remains hardcoded but at least can be changed via apt.conf without
patching aptitude (as derivatives currently do) and one setting
applies to both apt-get and aptitude.


changelogs-conf.patch
Description: Binary data


Bug#687492: unblock: aptitude/0.6.8.2-1 (pre-approve)

2012-10-31 Thread Daniel Hartwig
On 31 October 2012 14:44, Adam D. Barratt  wrote:
> On Thu, 2012-09-13 at 17:45 +0800, Daniel Hartwig wrote:
>> Please unblock package aptitude (pre-approve)
>>
>> The last serious change required for aptitude + multi-arch is to
>> improve the command line handling.  I refer you to [1] and [2] for the
>> complete details.  At the moment most commands do not support a very
>> useful syntax for multi-arch and are variously inconsistent with their
>> documented behaviour, each other, and the apt-utils.
>
> Apologies for the delay in getting back to you about this.

This is ok, at least is not missing :-)

> Without being familiar with the aptitude codebase, the changes look okay
> based on your descriptions. How widely have they been tested? (I realise
> they've been in experimental for a while.)

The changes proposed in 0.6.8.2 are small and self-contained.  These
have been verified by running manual tests.

The version in experimental (0.6.9) has a small amount of positive
feedback, and one additional bug filed (promptly fixed).  There are a
lot of changes there, a lot of internal restructuring, and most of
this is not to be included in 0.6.10.  It is difficult to say how much
specific testing the retained changes have received.

The final changes for 0.6.10 are drastic enough (such as completely
restructuring the code which maps command line arguments to lists of
packages) that I would expect faults to cause obvious breakage under
casual usage and targetted tests.  Nothing like that has been
reported.

When 0.6.10 is uploaded to experimental I will call for specific
testing of this, and it is very easy to verify with manual testing
that the different types of arguments select the correct sets of
packages.

Further, the ad hoc code in aptitude is being replaced by
apt-pkg/cacheset.cc which has been used by apt since 0.8.0
(mid. 2010).  That code has received a lot of use.  The opportunity
for regressions in aptitude should be small, the new code introduced
to interface with cacheset.cc is a lot less than the old (and broken)
code being removed.

Regards


-- 
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/can3vercbbbfspikfd-7r8xf4lhobxmxm0jpoqavarc9fy5p...@mail.gmail.com



Bug#691894: marked as done (unblock: apache2/2.2.22-12)

2012-10-31 Thread Debian Bug Tracking System
Your message dated Wed, 31 Oct 2012 07:55:59 +0100
with message-id <5090cb7f.5040...@thykier.net>
and subject line Re: Bug#691894: unblock: apache2/2.2.22-12
has caused the Debian Bug report #691894,
regarding unblock: apache2/2.2.22-12
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.)


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

Please unblock package apache2.

This upload mitigates impact of the so called "CRIME" attacks to SSL. That's
primarily a browser issue and no vulnerability in Apache's code. Having that 
said,
this patch disables SSL compression globally by default so that vulnerable
browsers can't be exploited while talking to a web server with this patch.

Please note, we are planning to upload the very same patch to s-p-u (same patch,
just adapted to Squeeze's Apache version and in dpatch format). Do you agree 
with
our plans with that? Alternatively we can discuss this in a separate bug if you 
prefer.

This is the patch:

diff --git a/debian/changelog b/debian/changelog
index 665b678..3d4d908 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,13 @@
+apache2 (2.2.22-12) unstable; urgency=low
+
+  * Backport mod_ssl "SSLCompression on|off" flag from upstream. The default is
+"off". This mitigates impact of CRIME attacks. Fixes:
+- "handling the CRIME attack" (Closes: #689936)
+- "make it possible to disable ssl compression in apache2 mod_ssl"
+  (Closes: #674142)
+
+ -- Arno Töll   Wed, 31 Oct 2012 00:23:59 +0100
+
 apache2 (2.2.22-11) unstable; urgency=low
 
   * Be more careful regarding link attacks when purging the cache disk
diff --git a/debian/patches/disable-ssl-compression.patch 
b/debian/patches/disable-ssl-compression.patch
new file mode 100644
index 000..6878f68
--- /dev/null
+++ b/debian/patches/disable-ssl-compression.patch
@@ -0,0 +1,121 @@
+From: Bjoern Jacke 
+Subject: Allow mod_ssl to disable ssl compression
+
+Patch submitted upstream, merged into 2.2.24. This patch adds a "Compression
+on|off" directive to mod_ssl.
+
+Origin: upstream, https://issues.apache.org/bugzilla/attachment.cgi?id=28804
+Bug: https://issues.apache.org/bugzilla/show_bug.cgi?id=53219
+Bug-Debian: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=674142
+
+--- a/modules/ssl/mod_ssl.c
 b/modules/ssl/mod_ssl.c
+@@ -146,6 +146,9 @@
+ "('[+-][SSLv3|TLSv1|TLSv1.1|TLSv1.2] ...' - see manual)")
+ SSL_CMD_SRV(HonorCipherOrder, FLAG,
+ "Use the server's cipher ordering preference")
++SSL_CMD_SRV(Compression, FLAG,
++"Enable SSL level compression"
++"(`on', `off')")
+ SSL_CMD_SRV(InsecureRenegotiation, FLAG,
+ "Enable support for insecure renegotiation")
+ SSL_CMD_ALL(UserName, TAKE1,
+--- a/modules/ssl/ssl_engine_config.c
 b/modules/ssl/ssl_engine_config.c
+@@ -178,6 +178,9 @@
+ #ifdef HAVE_FIPS
+ sc->fips   = UNSET;
+ #endif
++#ifndef OPENSSL_NO_COMP
++sc->compression= UNSET;
++#endif
+ 
+ modssl_ctx_init_proxy(sc, p);
+ 
+@@ -275,6 +278,9 @@
+ #ifdef HAVE_FIPS
+ cfgMergeBool(fips);
+ #endif
++#ifndef OPENSSL_NO_COMP
++cfgMergeBool(compression);
++#endif
+ 
+ modssl_ctx_cfg_merge_proxy(base->proxy, add->proxy, mrg->proxy);
+ 
+@@ -708,6 +714,23 @@
+ 
+ }
+ 
++const char *ssl_cmd_SSLCompression(cmd_parms *cmd, void *dcfg, int flag)
++{
++#if !defined(OPENSSL_NO_COMP)
++SSLSrvConfigRec *sc = mySrvConfig(cmd->server);
++#ifndef SSL_OP_NO_COMPRESSION
++const char *err = ap_check_cmd_context(cmd, GLOBAL_ONLY);
++if (err)
++return "This version of openssl does not support configuring "
++   "compression within  sections.";
++#endif
++sc->compression = flag ? TRUE : FALSE;
++return NULL;
++#else
++return "Setting Compression mode unsupported; not implemented by the SSL 
library";
++#endif
++}
++
+ const char *ssl_cmd_SSLHonorCipherOrder(cmd_parms *cmd, void *dcfg, int flag)
+ {
+ #ifdef SSL_OP_CIPHER_SERVER_PREFERENCE
+--- a/modules/ssl/ssl_engine_init.c
 b/modules/ssl/ssl_engine_init.c
+@@ -532,6 +532,18 @@
+ }
+ #endif
+ 
++
++#ifndef OPENSSL_NO_COMP
diff --git a/debian/changelog b/debian/changelog
index 665b678..3d4d908 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,13 @@
+apache2 (2.2.22-12) unstable; urgency=low
+
+  * Backport mod_ssl "SSLCompression on|off" flag from u