Bug#682405: unblock: xserver-xorg-input-mouse/1:1.7.2-3

2012-08-03 Thread Petr Salinger

Just keeping you posted.  The change looks reasonable, but the package
needs a separate ACK from the d-i team.  Last I heard from them, they
requested that we hold all udebs for now.


It is a little problematic. The udeb is created only for

* hurd-i386 kfreebsd-amd64 kfreebsd-i386

And version in testing is completely unuseable on kfreebsd-*,
i.e. the graphical installer with 1.7.2-2 will only crash on kfreebsd-*

Petr


--
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/alpine.lrh.2.02.1208030859490.17...@sci.felk.cvut.cz



Bug#683719: release.debian.org: unblock: gnat-4.6/4.6.3-5 to allow gnat-gps to migrate to testing

2012-08-03 Thread Ludovic Brenta
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

gnat-gps is unblocked (see #682278) but cannot migrate because it
depends on gnat-4.6 which is blocked.  Please unblock gnat-4.6 as well.

-- 
Ludovic Brenta.


-- 
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/878vdwa0oo@ludovic-brenta.org



Bug#683720: unblock: rrdtool/1.4.7-2

2012-08-03 Thread Sebastian Harl
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock package rrdtool

The current version in unstable (1.4.7-2) fixes an RC bug (#664724)
causing RRDCacheD (the RRDtool Caching Daemon) to segfault on startup if
the daemon's data directory does not exist. This bug had been addressed
by an NMU by creating the default directories in the init script. I've
later added a patch fixing the issue in the daemon in order to provide a
general fix for the underlying issue.

Attached to this E-mail, you'll find a full debdiff for the source and
all binary packages.

unblock rrdtool/1.4.7-2

TIA,
Sebastian

-- 
Sebastian tokkee Harl +++ GnuPG-ID: 0x8501C7FC +++ http://tokkee.org/

Those who would give up Essential Liberty to purchase a little Temporary
Safety, deserve neither Liberty nor Safety. -- Benjamin Franklin

diff -u rrdtool-1.4.7/debian/control rrdtool-1.4.7/debian/control
--- rrdtool-1.4.7/debian/control
+++ rrdtool-1.4.7/debian/control
@@ -8,7 +8,7 @@
  zlib1g-dev, libpng12-dev, libcairo2-dev, libpango1.0-dev, libfreetype6-dev,
  libdbi0-dev,
  libxml2-dev,
- tcl-dev (= 8.5), tcl (= 8.5),
+ tcl-dev (= 8), tcl-dev (= 9),
  perl (= 5.8.0),
  python-all-dev (= 2.6.6-3~), python-all-dbg (= 2.6.6-3~),
  ruby1.8, ruby1.8-dev, ruby1.9.1, ruby1.9.1-dev,
diff -u rrdtool-1.4.7/debian/rules rrdtool-1.4.7/debian/rules
--- rrdtool-1.4.7/debian/rules
+++ rrdtool-1.4.7/debian/rules
@@ -123,7 +123,7 @@
 
 	# clean what the Makefiles do not clean ...
 	rm -rf bindings/perl-piped/blib bindings/perl-shared/blib \
-	   bindings/perl-piped/Makefile.old bindings/perl-shared/Makefile.old
+	   bindings/perl-piped/Makefile.old bindings/perl-shared/Makefile.old bindings/perl-shared/MYMETA.yml
 	rm -f bindings/tcl/pkgIndex.tcl bindings/tcl/tclrrd*.so
 	rm -f examples/cgi-demo.cgi
 	rm -rf src/.libs src/.deps doc/*.html doc/*.1 doc/*.txt
diff -u rrdtool-1.4.7/debian/rrdcached.init.d rrdtool-1.4.7/debian/rrdcached.init.d
--- rrdtool-1.4.7/debian/rrdcached.init.d
+++ rrdtool-1.4.7/debian/rrdcached.init.d
@@ -61,6 +61,10 @@
 		return 0
 	fi
 
+	# make sure we have the needed directories
+	mkdir -p /var/lib/rrdcached/journal/
+	mkdir -p /var/lib/rrdcached/db/
+
 	start-stop-daemon --start --quiet --oknodo --pidfile $PIDFILE \
 		--exec $DAEMON -- $OPTS -p $PIDFILE
 }
diff -u rrdtool-1.4.7/debian/changelog rrdtool-1.4.7/debian/changelog
--- rrdtool-1.4.7/debian/changelog
+++ rrdtool-1.4.7/debian/changelog
@@ -1,3 +1,27 @@
+rrdtool (1.4.7-2) unstable; urgency=low
+
+  * Ack NMUs; thanks to Jonathan Wiltshire and gregor herrmann!
+  * Added debian/patches/bts664724-rrdcached-j-segfault:
+Fixed segfault in rrdcached when starting without having the journal
+directory available: canonicalize the journal path after creating the
+directory; else, realpath(3) will return NULL causing strdup() to
+segfault. Also, check the return value of realpath(3) before further using
+it. Thanks to Helmut Grohne for reporting this (Closes: #664724).
+
+ -- Sebastian Harl tok...@debian.org  Wed, 01 Aug 2012 10:23:39 +0200
+
+rrdtool (1.4.7-1.2) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Fix fails to install, postinst, invoke-rc.d rrdcached start, start-
+stop-daemon, segfault:
+(re-)create /var/lib/rrdcached/{journal,db} in init script.
+(Closes: #664724)
+  * debian/rules: remove the generated bindings/perl-shared/MYMETA.yml in the
+clean target.
+
+ -- gregor herrmann gre...@debian.org  Sun, 29 Jul 2012 17:35:13 +0200
+
 rrdtool (1.4.7-1.1) unstable; urgency=low
 
   * Non-maintainer upload.
diff -u rrdtool-1.4.7/debian/patches/series rrdtool-1.4.7/debian/patches/series
--- rrdtool-1.4.7/debian/patches/series
+++ rrdtool-1.4.7/debian/patches/series
@@ -8,0 +9 @@
+bts664724-rrdcached-j-segfault
diff -u rrdtool-1.4.7/debian/patches/ruby_bindings_format_string.patch rrdtool-1.4.7/debian/patches/ruby_bindings_format_string.patch
--- rrdtool-1.4.7/debian/patches/ruby_bindings_format_string.patch
+++ rrdtool-1.4.7/debian/patches/ruby_bindings_format_string.patch
@@ -1,5 +1,5 @@
 Subject: fix format string in Ruby binding
-Author: Johannes Brandstätter jbrandstaet...@gmail.com
+Author: Johannes Brandstätter jbrandstaet...@gmail.com
 Bug-Debian: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=676081
 Forwarded: no
 Last-Update: 2012-07-01
only in patch2:
unchanged:
--- rrdtool-1.4.7.orig/debian/patches/bts664724-rrdcached-j-segfault
+++ rrdtool-1.4.7/debian/patches/bts664724-rrdcached-j-segfault
@@ -0,0 +1,31 @@
+diff a/src/rrd_daemon.c b/src/rrd_daemon.c
+--- a/src/rrd_daemon.c
 b/src/rrd_daemon.c
+@@ -3090,8 +3090,7 @@ static int read_options (int argc, char **argv) /* {{{ */
+   case 'j':
+   {
+ char journal_dir_actual[PATH_MAX];
+-const char *dir;
+-dir = journal_dir = strdup(realpath((const char *)optarg, journal_dir_actual));
++const char *dir = (const char *)optarg;
+ 
+ 

Bug#683250: marked as done (unblock: numactl/2.0.8~rc4-1)

2012-08-03 Thread Debian Bug Tracking System
Your message dated Fri, 03 Aug 2012 10:54:06 +0200
with message-id 501b91ae.3070...@thykier.net
and subject line Re: Bug#683250: unblock: numactl/2.0.8~rc4-1
has caused the Debian Bug report #683250,
regarding unblock: numactl/2.0.8~rc4-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.)


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

Hello,

hwloc still hasn't reached testing, due to being compiled against the
latest numactl which was uploaded to sid, and for which no unblock
request was made yet, so here is one.

The 2.0.8~rc3-1 to 2.0.8~rc4-1 changelog is a bit evasive (New
upstream), here are some details. From upstream :

2.0.8-rc4
- 120106 Install man pages migspeed, migratepages and numastat (Petr Holasek)
- 120106 Warnings in numa_node_to_cpus_v1 to be more verbose (Petr Holasek)
- 120216 Fix for numademo: msize check for ptrchase test (Petr Holasek)

and I have attached the few-liner actual changes.

unblock numactl/2.0.8~rc4-1

Thanks,
Samuel

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

Kernel: Linux 3.0.4 (SMP w/8 CPU cores)
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash
diff -urN numactl-2.0.8~rc3/CHANGES numactl-2.0.8~rc4/CHANGES
--- numactl-2.0.8~rc3/CHANGES   2011-12-19 15:51:35.0 +0100
+++ numactl-2.0.8~rc4/CHANGES   2012-02-16 16:08:50.0 +0100
@@ -365,3 +365,7 @@
 - 111214 Clean regression test temp files (Andi Kleen)
 - 111214 Add an option to memhog to disable transparent huge pages (Andi Kleen)
 - 111214 Fix the test suite on systems that force THP, disable them (Andi 
Kleen)
+2.0.8-rc4
+- 120106 Install man pages migspeed, migratepages and numastat (Petr Holasek)
+- 120106 Warnings in numa_node_to_cpus_v1 to be more verbose (Petr Holasek)
+- 120216 Fix for numademo: msize check for ptrchase test (Petr Holasek)
diff -urN numactl-2.0.8~rc3/debian/changelog numactl-2.0.8~rc4/debian/changelog
--- numactl-2.0.8~rc3/debian/changelog  2012-07-30 09:32:03.0 +0200
+++ numactl-2.0.8~rc4/debian/changelog  2012-07-30 09:32:17.0 +0200
@@ -1,3 +1,9 @@
+numactl (2.0.8~rc4-1) unstable; urgency=low
+
+  * New upstream
+
+ -- Ian Wienand i...@debian.org  Sun, 01 Jul 2012 00:11:37 -0700
+
 numactl (2.0.8~rc3-1) unstable; urgency=low
 
   * New upstream
diff -urN numactl-2.0.8~rc3/libnuma.c numactl-2.0.8~rc4/libnuma.c
--- numactl-2.0.8~rc3/libnuma.c 2011-12-19 15:51:35.0 +0100
+++ numactl-2.0.8~rc4/libnuma.c 2012-02-16 16:08:50.0 +0100
@@ -1287,6 +1287,8 @@
numa_warn(W_nosysfs2,
   /sys not mounted or invalid. Assuming one node: %s,
  strerror(errno));
+   numa_warn(W_nosysfs2,
+  (cannot open or correctly parse %s), fn);
bitmask.maskp = (unsigned long *)mask;
bitmask.size  = buflen_needed * 8;
numa_bitmask_setall(bitmask);
diff -urN numactl-2.0.8~rc3/Makefile numactl-2.0.8~rc4/Makefile
--- numactl-2.0.8~rc3/Makefile  2011-12-19 15:51:35.0 +0100
+++ numactl-2.0.8~rc4/Makefile  2012-02-16 16:08:50.0 +0100
@@ -147,7 +147,10 @@
install -m 0755 numademo ${prefix}/bin
install -m 0755 memhog ${prefix}/bin
mkdir -p ${prefix}/share/man/man2 ${prefix}/share/man/man8 
${prefix}/share/man/man3
+   install -m 0644 migspeed.8 ${prefix}/share/man/man8
+   install -m 0644 migratepages.8 ${prefix}/share/man/man8
install -m 0644 numactl.8 ${prefix}/share/man/man8
+   install -m 0644 numastat.8 ${prefix}/share/man/man8
install -m 0644 numa.3 ${prefix}/share/man/man3
( cd ${prefix}/share/man/man3 ; for i in $$(./manlinks) ; do ln -sf 
numa.3 $$i.3 ; done )
mkdir -p ${libdir}
diff -urN numactl-2.0.8~rc3/numademo.c numactl-2.0.8~rc4/numademo.c
--- numactl-2.0.8~rc3/numademo.c2011-12-19 15:51:35.0 +0100
+++ numactl-2.0.8~rc4/numademo.c2012-02-16 16:08:50.0 +0100
@@ -529,7 +529,13 @@
 #ifdef HAVE_STREAM_LIB
test(STREAM);
 #endif
-   test(PTRCHASE);
+   if (msize = sizeof(union node)) {
+   test(PTRCHASE);
+   } else {
+   fprintf(stderr, 

Processed: Re: [Pkg-nagios-devel] Bug#683618: unblock: icinga-web/1.7.1-3

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

 retitle 683618 unblock: icinga-web/1.7.1-4
Bug #683618 [release.debian.org] unblock: icinga-web/1.7.1-3
Changed Bug title to 'unblock: icinga-web/1.7.1-4' from 'unblock: 
icinga-web/1.7.1-3'
 thanks
Stopping processing here.

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


--
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/handler.s.c.13439858143863.transcr...@bugs.debian.org



Bug#683506: marked as done (gscan2pdf freeze exception)

2012-08-03 Thread Debian Bug Tracking System
Your message dated Fri, 03 Aug 2012 11:22:08 +0200
with message-id 501b9840.9040...@thykier.net
and subject line Re: Bug#683506: gscan2pdf freeze exception
has caused the Debian Bug report #683506,
regarding gscan2pdf freeze exception
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.)


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

Please unblock gscan2pdf-1.0.4-5. It fixes a serious (#682818[2]) and
an important bug (#680158[1])

I attach a debdiff from -4 to -5.

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


4-5.diff
Description: Binary data
---End Message---
---BeginMessage---
On 2012-08-01 12:37, Jeffrey Ratcliffe wrote:
 Package: release.debian.org
 Severity: normal
 User: release.debian@packages.debian.org
 Usertags: freeze-exception
 
 Please unblock gscan2pdf-1.0.4-5. It fixes a serious (#682818[2]) and
 an important bug (#680158[1])
 
 I attach a debdiff from -4 to -5.
 
 [1] http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=680158
 [2] http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=682818

Unblocked, thanks.

It is not entirely sufficient to ensure the upgrade path, so I have
filed a bug against unpaper requesting a versioned Breaks on gscan2pdf
to handle this (#683724).

~Niels---End Message---


Bug#683618: [Pkg-nagios-devel] Bug#683618: unblock: icinga-web/1.7.1-3

2012-08-03 Thread Markus Frosch
retitle 683618 unblock: icinga-web/1.7.1-4
thanks

Hello Release Team,
we had to upload a new release 1.7.1-4 which fixes a problem with a
breaking postrm script when ucf isn't installed anymore.

So I'd like to extend the unblock request to 1.7.1-4, please see the
attached diff from 1.7.1-3

Best Regards
Markus Frosch

-- 
Markus Frosch
mar...@lazyfrosch.de
http://www.lazyfrosch.de


icinga-web_1.7.1-4.diff
Description: Binary data


Bug#683452: marked as done (unblock: phpunit-selenium/1.2.6-3)

2012-08-03 Thread Debian Bug Tracking System
Your message dated Fri, 03 Aug 2012 11:39:17 +0200
with message-id 501b9c45.30...@thykier.net
and subject line Re: Bug#683452: unblock: phpunit-selenium/1.2.6-3
has caused the Debian Bug report #683452,
regarding unblock: phpunit-selenium/1.2.6-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.)


-- 
683452: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=683452
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 ask for a freeze exception for phpunit-selenium/1.2.6-3

This upload introduces a README.Debian file with vital information for
using this set of classes.

The attached file was produced using 
debdiff phpunit-selenium_1.2.6-2.dsc phpunit-selenium_1.2.6-3.dsc  
phpunit-selenium_1.2.6-2:1.2.6-3.diff

Thanks

-- 
Luis Uribe
http://eviled.org
diff -Nru phpunit-selenium-1.2.6/debian/changelog phpunit-selenium-1.2.6/debian/changelog
--- phpunit-selenium-1.2.6/debian/changelog	2012-05-31 00:25:31.0 -0500
+++ phpunit-selenium-1.2.6/debian/changelog	2012-07-31 15:00:26.0 -0500
@@ -1,3 +1,12 @@
+phpunit-selenium (1.2.6-3) unstable; urgency=low
+
+  * debian/README.Debian
+Adding file
+  * debian/control
+Adding DM-Upload-Allowed
+
+ -- Luis Uribe a...@eviled.org  Tue, 31 Jul 2012 14:44:17 -0500
+
 phpunit-selenium (1.2.6-2) unstable; urgency=low
 
   * Replaces: phpunit ( 3.6) and Depends: phpunit (= 3.6) (Closes: #675275).
diff -Nru phpunit-selenium-1.2.6/debian/control phpunit-selenium-1.2.6/debian/control
--- phpunit-selenium-1.2.6/debian/control	2012-05-31 00:25:31.0 -0500
+++ phpunit-selenium-1.2.6/debian/control	2012-07-31 15:00:26.0 -0500
@@ -7,6 +7,7 @@
 Build-Depends-Indep: php-pear
 Standards-Version: 3.9.3
 Homepage: https://github.com/sebastianbergmann/phpunit-selenium
+DM-Upload-Allowed: yes
 Vcs-Git: git://git.debian.org/pkg-php/phpunit-selenium.git
 Vcs-Browser: http://git.debian.org/?p=pkg-php/phpunit-selenium.git
 
diff -Nru phpunit-selenium-1.2.6/debian/README.Debian phpunit-selenium-1.2.6/debian/README.Debian
--- phpunit-selenium-1.2.6/debian/README.Debian	1969-12-31 19:00:00.0 -0500
+++ phpunit-selenium-1.2.6/debian/README.Debian	2012-07-31 15:00:26.0 -0500
@@ -0,0 +1,35 @@
+In order to run test that uses phpunit-selenium you need to download the
+Selenium Server from http://seleniumhq.org/download/ (the actual supported
+version of the server is 2.23) and start it with:
+
+  java -jar selenium-server-standalone-X.XX.X.jar
+
+The Selenium Server receives Selenium commands from your tests and
+interprets them, and reports back the results of running those tests.
+
+An example phpunit test:
+?php
+require_once 'PHPUnit/Extensions/SeleniumTestCase.php';
+
+class Example extends PHPUnit_Extensions_SeleniumTestCase
+{
+  function setUp()
+  {
+$this-setBrowser(*firefox);
+$this-setBrowserUrl(http://www.debian.org/;);
+  }
+
+  function testMyTestCase()
+  {
+$this-open(/);
+$this-assertTrue($this-isTextPresent(debian));
+  }
+}
+?
+
+For this test to run, you have to install iceweasel and make a link
+from /usr/bin/firefox to /usr/bin/iceweasel (You may want to save a
+copy of the script originally installed in /usr/bin/firefox)
+
+You can find documentation about how to write tests at
+http://seleniumhq.org/docs/05_selenium_rc.html
\ No newline at end of file


signature.asc
Description: Digital signature
---End Message---
---BeginMessage---
On 2012-07-31 23:40, Luis Uribe wrote:
 Package: release.debian.org
 Severity: normal
 User: release.debian@packages.debian.org
 Usertags: unblock
 
 Dear release team,
 
 I ask for a freeze exception for phpunit-selenium/1.2.6-3
 
 This upload introduces a README.Debian file with vital information for
 using this set of classes.
 
 The attached file was produced using 
 debdiff phpunit-selenium_1.2.6-2.dsc phpunit-selenium_1.2.6-3.dsc  
 phpunit-selenium_1.2.6-2:1.2.6-3.diff
 
 Thanks
 

Unblocked.

~Niels---End Message---


Bug#683439: marked as done (unblock: muroar/0.1.8-2)

2012-08-03 Thread Debian Bug Tracking System
Your message dated Fri, 03 Aug 2012 11:44:53 +0200
with message-id 501b9d95.5010...@thykier.net
and subject line Re: Bug#683439: unblock: muroar/0.1.8-2
has caused the Debian Bug report #683439,
regarding unblock: muroar/0.1.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.)


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

It removes - as requested - Philipp as maintainer and also adds an important
upstream patch (01-env-home-validation) to add validation of $HOME.

unblock muroar/0.1.8-2

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

Kernel: Linux 3.2.0-3-amd64 (SMP w/2 CPU cores)
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
---End Message---
---BeginMessage---
On 2012-07-31 22:05, Patrick Matthäi wrote:
 Package: release.debian.org
 Severity: normal
 User: release.debian@packages.debian.org
 Usertags: unblock
 
 Please unblock package muroar
 
 It removes - as requested - Philipp as maintainer and also adds an important
 upstream patch (01-env-home-validation) to add validation of $HOME.
 
 unblock muroar/0.1.8-2
 
 [...]

Unblocked, thanks.

~Niels---End Message---


Bug#683211: unblock: worldwind/0.5.0-9

2012-08-03 Thread Ralf Treinen
On Wed, Aug 01, 2012 at 09:51:00PM +0100, Adam D. Barratt wrote:

--- worldwind-0.5.0.orig/wms-release.zip.cdbs-config_list
+++ worldwind-0.5.0/wms-release.zip.cdbs-config_list
@@ -0,0 +1 @@
+ 2148  2008-05-02 18:04   WEB-INF/config.xml
   
   Where did this come from?
  
  Beats me. When building from svn, with the orig tarball as taken from
  a debian mirror, I get in the diff.gz:
  
  --- worldwind-0.5.0.orig/wms-release.zip.cdbs-config_list
  +++ worldwind-0.5.0/wms-release.zip.cdbs-config_list
  @@ -0,0 +1 @@
  + 2148  2008-05-02 18:04   WEB-INF/config.xml
  
  But the diff.gz of 0.5.0-8 contains nothing of this kind. Sylvestre,
  do you know where this is coming from? Is this coming from the invocation
  of ant in the clean target of debian/rules?
 
 Anyone? :)

It is the clean target of debian/rules that creates this file. The clean
target is defined by cdbs:

/usr/share/cdbs/1/class/ant.mk
/usr/share/cdbs/1/class/ant-vars.mk

the cdbs code does not mention the file that is created, so it seems to
come from ant itself. I am not an expert on java so I cannot say what the
effect of the presence of that file will be, but I iamgine that when ant
creates the file then there is a reason for it.

-Ralf.
-- 
Ralf Treinen
Laboratoire Preuves, Programmes et Systèmes
Université Paris Diderot, Paris, France.
http://www.pps.univ-paris-diderot.fr/~treinen/
= New email address: trei...@pps.univ-paris-diderot.fr =


--
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/20120803103607.gd16...@pps.jussieu.fr



Bug#683494: unblock: nvidia-support/20120630+2

2012-08-03 Thread Andreas Beckmann
retitle 683494 unblock: nvidia-support/20120630+3
thanks

Let's make this a

unblock nvidia-support/20120630+3

since there was one more translation added:


nvidia-support (20120630+3) unstable; urgency=low

  [ Debconf translations ]
  * French (fr)  (Closes: 683681)

 -- Andreas Beckmann deb...@abeckmann.de  Fri, 03 Aug 2012 14:14:07 +0200


Andreas

On 2012-08-01 11:19, Andreas Beckmann wrote:
 Package: release.debian.org
 Severity: normal
 User: release.debian@packages.debian.org
 Usertags: unblock
 
 Please unblock package nvidia-support
 
 * debconf templates reviewd by d-l-english@
 * translation updates
 
 debdiff ...+1 ...+2 | filterdiff -x '*.po*'
 is attached.
 
 unblock nvidia-support/20120630+2
 
 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/501bc56e.5020...@abeckmann.de



Processed: Re: unblock: nvidia-support/20120630+2

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

 retitle 683494 unblock: nvidia-support/20120630+3
Bug #683494 [release.debian.org] unblock: nvidia-support/20120630+2
Changed Bug title to 'unblock: nvidia-support/20120630+3' from 'unblock: 
nvidia-support/20120630+2'
 thanks
Stopping processing here.

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


--
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/handler.s.c.134399729830317.transcr...@bugs.debian.org



Bug#683736: unblock: iptables/1.4.14-3

2012-08-03 Thread Laurence J. Lane
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock package iptables


Added a patch from upstream that fixes an issue with iptables
compiled with gcc-4.7.


unblock iptables/1.4.14-3

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

Kernel: Linux 3.5.0-nymn (SMP w/2 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/20120803130523.32663.70371.report...@nymn.home



Bug#683738: unblock: joblib/0.6.4-3

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

Please unblock package joblib

Had to fix kfreebsd compatibility issue which was detected/triggered by
statsmodels unittests ran at build time

unblock joblib/0.6.4-3

neurodebian@head2:~/deb/builds/joblib$ debdiff 0.6.4-1/joblib_0.6.4-1.dsc 
0.6.4-3/joblib_0.6.4-3.dsc
diff -Nru joblib-0.6.4/debian/changelog joblib-0.6.4/debian/changelog
--- joblib-0.6.4/debian/changelog   2012-05-07 22:35:53.0 -0400
+++ joblib-0.6.4/debian/changelog   2012-07-23 14:36:37.0 -0400
@@ -1,3 +1,18 @@
+joblib (0.6.4-3) unstable; urgency=low
+
+  * debian/patches/up_no_parallel_if_no_locking -- needed more work for
+python2.6 compatibility where the exception was not triggered.
+
+ -- Yaroslav Halchenko deb...@onerussian.com  Mon, 23 Jul 2012 14:35:45 -0400
+
+joblib (0.6.4-2) unstable; urgency=low
+
+  * debian/patches/up_no_parallel_if_no_locking -- additional check for 
+availability of locking mechanisms to decide upon using multiprocessing.
+Needed for robust functioning on kfrebsd systems.
+
+ -- Yaroslav Halchenko deb...@onerussian.com  Mon, 16 Jul 2012 22:59:47 -0400
+
 joblib (0.6.4-1) unstable; urgency=low
 
   * New upstream release
diff -Nru joblib-0.6.4/debian/patches/series joblib-0.6.4/debian/patches/series
--- joblib-0.6.4/debian/patches/series  2012-05-07 22:35:53.0 -0400
+++ joblib-0.6.4/debian/patches/series  2012-07-23 14:36:37.0 -0400
@@ -0,0 +1 @@
+up_no_parallel_if_no_locking
diff -Nru joblib-0.6.4/debian/patches/up_no_parallel_if_no_locking 
joblib-0.6.4/debian/patches/up_no_parallel_if_no_locking
--- joblib-0.6.4/debian/patches/up_no_parallel_if_no_locking1969-12-31 
19:00:00.0 -0500
+++ joblib-0.6.4/debian/patches/up_no_parallel_if_no_locking2012-07-23 
14:36:37.0 -0400
@@ -0,0 +1,30 @@
+From: Yaroslav Halchenko deb...@onerussian.com
+Subject: joblib uses .Pool which requres locking to be available on the 
platform
+
+e.g. needed on kfreebsd systems  -- otherwise would try to initiate the .Pool
+and would backtrace -- leads to FTBFS of any package which excercizes
+build-time tests using joblib, e.g. statsmodels
+
+Origin: Debian
+Forwarded: https://github.com/joblib/joblib/pull/39
+Last-Update: 2012-07-16
+
+--- a/joblib/parallel.py
 b/joblib/parallel.py
+@@ -28,6 +28,16 @@ if multiprocessing:
+ except ImportError:
+ multiprocessing = None
+ 
++# 2nd stage: validate that locking is available on the system and
++#issue a warning if not
++if multiprocessing:
++try:
++_sem = multiprocessing.Semaphore()
++del _sem # cleanup
++except (ImportError, OSError), e:
++multiprocessing = None
++warnings.warn('%s.  joblib will operate in serial mode' % (e,))
++
+ from .format_stack import format_exc, format_outer_frames
+ from .logger import Logger, short_format_time
+ from .my_exceptions import TransportableException, _mk_exception


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


-- 
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/20120803130952.23534.49639.report...@novo.onerussian.com



Bug#683739: unblock: kfreebsd-9/9.0-5

2012-08-03 Thread Robert Millan
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock package kfreebsd-9

It fixes a Policy violation (#672255) and a bug in linprocfs (#682291 / #681594)
which is holding off fix for an RC bug in another package (haxe FTBFS,
see #621890).

An ABI bump was triggered by the second fix.

kfreebsd-9 (9.0-5) unstable; urgency=low

   * Remove /boot symlink kludge.  (Closes: #672255)
   * fix_VOP_VPTOCNP_bypass_for_nullfs.diff: Fix /proc/self/exe in
 nullfs. (Closes: #682291, #681594)

 -- Robert Millan r...@debian.org  Sat, 21 Jul 2012 16:07:17 +0200 

unblock kfreebsd-9/9.0-5

-- System Information:
Debian Release: 6.0.4
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'stable')
Architecture: kfreebsd-amd64 (x86_64)

Kernel: kFreeBSD 8.1-1-amd64
Locale: LANG=ca_AD.UTF-8, LC_CTYPE=ca_AD.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash


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



Bug#683494: marked as done (unblock: nvidia-support/20120630+3)

2012-08-03 Thread Debian Bug Tracking System
Your message dated Fri, 03 Aug 2012 15:09:49 +0200
with message-id 501bcd9d.4070...@thykier.net
and subject line Re: Bug#683494: unblock: nvidia-support/20120630+2
has caused the Debian Bug report #683494,
regarding unblock: nvidia-support/20120630+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.)


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

* debconf templates reviewd by d-l-english@
* translation updates

debdiff ...+1 ...+2 | filterdiff -x '*.po*'
is attached.

unblock nvidia-support/20120630+2

Andreas
diffstat for nvidia-support-20120630+1 nvidia-support-20120630+2

 changelog  |   21 +++
 nvidia-installer-cleanup.templates |   32 ++---
 nvidia-support.templates   |   32 ++---
 po/cs.po   |  170 +++
 po/da.po   |  181 -
 po/de.po   |  184 +-
 po/es.po   |  198 ++---
 po/fi.po   |  150 +++-
 po/fr.po   |  171 +++
 po/it.po   |  176 
 po/ja.po   |  150 +++-
 po/nl.po   |  169 +++
 po/pl.po   |  176 
 po/pt.po   |  196 ++--
 po/ru.po   |  172 +++-
 po/sk.po   |  165 +++---
 po/sv.po   |  171 +++
 po/templates.pot   |  121 ++
 po/zh_CN.po|  160 ++---
 19 files changed, 1799 insertions(+), 996 deletions(-)

diff -Nru nvidia-support-20120630+1/debian/changelog nvidia-support-20120630+2/debian/changelog
--- nvidia-support-20120630+1/debian/changelog	2012-06-30 18:00:28.0 +0200
+++ nvidia-support-20120630+2/debian/changelog	2012-08-01 10:44:11.0 +0200
@@ -1,3 +1,24 @@
+nvidia-support (20120630+2) unstable; urgency=low
+
+  [ Andreas Beckmann ]
+  * Debconf templates reviewed by debian-l10n-english@.
+  * Turn some 'note' templates into 'error' templates.
+
+  [ Debconf translations ]
+  * Chinese (zh_CN): YunQiang Su   (Closes: #683468)
+  * Czech (cs): Michal Šimůnek (Closes: #683072)
+  * Danish (da): Joe Hansen(Closes: #682356)
+  * German (de): Chris Leick   (Closes: #682860)
+  * Italian (it): Dario Santamaria (Closes: #683330)
+  * Polish (pl): Michał Kułach (Closes: #682386)
+  * Portuguese (pt): Miguel Figueiredo (Closes: #683055)
+  * Russian (ru): Yuri Kozlov  (Closes: #682556)
+  * Slovak (sk): Ivan Masár(Closes: #682783)
+  * Spanish (es): Norman Garcia Aguilar(Closes: #683362)
+  * Swedish (sv): Martin Bagge (Closes: #682566)
+
+ -- Andreas Beckmann deb...@abeckmann.de  Wed, 01 Aug 2012 10:44:11 +0200
+
 nvidia-support (20120630+1) unstable; urgency=low
 
   * Add kmod as preferred alternative to module-init-tools.
diff -Nru nvidia-support-20120630+1/debian/nvidia-installer-cleanup.templates nvidia-support-20120630+2/debian/nvidia-installer-cleanup.templates
--- nvidia-support-20120630+1/debian/nvidia-installer-cleanup.templates	2012-02-15 13:33:52.0 +0100
+++ nvidia-support-20120630+2/debian/nvidia-installer-cleanup.templates	2012-07-19 15:52:17.0 +0200
@@ -1,23 +1,23 @@
 Template: nvidia-installer-cleanup/uninstall-nvidia-installer
 Type: boolean
 Default: true
-_Description: Run 'nvidia-installer --uninstall'?
- The 'nvidia-installer' program was found on your system.  This is
- probably left over from an earlier installation of the non-free NVIDIA
- graphics driver, installed using the NVIDIA *.run file directly.  This
- installation is incompatible with the Debian packages.  To install the
+_Description: Run nvidia-installer --uninstall?
+ The nvidia-installer program was found on this system. This is
+ probably left over from an earlier installation of the non-free Nvidia
+ graphics driver, installed using the Nvidia 

Bug#683740: unblock: statsmodels/0.4.2-1

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

Please unblock package statsmodels

Sorry -- I have missed 30th of July deadline... 0.4.2-1 was uploaded on June
30th, but due to a FTBFS on kfreebsd's (only) it did not propagate
(#678708).  The issue was resolved by fixing joblib, statsmodels build-depends
upon and I have just filed unblock request for it (#683738).

Otherwise -- package is in a great shape, does unittesting at build time and
they pass all around.

unblock statsmodels/0.4.2-1

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


-- 
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/20120803131952.24168.15066.report...@novo.onerussian.com



Bug#683741: unblock: gamin/0.1.10-4.1

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

Please unblock package gamin

unblock gamin/0.1.10-4.1

This NMU fixed (according to my experience too) an old grave bug which
made gamin unusable before.

$ debdiff 0.1.10-4/gamin_0.1.10-4.dsc 0.1.10-4.1/gamin_0.1.10-4.1.dsc 
dpkg-source: warning: extracting unsigned source package 
(/backup/neurodebian/deb/builds/gamin/0.1.10-4.1/gamin_0.1.10-4.1.dsc)
diff -Nru gamin-0.1.10/debian/changelog gamin-0.1.10/debian/changelog
--- gamin-0.1.10/debian/changelog   2011-10-18 10:19:06.0 -0400
+++ gamin-0.1.10/debian/changelog   2012-07-19 22:08:26.0 -0400
@@ -1,3 +1,11 @@
+gamin (0.1.10-4.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Add 18_gam_server_deadlocks.patch: removes locking from ih_sub_cancel()
+to resolve intermittent deadlocks (Closes: #542361)
+
+ -- Yaroslav Halchenko deb...@onerussian.com  Thu, 19 Jul 2012 22:03:23 -0400
+
 gamin (0.1.10-4) unstable; urgency=low
 
   * Add 17_deprecated_const_return.patch: Don't use deprecated G_CONST_RETURN.
diff -Nru gamin-0.1.10/debian/control gamin-0.1.10/debian/control
--- gamin-0.1.10/debian/control 2011-10-18 10:22:12.0 -0400
+++ gamin-0.1.10/debian/control 2012-07-19 22:34:18.0 -0400
@@ -7,7 +7,7 @@
 Section: admin
 Priority: optional
 Maintainer: Michael Banck mba...@debian.org
-Uploaders: Debian GNOME Maintainers 
pkg-gnome-maintain...@lists.alioth.debian.org, Emilio Pozuelo Monfort 
po...@debian.org, Josselin Mouette j...@debian.org, Loic Minier 
l...@dooz.org, Sebastian Dröge sl...@debian.org
+Uploaders: Debian GNOME Maintainers 
pkg-gnome-maintain...@lists.alioth.debian.org, Emilio Pozuelo Monfort 
po...@debian.org, Loic Minier l...@dooz.org, Martin Pitt 
mp...@debian.org, Sebastian Dröge sl...@debian.org
 Build-Depends: cdbs (= 0.4.73),
debhelper( = 5.0.37.2),
libglib2.0-dev,
diff -Nru gamin-0.1.10/debian/patches/18_gam_server_deadlocks.patch 
gamin-0.1.10/debian/patches/18_gam_server_deadlocks.patch
--- gamin-0.1.10/debian/patches/18_gam_server_deadlocks.patch   1969-12-31 
19:00:00.0 -0500
+++ gamin-0.1.10/debian/patches/18_gam_server_deadlocks.patch   2012-07-19 
22:02:48.0 -0400
@@ -0,0 +1,70 @@
+From cc14440eface093548cb3bc7814da11d9a99d283 Mon Sep 17 00:00:00 2001
+From: Anssi Hannula an...@mageia.org
+Date: Wed, 4 Jan 2012 00:23:55 +0200
+Subject: [PATCH] fix possible server deadlock in ih_sub_cancel
+
+ih_sub_foreach() calls ih_sub_cancel() while inotify_lock is locked.
+However, ih_sub_cancel() locks it again, and locking GMutex recursively
+causes undefined behaviour.
+
+Fix that by removing locking from ih_sub_cancel() as ih_sub_foreach()
+is its only user. Also make the function static so that it won't
+accidentally get used by other files without locking (inotify-helper.h
+is an internal server header).
+
+This should fix the intermittent deadlocks I've been experiencing
+causing KDE applications to no longer start, and probably also
+http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=542361
+
+Origin: http://bugzilla-attachments.gnome.org/attachment.cgi?id=204537
+Bug-Ubuntu: https://bugs.launchpad.net/ubuntu/+source/gamin/+bug/926862
+Bug-Debian: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=542361
+
+---
+ server/inotify-helper.c |7 ++-
+ server/inotify-helper.h |1 -
+ 2 files changed, 2 insertions(+), 6 deletions(-)
+
+diff --git a/server/inotify-helper.c b/server/inotify-helper.c
+index d77203e..0789fa4 100644
+--- a/server/inotify-helper.c
 b/server/inotify-helper.c
+@@ -123,13 +123,11 @@ ih_sub_add (ih_sub_t * sub)
+ 
+ /**
+  * Cancels a subscription which was being monitored.
++ * inotify_lock must be held when calling.
+  */
+-gboolean
++static gboolean
+ ih_sub_cancel (ih_sub_t * sub)
+ {
+-  G_LOCK(inotify_lock);
+-
+-
+   if (!sub-cancelled)
+   {
+   IH_W(cancelling %s\n, sub-pathname);
+@@ -140,7 +138,6 @@ ih_sub_cancel (ih_sub_t * sub)
+   sub_list = g_list_remove (sub_list, sub);
+   }
+ 
+-  G_UNLOCK(inotify_lock);
+   return TRUE;
+ }
+ 
+diff --git a/server/inotify-helper.h b/server/inotify-helper.h
+index 5d3b6d0..d36b5fd 100644
+--- a/server/inotify-helper.h
 b/server/inotify-helper.h
+@@ -34,7 +34,6 @@ gboolean  ih_startup (event_callback_t ecb,
+found_callback_t fcb);
+ gboolean   ih_running (void);
+ gboolean   ih_sub_add (ih_sub_t *sub);
+-gboolean   ih_sub_cancel  (ih_sub_t *sub);
+ 
+ /* Return FALSE from 'f' if the subscription should be cancelled */
+ void   ih_sub_foreach (void *callerdata, gboolean (*f)(ih_sub_t *sub, 
void *callerdata));
+-- 
+1.7.7.2
+
diff -Nru gamin-0.1.10/debian/patches/series gamin-0.1.10/debian/patches/series
--- gamin-0.1.10/debian/patches/series  2011-10-18 10:12:20.0 -0400
+++ gamin-0.1.10/debian/patches/series  2012-07-19 21:59:58.0 -0400
@@ -2,4 +2,5 @@
 15_kfreebsd.patch
 

Bug#683739: unblock: kfreebsd-9/9.0-5

2012-08-03 Thread Adam D. Barratt

On 03.08.2012 14:10, Robert Millan wrote:

Please unblock package kfreebsd-9


For the record, this is currently on hold at least until d-i beta 1 is 
out, as all udeb-producing packages are frozen for that.



It fixes a Policy violation (#672255) and a bug in linprocfs (#682291
/ #681594)
which is holding off fix for an RC bug in another package (haxe 
FTBFS,

see #621890).

An ABI bump was triggered by the second fix.


haxe isn't in wheezy; a request to change that has already been denied.

Given all of the above, we should consider whether this should wait 
until after the release.


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



Bug#683753: unblock: ns3/3.14.1+dfsg-1

2012-08-03 Thread Aron Xu
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock ns3 as it was uploaded before freeze but blocked by an
already-fixed RC bug. Out-dated binaries were removed by ftp team, and
the false RC-bug has been marked as fixed manually and I think it is a
good candidate to be included in Wheezy.



-- 
Regards,
Aron Xu


-- 
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/CAMr=8w6k+kpgei+xkulsmcpnxehzsqftdqhg0wlpzkpg7xh...@mail.gmail.com



Will new version of subversion go in?

2012-08-03 Thread Mats Rynge
Release team,

I have a RC bug against one of my packages:

http://bugs.debian.org/cgi-bin/bugreport.cgi?archive=nobug=679561

Should FTBFS against the new subversion (which has not been accepted
yet, right?) be considered RC? If I upload pegasus-wms with this fix,
will it be allowed in?

Thanks,

-- 
Mats Rynge


-- 
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/501be586.80...@rynge.net



Processed: mistyped subject

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

 retitle 683684 unblock: cacti/0.8.8a-4
Bug #683684 [release.debian.org] Subject: unblock: cacti/0.8.8a-4
Changed Bug title to 'unblock: cacti/0.8.8a-4' from 'Subject: unblock: 
cacti/0.8.8a-4'
 thanks
Stopping processing here.

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


--
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/handler.s.c.134401188412667.transcr...@bugs.debian.org



Re: Will new version of subversion go in?

2012-08-03 Thread Julien Cristau
On Fri, Aug  3, 2012 at 07:51:50 -0700, Mats Rynge wrote:

 Release team,
 
 I have a RC bug against one of my packages:
 
 http://bugs.debian.org/cgi-bin/bugreport.cgi?archive=nobug=679561
 
 Should FTBFS against the new subversion (which has not been accepted
 yet, right?) be considered RC? If I upload pegasus-wms with this fix,
 will it be allowed in?
 
Yes, it should be fixed, and yes, it would be accepted.  (I don't know
yet whether svn 1.7 will make it to wheezy.)

Cheers,
Julien


signature.asc
Description: Digital signature


Bug#683739: unblock: kfreebsd-9/9.0-5

2012-08-03 Thread Robert Millan
2012/8/3 Adam D. Barratt a...@adam-barratt.org.uk:
 Given all of the above, we should consider whether this should wait until
 after the release.

What about #683562? (still not fixed)

-- 
Robert Millan


-- 
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/CAOfDtXNy99azgtmOmGB2i-CS2_z0MimY=p-l9vjhbgdq7cd...@mail.gmail.com



Bug#682603: One more time for linkchecker

2012-08-03 Thread Julien Cristau
Hi Scott,

On Tue, Jul 24, 2012 at 06:10:51 -0400, Scott Kitterman wrote:

 +--- linkchecker-7.9.orig/linkcheck/url.py
  linkchecker-7.9/linkcheck/url.py
 +@@ -69,10 +69,13 @@ if sys.version_info[0]  2 or sys.versio
 + scheme, url = url[:i].lower(), url[i+1:]
 + if url[:2] == '//':
 + netloc, url = urlparse._splitnetloc(url, 2)
 +-if allow_fragments and scheme in urlparse.uses_fragment and '#' in 
 url:
 +-url, fragment = url.split('#', 1)
 +-if scheme in urlparse.uses_query and '?' in url:
 +-url, query = url.split('?', 1)
 ++try:
 ++if allow_fragments and scheme in urlparse.uses_fragment and '#' 
 in url:
 ++url, fragment = url.split('#', 1)
 ++if scheme in urlparse.uses_query and '?' in url:
 ++url, query = url.split('?', 1)
 ++except AttributeError as errorstring:
 ++print(errorstring)
 + v = urlparse.SplitResult(scheme, netloc, url, query, fragment)
 + urlparse._parse_cache[key] = v
 + return v
 +@@ -344,7 +347,10 @@ def url_norm (url, encoding=None):
 + is_idn = url_fix_host(urlparts)
 + # query
 + urlparts[3] = url_parse_query(urlparts[3], encoding=encoding)
 +-is_hierarchical = urlparts[0] not in urlparse.non_hierarchical
 ++try:
 ++is_hierarchical = urlparts[0] not in urlparse.non_hierarchical
 ++except AttributeError as errorstring:
 ++print(errorstring)
 + if is_hierarchical:
 + # URL has a hierarchical path we should norm
 + if not urlparts[2]:

So I may be missing something, but I don't see how this can possibly
work.  You catch the AttributeError, print it (why?), and then go on to
use variables that are set in the try block, which AFAICT is going to
explode with NameError?

Cheers,
Julien


signature.asc
Description: Digital signature


Processed: tagging 682603

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

 tags 682603 + moreinfo
Bug #682603 [release.debian.org] unblock: linkchecker/7.9-2.2
Added tag(s) moreinfo.
 thanks
Stopping processing here.

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


--
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/handler.s.c.13440225403051.transcr...@bugs.debian.org



Bug#683094: marked as done (unblock: tuareg-mode/1:2.0.6-3)

2012-08-03 Thread Debian Bug Tracking System
Your message dated Fri, 3 Aug 2012 21:38:27 +0200
with message-id 20120803193827.gd17...@radis.cristau.org
and subject line Re: Bug#683094: unblock: tuareg-mode/1:2.0.6-3
has caused the Debian Bug report #683094,
regarding unblock: tuareg-mode/1:2.0.6-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.)


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

This upload fixes serious bug #681823 that made upgrading tuareg-mode from
squeeze to wheezy fail when emacs24 is installed. 

Diff with the previous version in sid/wheezy:

% git diff debian/1%2.0.6-2
diff --git a/debian/changelog b/debian/changelog
index 3bb6bbe..e01ccbf 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,11 @@
+tuareg-mode (1:2.0.6-3) unstable; urgency=low
+
+  * Updated the emacsen-install file from the current template shipped
+with dh-make to fix an upgrade failure from squeeze (closes: #681823).
+Thanks to Hilko Bengen for the patch!
+
+ -- Ralf Treinen trei...@debian.org  Sat, 28 Jul 2012 14:16:52 +0200
+
 tuareg-mode (1:2.0.6-2) unstable; urgency=low
 
   * debian/emacsen-install: fix tuareg-use-smie (f - nil). Thanks to
diff --git a/debian/emacsen-install b/debian/emacsen-install
index 152e711..a268320 100644
--- a/debian/emacsen-install
+++ b/debian/emacsen-install
@@ -27,8 +27,8 @@ fi
 install -m 755 -d ${ELCDIR}
 cd ${ELDIR}
 FILES=`echo *.el`
-cp ${FILES} ${ELCDIR}
 cd ${ELCDIR}
+ln -sf ${RELELDIR}/*.el .
 
 cat  EOF  path.el
 (setq load-path (cons . load-path) byte-compile-warnings nil)
@@ -42,7 +42,7 @@ case ${FLAVOR} in
 ;;
 esac
 
-rm -f *.el path.el path.elc
+rm -f path.el
 
 cd ${ELCDIR}
 for f in ${FILES} ; do




unblock tuareg-mode/1:2.0.6-3

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

Kernel: Linux 3.2.0-2-amd64 (SMP w/2 CPU cores)
Locale: LANG=en_US.utf8, LC_CTYPE=en_US.utf8 (charmap=UTF-8) (ignored: LC_ALL 
set to en_US.utf8)
Shell: /bin/sh linked to /bin/bash
---End Message---
---BeginMessage---
On Sat, Jul 28, 2012 at 19:08:55 +0200, Ralf Treinen wrote:

 Package: release.debian.org
 Severity: normal
 User: release.debian@packages.debian.org
 Usertags: unblock
 
 Please unblock package tuareg-mode
 
Unblocked.

Cheers,
Julien


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


Bug#683198: marked as done (unblock: vzctl/3.0.30.2-2)

2012-08-03 Thread Debian Bug Tracking System
Your message dated Fri, 3 Aug 2012 21:40:11 +0200
with message-id 20120803194011.ge17...@radis.cristau.org
and subject line Re: Bug#683198: unblock: vzctl/3.0.30.2-2
has caused the Debian Bug report #683198,
regarding unblock: vzctl/3.0.30.2-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.)


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

I have updated the documentation to fit wheezy release. Specifially
on the fact that wheezy do not provide any openvz kernel packages.

unblock vzctl/3.0.30.2-2

-- System Information:
Debian Release: 6.0.4
  APT prefers stable
  APT policy: (700, 'stable')
Architecture: i386 (i686)

Kernel: Linux 2.6.32-5-openvz-686 (SMP w/2 CPU cores)
Locale: LANG=sv_SE.UTF-8, LC_CTYPE=sv_SE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash
---End Message---
---BeginMessage---
On Sun, Jul 29, 2012 at 20:33:58 +0200, Ola Lundqvist wrote:

 Package: release.debian.org
 Severity: normal
 User: release.debian@packages.debian.org
 Usertags: unblock
 
 
 Please unblock package vzctl
 
 I have updated the documentation to fit wheezy release. Specifially
 on the fact that wheezy do not provide any openvz kernel packages.
 
 unblock vzctl/3.0.30.2-2
 
Unblocked.

Cheers,
Julien


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


Bug#682976: unblock: lintian/2.5.10.1

2012-08-03 Thread Julien Cristau
On Fri, Jul 27, 2012 at 17:22:15 +0200, Niels Thykier wrote:

 Package: release.debian.org
 Severity: normal
 User: release.debian@packages.debian.org
 Usertags: unblock
 
 Hi,
 
 I would like to upload a minor bug fix version of Lintian to sid
 targeting wheezy.  Attached is the intended source debdiff for that
 upload as generated by [1].
 
Ack.

Cheers,
Julien


signature.asc
Description: Digital signature


Processed: tagging 682976

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

 tags 682976 + confirmed
Bug #682976 [release.debian.org] unblock: lintian/2.5.10.1
Added tag(s) confirmed.
 thanks
Stopping processing here.

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


--
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/handler.s.c.134402477713664.transcr...@bugs.debian.org



Bug#682976: unblock: lintian/2.5.10.1

2012-08-03 Thread Niels Thykier
On 2012-08-03 22:12, Julien Cristau wrote:
 On Fri, Jul 27, 2012 at 17:22:15 +0200, Niels Thykier wrote:
 
 Package: release.debian.org
 Severity: normal
 User: release.debian@packages.debian.org
 Usertags: unblock

 Hi,

 I would like to upload a minor bug fix version of Lintian to sid
 targeting wheezy.  Attached is the intended source debdiff for that
 upload as generated by [1].

 Ack.
 
 Cheers,
 Julien

2.5.10.1 accepted in sid.

~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/501c3cf1.9020...@thykier.net



Bug#682976: marked as done (unblock: lintian/2.5.10.1)

2012-08-03 Thread Debian Bug Tracking System
Your message dated Fri, 3 Aug 2012 23:42:09 +0200
with message-id 20120803214209.gg17...@radis.cristau.org
and subject line Re: Bug#682976: unblock: lintian/2.5.10.1
has caused the Debian Bug report #682976,
regarding unblock: lintian/2.5.10.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.)


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

Hi,

I would like to upload a minor bug fix version of Lintian to sid
targeting wheezy.  Attached is the intended source debdiff for that
upload as generated by [1].

~Niels

unblock lintian/2.5.10.1


[1]
 $ debdiff --diffstat lintian_2.5.10.dsc lintian_2.5.10.1.dsc \
| filterdiff -x '**/vendors/debian/ftp-master-auto-reject/data/**' 

The filterdiff removes a duplicate caused by debdiff following
symlinks.  (i.e. data/ is a symlink pointing to
vendors/debian/ftp-master-auto-reject/data.)
diffstat for lintian-2.5.10 lintian-2.5.10.1

 checks/fields.desc|6 
 checks/manpages   |2 
 data/binaries/embedded-libs   |2 
 data/doc-base/sections|3 
 data/spelling/corrections |   11 +
 debian/changelog  |   48 +
 frontend/lintian  |2 
 lib/Lintian/Architecture.pm   |   83 --
 lib/Lintian/Path.pm   |9 -
 lib/Lintian/Relation.pm   |3 
 lib/Lintian/Tag/Info.pm   |6 
 vendors/debian/ftp-master-auto-reject/data/binaries/embedded-libs |2 
 vendors/debian/ftp-master-auto-reject/data/doc-base/sections  |3 
 vendors/debian/ftp-master-auto-reject/data/spelling/corrections   |   11 +
 14 files changed, 162 insertions(+), 29 deletions(-)

diff -Nru lintian-2.5.10/checks/fields.desc lintian-2.5.10.1/checks/fields.desc
--- lintian-2.5.10/checks/fields.desc	2012-06-26 16:05:38.0 +0200
+++ lintian-2.5.10.1/checks/fields.desc	2012-07-27 16:28:54.0 +0200
@@ -941,6 +941,9 @@
  should come second.
  .
  Example: libextutils-parsexs-perl (gt;= 2.21) | perl (gt;= 5.14)
+ .
+ Running ttcme fix dpkg -from control -filter Depends/tt should be able
+ to update these dependencies.
 Ref: policy 7.5
 
 Tag: package-superseded-by-perl
@@ -962,6 +965,9 @@
  versioned dependency a secondary one.
  .
  Example: perl (gt;= 5.10.0) | libmodule-build-perl (gt;= 0.26)
+ .
+ Running ttcme fix dpkg -from control -filter Depends/tt should be able
+ to update these dependencies.
 Ref: policy 7.5
 
 Tag: vcs-field-uses-not-recommended-uri-format
diff -Nru lintian-2.5.10/checks/manpages lintian-2.5.10.1/checks/manpages
--- lintian-2.5.10/checks/manpages	2012-06-26 16:51:47.0 +0200
+++ lintian-2.5.10.1/checks/manpages	2012-07-27 16:28:54.0 +0200
@@ -262,7 +262,7 @@
 # ignore wrapping failures if they contain URLs (.UE is an
 # extension for marking the end of a URL).
 next if /:(\d+): warning \[.*\]: (can\'t break|cannot adjust) line/
-and (   $manfile[$1 - 1] =~ m,(?:https?|ftp)://.+,i
+and (   $manfile[$1 - 1] =~ m,(?:https?|ftp|file)://.+,i
  or $manfile[$1 - 1] =~ m,^\s*\.\s*UE\b,);
 # ignore common undefined macros from pod2man  Perl 5.10
 next if /warning: (?:macro )?\`(Tr|IX)\' not defined/;
diff -Nru lintian-2.5.10/data/binaries/embedded-libs lintian-2.5.10.1/data/binaries/embedded-libs
--- lintian-2.5.10/data/binaries/embedded-libs	2012-06-26 16:47:31.0 +0200
+++ lintian-2.5.10.1/data/binaries/embedded-libs	2012-07-27 12:39:32.0 +0200
@@ -54,7 +54,7 @@
 libmng||TERM misplaced during creation of MNG stream
 libmsn||The MSN server has terminated the connection with an unknown reason code\.
 libmikmod ||APUN \(APlayer\) and UNI \(MikMod\)
-libmysqlclient ||source-regex=mysql-\d.* ||MySQL client ran out of memory
+libmysqlclient ||source-regex=mysql(?:-\d.*)? ||MySQL client ran out of memory
 libpcap   ||(?:pcap_activate: The any device isn\'t supported|corrupted frame on kernel ring mac offset)
 libpng||(?m)^Potential overflow in 

Bug#683783: unblock: alsa-lib/1.0.25-4

2012-08-03 Thread Jordi Mallach
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock package alsa-lib

I've added a trivial patch, taken from upstream git, that fixes a KDE
issue.

debdiff is attached.

unblock alsa-lib/1.0.25-4

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

Kernel: Linux 3.2.0-3-amd64 (SMP w/2 CPU cores)
Locale: LANG=ca_ES.UTF-8@valencia, LC_CTYPE=ca_ES.UTF-8@valencia (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
diff -Nru alsa-lib-1.0.25/debian/changelog alsa-lib-1.0.25/debian/changelog
--- alsa-lib-1.0.25/debian/changelog	2012-05-19 18:26:34.0 +0200
+++ alsa-lib-1.0.25/debian/changelog	2012-08-03 23:37:33.0 +0200
@@ -1,3 +1,11 @@
+alsa-lib (1.0.25-4) unstable; urgency=low
+
+  * Add htcl_remove_useless_assert.patch: apply patch from git to remove
+incorrect assert which causes KMix to crash on KDE logins
+(thanks, Ralf Jung; closes: #681078).
+
+ -- Jordi Mallach jo...@debian.org  Fri, 03 Aug 2012 23:35:47 +0200
+
 alsa-lib (1.0.25-3) unstable; urgency=low
 
   * Merge from Ubuntu:
diff -Nru alsa-lib-1.0.25/debian/patches/htcl_remove_useless_assert.patch alsa-lib-1.0.25/debian/patches/htcl_remove_useless_assert.patch
--- alsa-lib-1.0.25/debian/patches/htcl_remove_useless_assert.patch	1970-01-01 01:00:00.0 +0100
+++ alsa-lib-1.0.25/debian/patches/htcl_remove_useless_assert.patch	2012-08-03 23:32:02.0 +0200
@@ -0,0 +1,31 @@
+From 86e27cdbf119440101a850e1b44baebfefe863ca Mon Sep 17 00:00:00 2001
+From: Martin Sandsmark martin.sandsm...@kde.org
+Date: Thu, 5 Jul 2012 09:40:07 +0200
+Subject: [PATCH 1/1] hctl: Remove a useless assert
+
+The case where the element is unavailable (for example gone away since
+the event was created) is handled beneath.
+
+See also bug 5471.
+	https://bugtrack.alsa-project.org/alsa-bug/view.php?id=5471
+
+Signed-off-by: Takashi Iwai ti...@suse.de
+---
+ src/control/hcontrol.c |1 -
+ 1 file changed, 1 deletion(-)
+
+diff --git a/src/control/hcontrol.c b/src/control/hcontrol.c
+index 8ffc434..ee1d907 100644
+--- a/src/control/hcontrol.c
 b/src/control/hcontrol.c
+@@ -761,7 +761,6 @@ static int snd_hctl_handle_event(snd_hctl_t *hctl, snd_ctl_event_t *event)
+ 	if (event-data.elem.mask  (SNDRV_CTL_EVENT_MASK_VALUE |
+  SNDRV_CTL_EVENT_MASK_INFO)) {
+ 		elem = snd_hctl_find_elem(hctl, event-data.elem.id);
+-		assert(elem);
+ 		if (!elem)
+ 			return -ENOENT;
+ 		res = snd_hctl_elem_throw_event(elem, event-data.elem.mask 
+-- 
+1.7.10.4
+
diff -Nru alsa-lib-1.0.25/debian/patches/series alsa-lib-1.0.25/debian/patches/series
--- alsa-lib-1.0.25/debian/patches/series	2012-01-30 01:16:36.0 +0100
+++ alsa-lib-1.0.25/debian/patches/series	2012-08-03 23:32:57.0 +0200
@@ -1,3 +1,4 @@
 add-maintainer-mode.patch
 multiarch-safe-dlopen-search-path.patch
 spelling_fixes.patch
+htcl_remove_useless_assert.patch


What to do about t1lib / RC #637488

2012-08-03 Thread Tobias Hansen
Hi,

t1lib has no upstream, but a number of security vulnerabilities and reverse 
dependencies.

We need to know if #637488 can be ignored for wheezy or if we should go for 
removal and file bugs against the reverse dependencies.

Best regards,
Tobias Hansen


-- 
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/501c52a3.20...@gmx.de



Bug#683792: unblock: libseccomp/1.0.0-1

2012-08-03 Thread Kees Cook
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: freeze-exception

Please unblock package libseccomp

libseccomp just released their 1.0.0 version which has ABI changes over the
earlier 0.1.0 release. This is a new library and no packages in Debian are
currently build-depending on libseccomp, so the risk to the freeze is minimal.

I'd like to have this 1.0.0 version in Debian for easier development work
for people wanting to use libseccomp going forward.

unblock libseccomp/1.0.0-1

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

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


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



Bug#683794: unblock: pysvn/1.7.6-0.3

2012-08-03 Thread Hideki Yamane
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Hi,

 Please unblock pysvn package. Update pysvn is needed to unblock subversion1.7
 - it's already acked by Julien
   see https://lists.debian.org/debian-release/2012/07/msg01153.html



 Related packages' status
 - svn-workbench works, needs unblock
 - rabbitvcs works, needs unblock (it's in experimental now)
 - svn-load works
 - w3af probably works, but it is not updated.
   If there is any problems with updated pysvn, I'll suggest remove w3af
   from testing.


-- 
Regards,

 Hideki Yamane henrich @ debian.or.jp/org
 http://wiki.debian.org/HidekiYamane


-- 
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/20120804075404.e61e926c4d70ff471de02...@debian.or.jp



please unblock whois

2012-08-03 Thread Marco d'Itri
diff -urNp whois-5.0.17/debian/changelog whois-5.0.18/debian/changelog
--- whois-5.0.17/debian/changelog   2012-06-25 03:36:11.0 +0200
+++ whois-5.0.18/debian/changelog   2012-07-22 20:36:48.279334628 +0200
@@ -1,3 +1,11 @@
+whois (5.0.18) unstable; urgency=low
+
+  * Updated the .ae and .xn--mgbaam7a8h (.امارات, United Arabs Emirates)
+TLDs.
+  * Updated the server charset table for .fr and .it.
+
+ -- Marco d'Itri m...@linux.it  Sun, 22 Jul 2012 20:35:18 +0200
+
 whois (5.0.17) unstable; urgency=medium
 
   * Updated the .bi, .fo, .gr and .gt TLD servers.
diff -urNp whois-5.0.17/servers_charset_list whois-5.0.18/servers_charset_list
--- whois-5.0.17/servers_charset_list   2012-06-08 06:45:36.0 +0200
+++ whois-5.0.18/servers_charset_list   2012-07-22 20:35:10.590850093 +0200
@@ -3,7 +3,7 @@ whois.corenic.net   utf-8   -C UTF-8
 whois.cat  utf-8   -C UTF-8
 whois.museum   utf-8   -C UTF-8
 
-whois.aeda.ae  utf-8
+whois.aeda.net.ae  utf-8
 whois.nic.br   iso-8859-1
 whois.cira.ca  iso-8859-1
 whois.nic.ch   utf-8
@@ -18,12 +18,13 @@ whois.eenet.ee  iso-8859-1
 whois.eu   utf-8
 whois.ficora.fiiso-8859-1
 whois.nic.fo   utf-8
-whois.nic.fr   iso-8859-1
+whois.nic.fr   utf-8
 whois.hkirc.hk utf-8
 whois.nic.hr   utf-8
 whois.nic.hu   iso-8859-1
 whois.nic.ir   utf-8
 whois.isnic.is iso-8859-1
+whois.nic.it   utf-8
 whois.jprs.jp  iso-2022-jp
 whois.nic.ad.jpiso-2022-jp
 whois.nic.or.kreuc-kr
diff -urNp whois-5.0.17/tld_serv_list whois-5.0.18/tld_serv_list
--- whois-5.0.17/tld_serv_list  2012-06-25 03:27:50.0 +0200
+++ whois-5.0.18/tld_serv_list  2012-07-22 20:35:12.266859267 +0200
@@ -58,7 +58,7 @@
 
 .acwhois.nic.ac
 .adNONE# www.nic.ad
-.aewhois.aeda.ae
+.aewhois.aeda.net.ae
 .afwhois.nic.af
 .agwhois.nic.ag
 .aiwhois.ai
@@ -357,7 +357,7 @@
 .xn--kpry57d   whois.twnic.net.tw  # Taiwan, Traditional Chinese
 .xn--lgbbat1ad8j   whois.nic.dz# Algeria
 .xn--mgba3a4f16a   whois.nic.ir# Iran
-.xn--mgbaam7a8hwhois.aeda.ae   # United Arab Emirates
+.xn--mgbaam7a8hwhois.aeda.net.ae   # United Arab Emirates
 .xn--mgbayh7gpaWEB http://idn.jo/whois_a.aspx  # Jordan
 .xn--mgbbh1a71ewhois.registry.in   # India, Urdu AW
 #.xn--mgbc0a9azcg  whois.iam.net.ma# Morocco

-- 
ciao,
Marco


signature.asc
Description: Digital signature


Re: Please unblock schroot 1.6.2-1

2012-08-03 Thread Julien Cristau
On Sat, Jul 21, 2012 at 10:40:34 +0100, Roger Leigh wrote:

 Hi,
 
 Please could you unblock schroot?  It contains the following
 changes:
 
 schroot (1.6.2-1) unstable; urgency=low
 
Unblocked 1.6.3-1.

Cheers,
Julien


signature.asc
Description: Digital signature