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

2012-11-03 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#692188: RM: ruby-pgplot/0.1.3-2

2012-11-03 Thread Niels Thykier
On 2012-11-03 07:09, Michael Gilbert wrote:
 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
 
 

Hi,

Could you please file an RC bug against ruby-pgplot about the build
failure first?

~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/5094c540@thykier.net



Bug#692183: marked as done (unblock: gdebi/0.8.7)

2012-11-03 Thread Debian Bug Tracking System
Your message dated Sat, 03 Nov 2012 08:19:31 +0100
with message-id 5094c583@thykier.net
and subject line Re: Bug#692183: unblock: gdebi/0.8.7
has caused the Debian Bug report #692183,
regarding unblock: gdebi/0.8.7
to be marked as done.

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

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


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

Please unblock package 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: 

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

2012-11-03 Thread Michael Gilbert
On Sat, Nov 3, 2012 at 3:18 AM, Niels Thykier wrote:
 Could you please file an RC bug against ruby-pgplot about the build
 failure first?

#692190

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=mnlnklwf9mbbmyhnwpv+oiycw-wfo4clhfjuwbody3...@mail.gmail.com



Bug#692172: marked as done (unblock: nvidia-graphics-modules/304.48+2)

2012-11-03 Thread Debian Bug Tracking System
Your message dated Sat, 03 Nov 2012 09:03:04 +
with message-id 1351933384.4348.3.ca...@jacala.jungle.funky-badger.org
and subject line Re: Bug#692172: unblock: nvidia-graphics-modules/304.48+2
has caused the Debian Bug report #692172,
regarding unblock: nvidia-graphics-modules/304.48+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.)


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

Please unblock package 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 deb...@abeckmann.de  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 deb...@abeckmann.de,
 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
 

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

2012-11-03 Thread Adam D. Barratt
On Sat, 2012-11-03 at 03:34 -0400, Michael Gilbert wrote:
 On Sat, Nov 3, 2012 at 3:18 AM, Niels Thykier wrote:
  Could you please file an RC bug against ruby-pgplot about the build
  failure first?
 
 #692190

I don't believe the failed builds were ever intended to have happened,
fwiw. The fact that there was a failed attempt a year ago suggests that
pgplot5 became available for installation on the buildds, which implies
a temporary problem on the buildd side (pgplot5 is non-free so will not
get installed in a chroot, even for building a non-free or contrib
package).

See also ftp.d.o #691532.

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



Bug#691065: marked as done (unblock: network-manager-openconnect/0.9.4.0-8)

2012-11-03 Thread Debian Bug Tracking System
Your message dated Sat, 03 Nov 2012 09:37:10 +
with message-id 1351935430.4348.12.ca...@jacala.jungle.funky-badger.org
and subject line Re: Bug#691065: unblock (pre-approval): 
network-manager-openconnect/0.9.4.0-8
has caused the Debian Bug report #691065,
regarding unblock: network-manager-openconnect/0.9.4.0-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.)


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

Dear Release Team,

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.

The debdiff is included below, does this look reasonable to upload and
make it into the wheezy release?

Thanks for all your work,
mike

diffstat for network-manager-openconnect-0.9.4.0 
network-manager-openconnect-0.9.4.0

 changelog |8 ++
 patches/05_Wait-for-QUIT-command-before-exiting.patch |   51 ++
 patches/series|1 
 3 files changed, 60 insertions(+)

