Bug#692188: RM: ruby-pgplot/0.1.3-2

2012-11-02 Thread Michael Gilbert
Package: release.debian.org
User: release.debian@packages.debian.org
Usertags: rm
Severity: normal

Please remove ruby-pgplot.  It has all kind of unfixed build issues
and multiple failed attempts at uploads to get the package in a
working state after rc fix for #675390:
https://buildd.debian.org/status/package.php?p=ruby-pgplot

It is a leaf package in contrib and has not yet been in a stable release.

Best wishes,
Mike


-- 
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/CANTw=MNe14LrnSyMtwbZ6ZtUTSNUxfGWeJtorCHd217Z_h=-t...@mail.gmail.com



Bug#692183: unblock: gdebi/0.8.7

2012-11-02 Thread Luca Falavigna
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock package gdebi

This upload fixes RC bug #691998, plus some crashes bugs reported in Launchpad:
* Do not set a busy cursor if there is no X11 window
   https://launchpad.net/bugs/1055181
* Define apt.Cache in class initialization
   https://launchpad.net/bugs/1072799
* Add file to gdebi-core dependencies
   https://launchpad.net/bugs/1067306

I'm attaching a debdiff of the changes introduced.

unblock gdebi/0.8.7

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

Kernel: Linux 3.2.0-4-amd64 (SMP w/8 CPU cores)
=== modified file 'GDebi/GDebi.py'
--- GDebi/GDebi.py	2012-10-11 19:21:07 +
+++ GDebi/GDebi.py	2012-10-11 20:09:07 +
@@ -145,13 +145,19 @@
 self.synaptic_config = apt_pkg.Configuration()
 
 if file != "" and os.path.exists(file):
-self.window_main.get_window().set_cursor(Gdk.Cursor.new(Gdk.CursorType.WATCH))
+self.open(file)
+self.window_main.set_sensitive(True)
+
+def _show_busy_cursor(self, show_busy_cursor):
+win = self.window_main.get_window()
+if not win:
+return
+if show_busy_cursor:
+win.set_cursor(Gdk.Cursor.new(Gdk.CursorType.WATCH))
 while Gtk.events_pending(): 
 Gtk.main_iteration()
-self.open(file)
-self.window_main.get_window().set_cursor(None)
-
-self.window_main.set_sensitive(True)
+else:
+win.set_cursor(None)
 
 def gio_progress_callback(self, bytes_read, bytes_total, data):
 self.progressbar_download.set_fraction(bytes_read/float(bytes_total))
@@ -224,14 +230,12 @@
 path = self._get_file_path_from_dnd_dropped_uri(uri)
 #print 'path to open', path
 if path.endswith(".deb"):
-self.window_main.get_window().set_cursor(Gdk.Cursor.new(Gdk.CursorType.WATCH))
-while Gtk.events_pending(): 
-Gtk.main_iteration()
 self.open(path)
-self.window_main.get_window().set_cursor(None)
 
 def open(self, file, downloaded=False):
+self._show_busy_cursor(True)
 res = GDebiCommon.open(self, file, downloaded)
+self._show_busy_cursor(False)
 if res == False:
 self.show_alert(Gtk.MessageType.ERROR, self.error_header, self.error_body)
 return False

=== modified file 'GDebi/GDebiCli.py'
--- GDebi/GDebiCli.py	2012-10-11 19:23:54 +
+++ GDebi/GDebiCli.py	2012-11-02 13:29:24 +
@@ -122,10 +122,7 @@
 iprogress = apt.progress.base.InstallProgress()
 try:
 res = self._cache.commit(fprogress,iprogress)
-except apt.cache.FetchFailedException, e:
-sys.stderr.write(_("Error during install: '%s'") % e)
-return 1
-except SystemError, e:
+except (apt.cache.FetchFailedException, SystemError), e:
 sys.stderr.write(_("Error during install: '%s'") % e)
 return 1
 

=== modified file 'GDebi/GDebiCommon.py'
--- GDebi/GDebiCommon.py	2012-09-12 21:28:17 +
+++ GDebi/GDebiCommon.py	2012-11-02 13:29:24 +
@@ -52,6 +52,7 @@
 # cprogress may be different in child classes
 def __init__(self, datadir, options, file=""):
 self.cprogress = None
+self._cache = None
 self.deps = ""
 self.version_info_title = ""
 self.version_info_msg = ""

