Is it possible to upload mathematica-fonts?

2012-07-13 Thread Atsuhito Kohda
Dear Release Managers,

I got a bug #679707:

On Sat, 30 Jun 2012 23:25:35 +0200, Andreas Beckmann wrote:

 during a test with piuparts I noticed your package left unowned
 directories on the system after purge, which is a violation of
 policy 6.8:
(snip)
 Filing this as important as having a piuparts clean archive is a release
 goal since lenny.

It looked this is release goal so I think I can upload 
a fixed version but, as I'm not so sure, I guess I should
first ask you if I can upload a new package.

Its changelog is as follows:

mathematica-fonts (14) unstable; urgency=low

  * Fixed packaging: create directories for the fonts with debian/dirs
not with postinst scripts.  (Closes: #679707)

 -- Atsuhito KOHDA ko...@debian.org  Fri, 13 Jul 2012 13:48:11 +0900

I will upload the package if you allow me to do so.

Thanks for your work.
Best regards,   2012-7-13(Fri)

-- 
 Debian Developer - much more I18N of Debian
 Atsuhito Kohda kohda AT debian.org
 Department of Math., Univ. of Tokushima


-- 
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/20120713.143800.385082333.ko...@pm.tokushima-u.ac.jp



Bug#681434: unblock: python3-defaults/3.2.3-4

2012-07-13 Thread Scott Kitterman
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock package python3-defaults

Gets RC bug #681235 properly fixed, as the fix I uploaded in 3.2.3-2 missed a
few corner cases.  Additionally fixes RC bug #681389.  

Debdiff attached.

unblock python3-defaults/3.2.3-4
diff -Nru python3-defaults-3.2.3/debian/changelog python3-defaults-3.2.3/debian/changelog
--- python3-defaults-3.2.3/debian/changelog	2012-06-30 11:10:00.0 -0400
+++ python3-defaults-3.2.3/debian/changelog	2012-07-13 01:51:55.0 -0400
@@ -1,3 +1,30 @@
+python3-defaults (3.2.3-4) unstable; urgency=high
+
+  * py3clean: really close #681389
+
+ -- Piotr Ożarowski pi...@debian.org  Thu, 12 Jul 2012 22:45:47 -0600
+
+python3-defaults (3.2.3-3) unstable; urgency=high
+
+  * Yet another update in SHEBANG_RE to handle even more cases
+  * test4 fixed to catch missing /usr/bin/python → /usr/bin/python3 rewrites
+  * py3clean: accept --package *and* directory name at the same time
+(change missed in -1 upload, closes: #681389)
+  * Bump minimum required python3 version to 3.2.3-3~ in packages with .py files
+(due to --package option that is added to py3compile/py3clean in rtupdate
+scripts)
+
+ -- Piotr Ożarowski pi...@debian.org  Thu, 12 Jul 2012 12:40:42 -0600
+
+python3-defaults (3.2.3-2) unstable; urgency=high
+
+  * Urgency high for grave bug because this will cause other packages to
+misbuild
+  * Correct SHEBANG_RE in debpython/tools.py to not capture the 3 from python3
+(Closes: #681235)
+
+ -- Scott Kitterman sc...@kitterman.com  Wed, 11 Jul 2012 11:51:46 -0400
+
 python3-defaults (3.2.3-1) unstable; urgency=low
 
   * Bump upstream version to match current unstable/wheezy python3.2 version
diff -Nru python3-defaults-3.2.3/debian/python3.prerm python3-defaults-3.2.3/debian/python3.prerm
--- python3-defaults-3.2.3/debian/python3.prerm	2012-01-09 16:44:09.0 -0500
+++ python3-defaults-3.2.3/debian/python3.prerm	2012-07-12 19:40:37.0 -0400
@@ -1,4 +1,5 @@
-#! /bin/sh -e
+#! /bin/sh
+set -e
 
 if which py3clean /dev/null 21; then
 	py3clean -p python3
diff -Nru python3-defaults-3.2.3/debpython/depends.py python3-defaults-3.2.3/debpython/depends.py
--- python3-defaults-3.2.3/debpython/depends.py	2012-06-30 15:10:02.0 -0400
+++ python3-defaults-3.2.3/debpython/depends.py	2012-07-12 18:41:16.0 -0400
@@ -23,7 +23,7 @@
 from debpython.version import DEFAULT, SUPPORTED, getver, vrepr, vrange_str
 
 # minimum version required for py3compile/py3clean:
-MINPYCDEP = 'python3 (= 3.1.3-13~)'
+MINPYCDEP = 'python3 (= 3.2.3-3~)'
 
 log = logging.getLogger(__name__)
 
diff -Nru python3-defaults-3.2.3/debpython/files.py python3-defaults-3.2.3/debpython/files.py
--- python3-defaults-3.2.3/debpython/files.py	1969-12-31 19:00:00.0 -0500
+++ python3-defaults-3.2.3/debpython/files.py	2012-07-12 18:49:51.0 -0400
@@ -0,0 +1,84 @@
+# Copyright © 2012 Piotr Ożarowski pi...@debian.org
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the Software), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED AS IS, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+import logging
+from os import walk
+from os.path import abspath, isfile, join
+from subprocess import Popen, PIPE
+from debpython.pydist import PUBLIC_DIR_RE
+
+log = logging.getLogger(__name__)
+
+
+def from_directory(dname, extensions=('.py',)):
+Generate *.py file names available in given directory.
+extensions = tuple(extensions)  # .endswith doesn't like list
+if isinstance(dname, (list, tuple)):
+for item in dname:
+for fn in from_directory(item):
+yield fn
+elif isfile(dname) and dname.endswith(extensions):
+yield dname
+else:
+for root, dirs, file_names in walk(abspath(dname)):
+for fn in file_names:
+if fn.endswith(extensions):
+yield join(root, fn)
+
+
+def from_package(package_name, extensions=('.py',)):
+Generate *.py file names available in given package.

Bug#681437: unblock: graphviz/2.26.3-12

2012-07-13 Thread David Claughton
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock package graphviz

Testing contains version 2.26.3-10 of graphviz which currently FTBFS
due to removal of python 2.5 and change to ruby to 1.9 by default.

The previous 2.26.3-11 version fixed RC bug #669517 by removing a reference
to python 2.5.  However RC bug #676098 was raised before this could transit
to testing.

Version 2.26.3-12 fixes bug #676098 by explicitly referring to ruby 1.8 in
both debian/control and configure.ac.

debdiffs for both versions below:

 debdiff between 2.26.3-10 and 2.26.3-11 
diff -Nru graphviz-2.26.3/debian/changelog graphviz-2.26.3/debian/changelog
--- graphviz-2.26.3/debian/changelog2012-03-14 23:18:03.0 +
+++ graphviz-2.26.3/debian/changelog2012-05-02 21:56:03.0 +0100
@@ -1,3 +1,10 @@
+graphviz (2.26.3-11) unstable; urgency=low
+
+  * Remove reference to python 2.5 which is no longer available in sid
+(Closes: #669517) 
+
+ -- David Claughton d...@eclecticdave.com  Wed, 02 May 2012 21:53:08 +0100
+
 graphviz (2.26.3-10) unstable; urgency=low
 
   * Fixes for compatibility with Automake 1.11.2 (Closes: #661909)
diff -Nru graphviz-2.26.3/debian/libgv-python.install 
graphviz-2.26.3/debian/libgv-python.install
--- graphviz-2.26.3/debian/libgv-python.install 2011-05-18 20:41:03.0 
+0100
+++ graphviz-2.26.3/debian/libgv-python.install 2012-05-02 21:56:03.0 
+0100
@@ -1,5 +1,4 @@
 usr/lib/graphviz/python
-usr/lib/graphviz/python25
 usr/lib/graphviz/python26
 usr/lib/graphviz/python27
 usr/share/man/man3/gv.3python

 debdiff between 2.26.3-11 and 2.26.3-12 
diff -Nru graphviz-2.26.3/debian/changelog graphviz-2.26.3/debian/changelog
--- graphviz-2.26.3/debian/changelog2012-05-02 21:56:03.0 +0100
+++ graphviz-2.26.3/debian/changelog2012-07-10 23:37:19.0 +0100
@@ -1,3 +1,11 @@
+graphviz (2.26.3-12) unstable; urgency=low
+
+  * Fixes to explicitly use ruby 1.8 as default for ruby is now 1.9
+(Graphviz doesn't currently support ruby 1.9) 
+(Closes: #676098)
+
+ -- David Claughton d...@eclecticdave.com  Tue, 10 Jul 2012 21:41:24 +0100
+
 graphviz (2.26.3-11) unstable; urgency=low
 
   * Remove reference to python 2.5 which is no longer available in sid
diff -Nru graphviz-2.26.3/debian/control graphviz-2.26.3/debian/control
--- graphviz-2.26.3/debian/control  2012-05-02 21:56:03.0 +0100
+++ graphviz-2.26.3/debian/control  2012-07-10 23:37:19.0 +0100
@@ -27,7 +27,7 @@
  ghostscript,
  lua5.1,
  liblua5.1-0-dev,
- ruby,
+ ruby1.8,
  ruby1.8-dev,
  php5-dev,
  php5-cli,
diff -Nru graphviz-2.26.3/debian/patches/explicit_ruby_1.8 
graphviz-2.26.3/debian/patches/explicit_ruby_1.8
--- graphviz-2.26.3/debian/patches/explicit_ruby_1.81970-01-01 
01:00:00.0 +0100
+++ graphviz-2.26.3/debian/patches/explicit_ruby_1.82012-07-10 
23:37:19.0 +0100
@@ -0,0 +1,13 @@
+diff --git a/configure.ac b/configure.ac
+index cacafe1..36c34b2 100644
+--- a/configure.ac
 b/configure.ac
+@@ -1400,7 +1400,7 @@ else
+ if test `$SWIG -help 21 | $GREP -c '\-ruby *- Generate'` = 0; then
+   use_ruby=No (swig does not support -ruby option)
+ else
+-  AC_CHECK_PROG(RUBY,ruby,ruby)
++  AC_CHECK_PROG(RUBY,ruby1.8,ruby1.8)
+   if test x$RUBY = x; then
+   use_ruby=No (ruby not available)
+   else
diff -Nru graphviz-2.26.3/debian/patches/series 
graphviz-2.26.3/debian/patches/series
--- graphviz-2.26.3/debian/patches/series   2012-05-02 21:56:03.0 
+0100
+++ graphviz-2.26.3/debian/patches/series   2012-07-10 23:37:19.0 
+0100
@@ -13,3 +13,4 @@
 fix-kfreebsd-chroots
 fix-hurd-autotools
 automake_1.11.2_fixes
+explicit_ruby_1.8
 
unblock graphviz/2.26.3-12

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

Kernel: Linux 2.6.38-2-686 (SMP w/1 CPU core)
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash



-- 
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/20120712220936.3943.73611.report...@davelaptop.home.net



please unblock gtkterm 0.99.7~rc1-0.2

2012-07-13 Thread Bart Martens
Hello,

Please unblock gtkterm 0.99.7~rc1-0.2.

   * Non-maintainer upload.
   * src/serie.c: Added use of #ifdef __linux__.  Closes: #675835.  Patch by
 Petr Salinger petr.salin...@seznam.cz.
   * debian/copyright: Updated.

Debdiff attached.

Regards,

Bart Martens
diff -u gtkterm-0.99.7~rc1/debian/copyright gtkterm-0.99.7~rc1/debian/copyright
--- gtkterm-0.99.7~rc1/debian/copyright
+++ gtkterm-0.99.7~rc1/debian/copyright
@@ -5,10 +5,52 @@
 
-Upstream Author:  Julien Schmitt jul...@jls-info.com
+Upstream authors:
+
+Julien Schmitt jul...@jls-info.com
+Zach Davis zdavkeos -at- gmail.com
 
 Copyright:
 
-You are free to redistribute this software under the terms of the GNU
-General Public License.
-On Debian systems, the complete text of the GNU General Public License can
-be found at /usr/share/common-licenses/GPL.
+Original Code by: (c) Julien Schmitt
+
+License:
+
+This program is free software: you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation, either version 3 of the License, or
+(at your option) any later version.
+
+This program is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+GNU General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with this program.  If not, see http://www.gnu.org/licenses/.
+
+On Debian systems, the complete text of the GNU General Public License
+version 3 can be found at /usr/share/common-licenses/GPL-3.
+
+The files src/parsecfg.c and src/parsecfg.h have this copyright and license :
+
+Copyright (C) 1999-2001 Yuuki NINOMIYA g...@debian.or.jp
+
+This program is free software; you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation; either version 2, or (at your option)
+any later version.
+
+This program is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+GNU General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with this program; if not, write to the
+Free Software Foundation, Inc.
+
+The address of the Free Software Foundation, Inc. is 51 Franklin St, Fifth
+Floor, Boston, MA 02110-1301, USA.
+
+On Debian systems, the complete text of the GNU General Public License
+version 2 can be found at /usr/share/common-licenses/GPL-2.
 
diff -u gtkterm-0.99.7~rc1/debian/changelog gtkterm-0.99.7~rc1/debian/changelog
--- gtkterm-0.99.7~rc1/debian/changelog
+++ gtkterm-0.99.7~rc1/debian/changelog
@@ -1,3 +1,12 @@
+gtkterm (0.99.7~rc1-0.2) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * src/serie.c: Added use of #ifdef __linux__.  Closes: #675835.  Patch by
+Petr Salinger petr.salin...@seznam.cz.
+  * debian/copyright: Updated.
+
+ -- Bart Martens ba...@debian.org  Fri, 13 Jul 2012 06:17:16 +
+
 gtkterm (0.99.7~rc1-0.1) unstable; urgency=medium
 
   * Non-Maintainer upload
only in patch2:
unchanged:
--- gtkterm-0.99.7~rc1.orig/src/serie.c
+++ gtkterm-0.99.7~rc1/src/serie.c
@@ -25,7 +25,9 @@
 #include fcntl.h
 #include stdio.h
 #include unistd.h
+#ifdef __linux__
 #include linux/serial.h
+#endif
 #include errno.h
 #include sys/ioctl.h
 #include sys/types.h
@@ -215,8 +217,12 @@
 	break;
 
 	default:
+#ifdef __linux__
 	set_custom_speed(config.vitesse, serial_port_fd);
 	termios_p.c_cflag |= B38400;
+#else
+ return NULL;
+#endif	
 
 }
 
@@ -521,6 +527,7 @@
 	tcsendbreak(serial_port_fd, 0);
 }
 
+#ifdef __linux__
 gint set_custom_speed(int speed, int port_fd)
 {
 
@@ -540,6 +547,7 @@
 
 return 0;
 }
+#endif
 
 gchar* get_port_string(void)
 {


Re: BinNMU changelog handling for Multi-Arch: same packages

2012-07-13 Thread Raphael Hertzog
On Thu, 12 Jul 2012, Philipp Kern wrote:
  #681292 against sbuild. Feel free to clone it if necessary.
 
 I just verified a build in stable and get a bunch of these:
 
  dpkg-source --after-build hello-2.6
 parsechangelog/debian: warning: hello-2.6/debian/changelog(l1): unknown 
 key-value Binary-only
 LINE: hello (2.6-1+b1) unstable; urgency=low, binary-only=yes
 parsechangelog/debian: warning: unknown information field 'Binary-Only' in 
 input data in parsed version of changelog
 dpkg-buildpackage: binary and diff upload (original source NOT included)
 
 If we add that, dpkg in all supported suites should at least do the right
 thing and ignore it.

I'm happy to prepare a stable update to fix this. Would you accept it?

Cheers,
-- 
Raphaël Hertzog ◈ Debian Developer

Get the Debian Administrator's Handbook:
→ http://debian-handbook.info/get/


-- 
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/20120713070700.gb28...@rivendell.home.ouaza.com



Re: open-iscsi freeze exception for Wheezy

2012-07-13 Thread Ritesh Raj Sarraf
Any updates of this exception request?


On Tuesday 10 July 2012 08:57 PM, Cyril Brulebois wrote:
 Hi Colin,
 
 Ritesh Raj Sarraf r...@debian.org (10/07/2012):
 Now that the old (2.0.873-1) version of the udeb has been removed, and
 the newer limited architecture udebs are ready in unstable, this email
 is a request for freeze exception (including udeb freeze exception)
 for the open-iscsi package.

 The current excuses reported are:


 Excuse for open-iscsi

   * 12 days old (needed 10 days)
   * Not touching package due to block-udeb request by freeze (contact
 debian-release if update is needed)
   * Ignoring block request by freeze, due to unblock request by
 freeze-exception
   * Updating open-iscsi fixes old bugs: #645752
 http://bugs.debian.org/645752
   * Not considered
 
 I see you added the udeb to open-iscsi; do you want it to migrate
 right now? Or should that wait after beta 1?
 
 Ping based on:
 | cbrulebois@Cygnus:~/debian-installer(0)$ grep open-iscsi-udeb -r .
 | ./packages/partman-iscsi/debian/control:Depends: ${misc:Depends}, 
 partman-base (= 114), cdebconf-udeb (= 0.133), di-utils (= 1.66), 
 open-iscsi-udeb
 
 and:
 | +open-iscsi (2.0.872+git0.6676a1cf-1) experimental; urgency=low
 | […]
 | +  [ Colin Watson ]
 | +  * [156b745] open-iscsi: add a udeb (Closes: #635161)
 | +
 | + -- Ritesh Raj Sarraf r...@debian.org  Sat, 07 Apr 2012 21:02:37 +0530
 
 Mraw,
 KiBi.


-- 
Ritesh Raj Sarraf | http://people.debian.org/~rrs
Debian - The Universal Operating System



signature.asc
Description: OpenPGP digital signature


Bug#681446: unblock: botan1.10/1.10.3-1

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

Please unblock package botan1.10

ABI breakage in upstream 1.10.2, see #681066

unblock botan1.10/1.10.3-1

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

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



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



Bug#681447: unblock: softhsm/1.3.3-2

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

Please unblock package softhsm

/etc/softhsm/softhsm.conf was accidentally distributed in softhsm (and
handled using ucf in softhsm-common), see #681311.

unblock softhsm/1.3.3-2

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

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



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



Bug#681448: unblock: nsd3/3.2.11-1

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

Please unblock package nsd3

Since this version will be the next supported I would like to push
latest upstream, which:

- add support for TLSA RR type
- add support for ECDSA (Elliptic Curve algorithms) in DNSSEC

Both of these will hopefully used in upcoming years:

- EC algorithms have nice properties of being smaller and faster, so
people will rollover to them once the support in DNSSEC validators is
prevalent
- TLSA allows certificate pinning (and even Debian would benefit from
that as you can add trust anchor on the fly for self-signed CAs and certs).
We hope to see support in browsers/MTAs/MUAs etc. start to growing as
the protocol is almost a standard (in RFC-Editor queue for those who
knows what that means :)).


The upstream release also includes few minor fixes in IXFR code
and new zone stats, which I haven't enabled since it's a new code.
(I could cherry-pick these two main mentioned features, but I feel
it's not worth it as NSD3 has no rev-deps and the codebase is stable.)

unblock nsd3/3.2.11-1

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

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



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



Re: Freeze-exception for beast-mcmc possible? (Was: beast-mcmc_1.6.2-3_amd64.changes ACCEPTED into unstable)

2012-07-13 Thread Julien Cristau
On Fri, Jul 13, 2012 at 10:35:52 +0200, Andreas Tille wrote:

 On Thu, Jul 12, 2012 at 06:02:50PM +0200, Julien Cristau wrote:
  
  What are you talking about?
  
  beast-mcmc-lib |1.6.2-1 | unstable/contrib | armel, armhf, ia64, 
  powerpc, s390x
  
  The package *is* available on those archs in an out of date version, so
  it's not considered for migration.
 
 Ups, that's new to me.  I was told that autobuilders do not fetch
 Build-Depends from non-free.  This is good news on one hand - I will
 try to investigate how the other archs might proceed.
 
They shouldn't.  I think they might in some cases if the non-free
packages are available in incoming, as that's not split between main and
non-free, which is arguably a bug.

Cheers,
Julien


signature.asc
Description: Digital signature


Re: Please give-back Mono on SPARC

2012-07-13 Thread Mehdi Dogguy

On 13/07/12 01:57, Jo Shields wrote:

Hi,

Mono 2.10.8.1-5 (a security upload) failed to build on SPARC. The
failure appears to be the fault of a misconfigured buildd (I had no
trouble building on the SPARC porterbox) so I don't see any need to make
changes to the package to make it build.

gb mono_2.10.8.1-5 . sparc



Given back.

Wanna-build requests should be addressed to the debian-wb-team 
mailing-list though, and CC'ing $a...@buildd.debian.org


(CC'ing the former to let them know about the give-back)

Regards,

--
Mehdi Dogguy مهدي الدڤي
http://dogguy.org/


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



Bug#681434: marked as done (unblock: python3-defaults/3.2.3-4)

2012-07-13 Thread Debian Bug Tracking System
Your message dated Fri, 13 Jul 2012 12:04:25 +0200
with message-id 42a9.5040...@dogguy.org
and subject line Re: Bug#681434: unblock: python3-defaults/3.2.3-4
has caused the Debian Bug report #681434,
regarding unblock: python3-defaults/3.2.3-4
to be marked as done.

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

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


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

Gets RC bug #681235 properly fixed, as the fix I uploaded in 3.2.3-2 missed a
few corner cases.  Additionally fixes RC bug #681389.  

Debdiff attached.

unblock python3-defaults/3.2.3-4
diff -Nru python3-defaults-3.2.3/debian/changelog python3-defaults-3.2.3/debian/changelog
--- python3-defaults-3.2.3/debian/changelog	2012-06-30 11:10:00.0 -0400
+++ python3-defaults-3.2.3/debian/changelog	2012-07-13 01:51:55.0 -0400
@@ -1,3 +1,30 @@
+python3-defaults (3.2.3-4) unstable; urgency=high
+
+  * py3clean: really close #681389
+
+ -- Piotr Ożarowski pi...@debian.org  Thu, 12 Jul 2012 22:45:47 -0600
+
+python3-defaults (3.2.3-3) unstable; urgency=high
+
+  * Yet another update in SHEBANG_RE to handle even more cases
+  * test4 fixed to catch missing /usr/bin/python → /usr/bin/python3 rewrites
+  * py3clean: accept --package *and* directory name at the same time
+(change missed in -1 upload, closes: #681389)
+  * Bump minimum required python3 version to 3.2.3-3~ in packages with .py files
+(due to --package option that is added to py3compile/py3clean in rtupdate
+scripts)
+
+ -- Piotr Ożarowski pi...@debian.org  Thu, 12 Jul 2012 12:40:42 -0600
+
+python3-defaults (3.2.3-2) unstable; urgency=high
+
+  * Urgency high for grave bug because this will cause other packages to
+misbuild
+  * Correct SHEBANG_RE in debpython/tools.py to not capture the 3 from python3
+(Closes: #681235)
+
+ -- Scott Kitterman sc...@kitterman.com  Wed, 11 Jul 2012 11:51:46 -0400
+
 python3-defaults (3.2.3-1) unstable; urgency=low
 
   * Bump upstream version to match current unstable/wheezy python3.2 version
diff -Nru python3-defaults-3.2.3/debian/python3.prerm python3-defaults-3.2.3/debian/python3.prerm
--- python3-defaults-3.2.3/debian/python3.prerm	2012-01-09 16:44:09.0 -0500
+++ python3-defaults-3.2.3/debian/python3.prerm	2012-07-12 19:40:37.0 -0400
@@ -1,4 +1,5 @@
-#! /bin/sh -e
+#! /bin/sh
+set -e
 
 if which py3clean /dev/null 21; then
 	py3clean -p python3
diff -Nru python3-defaults-3.2.3/debpython/depends.py python3-defaults-3.2.3/debpython/depends.py
--- python3-defaults-3.2.3/debpython/depends.py	2012-06-30 15:10:02.0 -0400
+++ python3-defaults-3.2.3/debpython/depends.py	2012-07-12 18:41:16.0 -0400
@@ -23,7 +23,7 @@
 from debpython.version import DEFAULT, SUPPORTED, getver, vrepr, vrange_str
 
 # minimum version required for py3compile/py3clean:
-MINPYCDEP = 'python3 (= 3.1.3-13~)'
+MINPYCDEP = 'python3 (= 3.2.3-3~)'
 
 log = logging.getLogger(__name__)
 
diff -Nru python3-defaults-3.2.3/debpython/files.py python3-defaults-3.2.3/debpython/files.py
--- python3-defaults-3.2.3/debpython/files.py	1969-12-31 19:00:00.0 -0500
+++ python3-defaults-3.2.3/debpython/files.py	2012-07-12 18:49:51.0 -0400
@@ -0,0 +1,84 @@
+# Copyright © 2012 Piotr Ożarowski pi...@debian.org
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the Software), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED AS IS, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+import logging
+from os import walk
+from os.path import abspath, 

Bug#681437: marked as done (unblock: graphviz/2.26.3-12)

2012-07-13 Thread Debian Bug Tracking System
Your message dated Fri, 13 Jul 2012 12:02:36 +0200
with message-id 423c.7090...@dogguy.org
and subject line Re: Bug#681437: unblock: graphviz/2.26.3-12
has caused the Debian Bug report #681437,
regarding unblock: graphviz/2.26.3-12
to be marked as done.

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

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


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

Testing contains version 2.26.3-10 of graphviz which currently FTBFS
due to removal of python 2.5 and change to ruby to 1.9 by default.

The previous 2.26.3-11 version fixed RC bug #669517 by removing a reference
to python 2.5.  However RC bug #676098 was raised before this could transit
to testing.

Version 2.26.3-12 fixes bug #676098 by explicitly referring to ruby 1.8 in
both debian/control and configure.ac.

debdiffs for both versions below:

 debdiff between 2.26.3-10 and 2.26.3-11 
diff -Nru graphviz-2.26.3/debian/changelog graphviz-2.26.3/debian/changelog
--- graphviz-2.26.3/debian/changelog2012-03-14 23:18:03.0 +
+++ graphviz-2.26.3/debian/changelog2012-05-02 21:56:03.0 +0100
@@ -1,3 +1,10 @@
+graphviz (2.26.3-11) unstable; urgency=low
+
+  * Remove reference to python 2.5 which is no longer available in sid
+(Closes: #669517) 
+
+ -- David Claughton d...@eclecticdave.com  Wed, 02 May 2012 21:53:08 +0100
+
 graphviz (2.26.3-10) unstable; urgency=low
 
   * Fixes for compatibility with Automake 1.11.2 (Closes: #661909)
diff -Nru graphviz-2.26.3/debian/libgv-python.install 
graphviz-2.26.3/debian/libgv-python.install
--- graphviz-2.26.3/debian/libgv-python.install 2011-05-18 20:41:03.0 
+0100
+++ graphviz-2.26.3/debian/libgv-python.install 2012-05-02 21:56:03.0 
+0100
@@ -1,5 +1,4 @@
 usr/lib/graphviz/python
-usr/lib/graphviz/python25
 usr/lib/graphviz/python26
 usr/lib/graphviz/python27
 usr/share/man/man3/gv.3python

 debdiff between 2.26.3-11 and 2.26.3-12 
diff -Nru graphviz-2.26.3/debian/changelog graphviz-2.26.3/debian/changelog
--- graphviz-2.26.3/debian/changelog2012-05-02 21:56:03.0 +0100
+++ graphviz-2.26.3/debian/changelog2012-07-10 23:37:19.0 +0100
@@ -1,3 +1,11 @@
+graphviz (2.26.3-12) unstable; urgency=low
+
+  * Fixes to explicitly use ruby 1.8 as default for ruby is now 1.9
+(Graphviz doesn't currently support ruby 1.9) 
+(Closes: #676098)
+
+ -- David Claughton d...@eclecticdave.com  Tue, 10 Jul 2012 21:41:24 +0100
+
 graphviz (2.26.3-11) unstable; urgency=low
 
   * Remove reference to python 2.5 which is no longer available in sid
diff -Nru graphviz-2.26.3/debian/control graphviz-2.26.3/debian/control
--- graphviz-2.26.3/debian/control  2012-05-02 21:56:03.0 +0100
+++ graphviz-2.26.3/debian/control  2012-07-10 23:37:19.0 +0100
@@ -27,7 +27,7 @@
  ghostscript,
  lua5.1,
  liblua5.1-0-dev,
- ruby,
+ ruby1.8,
  ruby1.8-dev,
  php5-dev,
  php5-cli,
diff -Nru graphviz-2.26.3/debian/patches/explicit_ruby_1.8 
graphviz-2.26.3/debian/patches/explicit_ruby_1.8
--- graphviz-2.26.3/debian/patches/explicit_ruby_1.81970-01-01 
01:00:00.0 +0100
+++ graphviz-2.26.3/debian/patches/explicit_ruby_1.82012-07-10 
23:37:19.0 +0100
@@ -0,0 +1,13 @@
+diff --git a/configure.ac b/configure.ac
+index cacafe1..36c34b2 100644
+--- a/configure.ac
 b/configure.ac
+@@ -1400,7 +1400,7 @@ else
+ if test `$SWIG -help 21 | $GREP -c '\-ruby *- Generate'` = 0; then
+   use_ruby=No (swig does not support -ruby option)
+ else
+-  AC_CHECK_PROG(RUBY,ruby,ruby)
++  AC_CHECK_PROG(RUBY,ruby1.8,ruby1.8)
+   if test x$RUBY = x; then
+   use_ruby=No (ruby not available)
+   else
diff -Nru graphviz-2.26.3/debian/patches/series 
graphviz-2.26.3/debian/patches/series
--- graphviz-2.26.3/debian/patches/series   2012-05-02 21:56:03.0 
+0100
+++ graphviz-2.26.3/debian/patches/series   2012-07-10 23:37:19.0 
+0100
@@ -13,3 +13,4 @@
 fix-kfreebsd-chroots
 fix-hurd-autotools
 automake_1.11.2_fixes
+explicit_ruby_1.8
 
unblock graphviz/2.26.3-12

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

Kernel: Linux 2.6.38-2-686 (SMP w/1 CPU core)
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash


---End Message---
---BeginMessage---

On 

Bug#681395: unblock smarty-gettext

2012-07-13 Thread Mike Gabriel

Hi Adam,

thanks for the quick reply.

On Do 12 Jul 2012 22:50:23 CEST Adam D. Barratt wrote:


On 12.07.2012 21:09, Mike Gabriel wrote:

Package smarty-gettext 1.0b1-6 got broken by changing from smarty 3.0
to smarty 3.1. A patch against upstream 1.0b1 has been uploaded to
SID  with smarty-gettext 1.0b1-7.


What's this change about?

+  * debian/install, debian/links:
++ Install as /usr/bin/tsmarty2c (without extension) and drop the symlink
+  of the same name that used to refer to /usr/bin/tsmarty2c.php.


1.0b1-6 had three locations within /debian dir that played around with  
the file tsmarty2c.php (name that upstream gave the file):  
debian/install, debian/links and debian/rules. The job done in  
debian/links and the command in debian/rules obviously interfered with  
each other.


Furthermore, in 1.0b1-6 I had these lintian warnings:

W: smarty-gettext: binary-without-manpage usr/bin/tsmarty2c
W: smarty-gettext: binary-without-manpage usr/bin/tsmarty2c.php

Obviously, one being a duplicate of the other... So for 1.0b1-7 I had  
two goals: get rid of the duplication and provide a man page. As files  
in /usr/bin are not supposed to have file extension (§ 10.4), I  
decided for copying tsmarty2c.php first (dh_install) and then rename  
it in situ (debian/rules:override_dh_install).



There doesn't appear to be any documentation or rationale beyond the above;
furthermore, the change appears to be broken:

--- smarty-gettext-1.0b1/debian/install 2012-05-10 18:59:25.0 +
+++ smarty-gettext-1.0b1/debian/install 2012-07-08 13:07:48.0 +
@@ -1,2 +1,2 @@
 block.t.php usr/share/php/smarty3/plugins/
-tsmarty2c.php usr/bin/
+tsmarty2c.php usr/bin/
 No newline at end of file


This file only has lost an EOL (sorry for causing confusion). Again  
the mech is copy tsmarty2c.php to usr/bin and the rename it there to  
tsmarty2c (via debian/rules).


Greets+ThanksForFeedback,
Mike

--

DAS-NETZWERKTEAM
mike gabriel, rothenstein 5, 24214 neudorf-bornstein
fon: +49 (1520) 1976 148

GnuPG Key ID 0xB588399B
mail: mike.gabr...@das-netzwerkteam.de, http://das-netzwerkteam.de

freeBusy:
https://mail.das-netzwerkteam.de/freebusy/m.gabriel%40das-netzwerkteam.de.xfb

pgpu0Ks1IQHaV.pgp
Description: Digitale PGP-Unterschrift


Bug#681109: marked as done (nmu: llvm-3.0_3.0-9)

2012-07-13 Thread Debian Bug Tracking System
Your message dated Fri, 13 Jul 2012 12:02:18 +
with message-id e1speze-0005ga...@franck.debian.org
and subject line Bug#681109: fixed in llvm-3.0 3.0-10
has caused the Debian Bug report #681109,
regarding nmu: llvm-3.0_3.0-9
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.)


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

nmu llvm-3.0_3.0-9 . ALL . -m Rebuild to fix #680326

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

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


---End Message---
---BeginMessage---
Source: llvm-3.0
Source-Version: 3.0-10

We believe that the bug you reported is fixed in the latest version of
llvm-3.0, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 681...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Sylvestre Ledru sylves...@debian.org (supplier of updated llvm-3.0 package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Fri, 13 Jul 2012 13:34:45 +0200
Source: llvm-3.0
Binary: libllvm3.0 llvm-3.0 llvm-3.0-runtime llvm-3.0-dev libllvm-3.0-ocaml-dev 
llvm-3.0-doc llvm-3.0-examples llvm-3.0-source
Architecture: source amd64 all
Version: 3.0-10
Distribution: unstable
Urgency: low
Maintainer: LLVM Packaging Team pkg-llvm-t...@lists.alioth.debian.org
Changed-By: Sylvestre Ledru sylves...@debian.org
Description: 
 libllvm-3.0-ocaml-dev - Low-Level Virtual Machine (LLVM), bindings for OCaml
 libllvm3.0 - Low-Level Virtual Machine (LLVM), runtime library
 llvm-3.0   - Low-Level Virtual Machine (LLVM)
 llvm-3.0-dev - Low-Level Virtual Machine (LLVM), libraries and headers
 llvm-3.0-doc - Low-Level Virtual Machine (LLVM), documentation
 llvm-3.0-examples - Low-Level Virtual Machine (LLVM), examples
 llvm-3.0-runtime - Low-Level Virtual Machine (LLVM), bytecode interpreter
 llvm-3.0-source - Low-Level Virtual Machine (LLVM), source code
Closes: 680326 681109
Changes: 
 llvm-3.0 (3.0-10) unstable; urgency=low
 .
   * Rebuild package to fix symbol issues (Closes: #680326, #681109)
Checksums-Sha1: 
 2e4ed1288f0e3256d3435d49336c199c8ba602f6 1958 llvm-3.0_3.0-10.dsc
 e3fb1581bb0e0beeeff78008fe9ce8c49b0c0f4a 31951 llvm-3.0_3.0-10.debian.tar.gz
 b4fbe7a592fe82be5da34eca29c664a4dfbbbfa6 7528860 libllvm3.0_3.0-10_amd64.deb
 84965a9b4871cb457ade7faa5595ac0a6166319c 1325244 llvm-3.0_3.0-10_amd64.deb
 d63e0fedbc4d85407259d3c81a66995eed670d4e 43018 
llvm-3.0-runtime_3.0-10_amd64.deb
 0c621ffaba2e520c8a6c2991a226b0ead1334dd5 12808692 llvm-3.0-dev_3.0-10_amd64.deb
 32cc3c87e47a689a01c901577bc89b40984a093a 279402 
libllvm-3.0-ocaml-dev_3.0-10_amd64.deb
 b7c47541fb560bb48bc1b8c8cdb8a35d80eb1ef1 997568 llvm-3.0-doc_3.0-10_all.deb
 a38bf8d84fda182a3cff5d6f3744a219b4c8310f 110114 
llvm-3.0-examples_3.0-10_all.deb
 2f6787b60ae32f45d491380b68fb80e995dd8e0b 7126146 llvm-3.0-source_3.0-10_all.deb
Checksums-Sha256: 
 e3a1c4f8eee8e326ea345df15598645c813945514fdfffd94033e8c30c4fabac 1958 
llvm-3.0_3.0-10.dsc
 ed8fa119baeee70a7061d296b5a308689067d428a1f9a268ce184385e5a39812 31951 
llvm-3.0_3.0-10.debian.tar.gz
 ed02927ffaac3c9b1ffbe989c2b0663d9ee562f5dd7dce9018243265f32996e1 7528860 
libllvm3.0_3.0-10_amd64.deb
 b63c8f5d09b05670feb801f38ceca9ac34c2c63a9de30131e054559da38711a3 1325244 
llvm-3.0_3.0-10_amd64.deb
 9985ac84314442d7d7540d488d031f39170a464e49b2ac55967f6897a40c78c1 43018 
llvm-3.0-runtime_3.0-10_amd64.deb
 48958f4c09d0ec1cfa7d9627570aa8edf40ffdf1d91e549acf2f8a0b940b4c25 12808692 
llvm-3.0-dev_3.0-10_amd64.deb
 620924c9d9a378a6cabb4071deed8dc429f068cdb61a18647027e2af2ac3cec4 279402 
libllvm-3.0-ocaml-dev_3.0-10_amd64.deb
 eee0b2ebd50b1ded04c6dd1b744b32fee8b30a6bf152ac60092fe50feccda533 997568 
llvm-3.0-doc_3.0-10_all.deb
 a90882ebe4281ee067cc3b23f6fe5e44cf9df3bc6db1c7ef10061543eeedd80e 110114 
llvm-3.0-examples_3.0-10_all.deb
 

Bug#681463: unblock: gyoto/0.0.3-5

2012-07-13 Thread Thibaut Paumard
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock package gyoto.

I attach a debdiff and explain the changes below.

1- Security Hardening Buld Flags Release Goal
   http://bugs.debian.org/680242

Fix: pass build flags explicitly to make. I had to reshuffle some
symbolic targets in debian/rules to make it work reliably. Could be made
cleaner, but I tried to keep changes to a minimum.

2- test suite failed on kfreebsd-any
   http://bugs.debian.org/679923

After checking, it appears that the gyoto executable from the gyoto
binary package fails to run on kfreebsd. However, the same functionality
is exposed to the Yorick interpreter by the yorick-gyoto package and
this binary package runs fine.

Fix:
 - disable building the gyoto binary package on kfreebsd;
 - don't let gyoto-dbg (or anything else) depend on it on kfreebsd;
 - disable the test suite on kfreebsd, which requires the gyoto
   executable to run.

3- test suite failed on some mips buildds
   http://bugs.debian.org/681452

After checking, it appears that this failure does not affect all the
machines. It may just be that the test suite is too expensive to run on
some smaller/slower buildds.

Fix: disable test suite on mips. I then tested manually the autobuilt
binaries, which run fine (although slowwwly) in my qemu installation.

4- yorick is waiting for yorick-gyoto
The yorick-full meta-package (src:yorick), already unblocked, is waiting
for yorick-gyoto to build on kfreebsd-* before it can migrate.
   http://release.debian.org/migration/testing.pl?package=yorick
Fixing the above-mentioned FTBFSes takes us halfway through to letting
yorick migrate. The other half is unblocking yp-svipc, already requested
here:
   http://bugs.debian.org/681314

Kind regards, Thibaut.

unblock gyoto/0.0.3-5
diff -Nru gyoto-0.0.3/debian/changelog gyoto-0.0.3/debian/changelog
--- gyoto-0.0.3/debian/changelog2012-06-25 20:03:10.0 +0200
+++ gyoto-0.0.3/debian/changelog2012-07-13 11:36:16.0 +0200
@@ -1,5 +1,44 @@
+gyoto (0.0.3-5) unstable; urgency=low
+
+  * skip test suite on mips as lucatelli fails on it (but it runs fine on
+other boxes). (Closes: 681452)
+
+ -- Thibaut Paumard paum...@users.sourceforge.net  Fri, 13 Jul 2012 11:36:16 
+0200
+
+gyoto (0.0.3-4) unstable; urgency=low
+
+  * gyoto-dbg must not depend on gyoto on kfreebsd-*, else it is
+uninstallable on these archs.
+
+ -- Thibaut Paumard paum...@users.sourceforge.net  Wed, 11 Jul 2012 14:30:02 
+0200
+
+gyoto (0.0.3-3) unstable; urgency=low
+
+  * debian/control Architectures fields should not be folded: previous
+upload led to missing binary packages for some archs.
+
+ -- Thibaut Paumard paum...@users.sourceforge.net  Wed, 11 Jul 2012 13:02:34 
+0200
+
+gyoto (0.0.3-2) unstable; urgency=low
+
+  * Bug fix: FTBFS on kfreebsd-i386 and kfreebsd-amd64 (test suite),
+(Closes: #679923). The previous fix did not work at all. The library
+and the Yorick interface work fine, but not the stand-alone application.
+Disable the gyoto binary package and the test suite on kfreebsd-*.
+
+ -- Thibaut Paumard paum...@users.sourceforge.net  Wed, 11 Jul 2012 11:20:09 
+0200
+
+gyoto (0.0.3-1+exp1) experimental; urgency=low
+
+  * Bug fix: FTBFS on kfreebsd-i386 and kfreebsd-amd64 (test suite)
+(Closes: #679923).
+  * Tentative bug fix: don't rely on yorick to pass the fortified build
+flags using patch fix_679923_kfreebsd_FTBFS (Closes: #680242).
+
+ -- Thibaut Paumard paum...@users.sourceforge.net  Tue, 10 Jul 2012 10:50:50 
+0200
+
 gyoto (0.0.3-1) unstable; urgency=low
 
   * Initial release (Closes: #640809)
 
- -- Thibaut Paumard paum...@users.sourceforge.net  Mon, 25 Jun 2012 20:03:10 
+0200
+ -- Thibaut Paumard paum...@users.sourceforge.net  Fri, 22 Jun 2012 14:22:40 
+0200
diff -Nru gyoto-0.0.3/debian/control gyoto-0.0.3/debian/control
--- gyoto-0.0.3/debian/control  2012-06-22 14:21:54.0 +0200
+++ gyoto-0.0.3/debian/control  2012-07-11 14:29:51.0 +0200
@@ -12,7 +12,7 @@
 Homepage: http://gyoto.obspm.fr
 
 Package: gyoto
-Architecture: any
+Architecture: linux-any hurd-any
 Depends: ${shlibs:Depends}, ${misc:Depends}
 Description: General relativistic ray-tracing
  Gyoto is a framework for computing geodesics in curved
@@ -41,7 +41,7 @@
 Architecture: any
 Section: debug
 Depends: libgyoto0 (= ${binary:Version}),
-gyoto (= ${binary:Version}),
+gyoto (= ${binary:Version}) [!kfreebsd-any],
 yorick-gyoto (= ${binary:Version}),
 ${misc:Depends}
 Description: debugging symbols for gyoto, libgyoto0 and yorick-gyoto
diff -Nru gyoto-0.0.3/debian/rules gyoto-0.0.3/debian/rules
--- gyoto-0.0.3/debian/rules2012-06-25 19:49:54.0 +0200
+++ gyoto-0.0.3/debian/rules2012-07-13 10:56:48.0 +0200
@@ -5,6 +5,8 @@
 # This has to be exported to make some magic below work.
 export DH_OPTIONS
 
+DEB_HOST_ARCH := $(shell 

Bug#681314: unblock: yp-svipc/0.14-2

2012-07-13 Thread Thibaut Paumard
 3- the yorick-full meta-package (src:yorick), already unblocked, is
 waiting for yorick-svipc to build on kfreebsd-* before it can migrate.
http://release.debian.org/migration/testing.pl?package=yorick
 Fixing the above-mentioned FTBFS takes us halfway through to letting
 yorick migrate (Yorick is also waiting for yorick-gyoto, I'm working
 on it).

For the record, the unblock request for gyoto is at:
   http://bugs.debian.org/681463

Regards, Thibaut.



smime.p7s
Description: Signature cryptographique S/MIME


Bug#681469: unblock: sbjson/2.3.2-2

2012-07-13 Thread Jeroen Dekkers
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock package sbjson

The new version builds with hardening enabled and links correctly with
the libraries it depends on, resulting in correct Depends.


unblock sbjson/2.3.2-2

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

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

diff -Nru sbjson-2.3.2/debian/changelog sbjson-2.3.2/debian/changelog
--- sbjson-2.3.2/debian/changelog   2012-05-09 23:11:11.0 +0200
+++ sbjson-2.3.2/debian/changelog   2012-06-29 19:11:14.0 +0200
@@ -1,3 +1,10 @@
+sbjson (2.3.2-2) unstable; urgency=low
+
+  * Build with hardening enabled.
+  * Correctly link with libobjc and libgnustep-base.
+
+ -- Jeroen Dekkers jer...@dekkers.ch  Fri, 29 Jun 2012 19:09:28 +0200
+
 sbjson (2.3.2-1) unstable; urgency=low
 
   * Initial release. (Closes: #672134)
diff -Nru sbjson-2.3.2/debian/control sbjson-2.3.2/debian/control
--- sbjson-2.3.2/debian/control 2012-05-09 23:11:11.0 +0200
+++ sbjson-2.3.2/debian/control 2012-06-29 18:23:32.0 +0200
@@ -2,7 +2,7 @@
 Section: libs
 Priority: optional
 Maintainer: Jeroen Dekkers jer...@dekkers.ch
-Build-Depends: debhelper (= 9), cdbs, gobjc, gnustep-make, libgnustep-base-dev
+Build-Depends: debhelper (= 9), dpkg-dev (= 1.16.1~), cdbs, gobjc, 
gnustep-make, libgnustep-base-dev
 Standards-Version: 3.9.3
 Homepage: http://stig.github.com/json-framework
 Vcs-Browser: https://github.com/dekkers/sbjson
diff -Nru sbjson-2.3.2/debian/patches/0001-add-makefiles.patch 
sbjson-2.3.2/debian/patches/0001-add-makefiles.patch
--- sbjson-2.3.2/debian/patches/0001-add-makefiles.patch2012-05-09 
23:11:11.0 +0200
+++ sbjson-2.3.2/debian/patches/0001-add-makefiles.patch2012-06-29 
19:11:09.0 +0200
@@ -3,18 +3,18 @@
 Subject: add-makefiles
 
 ---
- Classes/GNUmakefile |   27 +++
+ Classes/GNUmakefile |   29 +
  GNUmakefile |9 +
- 2 files changed, 36 insertions(+), 0 deletions(-)
+ 2 files changed, 38 insertions(+)
  create mode 100644 Classes/GNUmakefile
  create mode 100644 GNUmakefile
 
 diff --git a/Classes/GNUmakefile b/Classes/GNUmakefile
 new file mode 100644
-index 000..2249e72
+index 000..625d963
 --- /dev/null
 +++ b/Classes/GNUmakefile
-@@ -0,0 +1,27 @@
+@@ -0,0 +1,29 @@
 +# GNUstep makefile
 +include $(GNUSTEP_MAKEFILES)/common.make
 +
@@ -39,6 +39,8 @@
 +SBJsonParser.m \
 +SBJsonWriter.m
 +
++SBJson_LIBRARIES_DEPEND_UPON += -lgnustep-base -lobjc
++
 +-include GNUmakefile.preamble
 +include $(GNUSTEP_MAKEFILES)/library.make
 +-include GNUmakefile.postamble
diff -Nru sbjson-2.3.2/debian/rules sbjson-2.3.2/debian/rules
--- sbjson-2.3.2/debian/rules   2012-05-09 23:11:11.0 +0200
+++ sbjson-2.3.2/debian/rules   2012-06-29 17:57:11.0 +0200
@@ -3,6 +3,11 @@
 # Uncomment this to turn on verbose mode.
 export DH_VERBOSE=1
 
+export DEB_BUILD_MAINT_OPTIONS=hardening=+bindnow
+include /usr/share/dpkg/buildflags.mk
+# FIXME: dpkg-buildflags / cdbs should support OBJCFLAGS
+DEB_MAKE_BUILD_TARGET = all messages=yes OBJCFLAGS=$(CFLAGS)
+
 include /usr/share/cdbs/1/rules/gnustep.mk
 include /usr/share/cdbs/1/class/gnumakefile.mk
 



-- 
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/20120713122404.21700.88827.report...@runge.dekkers.ch



Bug#680740:

2012-07-13 Thread Zooko Wilcox-O'Hearn
Folks:

I'm an upstream maintainer of Tahoe-LAFS and wanted to post to this
bug just to emphasize that Tahoe-LAFS 1.9.2 is strictly a bugfix
release over Tahoe-LAFS 1.9.1, and it is unlikely to introduce any
regressions or disruptions if you include 1.9.2 in Wheezy. As the
NEWS.rst file ¹ that Bert Agaz referenced describes, we fixed 14 bugs
in Tahoe-LAFS v1.9.2 and we did not introduce any features or change
any behavior that is likely to cause problems for people upgrading
from Tahoe-LAFS v1.9.1.

Some of the bugs that were fixed in this release were causing
widespread problems for users -- we've had several reports from users
that their repair jobs were failing with Tahoe-LAFS v1.9.1 and that
once they upgraded to 1.9.2 everything began working correctly.

So, please include Tahoe-LAFS v1.9.2 in the stable release of Debian
so that Debian users will not have that problem.

Thank you!

Regards,

Zooko

¹ https://tahoe-lafs.org/trac/tahoe-lafs/browser/NEWS.rst



--
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/candzdc4kmp9tvvikfqjuvy--44vhwzdtllwz3unp9dhqg6r...@mail.gmail.com



Bug#681479: unblock: libconfig-model-perl/2.021-3

2012-07-13 Thread Dominique Dumont
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock package libconfig-model-perl

this package has a bug where data is not saved in the configuration file 
if hash key names are changed. For more details on what trigger the bug, see

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

I've cherry picked commits from upstream (aka me) to fix this issue (note that
the patches are more readble there than in the attached debdiff):

http://anonscm.debian.org/gitweb/?p=pkg-perl/packages/libconfig-model-perl.git;a=blob_plain;f=debian/patches/fix-unsaved-changes;hb=HEAD

This change uses a mechanism which is already provided to make sure that changed
data is saved.

The second patch test the fix:

 
http://anonscm.debian.org/gitweb/?p=pkg-perl/packages/libconfig-model-perl.git;a=blob_plain;f=debian/patches/test-fix-unsaved-changes;hb=HEAD

All the best

unblock libconfig-model-perl/2.021-3

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

Kernel: Linux 3.2.0-1-686-pae (SMP w/2 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8) (ignored: LC_ALL 
set to en_US.utf8)
Shell: /bin/sh linked to /bin/dash
diff -Nru libconfig-model-perl-2.021/debian/changelog libconfig-model-perl-2.021/debian/changelog
--- libconfig-model-perl-2.021/debian/changelog	2012-06-29 14:14:48.0 +0200
+++ libconfig-model-perl-2.021/debian/changelog	2012-07-13 14:46:28.0 +0200
@@ -1,3 +1,15 @@
+libconfig-model-perl (2.021-3) unstable; urgency=low
+
+  * use patch from upstream to fix unsaved changes (Closes: #681353)
+Config::Model saves back data only when they are changed. To keep
+track of the changes, the notify_changes method must be called
+whenever a data is changed, otherwise the modifications will be
+lost. The patch fix-unsaved-change add calls to the notify_change
+method where it was forgotten. The second patch
+(test-fix-unsaved-changes) add the relevant test cases.
+
+ -- Dominique Dumont d...@debian.org  Fri, 13 Jul 2012 14:22:05 +0200
+
 libconfig-model-perl (2.021-2) unstable; urgency=low
 
   * added a patch to fix a race condition between async calls to rmadison
diff -Nru libconfig-model-perl-2.021/debian/patches/fix-unsaved-changes libconfig-model-perl-2.021/debian/patches/fix-unsaved-changes
--- libconfig-model-perl-2.021/debian/patches/fix-unsaved-changes	1970-01-01 01:00:00.0 +0100
+++ libconfig-model-perl-2.021/debian/patches/fix-unsaved-changes	2012-07-13 14:46:28.0 +0200
@@ -0,0 +1,90 @@
+Description: Fix unsaved changes when changing hash keys
+ See description in debian bug. 
+Bug-Debian: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=681353
+Forwarded: yes
+Origin: upstream
+Applied-Upstream: yes
+--- a/lib/Config/Model/ListId.pm
 b/lib/Config/Model/ListId.pm
+@@ -234,6 +234,7 @@
+ if ($ok or $check eq 'no') {
+ $self-_store($to, $moved) ;
+ $moved-index_value($to) ;
++$self-notify_change(note = moved from index $from to $to) ;
+ my $imode = $self-instance-get_data_mode ;
+ $self-set_data_mode( $to, $imode ) ;
+ }
+@@ -304,8 +305,7 @@
+ $self-{data}[$ida] = $objb ;
+ $self-{data}[$idb] = $obja ;
+ 
+-$self-notify_change(index = $ida) ;
+-$self-notify_change(index = $idb) ;
++$self-notify_change(note = swapped index $ida and $idb) ;
+ }
+ 
+ #die check index number after wap;
+--- a/lib/Config/Model/HashId.pm
 b/lib/Config/Model/HashId.pm
+@@ -280,6 +280,8 @@
+ delete $self-{warning_hash}{$from} ;
+ # update index_value attribute in moved objects
+ $self-{data}{$to}-index_value($to) ;
++
++$self-notify_change(note = rename key from $from to $to);
+ 
+ # data_mode is preset or layered or user. Actually only user
+ # mode makes sense here
+@@ -333,6 +335,7 @@
+ 
+ my $list = $self-{list} ;
+ 
++my $msg ;
+ if (defined $ref_key) {
+ for (my $idx = 0; $idx = $#$list; $idx ++ ) {
+ if ($list-[$idx] eq $ref_key) {
+@@ -340,9 +343,16 @@
+ last;
+ }
+ }
++
++$msg = moved key $key_to_move after $ref_key ;
+ } else {
+ unshift @$list , $key_to_move ;
++$msg = moved key $key_to_move at beginning ;
+ }
++
++
++$self-notify_change( note = $msg ) ;
++
+ }
+ 
+ 
+@@ -363,9 +373,13 @@
+ if ($list-[$idx] eq $key) {
+ $list-[$idx]   = $list-[$idx-1];
+ $list-[$idx-1] = $key ;
++$self-notify_change(note = moved up key $key) ;
+ last ;
+ }
+ }
++
++# notify_change is placed in the loop so the notification
++# is not sent if the user tries to move up idx 0
+ }
+ 
+ 
+@@ -386,9 +400,13 @@
+ if ($list-[$idx] eq $key) {
+ $list-[$idx]   

Bug#681485: unblock: rcs-latex/3.1.debian.1

2012-07-13 Thread Julian Gilbey
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock package rcs-latex

It was just reported to me via email that rcs-latex is now included in
the current texlive packages.  So I have uploaded a dummy transitional
package which simply depends upon the appropriate texlive package
instead, to avoid code duplication.  My intention is to request the
removal of this transitional package post-wheezy.

unblock rcs-latex/3.1.debian.1

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

Kernel: Linux 3.2.0-3-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8) (ignored: LC_ALL 
set to en_GB.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/20120713150020.30279.66774.report...@erdos.d-and-j.net



Bug#681486: unblock: cweb-latex/1.1.1.debian.1

2012-07-13 Thread Julian Gilbey
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock package cweb-latex

It was just reported to me via email that cweb-latex is now included in
the current texlive packages.  So I have uploaded a dummy transitional
package which simply depends upon the appropriate texlive package
instead, to avoid code duplication.  My intention is to request the
removal of this transitional package post-wheezy.

unblock cweb-latex/1.1.1.debian.1

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

Kernel: Linux 3.2.0-3-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8) (ignored: LC_ALL 
set to en_GB.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/20120713150110.30431.40120.report...@erdos.d-and-j.net



Bug#681290: unblock: spice-gtk/0.12-4

2012-07-13 Thread Michael Tokarev
On 12.07.2012 20:51, Adam D. Barratt wrote:
 On 12.07.2012 07:47, Liang Guo wrote:
 Please unblock spice-gtk.

 I upload 0.12-3 to unstable at 29th Jun, and
 find a bug[1] which forbit other package to
 compile. Then I uploaded 0.12-4 at 9th July,
 and this cause 0.12-3 cannot automatically
 migrate to testing

 The difference between 0.12-3 and 0.12-4 is slight, just
 copy .version and .tarball-version to build directory.
 for the build script use the version information in
 .tarball-version to determine the version it is building.
 
 Testing currently has 0.12-1, so the changes which are relevant are 
 everything after that, not just those in -4.

The original unblock request included SEVERAL diffstats,
one, the smallest, is between -3 and -4, but there are
also diffstats between other revisions too, starting
with -1 currently in wheezy.

Note that version of spice-gtk which is currently in
testing can not be shipped in wheezy, due to long
story with the celt audio codec.  We should either
let the -4 (celt-less) version go to wheezy, or we
should remove spice and spice-gtk (and all related
packages) and modify dependent packages (qemu-kvm)
to stop using spice.

Version of spice currently in unstable (which is
celt-less) can not enter testing even if it is ready
to go, because it breaks spice-gtk currently in
testing, exactly because this: spice-gtk currently
in testing (-1) requires celt from spice, and spice
in unstable does not contain celt anymore.


For what it is worth, I reviewed the changes made
by Liang, both between 3..4 and between 1..4 revisions.
In particular, I reviewed the only big part of these
changes, which is the patch removing celt usage from
spice-gtk.

The patch itself looks sane.  There are a few places
which might be made shorter, but the logic is right.

I verified the resulting binary (spicy) which uses the
spice-gtk libs, it works as expected.  It even works
with celt-enabled spice server (negotiating raw audio
codec correctly), so there's no big issues to expect
from this (biggest and most important) patch.

The changes in the debian packaging also look sane.

They reveal a few places in context which may want
some more love, in particular, the package (neither
sid's -4 release nor testing's -1) build process
can't be stopped and resumed, `clean' target and
rebuilt from scratch is needed in case of any error.
But this is exactly the same in wheezy too.

The packaging changes in -2 (the largest) is the
introduction of multiarch for the libraries.  Enabling
multiarch migth be tricky, but apparently this is done
correctly here - the resulting packages _looks_ okay.
Maybe I should fire up puiparts to verify various up/-
downgrades to see more.

The same revision (-2) included bumping versions of
several dependent libraries, I dunno why it is needed,
but these versions are in -testing now.

I'm not sure of the rules for the unblocking, but this
thing definitely looks sane to me, and testing of the
_code_ changes shows good results too.

Thank you for your time!

/mjt



-- 
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/500042c7.3010...@msgid.tls.msk.ru



Bug#681479: marked as done (unblock: libconfig-model-perl/2.021-3)

2012-07-13 Thread Debian Bug Tracking System
Your message dated Fri, 13 Jul 2012 17:18:36 +0100
with message-id 6f15fb1b2d8f562441706c6881bdc...@mail.adsl.funky-badger.org
and subject line Re: Bug#681479: unblock: libconfig-model-perl/2.021-3
has caused the Debian Bug report #681479,
regarding unblock: libconfig-model-perl/2.021-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.)


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

this package has a bug where data is not saved in the configuration file 
if hash key names are changed. For more details on what trigger the bug, see

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

I've cherry picked commits from upstream (aka me) to fix this issue (note that
the patches are more readble there than in the attached debdiff):

http://anonscm.debian.org/gitweb/?p=pkg-perl/packages/libconfig-model-perl.git;a=blob_plain;f=debian/patches/fix-unsaved-changes;hb=HEAD

This change uses a mechanism which is already provided to make sure that changed
data is saved.

The second patch test the fix:

 
http://anonscm.debian.org/gitweb/?p=pkg-perl/packages/libconfig-model-perl.git;a=blob_plain;f=debian/patches/test-fix-unsaved-changes;hb=HEAD

All the best

unblock libconfig-model-perl/2.021-3

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

Kernel: Linux 3.2.0-1-686-pae (SMP w/2 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8) (ignored: LC_ALL 
set to en_US.utf8)
Shell: /bin/sh linked to /bin/dash
diff -Nru libconfig-model-perl-2.021/debian/changelog libconfig-model-perl-2.021/debian/changelog
--- libconfig-model-perl-2.021/debian/changelog	2012-06-29 14:14:48.0 +0200
+++ libconfig-model-perl-2.021/debian/changelog	2012-07-13 14:46:28.0 +0200
@@ -1,3 +1,15 @@
+libconfig-model-perl (2.021-3) unstable; urgency=low
+
+  * use patch from upstream to fix unsaved changes (Closes: #681353)
+Config::Model saves back data only when they are changed. To keep
+track of the changes, the notify_changes method must be called
+whenever a data is changed, otherwise the modifications will be
+lost. The patch fix-unsaved-change add calls to the notify_change
+method where it was forgotten. The second patch
+(test-fix-unsaved-changes) add the relevant test cases.
+
+ -- Dominique Dumont d...@debian.org  Fri, 13 Jul 2012 14:22:05 +0200
+
 libconfig-model-perl (2.021-2) unstable; urgency=low
 
   * added a patch to fix a race condition between async calls to rmadison
diff -Nru libconfig-model-perl-2.021/debian/patches/fix-unsaved-changes libconfig-model-perl-2.021/debian/patches/fix-unsaved-changes
--- libconfig-model-perl-2.021/debian/patches/fix-unsaved-changes	1970-01-01 01:00:00.0 +0100
+++ libconfig-model-perl-2.021/debian/patches/fix-unsaved-changes	2012-07-13 14:46:28.0 +0200
@@ -0,0 +1,90 @@
+Description: Fix unsaved changes when changing hash keys
+ See description in debian bug. 
+Bug-Debian: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=681353
+Forwarded: yes
+Origin: upstream
+Applied-Upstream: yes
+--- a/lib/Config/Model/ListId.pm
 b/lib/Config/Model/ListId.pm
+@@ -234,6 +234,7 @@
+ if ($ok or $check eq 'no') {
+ $self-_store($to, $moved) ;
+ $moved-index_value($to) ;
++$self-notify_change(note = moved from index $from to $to) ;
+ my $imode = $self-instance-get_data_mode ;
+ $self-set_data_mode( $to, $imode ) ;
+ }
+@@ -304,8 +305,7 @@
+ $self-{data}[$ida] = $objb ;
+ $self-{data}[$idb] = $obja ;
+ 
+-$self-notify_change(index = $ida) ;
+-$self-notify_change(index = $idb) ;
++$self-notify_change(note = swapped index $ida and $idb) ;
+ }
+ 
+ #die check index number after wap;
+--- a/lib/Config/Model/HashId.pm
 b/lib/Config/Model/HashId.pm
+@@ -280,6 +280,8 @@
+ delete $self-{warning_hash}{$from} ;
+ # update index_value attribute in moved objects
+ $self-{data}{$to}-index_value($to) ;
++
++$self-notify_change(note = rename key from $from to $to);
+ 
+ # data_mode is preset or layered or user. Actually only user
+ # mode makes sense here
+@@ -333,6 +335,7 @@
+ 
+ my $list = $self-{list} ;
+ 
++my $msg ;
+ if (defined $ref_key) {
+ for 

Re: need the latest version for 2012 tax declaration

2012-07-13 Thread Jonathan Nieder
Version: 0.18-1

Toni Mueller wrote:
 On Fri, Jul 13, 2012 at 10:16:38AM -0500, Jonathan Nieder wrote:
 Toni Mueller wrote:

 I only discovered today that closing the bug was premature, and the
 wrong way to go.

 I don't follow.  Does 0.18-1 not fix the bug?

 it does. I have probably made a mistake, though, but I wanted to have
 this package flow into Wheezy, when it appeared to be stuck in
 unstable. That's why I thought that the bug should be open, instead of
 closed.

 Can you please make it go into Wheezy?

Ok, thanks.  As long as the bug is not fixed in the version in wheezy,
it will block the release.  Closing it actually helps because it lets
the release team know that there is a fixed version.

At [1] I see that the updated package is missing binaries on some
architectures:

  out of date on i386: taxbird (from 0.16-0.2)
  out of date on armel: taxbird (from 0.16-0.2)
  out of date on armhf: taxbird (from 0.16-0.2)
  out of date on powerpc: taxbird (from 0.16-0.2)
  out of date on sparc: taxbird (from 0.16-0.2)

At [2] we see the underlying problem --- the package fails to build
from source:

  http://bugs.debian.org/656505

Once an upload fixes that bug and the autobuilders have had time to
build it, the package would presumably migrate to wheezy.  Perhaps you
know someone who could upload the fix from

  http://stuff.der-marv.de/debian/taxbird/0.18-2/

?

Thanks and hope that helps,
Jonathan

[1] http://packages.qa.debian.org/t/taxbird.html
[2] https://buildd.debian.org/status/package.php?p=taxbird


-- 
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/20120713162236.GB28895@burratino



Bug#681496: unblock: gunicorn/0.14.5-1

2012-07-13 Thread Chris Lamb
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock gunicorn/0.14.5. It fixes a grave security bug (#681471)
as well as a number of smaller issues.

It's been in unstable for 10 or 11 days now and I've been using it
production for that time without issue.

Many thanks.


Regards,

-- 
  ,''`.
 : :'  : Chris Lamb
 `. `'`  la...@debian.org
   `-


signature.asc
Description: PGP signature


Bug#681290: unblock: spice-gtk/0.12-4

2012-07-13 Thread Liang Guo
Hi, 
On Thu, Jul 12, 2012 at 05:51:08PM +0100, Adam D. Barratt wrote:
 The difference between 0.12-3 and 0.12-4 is slight, just
 copy .version and .tarball-version to build directory.
 for the build script use the version information in
 .tarball-version to determine the version it is building.
 
 Testing currently has 0.12-1, so the changes which are relevant are
 everything after that, not just those in -4.
 
 Regards,
 
 Adam
Hi, 

This is the debdiff result of 0.12-1 and 0.12-4, I'll add
my comment start with //
liang@guoliangc:~/opt/src/spice$ debdiff spice-gtk_0.12-1.dsc 
spice-gtk_0.12-4.dsc
diff -Nru spice-gtk-0.12/debian/changelog spice-gtk-0.12/debian/changelog
--- spice-gtk-0.12/debian/changelog 2012-05-14 12:53:12.0 +0800
+++ spice-gtk-0.12/debian/changelog 2012-07-09 01:20:26.0 +0800
@@ -1,3 +1,27 @@
+spice-gtk (0.12-4) unstable; urgency=low
+
+  * Correct version problem in *.pc (Closes: #680290)
+
+ -- Liang Guo guoli...@debian.org  Mon, 09 Jul 2012 00:36:14 +0800
+
+spice-gtk (0.12-3) unstable; urgency=low
+
+  * Add patch make-celt-to-be-optional.patch
+  * Disable celt
+
+ -- Liang Guo guoli...@debian.org  Fri, 29 Jun 2012 01:37:37 +0800
+
+spice-gtk (0.12-2) unstable; urgency=low
+
+  * Enable usb redirect (Closes: #677662)
+  * Switch to vala 0.16 (Closes: #675665)
+  * Enable multiarch for libspice-client-glib-2.0-1, 
+libspice-client-gtk-2.0-1, libspice-client-gtk-3.0-1
+  * Build with hardening flags
+  * Use dpkg-statoverride to handle setuid bits
+
+ -- Liang Guo guoli...@debian.org  Fri, 25 May 2012 21:52:45 +0800
+
 spice-gtk (0.12-1) unstable; urgency=low
 
   * New upstream release
//The primary change since 0.12-1 are: 
//1) Enable usb redirect support. Usb redirect is used to
//   redirect usb attached to the spice client to the 
//   spice server(normally a virtual machine). When the 
//   user want to connect his usb device to the virtual 
//   machine, he can just pulg his usb device, then he
//   can see his usb device in the virtual machine. This 
//   option significantly improve the user experience
//2) Disable celt codec support. Celt version 0.5.1 is 
//   the audio codec used by spice, but is not maintained
//   long long ago. To avoid potential security problem,
//   we decide to remove celt 0.5.1 from debian. 
//   libspice-server1 embedded celt before 0.10.1-3~nocelt
//   but libspice-server1 don't ship celt since 
//   0.10.1-3~nocelt, this breaks spice-gtk(= 0.12-2)
//   which cause spice cannot migerate to testing. 

diff -Nru spice-gtk-0.12/debian/compat spice-gtk-0.12/debian/compat
--- spice-gtk-0.12/debian/compat2012-05-03 09:13:48.0 +0800
+++ spice-gtk-0.12/debian/compat2012-06-09 12:39:51.0 +0800
@@ -1 +1 @@
-8
+9
//Introduce by adding multi-arch support
diff -Nru spice-gtk-0.12/debian/control spice-gtk-0.12/debian/control
--- spice-gtk-0.12/debian/control   2012-05-03 09:13:48.0 +0800
+++ spice-gtk-0.12/debian/control   2012-06-23 09:54:33.0 +0800
@@ -1,9 +1,9 @@
 Source: spice-gtk
 Section: misc
 Priority: optional
-Maintainer: Liang Guo bluestonech...@gmail.com
+Maintainer: Liang Guo guoli...@debian.org
 Build-Depends: 
- debhelper (= 8.0.0), 
+ debhelper (= 9), 
//Introduce by adding multi-arch support
  libspice-protocol-dev (= 0.10.1), 
  libspice-server-dev,
  libpixman-1-dev (= 0.17.7),
@@ -14,8 +14,8 @@
  libcairo2-dev (= 1.2.0),
  libpulse-dev,
  libusb-1.0-0-dev,
- valac-0.14,
- libvala-0.14-dev,
+ valac-0.16,
+ libvala-0.16-dev,
//Switch to vala 0.16, this closes bug 675665
  python-all,
  python-gtk2-dev (= 2.0.0),
  python-pyparsing,
@@ -26,6 +26,11 @@
  libgirepository1.0-dev,
  gir1.2-gtk-2.0,
  libtext-csv-perl,
+ libusbredirhost-dev,
+ libacl1-dev,
+ libpolkit-agent-1-dev,
+ libpolkit-gobject-1-dev,
//Introduced by adding usb redirect support, 
//usb redirect use acl and policy kit to control
//the access to usb devices. 
+ dpkg-dev (= 1.16.1~),
 Standards-Version: 3.9.3
 X-Python-Version: = 2.5
 Homepage: http://www.spice-space.org/
@@ -46,6 +51,8 @@
 Package: libspice-client-glib-2.0-1
 Section: libs
 Architecture: i386 amd64
+Multi-Arch: same
+Pre-Depends: ${misc:Pre-Depends}
//Introduce by adding multi-arch support
 Depends: ${shlibs:Depends}, ${misc:Depends}
 Replaces: libspice-client-glib-2.0-4
 Conflicts: libspice-client-glib-2.0-4
@@ -58,6 +65,7 @@
 Package: gir1.2-spice-client-glib-2.0
 Section: introspection
 Architecture: i386 amd64
+Pre-Depends: ${misc:Pre-Depends}
 Depends: ${misc:Depends}, ${gir:Depends}
 Description: GObject for communicating with Spice servers 
(GObject-Introspection)
  libspice-glib4 provides glib objects for spice protocol
@@ -84,6 +92,8 @@
 Package: libspice-client-gtk-2.0-1
 Section: libs
 Architecture: i386 amd64
+Multi-Arch: same
+Pre-Depends: ${misc:Pre-Depends}
//Introduce by adding multi-arch support
 Depends: ${shlibs:Depends}, ${misc:Depends}
 Description: GTK2 widget for SPICE clients (runtime library)
  

Bug#681395: unblock smarty-gettext

2012-07-13 Thread Adam D. Barratt

On 13.07.2012 11:00, Mike Gabriel wrote:

On Do 12 Jul 2012 22:50:23 CEST Adam D. Barratt wrote:

What's this change about?

+  * debian/install, debian/links:
++ Install as /usr/bin/tsmarty2c (without extension) and drop 
the symlink
+  of the same name that used to refer to 
/usr/bin/tsmarty2c.php.


1.0b1-6 had three locations within /debian dir that played around
with  the file tsmarty2c.php (name that upstream gave the file):
debian/install, debian/links and debian/rules. The job done in
debian/links and the command in debian/rules obviously interfered 
with

each other.


Okay, but in that case the changelog is still wrong, as there have been 
absolutely

no changes to debian/install:

--- smarty-gettext-1.0b1/debian/install 2012-05-10 
18:59:25.0 +
+++ smarty-gettext-1.0b1/debian/install 2012-07-08 
13:07:48.0 +

@@ -1,2 +1,2 @@
 block.t.php usr/share/php/smarty3/plugins/
-tsmarty2c.php usr/bin/
+tsmarty2c.php usr/bin/
 No newline at end of file


This file only has lost an EOL (sorry for causing confusion).


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



Re: need the latest version for 2012 tax declaration

2012-07-13 Thread Jonathan Nieder
Toni Mueller wrote:
 On Fri, Jul 13, 2012 at 11:22:37AM -0500, Jonathan Nieder wrote:

 Ok, thanks.  As long as the bug is not fixed in the version in wheezy,
 it will block the release.

 ok. I thought it would simply be chucked out, or

Yep, that's another possible outcome.  I should have said, As long
as the bug is not fixed in the version in wheezy, it will block the
release or the package will be removed from the release.

Thanks for a useful clarification.
Jonathan


-- 
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/20120713165922.GD28895@burratino



Re: need the latest version for 2012 tax declaration

2012-07-13 Thread Toni Mueller


Hi Jonathan,

On Fri, Jul 13, 2012 at 11:22:37AM -0500, Jonathan Nieder wrote:
 Toni Mueller wrote:
  it does. I have probably made a mistake, though, but I wanted to have
  this package flow into Wheezy, when it appeared to be stuck in
  unstable. That's why I thought that the bug should be open, instead of
  closed.
 
  Can you please make it go into Wheezy?
 
 Ok, thanks.  As long as the bug is not fixed in the version in wheezy,
 it will block the release.

ok. I thought it would simply be chucked out, or the old version be
shipped instead.

 Once an upload fixes that bug and the autobuilders have had time to
 build it, the package would presumably migrate to wheezy.  Perhaps you
 know someone who could upload the fix from
 
   http://stuff.der-marv.de/debian/taxbird/0.18-2/

Hmmm...

 Thanks and hope that helps,

Yes.


Kind regards,
--Toni++


-- 
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/20120713164232.gd9...@spruce.wiehl.oeko.net



Re: Bug#634538: Fixing 634538 for Wheezy

2012-07-13 Thread Noël Köthe
Hello Mehdi,

Am Mittwoch, den 11.07.2012, 13:59 +0200 schrieb Mehdi Dogguy:

 We would like to 634538 fixed for Wheezy. Unfortunately, the changes
 brought by tcpreplay/3.4.4-1 are quite large [1] and we are not able to
 unblock the package for Wheezy. Would it be possible to prepare an
 upload targeting testing-proposed-updates and versioned 3.4.3-2+wheezy1?

I just uploaded tcpreplay 3.4.3-2+wheezy1 to testing-proposed-updates.
maybe it fits the requirements better.
I thought about cleanup a bit more (Standards-Version, lintian
warnings,...) but reduced it mostly to fixing the RC bug.

-- 
Noël Köthe noel debian.org
Debian GNU/Linux, www.debian.org


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


Bug#681290: unblock: spice-gtk/0.12-4

2012-07-13 Thread Liang Guo
On Fri, Jul 13, 2012 at 07:46:15PM +0400, Michael Tokarev wrote:
 On 12.07.2012 20:51, Adam D. Barratt wrote:
  Testing currently has 0.12-1, so the changes which are relevant are 
  everything after that, not just those in -4.
 
 The original unblock request included SEVERAL diffstats,
 one, the smallest, is between -3 and -4, but there are
 also diffstats between other revisions too, starting
 with -1 currently in wheezy.
 
 Note that version of spice-gtk which is currently in
 testing can not be shipped in wheezy, due to long
 story with the celt audio codec.  We should either
 let the -4 (celt-less) version go to wheezy, or we
 should remove spice and spice-gtk (and all related
 packages) and modify dependent packages (qemu-kvm)
 to stop using spice.
 
 Version of spice currently in unstable (which is
 celt-less) can not enter testing even if it is ready
 to go, because it breaks spice-gtk currently in
 testing, exactly because this: spice-gtk currently
 in testing (-1) requires celt from spice, and spice
 in unstable does not contain celt anymore.
 
We may remove spice-gtk from testing, this will 
unblock spice and qemu-gtk, but gnome-boxes , 
virt-manager and maybe other package may need
remove spice support. 

Thanks for your kindly review. 

Thanks and Regards,
--
Liang Guo
http://bluestone.cublog.cn


signature.asc
Description: Digital signature


Bug#681395: unblock smarty-gettext

2012-07-13 Thread Mike Gabriel
Hi Adam,

 On Do 12 Jul 2012 22:50:23 CEST Adam D. Barratt wrote:

 Okay, but in that case the changelog is still wrong, as there have been 
 absolutely
 no changes to debian/install:
 
   --- smarty-gettext-1.0b1/debian/install 2012-05-10 
   18:59:25.0 +
   +++ smarty-gettext-1.0b1/debian/install 2012-07-08 
   13:07:48.0 +
   @@ -1,2 +1,2 @@
   block.t.php usr/share/php/smarty3/plugins/
   -tsmarty2c.php usr/bin/
   +tsmarty2c.php usr/bin/
   No newline at end of file
  

Ok, got what you mean.

So, what do you want me to do get the unblock?

Greets,
Mike

-- 

DAS-NETZWERKTEAM
mike gabriel, rothenstein 5, 24214 neudorf-bornstein
fon: +49 (1520) 1976148

GnuPG Key ID 0xB588399B
mail: mike.gabr...@das-netzwerkteam.de, http://das-netzwerkteam.de





-- 
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/1342198902.3150.2.camel@Nokia-N900



Bug#681446: unblock: botan1.10/1.10.3-1

2012-07-13 Thread Adam D. Barratt

On 13.07.2012 09:23, Ondřej Surý wrote:

Please unblock package botan1.10

ABI breakage in upstream 1.10.2, see #681066


Do you know if any of the reverse dependencies were built against the 
broken version and would need rebuilding?


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



Bug#681521: unblock: brewtarget/1.2.4+dfsg-1.1

2012-07-13 Thread Nicholas Bamber
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: freeze-exception

Please unblock package brewtarget

An NMU for #679437 is in preparation. It turns out that the problematic images 
are easily replaced.
I'll attach a debdiff a soon as the NMU is uploaded to the DELAYED queue.

Pending unblock brewtarget/1.2.4+dfsg-1.1

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

Kernel: Linux 2.6.32-5-amd64 (SMP w/2 CPU cores)
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/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/20120713212656.8883.18376.reportbug@taylor.periapt



Bug#681522: unblock: mysql-5.5/5.5.24+dfsg-5

2012-07-13 Thread Nicholas Bamber
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: freeze-exception

This vesion is not ready yet. So far it just consists of a single Spanish 
debconf translation (#679053).
I am holding off uploading in case something else turns up. Christian Perrier 
really wants this in Wheezy. How long should
I play this game of chicken?

Pending unblock mysql-5.5/5.5.24+dfsg-5

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

Kernel: Linux 2.6.32-5-amd64 (SMP w/2 CPU cores)
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/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/20120713211906.8773.14793.reportbug@taylor.periapt



Bug#681377: (Fwd) Re: Bug#681377: unblock: libpdfbox-java/1:1.7.0+dfsg-2

2012-07-13 Thread gregor herrmann
On Thu, 12 Jul 2012 21:34:16 -0700, tony mancill wrote:

  I notice it does not add a class-path change in the Jar file; is this
  class-path entry already present?  According to the reporter, he also
  added a class-path for it to work.
 Mea culpa (again).  I misled Gregor regarding whether the classpath
 warning should be addressed for this upload.  I have prepared an update
 for the package - debdiff attached - but not yet uploaded.

Thanks for your work!
 
 Gregor, I have pushed this commit into the packaging repo, but wanted to
 hold off on the upload until you had a chance to take a look at it [1].

 +override_dh_link:
 + dh_link -O--buildsystem=ant
 + jh_classpath

I think a plain dh_link is enough here; besides that please go
ahead.

Cheers,
gregor

-- 
 .''`.  Homepage: http://info.comodo.priv.at/ - OpenPGP key 0xBB3A68018649AA06
 : :' : Debian GNU/Linux user, admin, and developer  -  http://www.debian.org/
 `. `'  Member of VIBE!AT  SPI, fellow of the Free Software Foundation Europe
   `-   


signature.asc
Description: Digital signature


Bug#681387: unblock: resiprocate

2012-07-13 Thread Daniel Pocock
On 12/07/12 22:11, Adam D. Barratt wrote:
 On 12.07.2012 20:39, Daniel Pocock wrote:
 Short summary of request: please give authorization to
 a) upload resiprocate 1.8.4-1 source package to unstable
 b) for unblocking 1.8.4-1 to wheezy

 Please could you provide a debdiff between the current source package
 in wheezy and the proposed 1.8.4-1 package?


Attached


[The following lists of changes regard files as different if they have
different names, permissions or owners.]

Files in second .changes but not in first
-
-rw-r--r--  root/root   /usr/share/doc/libresiprocate-1.8-dev/changelog.gz
-rw-r--r--  root/root   /usr/share/doc/libresiprocate-1.8/changelog.gz
-rw-r--r--  root/root   
/usr/share/doc/libresiprocate-turn-client-1.8-dev/changelog.gz
-rw-r--r--  root/root   
/usr/share/doc/libresiprocate-turn-client-1.8/changelog.gz
-rw-r--r--  root/root   /usr/share/doc/repro/changelog.gz
-rw-r--r--  root/root   /usr/share/doc/resiprocate-turn-server/changelog.gz
-rw-r--r--  root/root   /usr/share/doc/sipdialer/changelog.gz

Control files of package libresiprocate-1.8: lines which differ (wdiff format)
--
Installed-Size: [-4468-] {+4493+}
Version: [-1.8.2-1-] {+1.8.4-1+}

Control files of package libresiprocate-1.8-dev: lines which differ (wdiff 
format)
--
Depends: libresiprocate-1.8 (= [-1.8.2-1)-] {+1.8.4-1)+}
Installed-Size: [-2056-] {+2070+}
Version: [-1.8.2-1-] {+1.8.4-1+}

Control files of package libresiprocate-turn-client-1.8: lines which differ 
(wdiff format)
--
Installed-Size: [-1179-] {+1192+}
Version: [-1.8.2-1-] {+1.8.4-1+}

Control files of package libresiprocate-turn-client-1.8-dev: lines which differ 
(wdiff format)
--
Depends: libresiprocate-turn-client-1.8 (= [-1.8.2-1)-] {+1.8.4-1)+}
Installed-Size: [-93-] {+106+}
Version: [-1.8.2-1-] {+1.8.4-1+}

Control files of package repro: lines which differ (wdiff format)
-
Installed-Size: [-1073-] {+1094+}
Version: [-1.8.2-1-] {+1.8.4-1+}

Control files of package resiprocate-turn-server: lines which differ (wdiff 
format)
---
Installed-Size: [-936-] {+949+}
Version: [-1.8.2-1-] {+1.8.4-1+}

Control files of package sipdialer: lines which differ (wdiff format)
-
Installed-Size: [-67-] {+79+}
Version: [-1.8.2-1-] {+1.8.4-1+}


Bug#681377: (Fwd) Re: Bug#681377: unblock: libpdfbox-java/1:1.7.0+dfsg-2

2012-07-13 Thread tony mancill
On 07/13/2012 03:13 PM, gregor herrmann wrote:
 On Thu, 12 Jul 2012 21:34:16 -0700, tony mancill wrote:
 
 I notice it does not add a class-path change in the Jar file; is this
 class-path entry already present?  According to the reporter, he also
 added a class-path for it to work.
 Mea culpa (again).  I misled Gregor regarding whether the classpath
 warning should be addressed for this upload.  I have prepared an update
 for the package - debdiff attached - but not yet uploaded.
 
 Thanks for your work!
  
 Gregor, I have pushed this commit into the packaging repo, but wanted to
 hold off on the upload until you had a chance to take a look at it [1].
 
 +override_dh_link:
 +dh_link -O--buildsystem=ant
 +jh_classpath
 
 I think a plain dh_link is enough here; besides that please go
 ahead.

Hi Gregor,

The reason I opted for dh_link -O--buildsystem=ant is that this is the
invocation that dh is using (based on setting DH_VERBOSE and observing
the build).  I take it this is due d/rules containing:

%:
dh $@ --buildsystem ant

Although I don't suppose there's much chance of dh_link inheriting any
ant-specific behavior in the near future.

I'll make the change and upload tonight.

Cheers,
tony



signature.asc
Description: OpenPGP digital signature


Bug#681387: unblock: resiprocate

2012-07-13 Thread Adam D. Barratt

On 14.07.2012 00:14, Daniel Pocock wrote:

On 12/07/12 22:11, Adam D. Barratt wrote:

On 12.07.2012 20:39, Daniel Pocock wrote:

Short summary of request: please give authorization to
a) upload resiprocate 1.8.4-1 source package to unstable
b) for unblocking 1.8.4-1 to wheezy


Please could you provide a debdiff between the current source 
package

in wheezy and the proposed 1.8.4-1 package?



Attached


Thanks.  I was really after a source debdiff though - i.e. between the 
old and new .dscs


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



Bug#681534: unblock: ptouch-driver/1.3-4

2012-07-13 Thread Didier Raboud
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Please unblock package ptouch-driver in its 1.3-4 version.

unblock ptouch-driver/1.3-4

The upload (debdiff attached) solves the #681495 RC bug by avoidig the
use of multiarch directories for cups drivers.

Thanks in advance, cheers,

OdyX

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

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

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

iQGcBAEBCAAGBQJQAMftAAoJEIvPpx7KFjRVVXQL/iv8Gxlm7/jLknKaltHBtwAz
kqiLnD1CURp254LaFSntgWCCCv5DzVv76llOe2xUIhH2szHUY0X9bkBRUZEggrRM
TY9SA/LCJg6qSuglCAGvTaF22witWnMXLsBM5fHC8ILLWjCnlrgSxKKqrvf8p4vn
TLbsaw37H875QdoYUEL7G1mB6FwjChdsc7d1aUQaKMijvGIdg78Hp2xKQUOJ0uyM
iKy+ttl4v3fAldfoVNWkVuktBhVHo5dYktRfecXphFOMtADjQi8dGWSG2sPtvuXV
3VT3aa78lfF01kzkBt18f/cpv98w4pxxDsUweWiK+zbZJqLsHomuSJYhdNsbmh/S
o+VvCjlTazEmxFAn/C15s+9sZMlbfg2Sc8X36mT0KIkmoD62+D9PF2r4GWOw6oNq
2FuO3eNntPaqDuhijO2ut2ITqy1/WJFiCv2m4ZeP6qj2ilIznvzOg68+8Ka96flG
i/YT/Go/iZuc4Fonh4ylc+5NKpVjEWqs6xcbsvwsiQ==
=cdLy
-END PGP SIGNATURE-
diff -Nru ptouch-driver-1.3/debian/changelog ptouch-driver-1.3/debian/changelog
--- ptouch-driver-1.3/debian/changelog	2011-10-24 21:35:45.0 +0200
+++ ptouch-driver-1.3/debian/changelog	2012-07-14 02:36:45.0 +0200
@@ -1,3 +1,11 @@
+ptouch-driver (1.3-4) unstable; urgency=low
+
+  [ Till Kamppeter ]
+  * Don't install the cups filter in multiarch directories.
+(Closes: #681495, LP: #990638)
+
+ -- Didier Raboud o...@debian.org  Sat, 14 Jul 2012 02:33:13 +0200
+
 ptouch-driver (1.3-3) unstable; urgency=low
 
   * Update the PPD-updater regexp to cope with latest changes in dh_pyppd;
diff -Nru ptouch-driver-1.3/debian/rules ptouch-driver-1.3/debian/rules
--- ptouch-driver-1.3/debian/rules	2011-10-24 21:34:01.0 +0200
+++ ptouch-driver-1.3/debian/rules	2012-07-14 02:29:44.0 +0200
@@ -16,6 +16,9 @@
 	dh_auto_clean
 	rm -rf foomatic-db
 
+override_dh_auto_configure:
+	dh_auto_configure -- --libdir=/usr/lib
+
 override_dh_auto_install:
 ifneq (,$(filter printer-driver-ptouch, $(shell dh_listpackages)))
 	dh_auto_install --destdir=debian/printer-driver-ptouch/


Bug#681522: unblock: mysql-5.5/5.5.24+dfsg-5

2012-07-13 Thread Cyril Brulebois
Nicholas Bamber nicho...@periapt.co.uk (13/07/2012):
 This vesion is not ready yet. So far it just consists of a single
 Spanish debconf translation (#679053).  I am holding off uploading in
 case something else turns up. Christian Perrier really wants this in
 Wheezy. How long should I play this game of chicken?

(This ain't the chicken you're looking for.)

Christian is a specialist as far as l10n coordination goes. Learn from
him how to set up a call for translation updates, announce a deadline,
and upload when it's reached?

Also, there's nothing to unblock, since you haven't uploaded. We can't
even pre-approve your package, since there's no debdiff attached…

Mraw,
KiBi.


signature.asc
Description: Digital signature


Bug#681496: unblock: gunicorn/0.14.5-1

2012-07-13 Thread Cyril Brulebois
Hello,

Chris Lamb la...@debian.org (13/07/2012):
 Please unblock gunicorn/0.14.5. It fixes a grave security bug (#681471)
 as well as a number of smaller issues.
 
 It's been in unstable for 10 or 11 days now and I've been using it
 production for that time without issue.

given the diff against testing (45 files changed, 567 insertions(+), 289
deletions(-)) and the amount of doc  tests updates, it would have been
helpful if you had extracted the actual code changes and attached that
to your report.

Mraw,
KiBi.


signature.asc
Description: Digital signature


Re: would it be possible to reinstantiate openmeeg and ants in wheezy?

2012-07-13 Thread Yaroslav Halchenko
any feedback would be welcome

Cheers,

On Thu, 05 Jul 2012, Yaroslav Halchenko wrote:

 Hi Release Team,

 2 packages of mine, primarily due to demanding resources for build (c++
 with heavy use of templating) and testing (I do prefer to do build-time
 testing and they use realistic data) always were somewhat
 problematic to be built across architectures; thus they were removed
 from wheezy (while in testing) whenever new FTBFS were detected.  Both
 are highly specialized to the field of neuroimaging.  Both are old
 versions (see below) but relatively popular as for a specialized
 software.

 ants 
 
 Slightly updated snapshot version than then one in squeeze

 Fresh upstream version requires fresh ITK (in experimental)

 popcon ~100

 FTBFS atm on  mips, mipsel, s390   imho due to insufficient resources
and might be tricky to make them build reliably


 openmeeg 
 
 The same upstream version as in squeeze -- minor additional patching (gcc 
 4.7) + enabled build time unittests

 Fresh upstream requires fresh libmat (in experimental)

 popcon ~200

 FTBFS atm on mips only, and could be resolved simply through
 disabling build time unittesting 


 I wondered, than even if I manage to overcome FTBFS on those  -- would
 they be allowed to come back to wheezy?

 Thanks in advance
-- 
Yaroslav O. Halchenko
Postdoctoral Fellow,   Department of Psychological and Brain Sciences
Dartmouth College, 419 Moore Hall, Hinman Box 6207, Hanover, NH 03755
Phone: +1 (603) 646-9834   Fax: +1 (603) 646-1419
WWW:   http://www.linkedin.com/in/yarik


-- 
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/20120714013839.gb5...@onerussian.com



Bug#681536: unblock: pandas/0.8.0-2

2012-07-13 Thread Yaroslav Halchenko
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: freeze-exception

Please unblock package pandas

Very simple fix -- just tagged a test requiring network access (those are
excluded from being run in debian/rules).  This closes #681449

unblock pandas/0.8.0-2

Complete diff:

diff -Nru pandas-0.8.0/debian/changelog pandas-0.8.0/debian/changelog
--- pandas-0.8.0/debian/changelog   2012-06-29 13:37:46.0 -0400
+++ pandas-0.8.0/debian/changelog   2012-07-13 08:57:31.0 -0400
@@ -1,3 +1,11 @@
+pandas (0.8.0-2) unstable; urgency=medium
+
+  * up_tag_yahoo_test_requiring_network patch cherry-picked from upstream
+GIT so that tests would not be excercised at package build time
+(Closes: #681449)
+
+ -- Yaroslav Halchenko deb...@onerussian.com  Fri, 13 Jul 2012 08:54:41 -0400
+
 pandas (0.8.0-1) unstable; urgency=low

   * Fresh upstream release
diff -Nru pandas-0.8.0/debian/patches/series pandas-0.8.0/debian/patches/series
--- pandas-0.8.0/debian/patches/series  1969-12-31 19:00:00.0 -0500
+++ pandas-0.8.0/debian/patches/series  2012-07-13 08:57:31.0 -0400
@@ -0,0 +1 @@
+up_tag_yahoo_test_requiring_network
diff -Nru pandas-0.8.0/debian/patches/up_tag_yahoo_test_requiring_network 
pandas-0.8.0/debian/patches/up_tag_yahoo_test_requiring_network
--- pandas-0.8.0/debian/patches/up_tag_yahoo_test_requiring_network 
1969-12-31 19:00:00.0 -0500
+++ pandas-0.8.0/debian/patches/up_tag_yahoo_test_requiring_network 
2012-07-13 08:57:31.0 -0400
@@ -0,0 +1,30 @@
+From: Wes McKinney wesmck...@gmail.com
+Date: Thu, 12 Jul 2012 17:36:23 -0400
+Subject: [PATCH] BUG: fix duplicate index indexing problems close #1201
+
+Partially taken from
+4406d37b71cc3303b40847010299534c03723651
+
+diff --git a/pandas/io/tests/test_yahoo.py b/pandas/io/tests/test_yahoo.py
+index 9f123e0..1f10a86 100644
+--- a/pandas/io/tests/test_yahoo.py
 b/pandas/io/tests/test_yahoo.py
+@@ -7,13 +7,15 @@ import re
+ import unittest
+ import pandas.io.data as pd
+ import nose
++from pandas.util.testing import network
+
+ class TestYahoo(unittest.TestCase):
+
++@network
+ def test_yahoo(self):
+-asserts that yahoo is minimally working and that it throws
+-an excecption when DataReader can't get a 200 response from
+-yahoo 
++# asserts that yahoo is minimally working and that it throws
++# an excecption when DataReader can't get a 200 response from
++# yahoo
+ start = datetime(2010,1,1)
+ end = datetime(2012,1,24)
+ self.assertEquals(


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



Bug#681536: marked as done (unblock: pandas/0.8.0-2)

2012-07-13 Thread Debian Bug Tracking System
Your message dated Sat, 14 Jul 2012 02:56:14 +0100
with message-id 9ad79cad185984e41c400b1bc7af5...@mail.adsl.funky-badger.org
and subject line Re: Bug#681536: unblock: pandas/0.8.0-2
has caused the Debian Bug report #681536,
regarding unblock: pandas/0.8.0-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.)


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

Very simple fix -- just tagged a test requiring network access (those are
excluded from being run in debian/rules).  This closes #681449

unblock pandas/0.8.0-2

Complete diff:

diff -Nru pandas-0.8.0/debian/changelog pandas-0.8.0/debian/changelog
--- pandas-0.8.0/debian/changelog   2012-06-29 13:37:46.0 -0400
+++ pandas-0.8.0/debian/changelog   2012-07-13 08:57:31.0 -0400
@@ -1,3 +1,11 @@
+pandas (0.8.0-2) unstable; urgency=medium
+
+  * up_tag_yahoo_test_requiring_network patch cherry-picked from upstream
+GIT so that tests would not be excercised at package build time
+(Closes: #681449)
+
+ -- Yaroslav Halchenko deb...@onerussian.com  Fri, 13 Jul 2012 08:54:41 -0400
+
 pandas (0.8.0-1) unstable; urgency=low

   * Fresh upstream release
diff -Nru pandas-0.8.0/debian/patches/series pandas-0.8.0/debian/patches/series
--- pandas-0.8.0/debian/patches/series  1969-12-31 19:00:00.0 -0500
+++ pandas-0.8.0/debian/patches/series  2012-07-13 08:57:31.0 -0400
@@ -0,0 +1 @@
+up_tag_yahoo_test_requiring_network
diff -Nru pandas-0.8.0/debian/patches/up_tag_yahoo_test_requiring_network 
pandas-0.8.0/debian/patches/up_tag_yahoo_test_requiring_network
--- pandas-0.8.0/debian/patches/up_tag_yahoo_test_requiring_network 
1969-12-31 19:00:00.0 -0500
+++ pandas-0.8.0/debian/patches/up_tag_yahoo_test_requiring_network 
2012-07-13 08:57:31.0 -0400
@@ -0,0 +1,30 @@
+From: Wes McKinney wesmck...@gmail.com
+Date: Thu, 12 Jul 2012 17:36:23 -0400
+Subject: [PATCH] BUG: fix duplicate index indexing problems close #1201
+
+Partially taken from
+4406d37b71cc3303b40847010299534c03723651
+
+diff --git a/pandas/io/tests/test_yahoo.py b/pandas/io/tests/test_yahoo.py
+index 9f123e0..1f10a86 100644
+--- a/pandas/io/tests/test_yahoo.py
 b/pandas/io/tests/test_yahoo.py
+@@ -7,13 +7,15 @@ import re
+ import unittest
+ import pandas.io.data as pd
+ import nose
++from pandas.util.testing import network
+
+ class TestYahoo(unittest.TestCase):
+
++@network
+ def test_yahoo(self):
+-asserts that yahoo is minimally working and that it throws
+-an excecption when DataReader can't get a 200 response from
+-yahoo 
++# asserts that yahoo is minimally working and that it throws
++# an excecption when DataReader can't get a 200 response from
++# yahoo
+ start = datetime(2010,1,1)
+ end = datetime(2012,1,24)
+ self.assertEquals(


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


---End Message---
---BeginMessage---

On 14.07.2012 02:35, Yaroslav Halchenko wrote:

Please unblock package pandas

Very simple fix -- just tagged a test requiring network access (those 
are

excluded from being run in debian/rules).  This closes #681449


Unblocked; thanks.

Regards,

Adam

---End Message---


Bug#681534: marked as done (unblock: ptouch-driver/1.3-4)

2012-07-13 Thread Debian Bug Tracking System
Your message dated Sat, 14 Jul 2012 02:59:13 +0100
with message-id 77f3d5d8aa0f24acbdf73284d1f60...@mail.adsl.funky-badger.org
and subject line Re: Bug#681534: unblock: ptouch-driver/1.3-4
has caused the Debian Bug report #681534,
regarding unblock: ptouch-driver/1.3-4
to be marked as done.

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

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


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

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Please unblock package ptouch-driver in its 1.3-4 version.

unblock ptouch-driver/1.3-4

The upload (debdiff attached) solves the #681495 RC bug by avoidig the
use of multiarch directories for cups drivers.

Thanks in advance, cheers,

OdyX

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

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

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

iQGcBAEBCAAGBQJQAMftAAoJEIvPpx7KFjRVVXQL/iv8Gxlm7/jLknKaltHBtwAz
kqiLnD1CURp254LaFSntgWCCCv5DzVv76llOe2xUIhH2szHUY0X9bkBRUZEggrRM
TY9SA/LCJg6qSuglCAGvTaF22witWnMXLsBM5fHC8ILLWjCnlrgSxKKqrvf8p4vn
TLbsaw37H875QdoYUEL7G1mB6FwjChdsc7d1aUQaKMijvGIdg78Hp2xKQUOJ0uyM
iKy+ttl4v3fAldfoVNWkVuktBhVHo5dYktRfecXphFOMtADjQi8dGWSG2sPtvuXV
3VT3aa78lfF01kzkBt18f/cpv98w4pxxDsUweWiK+zbZJqLsHomuSJYhdNsbmh/S
o+VvCjlTazEmxFAn/C15s+9sZMlbfg2Sc8X36mT0KIkmoD62+D9PF2r4GWOw6oNq
2FuO3eNntPaqDuhijO2ut2ITqy1/WJFiCv2m4ZeP6qj2ilIznvzOg68+8Ka96flG
i/YT/Go/iZuc4Fonh4ylc+5NKpVjEWqs6xcbsvwsiQ==
=cdLy
-END PGP SIGNATURE-
diff -Nru ptouch-driver-1.3/debian/changelog ptouch-driver-1.3/debian/changelog
--- ptouch-driver-1.3/debian/changelog	2011-10-24 21:35:45.0 +0200
+++ ptouch-driver-1.3/debian/changelog	2012-07-14 02:36:45.0 +0200
@@ -1,3 +1,11 @@
+ptouch-driver (1.3-4) unstable; urgency=low
+
+  [ Till Kamppeter ]
+  * Don't install the cups filter in multiarch directories.
+(Closes: #681495, LP: #990638)
+
+ -- Didier Raboud o...@debian.org  Sat, 14 Jul 2012 02:33:13 +0200
+
 ptouch-driver (1.3-3) unstable; urgency=low
 
   * Update the PPD-updater regexp to cope with latest changes in dh_pyppd;
diff -Nru ptouch-driver-1.3/debian/rules ptouch-driver-1.3/debian/rules
--- ptouch-driver-1.3/debian/rules	2011-10-24 21:34:01.0 +0200
+++ ptouch-driver-1.3/debian/rules	2012-07-14 02:29:44.0 +0200
@@ -16,6 +16,9 @@
 	dh_auto_clean
 	rm -rf foomatic-db
 
+override_dh_auto_configure:
+	dh_auto_configure -- --libdir=/usr/lib
+
 override_dh_auto_install:
 ifneq (,$(filter printer-driver-ptouch, $(shell dh_listpackages)))
 	dh_auto_install --destdir=debian/printer-driver-ptouch/
---End Message---
---BeginMessage---

On 14.07.2012 02:14, Didier Raboud wrote:

Please unblock package ptouch-driver in its 1.3-4 version.

unblock ptouch-driver/1.3-4

The upload (debdiff attached) solves the #681495 RC bug by avoidig 
the

use of multiarch directories for cups drivers.


Unblocked; thanks.

Regards,

Adam

---End Message---


Re: Freeze-exception for beast-mcmc possible?

2012-07-13 Thread Ansgar Burchardt
Julien Cristau jcris...@debian.org writes:
 On Fri, Jul 13, 2012 at 10:35:52 +0200, Andreas Tille wrote:
 Ups, that's new to me.  I was told that autobuilders do not fetch
 Build-Depends from non-free.  This is good news on one hand - I will
 try to investigate how the other archs might proceed.
 
 They shouldn't.  I think they might in some cases if the non-free
 packages are available in incoming, as that's not split between main and
 non-free, which is arguably a bug.

This will change in the future as incoming will become a suite and thus
have main/contrib/non-free.

Ansgar


-- 
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/87wr27jcvp@marvin.43-1.org



Bug#681447: marked as done (unblock: softhsm/1.3.3-2)

2012-07-13 Thread Debian Bug Tracking System
Your message dated Sat, 14 Jul 2012 03:09:18 +0100
with message-id 8fa9b6624a028d65cbcc2149c16a9...@mail.adsl.funky-badger.org
and subject line Re: Bug#681447: unblock: softhsm/1.3.3-2
has caused the Debian Bug report #681447,
regarding unblock: softhsm/1.3.3-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.)


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

/etc/softhsm/softhsm.conf was accidentally distributed in softhsm (and
handled using ucf in softhsm-common), see #681311.

unblock softhsm/1.3.3-2

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

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


---End Message---
---BeginMessage---

On 13.07.2012 09:25, Ondřej Surý wrote:

Please unblock package softhsm

/etc/softhsm/softhsm.conf was accidentally distributed in softhsm 
(and

handled using ucf in softhsm-common), see #681311.


Unblocked; thanks.

Regards,

Adam

---End Message---


Bug#681547: unblock: ssed/3.62-7

2012-07-13 Thread Jose Antonio Quevedo Muñoz
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: freeze-exception

Please unblock package ssed,

it only contains changes for the security hardening release goal.

unblock ssed/3.62-7

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.12 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/

iQIcBAEBCAAGBQJQAO/iAAoJEMPXPF2CJFgijUgQAMW2sJ3BKZs0x9tw+4OCoz2Q
Ec/9ThfV2Te2JMBAjJva6V21ma84YELqLWBxe0DEssuOXyHWHTlRmR2oUS7+E7V1
TBj9YGZd9WzLthtbsw2+NMAsEUT3fG4w6UKs6N2ckAlsIY/KEodz4mlKbGBBblsr
IgfQcZhQ7vgDmvzCUAfXqQO7l+MPEoNzmATYdsHcQKOOFCRA/HrGyUC+cbz+u9jA
TXemNRq8CUMA9kJ7VgW34hXSsnG5Shy/Is7NT4FVioAc886uW6F8JGdMSJWirfEm
WSz2EbjU9glJdN3M6Hog+pUJxJQMAtp9VatySCMK0LXG9tqWbZo+ak1FvKg+qWGq
7VBpWzYkmunz1VRUZIlIRk4Ywcnaatd7o8LIQ9eBk/QAy100oxFvsysZLSM9jRJ7
8OhH+8CL93PXIfAQQI6m7b8IFAPofu6CDNq3uXI88agJ0RoMlSTvyQvvIzCdiQLx
A8Xp6TGDcEAvRFMH72ihzfQ1CtDhkpi/V8ly9q7+jYfIbDf+RLaPK7M9VjDib40l
5DXieCRoLIZbyqPm0rByLaKbx7CoGySS8VX6HrY/1ssjq24yHTQRyAiRieD+Y0kK
8dlwS27u7aJcHnzWrNE+KhbhGNhcchaqBORqEt1qcVQfjUKSWb9A5D7twvdr65uR
AKuxQd4oN0YLbrJNBE0D
=Ahh0
-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/5000efe3.5030...@gmail.com



Re: Freeze-exception for beast-mcmc possible?

2012-07-13 Thread Philipp Kern
On Fri, Jul 13, 2012 at 08:27:22PM -0600, Ansgar Burchardt wrote:
 Julien Cristau jcris...@debian.org writes:
  On Fri, Jul 13, 2012 at 10:35:52 +0200, Andreas Tille wrote:
  Ups, that's new to me.  I was told that autobuilders do not fetch
  Build-Depends from non-free.  This is good news on one hand - I will
  try to investigate how the other archs might proceed.
  They shouldn't.  I think they might in some cases if the non-free
  packages are available in incoming, as that's not split between main and
  non-free, which is arguably a bug.
 This will change in the future as incoming will become a suite and thus
 have main/contrib/non-free.

We filter out non-free and I'm pretty sure we're getting non-free/*'ish
sections from the overrides even for incoming.

Kind regards
Philipp Kern 


signature.asc
Description: Digital signature


Bug#681547: marked as done (unblock: ssed/3.62-7)

2012-07-13 Thread Debian Bug Tracking System
Your message dated Fri, 13 Jul 2012 22:31:58 -0600
with message-id 20120714043158.ga9...@spike.0x539.de
and subject line Re: Bug#681547: unblock: ssed/3.62-7
has caused the Debian Bug report #681547,
regarding unblock: ssed/3.62-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.)


-- 
681547: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=681547
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: freeze-exception

Please unblock package ssed,

it only contains changes for the security hardening release goal.

unblock ssed/3.62-7

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.12 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/

iQIcBAEBCAAGBQJQAO/iAAoJEMPXPF2CJFgijUgQAMW2sJ3BKZs0x9tw+4OCoz2Q
Ec/9ThfV2Te2JMBAjJva6V21ma84YELqLWBxe0DEssuOXyHWHTlRmR2oUS7+E7V1
TBj9YGZd9WzLthtbsw2+NMAsEUT3fG4w6UKs6N2ckAlsIY/KEodz4mlKbGBBblsr
IgfQcZhQ7vgDmvzCUAfXqQO7l+MPEoNzmATYdsHcQKOOFCRA/HrGyUC+cbz+u9jA
TXemNRq8CUMA9kJ7VgW34hXSsnG5Shy/Is7NT4FVioAc886uW6F8JGdMSJWirfEm
WSz2EbjU9glJdN3M6Hog+pUJxJQMAtp9VatySCMK0LXG9tqWbZo+ak1FvKg+qWGq
7VBpWzYkmunz1VRUZIlIRk4Ywcnaatd7o8LIQ9eBk/QAy100oxFvsysZLSM9jRJ7
8OhH+8CL93PXIfAQQI6m7b8IFAPofu6CDNq3uXI88agJ0RoMlSTvyQvvIzCdiQLx
A8Xp6TGDcEAvRFMH72ihzfQ1CtDhkpi/V8ly9q7+jYfIbDf+RLaPK7M9VjDib40l
5DXieCRoLIZbyqPm0rByLaKbx7CoGySS8VX6HrY/1ssjq24yHTQRyAiRieD+Y0kK
8dlwS27u7aJcHnzWrNE+KhbhGNhcchaqBORqEt1qcVQfjUKSWb9A5D7twvdr65uR
AKuxQd4oN0YLbrJNBE0D
=Ahh0
-END PGP SIGNATURE-


---End Message---
---BeginMessage---
On Sat, Jul 14, 2012 at 06:04:51AM +0200, Jose Antonio Quevedo Muñoz wrote:
 Please unblock package ssed,
 it only contains changes for the security hardening release goal.
 unblock ssed/3.62-7

Done, thanks.

Kind regards
Philipp kern 


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


Bug#681552: unblock: python-csa/0.1.0-1.1

2012-07-13 Thread Scott Kitterman
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock package python-csa

Fixes two RC bugs, 595848 and 665039.

unblock python-csa/0.1.0-1.1
diff -Nru python-csa-0.1.0/debian/changelog python-csa-0.1.0/debian/changelog
--- python-csa-0.1.0/debian/changelog	2012-03-30 12:52:19.0 -0400
+++ python-csa-0.1.0/debian/changelog	2012-07-14 01:30:58.0 -0400
@@ -1,3 +1,17 @@
+python-csa (0.1.0-1.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Redo last NMU that maintainer overwrote:
+- Add python-tk to build-depends to fix FTBFS (Closes: #595848) and to
+  depends to it will run
+- Remove failing override of dh_auto_test (because test_csa.py is no
+  longer shipped)
+  * Set MPLCONFIGDIR to debiam/temp in debian/rules so that the directory
+location is writeable when built on a buildd and then remove on clean
+(Closes: #665039)
+
+ -- Scott Kitterman sc...@kitterman.com  Sat, 14 Jul 2012 01:28:54 -0400
+
 python-csa (0.1.0-1) unstable; urgency=low
 
   * New upstream version (Closes: #597299)
diff -Nru python-csa-0.1.0/debian/control python-csa-0.1.0/debian/control
--- python-csa-0.1.0/debian/control	2012-03-30 12:59:48.0 -0400
+++ python-csa-0.1.0/debian/control	2012-07-13 01:14:28.0 -0400
@@ -9,12 +9,13 @@
  , python-nose
  , python-numpy
  , python-matplotlib
+ , python-tk
 Standards-Version: 3.9.3
 Homepage: http://software.incf.org/software/csa
 
 Package: python-csa
 Architecture: all
-Depends: ${python:Depends}, ${misc:Depends}, python-numpy, python-matplotlib
+Depends: ${python:Depends}, ${misc:Depends}, python-numpy, python-matplotlib, python-tk
 Description: Connection-Set Algebra (CSA) implemented in Python
  The CSA library provides elementary connection-sets and operators for
  combining them. It also provides an iteration interface to such
diff -Nru python-csa-0.1.0/debian/rules python-csa-0.1.0/debian/rules
--- python-csa-0.1.0/debian/rules	2012-03-30 12:52:19.0 -0400
+++ python-csa-0.1.0/debian/rules	2012-07-14 01:28:51.0 -0400
@@ -1,12 +1,10 @@
 #!/usr/bin/make -f
 
-override_dh_auto_test:
-ifeq ($(filter nocheck,$(DEB_BUILD_OPTIONS)),)
-	set -e; \
-	for python in $(shell pyversions -r); do \
-		$$python /usr/bin/nosetests ../../tests/test_csa.py; \
-	done
-endif
+export MPLCONFIGDIR=$(CURDIR)/debian/temp
 
 %:
 	dh $@ 
+
+override_dh_auto_clean:
+	dh_auto_clean
+	rm -rf $(CURDIR)/debian/temp