diff -Nru network-manager-openconnect-0.9.4.0/debian/changelog 
network-manager-openconnect-0.9.4.0/debian/changelog
--- network-manager-openconnect-0.9.4.0/debian/changelog2012-06-02 
11:00:50.0 -0400
+++ network-manager-openconnect-0.9.4.0/debian/changelog2012-10-20 
16:59:22.0 -0400
@@ -1,3 +1,11 @@
+network-manager-openconnect (0.9.4.0-8) unstable; urgency=low
+
+  * debian/patches/05_Wait-for-QUIT-command-before-exiting.patch:
+Cherry-pick patch from upstream git to fix a race condition causing
+gnome-shell to crash. (Closes: #687557)
+
+ -- Mike Miller mtmil...@ieee.org  Sat, 20 Oct 2012 16:59:21 -0400
+
 network-manager-openconnect (0.9.4.0-7) unstable; urgency=low
 
   * New patches pulled from upstream git fixing auth-dialog bugs:
diff -Nru 
network-manager-openconnect-0.9.4.0/debian/patches/05_Wait-for-QUIT-command-before-exiting.patch
 
network-manager-openconnect-0.9.4.0/debian/patches/05_Wait-for-QUIT-command-before-exiting.patch
--- 
network-manager-openconnect-0.9.4.0/debian/patches/05_Wait-for-QUIT-command-before-exiting.patch
1969-12-31 19:00:00.0 -0500
+++ 
network-manager-openconnect-0.9.4.0/debian/patches/05_Wait-for-QUIT-command-before-exiting.patch
2012-10-20 16:31:10.0 -0400
@@ -0,0 +1,51 @@
+From: Dan Winship d...@gnome.org
+Origin: upstream, 
http://git.gnome.org/browse/network-manager-openconnect/commit/?id=d0c4ce17395d48566300e7bdd25a06617d13ecb3
+Bug: https://bugzilla.gnome.org/show_bug.cgi?id=674991
+Bug-Debian: http://bugs.debian.org/687557
+Subject: [PATCH] Wait for QUIT command before exiting
+
+According to the NM VPN auth dialog protocol, the helper isn't
+supposed to exit until the caller sends QUIT. Doing otherwise
+creates a race condition. Copy in the code that the other plugins use
+for this.
+--- a/auth-dialog/main.c
 b/auth-dialog/main.c
+@@ -1434,6 +1434,30 @@ static auth_ui_data *init_ui_data (char
+   return ui_data;
+ }
+ 
++static void wait_for_quit (void)
++{
++  GString *str;
++  char c;
++  ssize_t n;
++  time_t start;
++
++  str = g_string_sized_new (10);
++  start = time (NULL);
++  do {
++  errno = 0;
++  n = read (0, c, 1);
++  if (n == 0 || (n  0  errno == EAGAIN))
++  g_usleep (G_USEC_PER_SEC / 10);
++  else if (n == 1) {
++  g_string_append_c (str, c);
++  if (strstr (str-str, QUIT) || (str-len  10))
++  break;
++  } else
++  break;
++  } while (time (NULL)  start + 20);
++  g_string_free (str, TRUE);
++}
++
+ static struct option long_options[] = {
+   {reprompt, 0, 0, 'r'},
+   {uuid, 1, 0, 'u'},
+@@ -1538,5 +1562,7 @@ int main (int argc, char **argv)
+   printf(\n\n);
+   fflush(stdout);
+ 
++  wait_for_quit ();
++
+   return _ui_data-retval;
+ }
diff -Nru network-manager-openconnect-0.9.4.0/debian/patches/series 
network-manager-openconnect-0.9.4.0/debian/patches/series
--- network-manager-openconnect-0.9.4.0/debian/patches/series   2012-06-02 
09:29:36.0 -0400
+++ network-manager-openconnect-0.9.4.0/debian/patches/series   

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

2012-11-03 Thread Fabian Greffrath
 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?

Hm, I have no idea what led Etienne to that statement, maybe he can
elaborate on this.

I only know that the SDL audio backend is used in hundreds of games and
see no reason why it should be terrible for zsnes. Furthermore, Etienne
just tested zsnes without libao support and reported that it works well,
even in a multi-arch environment:
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=691993#20

 - Fabian


--
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/c271ac1bfcd2f46e3f2e47a685ed8207.squir...@webmail.greffrath.com



Re: Uploading linux (3.2.32-1)

2012-11-03 Thread Ben Hutchings
On Fri, 2012-11-02 at 21:59 +, Adam D. Barratt wrote:
 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.

You should unblock linux-latest as well.

Ben.

-- 
Ben Hutchings
I'm always amazed by the number of people who take up solipsism because
they heard someone else explain it. - E*Borg on alt.fan.pratchett


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


Re: Uploading linux (3.2.32-1)

2012-11-03 Thread Adam D. Barratt
On Sat, 2012-11-03 at 14:20 +, Ben Hutchings wrote:
 On Fri, 2012-11-02 at 21:59 +, Adam D. Barratt wrote:
  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.
 
 You should unblock linux-latest as well.

Yep:

linux-latest | 46 |   testing | source
linux-latest | 46 |  unstable | source

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



Bug#692211: unblock: byobu/5.16-1.1

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

Please unblock package byobu, it makes the (reviewed) debconf templates
actually translatable, with the related translation update.

The attached debdiff skip the translation stuff.

unblock byobu/5.16-1.1

Thanks in advance, regards.

David

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

Kernel: Linux 3.5-trunk-amd64 (SMP w/1 CPU core)
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
diff -Nru byobu-5.16/debian/changelog byobu-5.16/debian/changelog
--- byobu-5.16/debian/changelog	2012-03-15 01:59:26.0 -0400
+++ byobu-5.16/debian/changelog	2012-10-28 17:22:58.0 -0400
@@ -1,3 +1,24 @@
+byobu (5.16-1.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Proofread templates by debian-l10n-english list, thanks to Justin B Rye
+and Christian Perrier. (Closes: #686313)
+
+  [ debconf translations ]
+  * Remove useless en_GB translation.
+  * Russian, Yuri Kozlov (closes: #687321)
+  * Polish, Michał Kułach (closes: #687553)
+  * Czech, Michal Šimůnek (closes: #687716)
+  * Danish, Joe Hansen (closes: #687820)
+  * French, Cédric Boutillier (closes: #687946)
+  * Portuguese, Miguel Figueiredo (closes: #687984)
+  * Japanese, victory (closes: #688176)
+  * German, Martin Eberhard Schauer (closes: #688036)
+  * Swedish, Martin Bagge (closes: #688429)
+  * Spanish, Rafael Ernesto Rivas
+
+ -- David Prévot taf...@debian.org  Sun, 28 Oct 2012 17:22:21 -0400
+
 byobu (5.16-1) unstable; urgency=low
 
   * Syncing from Ubuntu.
diff -Nru byobu-5.16/debian/control byobu-5.16/debian/control
--- byobu-5.16/debian/control	2012-03-15 02:00:13.0 -0400
+++ byobu-5.16/debian/control	2012-10-11 13:13:58.0 -0400
@@ -42,9 +42,9 @@
  screen-profiles-extras ( 2.0),
  byobu-extras ( 2.17)
 Enhances: screen
-Description: powerful, text based window manager and shell multiplexer
- Byobu is Ubuntu's text-based window manager based on GNU Screen.
+Description: powerful command line window manager and shell multiplexer
+ Byobu is Ubuntu's session-managing wrapper around tmux or GNU Screen.
  Using Byobu, you can quickly create and move between different windows
  over a single SSH connection or TTY terminal, monitor dozens of important
- statistics about your system, detach and reattach to sessions later
+ statistics about your system, or detach and reattach to sessions later
  while your programs continue to run in the background.
diff -Nru byobu-5.16/debian/po/cs.po byobu-5.16/debian/po/cs.po
diff -Nru byobu-5.16/debian/po/da.po byobu-5.16/debian/po/da.po
diff -Nru byobu-5.16/debian/po/de.po byobu-5.16/debian/po/de.po
diff -Nru byobu-5.16/debian/po/en_GB.po byobu-5.16/debian/po/en_GB.po
diff -Nru byobu-5.16/debian/po/es.po byobu-5.16/debian/po/es.po
diff -Nru byobu-5.16/debian/po/fr.po byobu-5.16/debian/po/fr.po
diff -Nru byobu-5.16/debian/po/ja.po byobu-5.16/debian/po/ja.po
diff -Nru byobu-5.16/debian/po/pl.po byobu-5.16/debian/po/pl.po
diff -Nru byobu-5.16/debian/po/POTFILES.in byobu-5.16/debian/po/POTFILES.in
--- byobu-5.16/debian/po/POTFILES.in	1969-12-31 20:00:00.0 -0400
+++ byobu-5.16/debian/po/POTFILES.in	2012-10-11 13:13:58.0 -0400
@@ -0,0 +1 @@
+[type: gettext/rfc822deb] templates
diff -Nru byobu-5.16/debian/po/pt.po byobu-5.16/debian/po/pt.po
diff -Nru byobu-5.16/debian/po/ru.po byobu-5.16/debian/po/ru.po
diff -Nru byobu-5.16/debian/po/sv.po byobu-5.16/debian/po/sv.po
diff -Nru byobu-5.16/debian/po/templates.pot byobu-5.16/debian/po/templates.pot
diff -Nru byobu-5.16/debian/templates byobu-5.16/debian/templates
--- byobu-5.16/debian/templates	2012-03-12 00:38:09.0 -0400
+++ byobu-5.16/debian/templates	2012-10-11 13:13:58.0 -0400
@@ -1,11 +1,20 @@
+# These templates have been reviewed by the debian-l10n-english
+# team
+#
+# If modifications/additions/rewording are needed, please ask
+# debian-l10n-engl...@lists.debian.org for advice.
+#
+# Even minor modifications require translation updates and such
+# changes should be coordinated with translators and reviewers.
+
 Template: byobu/launch-by-default
 Type: boolean
 Default: false
-_Description: Do you want to launch Byobu at shell login for all users?
- Byobu can launch automatically at login (e.g. console, ssh), providing
- an attachable/detachable window manager on the command line.
+_Description: Launch Byobu at shell login for all users?
+ Byobu can be launched automatically on all shell logins (via the console,
+ SSH, etc.), to provide a screen session manager.
  .
- If you select this option, Byobu will install a symlink in /etc/profile.d.
- This setting is system-wide, for all users logging into the system.
- Individual users can disable this by touching
- 

Bug#692212: unblock (pre-approval): pike7.8/7.8.700-2

2012-11-03 Thread Magnus Holmgren
Package: release.debian.org
User: release.debian@packages.debian.org
Usertags: unblock

I request permission to upload pike7.8 7.8.700-2 to unstable, targeted at 
wheezy. It would be practically the same as 7.8.700-1, currently sitting in 
experimental.

pike7.8 is the current stable branch of the Pike programming language. Three 
years after the last stable release, 7.8.352, a new release was finally made 
this September, just a little too late for the freeze.

pike7.8 currently has no rdepends, and few popcon-reported installations. The 
lack of bug reports certainly doesn't mean that there are no bugs in 7.8.352. 
Several bugs have been fixed in 7.8.700, some rather serious, and backporting 
would be risky according to the upstream developers that I'm talking to at the 
Pike conference right now. They would much appreciate if 7.8.700 could be 
included in wheezy. I'm asking them to test the current package in 
experimental.

Thanks for your consideration.

-- 
Magnus Holmgren
Debian Developer


-- 
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/4079272.genAIEUhXE@flax



Bug#692211: marked as done (unblock: byobu/5.16-1.1)

2012-11-03 Thread Debian Bug Tracking System
Your message dated Sat, 03 Nov 2012 16:43:18 +0100
with message-id 50953b96.1050...@thykier.net
and subject line Re: Bug#692211: unblock: byobu/5.16-1.1
has caused the Debian Bug report #692211,
regarding unblock: byobu/5.16-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.)


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

Please unblock package byobu, it makes the (reviewed) debconf templates
actually translatable, with the related translation update.

The attached debdiff skip the translation stuff.

unblock byobu/5.16-1.1

Thanks in advance, regards.

David

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

Kernel: Linux 3.5-trunk-amd64 (SMP w/1 CPU core)
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
diff -Nru byobu-5.16/debian/changelog byobu-5.16/debian/changelog
--- byobu-5.16/debian/changelog	2012-03-15 01:59:26.0 -0400
+++ byobu-5.16/debian/changelog	2012-10-28 17:22:58.0 -0400
@@ -1,3 +1,24 @@
+byobu (5.16-1.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Proofread templates by debian-l10n-english list, thanks to Justin B Rye
+and Christian Perrier. (Closes: #686313)
+
+  [ debconf translations ]
+  * Remove useless en_GB translation.
+  * Russian, Yuri Kozlov (closes: #687321)
+  * Polish, Michał Kułach (closes: #687553)
+  * Czech, Michal Šimůnek (closes: #687716)
+  * Danish, Joe Hansen (closes: #687820)
+  * French, Cédric Boutillier (closes: #687946)
+  * Portuguese, Miguel Figueiredo (closes: #687984)
+  * Japanese, victory (closes: #688176)
+  * German, Martin Eberhard Schauer (closes: #688036)
+  * Swedish, Martin Bagge (closes: #688429)
+  * Spanish, Rafael Ernesto Rivas
+
+ -- David Prévot taf...@debian.org  Sun, 28 Oct 2012 17:22:21 -0400
+
 byobu (5.16-1) unstable; urgency=low
 
   * Syncing from Ubuntu.
diff -Nru byobu-5.16/debian/control byobu-5.16/debian/control
--- byobu-5.16/debian/control	2012-03-15 02:00:13.0 -0400
+++ byobu-5.16/debian/control	2012-10-11 13:13:58.0 -0400
@@ -42,9 +42,9 @@
  screen-profiles-extras ( 2.0),
  byobu-extras ( 2.17)
 Enhances: screen
-Description: powerful, text based window manager and shell multiplexer
- Byobu is Ubuntu's text-based window manager based on GNU Screen.
+Description: powerful command line window manager and shell multiplexer
+ Byobu is Ubuntu's session-managing wrapper around tmux or GNU Screen.
  Using Byobu, you can quickly create and move between different windows
  over a single SSH connection or TTY terminal, monitor dozens of important
- statistics about your system, detach and reattach to sessions later
+ statistics about your system, or detach and reattach to sessions later
  while your programs continue to run in the background.
diff -Nru byobu-5.16/debian/po/cs.po byobu-5.16/debian/po/cs.po
diff -Nru byobu-5.16/debian/po/da.po byobu-5.16/debian/po/da.po
diff -Nru byobu-5.16/debian/po/de.po byobu-5.16/debian/po/de.po
diff -Nru byobu-5.16/debian/po/en_GB.po byobu-5.16/debian/po/en_GB.po
diff -Nru byobu-5.16/debian/po/es.po byobu-5.16/debian/po/es.po
diff -Nru byobu-5.16/debian/po/fr.po byobu-5.16/debian/po/fr.po
diff -Nru byobu-5.16/debian/po/ja.po byobu-5.16/debian/po/ja.po
diff -Nru byobu-5.16/debian/po/pl.po byobu-5.16/debian/po/pl.po
diff -Nru byobu-5.16/debian/po/POTFILES.in byobu-5.16/debian/po/POTFILES.in
--- byobu-5.16/debian/po/POTFILES.in	1969-12-31 20:00:00.0 -0400
+++ byobu-5.16/debian/po/POTFILES.in	2012-10-11 13:13:58.0 -0400
@@ -0,0 +1 @@
+[type: gettext/rfc822deb] templates
diff -Nru byobu-5.16/debian/po/pt.po byobu-5.16/debian/po/pt.po
diff -Nru byobu-5.16/debian/po/ru.po byobu-5.16/debian/po/ru.po
diff -Nru byobu-5.16/debian/po/sv.po byobu-5.16/debian/po/sv.po
diff -Nru byobu-5.16/debian/po/templates.pot byobu-5.16/debian/po/templates.pot
diff -Nru byobu-5.16/debian/templates byobu-5.16/debian/templates
--- byobu-5.16/debian/templates	2012-03-12 00:38:09.0 -0400
+++ byobu-5.16/debian/templates	2012-10-11 13:13:58.0 -0400
@@ -1,11 +1,20 @@
+# These templates have been reviewed by the debian-l10n-english
+# team
+#
+# If modifications/additions/rewording are needed, please ask
+# debian-l10n-engl...@lists.debian.org for 

Bug#692212: unblock (pre-approval): pike7.8/7.8.700-2

2012-11-03 Thread Niels Thykier
On 2012-11-03 16:05, Magnus Holmgren wrote:
 Package: release.debian.org
 User: release.debian@packages.debian.org
 Usertags: unblock
 

Hi,

 I request permission to upload pike7.8 7.8.700-2 to unstable, targeted at 
 wheezy. It would be practically the same as 7.8.700-1, currently sitting in 
 experimental.
 
 [...]
 
 Thanks for your consideration.
 

I think we'd need to see a debdiff to determine if this is acceptable.
Feel free to filter (e.g. w. filterdiff) autogenerated parts and
translations (if those appear in the diff).  Also if the diff is large,
please check it actually reaches debian-release@l.d.o.
  We have had some cases where the mail got /silently/ dropped; though
in these cases the diff tends to be too large for us to review anyway
and we tend to default to no for those.

~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/50953ddc.5010...@thykier.net



Bug#685880: Bug#670405: ekiga: During start up segfault in `libopal.so.3.10.4`

2012-11-03 Thread Alberto Garcia
On Thu, Sep 13, 2012 at 04:07:55PM +0200, Paul Menzel wrote:

 Berto, it would be awesome if you could test Ekiga from experimental
 [3][4] and report back if it fixes the issues for you.

I've just tried ekiga 3.9.90-1 and it seems to work now.

These are the new packages that I installed:

ekiga   3.9.90-1
libopal3.10.7   3.10.7~dfsg-3
libpt2.10.7 2.10.7~dfsg-1
libboost-signals1.49.0  1.49.0-3.1

I made a few test calls and it looks fine, it was unusable before
this.

Thanks!

Berto


-- 
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/20121103162317.ga22...@igalia.com



Bug#692224: unblock: maint-guide/1.2.30

2012-11-03 Thread Osamu Aoki
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock package maint-guide

This fix the same problem as http://bugs.debian.org/658839 which cause
loss of data in plain text format output by running script under UTF-8
locale.  The code is the same as one used for developer reference.

This is about contents correction to address factual misinformation by
http://bugs.debian.org/688072

maint-guide (1.2.30) unstable; urgency=low

   [ David Prévot ]
   * Use UTF-8 locale to prepare the text version. See: #658839
 
   [ Osamu Aoki ]
   * Fixed typo for foo_newversion.orig.tar.gz.  Closes: #688072
 
 -- Osamu Aoki os...@debian.org  Fri, 21 Sep 2012 00:04:00 +0900

unblock maint-guide/1.2.30

-- 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


--
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/20121103170124.GA23900@goofy.localdomain



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

2012-11-03 Thread Adam D. Barratt
On Wed, 2012-10-31 at 21:20 +0200, Niko Tyni wrote:
 On Sat, Oct 27, 2012 at 07:52:17PM +0100, Adam D. Barratt wrote:
  On Mon, 2012-10-22 at 21:45 +0300, Niko Tyni wrote:
   Upstream recently released 5.14.3, which is a bugfix only stable
   update. We're assuming that importing this into wheezy is out of question
   at this point, but please let us know if you'd be willing to entertain
   that option. The upstream rules for stable updates are quite strict;
   see the 'MAINTENANCE BRANCHES' section in perlpolicy(1) of the perl-doc
   package for details.
[...]
 As things are, I'm not proceeding with this 5.14.2-15 until you've
 reached a decision about 5.14.3.
 
 However, please let us know if you'd like to decouple the issues and
 we'll get -15 in sid right away (read: probably next weekend :)

Sorry for the delay in getting back to you. If it's not too much of a
pain, I'd prefer to get the bug fixes in at the moment; that doesn't
necessarily rule out 5.14.3, it would just be good to get the fixes in
without needing any other changes.

Thanks for your work on this.

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



Bug#692224: marked as done (unblock: maint-guide/1.2.30)

2012-11-03 Thread Debian Bug Tracking System
Your message dated Sat, 03 Nov 2012 18:06:16 +0100
with message-id 50954f08.2080...@thykier.net
and subject line Re: Bug#692224: unblock: maint-guide/1.2.30
has caused the Debian Bug report #692224,
regarding unblock: maint-guide/1.2.30
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.)


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

Please unblock package maint-guide

This fix the same problem as http://bugs.debian.org/658839 which cause
loss of data in plain text format output by running script under UTF-8
locale.  The code is the same as one used for developer reference.

This is about contents correction to address factual misinformation by
http://bugs.debian.org/688072

maint-guide (1.2.30) unstable; urgency=low

   [ David Prévot ]
   * Use UTF-8 locale to prepare the text version. See: #658839
 
   [ Osamu Aoki ]
   * Fixed typo for foo_newversion.orig.tar.gz.  Closes: #688072
 
 -- Osamu Aoki os...@debian.org  Fri, 21 Sep 2012 00:04:00 +0900

unblock maint-guide/1.2.30

-- 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---
---BeginMessage---
On 2012-11-03 18:01, Osamu Aoki wrote:
 Package: release.debian.org
 Severity: normal
 User: release.debian@packages.debian.org
 Usertags: unblock
 
 Please unblock package maint-guide
 
 This fix the same problem as http://bugs.debian.org/658839 which cause
 loss of data in plain text format output by running script under UTF-8
 locale.  The code is the same as one used for developer reference.
 
 This is about contents correction to address factual misinformation by
 http://bugs.debian.org/688072
 
 maint-guide (1.2.30) unstable; urgency=low
 
[ David Prévot ]
* Use UTF-8 locale to prepare the text version. See: #658839
  
[ Osamu Aoki ]
* Fixed typo for foo_newversion.orig.tar.gz.  Closes: #688072
  
  -- Osamu Aoki os...@debian.org  Fri, 21 Sep 2012 00:04:00 +0900
 
 unblock maint-guide/1.2.30
 
 [...]

Unblocked, thanks.

~Niels---End Message---


Re: Bug#670405: ekiga: During start up segfault in `libopal.so.3.10.4`

2012-11-03 Thread Adam D. Barratt
On Sat, 2012-11-03 at 02:43 -0400, Michael Gilbert wrote:
  The original closure report only closed the bug for the version in
  experimental, the bug was still listed as open in unstable:
  http://bugs.debian.org/cgi-bin/pkgreport.cgi?pkg=ekiga;dist=unstable
 
  reopening is not the way to indicate it effects specific versions, rather 
  please
  use the 'found' element of bts.
 
 It distorts udd views.  I'm fixing that so we have a better view of
 what needs really needs fixing:
 http://udd.debian.org/bugs.cgi?release=wheezy_and_sidmerged=igndone=onlyfnewerval=7rc=1sortby=idsorto=ascctags=1cdeferred=1

That sounds like the query needs fixing. Mark is correct that reopening
is not correct in these cases -  for one thing, it removes the
indication that the bug has already been resolved in experimental. I
haven't checked if you've been re-adding the fixed versions for the bugs
you've re-opened; if not, please do.

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



Bug#692227: RM: simgear/2.4.0-1.3

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

Please consider removing simgear/2.4.0-1.3 from testing.  It has 2 rc
bugs, #667526 and #669024.  Also, a new upstream 2.6.0 was uploaded to
unstable after the freeze and has its own rc bug #690005.

This would mean removing the entire flightgear stack: flightgear
(which has another rc bug #669025), fgfs-base, and fgrun.

Those packages have been essentially nmu maintained for the last two
years, and there has been an open rfh for 4 years #487388 without
accepting new helpers.

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=MM97a6pN9FL_kBBuP9XwPaVWBp=sojrb-zzpbvq20x...@mail.gmail.com



Re: Freeze exception request for intel-microcode and amd64-microcode

2012-11-03 Thread Philipp Kern
Hi,

On Fri, Nov 02, 2012 at 12:06:38AM -0200, Henrique de Moraes Holschuh wrote:
 I did!  The bug numbers mentioned in the please consider unblocking
 sentence are the bug numbers of the unblock request bugs (#690285 and 
 #690286).

sorry, I mentally took them for references to the bugs in the packages.
That mail should then have been sent to the two bugs instead of d-release.

Both are now unblocked, thanks for your work!

Kind regards
Philipp Kern


signature.asc
Description: Digital signature


Bug#690285: marked as done (unblock: amd64-microcode/1.20120910-2)

2012-11-03 Thread Debian Bug Tracking System
Your message dated Sat, 3 Nov 2012 20:42:09 +0100
with message-id 20121103194209.ga...@spike.0x539.de
and subject line Re: Freeze exception request for intel-microcode and 
amd64-microcode
has caused the Debian Bug report #690285,
regarding unblock: amd64-microcode/1.20120910-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.)


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

Please unblock package amd64-microcode

Unfortunately, both amd64-microcode and intel-microcode can trigger a very
nasty bug in initramfs-tools that renders the initramfs unusable, and
therefore may make the system unbootable.

It will only happen when initramfs-tools is incapable of creating ORDER
files (e.g. because of noexec $TMPDIR or noexec /tmp with $TMPDIR unset),
so it should be pretty rare.  But still, the consequences are dire...
kinda like some of the processor errata the packages fix, I suppose :-)

This has bitten an user of intel-microcode.  Please refer to bug #689301
and #688794.

This upload works around the bug in initramfs-tools, which is the safest
way to go about it (especially considering backports).

debdiff attached.  diffstat:
 changelog   |9 +
 initramfs.init-premount |2 +-
 rules   |7 +--
 3 files changed, 15 insertions(+), 3 deletions(-)

unblock amd64-microcode/1.20120910-2

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

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

-- 
  One disk to rule them all, One disk to find them. One disk to bring
  them all and in the darkness grind them. In the Land of Redmond
  where the shadows lie. -- The Silicon Valley Tarot
  Henrique Holschuh
diff -Nru amd64-microcode-1.20120910/debian/changelog 
amd64-microcode-1.20120910/debian/changelog
--- amd64-microcode-1.20120910/debian/changelog 2012-09-14 16:50:50.0 
-0300
+++ amd64-microcode-1.20120910/debian/changelog 2012-10-09 08:18:25.0 
-0300
@@ -1,3 +1,12 @@
+amd64-microcode (1.20120910-2) unstable; urgency=medium
+
+  * initramfs: work around initramfs-tools bug #688794.
+Use _ in place of +-. for the initramfs script name.  This works
+around a PANIC during boot when the initramfs was created in a system
+with noexec $TMPDIR.
+
+ -- Henrique de Moraes Holschuh h...@debian.org  Tue, 09 Oct 2012 08:18:01 
-0300
+
 amd64-microcode (1.20120910-1) unstable; urgency=medium
 
   * AMD microcode release 20120910
diff -Nru amd64-microcode-1.20120910/debian/initramfs.init-premount 
amd64-microcode-1.20120910/debian/initramfs.init-premount
--- amd64-microcode-1.20120910/debian/initramfs.init-premount   2012-09-14 
12:27:31.0 -0300
+++ amd64-microcode-1.20120910/debian/initramfs.init-premount   2012-10-09 
08:17:36.0 -0300
@@ -9,7 +9,7 @@
 
 # dependencies: firmware loader, microcode kernel support (built-in/module)
 
-PREREQ=udev
+PREREQ=
 
 prereqs()
 {
diff -Nru amd64-microcode-1.20120910/debian/rules 
amd64-microcode-1.20120910/debian/rules
--- amd64-microcode-1.20120910/debian/rules 2012-09-14 12:27:31.0 
-0300
+++ amd64-microcode-1.20120910/debian/rules 2012-10-09 08:17:36.0 
-0300
@@ -10,6 +10,9 @@
 # DebHelper control
 export DH_ALWAYS_EXCLUDE=CVS:.svn:.git
 
+# Work around Debian bug #688794
+INITRAMFS_NAME := $(subst -,_,$(subst +,_,$(subst .,_,$(PACKAGE
+
 build-indep:
 
 build-arch:
@@ -30,10 +33,10 @@
 
mkdir -p $(PKGDIR)/usr/share/initramfs-tools/hooks
install -m 755 $(DEBDIR)/initramfs.hook \
-   $(PKGDIR)/usr/share/initramfs-tools/hooks/$(PACKAGE)
+   $(PKGDIR)/usr/share/initramfs-tools/hooks/$(INITRAMFS_NAME)
mkdir -p $(PKGDIR)/usr/share/initramfs-tools/scripts/init-premount
install -m 755 $(DEBDIR)/initramfs.init-premount \
-   
$(PKGDIR)/usr/share/initramfs-tools/scripts/init-premount/$(PACKAGE)
+   
$(PKGDIR)/usr/share/initramfs-tools/scripts/init-premount/$(INITRAMFS_NAME)
 
 binary: install
dh_testdir
---End Message---
---BeginMessage---
Hi,

On Fri, Nov 02, 2012 at 12:06:38AM -0200, Henrique de Moraes Holschuh wrote:
 I did!  The bug numbers mentioned in the please 

Bug#690286: marked as done (unblock: intel-microcode/1.20120606.v2.2)

2012-11-03 Thread Debian Bug Tracking System
Your message dated Sat, 3 Nov 2012 20:42:09 +0100
with message-id 20121103194209.ga...@spike.0x539.de
and subject line Re: Freeze exception request for intel-microcode and 
amd64-microcode
has caused the Debian Bug report #690286,
regarding unblock: intel-microcode/1.20120606.v2.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.)


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

Please unblock package intel-microcode

Unfortunately, both amd64-microcode and intel-microcode can trigger a very
nasty bug in initramfs-tools that renders the initramfs unusable, and
therefore may make the system unbootable.

It will only happen when initramfs-tools is incapable of creating ORDER
files (e.g. because of noexec $TMPDIR or noexec /tmp with $TMPDIR unset),
so it should be pretty rare.  But still, the consequences are dire...
kinda like some of the processor errata the packages fix, I suppose :-)

This has bitten an user of intel-microcode.  Please refer to bug #689301
and #688794.

This upload works around the bug in initramfs-tools, which is the safest
way to go about it (especially considering backports).

It also fixes the previous microcode update(!): Intel did a very strange
upstream release, even naming the microcode bundle v2, which they had
never done before.  They added microcode for seriously enterprise-class
hardware (Xeon E7) and updated again the same microcodes they had updated in
the previous release (for very widely used i5 and i7/Xeon E5 processors).

The file removals (see difstat) are a safe reduction of the size of the
*source* package, and don't change *anything* on the binary packages (I have
triple-checked this), as all microcodes in those files were superseded.

Cleaned up debdiff attached (without the microcode-*.dat hunks), because the
full debdiff is ~10MiB due to the file removals.

diffstat:
 changelog  |9 
 debian/changelog   |   25 
 debian/initramfs.init-premount |3 
 debian/rules   |7 
 microcode-20080401.dat |24693 
 microcode-20090330.dat |25910 --
 microcode-20090927.dat |28154 -
 microcode-20100209.dat |30272 ---
 microcode-20110428.dat |27177 ---
 microcode-2010.dat |28971 --
 microcode-20120606.dat |30317 ---
 microcode-20120606.v2.dat  |31086 +
 12 files changed, 31127 insertions(+), 195497 deletions(-)

unblock intel-microcode/1.20120606.v2.2

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

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

-- 
  One disk to rule them all, One disk to find them. One disk to bring
  them all and in the darkness grind them. In the Land of Redmond
  where the shadows lie. -- The Silicon Valley Tarot
  Henrique Holschuh
diff -Nru intel-microcode-1.20120606.6/changelog 
intel-microcode-1.20120606.v2.2/changelog
--- intel-microcode-1.20120606.6/changelog  2012-07-15 18:44:22.0 
-0300
+++ intel-microcode-1.20120606.v2.2/changelog   2012-10-08 20:57:05.0 
-0300
@@ -1,3 +1,12 @@
+2012-06-06-v2 (2012-10-01):
+  * Updated Microcodes:
+sig 0x000206d6, pf mask 0x6d, 2012-05-22, rev 0x0619, size 16384
+sig 0x000206d7, pf mask 0x6d, 2012-05-22, rev 0x070d, size 16384
+sig 0x000306a9, pf mask 0x12, 2012-07-16, rev 0x0013, size 11264
+
+  * Updated Microcodes (recently removed):
+sig 0x000206f2, pf mask 0x05, 2012-04-12, rev 0x0036, size 12288
+
 2012-06-06:
   * New Microcodes:
 sig 0x00020661, pf mask 0x02, 2011-07-18, rev 0x0105, size 5120
diff -Nru intel-microcode-1.20120606.6/debian/changelog 
intel-microcode-1.20120606.v2.2/debian/changelog
--- intel-microcode-1.20120606.6/debian/changelog   2012-09-04 
20:04:54.0 -0300
+++ intel-microcode-1.20120606.v2.2/debian/changelog2012-10-09 
08:01:08.0 -0300
@@ -1,3 +1,28 @@
+intel-microcode (1.20120606.v2.2) unstable; 

Bug#692145: unblock: maradns/1.4.12-4

2012-11-03 Thread Nicholas Bamber
curious I didn't notice that. Anyway please don't remove it and I'll
have another look.

On 02/11/12 19:15, Adam D. Barratt wrote:
 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/5095789b.70...@periapt.co.uk



Bug#692231: unblock: ruby1.8/1.8.7.358-6

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

Please unblock package ruby1.8

This upload fixes a build problem in kfreebsd-* (#691793).

You will find attached the debdiff against the package in testing.

unblock ruby1.8/1.8.7.358-6

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

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

-- 
Antonio Terceiro terce...@debian.org
diff -Nru ruby1.8-1.8.7.358/debian/changelog ruby1.8-1.8.7.358/debian/changelog
--- ruby1.8-1.8.7.358/debian/changelog	2012-06-02 12:34:01.0 +0200
+++ ruby1.8-1.8.7.358/debian/changelog	2012-11-01 01:20:28.0 +0100
@@ -1,3 +1,17 @@
+ruby1.8 (1.8.7.358-6) unstable; urgency=high
+
+  * Timeout the execution of the tests after 2 hours. This should fix the
+build on kfreebsd-* (Closes: #691793) and hurd.
+
+ -- Antonio Terceiro terce...@debian.org  Wed, 31 Oct 2012 22:12:50 +0100
+
+ruby1.8 (1.8.7.358-5) unstable; urgency=high
+
+  * added debian/patches/CVE-2012-4481.patch to fix CVE-2012-4481
+(Closes: #689945)
+
+ -- Antonio Terceiro terce...@debian.org  Sun, 14 Oct 2012 19:45:52 -0300
+
 ruby1.8 (1.8.7.358-4) unstable; urgency=low
 
   * debian/rules: avoid running DRB tests, since they crash and leave runaway
diff -Nru ruby1.8-1.8.7.358/debian/patches/CVE-2012-4481.patch ruby1.8-1.8.7.358/debian/patches/CVE-2012-4481.patch
--- ruby1.8-1.8.7.358/debian/patches/CVE-2012-4481.patch	1970-01-01 01:00:00.0 +0100
+++ ruby1.8-1.8.7.358/debian/patches/CVE-2012-4481.patch	2012-10-15 00:45:15.0 +0200
@@ -0,0 +1,18 @@
+Description: avoid breaking safefity in strings passed to Exception#to_s
+ Fixes CVE-2012-4481
+Bug-Debian: http://bugs.debian.org/689945
+Origin: http://seclists.org/oss-sec/2012/q4/22
+Reviewed-By: Antonio Terceiro terce...@debian.org
+
+--- ruby1.8-1.8.7.358.orig/error.c
 ruby1.8-1.8.7.358/error.c
+@@ -665,9 +665,6 @@ name_err_to_s(exc)
+ 
+ if (NIL_P(mesg)) return rb_class_name(CLASS_OF(exc));
+ StringValue(str);
+-if (str != mesg) {
+-	OBJ_INFECT(str, mesg);
+-}
+ return str;
+ }
+ 
diff -Nru ruby1.8-1.8.7.358/debian/patches/series ruby1.8-1.8.7.358/debian/patches/series
--- ruby1.8-1.8.7.358/debian/patches/series	2012-05-27 15:59:27.0 +0200
+++ ruby1.8-1.8.7.358/debian/patches/series	2012-10-15 00:43:03.0 +0200
@@ -13,3 +13,4 @@
 110703_CVE-2011-0188.patch
 tcltk-no-rpath.patch
 use-ldflags.patch
+CVE-2012-4481.patch
diff -Nru ruby1.8-1.8.7.358/debian/rules ruby1.8-1.8.7.358/debian/rules
--- ruby1.8-1.8.7.358/debian/rules	2012-06-02 12:31:13.0 +0200
+++ ruby1.8-1.8.7.358/debian/rules	2012-10-31 23:12:27.0 +0100
@@ -65,7 +65,7 @@
 ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
 	# avoid running drb tests -- they make buildds hang forever
 	mv test/drb _test_drb
-	-make test-all
+	-timeout 2h make test-all
 	mv _test_drb test/drb
 endif
 


signature.asc
Description: Digital signature


Re: Freeze exception request for intel-microcode and amd64-microcode

2012-11-03 Thread Henrique de Moraes Holschuh
On Sat, 03 Nov 2012, Philipp Kern wrote:
 On Fri, Nov 02, 2012 at 12:06:38AM -0200, Henrique de Moraes Holschuh wrote:
  I did!  The bug numbers mentioned in the please consider unblocking
  sentence are the bug numbers of the unblock request bugs (#690285 and 
  #690286).
 
 sorry, I mentally took them for references to the bugs in the packages.
 That mail should then have been sent to the two bugs instead of d-release.
 
 Both are now unblocked, thanks for your work!

Thank you!

-- 
  One disk to rule them all, One disk to find them. One disk to bring
  them all and in the darkness grind them. In the Land of Redmond
  where the shadows lie. -- The Silicon Valley Tarot
  Henrique Holschuh


-- 
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/20121103203338.ga6...@khazad-dum.debian.net



Bug#690610: unblock: openvrml/0.18.9-4

2012-11-03 Thread Nobuhiro Iwamatsu
Hi, Philipp.

On Mon, Oct 22, 2012 at 3:13 PM, Philipp Kern pk...@debian.org wrote:
 Nobuhiro,

 am Mon, Oct 22, 2012 at 10:41:27AM +0900 hast du folgendes geschrieben:
 However, I think that it is already late to put in support of s390x.
 If this still does (if a release team permits this), I will set linux-any .

 you could testbuild it on the porter box, but a new build wouldn't be a
 problem.

Thank you for your comment and check.

Adam, may I add s390x (set linux-any) and upload  to unstable?

Best regrds,
  Nobuhiro.

-- 
Nobuhiro Iwamatsu
   iwamatsu at {nigauri.org / debian.org}
   GPG ID: 40AD1FA6


-- 
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/cabmqnv+tfifqz2wdbysp8reu41ag5ttj09vnff8rs7vnyxw...@mail.gmail.com



Re: Bug#692212: unblock (pre-approval): pike7.8/7.8.700-2

2012-11-03 Thread Magnus Holmgren
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

lördagen den 3 november 2012 16.53.00 skrev du:
 On 2012-11-03 16:05, Magnus Holmgren wrote:
  I request permission to upload pike7.8 7.8.700-2 to unstable, targeted at
  wheezy. It would be practically the same as 7.8.700-1, currently sitting
  in
  experimental.
  
  [...]
  
  Thanks for your consideration.
 
 I think we'd need to see a debdiff to determine if this is acceptable.
 Feel free to filter (e.g. w. filterdiff) autogenerated parts and
 translations (if those appear in the diff).  Also if the diff is large,
 please check it actually reaches debian-release@l.d.o.
   We have had some cases where the mail got /silently/ dropped; though
 in these cases the diff tends to be too large for us to review anyway
 and we tend to default to no for those.

I sent a mail with a diff three hours ago but since it hasn't shown up in the 
list archive I resent it but without the diff; you can find it at 
http://www.kibibyte.se/download/debian/pike7.8_7.8.352-dfsg-7_7.8.700-1.diff.gz

- ---

I'd hoped that you'd simply agree that the .700 package very probably is of 
better quality than the .352 package, but all right.

I didn't find any real good help from filterdiff, but here's the output of 

diff -urNadwB --exclude .pc --exclude bundles --exclude dependencies --exclude 
configure  -I '\$Id' pike7.8-7.8.352-dfsg/ pike7.8-7.8.700/

with changes in autogenerated (from Pike with precompile.pike, from .yacc, and 
from .rl) code manually removed. (Debian patches were applied.)

480 files changed, 30041 insertions(+), 5206 deletions(-). *some* of those are 
spelling corrections and the like in comments.

- -- 
Magnus Holmgren
holmg...@debian.org
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.12 (GNU/Linux)

iEYEAREIAAYFAlCVlcAACgkQk7mRNn1h4+YHaQCg4WQ7KEb/LLC9M9EdaYuX7mzc
sCEAn0ParV6fuxLXgxZ0QfrtwIEt3GnY
=2WGP
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/201211032308.05...@proffe.kibibyte.se



Bug#692231: marked as done (unblock: ruby1.8/1.8.7.358-6)

2012-11-03 Thread Debian Bug Tracking System
Your message dated Sat, 03 Nov 2012 23:19:23 +
with message-id 1351984763.4348.25.ca...@jacala.jungle.funky-badger.org
and subject line Re: Bug#692231: unblock: ruby1.8/1.8.7.358-6
has caused the Debian Bug report #692231,
regarding unblock: ruby1.8/1.8.7.358-6
to be marked as done.

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

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


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

Please unblock package ruby1.8

This upload fixes a build problem in kfreebsd-* (#691793).

You will find attached the debdiff against the package in testing.

unblock ruby1.8/1.8.7.358-6

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

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

-- 
Antonio Terceiro terce...@debian.org
diff -Nru ruby1.8-1.8.7.358/debian/changelog ruby1.8-1.8.7.358/debian/changelog
--- ruby1.8-1.8.7.358/debian/changelog	2012-06-02 12:34:01.0 +0200
+++ ruby1.8-1.8.7.358/debian/changelog	2012-11-01 01:20:28.0 +0100
@@ -1,3 +1,17 @@
+ruby1.8 (1.8.7.358-6) unstable; urgency=high
+
+  * Timeout the execution of the tests after 2 hours. This should fix the
+build on kfreebsd-* (Closes: #691793) and hurd.
+
+ -- Antonio Terceiro terce...@debian.org  Wed, 31 Oct 2012 22:12:50 +0100
+
+ruby1.8 (1.8.7.358-5) unstable; urgency=high
+
+  * added debian/patches/CVE-2012-4481.patch to fix CVE-2012-4481
+(Closes: #689945)
+
+ -- Antonio Terceiro terce...@debian.org  Sun, 14 Oct 2012 19:45:52 -0300
+
 ruby1.8 (1.8.7.358-4) unstable; urgency=low
 
   * debian/rules: avoid running DRB tests, since they crash and leave runaway
diff -Nru ruby1.8-1.8.7.358/debian/patches/CVE-2012-4481.patch ruby1.8-1.8.7.358/debian/patches/CVE-2012-4481.patch
--- ruby1.8-1.8.7.358/debian/patches/CVE-2012-4481.patch	1970-01-01 01:00:00.0 +0100
+++ ruby1.8-1.8.7.358/debian/patches/CVE-2012-4481.patch	2012-10-15 00:45:15.0 +0200
@@ -0,0 +1,18 @@
+Description: avoid breaking safefity in strings passed to Exception#to_s
+ Fixes CVE-2012-4481
+Bug-Debian: http://bugs.debian.org/689945
+Origin: http://seclists.org/oss-sec/2012/q4/22
+Reviewed-By: Antonio Terceiro terce...@debian.org
+
+--- ruby1.8-1.8.7.358.orig/error.c
 ruby1.8-1.8.7.358/error.c
+@@ -665,9 +665,6 @@ name_err_to_s(exc)
+ 
+ if (NIL_P(mesg)) return rb_class_name(CLASS_OF(exc));
+ StringValue(str);
+-if (str != mesg) {
+-	OBJ_INFECT(str, mesg);
+-}
+ return str;
+ }
+ 
diff -Nru ruby1.8-1.8.7.358/debian/patches/series ruby1.8-1.8.7.358/debian/patches/series
--- ruby1.8-1.8.7.358/debian/patches/series	2012-05-27 15:59:27.0 +0200
+++ ruby1.8-1.8.7.358/debian/patches/series	2012-10-15 00:43:03.0 +0200
@@ -13,3 +13,4 @@
 110703_CVE-2011-0188.patch
 tcltk-no-rpath.patch
 use-ldflags.patch
+CVE-2012-4481.patch
diff -Nru ruby1.8-1.8.7.358/debian/rules ruby1.8-1.8.7.358/debian/rules
--- ruby1.8-1.8.7.358/debian/rules	2012-06-02 12:31:13.0 +0200
+++ ruby1.8-1.8.7.358/debian/rules	2012-10-31 23:12:27.0 +0100
@@ -65,7 +65,7 @@
 ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
 	# avoid running drb tests -- they make buildds hang forever
 	mv test/drb _test_drb
-	-make test-all
+	-timeout 2h make test-all
 	mv _test_drb test/drb
 endif
 


signature.asc
Description: Digital signature
---End Message---
---BeginMessage---
On Sat, 2012-11-03 at 21:08 +0100, Antonio Terceiro wrote:
 Please unblock package ruby1.8
 
 This upload fixes a build problem in kfreebsd-* (#691793).

Already unblocked, and migrated in tonight's britney run; thanks.

Regards,

Adam---End Message---


Bug#691885: pu: package libbusiness-onlinepayment-ippay-perl/0.05~02-2+squeeze1

2012-11-03 Thread Adam D. Barratt
Control: tags -1 + pending

On Tue, 2012-10-30 at 21:24 +0100, gregor herrmann wrote:
 On Tue, 30 Oct 2012 20:14:09 +, Adam D. Barratt wrote:
 
   I've prepared an update for 0.05~02-2 that includes the backported
   changes (kindly provided by Ivan Kohler). Debdiff attached.
  Please go ahead; thanks.
 
 Thanks, uploaded.

Flagged for acceptance; 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/1351988008.4348.26.ca...@jacala.jungle.funky-badger.org



Processed: Re: Bug#691885: pu: package libbusiness-onlinepayment-ippay-perl/0.05~02-2+squeeze1

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

 tags -1 + pending
Bug #691885 [release.debian.org] pu: package 
libbusiness-onlinepayment-ippay-perl/0.05~02-2+squeeze1
Added tag(s) pending.

-- 
691885: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=691885
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.b691885.135198810024561.transcr...@bugs.debian.org



NEW changes in stable-new

2012-11-03 Thread Debian FTP Masters
Processing changes file: icedove_3.0.11-1+squeeze14_amd64.changes
  ACCEPT
Processing changes file: icedove_3.0.11-1+squeeze14_armel.changes
  ACCEPT
Processing changes file: icedove_3.0.11-1+squeeze14_i386.changes
  ACCEPT
Processing changes file: icedove_3.0.11-1+squeeze14_ia64.changes
  ACCEPT
Processing changes file: icedove_3.0.11-1+squeeze14_kfreebsd-amd64.changes
  ACCEPT
Processing changes file: icedove_3.0.11-1+squeeze14_kfreebsd-i386.changes
  ACCEPT
Processing changes file: icedove_3.0.11-1+squeeze14_mips.changes
  ACCEPT
Processing changes file: icedove_3.0.11-1+squeeze14_mipsel.changes
  ACCEPT
Processing changes file: icedove_3.0.11-1+squeeze14_powerpc.changes
  ACCEPT
Processing changes file: icedove_3.0.11-1+squeeze14_s390.changes
  ACCEPT
Processing changes file: icedove_3.0.11-1+squeeze14_sparc.changes
  ACCEPT
Processing changes file: iceweasel_3.5.16-19_amd64.changes
  ACCEPT
Processing changes file: iceweasel_3.5.16-19_armel.changes
  ACCEPT
Processing changes file: iceweasel_3.5.16-19_i386.changes
  ACCEPT
Processing changes file: iceweasel_3.5.16-19_ia64.changes
  ACCEPT
Processing changes file: iceweasel_3.5.16-19_kfreebsd-amd64.changes
  ACCEPT
Processing changes file: iceweasel_3.5.16-19_kfreebsd-i386.changes
  ACCEPT
Processing changes file: iceweasel_3.5.16-19_mips.changes
  ACCEPT
Processing changes file: iceweasel_3.5.16-19_mipsel.changes
  ACCEPT
Processing changes file: iceweasel_3.5.16-19_powerpc.changes
  ACCEPT
Processing changes file: iceweasel_3.5.16-19_s390.changes
  ACCEPT
Processing changes file: iceweasel_3.5.16-19_sparc.changes
  ACCEPT
Processing changes file: 
libbusiness-onlinepayment-ippay-perl_0.05~02-2+squeeze1_amd64.changes
  ACCEPT


-- 
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/e1tunvo-0004wg...@franck.debian.org