=== modified file 'debian/changelog'
--- debian/changelog	2012-10-11 20:07:12 +
+++ debian/changelog	2012-11-02 16:36:21 +
@@ -1,3 +1,23 @@
+gdebi (0.8.7) unstable; urgency=low
+
+  [ Michael Vogt ]
+  * GDebi/GDebi.py:
+- do not set a busy cursor if there is no X11 window (LP: #1055181).
+
+  [ Jason Conti ]
+  * GDebi/GDebiCommon.py:
+- Define apt.Cache in class initialization (LP: #1072799).
+
+  [ Luca Falavigna ]
+  * gdebi-kde:
+- Do not use unicode in help options (Closes: #691998, LP: #1063114).
+  * GDebi/GDebiCli.py:
+- Improve exception handling.
+  * debian/control:
+- Add file to gdebi-core dependencies (LP: #1067306).
+
+ -- Luca Falavigna   Fri, 02 Nov 2012 17:36:06 +0100
+
 gdebi (0.8.6) unstable; urgency=low
 
   * gdebi, GDebi/GDebiCli.py:

=== modified file 'debian/control'
--- debian/control	2012-09-12 21:17:04 +
+++ debian/control	2012-11-02 12:30:07 +
@@ -16,7 +16,8 @@
 Depends: ${python:Depends},
  ${misc:Depends},
  python-apt (>= 0.7.97),
-	 python-debian (>= 0.1.15)
+ python-debian (>= 0.1.15),
+ file
 Suggests: xz-utils | xz-lzma
 Description: simple tool to install deb files
  gdebi lets you install local deb packages resolving and installing 

=== modified file 'gdebi-kde'
--- gdebi-kde	2012-09

Bug#692172: unblock: nvidia-graphics-modules/304.48+2

2012-11-02 Thread Andreas Beckmann
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock package nvidia-graphics-modules

This is a rebuild for kernel abi 4 which renames the module
packages accordingly.

Ideally this should migrate together with the kernel.


Thanks.

Andreas


unblock nvidia-graphics-modules/304.48+2
diff -Nru nvidia-graphics-modules-304.48+1/debian/changelog nvidia-graphics-modules-304.48+2/debian/changelog
--- nvidia-graphics-modules-304.48+1/debian/changelog	2012-09-13 10:42:24.0 +0200
+++ nvidia-graphics-modules-304.48+2/debian/changelog	2012-09-26 09:57:25.0 +0200
@@ -1,3 +1,9 @@
+nvidia-graphics-modules (304.48+2) unstable; urgency=low
+
+  * Build for kernel 3.2.0-4.
+
+ -- Andreas Beckmann   Wed, 26 Sep 2012 09:56:16 +0200
+
 nvidia-graphics-modules (304.48+1) unstable; urgency=low
 
   * Use nvidia-kernel-source 304.48.
diff -Nru nvidia-graphics-modules-304.48+1/debian/control nvidia-graphics-modules-304.48+2/debian/control
--- nvidia-graphics-modules-304.48+1/debian/control	2012-09-13 10:42:24.0 +0200
+++ nvidia-graphics-modules-304.48+2/debian/control	2012-09-26 09:57:25.0 +0200
@@ -7,7 +7,7 @@
  Andreas Beckmann ,
 DM-Upload-Allowed: yes
 Build-Depends: debhelper (>= 8),
- linux-headers-3.2.0-3-amd64 [i386 amd64], linux-headers-3.2.0-3-486 [i386], linux-headers-3.2.0-3-686-pae [i386],
+ linux-headers-3.2.0-4-amd64 [i386 amd64], linux-headers-3.2.0-4-486 [i386], linux-headers-3.2.0-4-686-pae [i386],
  nvidia-kernel-source (>= 304.48), nvidia-kernel-source (<< 304.48.0~),
 Standards-Version: 3.9.3
 Homepage: http://www.nvidia.com/
@@ -17,7 +17,7 @@
 
 Package: nvidia-kernel-amd64
 Architecture: i386 amd64
-Depends: ${misc:Depends}, nvidia-kernel-3.2.0-3-amd64 (>= 304.48)
+Depends: ${misc:Depends}, nvidia-kernel-3.2.0-4-amd64 (>= 304.48)
 Breaks: nvidia-kernel-2.6-amd64 (<< 295)
 Replaces: nvidia-kernel-2.6-amd64 (<< 295)
 Description: NVIDIA kernel module for Linux (amd64 flavor)
@@ -36,7 +36,7 @@
  the NVIDIA kernel module for Linux (amd64 flavor).
  It can be savely removed.
 
-Package: nvidia-kernel-3.2.0-3-amd64
+Package: nvidia-kernel-3.2.0-4-amd64
 Architecture: i386 amd64
 Depends: ${misc:Depends}
 Description: NVIDIA binary kernel module (amd64 flavor)
@@ -45,7 +45,7 @@
 
 Package: nvidia-kernel-486
 Architecture: i386
-Depends: ${misc:Depends}, nvidia-kernel-3.2.0-3-486 (>= 304.48)
+Depends: ${misc:Depends}, nvidia-kernel-3.2.0-4-486 (>= 304.48)
 Breaks: nvidia-kernel-2.6-486 (<< 295)
 Replaces: nvidia-kernel-2.6-486 (<< 295)
 Description: NVIDIA kernel module for Linux (486 flavor)
@@ -64,7 +64,7 @@
  the NVIDIA kernel module for Linux (486 flavor).
  It can be savely removed.
 
-Package: nvidia-kernel-3.2.0-3-486
+Package: nvidia-kernel-3.2.0-4-486
 Architecture: i386
 Depends: ${misc:Depends}
 Description: NVIDIA binary kernel module (486 flavor)
@@ -73,7 +73,7 @@
 
 Package: nvidia-kernel-686-pae
 Architecture: i386
-Depends: ${misc:Depends}, nvidia-kernel-3.2.0-3-686-pae (>= 304.48)
+Depends: ${misc:Depends}, nvidia-kernel-3.2.0-4-686-pae (>= 304.48)
 Breaks: nvidia-kernel-2.6-686-pae (<< 295)
 Replaces: nvidia-kernel-2.6-686-pae (<< 295)
 Description: NVIDIA kernel module for Linux (686-pae flavor)
@@ -92,7 +92,7 @@
  the NVIDIA kernel module for Linux (686-pae flavor).
  It can be savely removed.
 
-Package: nvidia-kernel-3.2.0-3-686-pae
+Package: nvidia-kernel-3.2.0-4-686-pae
 Architecture: i386
 Depends: ${misc:Depends}
 Description: NVIDIA binary kernel module (686-pae flavor)
diff -Nru nvidia-graphics-modules-304.48+1/debian/control.md5sum nvidia-graphics-modules-304.48+2/debian/control.md5sum
--- nvidia-graphics-modules-304.48+1/debian/control.md5sum	2012-09-13 10:42:24.0 +0200
+++ nvidia-graphics-modules-304.48+2/debian/control.md5sum	2012-09-26 09:57:25.0 +0200
@@ -1,6 +1,6 @@
-c799468ab3a6fec7196f1ce557726ae9  debian/control
+bb9a6c9d5aaf5a9dbe41e48322b45b06  debian/control
 d1d71a255d2fc8e281b325feb948db80  debian/control.source
 8dce140a73e725f1cd59a7aef8ecc83d  debian/control.flavor
 737e968161571039c186e1855b948ef6  debian/rules
-46196ba81a6c71fedbb11cb73e054869  debian/rules.defs
+f55dbcf51f647cd76be27c83effbc5ca  debian/rules.defs
 #UPSTREAM_VERSION=304.48#
diff -Nru nvidia-graphics-modules-304.48+1/debian/rules.defs nvidia-graphics-modules-304.48+2/debian/rules.defs
--- nvidia-graphics-modules-304.48+1/debian/rules.defs	2012-09-13 10:42:24.0 +0200
+++ nvidia-graphics-modules-304.48+2/debian/rules.defs	2012-09-26 09:57:25.0 +0200
@@ -1,6 +1,6 @@
 SOURCE_MIN_REV		 =
 NVIDIA_LEGACY		 =
-KERNEL_VERSION		 = 3.2.0-3
+KERNEL_VERSION		 = 3.2.0-4
 
 DEFAULT			 = yes
 RT			 = no


Bug#691395: unblock: opendkim/2.6.8-2

2012-11-02 Thread Scott Kitterman
On Tuesday, October 30, 2012 12:24:42 PM Niels Thykier wrote:
> Control: tags -1 confirmed
> 
> JFTR, Scott and I had a look at this today (at UDS).  I asked him to
> upload it to unstable and ping us once it has been in sid for a couple
> of days.
> 
> ~Niels

It's been a couple of days now, so ping.

Scott K


-- 
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/1922697.3N863icjNA@scott-latitude-e6320



Bug#692169: unblock: kfreebsd-8/8.3-5

2012-11-02 Thread Christoph Egger
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock package kfreebsd-8

kfreebsd-8 (8.3-5) unstable; urgency=medium

  [ Robert Millan ]
  * Remove /boot symlink kludge.  (Closes: #672255)

  [ Christoph Egger ]
  * Import svn239447 from upstream 8-STABLE to fix a DoS vulnerability
  in
SCTP (Closes: #686961)

 -- Christoph Egger   Fri, 02 Nov 2012 13:32:11 -0700


unblock kfreebsd-8/8.3-5



-- 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.4-trunk-amd64 (SMP w/6 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
dpkg-source: warning: extracting unsigned source package (/srv/stuff/kfreebsd-8_8.3-5.dsc)
diff -Nru kfreebsd-8-8.3/debian/changelog kfreebsd-8-8.3/debian/changelog
--- kfreebsd-8-8.3/debian/changelog	2012-06-15 20:20:09.0 +0200
+++ kfreebsd-8-8.3/debian/changelog	2012-11-02 21:44:03.0 +0100
@@ -1,3 +1,14 @@
+kfreebsd-8 (8.3-5) unstable; urgency=medium
+
+  [ Robert Millan ]
+  * Remove /boot symlink kludge.  (Closes: #672255)
+
+  [ Christoph Egger ]
+  * Import svn239447 from upstream 8-STABLE to fix a DoS vulnerability in
+SCTP (Closes: #686961)
+
+ -- Christoph Egger   Fri, 02 Nov 2012 13:32:11 -0700
+
 kfreebsd-8 (8.3-4) unstable; urgency=high
 
   [ Steven Chamberlain ]
diff -Nru kfreebsd-8-8.3/debian/kfreebsd-image.postinst.in kfreebsd-8-8.3/debian/kfreebsd-image.postinst.in
--- kfreebsd-8-8.3/debian/kfreebsd-image.postinst.in	2012-02-10 23:32:31.0 +0100
+++ kfreebsd-8-8.3/debian/kfreebsd-image.postinst.in	2012-11-02 21:30:19.0 +0100
@@ -24,37 +24,6 @@
 
 case "$1" in
 configure)
-# Don't do symlinks if explicitely disabled
-if [ -z "$(sed -e '/^\s*do_symlinks\s*=\s*\(no\|false\|0\)\s*$/!d' $KERNEL_IMG_CONF 2>/dev/null)" ] ; then
-for i in kernel.gz acpi.ko ; do
-if test -e /boot/kernel/$i && ! test -L /boot/kernel/$i ; then
-echo "What happen!! /boot/kernel/$i exists but is not a symlink."
-exit 1
-fi
-done
-
-	mkdir -p /boot/kernel
-
-if [ "$(readlink -f /boot/kernel/kernel.gz)" != "/boot/kfreebsd-$RELEASE.gz" ] ; then
-rm -f /boot/kernel/kernel.old.gz
-if [ -L /boot/kernel/kernel.gz ] ; then
-mv /boot/kernel/kernel.gz /boot/kernel/kernel.old.gz
-fi
-ln -s /boot/kfreebsd-$RELEASE.gz /boot/kernel/kernel.gz
-fi
-
-# on i386 acpi MUST be within kfreebsd-loader reach
-if [ "${RELEASE%%-[456]86}" != "${RELEASE}" ] ; then
-if [ "$(readlink -f /boot/kernel/acpi.ko)" != "/lib/modules/$RELEASE/acpi.ko" ] ; then
-rm -f /boot/kernel/acpi.ko.old
-if [ -L /boot/kernel/acpi.ko ] ; then
-mv /boot/kernel/acpi.ko /boot/kernel/acpi.ko.old
-fi
-ln -s /lib/modules/$RELEASE/acpi.ko /boot/kernel/acpi.ko
-fi
-fi
-fi
-
 # Sanitize and quote maintainer script parameters
 for p in "$@"; do
 q="$(echo "$p" | sed -e "s/'/'\\''/g")"
diff -Nru kfreebsd-8-8.3/debian/patches/SCTP_DOS_svn239447.diff kfreebsd-8-8.3/debian/patches/SCTP_DOS_svn239447.diff
--- kfreebsd-8-8.3/debian/patches/SCTP_DOS_svn239447.diff	1970-01-01 01:00:00.0 +0100
+++ kfreebsd-8-8.3/debian/patches/SCTP_DOS_svn239447.diff	2012-11-02 21:34:19.0 +0100
@@ -0,0 +1,19 @@
+Index: sys/netinet/sctp_pcb.c
+===
+--- a/sys/netinet/sctp_pcb.c	(revision 239446)
 b/sys/netinet/sctp_pcb.c	(revision 239447)
+@@ -2048,8 +2048,6 @@
+ 	struct sctp_nets *net;
+ 	struct sctp_tcb *stcb;
+ 
+-	*netp = NULL;
+-	*inp_p = NULL;
+ 	SCTP_INP_INFO_RLOCK();
+ 	head = &SCTP_BASE_INFO(sctp_asochash)[SCTP_PCBHASH_ASOC(vtag,
+ 	SCTP_BASE_INFO(hashasocmark))];
+
+Property changes on: sys
+___
+Modified: svn:mergeinfo
+   Merged /head/sys:r239041
+
diff -Nru kfreebsd-8-8.3/debian/patches/series kfreebsd-8-8.3/debian/patches/series
--- kfreebsd-8-8.3/debian/patches/series	2012-06-15 20:17:38.0 +0200
+++ kfreebsd-8-8.3/debian/patches/series	2012-11-02 21:31:42.0 +0100
@@ -11,6 +11,7 @@
 amd64_increase_DFLDSIZ.diff
 SA-12_04.sysret.patch
 EN-12_02.ipv6refcount.patch
+SCTP_DOS_svn239447.diff
 
 # Other patches that might or might not be mergeable
 001_misc.diff
   


Re: Uploading linux (3.2.32-1)

2012-11-02 Thread Adam D. Barratt
On Fri, 2012-10-19 at 14:44 +0100, Ben Hutchings wrote:
> I intend to upload linux version 3.2.32-1 to unstable this weekend.
> This brings in various fixes from stable updates 3.2.{31,32} and
> elsewhere, and should fix the previous FTBFS on mips{,el}.

Unblocked after an ack from KiBi on IRC; thanks.

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



Bug#691787: marked as done (unblock: unicorn/4.3.1-4)

2012-11-02 Thread Debian Bug Tracking System
Your message dated Fri, 02 Nov 2012 21:39:25 +
with message-id <1351892365.21571.19.ca...@jacala.jungle.funky-badger.org>
and subject line Re: Bug#691787: unblock: unicorn/4.3.1-4
has caused the Debian Bug report #691787,
regarding unblock: unicorn/4.3.1-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.)


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

This version has proper postinstall and prerm hooks (version in testing has an
unfiled RC bug).

unblock unicorn/4.3.1-4

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

Kernel: Linux 3.2.0-4-amd64 (SMP w/2 CPU cores)
Locale: LANG=be_BY.UTF-8, LC_CTYPE=be_BY.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash
diff -Nru unicorn-4.3.1/debian/changelog unicorn-4.3.1/debian/changelog
--- unicorn-4.3.1/debian/changelog	2012-05-13 14:38:29.0 +0300
+++ unicorn-4.3.1/debian/changelog	2012-10-08 01:15:42.0 +0300
@@ -1,3 +1,24 @@
+unicorn (4.3.1-4) unstable; urgency=low
+
+  * Remove unicorn logs on package purge.
+  * Add patch to explicitly use escaped minus in man pages.
+
+ -- Hleb Valoshka <375...@gmail.com>  Mon, 08 Oct 2012 00:15:04 +0300
+
+unicorn (4.3.1-3) unstable; urgency=low
+
+  * Team upload.
+  * Bump build dependency on gem2deb to >= 0.3.0~.
+
+ -- Paul van Tilburg   Wed, 27 Jun 2012 21:06:17 +0200
+
+unicorn (4.3.1-2) unstable; urgency=low
+
+  * Add prerm hook which stops unicorn on remove and deconfigure
+  * Suppress output of 'invoke-rc.d unicorn status' in postinstall hook
+
+ -- Hleb Valoshka <375...@gmail.com>  Sun, 24 Jun 2012 10:43:08 +0300
+
 unicorn (4.3.1-1) unstable; urgency=low
 
   * New upstream version
diff -Nru unicorn-4.3.1/debian/control unicorn-4.3.1/debian/control
--- unicorn-4.3.1/debian/control	2012-05-13 14:38:29.0 +0300
+++ unicorn-4.3.1/debian/control	2012-06-28 11:35:34.0 +0300
@@ -4,7 +4,7 @@
 Maintainer: Debian Ruby Extras Maintainers 
 Uploaders: Hleb Valoshka <375...@gmail.com>
 DM-Upload-Allowed: yes
-Build-Depends: debhelper (>= 7.0.50~), gem2deb (>= 0.2.11~), ruby-raindrops (>= 0.7), ruby-kgio (>= 2.6), ruby-rack
+Build-Depends: debhelper (>= 7.0.50~), gem2deb (>= 0.3.0~), ruby-raindrops (>= 0.7), ruby-kgio (>= 2.6), ruby-rack
 Standards-Version: 3.9.3
 Vcs-Git: git://git.debian.org/pkg-ruby-extras/unicorn.git
 Vcs-Browser: http://git.debian.org/?p=pkg-ruby-extras/unicorn.git;a=summary
diff -Nru unicorn-4.3.1/debian/patches/0001-explicitly-use-escaped-minus-in-man-pages.patch unicorn-4.3.1/debian/patches/0001-explicitly-use-escaped-minus-in-man-pages.patch
--- unicorn-4.3.1/debian/patches/0001-explicitly-use-escaped-minus-in-man-pages.patch	1970-01-01 03:00:00.0 +0300
+++ unicorn-4.3.1/debian/patches/0001-explicitly-use-escaped-minus-in-man-pages.patch	2012-10-08 01:05:06.0 +0300
@@ -0,0 +1,269 @@
+From: Hleb Valoshka <375...@gmail.com>
+Date: Thu, 27 Sep 2012 22:40:49 +0300
+Subject: explicitly use escaped minus in man pages
+
+---
+ man/man1/unicorn.1   |   32 
+ man/man1/unicorn_rails.1 |   34 +-
+ 2 files changed, 33 insertions(+), 33 deletions(-)
+
+diff --git a/man/man1/unicorn.1 b/man/man1/unicorn.1
+index 0b496af..749272a 100644
+--- a/man/man1/unicorn.1
 b/man/man1/unicorn.1
+@@ -4,7 +4,7 @@
+ unicorn - a rackup-like command to launch the Unicorn HTTP server
+ .SH SYNOPSIS
+ .PP
+-unicorn [-c CONFIG_FILE] [-E RACK_ENV] [-D] [RACKUP_FILE]
++unicorn [\-c CONFIG_FILE] [\-E RACK_ENV] [\-D] [RACKUP_FILE]
+ .SH DESCRIPTION
+ .PP
+ A rackup(1)-like command to launch Rack applications using Unicorn.
+@@ -26,7 +26,7 @@ Embedded command-line options are mostly parsed for compatibility
+ with rackup(1) but strongly discouraged.
+ .SH UNICORN OPTIONS
+ .TP
+-.B -c, --config-file CONFIG_FILE
++.B \-c, \-\-config\-file CONFIG_FILE
+ Path to the Unicorn-specific config file.
+ The config file is implemented as a Ruby DSL, so Ruby code may
+ executed.
+@@ -38,7 +38,7 @@ viewing ps(1) output.
+ .RS
+ .RE
+ .TP
+-.B -D, --daemonize
++.B \-D, \-\-daemonize
+ Run daemonized in the background.
+ The process is detached from the controlling terminal and stdin is
+ redirected to \[lq]/dev/null\[rq].
+@@ -50,13 +50,13 @@ redirected to \[lq]/dev/null

Bug#691218: marked as done (unblock: uim/1:1.8.1-4)

2012-11-02 Thread Debian Bug Tracking System
Your message dated Fri, 02 Nov 2012 22:37:09 +0100
with message-id <50943d05.7050...@thykier.net>
and subject line Re: Bug#691218: unblock: uim/1:1.8.1-4
has caused the Debian Bug report #691218,
regarding unblock: uim/1:1.8.1-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.)


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

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Hi,

Please unblock package uim/1:1.8.1-4.
It fixes RC bug#688233 and removes accidental setting Multi-Arch: tag.

uim/1:1.8.1-2 in testing modifies conffiles by the maintainer scripts,
it violates Debian Policy 10.7.3.  So, uim/1:1.8.1-4 in unstable unsets
conffiles to change path from /etc/uim to /var/lib/uim.

Note: uim/1:1.8.1-3 did not fix this problem perfectly.

change summary:

- - use /var/lib/uim for uim config files directory instead of /etc/uim
  (d/uim-MODULES.postinst, d/uim-MODULES.prerm).
- - do not generate and contain uim config files in /etc/uim (d/rules).
- - generate uim config files in /var/lib/uim (d/libuim-data.postinst).
- - use dpkg-maintscript-helper mv_conffile to move uim config files
  from /etc/uim to /var/lib/uim (d/libuim-data.maintscript).
  add Pre-Depends: dpkg (>= 1.15.7.2) to use dpkg-maintscript-helper
  (d/control).
- - remove all /etc/uim and /var/lib/uim at purging (d/libuim-data.postrm).
- - add Breaks: uim-MODULES for using /etc/uim yet (d/control).

additional change:

- - unset Multi-Arch: same of uim-dbg, it is set accidentally (d/control).

debdiff attached between 1:1.8.1-2 in testing and 1:1.8.1-4 in unstable.

unblock uim/1:1.8.1-4

- -- 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/8 CPU cores)
Locale: LANG=ja_JP.UTF-8, LC_CTYPE=ja_JP.UTF-8 (charmap=UTF-8) (ignored: LC_ALL 
set to ja_JP.UTF-8)
Shell: /bin/sh linked to /bin/bash

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

iQIcBAEBCAAGBQJQhhKCAAoJEHg5YZ3UOWaOnkIQAMj2yiQHSe2KDMG6VKW0S5DG
cCOzTcGPnAdx8DBYJCeWl+GGwVjWuUE54AV4103PBhpZiajhm/W6IGgBYmlpaltO
l+k5n361fNfoS7sB4KzOZhttC6Y7hqhphGW1r3TBAx0rNfgtEdT/svgfPvgioiFl
u0lzz9iSFnoI1fGRgoFF4GPH4MtNh2iDKlhnDv4vUwsn3RYcEURXV6Jgg3cViW5f
qNlarEsNOL9ud+bgpkYkQKE3vjQt3IaZi+T3qD6t3vWOqNI4qz6t2eraEJRPuq0I
gPAbuYEnkJvUrWrTeDmL5p3TlIUcV6Ij9vQ8FVcKnbQ7npXhQL7ye+Pb/BGyD9wQ
pvZweKnubD35MrioArDJVaseXMBzn2ONqYeFqm1zya3XqEsihuZN0sJY5bIgYiZO
qxemSlPGIJCNdQMN3IJ/iVqW7umeIxu/f0UOU+azlqh/er7t/zQGWdNjM+U2rJbM
D92aNhHhB6ZW7oJYmyUoAcFc0aSJKBrJi8/Y58cGZhoZotlunmwosi1ndJybicOy
xqn5WfG6iHpdFp5cktIOF6Ba5aigtI+DSFHD4IGKCL5k8bsEj70YEJ1nzHPGiqjH
2nulgH2iXDZWPOP+pnyCORmmEIMYH/wdYPAZ/GUdv3BxhnTyxToZdtDVDomjmgmE
m+nNtaw2hw39XhmFEYqC
=L0ap
-END PGP SIGNATURE-
diff -Nru uim-1.8.1/debian/changelog uim-1.8.1/debian/changelog
--- uim-1.8.1/debian/changelog	2012-06-03 00:22:40.0 +0900
+++ uim-1.8.1/debian/changelog	2012-10-18 16:06:12.0 +0900
@@ -1,3 +1,37 @@
+uim (1:1.8.1-4) unstable; urgency=medium
+
+  * Urgency set medium to fix RC bug.
+  * touch /var/lib/uim/installed-modules.scm and /var/lib/uim/loader.scm
+before mv_conffile works in debian/libuim-data.postinst.
+because mv_conffile works only when destination file aleady exists.
+it appears upgrading from squeeze. (Closes: #688233) again.
+reported by Andreas Beckmann .  Thank you.
+  * debian/control: libuim-data
+- replace Breaks: uim-chewing (<= 0.1.0-2) by uim-chewing (<< 0.1.0-3~).
+
+ -- HIGUCHI Daisuke (VDR dai)   Thu, 18 Oct 2012 16:06:04 +0900
+
+uim (1:1.8.1-3) unstable; urgency=medium
+
+  * Urgency set medium to fix RC bug.
+  * move installed-modules.scm and loader.scm from /etc/uim to /var/lib/uim
+(Closes: #688233).
+- debian/*.{postinst,prerm}: change path from /etc/uim to /var/lib/uim.
+- debian/rules: do not generate installed-modules.scm and loader.scm.
+- debian/libuim-data.maintscript: add mv_conffile installed-modules.scm
+  and loader.scm from /etc/uim to /var/lib/uim.
+  Suggested by Andreas Beckmann .  Thank you.
+- debian/libuim-data.postinst: generate installed-modules.scm and
+  loader.scm if they do not exists in /var/lib/uim.
+- debian/libuim-data.postrm: remove /etc/uim and /var/lib/uim contents.
+  * debian/control: libuim-data
+- add Pre-Depends: dpkg (>= 1.15.7.2) to use dpkg-ma

Re: Freeze exception request for js_of_ocaml 1.2-2

2012-11-02 Thread Niels Thykier
On 2012-10-26 10:35, Stéphane Glondu wrote:
> Dear Release Team,
> 
> Bug #691257 made me realize that the upstream tarball of the Debian
> package is not the same as the one currently available on the upstream
> website, and the contents does not match tag 1.2 in the upstream
> repository either.
> 
> There is one commit missing. It changes only changelog and version, and
> I would like to update the Debian package with it. Attached is a debdiff.
> 
> 
> Cheers,
> 

Hi,

It does not seem important, but given it is a doc-only change I am
willing to accept it if you are still willing to upload it.  If you do
upload it, please file an unblock bug after it has been in unstable for
a couple of days.

~Niels



-- 
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/509439c6.1010...@thykier.net



Re: Upload of fixes for xen-api

2012-11-02 Thread Niels Thykier
On 2012-10-24 10:10, Thomas Goirand wrote:
> Dear release team,
> 
> I would like update the Wheezy package of xen-api with numerous small
> fixes. These aren't RC bugs, but I believe they are all worth fixing. I
> believe that the most important one to fix is #682202.
> 
> Here's the changelog:
> 
> * Fixes bashism in install-debian-pv.sh (Closes: #690612).
> * Fixes bashism in interface-visualise (Closes: #690710).
> * The /etc/init.d/xcp-squeezed script now depends on /etc/init.d/xen
> since it has been renamed like this from xend. For this reason,
> xcp-squeezed now depends on xen-utils-common (>= 4.1.3-3) (Closes:
> #682202).
> * Downgrades openvswitch dependencies to Recommends: (Closes: #686779).
> * Few corrections in the README.Debian (Closes: #682122, #682120).
> 
> If I upload xen-api to SID, will the release team accept to unblock the
> package so that it migrates to Wheezy? If not, please let me know which
> of the above fixes isn't acceptable.
> 
> Cheers,
> 
> Thomas Goirand (zigo)

Hi,

They seem to be reasonable and fine, so if they can go through sid I
would be willing to unblock them.  If you upload this, please ping us
once it has been in unstable for a while.

~Niels



-- 
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/50943872.9080...@thykier.net



Bug#692165: closed by "Adam D. Barratt" (Re: Bug#692165: RM: sea-defender/0.9-2)

2012-11-02 Thread Michael Gilbert
From: "Adam D. Barratt" 
> That bug is less than 24 hours old at this point. On the other hand, the
> package was orphaned 48 hours before that and hasn't been touched in
> nearly two years. :-(

I considered it from the perspective of how long it would likely take
to figure out the real licensing of snoutlib.  With it not being very
clear, its very likely to take longer than the time its going to take
to release.

> Removal hint added.

Thanks!

Mike


-- 
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/CANTw=mpjvgv2yycvohiofsdzd5-euuwlqdswftqr-q2h80g...@mail.gmail.com



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

2012-11-02 Thread Debian Bug Tracking System
Processing control commands:

> tags -1 + confirmed
Bug #691990 [release.debian.org] unblock: wicd/1.7.2.4-3 (pre-approval)
Added tag(s) confirmed.

-- 
691990: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=691990
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.b691990.135188918415518.transcr...@bugs.debian.org



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

2012-11-02 Thread Adam D. Barratt
Control: tags -1 + confirmed

On Thu, 2012-11-01 at 00:34 +0100, David Paleino wrote:
> I'm requesting pre-approval for an upload of wicd to unstable (targeted to
> testing). Please see the attached patch.

Please go ahead, and get back to us once the package has been in
unstable for a few days; thanks.

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



Bug#692165: marked as done (RM: sea-defender/0.9-2)

2012-11-02 Thread Debian Bug Tracking System
Your message dated Fri, 02 Nov 2012 20:39:55 +
with message-id <1351888795.21571.13.ca...@jacala.jungle.funky-badger.org>
and subject line Re: Bug#692165: RM: sea-defender/0.9-2
has caused the Debian Bug report #692165,
regarding RM: sea-defender/0.9-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.)


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

Please remove sea-defender.  I includes a few non-free files
(#692078).  It is a leaf package and has not been included in a stable
release yet.

Best wishes,
Mike
--- End Message ---
--- Begin Message ---
On Fri, 2012-11-02 at 16:28 -0400, Michael Gilbert wrote:
> Please remove sea-defender.  I includes a few non-free files
> (#692078).  It is a leaf package and has not been included in a stable
> release yet.

That bug is less than 24 hours old at this point. On the other hand, the
package was orphaned 48 hours before that and hasn't been touched in
nearly two years. :-(

Removal hint added.

Regards,

Adam--- End Message ---


Bug#692010: marked as done (unblock: raptor2/2.0.8-2)

2012-11-02 Thread Debian Bug Tracking System
Your message dated Fri, 02 Nov 2012 20:36:26 +
with message-id <1351888586.21571.10.ca...@jacala.jungle.funky-badger.org>
and subject line Re: Bug#692010: unblock: raptor2/2.0.8-2
has caused the Debian Bug report #692010,
regarding unblock: raptor2/2.0.8-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.)


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

Hi,

Please unblock raptor2/2.0.8-2, which adds a Breaks against raptor1
versions without symbol versioning, fixing the important bug#656928:

| raptor_sequence.c:385: (raptor_sequence_get_at) assertion failed: object 
pointer of type raptor_sequence is NULL.
| raptor_sequence.c:385: (raptor_sequence_get_at) assertion failed: object 
pointer of type raptor_sequence is NULL.

To avoid confusion, I should mention that this update has a missing
changelog item for a minor change, unfortunately:

  * Stop passing --with-xml-parser=libxml to "configure", since it is
redundant and unrecognized these days.

I provided a debdiff adding the missing changelog entry[1], but the
maintainer didn't seem interested, and I don't think that rises to the
level of NMU-worthy.

Thoughts welcome, as always.

Regards,
Jonathan

[1] http://bugs.debian.org/656928#40
diff -Nru raptor2-2.0.8/debian/changelog raptor2-2.0.8/debian/changelog
--- raptor2-2.0.8/debian/changelog  2012-06-24 23:30:38.0 -0700
+++ raptor2-2.0.8/debian/changelog  2012-09-07 21:39:50.0 -0700
@@ -1,3 +1,13 @@
+raptor2 (2.0.8-2) unstable; urgency=low
+
+  * debian/control: add a breaks relation by libraptor2-0 against squeeze
+libraptor1 to force upgrades to a version with symbol versioning
+(Closes: #656928)
+  * Added debian/patches/001-remove-m-strict-help.patch to remove -m strict
+from rapper help (Closes: #685682)
+
+ -- Dave Beckett   Fri, 07 Sep 2012 21:32:35 -0700
+
 raptor2 (2.0.8-1) unstable; urgency=low
 
   * New upstream release
diff -Nru raptor2-2.0.8/debian/control raptor2-2.0.8/debian/control
--- raptor2-2.0.8/debian/control2012-03-15 20:50:11.0 -0700
+++ raptor2-2.0.8/debian/control2012-09-07 21:30:30.0 -0700
@@ -21,6 +21,7 @@
 Section: libs
 Architecture: any
 Depends: ${misc:Depends}, ${shlibs:Depends}
+Breaks: libraptor1 (<< 1.4.21-3)
 Suggests: raptor2-utils
 Description: Raptor 2 RDF syntax library
  Raptor is a C library providing a set of parsers and serializers for
diff -Nru raptor2-2.0.8/debian/patches/001-remove-m-strict-help.patch 
raptor2-2.0.8/debian/patches/001-remove-m-strict-help.patch
--- raptor2-2.0.8/debian/patches/001-remove-m-strict-help.patch 1969-12-31 
16:00:00.0 -0800
+++ raptor2-2.0.8/debian/patches/001-remove-m-strict-help.patch 2012-09-07 
21:45:17.0 -0700
@@ -0,0 +1,22 @@
+Description: Remove -m MODE from rapepr help
+Origin: commit:430a21084665da35a715e9055d72a13487972969
+Author: Dave Beckett 
+Last-Update: 2012-09-07
+
+Remove -m MODE from help
+
+This option was removed in commit f94fa561db05b21132b14a2b72f05b77e666c252
+on Wed Apr 28 21:31:54 2010 -0700 as part of the Raptor V2 work.
+
+diff --git a/utils/rapper.c b/utils/rapper.c
+index c130177..31affb8 100644
+--- a/utils/rapper.c
 b/utils/rapper.c
+@@ -707,7 +707,6 @@ main(int argc, char *argv[])
+ puts(HELP_TEXT("f OPTION(=VALUE)", "feature OPTION(=VALUE)", HELP_PAD 
"Set parser or serializer options" HELP_PAD "Use `-f help' for a list of valid 
options"));
+ puts(HELP_TEXT("g", "guess   ", "Guess the input syntax (same as 
-i guess)"));
+ puts(HELP_TEXT("h", "help", "Print this help, then exit"));
+-puts(HELP_TEXT("m MODE", "mode MODE  ", "Set parser mode - 'lax' 
(default) or 'strict'"));
+ puts(HELP_TEXT("q", "quiet   ", "No extra information messages"));
+ puts(HELP_TEXT("r", "replace-newlines", "Replace newlines with spaces in 
literals"));
+ #ifdef SHOW_GRAPHS_FLAG
diff -Nru raptor2-2.0.8/debian/patches/series 
raptor2-2.0.8/debian/patches/series
--- raptor2-2.0.8/debian/patches/series 1969-12-31 16:00:00.0 -0800
+++ raptor2-2.0.8/debian/patches/series 2012-09-07 21:45:55.0 -0700
@@ -0,0 +1 @@
+001-remove-m-strict-help.patch
diff -Nru raptor2-2.0.8/debian/rules raptor2-2.0.8/debian/rules
--- raptor2-2.0.8/debian/rules  2012-06-24 23:31:55.0 -0700
+++ raptor2-2.0.8/debian/rules  2012-09-07 21:54:14.0 -0700
@@ -13,7 +13,6 @@
 DEB_DBG_PACKAGE

Bug#683142: unblock: bdii/5.2.5-2+wheezy3

2012-11-02 Thread Ansgar Burchardt
I have accepted bdii/5.2.5-2+wheezy3 from NEW, however there are still
some things that maybe should be improved:

There is an empty /etc/sysconfig directory.

The postinst uses chown on files in non-root-owned directories.

I am not sure if including the symlink
/var/lib/bdii/gip/ldif/default.ldif -> /usr/share/bdii/default.ldif is
correct.

Ansgar


-- 
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/87k3u37ncj@eisei.43-1.org



Bug#692165: RM: sea-defender/0.9-2

2012-11-02 Thread Michael Gilbert
Package: release.debian.org
User: release.debian@packages.debian.org
Usertags: rm
Severity: normal

Please remove sea-defender.  I includes a few non-free files
(#692078).  It is a leaf package and has not been included in a stable
release yet.

Best wishes,
Mike


-- 
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/CANTw=MOe5airZqDsh1e=tvjrbi+ja+jmokqel3nsd2d+oex...@mail.gmail.com



Bug#688044: marked as done (unblock: xen/4.1.3-3)

2012-11-02 Thread Debian Bug Tracking System
Your message dated Fri, 02 Nov 2012 21:19:17 +0100
with message-id <50942ac5.8080...@thykier.net>
and subject line Re: Bug#688044: unblock: xen/4.1.3-3
has caused the Debian Bug report #688044,
regarding unblock: xen/4.1.3-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.)


-- 
688044: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=688044
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 xen/4.1.3-3. It fixes various problems with one init
script.

xen (4.1.3-3) unstable; urgency=low

  * Xen domain init script:
- Make sure Open vSwitch is started before any domain.
- Properly handle and show output of failed migration and save.
- Ask all domains to shut down before checking them.

 -- Bastian Blank   Tue, 18 Sep 2012 13:26:32 +0200

unblock xen/4.1.3-3

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

Kernel: Linux 3.5-trunk-amd64 (SMP w/4 CPU cores)
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=locale: Cannot set 
LC_MESSAGES to default locale: No such file or directory
locale: Cannot set LC_ALL to default locale: No such file or directory
UTF-8)
Shell: /bin/sh linked to /bin/dash
--- End Message ---
--- Begin Message ---
On 2012-09-18 18:03, Bastian Blank wrote:
> Package: release.debian.org
> Severity: normal
> User: release.debian@packages.debian.org
> Usertags: unblock
> 
> Please unblock xen/4.1.3-3. It fixes various problems with one init
> script.
> 
> xen (4.1.3-3) unstable; urgency=low
> 
>   * Xen domain init script:
> - Make sure Open vSwitch is started before any domain.
> - Properly handle and show output of failed migration and save.
> - Ask all domains to shut down before checking them.
> 
>  -- Bastian Blank   Tue, 18 Sep 2012 13:26:32 +0200
> 
> unblock xen/4.1.3-3
> 
> [...]

Unblocked, thanks.

~Niels--- End Message ---


Re: Pre-approval request, Gnuplot 4.6.1 for Wheezy

2012-11-02 Thread Niels Thykier
On 2012-10-02 22:03, Anton Gladky wrote:
> Thanks, Torquil, for the information.
> 


Hi,

Sorry for the delay in getting back to you.

> Dear release-team, would you agree to unblock
> Gnuplot 4.6.1 for the Wheezy, if it will be packaged?
> [...]

We generally do not make decisions based on the changelogs alone.
Please send us a debdiff including the upstream changes[1] and we will
have a look.
  If the diff is relatively large, please double check it actually
reaches the list when you send it.  We have had a number of cases, where
the mail never reached us because lists.d.o /silently/ dropped the mail.
 However, keep in mind that if the diff is this huge, we usually cannot
review it and will default to a "no".
  In this case, we may still consider accepting a subset of the changes
(cherry-picked fixes) for various bugs.

~Niels

[1] Feel free to filter out .po files and auto-generated files like
autoconf's configure via filterdiff if such appear in the diff.  Though
please mention if you do apply such a filter.


-- 
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/509429af.5040...@thykier.net



Bug#690903: marked as done (unblock: gnome-panel/3.4.2.1-3)

2012-11-02 Thread Debian Bug Tracking System
Your message dated Fri, 02 Nov 2012 21:02:57 +0100
with message-id <509426f1.9080...@thykier.net>
and subject line Re: Bug#690903: unblock: gnome-panel/3.4.2.1-3
has caused the Debian Bug report #690903,
regarding unblock: gnome-panel/3.4.2.1-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.)


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

>From the changelog:

gnome-panel (3.4.2.1-3) unstable; urgency=low

  [ Josselin Mouette ]
  * Drop obsolete suggests on epiphany & evolution.

  [ Michael Biebl ]
  * Avoid double-forking when starting applications via the menu or the Alt-F2
launcher since this breaks pkexec. Closes: #690338
  * Rebuild with xz compression.

 -- Michael Biebl   Thu, 18 Oct 2012 20:05:21 +0200

full debdiff is attached.

Enabling xz compression gives us around 1.5 Mb for gnome-panel-data.

The patch to void double-forking has been provided by upstream after
filing this issue on bugs.gnome.org

Thanks for your work,
Michael

unblock gnome-panel/3.4.2.1-3

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

Kernel: Linux 3.2.0-4-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-panel-3.4.2.1/debian/changelog gnome-panel-3.4.2.1/debian/changelog
--- gnome-panel-3.4.2.1/debian/changelog	2012-05-22 08:59:22.0 +0200
+++ gnome-panel-3.4.2.1/debian/changelog	2012-10-18 20:05:23.0 +0200
@@ -1,3 +1,15 @@
+gnome-panel (3.4.2.1-3) unstable; urgency=low
+
+  [ Josselin Mouette ]
+  * Drop obsolete suggests on epiphany & evolution.
+
+  [ Michael Biebl ]
+  * Avoid double-forking when starting applications via the menu or the Alt-F2
+launcher since this breaks pkexec. Closes: #690338
+  * Rebuild with xz compression.
+
+ -- Michael Biebl   Thu, 18 Oct 2012 20:05:21 +0200
+
 gnome-panel (3.4.2.1-2) unstable; urgency=low
 
   [ Michael Biebl ]
diff -Nru gnome-panel-3.4.2.1/debian/control gnome-panel-3.4.2.1/debian/control
--- gnome-panel-3.4.2.1/debian/control	2012-05-22 09:12:05.0 +0200
+++ gnome-panel-3.4.2.1/debian/control	2012-10-18 21:35:18.0 +0200
@@ -7,7 +7,7 @@
 Section: gnome
 Priority: optional
 Maintainer: Debian GNOME Maintainers 
-Uploaders: Emilio Pozuelo Monfort , Gustavo Noronha Silva , Josselin Mouette , Michael Biebl 
+Uploaders: Gustavo Noronha Silva , Josselin Mouette , Michael Biebl 
 Standards-Version: 3.9.3
 Build-Depends: cdbs (>= 0.4.41),
debhelper (>= 8),
@@ -65,9 +65,7 @@
 Suggests: yelp,
   gnome-user-guide,
   gnome-terminal | x-terminal-emulator,
-  nautilus,
-  evolution,
-  epiphany-browser
+  nautilus
 Breaks: gnome-session (<< 2.26),
 gnome-power-manager (<< 2.26),
 gnome-control-center (<< 1:2.91),
diff -Nru gnome-panel-3.4.2.1/debian/control.in gnome-panel-3.4.2.1/debian/control.in
--- gnome-panel-3.4.2.1/debian/control.in	2012-05-22 08:53:32.0 +0200
+++ gnome-panel-3.4.2.1/debian/control.in	2012-09-23 17:12:10.0 +0200
@@ -60,9 +60,7 @@
 Suggests: yelp,
   gnome-user-guide,
   gnome-terminal | x-terminal-emulator,
-  nautilus,
-  evolution,
-  epiphany-browser
+  nautilus
 Breaks: gnome-session (<< 2.26),
 gnome-power-manager (<< 2.26),
 gnome-control-center (<< 1:2.91),
diff -Nru gnome-panel-3.4.2.1/debian/patches/17_avoid_double_forking.patch gnome-panel-3.4.2.1/debian/patches/17_avoid_double_forking.patch
--- gnome-panel-3.4.2.1/debian/patches/17_avoid_double_forking.patch	1970-01-01 01:00:00.0 +0100
+++ gnome-panel-3.4.2.1/debian/patches/17_avoid_double_forking.patch	2012-10-15 05:48:36.0 +0200
@@ -0,0 +1,155 @@
+From 755f4f16532379e01766363d281ef6ed67c1ba23 Mon Sep 17 00:00:00 2001
+From: Colin Walters 
+Date: Fri, 12 Oct 2012 18:21:18 -0400
+Subject: [PATCH] Avoid double forking when launching apps; it breaks "pkexec"
+
+See https://bugzilla.gnome.org/show_bug.cgi?id=675789
+
+https://bugzilla.gnome.org/show_bug.cgi?id=686059
+
+Signed-off-by: Colin Walters 
+---
+ gnome-panel/libpanel-util/panel-launch.c | 41 +---
+ gnome-panel/panel-run-dialog.c   | 20 +---

Bug#690762: marked as done (unblock: leave/1.12-2.1)

2012-11-02 Thread Debian Bug Tracking System
Your message dated Fri, 02 Nov 2012 20:55:48 +0100
with message-id <50942544.90...@thykier.net>
and subject line Re: Bug#690762: unblock: leave/1.12-2.1
has caused the Debian Bug report #690762,
regarding unblock: leave/1.12-2.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.)


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

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

Please unblock package leave. The version currently in unstable fixes RC
bug #640874. The debdiff is in the bug report.

unblock leave/1.12-2.1

Thanks,

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


pgpUr7N6KLqR6.pgp
Description: PGP signature
--- End Message ---
--- Begin Message ---
On 2012-10-17 14:05, Sébastien Villemot wrote:
> 
> Package: release.debian.org
> Severity: normal
> User: release.debian@packages.debian.org
> Usertags: unblock
> X-Debbugs-CC: le...@packages.debian.org
> 
> Please unblock package leave. The version currently in unstable fixes RC
> bug #640874. The debdiff is in the bug report.
> 
> unblock leave/1.12-2.1
> 
> Thanks,
> 

Unblocked, thanks.

~Niels--- End Message ---


Bug#691463: marked as done (unblock: mozjs/1.8.5-1.0.0+dfsg-4)

2012-11-02 Thread Debian Bug Tracking System
Your message dated Fri, 02 Nov 2012 20:54:00 +0100
with message-id <509424d8.3050...@thykier.net>
and subject line Re: Bug#691463: unblock: mozjs/1.8.5-1.0.0+dfsg-4
has caused the Debian Bug report #691463,
regarding unblock: mozjs/1.8.5-1.0.0+dfsg-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.)


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

mozjs is currently non-functional on ia64, which in turn e.g. breaks
gnome-shell on that architecture.

Stephan Schreiber has been debugging this issue and provided two patches
which seemingly fix those issues.

I was able to build mozjs on merulo and successfully run the js command
line interpreter, which simply segfaulted before without those patches.

We also have a confirmation from the original bug reporter that he could
successfully run gnome-shell on ia64. I was actually suprised we had
users running gnome-shell on ia64 :-)

The patches have been reviewed by Chris Coulson.

Full debdiff is attached.

Cheers,
Michael

unblock mozjs/1.8.5-1.0.0+dfsg-4

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

Kernel: Linux 3.2.0-4-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 mozjs-1.8.5-1.0.0+dfsg/debian/changelog mozjs-1.8.5-1.0.0+dfsg/debian/changelog
--- mozjs-1.8.5-1.0.0+dfsg/debian/changelog	2012-07-25 15:50:09.0 +0200
+++ mozjs-1.8.5-1.0.0+dfsg/debian/changelog	2012-10-25 21:51:10.0 +0200
@@ -1,11 +1,20 @@
-mozjs (1.8.5-1.0.0+dfsg-3.1) unstable; urgency=low
+mozjs (1.8.5-1.0.0+dfsg-4) unstable; urgency=low
 
-  * Non-maintainer upload.
+  [ Stephan Schreiber ]
+  * Fix MapPages() to work on ia64
+- add debian/patches/fix-map-pages-on-ia64.patch
+- update debian/patches/series
+  * Disable JS static strings on ia64
+- add debian/patches/disable-static-strings-on-ia64.patch
+- update debian/patches/series
+  * Closes: #659186
+
+  [ gregor herrmann ]
   * Fix "libmozjs185-dev depends on libffi-dev": add libffi-dev to Depends in
 libmozjs185-dev binary package. Thanks Nicolas Boulenguez.
 (Closes: #678859)
 
- -- gregor herrmann   Wed, 25 Jul 2012 15:48:48 +0200
+ -- Chris Coulson   Thu, 25 Oct 2012 20:10:45 +0100
 
 mozjs (1.8.5-1.0.0+dfsg-3) unstable; urgency=low
 
diff -Nru mozjs-1.8.5-1.0.0+dfsg/debian/patches/disable-static-strings-on-ia64.patch mozjs-1.8.5-1.0.0+dfsg/debian/patches/disable-static-strings-on-ia64.patch
--- mozjs-1.8.5-1.0.0+dfsg/debian/patches/disable-static-strings-on-ia64.patch	1970-01-01 01:00:00.0 +0100
+++ mozjs-1.8.5-1.0.0+dfsg/debian/patches/disable-static-strings-on-ia64.patch	2012-10-25 21:51:11.0 +0200
@@ -0,0 +1,603 @@
+From: Stephan Schreiber 
+Bug-Debian: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=659186
+Bug: https://bugzilla.mozilla.org/show_bug.cgi?id=589735
+Description: Turn off JS static strings on ia64
+
+diff -rp -u8 mozjs-old2/js/src/jsatom.cpp mozjs-1.8.5-1.0.0+dfsg/js/src/jsatom.cpp
+--- mozjs-old2/js/src/jsatom.cpp	2012-10-05 19:03:00.0 +0200
 mozjs-1.8.5-1.0.0+dfsg/js/src/jsatom.cpp	2012-10-05 19:17:27.0 +0200
+@@ -598,21 +598,23 @@ js_AtomizeChars(JSContext *cx, const jsc
+ }
+ 
+ JSAtom *
+ js_GetExistingStringAtom(JSContext *cx, const jschar *chars, size_t length)
+ {
+ JSString str, *str2;
+ JSAtomState *state;
+ 
++#ifdef JS_HAS_STATIC_STRINGS
+ if (length == 1) {
+ jschar c = *chars;
+ if (c < UNIT_STRING_LIMIT)
+ return STRING_TO_ATOM(JSString::unitString(c));
+ }
++#endif
+ 
+ str.initFlatNotTerminated((jschar *)chars, length);
+ state = &cx->runtime->atomState;
+ 
+ JS_LOCK(cx, &state->lock);
+ AtomSet::Ptr p = state->atoms.lookup(str.assertIsFlat());
+ str2 = p ? AtomEntryToKey(*p) : NULL;
+ JS_UNLOCK(cx, &state->lock);
+diff -rp -u8 mozjs-old2/js/src/jsiter.cpp mozjs-1.8.5-1.0.0+dfsg/js/src/jsiter.cpp
+--- mozjs-old2/js/src/jsiter.cpp	2012-10-05 19:03:00.0 +0200
 mozjs-1.8.5-1.0.0+dfsg/js/src/jsiter.cpp	2012-10-05 19:24:40.0 +0200
+@@ -997,19 +997,22 @@ js_IteratorNext(JSContext *cx, JSObject
+ *rval = IdToValue(*ni->current());
+ ni->incCursor();
+ 
+ if (rval->isStr

Bug#692137: unblock(pre-approval): zsnes/1.510+bz2-5

2012-11-02 Thread Adam D. Barratt
Control: tags -1 + moreinfo

On Fri, 2012-11-02 at 16:27 +0100, Fabian Greffrath wrote:
> The patch got mangled up somehow. Please find the right one attached.

+zsnes (1.510+bz2-5) unstable; urgency=low
+
+  * Build zsnes without libao support for wheezy.
+libao has often been a source of trouble for zsnes. Without libao support
+it will fall back to the SDL audio driver. Furthermore it will make it
+possible to install the zsnes package via multi-arch (see #638741).

Reading that bug log makes me sad. :-(

One of the relevant seeming messages says "[a]nother solution would be
to disable libao in zsnes but IIRC the other sound backends are
terrible". Did that turn out not to be the case?

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



Processed: Re: Bug#692137: unblock(pre-approval): zsnes/1.510+bz2-5

2012-11-02 Thread Debian Bug Tracking System
Processing control commands:

> tags -1 + moreinfo
Bug #692137 [release.debian.org] unblock(pre-approval): zsnes/1.510+bz2-5
Added tag(s) moreinfo.

-- 
692137: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=692137
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.b692137.135188512719330.transcr...@bugs.debian.org



Processed: Re: Bug#692145: unblock: maradns/1.4.12-4

2012-11-02 Thread Debian Bug Tracking System
Processing control commands:

> tags -1 + moreinfo
Bug #692145 [release.debian.org] unblock: maradns/1.4.12-4
Added tag(s) moreinfo.

-- 
692145: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=692145
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.b692145.135188383310354.transcr...@bugs.debian.org



Bug#692145: unblock: maradns/1.4.12-4

2012-11-02 Thread Adam D. Barratt
Control: tags -1 + moreinfo

On Fri, 2012-11-02 at 18:32 +0100, Andreas Beckmann wrote:
> Is CFG_TEMPLATE used before it's getting defined?

$ grep -n TEMPLATE maradns-1.4.12/debian/postinst 
14:if [ "$1" = "configure" ] && [ -f $CFG_TEMPLATE ]
18:CFG_TEMPLATE=/usr/share/maradns/mararc
22: -e "s/^# maradns_gid = .*$/maradns_gid = $GIDNUM/" < 
$CFG_TEMPLATE > $CFG_TMP

Yes. :-/

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



Bug#691633: marked as done (unblock: kde4libs/4:4.8.4-4)

2012-11-02 Thread Debian Bug Tracking System
Your message dated Fri, 02 Nov 2012 18:58:16 +0100
with message-id <509409b8.5040...@thykier.net>
and subject line Re: Bug#691633: unblock: kde4libs/4:4.8.4-4
has caused the Debian Bug report #691633,
regarding unblock: kde4libs/4:4.8.4-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.)


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

The most important thing in this upload is to rebuild the packages with xz
compression to make more stuff fit in the first CD, and thus closing #688766.

We also bacported an upstream patch to fix copying of files with extended ACLs.

Finally we confirmed symbols from other archs.

And yes, I've introduced yet another typo in a package description (should be
compression and not comression) :-/

Diffstat:

 changelog |   10 +
 control   |3 
 libkde3support4.symbols   |4 
 libkdecore5.symbols   |4 
 libkdeui5.symbols |   10 -
 libkhtml5.symbols |   32 +++---
 libkio5.symbols   |   20 +--
 libkjsapi4.symbols|2 
 libknewstuff2-4.symbols   |4 
 libnepomuk4.symbols   |8 +
 libplasma3.symbols|   12 +-
 patches/fix-copying-of-files-with-extended-ACLs.patch |   96 ++
 patches/series|1 
 13 files changed, 160 insertions(+), 46 deletions(-)


unblock kde4libs/4:4.8.4-4

-- System Information:
Debian Release: wheezy/sid
Architecture: amd64 (x86_64)
Foreign Architectures: mips
i386

Kernel: Linux 3.2.21+edid (SMP w/2 CPU cores)
Locale: LANG=es_AR.UTF-8, LC_CTYPE=es_AR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash
diff -Nru kde4libs-4.8.4/debian/changelog kde4libs-4.8.4/debian/changelog
--- kde4libs-4.8.4/debian/changelog	2012-06-27 16:41:54.0 -0300
+++ kde4libs-4.8.4/debian/changelog	2012-10-25 19:02:15.0 -0300
@@ -1,3 +1,13 @@
+kde4libs (4:4.8.4-4) unstable; urgency=low
+
+  * Backport an upstream patch to fix copying of files with extended ACLs.
+  * The rebuild will get the package rebuilt with xz comression
+(Closes: #688766).
+  * Add myself to Uploaders.
+  * Confirm symbol files on more Debian arches.
+
+ -- Lisandro Damián Nicanor Pérez Meyer   Thu, 25 Oct 2012 18:11:08 -0300
+
 kde4libs (4:4.8.4-3) unstable; urgency=low
 
   * Team upload.
diff -Nru kde4libs-4.8.4/debian/control kde4libs-4.8.4/debian/control
--- kde4libs-4.8.4/debian/control	2012-06-21 16:25:13.0 -0300
+++ kde4libs-4.8.4/debian/control	2012-10-25 18:11:03.0 -0300
@@ -7,7 +7,8 @@
  Modestas Vainius , 
  George Kiagiadakis ,
  José Manuel Santamaría Lema ,
- Eshat Cakar 
+ Eshat Cakar ,
+ Lisandro Damián Nicanor Pérez Meyer 
 Build-Depends: debhelper (>= 7.3.16), cmake (>= 2.6.4), pkg-kde-tools (>= 0.14), libdlrestrictions-dev (>= 0.14),
  shared-mime-info (>= 0.30), dpkg-dev (>= 1.15.5), libphonon-dev (>= 4:4.6.0really4.3.80),
  libqt4-dev (>= 4:4.7.0), libqt4-opengl-dev (>= 4:4.7.0), libqtwebkit-dev,
diff -Nru kde4libs-4.8.4/debian/libkde3support4.symbols kde4libs-4.8.4/debian/libkde3support4.symbols
--- kde4libs-4.8.4/debian/libkde3support4.symbols	2012-06-23 09:17:29.0 -0300
+++ kde4libs-4.8.4/debian/libkde3support4.symbols	2012-10-25 20:02:49.0 -0300
@@ -1,4 +1,4 @@
-# SymbolsHelper-Confirmed: 4:4.8.4 amd64 armel armhf hurd-i386 i386 ia64 kfreebsd-amd64 kfreebsd-i386 powerpc s390 s390x
+# SymbolsHelper-Confirmed: 4:4.8.4 amd64 armel armhf hurd-i386 i386 ia64 kfreebsd-amd64 kfreebsd-i386 powerpc s390 s390x sparc
 libkde3support.so.4 libkde3support4 #MINVER#
 * Build-Depends-Package: kdelibs5-dev
  _ZN10K3DockArea11qt_metacallEN11QMetaObject4CallEiPPv@Base 4:4.3.4
@@ -1427,7 +1427,7 @@
  _ZNK12K3DockWidget9mayBeHideEv@Base 4:4.3.4
  _ZNK12K3DockWidget9mayBeShowEv@Base 4:4.3.4
  (optional=templinst|arch=armel armhf kfreebsd-amd64 kfreebsd-i386)_ZNK12KConfigGroup9readCheckIbEET_PKcRKS1_@Base 4:4.6.3
- (optional=templinst|arch=hurd-i386 i386 sparc)_ZNK12KConfigGroup9readEntryIiEET_RK7QStringRKS1_@Base 4:4.7.4
+ (optional=templinst|arch=amd64 hurd-i386 i386)_ZNK12KConfig

Bug#691730: marked as done (unblock: schleuder/2.2.1-2)

2012-11-02 Thread Debian Bug Tracking System
Your message dated Fri, 02 Nov 2012 18:45:09 +0100
with message-id <509406a5.8060...@thykier.net>
and subject line Re: Bug#691730: unblock: schleuder/2.2.1-2
has caused the Debian Bug report #691730,
regarding unblock: schleuder/2.2.1-2
to be marked as done.

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

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


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

I finally got around to test schleuder 2.2.1-1 in a production environment a
couple weeks ago. This lead me to discover several painful bugs. Several of
them should be considered RC. I preferred to spend time fixing them instead of
doing full reports to the BTS just for the sake of it.

Here's the full changelog with some comments for the most important bugs:

   * Support removed (but not purged) package in weekly cron. (Closes: #678487)
   * Ensure that /etc/schleuder/lists exists before migrating lists from older
 releases format.
→ This will prevent upgrade to complete if no lists existed
  before.
   * Fix receiving unencrypted messages: transform one missed call to
 'ruby-filemagic' in the 'magic' equivalent.
→ schleuder/2.2.1-1 is unable to receive unencrypted email.
   * Warn for expiring keys for two weeks instead of more than three years in
 check-expired-keys.
   * Avoid stty calls in check-expired-keys cron avoid weekly error messages.
   * Restore the lost debian-no-rubygems.patch: the Debian package does not need
 rubygems to work.
→ With this patch, Schleuder will fail if the 'rubygems' package
  is not installed, but it is not listed as a dependency.
   * Fix broken member file created by schleuder-newlist when used in
 interactive mode.
   * Fix spelling mistake in debian/NEWS. Thanks lintian for spotting that one.
   * Drop useless Build-Depends on pandoc. Upstream ships manpages since version
 2.2.

Diffstat:

 NEWS |2 
 changelog|   20 ++
 control  |2 
 patches/bugs-do-not-call-stty-in-check-expired.patch |   42 +
 patches/bugs-fix-check-expired-keys-warning-period.patch |   35 +++
 patches/bugs-fix-interactive-newlist.patch   |   47 +++
 patches/debian-no-rubygems.patch |   31 +
 patches/debian-use-magic-instead-of-filemagic.patch  |   24 +++
 patches/series   |4 +
 schleuder.cron.weekly|3 
 schleuder.postinst   |3 
 11 files changed, 208 insertions(+), 5 deletions(-)


Schleuder is a leaf package with very few users according to Popcon.
The version currently in Wheezy is unfit for production, so please let
schleuder version 2.2.1-2 replace it.

Hint:

unblock schleuder/2.2.1-2

Thanks for your hard work!
-- 
Jérémy Bobbio.''`. 
lu...@debian.org: :Ⓐ  :  # apt-get install anarchism
`. `'` 
  `-   


signature.asc
Description: Digital signature
--- End Message ---
--- Begin Message ---
On 2012-10-29 09:54, Jérémy Bobbio wrote:
> Package: release.debian.org
> Severity: normal
> User: release.debian@packages.debian.org
> Usertags: unblock
> 
> I finally got around to test schleuder 2.2.1-1 in a production environment a
> couple weeks ago. This lead me to discover several painful bugs. Several of
> them should be considered RC. I preferred to spend time fixing them instead of
> doing full reports to the BTS just for the sake of it.
> 
> Here's the full changelog with some comments for the most important bugs:
> 
> [...]
> 
> 
> Schleuder is a leaf package with very few users according to Popcon.
> The version currently in Wheezy is unfit for production, so please let
> schleuder version 2.2.1-2 replace it.
> 
> Hint:
> 
> unblock schleuder/2.2.1-2
> 
> Thanks for your hard work!

Unblocked, thanks.

~Niels--- End Message ---


Bug#691702: marked as done (unblock: ibus/1.4.1-8)

2012-11-02 Thread Debian Bug Tracking System
Your message dated Fri, 02 Nov 2012 18:47:58 +0100
with message-id <5094074e.2080...@thykier.net>
and subject line Re: Bug#691702: unblock: ibus/1.4.1-8
has caused the Debian Bug report #691702,
regarding unblock: ibus/1.4.1-8
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.)


-- 
691702: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=691702
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 ibus/1.4.1-8 which fixes RC bug #691071 as well as a
bit more maintenance updates.

ibus (1.4.1-8) unstable; urgency=low

  * dh to call dh_girepository. Closes: #691071
  * Removed unused-override unknown-section introspection for lintian.
  * Add symbols file for libibus-1.0-0. Closes: #691070
  * Bump policy to 3.9.3.

 -- Osamu Aoki   Sun, 21 Oct 2012 22:29:37 +0900

debdiff has been attached.

-- 
Regards,
Aron Xu


ibus_1.4.1-8.debdiff
Description: Binary data
--- End Message ---
--- Begin Message ---
On 2012-10-28 20:28, Aron Xu wrote:
> Package: release.debian.org
> Severity: normal
> User: release.debian@packages.debian.org
> Usertags: unblock
> 
> Please unblock ibus/1.4.1-8 which fixes RC bug #691071 as well as a
> bit more maintenance updates.
> 
> ibus (1.4.1-8) unstable; urgency=low
> 
>   * dh to call dh_girepository. Closes: #691071
>   * Removed unused-override unknown-section introspection for lintian.
>   * Add symbols file for libibus-1.0-0. Closes: #691070
>   * Bump policy to 3.9.3.
> 
>  -- Osamu Aoki   Sun, 21 Oct 2012 22:29:37 +0900
> 
> debdiff has been attached.
> 

Unblocked, thanks.

~Niels--- End Message ---


Bug#691762: marked as done (unblock: debian-reference/2.49)

2012-11-02 Thread Debian Bug Tracking System
Your message dated Fri, 02 Nov 2012 18:39:39 +0100
with message-id <5094055b.7090...@thykier.net>
and subject line Re: Bug#691762: unblock: debian-reference/2.49
has caused the Debian Bug report #691762,
regarding unblock: debian-reference/2.49
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.)


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

debian-reference (2.49) unstable; urgency=low

  * Change the tone of description around non-free to cope with
the bug report #686481 based on the GNU perspective.
  * Document $TMPDIR and UUID in fstab. Closes: #669010, #662975
  * Update examples in tutorials. Closes: #677050
  * Update software lists with new LibreOffice, GNOME, KDE apps.
  * Update translations. (ja, fr, it, pt)

 -- Osamu Aoki   Sun, 28 Oct 2012 11:08:07 +0900

This is an upload readying this document for the current wheezy.  Many
minor contents updates has been done together with translations.

Out of all the changes made, most important one is the bug #68648.  I
did my best effort to reduce conglicts with GNU following guidances and
suggestion made by the leader, Zak.  We are waiting for response from
GNU before closing this bug.  But in order to make this official, it is
highly desiable for this package to be unblocked.  

unblock debian-reference/2.49

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

Kernel: Linux 3.5-trunk-amd64 (SMP w/8 CPU cores)
Locale: LANG=en_US.utf8, LC_CTYPE=en_US.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
--- End Message ---
--- Begin Message ---
On 2012-10-29 13:53, Osamu Aoki wrote:
> Package: release.debian.org
> Severity: normal
> User: release.debian@packages.debian.org
> Usertags: unblock
> 
> Please unblock package debian-reference
> 
> [...]
> 
> unblock debian-reference/2.49
> 
> [...]
> 
> 

Unblocked, thanks.

~Niels--- End Message ---


Bug#692145: unblock: maradns/1.4.12-4

2012-11-02 Thread Andreas Beckmann
Is CFG_TEMPLATE used before it's getting defined?

-if [ "$1" = "configure" ] && [ -f /etc/maradns/mararc ]
+if [ "$1" = "configure" ] && [ -f $CFG_TEMPLATE ]
 then
-   [old code]
+CFG_TEMPLATE=/usr/share/maradns/mararc
+[new ucf code]
 fi


Andreas


-- 
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/5094039c.1030...@abeckmann.de



Bug#692121: marked as done (RM: rhythmbox-ampache/0.11.1-1)

2012-11-02 Thread Debian Bug Tracking System
Your message dated Fri, 02 Nov 2012 18:06:50 +0100
with message-id <5093fdaa.6090...@thykier.net>
and subject line Re: Bug#692121: RM: rhythmbox-ampache/0.11.1-1
has caused the Debian Bug report #692121,
regarding RM: rhythmbox-ampache/0.11.1-1
to be marked as done.

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

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


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

Please remove rhythmbox-ampache as it is not fit for release

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

Kernel: Linux 3.2.0-3-686-pae (SMP w/1 CPU core)
--- End Message ---
--- Begin Message ---
On 2012-11-02 07:46, Charlie Smotherman wrote:
> Package: release.debian.org
> Severity: normal
> User: release.debian@packages.debian.org
> Usertags: rm
> 
> Please remove rhythmbox-ampache as it is not fit for release
> 
> -- System Information:
> Debian Release: wheezy/sid
>   APT prefers testing
>   APT policy: (500, 'testing')
> Architecture: i386 (i686)
> 
> Kernel: Linux 3.2.0-3-686-pae (SMP w/1 CPU core)
> 
> 

Removal hint added, thanks.

~Niels--- End Message ---


Bug#692145: unblock: maradns/1.4.12-4

2012-11-02 Thread Nicholas Bamber
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock package maradns

Needed to use ucf to handle config changes: #636158

unblock maradns/1.4.12-4

-- System Information:
Debian Release: wheezy/sid
Architecture: i386 (i686)

Kernel: Linux 3.2.0-3-686-pae (SMP w/1 CPU core)
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
diff -Nru maradns-1.4.12/debian/changelog maradns-1.4.12/debian/changelog
--- maradns-1.4.12/debian/changelog	2012-06-08 21:38:28.0 +0100
+++ maradns-1.4.12/debian/changelog	2012-11-01 22:17:44.0 +
@@ -1,3 +1,13 @@
+maradns (1.4.12-4) unstable; urgency=low
+
+  * Using ucf to manage config file to comply with
+policy 10.7.3. (Closes: 636158)
+- Added ucf as a dependency to the maradns package
+- Maradns config file installed below /usr/share/maradns
+- ucf used to install and purge the config file
+
+ -- Nicholas Bamber   Thu, 01 Nov 2012 22:16:08 +
+
 maradns (1.4.12-3) unstable; urgency=low
 
   * Improved changelog parsing to work with binNMUs (Closes: #675392)
diff -Nru maradns-1.4.12/debian/control maradns-1.4.12/debian/control
--- maradns-1.4.12/debian/control	2012-06-06 22:15:49.0 +0100
+++ maradns-1.4.12/debian/control	2012-10-29 08:40:29.0 +
@@ -11,7 +11,7 @@
 Package: maradns
 Architecture: any
 Depends: ${shlibs:Depends}, ${misc:Depends}, adduser, lsb-base,
- duende (>= 1.4.06-3)
+ duende (>= 1.4.06-3), ucf
 Recommends: ${python:Depends}, maradns-zoneserver
 Description: simple security-focused Domain Name Service server
  MaraDNS is easy to configure DNS server that functions as a
diff -Nru maradns-1.4.12/debian/maradns.install maradns-1.4.12/debian/maradns.install
--- maradns-1.4.12/debian/maradns.install	2012-02-02 09:50:22.0 +
+++ maradns-1.4.12/debian/maradns.install	2012-10-29 09:27:59.0 +
@@ -3,5 +3,5 @@
 tcp/fetchzone usr/sbin
 tcp/getzone usr/sbin
 server/maradns usr/sbin
-debian/mararc etc/maradns
+debian/mararc usr/share/maradns
 debian/maradns-insserv etc/insserv.conf.d
diff -Nru maradns-1.4.12/debian/postinst maradns-1.4.12/debian/postinst
--- maradns-1.4.12/debian/postinst	2012-02-02 09:50:22.0 +
+++ maradns-1.4.12/debian/postinst	2012-10-29 12:03:00.0 +
@@ -11,18 +11,16 @@
 
 mkdir -p /etc/maradns/logger
 
-if [ "$1" = "configure" ] && [ -f /etc/maradns/mararc ]
+if [ "$1" = "configure" ] && [ -f $CFG_TEMPLATE ]
 then
 	IDNUM=`id -u maradns`
 	GIDNUM=`id -g maradns`
-	if [ "$2" = "" ] # we are doing fresh install
-	then
-		sed -e "s/^maradns_uid = .*$/maradns_uid = $IDNUM/" \
-			-e "s/^# maradns_gid = .*$/maradns_gid = $GIDNUM/" < /etc/maradns/mararc > /etc/maradns/mararc.tmp
-		mv -f /etc/maradns/mararc.tmp /etc/maradns/mararc
-	else
-		grep -q "maradns_uid = $IDNUM" /etc/maradns/mararc || echo WARNING: "maradns_uid = $IDNUM" is missing from /etc/maradns/mararc
-	fi
+CFG_TEMPLATE=/usr/share/maradns/mararc
+CFG_TMP=/etc/maradns/mararc.dpkg-new
+CFG_FILE=/etc/maradns/mararc
+	sed -e "s/^maradns_uid = .*$/maradns_uid = $IDNUM/" \
+		-e "s/^# maradns_gid = .*$/maradns_gid = $GIDNUM/" < $CFG_TEMPLATE > $CFG_TMP
+ucf --debconf-ok $CFG_TMP $CFG_FILE && rm -f $CFG_TMP
 fi
 
 #DEBHELPER#
diff -Nru maradns-1.4.12/debian/postrm maradns-1.4.12/debian/postrm
--- maradns-1.4.12/debian/postrm	2012-02-02 09:50:22.0 +
+++ maradns-1.4.12/debian/postrm	2012-10-31 20:02:55.0 +
@@ -2,6 +2,8 @@
 
 set -e
 
+CFG_FILE=/etc/maradns/mararc
+
 case "$1" in
 
   purge)
@@ -9,6 +11,18 @@
 # However there is no consensus on the correct implementation.
 # Also this might get missed because it does not use 'deluser'.
 userdel maradns ||true
+
+if which ucf >/dev/null 2>&1; then
+ucf --purge $CFG_FILE
+else
+rm -f $CFG_FILE
+fi
+
+for ext in .bak .tmp .dpkg-tmp .dkpg-new .dpkg-old .ucf-new .ucf-old .ucf-dist
+do
+   rm -f $CFG_FILE$ext
+done
+
 rm -rf /etc/maradns ||true
 ;;
 


Bug#692137: unblock(pre-approval): zsnes/1.510+bz2-5

2012-11-02 Thread Fabian Greffrath

Am 02.11.2012 16:24, schrieb Fabian Greffrath:

Please find the output of git-diff attached.


The patch got mangled up somehow. Please find the right one attached.

 - Fabian


diff --git a/debian/changelog b/debian/changelog
index d33b3f6..5ed5541 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,12 @@
+zsnes (1.510+bz2-5) unstable; urgency=low
+
+  * Build zsnes without libao support for wheezy.
+libao has often been a source of trouble for zsnes. Without libao support
+it will fall back to the SDL audio driver. Furthermore it will make it
+possible to install the zsnes package via multi-arch (see #638741).
+
+ -- Fabian Greffrath   Fri, 02 Nov 2012 15:07:44 +0100
+
 zsnes (1.510+bz2-4) unstable; urgency=low
 
   [ Etienne Millon ]
diff --git a/debian/control b/debian/control
index 436e071..ad02959 100644
--- a/debian/control
+++ b/debian/control
@@ -9,7 +9,6 @@ Uploaders: Etienne Millon ,
 Build-Depends: debhelper (>= 9),
dh-autoreconf,
dpkg-dev (>= 1.13.2),
-   libao-dev,
libgl1-mesa-dev | libgl-dev,
libncurses5-dev | libncurses-dev,
libpng-dev,
diff --git a/debian/rules b/debian/rules
index 5090080..6bba2f4 100755
--- a/debian/rules
+++ b/debian/rules
@@ -19,7 +19,7 @@ override_dh_auto_configure:
 	dh_auto_configure --sourcedirectory=src -- \
 		--enable-opengl \
 		--disable-cpucheck --enable-release \
-		--enable-libao force_arch=i486
+		force_arch=i486
 
 override_dh_clean:
 	rm -f src/Makefile src/cfg.h src/config.h src/config.log src/config.status src/input.h src/makefile.dep src/md.h src/parsegen src/tools/depbuild src/zsnes


Bug#692137: unblock(pre-approval): zsnes/1.510+bz2-5

2012-11-02 Thread Fabian Greffrath
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock package zsnes

The only difference between this and version 1.510+bz2-4, which is already in
testing, is that we built zsnes without libao support. The rationale is that
libao has frequently been a source of trouble for zsnes (c.f. #470410, #679826,
#638741). Since zsnes can fall back to the SDL audio driver instead, we
consider it more safe to remove libao for wheezy. On top of this, it will
finally be possible to install zsnes:i386 on amd64 via multi-arch. By now it is
merely possible to install zsnes in a i386-chroot on amd64, but this reportedly
gives errors with sound play back due to, well, libao.

Please find the output of git-diff attached.

unblock zsnes/1.510+bz2-5

-- System Information:
Debian Release: wheezy/sid
  APT prefers testing
  APT policy: (901, 'testing'), (502, 'unstable'), (501, 'experimental')
Architecture: i386 (i686)

Kernel: Linux 3.2.0-4-686-pae (SMP w/1 CPU core)


zsnes_1.510+bz2-5.diff
Description: inode/empty


Bug#692135: unblock: whohas/0.29-0.2

2012-11-02 Thread Yaroslav Halchenko
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock package whohas

More than a month ago I have NMU-ed two fixes:

  * Fixed and improved 06-ubuntu-versions to get information on all
reported releases for Ubuntu (Closes: #670675)

 before it was reporting only 1 ubuntu release, making this tool useless for me

  * Adjusted 10-debian-versions to rely on fixed in 06-ubuntu-versions
functionality to fetch information on all available releases at once,
instead of looping through predefined list of releases. This way
it should obtain information about oldstable and backports when
available (Closes: #616297,#655497)

 which made it much faster and increased coverage

Those fixes rendered package usable again for people in the land of Debian and
its derivatives.  I have been using it quite often since then and have not seen
any side-effects of my patches.  I am also attaching a complete debdiff for the
-0.2 package from -0.1 in wheezy ATM -- my fix is pretty much just 1 chunk of
perl code, which I am not expert in, but which was based on the previously
shipped patch (removed by mistake in -0.1) and this code seems to function
properly atm.

Cheers,

unblock whohas/0.29-0.2

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

Kernel: Linux 3.2.0-3-amd64 (SMP w/2 CPU cores)
Locale: LANG=en_US, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash
diff -Nru whohas-0.29/debian/changelog whohas-0.29/debian/changelog
--- whohas-0.29/debian/changelog	2012-01-15 14:13:43.0 -0500
+++ whohas-0.29/debian/changelog	2012-09-27 10:19:48.0 -0400
@@ -1,3 +1,17 @@
+whohas (0.29-0.2) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Fixed and improved 06-ubuntu-versions to get information on all
+reported releases for Ubuntu (Closes: #670675)
+  * Adjusted 10-debian-versions to rely on fixed in 06-ubuntu-versions
+functionality to fetch information on all available releases at once,
+instead of looping through predefined list of releases. This way
+it should obtain information about oldstable and backports when
+available (Closes: #616297,#655497)
+  * The other patches in the series were updated
+
+ -- Yaroslav Halchenko   Thu, 27 Sep 2012 10:14:28 -0400
+
 whohas (0.29-0.1) unstable; urgency=low
 
   * Non-maintainer upload.
diff -Nru whohas-0.29/debian/patches/06-ubuntu-versions whohas-0.29/debian/patches/06-ubuntu-versions
--- whohas-0.29/debian/patches/06-ubuntu-versions	2012-01-15 12:34:13.0 -0500
+++ whohas-0.29/debian/patches/06-ubuntu-versions	2012-09-27 10:09:51.0 -0400
@@ -1,8 +1,27 @@
-Index: whohas-0.29/program/whohas
-===
 whohas-0.29.orig/program/whohas	2012-01-15 14:33:25.223864820 -0300
-+++ whohas-0.29/program/whohas	2012-01-15 14:34:10.853958060 -0300
-@@ -51,7 +51,7 @@
+From: Yaroslav Halchenko 
+Subject: Reincarnated and refactored the patch to fetch multiple suites from listing page for ubuntu (and Debian)
+
+original patch had header:
+## 06-ubuntu-versions-510203.dpatch by Jonathan Wiltshire 
+##
+## All lines beginning with `## DP:' are a description of the patch.
+## DP: Patch to show all versions of a package from Ubuntu, not just
+## DP: the earliest, see bug 510203.
+## DP: Additionally, show the repo that the package is from (eg. universe)
+## DP: Original patch from Steve Cotton 
+## DP: Status: forwarded upstream to Philipp Wesche 
+
+I have not relied on it actually but redone it, this time relying more on the
+markup instead of lines counts. Also fixed stripping of additional HREFs after
+the version (e.g. to backports repo)
+
+Origin: Debian
+Bug-Debian: http://bugs.debian.org/670675
+Last-Update: 2012-09-27
+
+--- a/program/whohas
 b/program/whohas
+@@ -51,7 +51,7 @@ my @columns = (11,38,18,4,10,25);
  my $cols = 6;
  
  my $fedora_release		 =  16			;
@@ -11,3 +30,46 @@
  my $opensuse_major		 = "12"			;
  my $opensuse_minor		 = "1"			;
  my $mandrivaVersion		 = "2011.0"		;
+@@ -964,17 +964,31 @@ sub debuntu {
+ 		for (my $i = 50; $i < @lines; $i++) {
+ 			if ($lines[$i] =~ /Package /) {
+ my $name = (split /h3>Package |<\/h3>/, $lines[$i])[1];
+-push @names, $name;
+-my @parts = split /href\=\"|\"\>|<\/a\>/, $lines[$i+3];
+-$parts[4] =~ s/ \(|\)://g;
+-push @groups, $parts[4];
+-push @repos, $dists[$x];
+-push @urls,  $baseurl.$parts[2];
+-push @dates, "";
+-@parts = split />|: /, $lines[$i+6];
+-$parts[1] =~ s/ \[\intrepid (base):
++# $lines[$i+3] 1.14.20ubuntu6: amd64 i386
++# And this list starts with  and ends with 
++$i += 1;
++while (($lines[$i] !~ '') && ($i < @lines)) {
++	if ($lines[$i] =~ /cl

Bug#691065: unblock (pre-approval): network-manager-openconnect/0.9.4.0-8

2012-11-02 Thread Mike Miller
On Fri, Nov 02, 2012 at 10:03:55AM +, Adam D. Barratt wrote:
> I'm possibly missing something, but...:
> 
> ++  g_string_append_c (str, c);
> ++  if (strstr (str->str, "QUIT") || (str->len > 10))
> ++  break;
> 
> Isn't that "wait for QUIT or any 11 eleven characters", rather than
> "wait for QUIT"?

Yes, this is true. This is a helper program spawned from NM applet or
gnome-shell and communicating over a pipe. The NM authentication helper
programs all use the identical wait_for_quit function, which is really
waiting for the first of any of the following "semaphores" from the
parent:

1) "QUIT"
2) any 11 characters
3) any I/O error
4) any input after 20 seconds elapsed

Any of these events allow the function to return, which in turn allows
the program to exit normally. The contents of str are not used in any
other way. I suppose the length limit here is to avoid accumulating a
large buffer just in case the parent process sends something other than
QUIT for some reason.

Thanks for your feedback.

-- 
mike


-- 
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/20121102133755.gb15...@xps14z.home.local



Bug#692128: unblock: fonts-liberation/1.07.2-6

2012-11-02 Thread Fabian Greffrath
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock package fonts-liberation

It is the same package as 1.07.2-5 (already in testing), but with the spurious
"Provides: ttf-liberation" field removed from fonts-liberation in
debian/control. The rationale is that some packages need the liberation fonts
and have the paths to the font files hard-coded. Since the move to the new font
package naming scheme, the path of the font files have changed from ttf-
liberation to fonts-liberation, so packages expecting ttf-liberation are *not*
satisfied when fonts-liberation is installed - thus fonts-liberation does not
Provides: ttf-liberation. Related bug: #689575.

Please find the debdiff between fonts-liberation_1.07.2-5 and 1.07.2-6
attached.

unblock fonts-liberation/1.07.2-6

-- System Information:
Debian Release: wheezy/sid
  APT prefers testing
  APT policy: (901, 'testing'), (502, 'unstable'), (501, 'experimental')
Architecture: i386 (i686)

Kernel: Linux 3.2.0-4-686-pae (SMP w/1 CPU core)
File lists identical (after any substitutions)

Control files of package fonts-liberation: lines which differ (wdiff format)

[-Provides: ttf-liberation-]
Version: [-1.07.2-5-] {+1.07.2-6+}

Control files of package ttf-liberation: lines which differ (wdiff format)
--
Version: [-1.07.2-5-] {+1.07.2-6+}


add info: references

2012-11-02 Thread Michel Briand
[1]
http://www.mail-archive.com/gnome-announce-list@gnome.org/msg08655.html

[2]
https://bugzilla.gnome.org/show_bug.cgi?id=652375


-- 
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/20121102135511.432e5...@eridu.kheb.dyndns.org



Bug#692124: rygel: freezed version of rygel is missing very important fixes

2012-11-02 Thread Michel Briand (Quand on veut on peut !)
Package: rygel
Version: 0.14.3-2
Severity: important

Dear Maintainer,

rygel version 0.15 and above have very important fixes [1] 
and next Debian stable should really consider bump it.

A major fix is for example the sorting algorithm for audio files [2].

In the current squeeze version (0.14.3-2) the package works
but lacks a quality improvement that makes it usable.

Best regards,
Michel
 

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

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

Versions of packages rygel depends on:
ii  libc62.13-35
ii  libgee2  0.6.4-2
ii  libglib2.0-0 2.33.12+really2.32.4-2
ii  libgssdp-1.0-3   0.12.1-2
ii  libgstreamer-plugins-base0.10-0  0.10.36-1
ii  libgstreamer0.10-0   0.10.36-1
ii  libgupnp-1.0-4   0.18.3-1
ii  libgupnp-av-1.0-20.10.2-1
ii  libgupnp-dlna-1.0-2  0.6.6-1
ii  libsoup2.4-1 2.38.1-2
ii  libsqlite3-0 3.7.13-1
ii  libunistring00.9.3-5
ii  libuuid1 2.20.1-5.2
ii  libxml2  2.8.0+dfsg1-6

Versions of packages rygel recommends:
ii  gstreamer0.10-ffmpeg0.10.13-5
ii  gstreamer0.10-plugins-base  0.10.36-1
ii  gstreamer0.10-plugins-ugly  0.10.19-2+b2

Versions of packages rygel suggests:
pn  rygel-mediathek
ii  rygel-playbin  0.14.3-2
ii  rygel-preferences  0.14.3-2
pn  rygel-tracker  
ii  tumbler0.1.25-1+b1

-- no debconf information


-- 
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/20121102121710.5246.74081.report...@eridu.kheb.dyndns.org



Bug#692122: unblock: ampache/ampache-3.6-git408e713+dfsg-3.1

2012-11-02 Thread Charlie Smotherman
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock package ampache

Ampache has been NMU'd please unblock

unblock ampache/ampache-3.6-git408e713+dfsg-3.1

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

Kernel: Linux 3.2.0-3-686-pae (SMP w/1 CPU core)
diff -Nru ampache-3.6-git408e713+dfsg/debian/ampache.postrm ampache-3.6-git408e713+dfsg/debian/ampache.postrm
--- ampache-3.6-git408e713+dfsg/debian/ampache.postrm	2012-06-07 00:44:04.0 -0500
+++ ampache-3.6-git408e713+dfsg/debian/ampache.postrm	2012-10-14 10:13:27.0 -0500
@@ -4,24 +4,6 @@
 
 . /usr/share/debconf/confmodule
 
-rm_log(){
-	if [ -d /var/log/ampache ]; then
-		rm -rf /var/log/ampache
-	fi
-}
-
-rm_logr(){
-	if [ -f /etc/logrotate.d/ampache ]; then
-		rm -f /etc/logrotate.d/ampache
-	fi
-}
-
-rm_cron(){
-	if [ -f /etc/cron.daily/ampache ]; then
-		rm -f /etc/cron.daily/ampache
-	fi
-}
-
 restart_server(){
 	if [ -e /var/run/apache2.pid ]; then
 		service apache2 reload
@@ -32,25 +14,14 @@
 	db_get ampache/restart_webserver || true
 	re_start="$RET"
 	if [ "$re_start" = "false" ]; then
-		rm_log
-		rm_logr
-		rm_cron
+		printf "Please restart the web server manually."
 	elif [ "$re_start" = "true" ]; then
-		rm_log
-		rm_logr
-		rm_cron
 		restart_server
 	else
 		printf "unable to de-configure ampache, please do so manually.\n"
 	fi
 fi
 
-if [ "$1" = "purge" ]; then
-	if [ -d /etc/ampache ]; then
-		rm -rf /etc/ampache
-	fi
-fi
-
 #DEBHELPER#
 
 exit 0
diff -Nru ampache-3.6-git408e713+dfsg/debian/ampache.prerm ampache-3.6-git408e713+dfsg/debian/ampache.prerm
--- ampache-3.6-git408e713+dfsg/debian/ampache.prerm	1969-12-31 18:00:00.0 -0600
+++ ampache-3.6-git408e713+dfsg/debian/ampache.prerm	2012-10-14 10:18:01.0 -0500
@@ -0,0 +1,8 @@
+#!/bin/sh -e
+
+# This link is created on postinst, so must be removed explicitly.
+rm -f /etc/ampache/ampache.conf
+
+#DEBHELPER#
+
+exit 0
diff -Nru ampache-3.6-git408e713+dfsg/debian/changelog ampache-3.6-git408e713+dfsg/debian/changelog
--- ampache-3.6-git408e713+dfsg/debian/changelog	2012-06-07 01:01:21.0 -0500
+++ ampache-3.6-git408e713+dfsg/debian/changelog	2012-10-14 10:15:09.0 -0500
@@ -1,3 +1,17 @@
+ampache (3.6-git408e713+dfsg-3.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Remove generated link in prerm.  Closes: #688436
+
+ -- Bas Wijnen   Sun, 14 Oct 2012 16:31:58 +0200
+
+ampache (3.6-git408e713+dfsg-3) unstable; urgency=low
+
+  * Remove statements in debian/ampache.postrm that manually remove conffiles,
+log files on remove and purge.  Closes: #688436
+
+ -- Charlie Smotherman   Sat, 22 Sep 2012 14:24:41 -0500
+
 ampache (3.6-git408e713+dfsg-2) unstable; urgency=low
 
   * Added functions to ampache.postrm so it is formated similar to 


Bug#692121: RM: rhythmbox-ampache/0.11.1-1

2012-11-02 Thread Charlie Smotherman
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: rm

Please remove rhythmbox-ampache as it is not fit for release

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

Kernel: Linux 3.2.0-3-686-pae (SMP w/1 CPU core)


-- 
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/20121102064637.1260.44586.reportbug@eagle



Bug#691065: unblock (pre-approval): network-manager-openconnect/0.9.4.0-8

2012-11-02 Thread Adam D. Barratt

On 01.11.2012 23:40, Mike Miller wrote:

On Sat, Oct 20, 2012 at 05:38:47PM -0400, Mike Miller wrote:
I would like to upload a new network-manager-openconnect that fixes 
an
RC bug (#687557 and duplicates). Without this fix the gnome-shell 
window
manager crashes and the VPN connection fails, unreliably but 
somewhere

between occasionally and frequently.


Just updating status: I have gone ahead and uploaded the proposed
package to unstable, debdiff remains the same. I hope you will 
consider

allowing this into the wheezy release, thanks for your time.


I'm possibly missing something, but...:

++  g_string_append_c (str, c);
++  if (strstr (str->str, "QUIT") || (str->len > 
10))

++  break;

Isn't that "wait for QUIT or any 11 eleven characters", rather than 
"wait for QUIT"?


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/f617b57bb21b8a65076b81aba0838...@mail.adsl.funky-badger.org



Bug#691171: marked as done (unblock: pgbouncer/1.5.2-4)

2012-11-02 Thread Debian Bug Tracking System
Your message dated Fri, 02 Nov 2012 10:56:14 +0100
with message-id <509398be.4060...@thykier.net>
and subject line Re: Bug#691171: unblock: pgbouncer
has caused the Debian Bug report #691171,
regarding unblock: pgbouncer/1.5.2-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.)


-- 
691171: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=691171
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 pgbouncer. It fixes #687577 (important) that
re-adds the check for START=0 in /etc/default/pgbouncer which was
there until the recent init script refactoring. As it is also
documented in README.Debian, it would be rather embarassing not to
ship an init script that has it. (It also updates the Vcs-* headers to
reflect reality.)

unblock pgbouncer/1.5.2-3

diff -Nru pgbouncer-1.5.2/debian/changelog pgbouncer-1.5.2/debian/changelog
--- pgbouncer-1.5.2/debian/changelog2012-07-26 13:12:28.0 +0200
+++ pgbouncer-1.5.2/debian/changelog2012-10-07 19:16:41.0 +0200
@@ -1,3 +1,11 @@
+pgbouncer (1.5.2-3) unstable; urgency=low
+
+  * Re-add check for START=0 in the init script.  Spotted by Sergey Burladyan.
+Closes: #687577.
+  * Repository moved to git.
+
+ -- Christoph Berg   Sun, 07 Oct 2012 19:16:34 +0200
+
 pgbouncer (1.5.2-2) unstable; urgency=low
 
   * Init script: Use --oknodo.  Closes: #681978.
diff -Nru pgbouncer-1.5.2/debian/control pgbouncer-1.5.2/debian/control
--- pgbouncer-1.5.2/debian/control  2012-04-30 14:32:31.0 +0200
+++ pgbouncer-1.5.2/debian/control  2012-10-07 17:28:00.0 +0200
@@ -6,8 +6,8 @@
 Standards-Version: 3.9.3
 Build-Depends: cdbs, debhelper (>= 7), libevent-dev (>= 1.3b), asciidoc, 
xmlto, python
 Homepage: http://pgfoundry.org/projects/pgbouncer/
-Vcs-Svn: svn://svn.debian.org/pkg-postgresql/trunk/pgbouncer/
-Vcs-Browser: http://svn.debian.org/wsvn/pkg-postgresql/trunk/pgbouncer/
+Vcs-Git: git://anonscm.debian.org/pkg-postgresql/pgbouncer.git
+Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-postgresql/pgbouncer.git
 
 Package: pgbouncer
 Architecture: any
diff -Nru pgbouncer-1.5.2/debian/init pgbouncer-1.5.2/debian/init
--- pgbouncer-1.5.2/debian/init 2012-07-19 16:34:34.0 +0200
+++ pgbouncer-1.5.2/debian/init 2012-10-07 17:34:00.0 +0200
@@ -35,6 +35,8 @@
 
 case "$1" in
   start)
+# Check if we are still disabled in /etc/default/pgbouncer
+[ "${START:-}" = "0" ] && exit 0
 echo -n "Starting server: $NAME"
 test -d $PIDDIR || install -d -o postgres -g postgres -m 2775 $PIDDIR
 $SSD --start --chuid $RUNASUSER --oknodo -- $OPTS 2> /dev/null


Christoph
-- 
c...@df7cb.de | http://www.df7cb.de/
--- End Message ---
--- Begin Message ---
On 2012-11-02 10:44, Christoph Berg wrote:
> Control: retitle -1 unblock: pgbouncer/1.5.2-4
> 
> Re: To Debian Bug Tracking System 2012-10-22 
> <20121022145326.ga13...@msgid.df7cb.de>
>> unblock pgbouncer/1.5.2-3
> 
> In the meantime, there's an additional fix for #692103 (grave) in
> unstable:
> 
> [...]

Unblocked, thanks.

~Niels--- End Message ---


Bug#691171: unblock: pgbouncer

2012-11-02 Thread Christoph Berg
Control: retitle -1 unblock: pgbouncer/1.5.2-4

Re: To Debian Bug Tracking System 2012-10-22 
<20121022145326.ga13...@msgid.df7cb.de>
> unblock pgbouncer/1.5.2-3

In the meantime, there's an additional fix for #692103 (grave) in
unstable:

diff -Nru pgbouncer-1.5.2/debian/changelog pgbouncer-1.5.2/debian/changelog
--- pgbouncer-1.5.2/debian/changelog2012-10-07 19:16:41.0 +0200
+++ pgbouncer-1.5.2/debian/changelog2012-11-02 10:07:46.0 +0100
@@ -1,3 +1,20 @@
+pgbouncer (1.5.2-4) unstable; urgency=medium
+
+  * Cherry-pick from 1.5.3:  Closes: #692103.
+
http://git.postgresql.org/gitweb/?p=pgbouncer.git;a=commitdiff;h=4b92112b820830b30cd7bc91bef3dd8f35305525
+Thanks to Markus Wanner for helping fix this.
+
+= Critical fix =
+* Too long database names can lead to crash, which
+  is remotely triggerable if autodbs are enabled.
+
+  The original checks assumed all names come from config files,
+  thus using fatal() was fine, but when autodbs are enabled
+  - by '*' in [databases] section - the database name can come
+  from network thus making remote shutdown possible.
+
+ -- Christoph Berg   Fri, 02 Nov 2012 10:05:27 +0100
+
 pgbouncer (1.5.2-3) unstable; urgency=low
 
   * Re-add check for START=0 in the init script.  Spotted by Sergey Burladyan.
diff -Nru pgbouncer-1.5.2/debian/patches/692103-long-db-name 
pgbouncer-1.5.2/debian/patches/692103-long-db-name
--- pgbouncer-1.5.2/debian/patches/692103-long-db-name  1970-01-01 
01:00:00.0 +0100
+++ pgbouncer-1.5.2/debian/patches/692103-long-db-name  2012-11-02 
10:10:41.0 +0100
@@ -0,0 +1,15 @@
+--- a/src/objects.c
 b/src/objects.c
+@@ -303,7 +303,11 @@
+   return NULL;
+ 
+   list_init(&db->head);
+-  safe_strcpy(db->name, name, sizeof(db->name));
++  if (strlcpy(db->name, name, sizeof(db->name)) >= 
sizeof(db->name)) {
++  log_warning("Too long db name: %s", name);
++  slab_free(db_cache, db);
++  return NULL;
++  }
+   put_in_order(&db->head, &database_list, cmp_database);
+   }
+ 
diff -Nru pgbouncer-1.5.2/debian/patches/series 
pgbouncer-1.5.2/debian/patches/series
--- pgbouncer-1.5.2/debian/patches/series   2012-10-07 17:23:40.0 
+0200
+++ pgbouncer-1.5.2/debian/patches/series   2012-11-02 10:09:33.0 
+0100
@@ -1 +1,2 @@
+692103-long-db-name
 debian-config

Please
unblock pgbouncer/1.5.2-4

Thanks,
Christoph
-- 
c...@df7cb.de | http://www.df7cb.de/


signature.asc
Description: Digital signature


Processed: Re: Bug#691171: unblock: pgbouncer

2012-11-02 Thread Debian Bug Tracking System
Processing control commands:

> retitle -1 unblock: pgbouncer/1.5.2-4
Bug #691171 [release.debian.org] unblock: pgbouncer/1.5.2-3
Changed Bug title to 'unblock: pgbouncer/1.5.2-4' from 'unblock: 
pgbouncer/1.5.2-3'

-- 
691171: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=691171
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.b691171.135184946427772.transcr...@bugs.debian.org