Bug#686323: unblock: horizon/2012.1.1-4

2012-08-30 Thread Thomas Goirand
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock package horizon/2012.1.1-4

This fixes CVE-2012-3540, which was embargoed until yesterday.
Diff file attached.

Cheers,

Thomas Goirand (zigo)
diff --git a/debian/changelog b/debian/changelog
index 2a90c43..2451460 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+horizon (2012.1.1-4) unstable; urgency=high
+
+  * CVE-2012-3540: added patch: Disallow login redirects to anywhere other than
+  the same origin (Closes: #686050).
+
+ -- Thomas Goirand   Tue, 28 Aug 2012 03:05:44 +
+
 horizon (2012.1.1-3) unstable; urgency=low
 
   [ Thomas Goirand ]
diff --git a/debian/patches/CVE-2012-3540_disallow_login_redirect_other_than_same_origin.patch b/debian/patches/CVE-2012-3540_disallow_login_redirect_other_than_same_origin.patch
new file mode 100644
index 000..4e1f5d5
--- /dev/null
+++ b/debian/patches/CVE-2012-3540_disallow_login_redirect_other_than_same_origin.patch
@@ -0,0 +1,31 @@
+Description: Disallow login redirects to anywhere other than the same origin.
+Author: Paul McMillan 
+Origin: upstream
+Bug-Debian: http://bugs.debian.org/686050
+Bug-Ubuntu: https://launchpad.net/bugs/1039077
+
+--- horizon-2012.1.1.orig/horizon/views/auth_forms.py
 horizon-2012.1.1/horizon/views/auth_forms.py
+@@ -28,6 +28,7 @@ from django import shortcuts
+ from django.conf import settings
+ from django.contrib import messages
+ from django.contrib.auth import REDIRECT_FIELD_NAME
++from django.utils.http import same_origin
+ from django.utils.translation import ugettext as _
+ from keystoneclient import exceptions as keystone_exceptions
+ 
+@@ -94,7 +95,13 @@ class Login(forms.SelfHandlingForm):
+ request.session['region_endpoint'] = endpoint
+ request.session['region_name'] = region_name
+ 
+-redirect_to = request.REQUEST.get(REDIRECT_FIELD_NAME, "")
++redirect_to = request.REQUEST.get(REDIRECT_FIELD_NAME, None)
++# Make sure the requested redirect matches the protocol,
++# domain, and port of this request
++if redirect_to and not same_origin(
++request.build_absolute_uri(redirect_to),
++request.build_absolute_uri()):
++redirect_to = None
+ 
+ if data.get('tenant', None):
+ try:
diff --git a/debian/patches/series b/debian/patches/series
new file mode 100644
index 000..3d6a997
--- /dev/null
+++ b/debian/patches/series
@@ -0,0 +1 @@
+CVE-2012-3540_disallow_login_redirect_other_than_same_origin.patch


Bug#686321: unblock: keystone/2012.1.1-5

2012-08-30 Thread Thomas Goirand
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock package keystone.

This fixes CVE-2012-3542 (which was embargoed until yesterday), adds
a Chinese Debconf translation, and fixes the nl one:

* CVE-2012-3542: Fixes lack of authorization for adding users to tenants 
(Closes: #686265)
* Added Chinese debconf translation thanks to ben .
* Really adds the nl debconf translation this time (Closes: #685671).

Diff file attached.

Please unblock keystone/2012.1.1-5.

Cheers,

Thomas Goirand (zigo)
diff --git a/debian/changelog b/debian/changelog
index 8cff360..f9d3d3a 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,12 @@
+keystone (2012.1.1-5) unstable; urgency=low
+
+  * CVE-2012-3542: Fixes lack of authorization for adding users to tenants
+  (Closes: #686265)
+  * Added Chinese debconf translation thanks to ben .
+  * Really adds the nl debconf translation this time (Closes: #685671).
+
+ -- Thomas Goirand   Mon, 27 Aug 2012 11:45:44 +
+
 keystone (2012.1.1-4) unstable; urgency=low
 
   * Updated debian/keystone.templates, debian/control after review from
diff --git a/debian/patches/CVE-2012-3542_Lack-of-authorization-for-adding-users-to-tenants.patch b/debian/patches/CVE-2012-3542_Lack-of-authorization-for-adding-users-to-tenants.patch
new file mode 100644
index 000..1634e1e
--- /dev/null
+++ b/debian/patches/CVE-2012-3542_Lack-of-authorization-for-adding-users-to-tenants.patch
@@ -0,0 +1,22 @@
+Description: Lack of authorization for adding users to tenants
+ Dolph Mathews reported a vulnerability in Keystone. When attempting to
+ update a user's default tenant, Keystone will only partially deny the
+ request when a user is not authorized to complete this action. The API
+ responds with 401 Not Authorized and the user's default tenant is not
+ changed. However, the user is still granted membership to this new
+ tenant. The result is that any client that can reach the
+ administrative API (deployed on port 35357, by default) can add any
+ user to any tenant.
+Origin: https://review.openstack.org/#/c/11869/
+Bug-Debian: http://bugs.debian.org/686265
+
+--- keystone-2012.1.1.orig/keystone/identity/core.py
 keystone-2012.1.1/keystone/identity/core.py
+@@ -436,6 +436,7 @@ class UserController(wsgi.Application):
+ 
+ def update_user_tenant(self, context, user_id, user):
+ """Update the default tenant."""
++self.assert_admin(context)
+ # ensure that we're a member of that tenant
+ tenant_id = user.get('tenantId')
+ self.identity_api.add_user_to_tenant(context, tenant_id, user_id)
diff --git a/debian/patches/series b/debian/patches/series
index 1e2e5fa..6fbf616 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -2,3 +2,4 @@ logging.conf.patch
 pip-require_versions
 default_catalog.patch
 sql_conn.patch
+CVE-2012-3542_Lack-of-authorization-for-adding-users-to-tenants.patch
diff --git a/debian/po/nl.po b/debian/po/nl.po
index 7a9060b..59988ec 100644
--- a/debian/po/nl.po
+++ b/debian/po/nl.po
@@ -1,14 +1,14 @@
-# Dutch translation of nova debconf templates.
+# Dutch translation of keystone debconf templates.
 # Copyright (C) 2012 THE PACKAGE'S COPYRIGHT HOLDER
 # This file is distributed under the same license as the nova package.
 # Jeroen Schot , 2012.
 #
 msgid ""
 msgstr ""
-"Project-Id-Version: nova 2012.1-6\n"
+"Project-Id-Version: keystone 2012.1.1-4\n"
 "Report-Msgid-Bugs-To: keyst...@packages.debian.org\n"
 "POT-Creation-Date: 2012-08-11 08:37+0200\n"
-"PO-Revision-Date: 2012-06-13 13:30+0200\n"
+"PO-Revision-Date: 2012-08-22 12:24+0200\n"
 "Last-Translator: Jeroen Schot \n"
 "Language-Team: Debian l10n Dutch \n"
 "Language: nl\n"
@@ -67,16 +67,16 @@ msgid ""
 "keystone\"."
 msgstr ""
 "U kunt deze instelling later wijzigen door het uitvoeren van \"dpkg-"
-"reconfigure keystone\". "
+"reconfigure -plow keystone\". "
 
 #. Type: string
 #. Description
 #: ../keystone.templates:3001
 msgid "Authentication server administration token:"
-msgstr ""
+msgstr "Beheer-token van authenticatieserver:"
 
 #. Type: string
 #. Description
 #: ../keystone.templates:3001
 msgid "Please enter the token to use with the authentication server."
-msgstr ""
+msgstr "Welke token moet er met de authenticatieserver worden gebruikt?"
diff --git a/debian/po/zh_CN.po b/debian/po/zh_CN.po
new file mode 100644
index 000..4be1534
--- /dev/null
+++ b/debian/po/zh_CN.po
@@ -0,0 +1,55 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# FIRST AUTHOR , YEAR.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: keystone\n"
+"Report-Msgid-Bugs-To: keyst...@packages.debian.org\n"
+"POT-Creation-Date: 2012-06-27 19:39+0200\n"
+"PO-Revision-Date: 2012-08-27 16:22+0800\n"
+"Last-Translator: ben \n"
+"Language-Team: LANGUAGE \n"
+"Language: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/pl

Bug#686320: unblock: melange/1:2012.1-3

2012-08-30 Thread Thomas Goirand
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock package melange. This fixes RC bug #684736,
plus few minor fixes:

* Added myself as uploader.
* Add Depends on python-melange for melange binary package (Closes: #684736).
* Fixed debian/copyright syntax and Format: URL.
* Fixed python-melange: capitalization-error-in-description python Python.

Diff file attached.

Please unblock melange/1:2012.1-3

Cheers,

Thomas Goirand (zigo)
diff --git a/debian/changelog b/debian/changelog
index 267745d..b2a61aa 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,12 @@
+melange (1:2012.1-3) unstable; urgency=low
+
+  * Added myself as uploader.
+  * Add Depends on python-melange for melange binary package (Closes: #684736).
+  * Fixed debian/copyright syntax and Format: URL.
+  * Fixed python-melange: capitalization-error-in-description python Python.
+
+ -- Thomas Goirand   Mon, 27 Aug 2012 14:59:28 +
+
 melange (1:2012.1-2) unstable; urgency=low
 
   * rebuild to resolve depends on unavailable factory-boy (Closes: #663397).
diff --git a/debian/control b/debian/control
index b2ab6b0..356e4fd 100644
--- a/debian/control
+++ b/debian/control
@@ -3,7 +3,8 @@ Section: net
 Priority: extra
 Maintainer: PKG OpenStack 
 Uploaders: Loic Dachary (OuoU) , 
-   Ghe Rivero 
+   Ghe Rivero ,
+   Thomas Goirand 
 Build-Depends: debhelper (>= 7.0.50),
  python-all (>= 2.6.6-3~)
 Build-Depends-Indep:
@@ -30,7 +31,7 @@ Vcs-Git: git://anonscm.debian.org/openstack/melange.git
 
 Package: melange
 Architecture: all
-Depends: ${shlibs:Depends}, ${misc:Depends}, python, adduser
+Depends: ${shlibs:Depends}, ${misc:Depends}, python, adduser, python-melange (= ${source:Version})
 Description: IPAM management service for Openstack - Daemons
  Melange is a network information service that provides a centralized
  mechanism for managing IPs, MAC addresses and other information that
@@ -58,4 +59,4 @@ Description: IPAM management service for Openstack - Python library
  needs to be shared across multiple openstack services
  (Nova zones, Atlas, Quantum).
  .
- This package contains the python libraries.
\ No newline at end of file
+ This package contains the Python libraries.
\ No newline at end of file
diff --git a/debian/copyright b/debian/copyright
index 20190ba..8cb9478 100644
--- a/debian/copyright
+++ b/debian/copyright
@@ -1,11 +1,11 @@
-Format: http://dep.debian.net/deps/dep5
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
 Upstream-Name: melange
 Source: http://openstack.org/openstack/melange
 
 Files: *
 Copyright: 2010 United States Government as represented by the Administrator of the National Aeronautics and Space Administration.
-Copyright: 2010-2011 OpenStack LLC
-Copyright: Others (See individual files for more details)
+	2010-2011 OpenStack LLC
+	Others (See individual files for more details)
 License: Apache-2
  Licensed under the Apache License, Version 2.0 (the "License");
  you may not use this file except in compliance with the License.
diff --git a/debian/rules b/debian/rules
index c64799f..b041e90 100755
--- a/debian/rules
+++ b/debian/rules
@@ -12,4 +12,4 @@ override_dh_auto_clean:
 
 override_dh_auto_install:
 	dh_auto_install
-	cp $(CURDIR)/etc/melange/melange.conf.sample $(CURDIR)/debian/melange/etc/melange/melange.conf
\ No newline at end of file
+	cp $(CURDIR)/etc/melange/melange.conf.sample $(CURDIR)/debian/melange/etc/melange/melange.conf


Bug#686307: unblock: ocl-icd/1.3-3

2012-08-30 Thread Vincent Danjean
Le 31/08/2012 07:27, Adam D. Barratt a écrit :
> On Fri, 2012-08-31 at 01:56 +0200, Vincent Danjean wrote:
>>   I just released a new (upstream) version [1.4] of ocl-icd that fix 
>> important
>> bugs. As the new 1.4 version also contains refactorized code that would lead
>> to lots of difference with the actual sources in Debian, I backported only 
>> the
>> bug fixes. I think they should really be applied for wheezy.
> [...]
>> Note also that I did not yet upload the new package (1.3-3). You can see
>> it here:
>> http://moais.imag.fr/membres/vincent.danjean/debian/pool/main/o/ocl-icd/
>> And the debdiff against the 1.3-2 version currently in testing is in
>> attachment.
> 
> There didn't seem to be an attachment?

Sorry, I forgot. Here is.

  Vincent

> Regards,
> 
> Adam
> 


-- 
Vincent Danjean  Adresse: Laboratoire d'Informatique de Grenoble
Téléphone:  +33 4 76 61 20 11ENSIMAG - antenne de Montbonnot
Fax:+33 4 76 61 20 99ZIRST 51, avenue Jean Kuntzmann
Email: vincent.danj...@imag.fr   38330 Montbonnot Saint Martin
diff -Nru ocl-icd-1.3/debian/changelog ocl-icd-1.3/debian/changelog
--- ocl-icd-1.3/debian/changelog2012-06-26 02:08:19.0 +0200
+++ ocl-icd-1.3/debian/changelog2012-08-31 01:11:09.0 +0200
@@ -1,3 +1,12 @@
+ocl-icd (1.3-3) unstable; urgency=low
+
+  * backport fix from 1.4 release
++ fix version in OpenCL.pc file
++ fix 3 initialization bugs
++ fix NULL allowed argument in clCreateContextFromType
+
+ -- Vincent Danjean   Fri, 31 Aug 2012 00:46:47 +0200
+
 ocl-icd (1.3-2) unstable; urgency=low
 
   * rewrote relationships after thinking about OpenCL in Debian
diff -Nru 
ocl-icd-1.3/debian/patches/from-upsteam_Use-OpenCL-supported-version-in-pc-file.patch
 
ocl-icd-1.3/debian/patches/from-upsteam_Use-OpenCL-supported-version-in-pc-file.patch
--- 
ocl-icd-1.3/debian/patches/from-upsteam_Use-OpenCL-supported-version-in-pc-file.patch
   1970-01-01 01:00:00.0 +0100
+++ 
ocl-icd-1.3/debian/patches/from-upsteam_Use-OpenCL-supported-version-in-pc-file.patch
   2012-08-31 01:11:09.0 +0200
@@ -0,0 +1,40 @@
+From 9dab108ddbc7be9dd1b6384d8e143be92beb3345 Mon Sep 17 00:00:00 2001
+From: Vincent Danjean 
+Date: Fri, 31 Aug 2012 00:16:57 +0200
+Subject: [PATCH] [fix] Use OpenCL supported version as version in OpenCL.pc
+
+ocl-icd version is not relevant for applications requiring OpenCL.pc
+---
+ OpenCL.pc.in |2 +-
+ configure.ac |3 +++
+ 2 files changed, 4 insertions(+), 1 deletion(-)
+
+diff --git a/OpenCL.pc.in b/OpenCL.pc.in
+index ddbe78b..685ef2f 100644
+--- a/OpenCL.pc.in
 b/OpenCL.pc.in
+@@ -5,6 +5,6 @@ includedir=@includedir@
+ 
+ Name: OpenCL
+ Description: Open Computing Language generic Installable Client Driver Loader
+-Version: @VERSION@
++Version: @OPENCL_VERSION@
+ Libs: -L${libdir} -lOpenCL
+ Cflags: -I${includedir}
+diff --git a/configure.ac b/configure.ac
+index 780d836..cdeb019 100644
+--- a/configure.ac
 b/configure.ac
+@@ -11,6 +11,9 @@ AM_INIT_AUTOMAKE([-Wall -Werror foreign 1.9 tar-pax 
check-news color-tests paral
+ AMX_SILENT_RULES([AM_DEFAULT_VERBOSITY=0])
+ LT_INIT([disable-static])
+ 
++OPENCL_VERSION="1.2"
++AC_SUBST([OPENCL_VERSION])
++
+ # Checks for programs.
+ AC_PROG_CC_C89
+ AC_PROG_INSTALL
+-- 
+1.7.10.4
+
diff -Nru 
ocl-icd-1.3/debian/patches/from-upstream_fix-clCreateContextFromType.patch 
ocl-icd-1.3/debian/patches/from-upstream_fix-clCreateContextFromType.patch
--- ocl-icd-1.3/debian/patches/from-upstream_fix-clCreateContextFromType.patch  
1970-01-01 01:00:00.0 +0100
+++ ocl-icd-1.3/debian/patches/from-upstream_fix-clCreateContextFromType.patch  
2012-08-31 01:11:09.0 +0200
@@ -0,0 +1,61 @@
+From 52652b3e9dea6e7350da16fca530a89d26cbacf6 Mon Sep 17 00:00:00 2001
+From: Vincent Danjean 
+Date: Fri, 31 Aug 2012 00:20:27 +0200
+Subject: [PATCH 2/2] [bug fix] clCreateContextFromType can have a NULL
+ properties
+
+In this case, we just need to pick a random platform
+---
+ ocl_icd_loader.c |   12 
+ 1 file changed, 12 insertions(+)
+
+--- a/icd_generator.rb
 b/icd_generator.rb
+@@ -269,6 +269,17 @@
+ ocl_icd_loader_gen_source += "#include \"ocl_icd_loader.h\"\n"
+ ocl_icd_loader_gen_source += "#include \"ocl_icd_debug.h\"\n"
+ ocl_icd_loader_gen_source += "void _initClIcd();\n"
++ocl_icd_loader_gen_source += clCreateContextFromType(properties, device_type, 
pfn_notify, user_data, errcode_ret);
+   i += 2;
+ }
++  } else {
++/* if properties is null, the selected platform is implementation 
dependant
++ * We will use the first one if any
++ */
++if(_num_picds == 0) {
++  if(errcode_ret) {
++*errcode_ret = CL_INVALID_VALUE;
++  }
++  RETURN(NULL);
++}
++RETURN(_picds[0].pid->dispatch->clCreateContextFromType
++  (properties, device_type, pfn_notify, user_data, errcode_ret));
+   }
+   *errcode_ret = CL_INVALID_PLATFORM;
+   retur

Bug#686296: marked as done (unblock: gnome-settings-daemon/3.4.2-5)

2012-08-30 Thread Debian Bug Tracking System
Your message dated Fri, 31 Aug 2012 06:30:40 +0100
with message-id <1346391040.3415.4.ca...@jacala.jungle.funky-badger.org>
and subject line Re: Bug#686296: unblock: gnome-settings-daemon/3.4.2-5
has caused the Debian Bug report #686296,
regarding unblock: gnome-settings-daemon/3.4.2-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.)


-- 
686296: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=686296
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 gnome-settings-daemon

It contains an important bug fix for the fallback/classic mode where the
battery status icon was not properly updated.

Full debdiff attached.

Cheers,
Michael

unblock gnome-settings-daemon/3.4.2-5

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

Kernel: Linux 3.2.0-3-amd64 (SMP w/4 CPU cores)
Locale: LANG=de_DE.utf8, LC_CTYPE=de_DE.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
diff -Nru gnome-settings-daemon-3.4.2/debian/changelog gnome-settings-daemon-3.4.2/debian/changelog
--- gnome-settings-daemon-3.4.2/debian/changelog	2012-07-27 16:06:29.0 +0200
+++ gnome-settings-daemon-3.4.2/debian/changelog	2012-08-30 23:36:40.0 +0200
@@ -1,3 +1,11 @@
+gnome-settings-daemon (3.4.2-5) unstable; urgency=low
+
+  * debian/patches/power-update-fallback-status-icon.patch: Update battery
+status icon in fallback mode when switching between battery and AC power.
+Patch cherry-picked from upstream Git. (Closes: #678352)
+
+ -- Michael Biebl   Thu, 30 Aug 2012 23:36:38 +0200
+
 gnome-settings-daemon (3.4.2-4) unstable; urgency=low
 
   * debian/patches/24-common-Try-XI-2.2-if-XI-2.0-fails.patch:
diff -Nru gnome-settings-daemon-3.4.2/debian/patches/power-update-fallback-status-icon.patch gnome-settings-daemon-3.4.2/debian/patches/power-update-fallback-status-icon.patch
--- gnome-settings-daemon-3.4.2/debian/patches/power-update-fallback-status-icon.patch	1970-01-01 01:00:00.0 +0100
+++ gnome-settings-daemon-3.4.2/debian/patches/power-update-fallback-status-icon.patch	2012-06-28 07:50:20.0 +0200
@@ -0,0 +1,34 @@
+commit fa834c27d783c290856d9d24fbc4a29acb8e4456
+Author: Daniel Drake 
+Date:   Fri Jun 1 15:45:04 2012 -0600
+
+power: update fallback status icon on icon state change
+
+When the icon was being changed from one icon to another, the fallback
+icon was not being updated.
+
+This meant that unplugging or re-plugging AC power on OLPC laptops
+was not updating the icon (even though the tooltip updated just fine).
+
+Add a missing call to update the GtkStatusIcon when the internal GIcon
+changes.
+
+Fixes http://dev.laptop.org/ticket/11878
+
+https://bugzilla.gnome.org/show_bug.cgi?id=677313
+
+diff --git a/plugins/power/gsd-power-manager.c b/plugins/power/gsd-power-manager.c
+index 1d60723..abec33f 100644
+--- a/plugins/power/gsd-power-manager.c
 b/plugins/power/gsd-power-manager.c
+@@ -711,6 +711,10 @@ engine_recalculate_state_icon (GsdPowerManager *manager)
+ 
+ /* icon before, now different */
+ if (!g_icon_equal (manager->priv->previous_icon, icon)) {
++
++/* set fallback icon */
++gtk_status_icon_set_from_gicon (manager->priv->status_icon, icon);
++
+ g_object_unref (manager->priv->previous_icon);
+ manager->priv->previous_icon = icon;
+ return TRUE;
diff -Nru gnome-settings-daemon-3.4.2/debian/patches/series gnome-settings-daemon-3.4.2/debian/patches/series
--- gnome-settings-daemon-3.4.2/debian/patches/series	2012-07-27 13:38:20.0 +0200
+++ gnome-settings-daemon-3.4.2/debian/patches/series	2012-07-29 12:08:25.0 +0200
@@ -2,6 +2,7 @@
 10_smaller_syndaemon_timeout.patch
 power-check-null-devices.patch
 power-ignore-bad-dbus-requests.patch
+power-update-fallback-status-icon.patch
 revert_git_datetime_dropping.patch
 20_disable-wacom-support-on-s390-s390x.patch
 21_disable-wacom-on-non-Linux-platforms.patch
--- End Message ---
--- Begin Message ---
On Fri, 2012-08-31 at 00:33 +0200, Michael Biebl wrote:
> Please unblock package gnome-settings-daemon
> 
> It contains an important bug fix for the fallback/classic mode where the
> battery status icon was not properly updated.

Unblocked; thanks.

Regards,

Adam--- End Message ---


Bug#686301: marked as done (unblock: libheimdal-kadm5-perl/0.08-4)

2012-08-30 Thread Debian Bug Tracking System
Your message dated Fri, 31 Aug 2012 06:29:29 +0100
with message-id <1346390969.3415.3.ca...@jacala.jungle.funky-badger.org>
and subject line Re: Bug#686301: unblock: libheimdal-kadm5-perl/0.08-4
has caused the Debian Bug report #686301,
regarding unblock: libheimdal-kadm5-perl/0.08-4
to be marked as done.

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

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


-- 
686301: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=686301
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 libheimdal-kadm5-perl to fix RC bug #686299.
The explanation from the upstream commit message:

Call the public kadm5 API functions instead of the internal ones

The kadm5_c_* functions are an internal API.  The public functions
are the ones without the _c, which dispatch to the internal functions
depending on whether one links with the client library or the server
library.  By calling the _c functions, we don't get the benefit of
prototype checking and fail if the internal function signature ever
changes.

The latter has now happened with Heimdal 1.6 currently used in Debian,
and as a result the create_principal and chpass_principal functions
here have stopped working because they provide the wrong number of
arguments and the Heimdal library sees random stack garbage as the
additional function arguments.

Replace all C calls to use the versions without _c, since this module
doesn't attempt to support the _s and _c interfaces simultaneously
anyway and therefore no benefit accrues from calling the _c functions.
This also fixes the backward-compatibility problem, since the public
API did not change, only the internal function API.

The debdiff just has the changelog entry and the addition of the patch.
The patch header is not particularly ideal; sorry about that.  I need to
do more cleanup in the long run of the packaging to set a default patch
header for Debian changes, and missed that before I'd uploaded the package.
It should be harmless, just not as well-documented as it could be; if
you'd like me to upload a new version with a better patch header, I can
do that.

Attached is the diff (rather than the diff of the diff) to make the change
easier to review.  All it does is drop the _c from the various function
calls and related error messages.

unblock libheimdal-kadm5-perl/0.08-4

-- System Information:
Debian Release: wheezy/sid
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)

Kernel: Linux 3.2.0-2-686-pae (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
commit 00fbf80098a1f8fea014c9849f8adcd615ff1687
Author: Russ Allbery 
Date:   Thu Aug 30 16:28:43 2012 -0700

Call the public kadm5 API functions instead of the internal ones

The kadm5_c_* functions are an internal API.  The public functions
are the ones without the _c, which dispatch to the internal functions
depending on whether one links with the client library or the server
library.  By calling the _c functions, we don't get the benefit of
prototype checking and fail if the internal function signature ever
changes.

The latter has now happened with Heimdal 1.6 currently used in Debian,
and as a result the create_principal and chpass_principal functions
here have stopped working because they provide the wrong number of
arguments and the Heimdal library sees random stack garbage as the
additional function arguments.

Replace all C calls to use the versions without _c, since this module
doesn't attempt to support the _s and _c interfaces simultaneously
anyway and therefore no benefit accrues from calling the _c functions.
This also fixes the backward-compatibility problem, since the public
API did not change, only the internal function API.

diff --git a/Kadm5.xs b/Kadm5.xs
index f1312f8..8ee5d73 100644
--- a/Kadm5.xs
+++ b/Kadm5.xs
@@ -218,10 +218,10 @@ DESTROY(handle)
  {
if (handle->modcount > 0)
 	 {
-	   kadm5_c_flush(handle->ptr);
+	   kadm5_flush(handle->ptr);
 	 }
if (handle->ptr)
-  kadm5_c_destroy(handle->ptr);
+  kadm5_destroy(handle->ptr);
if (handle->context)
   krb5_free_context(handle->context);
safefree(handle);
@@ -237,7 +237,7 @@ kadm5_c_init_with_password (handle, client_name, password, service

Bug#686307: unblock: ocl-icd/1.3-3

2012-08-30 Thread Adam D. Barratt
On Fri, 2012-08-31 at 01:56 +0200, Vincent Danjean wrote:
>   I just released a new (upstream) version [1.4] of ocl-icd that fix important
> bugs. As the new 1.4 version also contains refactorized code that would lead
> to lots of difference with the actual sources in Debian, I backported only the
> bug fixes. I think they should really be applied for wheezy.
[...]
> Note also that I did not yet upload the new package (1.3-3). You can see
> it here:
> http://moais.imag.fr/membres/vincent.danjean/debian/pool/main/o/ocl-icd/
> And the debdiff against the 1.3-2 version currently in testing is in
> attachment.

There didn't seem to be an attachment?

Regards,

Adam


-- 
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/1346390854.3415.2.ca...@jacala.jungle.funky-badger.org



Bug#686319: unblock: iceweasel/10.0.7esr-1

2012-08-30 Thread Mike Hommey
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock package iceweasel

10.0.7esr-1 is a security/stability upstream update.
It also fixes iceweasel-l10n-all version to have an epoch so that it has
a greater version number than the package in current stable.

I won't attach the 150KB of debdiff.

The changelog reads:
  * New upstream release.
  * Fixes for mfsa2012-{57-58,60-63,65,69-70,72}, also known as
CVE-2012-1970, CVE-2012-1972, CVE-2012-1973, CVE-2012-1974,
CVE-2012-1975, CVE-2012-1976, CVE-2012-3957, CVE-2012-3959,
CVE-2012-3960, CVE-2012-3962, CVE-2012-3966, CVE-2012-3967,
CVE-2012-3969, CVE-2012-3972, CVE-2012-3976, CVE-2012-3978,
CVE-2012-3980.
  * debian/rules: Also use an epoch for iceweasel-l10n-all.

The debian/rules change is the following:

diff -Nru iceweasel-10.0.6esr/debian/rules iceweasel-10.0.7esr/debian/rules
--- iceweasel-10.0.6esr/debian/rules2012-08-03 07:34:31.0 +
+++ iceweasel-10.0.7esr/debian/rules2012-08-29 06:16:51.0 +
@@ -333,8 +333,8 @@
LD_LIBRARY_PATH=$(CURDIR)/debian/tmp/usr/lib/xulrunner-$(GRE_VERSION) 
dpkg-shlibdeps -Tdebian/xulrunner-$(GRE_VERSION).substvars -dDepends -pgnome 
$(foreach 
lib,dbusservice,debian/xulrunner-$(GRE_VERSION)/usr/lib/xulrunner-$(GRE_VERSION)/components/lib$(lib).so)

 override_dh_gencontrol:
-   dh_gencontrol$(foreach pkg,$(L10N_PACKAGES), -p$(pkg)) -- 
-v1:$(DEBIAN_VERSION)
-   dh_gencontrol$(foreach pkg,$(L10N_PACKAGES), -N$(pkg))
+   dh_gencontrol$(foreach pkg,$(L10N_PACKAGES) iceweasel-l10n-all, 
-p$(pkg)) -- -v1:$(DEBIAN_VERSION)
+   dh_gencontrol$(foreach pkg,$(L10N_PACKAGES) iceweasel-l10n-all, 
-N$(pkg))

 install binary binary-arch binary-indep: $(GENERATED_FILES)

Note one of the CVEs essentially disables webGL with mesa because of a
mesa bug that leads to security problems.

unblock iceweasel/10.0.7esr-1

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

Kernel: Linux 3.5-trunk-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


-- 
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/20120831052824.9216.68947.report...@jigen.glandium.org



Bug#686310: marked as done (unblock: nap/1.5.4-7.1)

2012-08-30 Thread Debian Bug Tracking System
Your message dated Fri, 31 Aug 2012 06:16:02 +0100
with message-id <1346390162.3415.0.ca...@jacala.jungle.funky-badger.org>
and subject line Re: Bug#686310: unblock: nap/1.5.4-7.1
has caused the Debian Bug report #686310,
regarding unblock: nap/1.5.4-7.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.)


-- 
686310: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=686310
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 nap, it's just a debconf translation update.
debdiff against the version currently in testing attached.

unblock nap/1.5.4-7.1

Thanks in advance, regards.

David

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

Kernel: Linux 3.2.0-3-amd64 (SMP w/1 CPU core)
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
diffstat for nap_1.5.4-5 nap_1.5.4-7.1

 debian/po/da.po|   48 +++
 debian/po/pl.po|   50 +
 debian/po/pt_BR.po |   48 +++
 debian/po/sk.po|   48 +++
 nap-1.5.4/debian/changelog |   26 +++
 nap-1.5.4/debian/po/nl.po  |   24 +
 6 files changed, 230 insertions(+), 14 deletions(-)

diff -u nap-1.5.4/debian/changelog nap-1.5.4/debian/changelog
--- nap-1.5.4/debian/changelog
+++ nap-1.5.4/debian/changelog
@@ -1,3 +1,29 @@
+nap (1.5.4-7.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Remove the check_po target from debian/rules that would bring an FTBFS and
+won't make the release team happy.
+  * Added Brazilian Portuguese debconf templates translation, Adriano Rafael
+Gomes.
+Closes: #685870
+
+ -- David Prévot   Sun, 26 Aug 2012 19:12:30 -0400
+
+nap (1.5.4-7) unstable; urgency=low
+
+  * Fixed wrong encoding of Danish and Dutch translations (see #666202).
+Thanks to David Prévot for suggestions.
+Closes: #658938, #660752.
+
+ -- Massimo Dal Zotto   Fri, 24 Aug 2012 16:25:28 +0200
+
+nap (1.5.4-6) unstable; urgency=low
+
+  * Added Danish, Dutch, Polish and Slovak translations.
+Closes: #658938, #660752, #685372, #685705.
+
+ -- Massimo Dal Zotto   Fri, 24 Aug 2012 10:38:27 +0200
+
 nap (1.5.4-5) unstable; urgency=low
 
   * Added japanese debconf templates translation.
diff -u nap-1.5.4/debian/po/nl.po nap-1.5.4/debian/po/nl.po
--- nap-1.5.4/debian/po/nl.po
+++ nap-1.5.4/debian/po/nl.po
@@ -1,20 +1,20 @@
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR THE 'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the  package.
-# FIRST AUTHOR , YEAR.
+# Dutch translation of nap debconf templates.
+# Copyright (C) 2007 THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the nap package.
+# Bart Cornelis , 2007.
 #
 msgid ""
 msgstr ""
-"Project-Id-Version: nap\n"
+"Project-Id-Version: nap 1.5.4-5\n"
 "Report-Msgid-Bugs-To: n...@packages.debian.org\n"
 "POT-Creation-Date: 2008-08-16 18:52-0300\n"
-"PO-Revision-Date: 2007-10-25 19:23+0100\n"
-"Last-Translator: Bart Cornelis \n"
-"Language-Team: debian-l10n-dutch \n"
+"PO-Revision-Date: 2012-02-21 16:47+0100\n"
+"Last-Translator: Jeroen Schot \n"
+"Language-Team: Debian l10n Dutch \n"
+"Language: nl\n"
 "MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=utf-8\n"
+"Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Poedit-Language: Dutch\n"
 
 #. Type: boolean
 #. Description
@@ -38,10 +38,6 @@
 #. Type: boolean
 #. Description
 #: ../templates:1001
-#, fuzzy
-#| msgid ""
-#| "Enabling this feature may be a security risk, so it is disabled by "
-#| "default. If in doubt, I suggest you leave it disabled."
 msgid ""
 "Enabling this feature may be a security risk, so it is disabled by default. "
 "If in doubt, it is suggested that you leave it disabled."
only in patch2:
unchanged:
--- nap-1.5.4.orig/debian/po/sk.po
+++ nap-1.5.4/debian/po/sk.po
@@ -0,0 +1,48 @@
+# Slovak translations for nap package
+# Slovenské preklady pre balík nap.
+# Copyright (C) 2012 THE nap'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the nap package.
+# Automatically generated, 2012.
+# Slavko , 2012.
+#
+msgid ""
+msgstr

Bug#686308: marked as done (unblock: ilohamail/0.8.14-0rc3sid6.2)

2012-08-30 Thread Debian Bug Tracking System
Your message dated Fri, 31 Aug 2012 06:17:19 +0100
with message-id <1346390239.3415.1.ca...@jacala.jungle.funky-badger.org>
and subject line Re: Bug#686308: unblock: ilohamail/0.8.14-0rc3sid6.2
has caused the Debian Bug report #686308,
regarding unblock: ilohamail/0.8.14-0rc3sid6.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.)


-- 
686308: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=686308
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 ilohamail, it's just a debconf and program
translation update.

Instead of joining the full debdiff [0], let me first show you the
diffstat.

0: 
http://bugs.debian.org/cgi-bin/bugreport.cgi?msg=27;filename=ilohamail-0.8.14-0rc3sid6.2-nmu.diff;att=1;bug=659221

$ diffstat /tmp/ilohamail-0.8.14-0rc3sid6.2-nmu.diff 
 IlohaMail/include/langs.inc   |1 
 IlohaMail/lang/eo/bookmarks.inc   |   29 ++
 IlohaMail/lang/eo/calendar.inc|   39 +
 IlohaMail/lang/eo/compose.inc |   55 +++
 IlohaMail/lang/eo/contacts.inc|   35 
 IlohaMail/lang/eo/cp.inc  |   11 +++
 IlohaMail/lang/eo/dates.inc   |   69 
 IlohaMail/lang/eo/defaultFolders.inc  |   20 +++
 IlohaMail/lang/eo/edit_contact.inc|   40 ++ 
 IlohaMail/lang/eo/edit_folders.inc|   36 
 IlohaMail/lang/eo/folders.inc |   25 
 IlohaMail/lang/eo/init.inc|   14 
 IlohaMail/lang/eo/login.inc   |   27 +
 IlohaMail/lang/eo/main.inc|   55 +++
 IlohaMail/lang/eo/pref_colors.inc |   38 +
 IlohaMail/lang/eo/pref_identities.inc |   29 ++
 IlohaMail/lang/eo/prefs.inc   |   94 +
 IlohaMail/lang/eo/quota.inc   |   18 ++
 IlohaMail/lang/eo/read_message.inc|   33 +++
 IlohaMail/lang/eo/search.inc  |   25 
 IlohaMail/lang/eo/search_errors.inc   |   18 ++
 IlohaMail/lang/eo/tool.inc|   25 
 debian/po/da.po   |   84 +
 debian/po/pl.po   |   96 ++
 ilohamail-0.8.14/debian/changelog |   13 
 ilohamail-0.8.14/debian/templates |1 
 26 files changed, 929 insertions(+), 1 deletion(-)

Beh, lots of translation noise you don't care about, so let me filter it
for you. Attached the result of

  filterdiff --exclude=*.po --exclude=*eo* 
/tmp/ilohamail-0.8.14-0rc3sid6.2-nmu.diff

Thanks in advance

David

unblock ilohamail/0.8.14-0rc3sid6.2



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

Kernel: Linux 3.2.0-3-amd64 (SMP w/1 CPU core)
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
diff -u ilohamail-0.8.14/debian/changelog ilohamail-0.8.14/debian/changelog
--- ilohamail-0.8.14/debian/changelog
+++ ilohamail-0.8.14/debian/changelog
@@ -1,3 +1,16 @@
+ilohamail (0.8.14-0rc3sid6.2) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Fix pending l10n issues. Debconf translations:
+- Danish (Joe Hansen). Closes: #659221
+- Polish (Michał Kułach). Closes: #685704
+  * Remove spurious #flag:translate:3 from templates that prevented the
+translated text to be displayed.
+  * Add Esperanto translation of the program (Andreas van Cranenburgh).
+Closes: #425394
+
+ -- David Prévot   Sun, 26 Aug 2012 19:28:30 -0400
+
 ilohamail (0.8.14-0rc3sid6.1) unstable; urgency=low
 
   * Non-maintainer upload.
diff -u ilohamail-0.8.14/debian/templates ilohamail-0.8.14/debian/templates
--- ilohamail-0.8.14/debian/templates
+++ ilohamail-0.8.14/debian/templates
@@ -1,7 +1,6 @@
 Template: ilohamail/webserver_type
 Type: select
 __Choices: Apache, Apache-ssl, Apache2, Other
-#flag:translate:3
 Default: Apache
 _Description: Webserver type:
  By default IlohaMail supports any webserver that is PHP4 capable, but this
only in patch2:
unchanged:
--- ilohamail-0.8.14.orig/IlohaMail/include/langs.inc
+++ ilohamail-0.8.14/IlohaMail/include/langs.inc
@@ -21,6 +21,7 @@
 	"dk/"=>"Dansk",
 	"de/" => "Deutsch",
 	"es/" => "Español",
+	"eo/" => "Esperanto",
 	"fr/"=>"Français", 
 	"ga/"=>"Galician",
 	"hu/"=>"Hungarian",
--- End M

Bug#686310: unblock: nap/1.5.4-7.1

2012-08-30 Thread David Prévot
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock package nap, it's just a debconf translation update.
debdiff against the version currently in testing attached.

unblock nap/1.5.4-7.1

Thanks in advance, regards.

David

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

Kernel: Linux 3.2.0-3-amd64 (SMP w/1 CPU core)
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
diffstat for nap_1.5.4-5 nap_1.5.4-7.1

 debian/po/da.po|   48 +++
 debian/po/pl.po|   50 +
 debian/po/pt_BR.po |   48 +++
 debian/po/sk.po|   48 +++
 nap-1.5.4/debian/changelog |   26 +++
 nap-1.5.4/debian/po/nl.po  |   24 +
 6 files changed, 230 insertions(+), 14 deletions(-)

diff -u nap-1.5.4/debian/changelog nap-1.5.4/debian/changelog
--- nap-1.5.4/debian/changelog
+++ nap-1.5.4/debian/changelog
@@ -1,3 +1,29 @@
+nap (1.5.4-7.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Remove the check_po target from debian/rules that would bring an FTBFS and
+won't make the release team happy.
+  * Added Brazilian Portuguese debconf templates translation, Adriano Rafael
+Gomes.
+Closes: #685870
+
+ -- David Prévot   Sun, 26 Aug 2012 19:12:30 -0400
+
+nap (1.5.4-7) unstable; urgency=low
+
+  * Fixed wrong encoding of Danish and Dutch translations (see #666202).
+Thanks to David Prévot for suggestions.
+Closes: #658938, #660752.
+
+ -- Massimo Dal Zotto   Fri, 24 Aug 2012 16:25:28 +0200
+
+nap (1.5.4-6) unstable; urgency=low
+
+  * Added Danish, Dutch, Polish and Slovak translations.
+Closes: #658938, #660752, #685372, #685705.
+
+ -- Massimo Dal Zotto   Fri, 24 Aug 2012 10:38:27 +0200
+
 nap (1.5.4-5) unstable; urgency=low
 
   * Added japanese debconf templates translation.
diff -u nap-1.5.4/debian/po/nl.po nap-1.5.4/debian/po/nl.po
--- nap-1.5.4/debian/po/nl.po
+++ nap-1.5.4/debian/po/nl.po
@@ -1,20 +1,20 @@
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR THE 'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the  package.
-# FIRST AUTHOR , YEAR.
+# Dutch translation of nap debconf templates.
+# Copyright (C) 2007 THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the nap package.
+# Bart Cornelis , 2007.
 #
 msgid ""
 msgstr ""
-"Project-Id-Version: nap\n"
+"Project-Id-Version: nap 1.5.4-5\n"
 "Report-Msgid-Bugs-To: n...@packages.debian.org\n"
 "POT-Creation-Date: 2008-08-16 18:52-0300\n"
-"PO-Revision-Date: 2007-10-25 19:23+0100\n"
-"Last-Translator: Bart Cornelis \n"
-"Language-Team: debian-l10n-dutch \n"
+"PO-Revision-Date: 2012-02-21 16:47+0100\n"
+"Last-Translator: Jeroen Schot \n"
+"Language-Team: Debian l10n Dutch \n"
+"Language: nl\n"
 "MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=utf-8\n"
+"Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Poedit-Language: Dutch\n"
 
 #. Type: boolean
 #. Description
@@ -38,10 +38,6 @@
 #. Type: boolean
 #. Description
 #: ../templates:1001
-#, fuzzy
-#| msgid ""
-#| "Enabling this feature may be a security risk, so it is disabled by "
-#| "default. If in doubt, I suggest you leave it disabled."
 msgid ""
 "Enabling this feature may be a security risk, so it is disabled by default. "
 "If in doubt, it is suggested that you leave it disabled."
only in patch2:
unchanged:
--- nap-1.5.4.orig/debian/po/sk.po
+++ nap-1.5.4/debian/po/sk.po
@@ -0,0 +1,48 @@
+# Slovak translations for nap package
+# Slovenské preklady pre balík nap.
+# Copyright (C) 2012 THE nap'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the nap package.
+# Automatically generated, 2012.
+# Slavko , 2012.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: nap 1.5.4-5\n"
+"Report-Msgid-Bugs-To: n...@packages.debian.org\n"
+"POT-Creation-Date: 2008-08-16 18:52-0300\n"
+"PO-Revision-Date: 2012-08-20 12:32+0200\n"
+"Last-Translator: Slavko \n"
+"Language-Team: slovenčina \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Language: sk\n"
+"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
+
+#. Type: boolean
+#. Description
+#: ../templates:1001
+msgid "Do you want napping to be installed setuid?"
+msgstr "Chcete aby bol napping nainštalovaný so setuid?"
+
+#. Type: boolean
+#. Description
+#: ../templates:1001
+msgid ""
+"The napping executable, which is responsible for collecting ping results for "
+"nap, can be installed with the set-user-id bit set, so that it will be able "
+"

Bug#686308: unblock: ilohamail/0.8.14-0rc3sid6.2

2012-08-30 Thread David Prévot
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock package ilohamail, it's just a debconf and program
translation update.

Instead of joining the full debdiff [0], let me first show you the
diffstat.

0: 
http://bugs.debian.org/cgi-bin/bugreport.cgi?msg=27;filename=ilohamail-0.8.14-0rc3sid6.2-nmu.diff;att=1;bug=659221

$ diffstat /tmp/ilohamail-0.8.14-0rc3sid6.2-nmu.diff 
 IlohaMail/include/langs.inc   |1 
 IlohaMail/lang/eo/bookmarks.inc   |   29 ++
 IlohaMail/lang/eo/calendar.inc|   39 +
 IlohaMail/lang/eo/compose.inc |   55 +++
 IlohaMail/lang/eo/contacts.inc|   35 
 IlohaMail/lang/eo/cp.inc  |   11 +++
 IlohaMail/lang/eo/dates.inc   |   69 
 IlohaMail/lang/eo/defaultFolders.inc  |   20 +++
 IlohaMail/lang/eo/edit_contact.inc|   40 ++ 
 IlohaMail/lang/eo/edit_folders.inc|   36 
 IlohaMail/lang/eo/folders.inc |   25 
 IlohaMail/lang/eo/init.inc|   14 
 IlohaMail/lang/eo/login.inc   |   27 +
 IlohaMail/lang/eo/main.inc|   55 +++
 IlohaMail/lang/eo/pref_colors.inc |   38 +
 IlohaMail/lang/eo/pref_identities.inc |   29 ++
 IlohaMail/lang/eo/prefs.inc   |   94 +
 IlohaMail/lang/eo/quota.inc   |   18 ++
 IlohaMail/lang/eo/read_message.inc|   33 +++
 IlohaMail/lang/eo/search.inc  |   25 
 IlohaMail/lang/eo/search_errors.inc   |   18 ++
 IlohaMail/lang/eo/tool.inc|   25 
 debian/po/da.po   |   84 +
 debian/po/pl.po   |   96 ++
 ilohamail-0.8.14/debian/changelog |   13 
 ilohamail-0.8.14/debian/templates |1 
 26 files changed, 929 insertions(+), 1 deletion(-)

Beh, lots of translation noise you don't care about, so let me filter it
for you. Attached the result of

  filterdiff --exclude=*.po --exclude=*eo* 
/tmp/ilohamail-0.8.14-0rc3sid6.2-nmu.diff

Thanks in advance

David

unblock ilohamail/0.8.14-0rc3sid6.2



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

Kernel: Linux 3.2.0-3-amd64 (SMP w/1 CPU core)
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
diff -u ilohamail-0.8.14/debian/changelog ilohamail-0.8.14/debian/changelog
--- ilohamail-0.8.14/debian/changelog
+++ ilohamail-0.8.14/debian/changelog
@@ -1,3 +1,16 @@
+ilohamail (0.8.14-0rc3sid6.2) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Fix pending l10n issues. Debconf translations:
+- Danish (Joe Hansen). Closes: #659221
+- Polish (Michał Kułach). Closes: #685704
+  * Remove spurious #flag:translate:3 from templates that prevented the
+translated text to be displayed.
+  * Add Esperanto translation of the program (Andreas van Cranenburgh).
+Closes: #425394
+
+ -- David Prévot   Sun, 26 Aug 2012 19:28:30 -0400
+
 ilohamail (0.8.14-0rc3sid6.1) unstable; urgency=low
 
   * Non-maintainer upload.
diff -u ilohamail-0.8.14/debian/templates ilohamail-0.8.14/debian/templates
--- ilohamail-0.8.14/debian/templates
+++ ilohamail-0.8.14/debian/templates
@@ -1,7 +1,6 @@
 Template: ilohamail/webserver_type
 Type: select
 __Choices: Apache, Apache-ssl, Apache2, Other
-#flag:translate:3
 Default: Apache
 _Description: Webserver type:
  By default IlohaMail supports any webserver that is PHP4 capable, but this
only in patch2:
unchanged:
--- ilohamail-0.8.14.orig/IlohaMail/include/langs.inc
+++ ilohamail-0.8.14/IlohaMail/include/langs.inc
@@ -21,6 +21,7 @@
 	"dk/"=>"Dansk",
 	"de/" => "Deutsch",
 	"es/" => "Español",
+	"eo/" => "Esperanto",
 	"fr/"=>"Français", 
 	"ga/"=>"Galician",
 	"hu/"=>"Hungarian",


Bug#686307: unblock: ocl-icd/1.3-3

2012-08-30 Thread Vincent Danjean
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock package ocl-icd

  Hi,

  I just released a new (upstream) version [1.4] of ocl-icd that fix important
bugs. As the new 1.4 version also contains refactorized code that would lead
to lots of difference with the actual sources in Debian, I backported only the
bug fixes. I think they should really be applied for wheezy.

  ocl-icd is an implementation of libOpenCL.so, the library that is used by
any OpenCL programs.
ocl-icd is not an OpenCL implementation, it is only a ICD loader, ie a
"dispatcher" between all real OpenCL implementations available.

  The following issues are fixed:
- the OpenCL.pc file provided in the ocl-icd-opencl-dev package was using
  the ocl-icd version as its declared version. Programs using OpenCL.pc
  are not interested in selecting the version of ocl-icd but more in
  selecting the supported OpenCL version.
- 3 functions that can be called at the begining of an OpenCL program
  did not call the internal function that initialize the library
  leading to crashes
- 1 function must accept a NULL parameter according to the spec and
  it was not the case until this correction

It also improves a bit the README.Debian file (changes that were commited
two month ago in the git repo). I can revert it if you ask but I do not
see any harm into giving more up-to-date documentation.

Note that there is no reverse dependencies in wheezy for this package.
These bugs have been discovered when running OpenCL programs with the
POCL (free) implementation not yet packaged in Debian.
The proposed package is able to run the POCL testsuite.

Note also that I did not yet upload the new package (1.3-3). You can see
it here:
http://moais.imag.fr/membres/vincent.danjean/debian/pool/main/o/ocl-icd/
And the debdiff against the 1.3-2 version currently in testing is in
attachment.

  I'm waiting your feedback before uploading my package.

  Regards,
Vincent

unblock ocl-icd/1.3-3

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

Kernel: Linux 3.2.0-3-amd64 (SMP w/8 CPU cores)
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.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/20120830235614.8664.18841.report...@eyak.imag.fr



Bug#686301: unblock: libheimdal-kadm5-perl/0.08-4

2012-08-30 Thread Russ Allbery
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock package libheimdal-kadm5-perl to fix RC bug #686299.
The explanation from the upstream commit message:

Call the public kadm5 API functions instead of the internal ones

The kadm5_c_* functions are an internal API.  The public functions
are the ones without the _c, which dispatch to the internal functions
depending on whether one links with the client library or the server
library.  By calling the _c functions, we don't get the benefit of
prototype checking and fail if the internal function signature ever
changes.

The latter has now happened with Heimdal 1.6 currently used in Debian,
and as a result the create_principal and chpass_principal functions
here have stopped working because they provide the wrong number of
arguments and the Heimdal library sees random stack garbage as the
additional function arguments.

Replace all C calls to use the versions without _c, since this module
doesn't attempt to support the _s and _c interfaces simultaneously
anyway and therefore no benefit accrues from calling the _c functions.
This also fixes the backward-compatibility problem, since the public
API did not change, only the internal function API.

The debdiff just has the changelog entry and the addition of the patch.
The patch header is not particularly ideal; sorry about that.  I need to
do more cleanup in the long run of the packaging to set a default patch
header for Debian changes, and missed that before I'd uploaded the package.
It should be harmless, just not as well-documented as it could be; if
you'd like me to upload a new version with a better patch header, I can
do that.

Attached is the diff (rather than the diff of the diff) to make the change
easier to review.  All it does is drop the _c from the various function
calls and related error messages.

unblock libheimdal-kadm5-perl/0.08-4

-- System Information:
Debian Release: wheezy/sid
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)

Kernel: Linux 3.2.0-2-686-pae (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
commit 00fbf80098a1f8fea014c9849f8adcd615ff1687
Author: Russ Allbery 
Date:   Thu Aug 30 16:28:43 2012 -0700

Call the public kadm5 API functions instead of the internal ones

The kadm5_c_* functions are an internal API.  The public functions
are the ones without the _c, which dispatch to the internal functions
depending on whether one links with the client library or the server
library.  By calling the _c functions, we don't get the benefit of
prototype checking and fail if the internal function signature ever
changes.

The latter has now happened with Heimdal 1.6 currently used in Debian,
and as a result the create_principal and chpass_principal functions
here have stopped working because they provide the wrong number of
arguments and the Heimdal library sees random stack garbage as the
additional function arguments.

Replace all C calls to use the versions without _c, since this module
doesn't attempt to support the _s and _c interfaces simultaneously
anyway and therefore no benefit accrues from calling the _c functions.
This also fixes the backward-compatibility problem, since the public
API did not change, only the internal function API.

diff --git a/Kadm5.xs b/Kadm5.xs
index f1312f8..8ee5d73 100644
--- a/Kadm5.xs
+++ b/Kadm5.xs
@@ -218,10 +218,10 @@ DESTROY(handle)
  {
if (handle->modcount > 0)
 	 {
-	   kadm5_c_flush(handle->ptr);
+	   kadm5_flush(handle->ptr);
 	 }
if (handle->ptr)
-  kadm5_c_destroy(handle->ptr);
+  kadm5_destroy(handle->ptr);
if (handle->context)
   krb5_free_context(handle->context);
safefree(handle);
@@ -237,7 +237,7 @@ kadm5_c_init_with_password (handle, client_name, password, service_name, struct_
  unsigned long api_version
  CODE:
  {
-   kadm5_ret_t ret = kadm5_c_init_with_password_ctx(handle->context,
+   kadm5_ret_t ret = kadm5_init_with_password_ctx(handle->context,
 			client_name,
 			password,
 			KADM5_ADMIN_SERVICE, 
@@ -246,7 +246,7 @@ kadm5_c_init_with_password (handle, client_name, password, service_name, struct_
 			api_version,
 			&handle->ptr);
if(ret)
-	croak("[Heimdal::Kadm5] kadm5_c_init_with_password_ctx failed: %s\n",
+	croak("[Heimdal::Kadm5] kadm5_init_with_password_ctx failed: %s\n",
 		  krb5_get_err_text(handle->context, ret));
 
if (password != NULL && *password != '\0')
@@ -263,7 +263,7 @@ kadm5_c_init_with_skey (handle, client_name, keytab, service_name, struct_versio
  unsigned long api_version
  CODE:
  {
-   kadm5_ret_t ret = ka

Bug#686296: unblock: gnome-settings-daemon/3.4.2-5

2012-08-30 Thread Michael Biebl
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock package gnome-settings-daemon

It contains an important bug fix for the fallback/classic mode where the
battery status icon was not properly updated.

Full debdiff attached.

Cheers,
Michael

unblock gnome-settings-daemon/3.4.2-5

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

Kernel: Linux 3.2.0-3-amd64 (SMP w/4 CPU cores)
Locale: LANG=de_DE.utf8, LC_CTYPE=de_DE.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
diff -Nru gnome-settings-daemon-3.4.2/debian/changelog gnome-settings-daemon-3.4.2/debian/changelog
--- gnome-settings-daemon-3.4.2/debian/changelog	2012-07-27 16:06:29.0 +0200
+++ gnome-settings-daemon-3.4.2/debian/changelog	2012-08-30 23:36:40.0 +0200
@@ -1,3 +1,11 @@
+gnome-settings-daemon (3.4.2-5) unstable; urgency=low
+
+  * debian/patches/power-update-fallback-status-icon.patch: Update battery
+status icon in fallback mode when switching between battery and AC power.
+Patch cherry-picked from upstream Git. (Closes: #678352)
+
+ -- Michael Biebl   Thu, 30 Aug 2012 23:36:38 +0200
+
 gnome-settings-daemon (3.4.2-4) unstable; urgency=low
 
   * debian/patches/24-common-Try-XI-2.2-if-XI-2.0-fails.patch:
diff -Nru gnome-settings-daemon-3.4.2/debian/patches/power-update-fallback-status-icon.patch gnome-settings-daemon-3.4.2/debian/patches/power-update-fallback-status-icon.patch
--- gnome-settings-daemon-3.4.2/debian/patches/power-update-fallback-status-icon.patch	1970-01-01 01:00:00.0 +0100
+++ gnome-settings-daemon-3.4.2/debian/patches/power-update-fallback-status-icon.patch	2012-06-28 07:50:20.0 +0200
@@ -0,0 +1,34 @@
+commit fa834c27d783c290856d9d24fbc4a29acb8e4456
+Author: Daniel Drake 
+Date:   Fri Jun 1 15:45:04 2012 -0600
+
+power: update fallback status icon on icon state change
+
+When the icon was being changed from one icon to another, the fallback
+icon was not being updated.
+
+This meant that unplugging or re-plugging AC power on OLPC laptops
+was not updating the icon (even though the tooltip updated just fine).
+
+Add a missing call to update the GtkStatusIcon when the internal GIcon
+changes.
+
+Fixes http://dev.laptop.org/ticket/11878
+
+https://bugzilla.gnome.org/show_bug.cgi?id=677313
+
+diff --git a/plugins/power/gsd-power-manager.c b/plugins/power/gsd-power-manager.c
+index 1d60723..abec33f 100644
+--- a/plugins/power/gsd-power-manager.c
 b/plugins/power/gsd-power-manager.c
+@@ -711,6 +711,10 @@ engine_recalculate_state_icon (GsdPowerManager *manager)
+ 
+ /* icon before, now different */
+ if (!g_icon_equal (manager->priv->previous_icon, icon)) {
++
++/* set fallback icon */
++gtk_status_icon_set_from_gicon (manager->priv->status_icon, icon);
++
+ g_object_unref (manager->priv->previous_icon);
+ manager->priv->previous_icon = icon;
+ return TRUE;
diff -Nru gnome-settings-daemon-3.4.2/debian/patches/series gnome-settings-daemon-3.4.2/debian/patches/series
--- gnome-settings-daemon-3.4.2/debian/patches/series	2012-07-27 13:38:20.0 +0200
+++ gnome-settings-daemon-3.4.2/debian/patches/series	2012-07-29 12:08:25.0 +0200
@@ -2,6 +2,7 @@
 10_smaller_syndaemon_timeout.patch
 power-check-null-devices.patch
 power-ignore-bad-dbus-requests.patch
+power-update-fallback-status-icon.patch
 revert_git_datetime_dropping.patch
 20_disable-wacom-support-on-s390-s390x.patch
 21_disable-wacom-on-non-Linux-platforms.patch


Bug#686293: Freeze exception for libquantum/1.1.0-3

2012-08-30 Thread Boris Pek
Package: release.debian.org
Severity: normal

Dear release team,

Please consider a release exception for the package libquantum version 1.1.0-3.

Best regards,
Boris
diff -Nru libquantum-1.1.0/debian/changelog libquantum-1.1.0/debian/changelog
--- libquantum-1.1.0/debian/changelog	2012-06-25 18:58:55.0 +0300
+++ libquantum-1.1.0/debian/changelog	2012-08-31 01:08:28.0 +0300
@@ -1,7 +1,17 @@
+libquantum (1.1.0-3) unstable; urgency=low
+
+  * New maintainer. (Closes: #674883)
+  * Update Vcs-* fields in debian/control.
+  * Small fix in debian/changelog.
+  * Add patch: debian/patches/add-hardening-flags-to-compiler-options
+
+ -- Boris Pek   Fri, 31 Aug 2012 01:07:44 +0300
+
 libquantum (1.1.0-2) unstable; urgency=low
 
+  [ Boris Pek ]
   * QA upload.
-  * Deleted Vcs-* fields from debian/control.
+  * Updated Vcs-* fields in debian/control.
   * Package was switched to source format 3.0 (quilt).
   * Added build dependency from autotools-dev.
   * Bumped Standards-Version to 3.9.3.
diff -Nru libquantum-1.1.0/debian/control libquantum-1.1.0/debian/control
--- libquantum-1.1.0/debian/control	2012-06-25 18:59:20.0 +0300
+++ libquantum-1.1.0/debian/control	2012-08-31 01:08:28.0 +0300
@@ -2,12 +2,12 @@
 Section: libs
 Priority: optional
 Maintainer: Debian Science Team 
+Uploaders: Boris Pek 
 Standards-Version: 3.9.3
 Build-Depends: debhelper (>= 7.0.50~), autotools-dev
 Homepage: http://www.libquantum.de/
-Vcs-Svn: svn://svn.debian.org/svn/debian-science/packages/libquantum/trunk/
-Vcs-Browser: http://svn.debian.org/viewsvn/debian-science/packages/libquantum/trunk/
-
+Vcs-Git: git://anonscm.debian.org/debian-science/packages/libquantum.git
+Vcs-Browser: http://anonscm.debian.org/git/debian-science/packages/libquantum.git
 
 Package: libquantum-dev
 Section: libdevel
diff -Nru libquantum-1.1.0/debian/patches/add-hardening-flags-to-compiler-options libquantum-1.1.0/debian/patches/add-hardening-flags-to-compiler-options
--- libquantum-1.1.0/debian/patches/add-hardening-flags-to-compiler-options	1970-01-01 03:00:00.0 +0300
+++ libquantum-1.1.0/debian/patches/add-hardening-flags-to-compiler-options	2012-08-31 01:08:28.0 +0300
@@ -0,0 +1,15 @@
+Description: Add hardening flags to compiler options
+Author: Boris Pek 
+Last-Update: 2012-08-31
+
+--- a/Makefile.in
 b/Makefile.in
+@@ -49,7 +49,7 @@
+ # Flags passed to C compiler
+ 
+ CFLAGS=@CFLAGS@
+-LDFLAGS=-rpath $(LIBDIR) -version-info 7:0:0
++LDFLAGS=@LDFLAGS@ -rpath $(LIBDIR) -version-info 7:0:0
+ 
+ # Dependencies
+ 
diff -Nru libquantum-1.1.0/debian/patches/series libquantum-1.1.0/debian/patches/series
--- libquantum-1.1.0/debian/patches/series	1970-01-01 03:00:00.0 +0300
+++ libquantum-1.1.0/debian/patches/series	2012-08-31 01:08:28.0 +0300
@@ -0,0 +1 @@
+add-hardening-flags-to-compiler-options


Re: Bug#678227: Bug#641967: Apt downloads all description translations

2012-08-30 Thread Samuel Thibault
David Kalnischkies, le Thu 30 Aug 2012 19:43:21 +0200, a écrit :
> On Tue, Aug 28, 2012 at 1:14 PM, Julian Andres Klode  wrote:
> > We could add a switch to apt-cdrom to copy all configured locales for
> > d-i purposes,
> 
> The question is how apt-cdrom gets to know which locales are configured.
> If I read the d-i syslog correctly apt-cdrom is run before 'locales'

No, locales is part of the base system, and thus installed and
configured before CD-ROM inspection by apt-cdrom. apt-cdrom-setup is
not a step in d-i, it's apt-setup which is one, done after bootstrap,
and invoking apt-cdrom-setup. apt-cdrom is actually run in the locale
chosen during installation, so it can simply follow that (I wonder why
it doesn't seem to be doing it).

Samuel


-- 
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/20120830220741.gn5...@type.youpi.perso.aquilenet.fr



Bug#685965: marked as done (unblock: libgpg-error/1.10-3.1)

2012-08-30 Thread Debian Bug Tracking System
Your message dated Thu, 30 Aug 2012 22:15:51 +0100
with message-id <1346361351.29555.35.ca...@jacala.jungle.funky-badger.org>
and subject line Re: Bug#685965: unblock: libgpg-error/1.10-3.1
has caused the Debian Bug report #685965,
regarding unblock: libgpg-error/1.10-3.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.)


-- 
685965: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=685965
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 libgpg-error

It's just a translation update. The debdiff is ugly (one single patch):

 changelog |   15 
 patches/l10n_update.patch | 4537 ++
 patches/series|1 
 3 files changed, 4553 insertions(+)

But it really only touches l10n stuff:

$ grep +++ debian/patches/l10n_update.patch 
+++ b/po/LINGUAS
+++ b/po/da.po
+++ b/po/ja.po
+++ b/po/cs.po
+++ b/po/de.po
+++ b/po/fr.po
+++ b/po/nl.po
+++ b/po/pl.po
+++ b/po/libgpg-error.pot

po/LINGUAS because two new languages were added, and po/libgpg-error.pot
to trigger the gmo rebuild. This translation update has been coordinated
with upstream.

unblock libgpg-error/1.10-3.1

Thanks in advance.

Regards

David

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

Kernel: Linux 3.2.0-3-amd64 (SMP w/1 CPU core)
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash


libgpg-error_init.diff.xz
Description: application/xz
--- End Message ---
--- Begin Message ---
On Mon, 2012-08-27 at 00:08 -0400, David Prévot wrote:
> Please unblock package libgpg-error
> 
> It's just a translation update. The debdiff is ugly (one single patch):

Unblocked; thanks.

Regards,

Adam--- End Message ---


Processed: Re: Bug#685960: unblock: gnupg/1.4.12-5 (pre-approval)

2012-08-30 Thread Debian Bug Tracking System
Processing control commands:

> tags 685960 + confirmed
Bug #685960 [release.debian.org] unblock: gnupg/1.4.12-5 (pre-approval)
Ignoring request to alter tags of bug #685960 to the same tags previously set

-- 
685960: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=685960
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.b685960.134636130432069.transcr...@bugs.debian.org



Bug#685960: unblock: gnupg/1.4.12-5 (pre-approval)

2012-08-30 Thread Adam D. Barratt
Control: tags 685960 + confirmed

On Mon, 2012-08-27 at 23:00 -0400, David Prévot wrote:
> Le 27/08/2012 03:00, Thijs Kinkhorst a écrit :
> 
> > The changes for enable-minimal, I consider as gnupg's maintainer not
> > suitable to upload during the freeze. I can back them out if an upload for
> > the other changes is desired.
> 
> Thank you Thijs for your quick answer, so the remaining pending changes
> in the repository is just about documentation (actual diff attached, the
> changelog will of course be prettified for the actual upload), and the
> translation update we're talking about. Both should meet the freeze policy.
> 
> Can someone from the release team please confirm that you would consider
> unblocking such an upload of gnupg, knowing that a udeb is involved too?

After a chat with KiBi the proposed changes shouldn't have any effect on
the content / behaviour of the udeb, so please go ahead.

Regards,

Adam


--
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/1346361217.29555.33.ca...@jacala.jungle.funky-badger.org



Processed: Re: Bug#685960: unblock: gnupg/1.4.12-5 (pre-approval)

2012-08-30 Thread Debian Bug Tracking System
Processing control commands:

> tags 685960 + confirmed
Bug #685960 [release.debian.org] unblock: gnupg/1.4.12-5 (pre-approval)
Added tag(s) confirmed.

-- 
685627: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=685627
685960: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=685960
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.b685627.134636130432078.transcr...@bugs.debian.org



Bug#686199: marked as done (unblock: xen-api/1.3.2-11)

2012-08-30 Thread Debian Bug Tracking System
Your message dated Thu, 30 Aug 2012 22:10:26 +0100
with message-id <1346361026.29555.30.ca...@jacala.jungle.funky-badger.org>
and subject line Re: Bug#686199: unblock: xen-api/1.3.2-11
has caused the Debian Bug report #686199,
regarding unblock: xen-api/1.3.2-11
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.)


-- 
686199: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=686199
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

Hi,

Please unblock package xen-api.

The PAM fix which we did for version 1.3.2-10 wasn't correct, and thanks to
the help of Steve Langasek, we have it in a good shape now.

The details of the conversation is available in the Ubuntu BTS here:
https://bugs.launchpad.net/ubuntu/+source/xen-api/+bug/1033899

This version of the package includes the /etc/pam.d modification that have
been suggested by Steve, and which are showing in the attached debdiff.

Please unblock xen-api/1.3.2-11

Cheers,

Thomas Goirand (zigo)
diff -Nru xen-api-1.3.2/debian/changelog xen-api-1.3.2/debian/changelog
--- xen-api-1.3.2/debian/changelog	2012-07-31 16:20:00.0 +0100
+++ xen-api-1.3.2/debian/changelog	2012-08-22 15:40:56.0 +0100
@@ -1,3 +1,9 @@
+xen-api (1.3.2-11) unstable; urgency=high
+
+  * Fix PAM settings to only allow root to issue remote commands (LP: #1033899)
+
+ -- Mike McClurg   Wed, 22 Aug 2012 15:36:31 +0100
+
 xen-api (1.3.2-10) unstable; urgency=high
 
   * Fixes access rights: any user on the server could use xe to control xapi.
diff -Nru xen-api-1.3.2/debian/patches/pam-auth-root-xapi-group xen-api-1.3.2/debian/patches/pam-auth-root-xapi-group
--- xen-api-1.3.2/debian/patches/pam-auth-root-xapi-group	2012-07-31 16:20:00.0 +0100
+++ xen-api-1.3.2/debian/patches/pam-auth-root-xapi-group	2012-08-22 15:40:56.0 +0100
@@ -1,10 +1,14 @@
 --- a/scripts/pam.d-xapi
 +++ b/scripts/pam.d-xapi
-@@ -1,4 +1,4 @@
+@@ -1,4 +1,8 @@
  #%PAM-1.0
 -auth   include common-auth
 -accountinclude common-auth
 -password   include common-auth
++@include common-auth
 +
-+auth sufficient pam_succeed_if.so user ingroup root
++# Uncomment this line to allow users of group xapi to authenticate
 +#auth sufficient pam_succeed_if.so user ingroup xapi
++
++# Only allow group root to authenticate, unless above line uncommented
++auth required pam_succeed_if.so user ingroup root
--- End Message ---
--- Begin Message ---
On Thu, 2012-08-30 at 11:02 -0700, Steve Langasek wrote:
> On Thu, Aug 30, 2012 at 06:07:55PM +0800, Thomas Goirand wrote:
> > On 08/30/2012 03:20 AM, Adam D. Barratt wrote:
> > > On Thu, 2012-08-30 at 03:01 +0800, Thomas Goirand wrote:
> > >> Please unblock package xen-api.
> 
> > >> The PAM fix which we did for version 1.3.2-10 wasn't correct, and thanks 
> > >> to
> > >> the help of Steve Langasek, we have it in a good shape now.
> 
> > >> The details of the conversation is available in the Ubuntu BTS here:
> > >> https://bugs.launchpad.net/ubuntu/+source/xen-api/+bug/1033899
[...]
> > Indeed, this is a permission problem in this page, its marked as
> > "Private Security". I'm not sure how the Ubuntu stuff works though.
[...]
> I've talked to the Ubuntu security team and they've unembargoed the bug;
> there's no reason to keep it private when there's public conversation
> pointing at the fact that it's a security issue.  So that link works now.

Thanks.  Unblocked.

Regards,

Adam--- End Message ---


Bug#683073: unblock: gnunet/0.9.3-3

2012-08-30 Thread Bertrand Marc

Dear release Team,

I fixed a minor bug in gnunet and I think it would be harmless to 
unblock it too:

* Fix the logfile name in gnunet-server.logrotate (Closes: #685856).

You will find attached the full debdiff between the current version of 
gnunet in testing/unstable and the one I'd like to see in wheezy (fixing 
a grave bug).


Do you think it would get a freeze-exception ?

Regards,
Bertrand
diff -Nru gnunet-0.9.3/debian/changelog gnunet-0.9.3/debian/changelog
--- gnunet-0.9.3/debian/changelog	2012-06-20 23:55:23.0 +0200
+++ gnunet-0.9.3/debian/changelog	2012-08-26 16:18:16.0 +0200
@@ -1,3 +1,20 @@
+gnunet (0.9.3-3) unstable; urgency=low
+
+  * debian/control: update Vcs-* to the new repository in collab-maint.
+  * Install only the generated binaries on Hurd, thanks to Cyril Roelandt
+(Closes: #670794).
+  * Use chmod and chown instead of dpkg-statoverride to set special permissions
+and upgrade properly depending on the previous version (Closes: #673301).
+  * Fix "gcc-4.6: [sparc] compiler fails to align stack-allocated
+struct, with array of uint32-values to 32-bit boundary":
+new patch sparc_alignment.patch, taken from upstream:
+https://lists.gnu.org/archive/html/gnunet-svn/2012-07/msg00548.html
+Thanks to Jurij Smakov for the analysis.
+(Closes: #670578)
+  * Fix the logfile name in gnunet-server.logrotate (Closes: #685856).
+
+ -- Bertrand Marc   Sun, 05 Aug 2012 20:13:49 +0200
+
 gnunet (0.9.3-2) unstable; urgency=low
 
   * Clean properly dpkg-statoverride in gnunet-server.postrm
diff -Nru gnunet-0.9.3/debian/control gnunet-0.9.3/debian/control
--- gnunet-0.9.3/debian/control	2012-06-10 10:29:08.0 +0200
+++ gnunet-0.9.3/debian/control	2012-08-05 20:12:01.0 +0200
@@ -10,8 +10,8 @@
  libsqlite3-dev (>=3.0), libpq-dev (>=8.3), guile-1.8-dev, libglpk-dev (>=4.32)
 Build-Conflicts: autoconf2.13, automake1.4
 Standards-Version: 3.9.3
-Vcs-Git: git://git.debian.org/git/users/bbk-guest/gnunet.git
-Vcs-browser: http://git.debian.org/?p=users/bbk-guest/gnunet.git
+Vcs-Git: git://git.debian.org/git/collab-maint/gnunet.git
+Vcs-browser: http://git.debian.org/?p=collab-maint/gnunet.git
 Homepage: http://www.gnunet.org/
 
 Package: gnunet
diff -Nru gnunet-0.9.3/debian/gnunet-server.install.hurd gnunet-0.9.3/debian/gnunet-server.install.hurd
--- gnunet-0.9.3/debian/gnunet-server.install.hurd	1970-01-01 01:00:00.0 +0100
+++ gnunet-0.9.3/debian/gnunet-server.install.hurd	2012-07-01 16:59:50.0 +0200
@@ -0,0 +1,52 @@
+etc/gnunet.conf
+usr/bin/gnunet-arm
+usr/bin/gnunet-core
+usr/bin/gnunet-daemon-*
+usr/bin/gnunet-dht-*
+usr/bin/gnunet-fs
+usr/bin/gnunet-gns*
+usr/bin/gnunet-helper-*
+usr/bin/gnunet-namestore
+usr/bin/gnunet-nat-server
+usr/bin/gnunet-peerinfo
+usr/bin/gnunet-resolver
+usr/bin/gnunet-rsa
+usr/bin/gnunet-service-*
+usr/bin/gnunet-testing
+usr/bin/gnunet-transport
+usr/bin/gnunet-transport-certificate-creation
+usr/bin/mockup-service
+usr/lib/libgnunetarm.so.*
+usr/lib/libgnunetats.so.*
+usr/lib/libgnunetblock.so.*
+usr/lib/libgnunetcore.so.*
+usr/lib/libgnunetdatacache.so.*
+usr/lib/libgnunetdht.so.*
+usr/lib/libgnunetfragmentation.so.*
+usr/lib/libgnunethello.so.*
+usr/lib/libgnunetlockmanager.so.0*
+usr/lib/libgnunetmesh.so.*
+usr/lib/libgnunetnamestore.so.*
+usr/lib/libgnunetnat.so.*
+usr/lib/libgnunetnse.so.*
+usr/lib/libgnunetpeerinfo.so.*
+usr/lib/libgnunettesting.so.*
+usr/lib/libgnunettesting_new.so.0*
+usr/lib/libgnunettestbed.so.0*
+usr/lib/libgnunettransport.so.*
+usr/lib/libgnunettransporttesting.so.*
+usr/lib/libgnunettun.so.*
+usr/lib/gnunet/*.so
+usr/share/gnunet/config.d
+usr/share/gnunet/hellos/*
+usr/share/man/man1/gnunet-arm.1
+usr/share/man/man1/gnunet-core.1
+usr/share/man/man1/gnunet-fs.1
+usr/share/man/man1/gnunet-gns.1
+usr/share/man/man1/gnunet-namestore.1
+usr/share/man/man1/gnunet-nat-server.1
+usr/share/man/man1/gnunet-peerinfo.1
+usr/share/man/man1/gnunet-rsa.1
+usr/share/man/man1/gnunet-transport.1
+usr/share/man/man1/gnunet-vpn.1
+debian/man/* usr/share/man/man1/
diff -Nru gnunet-0.9.3/debian/gnunet-server.logrotate gnunet-0.9.3/debian/gnunet-server.logrotate
--- gnunet-0.9.3/debian/gnunet-server.logrotate	2012-05-05 17:39:22.0 +0200
+++ gnunet-0.9.3/debian/gnunet-server.logrotate	2012-08-26 16:16:45.0 +0200
@@ -1,4 +1,4 @@
-/var/log/gnunetd/gnunet.log {
+/var/log/gnunetd/gnunetd.log {
 	weekly
 	size=100k
 	rotate 7
diff -Nru gnunet-0.9.3/debian/gnunet-server.postinst gnunet-0.9.3/debian/gnunet-server.postinst
--- gnunet-0.9.3/debian/gnunet-server.postinst	2012-06-07 23:13:17.0 +0200
+++ gnunet-0.9.3/debian/gnunet-server.postinst	2012-07-07 15:50:27.0 +0200
@@ -52,6 +52,24 @@
 			echo " done."
 		fi
 
+		# this can go away after wheezy
+		if dpkg --compare-versions "$2" le "0.9.3-2" && dpkg --compare-versions "$2" ge "0.9.2-1"; then
+			for file in /usr/bin/gnunet-helper-exit \
+/usr/bin/gnunet-helper-fs-publish \
+/usr/bin/gnunet-helper-nat-clie

Bug#675447: nmu: netcdf_1:4.1.3-6

2012-08-30 Thread Salvatore Bonaccorso
Hi Cyril

On Fri, Jun 01, 2012 at 11:48:28AM +0200, Cyril Brulebois wrote:
> Ólafur Jens Sigurðsson  (01/06/2012):
> > netcdf is causing FTBS for packages that rely on
> > /usr/include/netcdf.mod because they use gfortran-4.7 but the mod file
> > is built against gfortran-4.6.
> 
> we're trying to get that switch reverted, so binNMUing your package
> might not be needed.
> 
> > nmu netcdf_1:4.1.3-6 . ALL . -m "Rebuild against gfortran-4.7, see #671965"
> 
> That's incorrect anyway, the switch only happened on *{amd64,i386}.

[I'm not the maintainer of this package but looking at currently open
RC bugs for wheezy.]

Am I correct, that as now we have (definitively) gcc defaults to 4.7
for amd64, i386, kfreebsd-amd66 and kfreebsd-i386 a binNMU can be done?

nmu netcdf_1:4.1.3-6 . amd64,i386,kfreebsd-amd64,kfreebsd-i386 . -m "Rebuild 
against gfortran-4.7, see #671965"

Regards,
Salvatore


signature.asc
Description: Digital signature


Bug#686271: marked as done (unblock: phalanx/22+d051004-13.1)

2012-08-30 Thread Debian Bug Tracking System
Your message dated Thu, 30 Aug 2012 20:45:31 +0100
with message-id <1346355931.29555.26.ca...@jacala.jungle.funky-badger.org>
and subject line Re: Bug#686271: unblock: phalanx/22+d051004-13.1
has caused the Debian Bug report #686271,
regarding unblock: phalanx/22+d051004-13.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.)


-- 
686271: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=686271
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 phalanx, it's just a debconf translation update.

unblock phalanx/22+d051004-13.1

Thanks in advance, regards.

David

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

Kernel: Linux 3.2.0-3-amd64 (SMP w/1 CPU core)
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
diff -Nru phalanx-22+d051004/debian/changelog phalanx-22+d051004/debian/changelog
--- phalanx-22+d051004/debian/changelog	2011-10-28 04:54:38.0 -0400
+++ phalanx-22+d051004/debian/changelog	2012-08-25 11:33:00.0 -0400
@@ -1,3 +1,13 @@
+phalanx (22+d051004-13.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Add da.po Closes: #666519. Sent by Joe Hansen 
+  * Add sk.po Closes: #685556. Sent by Slavko 
+  * Add pl.po Closes: #685702. Sent by Michał Kułach 
+  * Add it.po Closes: #685857. Sent by Beatrice Torracca 
+
+ -- David Prévot   Sat, 25 Aug 2012 11:32:53 -0400
+
 phalanx (22+d051004-13) unstable; urgency=low
 
   * debian/rules:
diff -Nru phalanx-22+d051004/debian/po/da.po phalanx-22+d051004/debian/po/da.po
--- phalanx-22+d051004/debian/po/da.po	1969-12-31 20:00:00.0 -0400
+++ phalanx-22+d051004/debian/po/da.po	2012-08-20 11:34:11.0 -0400
@@ -0,0 +1,62 @@
+# Danish translation phalanx.
+# Copyright (C) 2012 phalanx & nedenstående oversættere.
+# This file is distributed under the same license as the phalanx package.
+# Joe Hansen , 2012.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: phalanx\n"
+"Report-Msgid-Bugs-To: ba...@knars.be\n"
+"POT-Creation-Date: 2006-08-15 00:19+0200\n"
+"PO-Revision-Date: 2012-03-31 23:51+0200\n"
+"Last-Translator: Joe Hansen \n"
+"Language-Team: Danish \n"
+"Language: da\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 "Learning file size (1-99):"
+msgstr "Filstørrelse for læringsfil (1-99):"
+
+#. Type: string
+#. Description
+#: ../templates:1001
+msgid ""
+"The learning file may improve Phalanx strength. Each item in this file uses "
+"8 bytes."
+msgstr ""
+"Læringsfilen kan forbedre Phalanx' styrke. Hvert punkt i denne fil bruger "
+"8 byte."
+
+#. Type: string
+#. Description
+#: ../templates:1001
+msgid ""
+"Please specify a number in the range 1-99. The size may be changed later "
+"by reconfiguring the package but this will erase any data the file may then "
+"contain."
+msgstr ""
+"Angiv venligst et tal i intervallet 1-99. Størrelsen kan ændres "
+"senere ved at omkonfigurere pakken, men dette vil slette alle data i "
+"filen."
+
+#. Type: boolean
+#. Description
+#: ../templates:2001
+msgid "Really change the size of the learning file and erase its data?"
+msgstr "Ønsker du at ændre størrelsen på læringsfilen og slette dens data?"
+
+#. Type: boolean
+#. Description
+#: ../templates:2001
+msgid ""
+"You chose to change the size of the learning file used by phalanx for "
+"improving its strength.  This will erase all the learned data."
+msgstr ""
+"Du valgte at ændre størrelsen på læringsfilen brugt af phalanx for "
+"forbedring af dens styrke. Dette vil slette alle læringsdataene."
+
diff -Nru phalanx-22+d051004/debian/po/it.po phalanx-22+d051004/debian/po/it.po
--- phalanx-22+d051004/debian/po/it.po	1969-12-31 20:00:00.0 -0400
+++ phalanx-22+d051004/debian/po/it.po	2012-08-25 11:32:15.0 -0400
@@ -0,0 +1,64 @@
+# Italian translation of phalanx debconf messages
+# Copyright (C) 2012, phalanx package copyright holder
+# This file is distributed under the same license as the phalanx package.
+# Beatrice Torracca , 2012.
+msgid ""
+msgstr ""
+"Project-Id-Version: phalanx\n"
+"Report-Msgid-Bugs-To: ba...@knars.be\n"
+"POT-Creation-Date: 2006-08-15 00:19+0200\n"
+"PO-Revision-Date: 2012-08-23 12:10+0200\n"
+"Last-Translato

Bug#686268: marked as done (unblock: pdnsd/1.2.8-par-2.3)

2012-08-30 Thread Debian Bug Tracking System
Your message dated Thu, 30 Aug 2012 20:46:28 +0100
with message-id <1346355988.29555.27.ca...@jacala.jungle.funky-badger.org>
and subject line Re: Bug#686268: unblock: pdnsd/1.2.8-par-2.3
has caused the Debian Bug report #686268,
regarding unblock: pdnsd/1.2.8-par-2.3
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.)


-- 
686268: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=686268
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 pdnsd, it's just a debconf translation update.

unblock pdnsd/1.2.8-par-2.3

Thanks in advance, regards.

David

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

Kernel: Linux 3.2.0-3-amd64 (SMP w/1 CPU core)
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
diff -Nru pdnsd-1.2.8-par/debian/changelog pdnsd-1.2.8-par/debian/changelog
--- pdnsd-1.2.8-par/debian/changelog	2011-12-06 09:04:45.0 -0400
+++ pdnsd-1.2.8-par/debian/changelog	2012-08-25 12:42:51.0 -0400
@@ -1,3 +1,14 @@
+pdnsd (1.2.8-par-2.3) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Fix pending l10n issues. Debconf translations:
+- Danish (Joe Hansen). (Closes: #659236)
+- Polish (Michał Kułach). (Closes: #685699)
+- Brazilian Portuguese (Adriano Rafael Gomes). (Closes: #685869)
+- French: typo fix (newlines).
+
+ -- David Prévot   Sat, 25 Aug 2012 12:42:24 -0400
+
 pdnsd (1.2.8-par-2.2) unstable; urgency=low
 
   * Non-maintainer upload.
diff -Nru pdnsd-1.2.8-par/debian/po/da.po pdnsd-1.2.8-par/debian/po/da.po
--- pdnsd-1.2.8-par/debian/po/da.po	1969-12-31 20:00:00.0 -0400
+++ pdnsd-1.2.8-par/debian/po/da.po	2012-08-25 11:39:24.0 -0400
@@ -0,0 +1,78 @@
+# Danish translation pdnsd.
+# Copyright (C) 2012 pdnsd & nedenstående oversættere.
+# This file is distributed under the same license as the pdnsd package.
+# Joe Hansen (joedalt...@yahoo.dk), 2012.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: pdnsd\n"
+"Report-Msgid-Bugs-To: madco...@debian.org\n"
+"POT-Creation-Date: 2007-08-03 14:16+0200\n"
+"PO-Revision-Date: 2012-02-09 12:42+\n"
+"Last-Translator: Joe Hansen \n"
+"Language-Team: Danish \n"
+"Language: da\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. Type: select
+#. Choices
+#: ../templates:1001
+msgid "Use resolvconf"
+msgstr "Brug resolvconf"
+
+#. Type: select
+#. Choices
+#: ../templates:1001
+msgid "Use root servers"
+msgstr "Brug administratorservere (root)"
+
+#. Type: select
+#. Choices
+#: ../templates:1001
+msgid "Manual"
+msgstr "Manuelt"
+
+#. Type: select
+#. Description
+#: ../templates:1002
+msgid "General type of pdnsd configuration:"
+msgstr "Generel type for pdnsd-konfiguration:"
+
+#. Type: select
+#. Description
+#: ../templates:1002
+msgid ""
+"Please select the pdnsd configuration method that best meets your needs."
+msgstr ""
+"Vælg venligst pdnsd-konfigurationsmetoden som bedst møder dine behov."
+
+#. Type: select
+#. Description
+#: ../templates:1002
+msgid ""
+" - Use resolvconf  : use informations provided by resolvconf.\n"
+" - Use root servers: make pdnsd behave like a caching, recursive DNS\n"
+" server.\n"
+" - Manual  : completely manual configuration. The pdnsd daemon\n"
+" will not start until you edit /etc/pdnsd.conf and\n"
+" /etc/default/pdnsd."
+msgstr ""
+" - Brug resolvconf  : brug informationer tilbudt af resolvconf.\n"
+" - Brug adm.servere : lad pdnsd opføre sig som en mellemlagrende, rekursiv\n"
+"  DNS-server.\n"
+" - Manuelt  : fuldstændig manuel konfiguration. Pdnsd-dæmonen\n"
+"  vil ikke starte før du redigerer /etc/pdnsd.conf og\n"
+"  /etc/default/pdnsd."
+
+#. Type: select
+#. Description
+#: ../templates:1002
+msgid ""
+"Note: If you already use a DNS server that listens to 127.0.0.1:53, you have "
+"to choose \"Manual\"."
+msgstr ""
+"Bemærk: Hvis du allerede bruger en DNS-server som lytter på 127.0.0.1:53, så "
+"skal du vælge »manuelt«."
+
diff -Nru pdnsd-1.2.8-par/debian/po/fr.po pdnsd-1.2.8-par/debian/po/fr.po
--- pdnsd-1.2.8-par/debian/po/fr.po	2011-01-11 21:03:27.0 -0400
+++ pdnsd-1.2.8-par/debian/po/fr.po	2012-08-25 12:48

Bug#686272: marked as done (unblock: otrs2/3.1.7+dfsg1-5)

2012-08-30 Thread Debian Bug Tracking System
Your message dated Thu, 30 Aug 2012 20:44:17 +0100
with message-id <1346355857.29555.25.ca...@jacala.jungle.funky-badger.org>
and subject line Re: Bug#686272: unblock: otrs2/3.1.7+dfsg1-5
has caused the Debian Bug report #686272,
regarding unblock: otrs2/3.1.7+dfsg1-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.)


-- 
686272: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=686272
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 otrs2

Changelog:
* Add upstream patch 29-security-tag-nesting to improve HTML security to
  detect tag nasting.

It only includes an upstream patch to improve the detection of tag nasting.
This change/patch also is available in todays DSA 2536-1.
3.1.10 of the package - with the patch included - is also ACCEPTED in
experimental today.

I have uploaded otrs2/3.1.7+dfsg1-5 with urgency=medium, maybe overriding it to
high would be a good idea?

unblock otrs2/3.1.7+dfsg1-5

-- 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/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 ---
On Thu, 2012-08-30 at 21:25 +0200, Patrick Matthäi wrote:
> Please unblock package otrs2
> 
> Changelog:
> * Add upstream patch 29-security-tag-nesting to improve HTML security to
>   detect tag nasting.
   |
   e

> It only includes an upstream patch to improve the detection of tag nasting.
> This change/patch also is available in todays DSA 2536-1.

Unblocked.

Regards,

Adam--- End Message ---


Bug#686272: unblock: otrs2/3.1.7+dfsg1-5

2012-08-30 Thread Patrick Matthäi
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock package otrs2

Changelog:
* Add upstream patch 29-security-tag-nesting to improve HTML security to
  detect tag nasting.

It only includes an upstream patch to improve the detection of tag nasting.
This change/patch also is available in todays DSA 2536-1.
3.1.10 of the package - with the patch included - is also ACCEPTED in
experimental today.

I have uploaded otrs2/3.1.7+dfsg1-5 with urgency=medium, maybe overriding it to
high would be a good idea?

unblock otrs2/3.1.7+dfsg1-5

-- 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/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/20120830192547.3194.13666.report...@srv1.linux-dev.org



Bug#686271: unblock: phalanx/22+d051004-13.1

2012-08-30 Thread David Prévot
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock package phalanx, it's just a debconf translation update.

unblock phalanx/22+d051004-13.1

Thanks in advance, regards.

David

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

Kernel: Linux 3.2.0-3-amd64 (SMP w/1 CPU core)
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
diff -Nru phalanx-22+d051004/debian/changelog phalanx-22+d051004/debian/changelog
--- phalanx-22+d051004/debian/changelog	2011-10-28 04:54:38.0 -0400
+++ phalanx-22+d051004/debian/changelog	2012-08-25 11:33:00.0 -0400
@@ -1,3 +1,13 @@
+phalanx (22+d051004-13.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Add da.po Closes: #666519. Sent by Joe Hansen 
+  * Add sk.po Closes: #685556. Sent by Slavko 
+  * Add pl.po Closes: #685702. Sent by Michał Kułach 
+  * Add it.po Closes: #685857. Sent by Beatrice Torracca 
+
+ -- David Prévot   Sat, 25 Aug 2012 11:32:53 -0400
+
 phalanx (22+d051004-13) unstable; urgency=low
 
   * debian/rules:
diff -Nru phalanx-22+d051004/debian/po/da.po phalanx-22+d051004/debian/po/da.po
--- phalanx-22+d051004/debian/po/da.po	1969-12-31 20:00:00.0 -0400
+++ phalanx-22+d051004/debian/po/da.po	2012-08-20 11:34:11.0 -0400
@@ -0,0 +1,62 @@
+# Danish translation phalanx.
+# Copyright (C) 2012 phalanx & nedenstående oversættere.
+# This file is distributed under the same license as the phalanx package.
+# Joe Hansen , 2012.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: phalanx\n"
+"Report-Msgid-Bugs-To: ba...@knars.be\n"
+"POT-Creation-Date: 2006-08-15 00:19+0200\n"
+"PO-Revision-Date: 2012-03-31 23:51+0200\n"
+"Last-Translator: Joe Hansen \n"
+"Language-Team: Danish \n"
+"Language: da\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 "Learning file size (1-99):"
+msgstr "Filstørrelse for læringsfil (1-99):"
+
+#. Type: string
+#. Description
+#: ../templates:1001
+msgid ""
+"The learning file may improve Phalanx strength. Each item in this file uses "
+"8 bytes."
+msgstr ""
+"Læringsfilen kan forbedre Phalanx' styrke. Hvert punkt i denne fil bruger "
+"8 byte."
+
+#. Type: string
+#. Description
+#: ../templates:1001
+msgid ""
+"Please specify a number in the range 1-99. The size may be changed later "
+"by reconfiguring the package but this will erase any data the file may then "
+"contain."
+msgstr ""
+"Angiv venligst et tal i intervallet 1-99. Størrelsen kan ændres "
+"senere ved at omkonfigurere pakken, men dette vil slette alle data i "
+"filen."
+
+#. Type: boolean
+#. Description
+#: ../templates:2001
+msgid "Really change the size of the learning file and erase its data?"
+msgstr "Ønsker du at ændre størrelsen på læringsfilen og slette dens data?"
+
+#. Type: boolean
+#. Description
+#: ../templates:2001
+msgid ""
+"You chose to change the size of the learning file used by phalanx for "
+"improving its strength.  This will erase all the learned data."
+msgstr ""
+"Du valgte at ændre størrelsen på læringsfilen brugt af phalanx for "
+"forbedring af dens styrke. Dette vil slette alle læringsdataene."
+
diff -Nru phalanx-22+d051004/debian/po/it.po phalanx-22+d051004/debian/po/it.po
--- phalanx-22+d051004/debian/po/it.po	1969-12-31 20:00:00.0 -0400
+++ phalanx-22+d051004/debian/po/it.po	2012-08-25 11:32:15.0 -0400
@@ -0,0 +1,64 @@
+# Italian translation of phalanx debconf messages
+# Copyright (C) 2012, phalanx package copyright holder
+# This file is distributed under the same license as the phalanx package.
+# Beatrice Torracca , 2012.
+msgid ""
+msgstr ""
+"Project-Id-Version: phalanx\n"
+"Report-Msgid-Bugs-To: ba...@knars.be\n"
+"POT-Creation-Date: 2006-08-15 00:19+0200\n"
+"PO-Revision-Date: 2012-08-23 12:10+0200\n"
+"Last-Translator: Beatrice Torracca \n"
+"Language-Team: Italian \n"
+"Language: it\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Virtaal 0.7.1\n"
+
+#. Type: string
+#. Description
+#: ../templates:1001
+msgid "Learning file size (1-99):"
+msgstr "Dimensione del file di apprendimento (1-99):"
+
+#. Type: string
+#. Description
+#: ../templates:1001
+msgid ""
+"The learning file may improve Phalanx strength. Each item in this file uses "
+"8 bytes."
+msgstr ""
+"Il file di apprendimento può migliorare la forza di Phalanx. Ogni voce in "
+"questo file occupa 8 byte."
+
+#. Type: string
+#. Description
+#: ../templates:1001
+msgid ""
+"Please specify a number in the range 1-99. The size may be changed later "
+"by reconfiguring the pack

Bug#686268: unblock: pdnsd/1.2.8-par-2.3

2012-08-30 Thread David Prévot
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock package pdnsd, it's just a debconf translation update.

unblock pdnsd/1.2.8-par-2.3

Thanks in advance, regards.

David

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

Kernel: Linux 3.2.0-3-amd64 (SMP w/1 CPU core)
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
diff -Nru pdnsd-1.2.8-par/debian/changelog pdnsd-1.2.8-par/debian/changelog
--- pdnsd-1.2.8-par/debian/changelog	2011-12-06 09:04:45.0 -0400
+++ pdnsd-1.2.8-par/debian/changelog	2012-08-25 12:42:51.0 -0400
@@ -1,3 +1,14 @@
+pdnsd (1.2.8-par-2.3) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Fix pending l10n issues. Debconf translations:
+- Danish (Joe Hansen). (Closes: #659236)
+- Polish (Michał Kułach). (Closes: #685699)
+- Brazilian Portuguese (Adriano Rafael Gomes). (Closes: #685869)
+- French: typo fix (newlines).
+
+ -- David Prévot   Sat, 25 Aug 2012 12:42:24 -0400
+
 pdnsd (1.2.8-par-2.2) unstable; urgency=low
 
   * Non-maintainer upload.
diff -Nru pdnsd-1.2.8-par/debian/po/da.po pdnsd-1.2.8-par/debian/po/da.po
--- pdnsd-1.2.8-par/debian/po/da.po	1969-12-31 20:00:00.0 -0400
+++ pdnsd-1.2.8-par/debian/po/da.po	2012-08-25 11:39:24.0 -0400
@@ -0,0 +1,78 @@
+# Danish translation pdnsd.
+# Copyright (C) 2012 pdnsd & nedenstående oversættere.
+# This file is distributed under the same license as the pdnsd package.
+# Joe Hansen (joedalt...@yahoo.dk), 2012.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: pdnsd\n"
+"Report-Msgid-Bugs-To: madco...@debian.org\n"
+"POT-Creation-Date: 2007-08-03 14:16+0200\n"
+"PO-Revision-Date: 2012-02-09 12:42+\n"
+"Last-Translator: Joe Hansen \n"
+"Language-Team: Danish \n"
+"Language: da\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. Type: select
+#. Choices
+#: ../templates:1001
+msgid "Use resolvconf"
+msgstr "Brug resolvconf"
+
+#. Type: select
+#. Choices
+#: ../templates:1001
+msgid "Use root servers"
+msgstr "Brug administratorservere (root)"
+
+#. Type: select
+#. Choices
+#: ../templates:1001
+msgid "Manual"
+msgstr "Manuelt"
+
+#. Type: select
+#. Description
+#: ../templates:1002
+msgid "General type of pdnsd configuration:"
+msgstr "Generel type for pdnsd-konfiguration:"
+
+#. Type: select
+#. Description
+#: ../templates:1002
+msgid ""
+"Please select the pdnsd configuration method that best meets your needs."
+msgstr ""
+"Vælg venligst pdnsd-konfigurationsmetoden som bedst møder dine behov."
+
+#. Type: select
+#. Description
+#: ../templates:1002
+msgid ""
+" - Use resolvconf  : use informations provided by resolvconf.\n"
+" - Use root servers: make pdnsd behave like a caching, recursive DNS\n"
+" server.\n"
+" - Manual  : completely manual configuration. The pdnsd daemon\n"
+" will not start until you edit /etc/pdnsd.conf and\n"
+" /etc/default/pdnsd."
+msgstr ""
+" - Brug resolvconf  : brug informationer tilbudt af resolvconf.\n"
+" - Brug adm.servere : lad pdnsd opføre sig som en mellemlagrende, rekursiv\n"
+"  DNS-server.\n"
+" - Manuelt  : fuldstændig manuel konfiguration. Pdnsd-dæmonen\n"
+"  vil ikke starte før du redigerer /etc/pdnsd.conf og\n"
+"  /etc/default/pdnsd."
+
+#. Type: select
+#. Description
+#: ../templates:1002
+msgid ""
+"Note: If you already use a DNS server that listens to 127.0.0.1:53, you have "
+"to choose \"Manual\"."
+msgstr ""
+"Bemærk: Hvis du allerede bruger en DNS-server som lytter på 127.0.0.1:53, så "
+"skal du vælge »manuelt«."
+
diff -Nru pdnsd-1.2.8-par/debian/po/fr.po pdnsd-1.2.8-par/debian/po/fr.po
--- pdnsd-1.2.8-par/debian/po/fr.po	2011-01-11 21:03:27.0 -0400
+++ pdnsd-1.2.8-par/debian/po/fr.po	2012-08-25 12:48:39.0 -0400
@@ -10,6 +10,7 @@
 "PO-Revision-Date: 2007-08-04 09:14+0200\n"
 "Last-Translator: Christian Perrier \n"
 "Language-Team: French \n"
+"Language: fr\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
@@ -60,13 +61,13 @@
 " /etc/default/pdnsd."
 msgstr ""
 " - Utiliser resolvconf : utiliser les informations fournies par\n"
-" le programme resolvconf ;  - Utiliser les serveurs "
-"racine :\n"
+" le programme resolvconf ;\n"
+" - Utiliser les serveurs racine :\n"
 " configurer pdnsd en serveur DNS cache et\n"
 " récursif ;\n"
-" - Manuelle    : configuration entièrement manuelle. Le\n"
-" démon pdnsd ne démarrera pas tant que vous

Bug#686199: unblock: xen-api/1.3.2-11

2012-08-30 Thread Thomas Goirand
On 08/30/2012 03:20 AM, Adam D. Barratt wrote:
> On Thu, 2012-08-30 at 03:01 +0800, Thomas Goirand wrote:
>> Please unblock package xen-api.
>>
>> The PAM fix which we did for version 1.3.2-10 wasn't correct, and thanks to
>> the help of Steve Langasek, we have it in a good shape now.
>>
>> The details of the conversation is available in the Ubuntu BTS here:
>> https://bugs.launchpad.net/ubuntu/+source/xen-api/+bug/1033899
> 
> Trying to view that conversation gives me:
> 
> Launchpad.net
> Lost something?
> This page does not exist, or you may not have permission to see it.
> 
> That's not particularly helpful... :/
> 
> Regards,
> 
> Adam

Hi,

The issue is now public, you can have a look.

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/503faf0b.2010...@debian.org



Bug#686199: unblock: xen-api/1.3.2-11

2012-08-30 Thread Steve Langasek
On Thu, Aug 30, 2012 at 06:07:55PM +0800, Thomas Goirand wrote:
> On 08/30/2012 03:20 AM, Adam D. Barratt wrote:
> > On Thu, 2012-08-30 at 03:01 +0800, Thomas Goirand wrote:
> >> Please unblock package xen-api.

> >> The PAM fix which we did for version 1.3.2-10 wasn't correct, and thanks to
> >> the help of Steve Langasek, we have it in a good shape now.

> >> The details of the conversation is available in the Ubuntu BTS here:
> >> https://bugs.launchpad.net/ubuntu/+source/xen-api/+bug/1033899

> > Trying to view that conversation gives me:

> > Launchpad.net
> > Lost something?
> > This page does not exist, or you may not have permission to see it.

> > That's not particularly helpful... :/

> Indeed, this is a permission problem in this page, its marked as
> "Private Security". I'm not sure how the Ubuntu stuff works though.

> I'm not a PAM specialist, and I'm afraid I can't comment much in here.
> Mike is unfortunately away for a while (I'm not sure I should disclose
> why), so he wont be able to explain what was wrong in version -10. I
> have to admit that I was busy doing other stuff, and that I'm not sure
> what the problem was.

> Steve, can you comment about the changes in the PAM settings committed
> in this latest version of XCP, and explain to the release team why we
> needed to change it and unblock the fixed xen-api/1.3.2-11? Thanks in
> advance.

I've talked to the Ubuntu security team and they've unembargoed the bug;
there's no reason to keep it private when there's public conversation
pointing at the fact that it's a security issue.  So that link works now.

-- 
Steve Langasek   Give me a lever long enough and a Free OS
Debian Developer   to set it on, and I can move the world.
Ubuntu Developerhttp://www.debian.org/
slanga...@ubuntu.com vor...@debian.org


signature.asc
Description: Digital signature


Re: Bug#678227: Bug#641967: Apt downloads all description translations

2012-08-30 Thread David Kalnischkies
On Tue, Aug 28, 2012 at 1:14 PM, Julian Andres Klode  wrote:
> We could add a switch to apt-cdrom to copy all configured locales for
> d-i purposes,

The question is how apt-cdrom gets to know which locales are configured.
If I read the d-i syslog correctly apt-cdrom is run before 'locales'
is installed and localechooser sets the chroot up, so to have apt-cdrom in
the correct environment localechooser setup either needs to be part of the
bootstrap or we make it so that apt-cdrom doesn't copy any Translation files
and localechooser calls after setting up 'locales' apt-get update to copy
the Translation files over [0]. Or we tell localechooser (or some later d-i
 stage) that it should remove 'excess' Translation files.

The later would have the advantage of working better in multi-user setups
(with different l10n environments), but I am not sure if you can actually
do that with d-i currently - the first two don't, the second additional
changes behavior of apt-cdrom in a way breaking older d-i versions and/or
any other installer/user.

> and then once we have translation files in /var/lib/apt/lists
> only recognize those languages and the ones configured via APT
> configuration. We don't even need a switch, we could just look at this
> list if no languages are explicitely configured for APT or translations
> found in /var/lib/apt/lists.

Mhh. Yeah, we really need to do this to 'preserve' configuration or
otherwise we just get all Translation files again on each update
with a cdrom source (but kinda orthogonal to the "problem" at hand).

So something along the lines of maybe:
if acquire::languages set OR files in /var/lib/apt/lists:
copy as configured
else
copy everything

"acquire::languages set" is a bit flaky through, so maybe just
if LANG != "C" OR files in /var/lib/apt/lists
(and "C.UTF-8" and "POSIX", right?)


Best regards

David Kalnischkies


-- 
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_fA7=mywjygduhnh0+z_q12fme_0j5onsjau0kw4n_k...@mail.gmail.com



Bug#685867: unblock: im-config/0.18

2012-08-30 Thread Aron Xu
As the proposer of such a change, I fully support this unblock request
as it is very important for users who don't have a _very_ fast machine.
Input method frameworks can wait for D-Bus for a give amount of time,
but it is definitely not an optimal solution to increase this time again
and again, as there aren't so many people who have been using SSD to
boost the loading of there desktop environment and there are examples
who are using slow machines and suffer from the very issue just around me.

We have been testing this patch since it has been written with our daily
use, and it appears to be good enough: solve the problem reliably and
haven't caused any problem so far. We have been providing decent input
support in Debian for quite some time, this change can make it even better.



-- 
Regards,
Aron Xu


-- 
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/503f7d49.8030...@gmail.com



Bug#686244: unblock: libav/6:0.8.3-7

2012-08-30 Thread Reinhard Tartler
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock package libav

The new package compresses with xz now (Bug #683895). The package
libav-regular-dbg is dropped as it does not necessary for transitional
purposes. Also, the fix for #679542 was incomplete, this package
revision fixes it for good.

unblock libav/6:0.8.3-7

Please find the debdiff attached. Thanks for your time.

Cheers,
Reinhard

-- System Information:
Debian Release: wheezy/sid
  APT prefers testing
  APT policy: (500, 'testing'), (50, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)

Kernel: Linux 3.2.0-2-686-pae (SMP w/1 CPU core)
Locale: LANG=C.UTF-8, LC_CTYPE=C.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
diff --git a/debian/changelog b/debian/changelog
index cfba07c..6cf6c3a 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,17 @@
+libav (6:0.8.3-7) unstable; urgency=low
+
+  [ Fabian Greffrath ]
+  * Fix generation of shlibs file not only for libavcodec*, but for all the
+other library packages as well. Really closes: #679542
+  * Use xz compression for binary packages, thanks Ansgar Burchardt
+(Closes: #683895).
+
+  [ Reinhard Tartler ]
+  * use EPOCH macro in SHLIBS_VERSION
+  * Drop the package 'libav-regular-dbg'. It was not included in squeeze.
+
+ -- Reinhard Tartler   Sat, 25 Aug 2012 11:08:48 +0200
+
 libav (6:0.8.3-6) unstable; urgency=low
 
   * Clarify the changes in the 6:0.8.3-5 upload, as discussed in bug
diff --git a/debian/control b/debian/control
index 43c4f1a..799e8c4 100644
--- a/debian/control
+++ b/debian/control
@@ -123,11 +123,9 @@ Priority: extra
 Architecture: any
 Replaces:
  ffmpeg-dbg (<< 6:0.8.3-5),
- libav-regular-dbg (<< 6:0.8.3-5),
  libav-extra-dbg (<< 6:0.8.3-5)
 Breaks:
  ffmpeg-dbg (<< 6:0.8.3-5),
- libav-regular-dbg (<< 6:0.8.3-5),
  libav-extra-dbg (<< 6:0.8.3-5)
 Depends:
  ffmpeg (= ${binary:Version}),
@@ -148,19 +146,6 @@ Description: Debug symbols for Libav related packages
  Most people will not need this package. Please install it to produce useful
  stacktraces to help debugging the Libav library.
 
-Package: libav-regular-dbg
-Section: oldlibs
-Priority: extra
-Architecture: any
-Depends:
- libav-dbg,
- ${misc:Depends}
-Description: Debug symbols for Libav related packages (transitional package)
- Libav is a complete, cross-platform solution to decode, encode, record,
- convert and stream audio and video.
- .
- This package serves as a transitional package to libav-dbg.
-
 Package: libav-extra-dbg
 Section: oldlibs
 Priority: extra
diff --git a/debian/rules b/debian/rules
index fa5a4a0..697dd11 100755
--- a/debian/rules
+++ b/debian/rules
@@ -4,7 +4,7 @@ EPOCH=6:
 DEB_SOURCE := $(shell dpkg-parsechangelog | sed -n 's/^Source: //p')
 DEB_VERSION := $(shell dpkg-parsechangelog | sed -n 's/^Version: //p')
 UPSTREAM_VERSION := $(shell echo $(DEB_VERSION) | sed -r 's/[^:]+://; s/-[^-]+$$//')
-SHLIBS_VERSION := 6:0.8.3-1~
+SHLIBS_VERSION := $(EPOCH)0.8.3-1~
 
 # these package do not build -extra variants
 LIB_PKGS := $(shell sed -nr 's/^Package:[[:space:]]*(lib(avutil|avdevice|avformat|avfilter|postproc|swscale)[0-9]+)[[:space:]]*$$/\1/p' debian/control)
@@ -172,7 +172,7 @@ binary-arch: build install
 	dh_strip --dbg-package=libav-dbg
 
 	for pkg in $(LIB_PKGS) $(LIB_EXTRA_PKGS); do \
-	dh_makeshlibs -p"$$pkg" -V"$$pkg (>= $(DEB_VERSION))"; \
+	dh_makeshlibs -p"$$pkg" -V"$$pkg (>= $(SHLIBS_VERSION))"; \
 	done
 	for pkg in $(LIB_PKGS2); do \
 	upkg=$$(echo "$$pkg" | sed -r 's/([0-9]+)$$/-extra-\1/'); \
@@ -182,7 +182,7 @@ binary-arch: build install
 	dh_installdeb
 	dh_gencontrol
 	dh_md5sums
-	dh_builddeb
+	dh_builddeb -- -Zxz
 
 binary: binary-indep binary-arch
 


Bug#686214: marked as done (tpu: package mediawiki-extensions/2.6+wheezy1)

2012-08-30 Thread Debian Bug Tracking System
Your message dated Thu, 30 Aug 2012 13:06:24 +0100
with message-id 
and subject line Re: Bug#686214: tpu: package mediawiki-extensions/2.6+wheezy1
has caused the Debian Bug report #686214,
regarding tpu: package mediawiki-extensions/2.6+wheezy1
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.)


-- 
686214: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=686214
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: tpu

Hi,

An RC bug causing a crash in various Mediawiki extensions was reported. A fix
must go through tpu, at least for now, because the version in sid is not
acceptable for a freeze exception. Please review the attached patch and approve
the fixes before I upload.

I verified the fix on a Wheezy machine.

The patch is pretty straightforwarded, there is some unfortunate noise from the
build that is not appropriate to fix in a freeze.

Thanks.


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

Kernel: Linux 3.2.0-2-amd64 (SMP w/2 CPU cores)
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash
diff -Nru mediawiki-extensions-2.6/check_versions.pl mediawiki-extensions-2.6+wheezy1/check_versions.pl
--- mediawiki-extensions-2.6/check_versions.pl	2010-06-30 09:42:54.0 +0100
+++ mediawiki-extensions-2.6+wheezy1/check_versions.pl	2012-08-29 22:35:14.0 +0100
@@ -1,5 +1,5 @@
 #!/usr/bin/perl
-# $Id: check_versions.pl 191 2010-06-30 08:42:54Z tg $
+# $Id: check_versions.pl 376 2012-08-29 21:35:14Z jmw $
 
 use Getopt::Std;
 %options=();
diff -Nru mediawiki-extensions-2.6/debian/changelog mediawiki-extensions-2.6+wheezy1/debian/changelog
--- mediawiki-extensions-2.6/debian/changelog	2012-03-15 12:01:46.0 +
+++ mediawiki-extensions-2.6+wheezy1/debian/changelog	2012-08-29 23:22:43.0 +0100
@@ -1,3 +1,11 @@
+mediawiki-extensions (2.6+wheezy1) testing-proposed-updates; urgency=low
+
+  * Team upload.
+  * Replace calls to Xml::hidden() with Html::hidden()
+Closes: #686190
+
+ -- Jonathan Wiltshire   Wed, 29 Aug 2012 23:22:40 +0100
+
 mediawiki-extensions (2.6) unstable; urgency=low
 
   * Fix invalid XHTML output in the Collection extension’s template
diff -Nru mediawiki-extensions-2.6/debian/patches/fix_collection.patch mediawiki-extensions-2.6+wheezy1/debian/patches/fix_collection.patch
--- mediawiki-extensions-2.6/debian/patches/fix_collection.patch	2012-03-15 12:01:46.0 +
+++ mediawiki-extensions-2.6+wheezy1/debian/patches/fix_collection.patch	2012-08-29 22:35:14.0 +0100
@@ -1,4 +1,4 @@
-$Id: fix_collection.patch 307 2012-03-15 12:01:46Z tg $
+$Id: fix_collection.patch 376 2012-08-29 21:35:14Z jmw $
 
 Fix Collection extension:
 • Invalid XHTML nesting
diff -Nru mediawiki-extensions-2.6/debian/patches/fix_createbox.patch mediawiki-extensions-2.6+wheezy1/debian/patches/fix_createbox.patch
--- mediawiki-extensions-2.6/debian/patches/fix_createbox.patch	2011-04-12 13:27:06.0 +0100
+++ mediawiki-extensions-2.6+wheezy1/debian/patches/fix_createbox.patch	2012-08-29 22:35:14.0 +0100
@@ -1,4 +1,4 @@
-$Id: fix_createbox.patch 253 2011-04-12 12:27:06Z tg $
+$Id: fix_createbox.patch 376 2012-08-29 21:35:14Z jmw $
 
 Fix CreateBox extension:
 * API impropriety
diff -Nru mediawiki-extensions-2.6/debian/patches/fix_footnote.patch mediawiki-extensions-2.6+wheezy1/debian/patches/fix_footnote.patch
--- mediawiki-extensions-2.6/debian/patches/fix_footnote.patch	2011-04-12 13:27:06.0 +0100
+++ mediawiki-extensions-2.6+wheezy1/debian/patches/fix_footnote.patch	2012-08-29 22:35:14.0 +0100
@@ -1,4 +1,4 @@
-$Id: fix_footnote.patch 253 2011-04-12 12:27:06Z tg $
+$Id: fix_footnote.patch 376 2012-08-29 21:35:14Z jmw $
 
 Fix FootNote extension:
 * API impropriety
diff -Nru mediawiki-extensions-2.6/debian/patches/fix_graphviz.patch mediawiki-extensions-2.6+wheezy1/debian/patches/fix_graphviz.patch
--- mediawiki-extensions-2.6/debian/patches/fix_graphviz.patch	2011-04-12 14:47:38.0 +0100
+++ mediawiki-extensions-2.6+wheezy1/debian/patches/fix_graphviz.patch	2012-08-29 22:35:14.0 +0100
@@ -1,4 +1,4 @@
-$Id: fix_graphviz.patch 257 2011-04-12 13:47:38Z tg $
+$Id: fix_graphviz.patch 376 2012-08-29 21:35:14Z jmw $
 
 Fix:
 * path to dot
diff -Nru mediawiki-extensions-2.6/debian/patches/fix_interwiki.patch mediawiki-extensions-2.6+wheezy1/debian/

Bug#686199: unblock: xen-api/1.3.2-11

2012-08-30 Thread Thomas Goirand
On 08/30/2012 03:20 AM, Adam D. Barratt wrote:
> On Thu, 2012-08-30 at 03:01 +0800, Thomas Goirand wrote:
>> Please unblock package xen-api.
>>
>> The PAM fix which we did for version 1.3.2-10 wasn't correct, and thanks to
>> the help of Steve Langasek, we have it in a good shape now.
>>
>> The details of the conversation is available in the Ubuntu BTS here:
>> https://bugs.launchpad.net/ubuntu/+source/xen-api/+bug/1033899
> 
> Trying to view that conversation gives me:
> 
> Launchpad.net
> Lost something?
> This page does not exist, or you may not have permission to see it.
> 
> That's not particularly helpful... :/
> 
> Regards,
> 
> Adam

Hi,

Indeed, this is a permission problem in this page, its marked as
"Private Security". I'm not sure how the Ubuntu stuff works though.

I'm not a PAM specialist, and I'm afraid I can't comment much in here.
Mike is unfortunately away for a while (I'm not sure I should disclose
why), so he wont be able to explain what was wrong in version -10. I
have to admit that I was busy doing other stuff, and that I'm not sure
what the problem was.

Steve, can you comment about the changes in the PAM settings committed
in this latest version of XCP, and explain to the release team why we
needed to change it and unblock the fixed xen-api/1.3.2-11? Thanks in
advance.

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/503f3b7b.5020...@goirand.fr



Bug#686230: unblock: libmtp/1.1.3-35-g0ece104-3

2012-08-30 Thread Alessio Treglia
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock package libmtp 1.1.3-35-g0ece104-3, it contains a minimalistic
patch to fix bug#683637:

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

The debdiff is attached.
Thanks in advance for any reply, and cheers!

unblock libmtp/1.1.3-35-g0ece104-3

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

Kernel: Linux 3.2.0-3-amd64 (SMP w/1 CPU core)
Locale: LANG=en_US.utf8, LC_CTYPE=en_US.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
diff -Nru libmtp-1.1.3-35-g0ece104/debian/changelog libmtp-1.1.3-35-g0ece104/debian/changelog
--- libmtp-1.1.3-35-g0ece104/debian/changelog	2012-07-18 11:04:42.0 +0200
+++ libmtp-1.1.3-35-g0ece104/debian/changelog	2012-08-30 00:33:30.0 +0200
@@ -1,3 +1,10 @@
+libmtp (1.1.3-35-g0ece104-3) unstable; urgency=low
+
+  * Add Sony Tablet P1 support. (Closes: #683637)
+Thanks to Hideki Yamane for the patch.
+
+ -- Alessio Treglia   Thu, 30 Aug 2012 00:32:57 +0200
+
 libmtp (1.1.3-35-g0ece104-2) unstable; urgency=low
 
   * Device db updates picked from upstream git:
diff -Nru libmtp-1.1.3-35-g0ece104/debian/gbp.conf libmtp-1.1.3-35-g0ece104/debian/gbp.conf
--- libmtp-1.1.3-35-g0ece104/debian/gbp.conf	2012-07-13 10:23:37.0 +0200
+++ libmtp-1.1.3-35-g0ece104/debian/gbp.conf	2012-08-30 00:24:27.0 +0200
@@ -1,3 +1,5 @@
 [DEFAULT]
 pristine-tar = True
 sign-tags = True
+debian-branch = master.wheezy
+upstream-branch = upstream.wheezy
diff -Nru libmtp-1.1.3-35-g0ece104/debian/patches/0001-devicedb_updates.patch libmtp-1.1.3-35-g0ece104/debian/patches/0001-devicedb_updates.patch
--- libmtp-1.1.3-35-g0ece104/debian/patches/0001-devicedb_updates.patch	2012-07-18 10:57:50.0 +0200
+++ libmtp-1.1.3-35-g0ece104/debian/patches/0001-devicedb_updates.patch	2012-08-30 00:30:30.0 +0200
@@ -5,10 +5,12 @@
   - 68f3cb6bcc0a6f24e66377a6f0ab707ff3457bf9
   - e9082f609faa9fe1301a86a52aca6563a1040e70
   - f9b50b4b6e7721c7d77e0f22779276c3a0981ad0
+ Debian BTS:
+  - http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=683637
 Origin: upstream
 ---
- src/music-players.h |   23 +++
- 1 file changed, 19 insertions(+), 4 deletions(-)
+ src/music-players.h |   26 ++
+ 1 file changed, 22 insertions(+), 4 deletions(-)
 
 --- libmtp.orig/src/music-players.h
 +++ libmtp/src/music-players.h
@@ -22,7 +24,17 @@
// Reported by Nigel Cunningham 
// Guessing on Android bugs
{ "Toshiba", 0x0930, "Thrive AT100/AT105", 0x7100,
-@@ -1472,6 +1475,10 @@
+@@ -1331,6 +1334,9 @@
+   // Reported by Anonymous SourceForge user
+   { "Sony", 0x054c, "DCR-SR75", 0x1294,
+   DEVICE_FLAGS_SONY_NWZ_BUGS },
++  // Reported by Hideki Yamane 
++  { "Sony", 0x054c, "Sony Tablet P1", 0x04d1,
++  DEVICE_FLAGS_ANDROID_BUGS },
+ 
+   /*
+* SonyEricsson
+@@ -1472,6 +1478,10 @@
// Reported by equaeghe 
{ "SONY", 0x0fce, "Xperia U ST25i (MTP+ADB mode)", 0x5171,
DEVICE_FLAGS_ANDROID_BUGS },
@@ -33,7 +45,7 @@
// Reported by Anonymous Sourceforge user
{ "SonyEricsson", 0x0fce,  "j10i (Elm)", 0xd144,
DEVICE_FLAG_BROKEN_MTPGETOBJPROPLIST },
-@@ -1501,6 +1508,8 @@
+@@ -1501,6 +1511,8 @@
DEVICE_FLAGS_ANDROID_BUGS },
{ "Motorola", 0x22b8, "Xoom 2 Media Edition", 0x4311,
DEVICE_FLAGS_ANDROID_BUGS },
@@ -42,7 +54,7 @@
// Reported by Marcus Meissner to libptp2
{ "Motorola", 0x22b8, "IdeaPad K1", 0x4811,
DEVICE_FLAG_BROKEN_SET_OBJECT_PROPLIST },
-@@ -1535,6 +1544,8 @@
+@@ -1535,6 +1547,8 @@
// Reported by anonymous Sourceforge user
{ "Google Inc (for Asus)", 0x18d1, "TF101 Transformer", 0x4e0f,
DEVICE_FLAGS_ANDROID_BUGS },
@@ -51,7 +63,7 @@
// WiFi-only version of Xoom
// See: http://bugzilla.gnome.org/show_bug.cgi?id=647506
{ "Google Inc (for Motorola)", 0x18d1, "Xoom (MZ604)", 0x70a8,
-@@ -1702,8 +1713,9 @@
+@@ -1702,8 +1716,9 @@
 */
// Reported by anonymous SourceForge user
{ "Huawei", 0x12d1, "Honor U8860", 0x1051, DEVICE_FLAGS_ANDROID_BUGS },
@@ -62,7 +74,7 @@
  
/*
 * ZTE
-@@ -1718,7 +1730,9 @@
+@@ -1718,7 +1733,9 @@
{ "HTC", 0x0bb4, "Zopo ZP100", 0x0c02,
DEVICE_FLAGS_ANDROID_BUGS },
// Reported by Steven Eastland 
@@ -73,7 +85,7 @@
DEVICE_FLAGS_ANDROID_BUGS },
// These identify themselves as "cm_tenderloin", fun...
// Done by HTC for HP I guess.
-@@ -1745,9 +1759,10 @@
+@@ -1745,9 +1762,10 @@
{ "Vizio", 0x0489, "VTAB1008", 0xe040, DEVICE_FLAGS_ANDROID_BUGS },
  
/*


Bug#686214: tpu: package mediawiki-extensions/2.6+wheezy1

2012-08-30 Thread Jonathan Wiltshire

On 2012-08-29 23:43, Adam D. Barratt wrote:

Control: tags -1 + confirmed

On Wed, 2012-08-29 at 23:29 +0100, Jonathan Wiltshire wrote:
An RC bug causing a crash in various Mediawiki extensions was 
reported. A fix
must go through tpu, at least for now, because the version in sid is 
not
acceptable for a freeze exception. Please review the attached patch 
and approve

the fixes before I upload.


Please go ahead; thanks.


Uploading now.


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

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


--
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/88028b40fb2a321006b51b3ebca57...@hogwarts.powdarrmonkey.net