Bug#768176: unblock: pioneers/15.3-1

2014-12-13 Thread Niels Thykier
On 2014-12-12 08:11, Roland Clobus wrote:
 Hello Niels,
 
 On 11/12/14 20:48, Niels Thykier wrote: Any news on the targeted fix
 for t-p-u?

 As mentioned you can include the translations *if* the you can provide
 us with a debdiff in December (or very early January).
 
 I'm currently working on the translation patches.
 
 I've encountered an issue that the patch files that are generated by
 'quilt refresh' in the default/recommended configuration generate
 invalid encoded patch files when it is applied to po-files.
 I now know that it is caused by the --show-c-function argument to diff,
 which will truncate the line in the patch file where the line numbers
 are mentioned after a specific number of bytes, which can happen in the
 middle of a UTF-8 sequence.
 
 I expect to be able to finish the patch and let Bas sponsor the upload
 before Christmas.
 
 With kind regards,
 Roland Clobus
 Maintainer of Pioneers
 

Thanks, please let us know once when it is ready or if it turns out that
it will not be ready before Christmas.

~Niels


-- 
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/548bfb2d.5030...@thykier.net



Bug#773011: marked as done (unblock: libcwd/1.0.4-1.1)

2014-12-13 Thread Debian Bug Tracking System
Your message dated Sat, 13 Dec 2014 09:41:33 +0100
with message-id 548bfbbd.7070...@thykier.net
and subject line Re: Bug#773011: unblock: libcwd/1.0.4-1.1
has caused the Debian Bug report #773011,
regarding unblock: libcwd/1.0.4-1.1
to be marked as done.

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

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


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

libcwd/1.0.4-1.1 fixes bug 771876, which reported that libcwd failed to build
because it specified default arguments on declarations of member functions
after the first declaration.  The attached patch fixes this problem by
specifying the default arguments on the first declarations.

The changes are attached.

unblock libcwd/1.0.4-1.1

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

Kernel: Linux 3.16.0-4-amd64 (SMP w/12 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
diff -Nru libcwd-1.0.4/debian/changelog libcwd-1.0.4/debian/changelog
--- libcwd-1.0.4/debian/changelog	2010-06-14 06:10:45.0 -0700
+++ libcwd-1.0.4/debian/changelog	2014-12-12 20:47:49.0 -0800
@@ -1,3 +1,10 @@
+libcwd (1.0.4-1.1) unstable; urgency=medium
+
+  * Non-maintainer upload.
+  * Move default arguments to first declarations.  Closes: #771876.
+
+ -- Matt Kraai kr...@debian.org  Fri, 12 Dec 2014 20:47:49 -0800
+
 libcwd (1.0.4-1) unstable; urgency=low
 
   * Upgrade to version 1.0.4.
diff -Nru libcwd-1.0.4/debian/patches/move-default-arguments-to-first-declarations.patch libcwd-1.0.4/debian/patches/move-default-arguments-to-first-declarations.patch
--- libcwd-1.0.4/debian/patches/move-default-arguments-to-first-declarations.patch	1969-12-31 16:00:00.0 -0800
+++ libcwd-1.0.4/debian/patches/move-default-arguments-to-first-declarations.patch	2014-12-12 20:38:02.0 -0800
@@ -0,0 +1,48 @@
+Description: Move default arguments to first declarations
+ Porting to GCC 4.9 indicates that GCC 4.9, unlike previous GCC
+ versions, enforces the C++ standard by requiring that default
+ arguments must be specified when a member function is first
+ declared.
+Author: Matt Kraai kr...@debian.org
+Last-Update: 2014-12-12
+
+Index: libcwd-1.0.4/include/demangle.h
+===
+--- libcwd-1.0.4.orig/include/demangle.h	2007-07-04 08:38:11.0 -0700
 libcwd-1.0.4/include/demangle.h	2014-12-12 20:22:40.678938802 -0800
+@@ -242,7 +242,7 @@
+ 	void
+ 	decode_qualifiers(string_type prefix,
+ 			  string_type postfix,
+-			  bool member_function_pointer_qualifiers) const;
++			  bool member_function_pointer_qualifiers = false) const;
+ 
+ 	bool
+ 	suppressed(void) const
+@@ -425,7 +425,7 @@
+ 	void
+ 	add_substitution(int start_pos,
+ 	 substitution_nt sub_type,
+-			 int number_of_prefixes);
++			 int number_of_prefixes = 0);
+ 
+ 	bool decode_type_with_postfix(string_type prefix,
+ 	string_type postfix, qualifier_listAllocator* qualifiers = NULL);
+@@ -462,7 +462,7 @@
+   void
+   sessionAllocator::add_substitution(int start_pos,
+ 	   substitution_nt sub_type,
+-	   int number_of_prefixes = 0)
++	   int number_of_prefixes)
+   {
+ 	if (!M_inside_substitution)
+ 	{
+@@ -1736,7 +1736,7 @@
+   qualifier_listAllocator::decode_qualifiers(
+ 	  string_type prefix,
+ 	  string_type postfix,
+-	  bool member_function_pointer_qualifiers = false) const
++	  bool member_function_pointer_qualifiers) const
+   {
+ 	_GLIBCXX_DEMANGLER_DOUT_ENTERING3(decode_qualifiers);
+ 	int cvq = 0;
diff -Nru libcwd-1.0.4/debian/patches/series libcwd-1.0.4/debian/patches/series
--- libcwd-1.0.4/debian/patches/series	1969-12-31 16:00:00.0 -0800
+++ libcwd-1.0.4/debian/patches/series	2014-12-12 20:43:14.0 -0800
@@ -0,0 +1 @@
+move-default-arguments-to-first-declarations.patch
---End Message---
---BeginMessage---
On 2014-12-13 06:04, Matt Kraai wrote:
 Package: release.debian.org
 Severity: normal
 User: release.debian@packages.debian.org
 Usertags: unblock
 
 Please unblock package libcwd.
 
 libcwd/1.0.4-1.1 fixes bug 771876, which reported that libcwd failed to build
 because it specified default arguments on declarations of member functions
 after the first declaration.  The attached patch fixes this 

Bug#772982: marked as done (unblock: util-linux/2.25.2-4)

2014-12-13 Thread Debian Bug Tracking System
Your message dated Sat, 13 Dec 2014 10:36:18 +0100
with message-id 20141213093618.ga26...@ugent.be
and subject line Re: Bug#772982: unblock: util-linux/2.25.2-4
has caused the Debian Bug report #772982,
regarding unblock: util-linux/2.25.2-4
to be marked as done.

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

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


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

The latest upload fixes 2 RC bugs (one of them being security related)
and includes a whole lot of l10n updates thanks to David Prévot.

I'm attaching a filtered debdiff (excluding the actual language
string changes), plus the patch from upstream for the security
issue so you don't have to read patch-in-patch if you don't want to.

unblock util-linux/2.25.2-4

-- System Information:
Debian Release: 8.0
  APT prefers testing-updates
  APT policy: (500, 'testing-updates'), (500, 'testing'), (1, 'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 3.16.0-4-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_DK.UTF-8, LC_CTYPE=en_DK.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)
debdiff /var/cache/pbuilder/result/util-linux_2.25.2-[34].dsc | filterdiff -x '*/debian/patches/Update-*.patch' -x '*/debian/patches/Trivial-unfuzzy.patch'

diff -Nru util-linux-2.25.2/debian/changelog util-linux-2.25.2/debian/changelog
--- util-linux-2.25.2/debian/changelog	2014-11-17 11:25:26.0 +0100
+++ util-linux-2.25.2/debian/changelog	2014-12-12 18:26:14.0 +0100
@@ -1,3 +1,30 @@
+util-linux (2.25.2-4) unstable; urgency=medium
+
+  [ David Prévot ]
+  * Update POT and PO files and clean up .gmo files
+  * Update German translation, thanks to Mario Blättermann
+  * Update Spanish translation, thanks to Antonio Ceballos Roa
+  * Update French translation (Closes: #770506)
+  * Update Ukrainian translation, thanks to Yuri Chornoivan
+  * Update Brazilian Portuguese translation, thanks to Rafael Ferreira
+  * Update Chinese (simplified) translation, thanks to Wylmer Wang
+  * Update Danish translation, thanks to Joe Hansen
+  * Update Finnish translation, thanks to Lauri Nurmi
+  * Update Japanese translation, thanks to Takeshi Hamasaki
+  * Update Russian translation, thanks to Pavel Maryanov
+  * Trivial unfuzzy
+
+  [ Andreas Henriksson ]
+  * Add debian/patches/libblkid-care-about-unsafe-chars-in-cache.patch
+- from upstream git master commit 89e90ae7
+  libblkid: care about unsafe chars in cache
+- This fixes CVE-2014-9114: blkid command injection
+  see https://security-tracker.debian.org/tracker/CVE-2014-9114
+Thanks to Salvatore Bonaccorso (Closes: #771274)
+  * libuuid1: add passwd dependency for user migration (Closes: #771092)
+
+ -- Andreas Henriksson andr...@fatal.se  Fri, 12 Dec 2014 18:23:24 +0100
+
 util-linux (2.25.2-3) unstable; urgency=medium
 
   * Ship fstrim timer/service units as examples only (Closes: #767194)
diff -Nru util-linux-2.25.2/debian/clean util-linux-2.25.2/debian/clean
--- util-linux-2.25.2/debian/clean	1970-01-01 01:00:00.0 +0100
+++ util-linux-2.25.2/debian/clean	2014-12-12 18:26:14.0 +0100
@@ -0,0 +1 @@
+po/*.gmo
diff -Nru util-linux-2.25.2/debian/control util-linux-2.25.2/debian/control
--- util-linux-2.25.2/debian/control	2014-11-17 11:25:26.0 +0100
+++ util-linux-2.25.2/debian/control	2014-12-12 18:26:14.0 +0100
@@ -208,7 +208,7 @@
 Architecture: any
 Section: libs
 Pre-Depends: ${misc:Pre-Depends}
-Depends: ${misc:Depends}, ${shlibs:Depends}
+Depends: passwd, ${misc:Depends}, ${shlibs:Depends}
 Recommends: uuid-runtime
 Replaces: e2fsprogs ( 1.34-1)
 Multi-Arch: same
diff -Nru util-linux-2.25.2/debian/patches/libblkid-care-about-unsafe-chars-in-cache.patch util-linux-2.25.2/debian/patches/libblkid-care-about-unsafe-chars-in-cache.patch
--- util-linux-2.25.2/debian/patches/libblkid-care-about-unsafe-chars-in-cache.patch	1970-01-01 01:00:00.0 +0100
+++ util-linux-2.25.2/debian/patches/libblkid-care-about-unsafe-chars-in-cache.patch	2014-12-12 18:26:14.0 +0100
@@ -0,0 +1,163 @@
+From: Karel Zak k...@redhat.com
+Date: Thu, 27 Nov 2014 13:39:35 +0100
+Subject: libblkid: care about unsafe chars in cache
+
+The high-level libblkid API uses /run/blkid/blkid.tab cache to
+store probing results. The cache format is
+
+   device NAME=value ...devname/device
+
+and unfortunately the cache code 

Bug#772926: unblock: grml-debootstrap/0.68

2014-12-13 Thread Adam D. Barratt
On Sat, 2014-12-13 at 01:54 +0100, Michael Prokop wrote:
 * Ivo De Decker [Fri Dec 12, 2014 at 11:20:10PM +0100]:
  OK. It seems 0.68 didn't reach unstable (did you get a reject?). So, please
  upload it (again?) to unstable, and when it's accepted, please remove the
  moreinfo tag from this bug.
 
 Huh, that's strange. Nope, I didn't receive a reject so far. :-/
 
 I *think* it might be that my upload was signed with my old GPG key
 (for whatever reason debsign doesn't seem to honor my $DEBSIGN_KEYID
 setting as I just noticed, sic). I just tried to re-upload with my
 new key signed:
 
   http://paste.grml.org/hidden/94a66c13/

The queued log on ftp-master has:

Dec 12 09:24:56 processing /grml-debootstrap_0.68_amd64.changes
Dec 12 09:24:57 GnuPG signature check failed on
grml-debootstrap_0.68_amd64.changes
Dec 12 09:24:57 /grml-debootstrap_0.68_amd64.changes has bad PGP/GnuPG
signature!
Dec 12 09:24:57 Removing /grml-debootstrap_0.68_amd64.changes, but
keeping its associated files for now.

and then, for the new upload:

Dec 13 00:54:18 processing /grml-debootstrap_0.68_amd64.changes
Dec 13 00:54:18 grml-debootstrap_0.68.dsc is too small (ignored for now)
Dec 13 00:54:18 grml-debootstrap_0.68_all.deb has incorrect md5
checksum; deleting it
Dec 13 00:59:19 processing /grml-debootstrap_0.68_amd64.changes
Dec 13 00:59:19 grml-debootstrap_0.68.dsc is too small (ignored for now)
Dec 13 00:59:19 grml-debootstrap_0.68_all.deb doesn't exist (ignored for
now)
[repeated]

The .tar.xz from the original upload and the .changes from the new one
are still in the upload queue. I'd suggest dcutting them and trying
again.

Regards,

Adam


-- 
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/1418464353.1823.15.ca...@adam-barratt.org.uk



Bug#767476: transition: tilda

2014-12-13 Thread intrigeri
Hi Sebastian,

Niels Thykier wrote (21 Nov 2014 18:10:31 GMT) :
 Unfortunately, as intrigeri suggests in his mail, we are not willing to
 accept this large a changeset up to or during the freeze.  However, we
 are still willing to accept targeted fixes for important bugs for
 another 14 days, provided that they go through unstable.  Admittedly, it
 would mean that you would have to revert your tilda/1.2 upload(s).

This didn't happen, and the window for fixing important bugs is now
closed. Sebastian, are you interested in uploading targeted fixes for
RC bugs only? If not, please let the release team know, or simply
close this bug report yourself.

Cheers,
--
intrigeri


-- 
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/85vblfpzmp@boum.org



Bug#770772: unblock: ruby-twitter-text/1.10.0+gem-1

2014-12-13 Thread intrigeri
Hi Hideki Yamane,

Pirate Praveen wrote (24 Nov 2014 16:31:26 GMT) :
 On Monday 24 November 2014 03:45 AM, Jonathan Wiltshire wrote:
 Unfortunately that diff is not against the version in testing, which
 includes a new upstream release. Please assess whether you think that
 new upstream is suitable, and follow up with a full diff.

 Do you think the new upstream version is suitable for jessie? Is it a
 bug fix only release?

Ping?

Cheers,
--
intrigeri


-- 
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/85mw6rpzfx@boum.org



Bug#769961: hard-coded UIDs and GIDs

2014-12-13 Thread intrigeri
Hans-Christoph Steiner wrote (12 Dec 2014 12:32:59 GMT) :
 First of all, please don't break threads.

 Sorry, I don't understand what you mean by this.

I think that Ivo meant that your previous email
(54874ee7.9020...@eds.org) was a reply to his
(20141119190826.ga19...@ugent.be), but was lacking References and
In-Reply-To headers.


-- 
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/85fvcjpzb2@boum.org



Bug#768368: unblock: wxglade/0.7.0-2

2014-12-13 Thread Georges Khaznadar
Thank you for the ping, dear Adam!

I searched the last e-mail which I sent with --supposedly-- a source
debdiff. It was sent the 7th November
(Message-ID: 20141107110456.ga7...@georges.khaznadar.fr), but it
missed then announced attachment, hence my mistake.

 hereby attach the requested file, wxglade.debdiff.

 Best regards,  Georges.

Adam D. Barratt a écrit :
 On Fri, 2014-11-21 at 18:50 +0100, Niels Thykier wrote:
  We are still waiting for a source debdiff from you on wxglade.  Please
  attach it to a reply of this mail at your earliest convenience.
 
 Ping?
 
 Regards,
 
 Adam
 
 

-- 
Georges KHAZNADAR et Jocelyne FOURNIER
22 rue des mouettes, 59240 Dunkerque France.
Téléphone +33 (0)3 28 29 17 70

[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/lib/python2.7/dist-packages/wxGlade-0.7.0.egg-info
-rw-r--r--  root/root   /usr/lib/python2.7/dist-packages/wxglade/bugdialog.py
-rw-r--r--  root/root   /usr/lib/python2.7/dist-packages/wxglade/bugdialog_ui.py
-rw-r--r--  root/root   
/usr/lib/python2.7/dist-packages/wxglade/codegen/perl_codegen.py
-rw-r--r--  root/root   /usr/lib/python2.7/dist-packages/wxglade/compat.py
-rw-r--r--  root/root   
/usr/lib/python2.7/dist-packages/wxglade/edit_sizers/cpp_sizers_codegen.py
-rw-r--r--  root/root   
/usr/lib/python2.7/dist-packages/wxglade/edit_sizers/py_sizers_codegen.py
-rw-r--r--  root/root   
/usr/lib/python2.7/dist-packages/wxglade/edit_sizers/xrc_sizers_codegen.py
-rw-r--r--  root/root   /usr/lib/python2.7/dist-packages/wxglade/log.py
-rw-r--r--  root/root   
/usr/lib/python2.7/dist-packages/wxglade/preferences_ui.py
-rw-r--r--  root/root   
/usr/lib/python2.7/dist-packages/wxglade/preferencesdialog.py
-rw-r--r--  root/root   
/usr/lib/python2.7/dist-packages/wxglade/res/bugdialog_ui.wxg
-rw-r--r--  root/root   
/usr/lib/python2.7/dist-packages/wxglade/res/preferences_ui.wxg
-rw-r--r--  root/root   
/usr/lib/python2.7/dist-packages/wxglade/wcodegen/__init__.py
-rw-r--r--  root/root   
/usr/lib/python2.7/dist-packages/wxglade/wcodegen/dialogs.py
-rw-r--r--  root/root   
/usr/lib/python2.7/dist-packages/wxglade/wcodegen/mixins.py
-rw-r--r--  root/root   
/usr/lib/python2.7/dist-packages/wxglade/widget_builder.py
-rw-r--r--  root/root   
/usr/lib/python2.7/dist-packages/wxglade/widgets/bitmap_button/wconfig.py
-rw-r--r--  root/root   
/usr/lib/python2.7/dist-packages/wxglade/widgets/button/wconfig.py
-rw-r--r--  root/root   
/usr/lib/python2.7/dist-packages/wxglade/widgets/calendar_ctrl/wconfig.py
-rw-r--r--  root/root   
/usr/lib/python2.7/dist-packages/wxglade/widgets/checkbox/wconfig.py
-rw-r--r--  root/root   
/usr/lib/python2.7/dist-packages/wxglade/widgets/combo_box/wconfig.py
-rw-r--r--  root/root   
/usr/lib/python2.7/dist-packages/wxglade/widgets/datepicker_ctrl/lisp_codegen.py
-rw-r--r--  root/root   
/usr/lib/python2.7/dist-packages/wxglade/widgets/datepicker_ctrl/perl_codegen.py
-rw-r--r--  root/root   
/usr/lib/python2.7/dist-packages/wxglade/widgets/datepicker_ctrl/wconfig.py
-rw-r--r--  root/root   
/usr/lib/python2.7/dist-packages/wxglade/widgets/dialog/wconfig.py
-rw-r--r--  root/root   
/usr/lib/python2.7/dist-packages/wxglade/widgets/frame/wconfig.py
-rw-r--r--  root/root   
/usr/lib/python2.7/dist-packages/wxglade/widgets/gauge/wconfig.py
-rw-r--r--  root/root   
/usr/lib/python2.7/dist-packages/wxglade/widgets/hyperlink_ctrl/wconfig.py
-rw-r--r--  root/root   
/usr/lib/python2.7/dist-packages/wxglade/widgets/list_box/wconfig.py
-rw-r--r--  root/root   
/usr/lib/python2.7/dist-packages/wxglade/widgets/list_ctrl/wconfig.py
-rw-r--r--  root/root   
/usr/lib/python2.7/dist-packages/wxglade/widgets/notebook/wconfig.py
-rw-r--r--  root/root   
/usr/lib/python2.7/dist-packages/wxglade/widgets/panel/wconfig.py
-rw-r--r--  root/root   
/usr/lib/python2.7/dist-packages/wxglade/widgets/radio_button/wconfig.py
-rw-r--r--  root/root   
/usr/lib/python2.7/dist-packages/wxglade/widgets/slider/wconfig.py
-rw-r--r--  root/root   
/usr/lib/python2.7/dist-packages/wxglade/widgets/spin_button/wconfig.py
-rw-r--r--  root/root   
/usr/lib/python2.7/dist-packages/wxglade/widgets/spin_ctrl/wconfig.py
-rw-r--r--  root/root   
/usr/lib/python2.7/dist-packages/wxglade/widgets/splitter_window/wconfig.py
-rw-r--r--  root/root   
/usr/lib/python2.7/dist-packages/wxglade/widgets/static_bitmap/wconfig.py
-rw-r--r--  root/root   
/usr/lib/python2.7/dist-packages/wxglade/widgets/static_line/wconfig.py
-rw-r--r--  root/root   
/usr/lib/python2.7/dist-packages/wxglade/widgets/static_text/wconfig.py
-rw-r--r--  root/root   
/usr/lib/python2.7/dist-packages/wxglade/widgets/statusbar/__init__.py
-rw-r--r--  root/root   
/usr/lib/python2.7/dist-packages/wxglade/widgets/statusbar/codegen.py
-rw-r--r--  root/root   

Bug#768368: unblock: wxglade/0.7.0-2

2014-12-13 Thread Adam D. Barratt
On Sat, 2014-12-13 at 12:41 +0100, Georges Khaznadar wrote:
 Thank you for the ping, dear Adam!
 
 I searched the last e-mail which I sent with --supposedly-- a source
 debdiff. It was sent the 7th November
 (Message-ID: 20141107110456.ga7...@georges.khaznadar.fr), but it
 missed then announced attachment, hence my mistake.

Neither lists.d.o nor GMANE have any record of that message.

  hereby attach the requested file, wxglade.debdiff.

Thanks, but that's a binary debdiff, not a source one as requested -
i.e. a debdiff of the .dsc files.

Regards,

Adam


-- 
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/1418473094.14815.4.ca...@adam-barratt.org.uk



Bug#773031: unblock: haskell-hoogle/4.2.33-4

2014-12-13 Thread Joachim Breitner
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Please unblock package haskell-hoogle. It includes a change to the
trigger file to avoid a trigger cycle, as advised by Guillem Jover.

unblock haskell-hoogle/4.2.33-4

- -- System Information:
Debian Release: 8.0
  APT prefers unstable
  APT policy: (500, 'unstable'), (101, 'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386, armhf

Kernel: Linux 3.16.0-4-amd64 (SMP w/4 CPU cores)
Locale: LANG=de_DE.utf8, LC_CTYPE=de_DE.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iEYEARECAAYFAlSMOgIACgkQ9ijrk0dDIGzCpgCeJ5Vd6nKsLfTf3i4cUBinLk9P
YDEAnR455JrQZ9xSHyq4u3zKeOPTDCfX
=dN1O
-END PGP SIGNATURE-
diff -Nru haskell-hoogle-4.2.33/debian/changelog haskell-hoogle-4.2.33/debian/changelog
--- haskell-hoogle-4.2.33/debian/changelog	2014-11-07 15:54:40.0 +0100
+++ haskell-hoogle-4.2.33/debian/changelog	2014-12-13 14:05:12.0 +0100
@@ -1,3 +1,10 @@
+haskell-hoogle (4.2.33-4) unstable; urgency=medium
+
+  * Make the trigger -noawait, to avoid trigger cycles, as recommended by
+Guillem Jover (Closes: #772867) 
+
+ -- Joachim Breitner nome...@debian.org  Sat, 13 Dec 2014 14:05:12 +0100
+
 haskell-hoogle (4.2.33-3) unstable; urgency=medium
 
   * Demote Recommends: apache2 to suggests (Closes: #768447) 
diff -Nru haskell-hoogle-4.2.33/debian/hoogle.triggers haskell-hoogle-4.2.33/debian/hoogle.triggers
--- haskell-hoogle-4.2.33/debian/hoogle.triggers	2012-10-13 13:29:42.0 +0200
+++ haskell-hoogle-4.2.33/debian/hoogle.triggers	2014-12-13 14:04:35.0 +0100
@@ -1 +1 @@
-interest /usr/lib/ghc-doc/hoogle
+interest-noawait /usr/lib/ghc-doc/hoogle
diff -Nru haskell-hoogle-4.2.33/debian/source/local-options haskell-hoogle-4.2.33/debian/source/local-options
--- haskell-hoogle-4.2.33/debian/source/local-options	1970-01-01 01:00:00.0 +0100
+++ haskell-hoogle-4.2.33/debian/source/local-options	2012-10-13 13:29:44.0 +0200
@@ -0,0 +1 @@
+unapply-patches


Bug#773031: marked as done (unblock: haskell-hoogle/4.2.33-4)

2014-12-13 Thread Debian Bug Tracking System
Your message dated Sat, 13 Dec 2014 14:36:25 +0100
with message-id 20141213133625.gb4...@ugent.be
and subject line Re: Bug#773031: unblock: haskell-hoogle/4.2.33-4
has caused the Debian Bug report #773031,
regarding unblock: haskell-hoogle/4.2.33-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.)


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

Please unblock package haskell-hoogle. It includes a change to the
trigger file to avoid a trigger cycle, as advised by Guillem Jover.

unblock haskell-hoogle/4.2.33-4

- -- System Information:
Debian Release: 8.0
  APT prefers unstable
  APT policy: (500, 'unstable'), (101, 'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386, armhf

Kernel: Linux 3.16.0-4-amd64 (SMP w/4 CPU cores)
Locale: LANG=de_DE.utf8, LC_CTYPE=de_DE.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iEYEARECAAYFAlSMOgIACgkQ9ijrk0dDIGzCpgCeJ5Vd6nKsLfTf3i4cUBinLk9P
YDEAnR455JrQZ9xSHyq4u3zKeOPTDCfX
=dN1O
-END PGP SIGNATURE-
diff -Nru haskell-hoogle-4.2.33/debian/changelog haskell-hoogle-4.2.33/debian/changelog
--- haskell-hoogle-4.2.33/debian/changelog	2014-11-07 15:54:40.0 +0100
+++ haskell-hoogle-4.2.33/debian/changelog	2014-12-13 14:05:12.0 +0100
@@ -1,3 +1,10 @@
+haskell-hoogle (4.2.33-4) unstable; urgency=medium
+
+  * Make the trigger -noawait, to avoid trigger cycles, as recommended by
+Guillem Jover (Closes: #772867) 
+
+ -- Joachim Breitner nome...@debian.org  Sat, 13 Dec 2014 14:05:12 +0100
+
 haskell-hoogle (4.2.33-3) unstable; urgency=medium
 
   * Demote Recommends: apache2 to suggests (Closes: #768447) 
diff -Nru haskell-hoogle-4.2.33/debian/hoogle.triggers haskell-hoogle-4.2.33/debian/hoogle.triggers
--- haskell-hoogle-4.2.33/debian/hoogle.triggers	2012-10-13 13:29:42.0 +0200
+++ haskell-hoogle-4.2.33/debian/hoogle.triggers	2014-12-13 14:04:35.0 +0100
@@ -1 +1 @@
-interest /usr/lib/ghc-doc/hoogle
+interest-noawait /usr/lib/ghc-doc/hoogle
diff -Nru haskell-hoogle-4.2.33/debian/source/local-options haskell-hoogle-4.2.33/debian/source/local-options
--- haskell-hoogle-4.2.33/debian/source/local-options	1970-01-01 01:00:00.0 +0100
+++ haskell-hoogle-4.2.33/debian/source/local-options	2012-10-13 13:29:44.0 +0200
@@ -0,0 +1 @@
+unapply-patches
---End Message---
---BeginMessage---
Hi,

On Sat, Dec 13, 2014 at 02:07:16PM +0100, Joachim Breitner wrote:
 unblock haskell-hoogle/4.2.33-4

Unblocked.

Cheers,

Ivo---End Message---


Bug#772926: marked as done (unblock: grml-debootstrap/0.68)

2014-12-13 Thread Debian Bug Tracking System
Your message dated Sat, 13 Dec 2014 14:35:09 +0100
with message-id 20141213133507.ga4...@ugent.be
and subject line Re: Bug#772926: unblock: grml-debootstrap/0.68
has caused the Debian Bug report #772926,
regarding unblock: grml-debootstrap/0.68
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.)


-- 
772926: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=772926
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 grml-debootstrap v0.68, fixing issue #772849
which is caused by a behaviour change of util-linux's blkid binary
(more details about that in #772846):

unblock grml-debootstrap/0.68

The debdiff of grml-debootstrap as in current jessie vs. what I
just uploaded to unstable:

diff -Nru grml-debootstrap-0.67/debian/changelog 
grml-debootstrap-0.68/debian/changelog
--- grml-debootstrap-0.67/debian/changelog  2014-10-13 21:16:28.0 
+0200
+++ grml-debootstrap-0.68/debian/changelog  2014-12-11 18:38:19.0 
+0100
@@ -1,3 +1,10 @@
+grml-debootstrap (0.68) unstable; urgency=medium
+
+  * [8a4a3c8] Adjust filesystem check for new blkid behaviour
+(Closes: #772849)
+
+ -- Michael Prokop m...@grml.org  Thu, 11 Dec 2014 18:38:06 +0100
+
 grml-debootstrap (0.67) unstable; urgency=medium
 
   The [✔] ready for jessie release
diff -Nru grml-debootstrap-0.67/grml-debootstrap 
grml-debootstrap-0.68/grml-debootstrap
--- grml-debootstrap-0.67/grml-debootstrap  2014-10-13 21:14:22.0 
+0200
+++ grml-debootstrap-0.68/grml-debootstrap  2014-12-09 13:23:12.0 
+0100
@@ -430,7 +430,10 @@
   fi
 
   PARTITION_LIST=$(for i in $AVAILABLE_PARTITIONS ; do
- echo $i $(blkid -s TYPE -o value $i 2/dev/null || 
echo '[no_filesystem_yet]')
+ fs=$(blkid -s TYPE -o value $i 2/dev/null)
+ [ -n $fs ] || fs='[no_filesystem_yet]'
+ echo $i $fs
+ unset fs
done)
 
   TARGET=$(dialog --title $PN --single-quoted --stdout \

Thanks!

regards,
-mika-


signature.asc
Description: Digital signature
---End Message---
---BeginMessage---
Hi,

On Sat, Dec 13, 2014 at 01:54:25AM +0100, Michael Prokop wrote:
  OK. It seems 0.68 didn't reach unstable (did you get a reject?). So, please
  upload it (again?) to unstable, and when it's accepted, please remove the
  moreinfo tag from this bug.
 
 Huh, that's strange. Nope, I didn't receive a reject so far. :-/
 
 I *think* it might be that my upload was signed with my old GPG key
 (for whatever reason debsign doesn't seem to honor my $DEBSIGN_KEYID
 setting as I just noticed, sic). I just tried to re-upload with my
 new key signed:
 
   http://paste.grml.org/hidden/94a66c13/
 
 No idea what this actually means for us now though. :-/

It seems grml-debootstrap/0.68 was finally accepted.

Unblocked.

Cheers,

Ivo---End Message---


Bug#773034: nmu: tulip_4.6.0dfsg-2

2014-12-13 Thread Andreas Beckmann
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: binnmu

nmu tulip_4.6.0dfsg-2 . ALL . -m Rebuild against new binutils.

As ususally after a new binutils upload ...


Andreas


-- 
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
https://lists.debian.org/20141213134721.3576.76292.report...@zam581.zam.kfa-juelich.de



Bug#773040: unblock: anarchism/14.0-3 (pre-approval)

2014-12-13 Thread Holger Levsen
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Hi,

this is a pre-approval unblock request for anarchism, mostly to have a non-
bouncing maintainer address in jessie. I've also done six tiny other useful
changes but didn't bump debian/compat ;-)

$ head -16 anarchism/debian/changelog 
anarchism (14.0-3) unstable; urgency=medium

  * Adopt anarchism (Closes: #772907) - co-maintainers very much welcome!
  * Replace Mauro Lizaur as maintainer, thanks for all your work, Mauro!
  * Add Vcs-Git: and Vcs-Browser: headers to debian/control.
  * Correct upstream homepage URL in debian/control and README.Debian.
(Closes: #738767)
  * Remove obsolete debian/README.source.
  * Make Build-Depends on lynx unversioned, as it was referring to a version
satisfied in Squeeze.
  * Bump Standards-Version to 3.9.6, no changes needed.
  * Add debian/patches/686968-Remove-Adobe-advertisement.patch to do exactly
that. (Closes: #686968)

 -- Holger Levsen hol...@debian.org  Sat, 13 Dec 2014 13:12:42 +0100

$ debdiff anarchism_14.0-2.dsc anarchism_14.0-3.dsc|diffstat
dpkg-source: Warnung: unsigniertes Quellpaket wird extrahiert 
(/home/holgi/Projects/anarchism/git/anarchism_14.0-3.dsc)
 README.Debian   |2 -
 README.source   |7 
 changelog   |   16 ++
 control |   10 --
 patches/686968-Remove-Adobe-advertisement.patch |   35 

 patches/series  |1 
 6 files changed, 59 insertions(+), 12 deletions(-)

See attached.

Thanks for your work on jessie!


cheers,
Holger
diff -Nru anarchism-14.0/debian/changelog anarchism-14.0/debian/changelog
--- anarchism-14.0/debian/changelog	2012-10-05 03:19:15.0 +0200
+++ anarchism-14.0/debian/changelog	2014-12-13 15:26:51.0 +0100
@@ -1,3 +1,19 @@
+anarchism (14.0-3) unstable; urgency=medium
+
+  * Adopt anarchism (Closes: #772907) - co-maintainers very much welcome!
+  * Replace Mauro Lizaur as maintainer, thanks for all your work, Mauro!
+  * Add Vcs-Git: and Vcs-Browser: headers to debian/control.
+  * Correct upstream homepage URL in debian/control and README.Debian.
+(Closes: #738767)
+  * Remove obsolete debian/README.source.
+  * Make Build-Depends on lynx unversioned, as it was referring to a version
+satisfied in Squeeze.
+  * Bump Standards-Version to 3.9.6, no changes needed.
+  * Add debian/patches/686968-Remove-Adobe-advertisement.patch to do exactly
+that. (Closes: #686968)
+
+ -- Holger Levsen hol...@debian.org  Sat, 13 Dec 2014 13:12:42 +0100
+
 anarchism (14.0-2) unstable; urgency=low
 
   * Fixed the name in References section for each txt.
diff -Nru anarchism-14.0/debian/control anarchism-14.0/debian/control
--- anarchism-14.0/debian/control	2012-10-08 22:50:37.0 +0200
+++ anarchism-14.0/debian/control	2014-12-13 15:26:39.0 +0100
@@ -1,11 +1,13 @@
 Source: anarchism
 Section: doc
 Priority: optional
-Maintainer: Mauro Lizaur ma...@debian.org
+Maintainer: Holger Levsen hol...@debian.org
 Build-Depends: debhelper (= 8.0.0)
-Build-Depends-Indep: lynx (= 2.8.8dev.5), sed (= 4.2.1)
-Standards-Version: 3.9.3
-Homepage: http://www.infoshop.org/page/AnAnarchistFAQ
+Build-Depends-Indep: lynx, sed (= 4.2.1)
+Standards-Version: 3.9.6
+Homepage: http://www.infoshop.org/AnAnarchistFAQ
+Vcs-Git: git://anonscm.debian.org/collab-maint/anarchism.git
+Vcs-Browser: https://anonscm.debian.org/gitweb/?p=collab-maint/anarchism.git
 
 Package: anarchism
 Depends: ${misc:Depends}
diff -Nru anarchism-14.0/debian/patches/686968-Remove-Adobe-advertisement.patch anarchism-14.0/debian/patches/686968-Remove-Adobe-advertisement.patch
--- anarchism-14.0/debian/patches/686968-Remove-Adobe-advertisement.patch	1970-01-01 01:00:00.0 +0100
+++ anarchism-14.0/debian/patches/686968-Remove-Adobe-advertisement.patch	2014-12-13 15:26:51.0 +0100
@@ -0,0 +1,35 @@
+From 6028662874e6166927565bde7ad3343a1d303ed8 Mon Sep 17 00:00:00 2001
+From: Holger Levsen hol...@layer-acht.org
+Date: Sat, 13 Dec 2014 13:51:42 +0100
+Subject: [PATCH] Remove Adobe advertisement. (Closes: #686968)
+
+---
+ html/pdf.html | 14 +-
+ 1 file changed, 1 insertion(+), 13 deletions(-)
+
+diff --git a/html/pdf.html b/html/pdf.html
+index bc25b9a..402cdee 100644
+--- a/html/pdf.html
 b/html/pdf.html
+@@ -8,18 +8,6 @@
+ 
+ h1An Anarchist FAQ in pdf format/h1
+ 
+-p
+-To view and print out the file you will need to have 
+-Adobe Document Reader on your computer. This is free 
+-software that now comes on many computers and with 
+-many CD's. If you do not already have it you can 
+-a href=http://www.adobe.com/products/acrobat/readstep.html;
+-download it from the Adobe site./a 
+-[or 
+-a href=http://www.adobe.com/products/acrobat/alternate.html;
+-click here for a faster text only 

Bug#773042: unblock: simgrid/3.11.1-8

2014-12-13 Thread Martin Quinson
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock package simgrid

The new version fixes the RC bug #755047; the debdiff is attached.

Also, it'd be cool if you could cancel the autorm against that package. Sorry,
I didn't fill that unblock notice in time...

Thanks for your hard work,
Mt

unblock simgrid/3.11.1-8

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

Kernel: Linux 3.16-2-amd64 (SMP w/4 CPU cores)

-- 
Si les grands esprits se rencontrent, les petits esprits, eux, se cognent.
diff -Nru simgrid-3.11.1/debian/changelog simgrid-3.11.1/debian/changelog
--- simgrid-3.11.1/debian/changelog 2014-07-05 00:20:44.0 +0200
+++ simgrid-3.11.1/debian/changelog 2014-12-09 01:48:14.0 +0100
@@ -1,3 +1,16 @@
+simgrid (3.11.1-8) unstable; urgency=medium
+
+  * d/c: update VCS to not use any deprecated URLs
+  * d/c: improve short descriptions
+  * d/c: libsimgrid-java suggests java-virtual-machine, captain obvious.
+  * Install tesh and graphicator tools as part of the libsimgrid-dev,
+not as part of libsimgrid3.11 to allow the co-installation of
+several library versions (Closes: #755047).
+  * d/p/fix-bashism.diff: fix a bashism that mainly appears on Mac OSX
+(Closes: #772329).
+
+ -- Martin Quinson mquin...@debian.org  Tue, 09 Dec 2014 01:47:57 +0100
+
 simgrid (3.11.1-7) unstable; urgency=medium
 
   * Disable LTO on all non-AMD architectures to circumvent a seemingly
diff -Nru simgrid-3.11.1/debian/control simgrid-3.11.1/debian/control
--- simgrid-3.11.1/debian/control   2014-07-05 00:20:44.0 +0200
+++ simgrid-3.11.1/debian/control   2014-12-09 01:48:14.0 +0100
@@ -11,8 +11,8 @@
  transfig, ghostscript, texlive-font-utils
 Standards-Version: 3.9.5
 Homepage: http://simgrid.gforge.inria.fr/
-Vcs-Git: git://git.debian.org/git/collab-maint/simgrid.git
-Vcs-Browser: http://git.debian.org/?p=collab-maint/simgrid.git
+Vcs-Git: git://anonscm.debian.org/collab-maint/simgrid.git
+Vcs-Browser: http://anonscm.debian.org/gitweb/?p=collab-maint/simgrid.git
 
 Package: libsimgrid3.11
 Architecture: any
@@ -34,7 +34,7 @@
 Section: doc
 Depends: ${misc:Depends}
 Conflicts: simgrid ( 3.11)
-Description: Toolkit for scalable simulation of distributed applications
+Description: Documentation for the SimGrid Toolkit
  SimGrid is a toolkit that provides core functionalities for the simulation of
  distributed applications in heterogeneous distributed environments. SimGrid
  can be used as a Grid simulator, a P2P simulator, a Cloud simulator, a MPI
@@ -50,7 +50,8 @@
 Depends: ${shlibs:Depends}, ${misc:Depends}, libsimgrid3.11 (= 
${source:Version})
 Recommends: simgrid-doc (= ${source:Version})
 Conflicts: simgrid ( 3.11)
-Description: Toolkit for scalable simulation of distributed applications
+Suggests: java-virtual-machine
+Description: Java bindings for the SimGrid Toolkit
  SimGrid is a toolkit that provides core functionalities for the simulation of
  distributed applications in heterogeneous distributed environments. SimGrid
  can be used as a Grid simulator, a P2P simulator, a Cloud simulator, a MPI
@@ -74,7 +75,7 @@
 Conflicts: simgrid
 Replaces: simgrid
 Provides: simgrid
-Description: Toolkit for scalable simulation of distributed applications
+Description: Development files for the SimGrid Toolkit
  SimGrid is a toolkit that provides core functionalities for the simulation of
  distributed applications in heterogeneous distributed environments. SimGrid
  can be used as a Grid simulator, a P2P simulator, a Cloud simulator, a MPI
diff -Nru simgrid-3.11.1/debian/libsimgrid3.11.install 
simgrid-3.11.1/debian/libsimgrid3.11.install
--- simgrid-3.11.1/debian/libsimgrid3.11.install2014-07-05 
00:20:44.0 +0200
+++ simgrid-3.11.1/debian/libsimgrid3.11.install2014-12-09 
01:48:14.0 +0100
@@ -1,6 +1 @@
 usr/lib/libsimgrid.so.3.11
-
-usr/bin/tesh
-usr/share/man/man1/tesh.1
-
-usr/bin/simgrid-graphicator
diff -Nru simgrid-3.11.1/debian/libsimgrid-dev.install 
simgrid-3.11.1/debian/libsimgrid-dev.install
--- simgrid-3.11.1/debian/libsimgrid-dev.install2014-07-05 
00:20:44.0 +0200
+++ simgrid-3.11.1/debian/libsimgrid-dev.install2014-12-09 
01:48:14.0 +0100
@@ -26,3 +26,8 @@
 
 usr/lib/libsimgrid-java.so
 usr/lib/libsimgrid.so
+
+usr/bin/tesh
+usr/share/man/man1/tesh.1
+
+usr/bin/simgrid-graphicator
diff -Nru simgrid-3.11.1/debian/patches/fix-bashism.diff 
simgrid-3.11.1/debian/patches/fix-bashism.diff
--- simgrid-3.11.1/debian/patches/fix-bashism.diff  1970-01-01 
01:00:00.0 +0100
+++ simgrid-3.11.1/debian/patches/fix-bashism.diff  2014-12-09 
01:48:14.0 +0100
@@ -0,0 +1,31 @@
+commit d2e08004d48f0cef99d943d253e2f1dd0b8470b0
+Author: degomme 

Bug#769784: unblock: carmetal/3.5.2+dfsg-1.1

2014-12-13 Thread Georges Khaznadar
Dear Adam,

I already replied this e-mail the 16th November, however I replied only
to Jonathan Wiltshire j...@debian.org, not adding
769...@bugs.debian.org to the recipient list.

Please find attached the previous e-mail.

I repeat here my argument:
I am using carmetal in my high school, like some of my colleagues too.

As Yves Combe did not reply, how can I take politely the reponsibility
of that package?

Best regards,   Georges.

Adam D. Barratt a écrit :
 On Sun, 2014-11-16 at 13:48 +, Jonathan Wiltshire wrote:
  Control: tag -1 moreinfo
  
  On Sun, Nov 16, 2014 at 01:51:06PM +0100, Georges Khaznadar wrote:
   Please unblock package carmetal
   
   The RC bugs targetting this package have been fixed
  
  The diff looks fine, but I'm not enthusiastic about the package. It's not
  currently in testing, and of the three bugs you close two (including the
  RC bug) didn't get a maintainer response, and the third did but in 2012.
  
  How can we be sure that if released in Jessie, it won't just rot there
  instead?
 
 Ping?
 
 Regards,
 
 Adam
 
 

-- 
Georges KHAZNADAR et Jocelyne FOURNIER
22 rue des mouettes, 59240 Dunkerque France.
Téléphone +33 (0)3 28 29 17 70

From georges.khazna...@free.fr Sun Nov 16 17:34:24 2014
Date: Sun, 16 Nov 2014 17:34:24 +0100
From: Georges Khaznadar georges.khazna...@free.fr
To: Jonathan Wiltshire j...@debian.org
Cc: Yves Combe y...@ycombe.net, d...@abuledu.org
Subject: Re: Bug#769784: unblock: carmetal/3.5.2+dfsg-1.1
Message-ID: 20141116163424.gj16...@georges.khaznadar.fr
References: 20141116125106.12949.41445.report...@georges.khaznadar.fr
 20141116134854.gj6...@lupin.home.powdarrmonkey.net
MIME-Version: 1.0
Content-Type: multipart/signed; micalg=pgp-sha256;
protocol=application/pgp-signature; boundary=M9kwpIYUMbI/2cCx
Content-Disposition: inline
In-Reply-To: 20141116134854.gj6...@lupin.home.powdarrmonkey.net
User-Agent: Mutt/1.5.23 (2014-03-12)
Status: RO
Content-Length: 2823
Lines: 81


--M9kwpIYUMbI/2cCx
Content-Type: text/plain; charset=utf-8
Content-Disposition: inline
Content-Transfer-Encoding: quoted-printable

Thank you for your fast response, Jonathan,
Hello Yves, Bonjour Yves,

--- French aparte 8
Yves, si tu nous lis, peux-tu faire une courte r=C3=A9ponse ? Je me permets
un Cc: vers d...@abuledu.org au cas o=C3=B9 l'adresse y...@ycombe.net ne
fonctionne pas.
--8

One reason why I fixed bugs for carmetal and ask for unblock is that
some teachers are using this program on a regular basis in my school.

As one of my reasons to maintain Debian packages is to help the
distribution which I am using at school, I think that I should issue an
intention to adopt carmetal.

I already met Yves Combe some years ago at RMLL, a French Free Software
meeting (http://rmll.info), however I wonder why he gave no reply about
the NMU.

Best regards,   Georges.

Jonathan Wiltshire a =C3=A9crit :
 Control: tag -1 moreinfo
=20
 On Sun, Nov 16, 2014 at 01:51:06PM +0100, Georges Khaznadar wrote:
  Please unblock package carmetal
 =20
  The RC bugs targetting this package have been fixed
=20
 The diff looks fine, but I'm not enthusiastic about the package. It's not
 currently in testing, and of the three bugs you close two (including the
 RC bug) didn't get a maintainer response, and the third did but in 2012.
=20
 How can we be sure that if released in Jessie, it won't just rot there
 instead?
=20
 --=20
 Jonathan Wiltshire  j...@debian.org
 Debian Developer http://people.debian.org/~jmw
=20
 4096R: 0xD3524C51 / 0A55 B7C5 1223 3942 86EC  74C3 5394 479D D352 4C51
=20



--=20
Georges KHAZNADAR et Jocelyne FOURNIER
22 rue des mouettes, 59240 Dunkerque France.
T=C3=A9l=C3=A9phone +33 (0)3 28 29 17 70


--M9kwpIYUMbI/2cCx
Content-Type: application/pgp-signature; name=signature.asc
Content-Description: Digital signature

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIVAwUBVGjSBxwoFpBxNq45AQieZg/+Ofd3SwSLR4LI1dP0S05UvWCVkGhK7qJT
tgG3JSVeU2K7FDZwC03NvkVKEld+ZsHjWbWUDxght6BJgOQ831sXyBH2lkc3DcxZ
Pe9kKtWEalcBNMfX/4raVBDWUIQsuxLpyrkPeS12LU6nA/nTbU79pQI1zb+fweK3
j45WQ/nBNlj7wOgR1Sm3piG9176YqogekgwG1KQ0CF6NIathq8Z13UrMO5cAcXNX
KfJo+QpKfF4eKlG8K/jWsr+n/Hmgpt23ikaLZ8efzillDbVbdD2jUSX7eiFwDKZQ
AdOlWyXDL2L4zn7s8DDOFHClITGds5rJXqmFt3ouYXY9kXdfDdBDGfeo7+gjtEe1
SGcNkqJkHrWwahI7/V54wirGCy+lQZhL/ilKVu7hV+oDgur3ksd6yQ7MqFuPljfk
4lReJa8x9HNz9qM0lcDIqV6WH4fyBj0tzhDf2MBzCAOoHa608QgXmg9Ne3rzXH0A
X7sydrWkiGzpQN/jnHQkg3NdRFkznYcpnnTm2lCOvwxTrPIvW7NdMF325+OiNDDK
e6NJZUVxGpfp++8cvFSgzbWKIaaqGdWoc4Nevq2uJRSHCoSUAT54OEKhNmDQ3/3r
2bofH/VTzts0GE8yDCynQvuIaumfE7aUPqvOC4QDARIFJtUQyrNe2OPGx9Si9PJk
IHhzk65Rm8E=
=kM2O
-END PGP SIGNATURE-

--M9kwpIYUMbI/2cCx--



signature.asc
Description: Digital signature


NEW changes in stable-new

2014-12-13 Thread Debian FTP Masters
Processing changes file: digikam_2.6.0-1+deb7u1_mips.changes
  ACCEPT


-- 
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/e1xzofu-0005fz...@franck.debian.org



Re: Bug#768618: pacemaker: FTBFS in jessie: build-dependency not installable: libqb-dev (= 0.16.0.real)

2014-12-13 Thread Paul Gevers
Summary: The current upstream version of pacemaker should not have
migrated to jessie because it build-dependency (and corresponding
dependency library) is not high enough in jessie. Either pacemaker
should be removed from jessie, or libqb in sid should be allowed to
migrate (after removal of the kfreebsd-* packages). I leave the decision
for either direction to the RT, but am willing file the appropriate bugs
on request.

On Wed, 12 Nov 2014 23:17:32 +0500 Andrey Rahmatullin w...@debian.org
wrote:
 On Sat, Nov 08, 2014 at 06:57:27PM +0100, Lucas Nussbaum wrote:
sbuild-build-depends-pacemaker-dummy : Depends: libqb-dev (= 
   0.16.0.real) but it is not going to be installed
 libqb 0.17.0-2 has no chance of migrating until release.

There are multiple interesting issues with the pacemake/libqb chain.

First of all, the shlibs file in libqb does not contain a version. The
result of this is that any package building against libqb will get an
unversioned run time dependency on libqb0. However, pacemaker requires
at least version 0.13; see the check in configure when building against
jessies version: configure: error: Version of libqb is too old: v0.13
or greater requried Bug 768922 indicates that that dependency is also
reflected during runtime. I will file a bug against libqb shortly to fix
the shlibs file.

Furthermore, libqb started to activate the build tests in version
0.14.3-2, which since than hasn't built on kfreebsd-* because it fails
on the tests. Nobody seems to have taken care to look into the FTBFS or
to file a RM request for the kfreebsd packages. However they blocked
migration of libqb to testing. Since the decision to not have kfreebsd-*
as release archs, this is sort of a shame as libqb would have migrated
to jessie if not for kfreebsd-* (no further RC bugs).

As I see it, the simple solution for these RC bugs is to remove
pacemaker from jessie. However, I want to also offer the idea of letting
libqb migrate to jessie, as it is only blocked by kfreebsd-* failing
builds (since March 2014). This would require a RM request against the
ftp.debian.org pseudo package.

If no response to this comes within the next 5 days, I will file a RM
bug to get pacemaker removed it from jessie.

Paul
* Touched this bug during https://wiki.debian.org/BSP/2014/12/nl/Tilburg



signature.asc
Description: OpenPGP digital signature


Re: Bug#768618: pacemaker: FTBFS in jessie: build-dependency not installable: libqb-dev (= 0.16.0.real)

2014-12-13 Thread Jonathan Wiltshire
On Sat, Dec 13, 2014 at 04:42:38PM +0100, Paul Gevers wrote:
 Summary: The current upstream version of pacemaker should not have
 migrated to jessie because it build-dependency (and corresponding
 dependency library) is not high enough in jessie. Either pacemaker
 should be removed from jessie, or libqb in sid should be allowed to
 migrate (after removal of the kfreebsd-* packages). I leave the decision
 for either direction to the RT, but am willing file the appropriate bugs
 on request.

Thanks for looking into this. I am already working on a way out of the
mess, which I'll have time to finish up in the next few days.

 On Wed, 12 Nov 2014 23:17:32 +0500 Andrey Rahmatullin w...@debian.org
 wrote:
  On Sat, Nov 08, 2014 at 06:57:27PM +0100, Lucas Nussbaum wrote:
 sbuild-build-depends-pacemaker-dummy : Depends: libqb-dev (= 
0.16.0.real) but it is not going to be installed
  libqb 0.17.0-2 has no chance of migrating until release.
 
 There are multiple interesting issues with the pacemake/libqb chain.
 
 First of all, the shlibs file in libqb does not contain a version. The
 result of this is that any package building against libqb will get an
 unversioned run time dependency on libqb0. However, pacemaker requires
 at least version 0.13; see the check in configure when building against
 jessies version: configure: error: Version of libqb is too old: v0.13
 or greater requried Bug 768922 indicates that that dependency is also
 reflected during runtime. I will file a bug against libqb shortly to fix
 the shlibs file.

It's worse than this; there appear to be dropped symbols in the library, so
it needs a soname bump (which I'm discussing with upstream, though I'm not
convinced that is going anywhere).

(That is partly why package managed to migrate, since britney considers
installability but not buildability, and libqb's symbols table is a
complete lie.)

 Furthermore, libqb started to activate the build tests in version
 0.14.3-2, which since than hasn't built on kfreebsd-* because it fails
 on the tests. Nobody seems to have taken care to look into the FTBFS or
 to file a RM request for the kfreebsd packages. However they blocked
 migration of libqb to testing. Since the decision to not have kfreebsd-*
 as release archs, this is sort of a shame as libqb would have migrated
 to jessie if not for kfreebsd-* (no further RC bugs).
 
 As I see it, the simple solution for these RC bugs is to remove
 pacemaker from jessie. However, I want to also offer the idea of letting
 libqb migrate to jessie, as it is only blocked by kfreebsd-* failing
 builds (since March 2014). This would require a RM request against the
 ftp.debian.org pseudo package.

Migrating libqb isn't really an option either - apart from the required
soname bump, the changes are quite large.

I'm working on a reversion of pacemaker instead, which is better (IMO) than
having to ship without one. That would make Debian a laughing-stock. The
final decision is not mine though, since I have a conflict of interest.


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

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



signature.asc
Description: Digital signature


Bug#773053: wheezy-pu: package nvidia-graphics-drivers/304.125-1

2014-12-13 Thread Andreas Beckmann
Package: release.debian.org
Severity: normal
Tags: wheezy
User: release.debian@packages.debian.org
Usertags: pu

Security update for CVE-2014-8298 (the NVIDIA part of DSA-3095-1)
requires a new upstream version ... I expect as with the previous
updates no DSA will be issued for non-free packages.

The changelog has grown a bit by adding missing ancient history bits.
The UNRELEASED entries have not been folded since the BTS already knows
about these versions and usually gets a bit confused if they disappear
from the history.

conftest.h is a reimplementation of NVIDIA's conftest.sh script (that
does not work reliably on Debian kernel header packages) and is unified
for all driver releases. The changelog mentions the upstream version
where a new test appeared for the first time (often beta releases), but
most of them get backported by NVIDIA to other release branches later
on (but I don't keep detailed track of them).

There is a typo fix in d/copyright that was merged from sid long ago,
but missed in the changelog.

As a followup we also need to update nvidia-graphics-modules once
nvidia-graphics-drivers is in wheezy-pu.


Andreas
Index: debian/module/conftest.h
===
--- debian/module/conftest.h	(.../tags/304.117-1)	(revision 5210)
+++ debian/module/conftest.h	(.../branches/304)	(revision 5210)
@@ -1,4 +1,4 @@
-/* synchronized with conftest.sh from 331.20, 325.15, 319.72, 304.116, 295.75, 173.14.38, 96.43.23, 71.86.15 */
+/* synchronized with conftest.sh from 346.22, 343.36, 340.65, 319.82, 304.125, 173.14.39, 96.43.23, 71.86.15 */
 
 #ifndef LINUX_VERSION_CODE
 #include linux/version.h
@@ -91,6 +91,13 @@
  #undef NV_PCI_GET_DOMAIN_BUS_AND_SLOT_PRESENT
 #endif
 
+/* Implement conftest.sh function pci_save_state */
+#if LINUX_VERSION_CODE = KERNEL_VERSION(2,6,10)
+ #define NV_PCI_SAVE_STATE_ARGUMENT_COUNT 1
+#else
+ #define NV_PCI_SAVE_STATE_ARGUMENT_COUNT 2
+#endif
+
 /* Implement conftest.sh function remap_pfn_range */
 #if LINUX_VERSION_CODE = KERNEL_VERSION(2,6,10)
  #define NV_REMAP_PFN_RANGE_PRESENT
@@ -108,6 +115,13 @@
  #define NV_AGP_BACKEND_ACQUIRE_ARGUMENT_COUNT 0
 #endif
 
+/* Implement conftest.sh function follow_pfn */
+#if LINUX_VERSION_CODE = KERNEL_VERSION(2,6,31)
+ #define NV_FOLLOW_PFN_PRESENT
+#else
+ #undef NV_FOLLOW_PFN_PRESENT
+#endif
+
 /* Implement conftest.sh function vmap */
 /* I can not find any released kernel that uses the 2 argument variant */
 /* of vmap */
@@ -174,6 +188,14 @@
  #undef NV_ACPI_DEVICE_OPS_HAS_MATCH
 #endif
 
+/* Implement conftest.sh function acpi_op_remove */
+/* All versions since 2.6.0 have this, didn't check earlier kernels */
+#if LINUX_VERSION_CODE = KERNEL_VERSION(3,9,0)
+ #define NV_ACPI_DEVICE_OPS_REMOVE_ARGUMENT_COUNT 1
+#else
+ #define NV_ACPI_DEVICE_OPS_REMOVE_ARGUMENT_COUNT 2
+#endif
+
 /* Implement conftest.sh function acpi_device_id */
 #if LINUX_VERSION_CODE = KERNEL_VERSION(2,6,23)
  #define NV_ACPI_DEVICE_ID_HAS_DRIVER_DATA
@@ -182,8 +204,6 @@
 #endif
 
 /* Implement conftest.sh function acquire_console_sem */
-// 2.6.38 renamed {acquire,release}_console_sem() to console_{,un}lock()
-// but NVIDIA neither checks for these new names nor uses them
 #if LINUX_VERSION_CODE = KERNEL_VERSION(2,4,10)  \
 LINUX_VERSION_CODE  KERNEL_VERSION(2,6,38)
  #define NV_ACQUIRE_CONSOLE_SEM_PRESENT
@@ -191,6 +211,13 @@
  #undef NV_ACQUIRE_CONSOLE_SEM_PRESENT
 #endif
 
+/* Implement conftest.sh function console_lock */
+#if LINUX_VERSION_CODE = KERNEL_VERSION(2,6,38)
+ #define NV_CONSOLE_LOCK_PRESENT
+#else
+ #undef NV_CONSOLE_LOCK_PRESENT
+#endif
+
 /* Implement conftest.sh function kmem_cache_create */
 /* Only kernels sometime before 2.4.0 don't have this function, and who */
 /* cares anymore */
@@ -361,7 +388,7 @@
 #endif
 
 /* Implement conftest.sh function drm_available */
-#if 0
+#if LINUX_VERSION_CODE = KERNEL_VERSION(3,9,0)  IS_ENABLED(CONFIG_DRM)
  #define NV_DRM_AVAILABLE
 #else
  #undef NV_DRM_AVAILABLE
@@ -401,7 +428,26 @@
 #else
  #undef NV_VM_OPERATIONS_STRUCT_HAS_FAULT
 #endif
+#if LINUX_VERSION_CODE = KERNEL_VERSION(2,6,27)
+ #define NV_VM_OPERATIONS_STRUCT_HAS_ACCESS
+#else
+ #undef NV_VM_OPERATIONS_STRUCT_HAS_ACCESS
+#endif
 
+/* Implement conftest.sh function fault_flags */
+#if LINUX_VERSION_CODE = KERNEL_VERSION(2,6,23)
+ #define NV_FAULT_FLAG_PRESENT
+#else
+ #undef NV_FAULT_FLAG_PRESENT
+#endif
+
+/* Implement conftest.sh function atomic64_type */
+#if LINUX_VERSION_CODE = KERNEL_VERSION(2,6,31)
+ #define NV_ATOMIC64_PRESENT
+#else
+ #undef NV_ATOMIC64_PRESENT
+#endif
+
 /* Implement conftest.sh function task_struct */
 #if LINUX_VERSION_CODE = KERNEL_VERSION(2,6,29)
  #define NV_TASK_STRUCT_HAS_CRED
@@ -424,6 +470,53 @@
  #undef NV_ADDRESS_SPACE_INIT_ONCE_PRESENT
 #endif
 
+/* Implement conftest.sh function kbasename */
+#if LINUX_VERSION_CODE = KERNEL_VERSION(3,8,0)
+ #define NV_KBASENAME_PRESENT
+#else
+ #undef NV_KBASENAME_PRESENT
+#endif
+
+/* Implement 

Bug#773056: unblock: gnome-shell/3.14.2-3

2014-12-13 Thread Josselin Mouette
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Hi,

please unblock gnome-shell for a pair of bugfixes.

gnome-shell (3.14.2-3) unstable; urgency=medium

  * Add missing dependency on mutter. Closes: #764715.
  * 10_background_race.patch: fix a race condition when loading two 
backgrounds made of different XML files.

The second change is required for the desktop-base version we will have
in jessie to actually work.

unblock gnome-shell/3.14.2-3

Thanks,
-- 
 .''`.  Josselin Mouette
: :' :
`. `'
  `-


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



Bug#773056: unblock: gnome-shell/3.14.2-3

2014-12-13 Thread Josselin Mouette
Le samedi 13 décembre 2014 à 20:50 +0100, Josselin Mouette a écrit :
 gnome-shell (3.14.2-3) unstable; urgency=medium
 
   * Add missing dependency on mutter. Closes: #764715.
   * 10_background_race.patch: fix a race condition when loading two 
 backgrounds made of different XML files.

Sorry, forgot the diff.

-- 
 .''`.  Josselin Mouette
: :' :
`. `'
  `-
Index: debian/control
===
--- debian/control	(révision 44030)
+++ debian/control	(copie de travail)
@@ -95,6 +95,7 @@
  gnome-themes-standard,
  gnome-backgrounds (= 3.13.90),
  gsettings-desktop-schemas (= 3.11),
+ mutter (= 3.14.2),
  python (= 2.6),
  telepathy-mission-control-5,
 Recommends: gkbd-capplet,
Index: debian/control.in
===
--- debian/control.in	(révision 44030)
+++ debian/control.in	(copie de travail)
@@ -91,6 +91,7 @@
  gnome-themes-standard,
  gnome-backgrounds (= 3.13.90),
  gsettings-desktop-schemas (= 3.11),
+ mutter (= 3.14.2),
  python (= 2.6),
  telepathy-mission-control-5,
 Recommends: gkbd-capplet,
Index: debian/changelog
===
--- debian/changelog	(révision 44030)
+++ debian/changelog	(copie de travail)
@@ -1,3 +1,11 @@
+gnome-shell (3.14.2-3) unstable; urgency=medium
+
+  * Add missing dependency on mutter. Closes: #764715.
+  * 10_background_race.patch: fix a race condition when loading two 
+backgrounds made of different XML files.
+
+ -- Josselin Mouette j...@debian.org  Fri, 12 Dec 2014 22:32:31 +0100
+
 gnome-shell (3.14.2-2) unstable; urgency=medium
 
   * Add debian/patches/51-Delay-caribou-daemon-invocation.patch: Delay the
Index: debian/patches/series
===
--- debian/patches/series	(révision 44030)
+++ debian/patches/series	(copie de travail)
@@ -1,6 +1,7 @@
 01_network_list.patch
 02_auth_prompt.patch
 #10-make-NetworkManager-optional.patch
+10_background_race.patch
 27-nm-libexec-path.patch
 #30-remoteMenu-Prevent-the-shell-from-becoming-unrespons.patch
 41-handle-logind-fail.patch
Index: debian/patches/10_background_race.patch
===
--- debian/patches/10_background_race.patch	(révision 0)
+++ debian/patches/10_background_race.patch	(révision 44045)
@@ -0,0 +1,71 @@
+From 07180bef4d7264789b389b3ac9c6426ce269436b Mon Sep 17 00:00:00 2001
+From: Josselin Mouette j...@debian.org
+Date: Fri, 12 Dec 2014 21:57:11 +0100
+Subject: [PATCH] background: fix a race condition when loading several
+ animations
+
+When loading several animations at the same time, the last call
+overrides the result for all of them.
+
+This commit caches all animations separately based on the source's
+schemas.
+
+https://bugzilla.gnome.org/show_bug.cgi?id=741453
+---
+ js/ui/background.js | 12 +++-
+ 1 file changed, 7 insertions(+), 5 deletions(-)
+
+diff --git a/js/ui/background.js b/js/ui/background.js
+index ad0cacc..ad75c65 100644
+--- a/js/ui/background.js
 b/js/ui/background.js
+@@ -134,6 +134,7 @@ const BackgroundCache = new Lang.Class({
+ this._pendingFileLoads = [];
+ this._fileMonitors = {};
+ this._backgroundSources = {};
++this._animations = {};
+ },
+ 
+ monitorFile: function(filename) {
+@@ -152,12 +153,13 @@ const BackgroundCache = new Lang.Class({
+ 
+ getAnimation: function(params) {
+ params = Params.parse(params, { filename: null,
++settingsSchema: null,
+ onLoaded: null });
+ 
+-if (this._animationFilename == params.filename) {
++if (this._animations[params.settingsSchema]  this._animations[params.settingsSchema].filename == params.filename) {
+ if (params.onLoaded) {
+ let id = GLib.idle_add(GLib.PRIORITY_DEFAULT, Lang.bind(this, function() {
+-params.onLoaded(this._animation);
++params.onLoaded(this._animations[params.settingsSchema]);
+ return GLib.SOURCE_REMOVE;
+ }));
+ GLib.Source.set_name_by_id(id, '[gnome-shell] params.onLoaded');
+@@ -168,12 +170,11 @@ const BackgroundCache = new Lang.Class({
+ let animation = new Animation({ filename: params.filename });
+ 
+ animation.load(Lang.bind(this, function() {
+-   this._animationFilename = params.filename;
+-   this._animation = animation;
++   this._animations[params.settingsSchema] = animation;
+ 
+if (params.onLoaded) {
+let id = GLib.idle_add(GLib.PRIORITY_DEFAULT, Lang.bind(this, function() {
+-   

Processed: Re: Bug#771148: (pre-upload) unblock: pypy/2.4.0+dfsg-2

2014-12-13 Thread Debian Bug Tracking System
Processing control commands:

 tags -1 - moreinfo
Bug #771148 [release.debian.org] (pre-upload) unblock: pypy/2.4.0+dfsg-2
Removed tag(s) moreinfo.

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


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



Bug#771148: (pre-upload) unblock: pypy/2.4.0+dfsg-2

2014-12-13 Thread Stefano Rivera
Control: tags -1 - moreinfo

 As you noted on irc, it still fails after 3 attempts, so a new upload is
 probably necessary. Please remove the moreinfo tag once the mipsel issue is
 resolved.

Another (pair of) give-backs resolved it.

SR

-- 
Stefano Rivera
  http://tumbleweed.org.za/
  +1 415 683 3272


-- 
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/20141213195913.gc3...@bach.rivera.co.za



Bug#773034: marked as done (nmu: tulip_4.6.0dfsg-2)

2014-12-13 Thread Debian Bug Tracking System
Your message dated Sat, 13 Dec 2014 20:26:01 +
with message-id 20141213202601.gk17...@lupin.home.powdarrmonkey.net
and subject line Re: Bug#773034: nmu: tulip_4.6.0dfsg-2
has caused the Debian Bug report #773034,
regarding nmu: tulip_4.6.0dfsg-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.)


-- 
773034: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=773034
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 tulip_4.6.0dfsg-2 . ALL . -m Rebuild against new binutils.

As ususally after a new binutils upload ...


Andreas
---End Message---
---BeginMessage---
On Sat, Dec 13, 2014 at 02:47:21PM +0100, Andreas Beckmann wrote:
 nmu tulip_4.6.0dfsg-2 . ALL . -m Rebuild against new binutils.
 
 As ususally after a new binutils upload ...

Scheduled.

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

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



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


Bug#773042: unblock: simgrid/3.11.1-8

2014-12-13 Thread Jonathan Wiltshire
Control: tag -1 moreinfo

On Sat, Dec 13, 2014 at 03:57:47PM +0100, Martin Quinson wrote:
 +  * Install tesh and graphicator tools as part of the libsimgrid-dev,
 +not as part of libsimgrid3.11 to allow the co-installation of
 +several library versions (Closes: #755047).

Do you need to breaks+replaces there?


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

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



signature.asc
Description: Digital signature


Processed: Re: Bug#773042: unblock: simgrid/3.11.1-8

2014-12-13 Thread Debian Bug Tracking System
Processing control commands:

 tag -1 moreinfo
Bug #773042 [release.debian.org] unblock: simgrid/3.11.1-8
Added tag(s) moreinfo.

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


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



Bug#773042: unblock: simgrid/3.11.1-8

2014-12-13 Thread Martin Quinson
On Sat, Dec 13, 2014 at 08:30:28PM +, Jonathan Wiltshire wrote:
 Control: tag -1 moreinfo
 
 On Sat, Dec 13, 2014 at 03:57:47PM +0100, Martin Quinson wrote:
  +  * Install tesh and graphicator tools as part of the libsimgrid-dev,
  +not as part of libsimgrid3.11 to allow the co-installation of
  +several library versions (Closes: #755047).
 
 Do you need to breaks+replaces there?

Damn, you're right. Sorry.

I'll do that ASAP.
Mt

signature.asc
Description: Digital signature


Bug#773042: marked as done (unblock: simgrid/3.11.1-8)

2014-12-13 Thread Debian Bug Tracking System
Your message dated Sat, 13 Dec 2014 21:04:56 +
with message-id 20141213210456.gm17...@lupin.home.powdarrmonkey.net
and subject line Re: Bug#773042: unblock: simgrid/3.11.1-8
has caused the Debian Bug report #773042,
regarding unblock: simgrid/3.11.1-8
to be marked as done.

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

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


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

The new version fixes the RC bug #755047; the debdiff is attached.

Also, it'd be cool if you could cancel the autorm against that package. Sorry,
I didn't fill that unblock notice in time...

Thanks for your hard work,
Mt

unblock simgrid/3.11.1-8

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

Kernel: Linux 3.16-2-amd64 (SMP w/4 CPU cores)

-- 
Si les grands esprits se rencontrent, les petits esprits, eux, se cognent.
diff -Nru simgrid-3.11.1/debian/changelog simgrid-3.11.1/debian/changelog
--- simgrid-3.11.1/debian/changelog 2014-07-05 00:20:44.0 +0200
+++ simgrid-3.11.1/debian/changelog 2014-12-09 01:48:14.0 +0100
@@ -1,3 +1,16 @@
+simgrid (3.11.1-8) unstable; urgency=medium
+
+  * d/c: update VCS to not use any deprecated URLs
+  * d/c: improve short descriptions
+  * d/c: libsimgrid-java suggests java-virtual-machine, captain obvious.
+  * Install tesh and graphicator tools as part of the libsimgrid-dev,
+not as part of libsimgrid3.11 to allow the co-installation of
+several library versions (Closes: #755047).
+  * d/p/fix-bashism.diff: fix a bashism that mainly appears on Mac OSX
+(Closes: #772329).
+
+ -- Martin Quinson mquin...@debian.org  Tue, 09 Dec 2014 01:47:57 +0100
+
 simgrid (3.11.1-7) unstable; urgency=medium
 
   * Disable LTO on all non-AMD architectures to circumvent a seemingly
diff -Nru simgrid-3.11.1/debian/control simgrid-3.11.1/debian/control
--- simgrid-3.11.1/debian/control   2014-07-05 00:20:44.0 +0200
+++ simgrid-3.11.1/debian/control   2014-12-09 01:48:14.0 +0100
@@ -11,8 +11,8 @@
  transfig, ghostscript, texlive-font-utils
 Standards-Version: 3.9.5
 Homepage: http://simgrid.gforge.inria.fr/
-Vcs-Git: git://git.debian.org/git/collab-maint/simgrid.git
-Vcs-Browser: http://git.debian.org/?p=collab-maint/simgrid.git
+Vcs-Git: git://anonscm.debian.org/collab-maint/simgrid.git
+Vcs-Browser: http://anonscm.debian.org/gitweb/?p=collab-maint/simgrid.git
 
 Package: libsimgrid3.11
 Architecture: any
@@ -34,7 +34,7 @@
 Section: doc
 Depends: ${misc:Depends}
 Conflicts: simgrid ( 3.11)
-Description: Toolkit for scalable simulation of distributed applications
+Description: Documentation for the SimGrid Toolkit
  SimGrid is a toolkit that provides core functionalities for the simulation of
  distributed applications in heterogeneous distributed environments. SimGrid
  can be used as a Grid simulator, a P2P simulator, a Cloud simulator, a MPI
@@ -50,7 +50,8 @@
 Depends: ${shlibs:Depends}, ${misc:Depends}, libsimgrid3.11 (= 
${source:Version})
 Recommends: simgrid-doc (= ${source:Version})
 Conflicts: simgrid ( 3.11)
-Description: Toolkit for scalable simulation of distributed applications
+Suggests: java-virtual-machine
+Description: Java bindings for the SimGrid Toolkit
  SimGrid is a toolkit that provides core functionalities for the simulation of
  distributed applications in heterogeneous distributed environments. SimGrid
  can be used as a Grid simulator, a P2P simulator, a Cloud simulator, a MPI
@@ -74,7 +75,7 @@
 Conflicts: simgrid
 Replaces: simgrid
 Provides: simgrid
-Description: Toolkit for scalable simulation of distributed applications
+Description: Development files for the SimGrid Toolkit
  SimGrid is a toolkit that provides core functionalities for the simulation of
  distributed applications in heterogeneous distributed environments. SimGrid
  can be used as a Grid simulator, a P2P simulator, a Cloud simulator, a MPI
diff -Nru simgrid-3.11.1/debian/libsimgrid3.11.install 
simgrid-3.11.1/debian/libsimgrid3.11.install
--- simgrid-3.11.1/debian/libsimgrid3.11.install2014-07-05 
00:20:44.0 +0200
+++ simgrid-3.11.1/debian/libsimgrid3.11.install2014-12-09 
01:48:14.0 +0100
@@ -1,6 +1 @@
 usr/lib/libsimgrid.so.3.11
-
-usr/bin/tesh
-usr/share/man/man1/tesh.1
-

Bug#773042: unblock: simgrid/3.11.1-8

2014-12-13 Thread Martin Quinson
On Sat, Dec 13, 2014 at 08:30:28PM +, Jonathan Wiltshire wrote:
 Control: tag -1 moreinfo
 
 On Sat, Dec 13, 2014 at 03:57:47PM +0100, Martin Quinson wrote:
  +  * Install tesh and graphicator tools as part of the libsimgrid-dev,
  +not as part of libsimgrid3.11 to allow the co-installation of
  +several library versions (Closes: #755047).
 
 Do you need to breaks+replaces there?

Would this suffice?
  * add some dependencies to really fix #755047:
- libsimgrid-dev breaks libsimgrid3.10 and libsimgrid3.11 (3.11.1-8)
- libsimgrid3.11 breaks+replaces libsimgrid3.10.
- This should hint apt about how to solve my mess :-(

Thanks for the hint and sorry again,
Mt


-- 
Autrefois, c'était l'excellence qui faisait la notoriété.
Maintenant, c'est la notoriété qui fait l'excellence.
  --- Alain Finkielkraut


signature.asc
Description: Digital signature


Bug#773063: pre-approval unblock: quotatool/1.4.12-1.1

2014-12-13 Thread Jan Wagner
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Could you please state if you would approve to update the quotatool
package via testing-proposed-updates, as there is a blocking release in
unstable.

This NMU is fixing #711502 and provides a working quota stack for jessie
again as the package is actually not in testing.

changelog:

quotatool (1.4.12-1.1) unstable; urgency=medium
.
  * Adding debian/patches/ignore_initramfs.diff takes from upstream
(Closes: #711502)

The full debdiff stat is:

 changelog |7 ++
 patches/ignore_initramfs.diff |  138
++
 patches/series|1
 3 files changed, 146 insertions(+)

More details can be found at:
https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=711502#24

The source debdiff is attached.

If you achnowledge this upload, I would change distribution and upload
this via tpu.

Many thanks, Jan.
-- 
Never write mail to w...@spamfalle.info, you have been warned!
-BEGIN GEEK CODE BLOCK-
Version: 3.12
GIT d-- s+: a C+++ UL P+ L+++ E--- W+++ N+++ o++ K++ w--- O M V- PS
PE Y++
PGP++ t-- 5 X R tv- b+ DI D+ G++ e++ h r+++ y
--END GEEK CODE BLOCK--



diff -Nru quotatool-1.4.12/debian/changelog quotatool-1.4.12/debian/changelog
--- quotatool-1.4.12/debian/changelog	2012-02-26 13:18:20.0 +0100
+++ quotatool-1.4.12/debian/changelog	2014-12-12 15:44:26.0 +0100
@@ -1,3 +1,10 @@
+quotatool (1.4.12-1.1) unstable; urgency=medium
+
+  * Adding debian/patches/ignore_initramfs.diff takes from upstream
+(Closes: #711502)
+
+ -- Jan Wagner w...@cyconet.org  Fri, 12 Dec 2014 14:27:17 +0100
+
 quotatool (1.4.12-1) unstable; urgency=low
 
   * New upstream release
diff -Nru quotatool-1.4.12/debian/patches/ignore_initramfs.diff quotatool-1.4.12/debian/patches/ignore_initramfs.diff
--- quotatool-1.4.12/debian/patches/ignore_initramfs.diff	1970-01-01 01:00:00.0 +0100
+++ quotatool-1.4.12/debian/patches/ignore_initramfs.diff	2014-12-12 14:49:42.0 +0100
@@ -0,0 +1,138 @@
+From a83c6d0d1bf623234e860dd7bfd3840c812fc32c Mon Sep 17 00:00:00 2001
+From: Johan Ekenberg jo...@ekenberg.se
+Date: Sat, 22 Dec 2012 21:24:04 +0100
+Subject: [PATCH] Ignore linux initramfs mount entry for rootfs
+
+---
+ src/system.c | 34 --
+ 1 file changed, 20 insertions(+), 14 deletions(-)
+
+diff --git a/src/system.c b/src/system.c
+index e2e236f..38bf1df 100644
+--- a/src/system.c
 b/src/system.c
+@@ -48,7 +48,7 @@ struct mntent {
+ 
+ 
+ 
+-/* 
++/*
+  * system_getfs
+  * find and verify the device file for
+  * a given filesystem
+@@ -72,7 +72,7 @@ fs_t *system_getfs (char *fs_spec) {
+ 
+ 
+ #if HAVE_SYS_MNTCTL_H /* AIX, we are again in trouble. */
+-  /* first mntctl call is only for getting the size of 
++  /* first mntctl call is only for getting the size of
+* vmnt array. is there a better way? */
+   vmnt_retval = mntctl (MCTL_QUERY, sizeof(int), (char*)vmnt_size);
+   if (vmnt_retval != -1) {
+@@ -102,7 +102,7 @@ fs_t *system_getfs (char *fs_spec) {
+ 
+   /* loop through mtab until we get a match */
+   do {
+-
++
+ /* read the next entry */
+ #if HAVE_SYS_MNTTAB_H
+ int retval;
+@@ -112,9 +112,9 @@ fs_t *system_getfs (char *fs_spec) {
+ current_fs=getmntent(etc_mtab);
+ if ( ! current_fs ) {
+ #elif HAVE_SYS_MNTCTL_H /* AIX, we are again in trouble. */
+-   current_fs-mnt_special = 
++   current_fs-mnt_special =
+ 	(char*)vmnt + (vmnt-vmt_data[VMT_OBJECT].vmt_off);
+-   current_fs-mnt_mountp = 
++   current_fs-mnt_mountp =
+ 	(char*)vmnt + (vmnt-vmt_data[VMT_STUB].vmt_off);
+current_fs-vmt_flags = vmnt-vmt_flags;
+vmnt = (struct vmount*) ((char*)vmnt + vmnt-vmt_length);
+@@ -123,10 +123,16 @@ fs_t *system_getfs (char *fs_spec) {
+   output_error (Filesystem %s does not exist, fs_spec);
+   return NULL;
+ }
+-
++
+ output_debug (Checking device '%s', mounted at '%s',
+ 		  current_fs-mnt_special, current_fs-mnt_mountp);
+ 
++/* Ignore 'rootfs' if looking for mountpoint '/' - created and mounted by Linux initramfs */
++if (strcmp(/, fs_spec) == 0  strcmp(current_fs-mnt_special, rootfs) == 0) {
++output_debug (Ignoring initramfs 'rootfs'\n);
++continue;
++}
++
+ /* does the name given match the mount pt or device file ? */
+ if ( ! strcmp(current_fs-mnt_special, fs_spec)
+ 	 || ! strcmp(current_fs-mnt_mountp, fs_spec) ) {
+@@ -161,7 +167,7 @@ fs_t *system_getfs (char *fs_spec) {
+ 	}
+   }
+   else {
+-#endif /* HAVE_MNTENT_H */	
++#endif /* HAVE_MNTENT_H */
+   strncpy (ent-device, current_fs-mnt_special, PATH_MAX-1);
+   strncpy (ent-mount_pt, current_fs-mnt_mountp, PATH_MAX-1);
+ #if HAVE_MNTENT_H
+@@ -171,7 +177,7 @@ fs_t *system_getfs (char *fs_spec) {
+   continue;
+ }
+ 
+-  } while ( ! done ) ;  
++  } while ( ! done ) ;
+ 
+ 
+   /* can we write to the 

Bug#773064: unblock: gnome-menus/3.13.3-4

2014-12-13 Thread Josselin Mouette
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Hi,

please unblock gnome-menus for the following changes.

gnome-menus (3.13.3-4) unstable; urgency=medium

  * menus.blacklist:
+ Add everything from xscreensaver-data. Closes: #771710.
  * 30_xdg_syntax.patch: patch from upstream git. Support multiple 
desktops in XDG_CURRENT_DESKTOP. Closes: #773013.

The first change is about blacklist lots of useless entries. The second
makes the menu have the correct contents with gnome-classic.

unblock gnome-menus/3.13.3-4

Thanks,
-- 
 .''`.  Josselin Mouette
: :' :
`. `'
  `-
Index: debian/changelog
===
--- debian/changelog	(révision 43961)
+++ debian/changelog	(copie de travail)
@@ -1,3 +1,12 @@
+gnome-menus (3.13.3-4) unstable; urgency=medium
+
+  * menus.blacklist:
++ Add everything from xscreensaver-data. Closes: #771710.
+  * 30_xdg_syntax.patch: patch from upstream git. Support multiple 
+desktops in XDG_CURRENT_DESKTOP. Closes: #773013.
+
+ -- Josselin Mouette j...@debian.org  Sat, 13 Dec 2014 21:48:50 +0100
+
 gnome-menus (3.13.3-3) unstable; urgency=medium
 
   * menus.blacklist:
Index: debian/patches/series
===
--- debian/patches/series	(révision 43961)
+++ debian/patches/series	(copie de travail)
@@ -6,3 +6,4 @@
 09_games-menu.patch
 11_science-menu.patch
 12_alacarte.patch
+30_xdg_syntax.patch
Index: debian/patches/30_xdg_syntax.patch
===
--- debian/patches/30_xdg_syntax.patch	(révision 0)
+++ debian/patches/30_xdg_syntax.patch	(révision 44046)
@@ -0,0 +1,168 @@
+From b4546ab43c2c7ef6fb6cb7e5db83dc3975b56e8e Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Alberts=20Muktup=C4=81vels?= alberts.muktupav...@gmail.com
+Date: Mon, 27 Oct 2014 18:41:34 +0200
+Subject: desktop-entries: support multiple desktops in XDG_CURRENT_DESKTOP
+
+This is based on glib commit:
+5a5e16e93c4f11e635918ecdb41681f63fd05a39
+
+diff --git a/libmenu/desktop-entries.c b/libmenu/desktop-entries.c
+index 326f311..bd4f886 100644
+--- a/libmenu/desktop-entries.c
 b/libmenu/desktop-entries.c
+@@ -85,32 +85,27 @@ unix_basename_from_path (const char *path)
+ return path;
+ }
+ 
+-static const char *
+-get_current_desktop (void)
++static const gchar * const *
++get_current_desktops (void)
+ {
+-  static char *current_desktop = NULL;
++  static gchar **result;
+ 
+-  /* Support XDG_CURRENT_DESKTOP environment variable; this can be used
+-   * to abuse gnome-menus in non-GNOME desktops. */
+-  if (!current_desktop)
++  if (g_once_init_enter (result))
+ {
+-  const char *desktop;
++  const gchar *desktops;
++  gchar **tmp;
+ 
+-  desktop = g_getenv (XDG_CURRENT_DESKTOP);
++  desktops = g_getenv (XDG_CURRENT_DESKTOP);
+ 
+-  /* Note: if XDG_CURRENT_DESKTOP is set but empty, do as if it
+-   * was not set */
+-  if (!desktop || desktop[0] == '\0')
+-current_desktop = g_strdup (GNOME);
+-  else
+-current_desktop = g_strdup (desktop);
+-}
++  if (desktops)
++desktops = ;
+ 
+-  /* Using * means skipping desktop-related checks */
+-  if (g_strcmp0 (current_desktop, *) == 0)
+-return NULL;
++  tmp = g_strsplit (desktops, :, 0);
++
++  g_once_init_leave (result, tmp);
++}
+ 
+-  return current_desktop;
++  return  (const gchar **) result;
+ }
+ 
+ static GIcon *
+@@ -151,52 +146,58 @@ key_file_get_icon (GKeyFile *key_file)
+ static gboolean
+ key_file_get_show_in (GKeyFile *key_file)
+ {
+-  const gchar *current_desktop;
+-  gchar **strv;
++  const gchar * const *current_desktops;
++  gchar **only_show_in;
++  gchar **not_show_in;
+   gboolean show_in = TRUE;
+-  int i;
+-
+-  current_desktop = get_current_desktop ();
+-  if (!current_desktop)
+-return TRUE;
+-
+-  strv = g_key_file_get_string_list (key_file,
+- DESKTOP_ENTRY_GROUP,
+- OnlyShowIn,
+- NULL,
+- NULL);
+-  if (strv)
++  gint i;
++
++  current_desktops = get_current_desktops ();
++  only_show_in = g_key_file_get_string_list (key_file,
++ DESKTOP_ENTRY_GROUP,
++ OnlyShowIn,
++ NULL,
++ NULL);
++  not_show_in = g_key_file_get_string_list (key_file,
++DESKTOP_ENTRY_GROUP,
++NotShowIn,
++NULL,
++NULL);
++
++  for (i = 0; current_desktops[i]; i++)
+ {
+-  show_in = FALSE;
+-  for (i = 0; strv[i]; i++)
++  gint j;
++
++  if 

Bug#773066: unblock: gramps/4.1.1~dfsg-2

2014-12-13 Thread Ross Gammon
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock package gramps

The clean target was failing which is a breach of Debian Policy (4.9). Allowing
this fix into Jessie will prevent a FTBFS during a second build. Bug:
https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=772573

Debdiff:
diff -Nru gramps-4.1.1~dfsg/debian/changelog gramps-4.1.1~dfsg/debian/changelog
--- gramps-4.1.1~dfsg/debian/changelog  2014-10-24 19:32:28.0 +0200
+++ gramps-4.1.1~dfsg/debian/changelog  2014-12-08 19:33:21.0 +0100
@@ -1,3 +1,9 @@
+gramps (4.1.1~dfsg-2) unstable; urgency=medium
+
+  * Fix clean target (Closes: #772573)
+
+ -- Ross Gammon rossgam...@mail.dk  Mon, 08 Dec 2014 19:25:11 +0100
+
 gramps (4.1.1~dfsg-1) unstable; urgency=medium

   * New upstream release
diff -Nru gramps-4.1.1~dfsg/debian/rules gramps-4.1.1~dfsg/debian/rules
--- gramps-4.1.1~dfsg/debian/rules  2014-10-24 19:32:28.0 +0200
+++ gramps-4.1.1~dfsg/debian/rules  2014-12-08 19:33:21.0 +0100
@@ -30,6 +30,13 @@
chmod a-x
$(CURDIR)/debian/gramps/usr/share/gramps/images/22x22/gramps*.png
chmod a-x
$(CURDIR)/debian/gramps/usr/share/gramps/images/16x16/gramps*.png

+# Fix clean target
+override_dh_clean:
+   rm -rf data/tips.xml
+   rm -rf gramps/plugins/lib/holidays.xml
+   rm -rf po/.intltool-merge-cache
+   dh_clean
+
 get-orig-source:
# To get ~dfsg, need to rename orig.tar after uscan
uscan --verbose --destdir . --force-download

unblock gramps/4.1.1~dfsg-2

-- System Information:
Debian Release: jessie/sid
  APT prefers trusty-security
  APT policy: (990, 'trusty-security'), (900, 'trusty-updates'), (500,
'trusty'), (400, 'trusty-proposed'), (200, 'utopic-proposed'), (100, 'trusty-
backports')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 3.13.0-43-generic (SMP w/4 CPU cores)


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



Bug#773056: marked as done (unblock: gnome-shell/3.14.2-3)

2014-12-13 Thread Debian Bug Tracking System
Your message dated Sat, 13 Dec 2014 23:17:29 +
with message-id 20141213231729.gn17...@lupin.home.powdarrmonkey.net
and subject line Re: Bug#773056: unblock: gnome-shell/3.14.2-3
has caused the Debian Bug report #773056,
regarding unblock: gnome-shell/3.14.2-3
to be marked as done.

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

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


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

Hi,

please unblock gnome-shell for a pair of bugfixes.

gnome-shell (3.14.2-3) unstable; urgency=medium

  * Add missing dependency on mutter. Closes: #764715.
  * 10_background_race.patch: fix a race condition when loading two 
backgrounds made of different XML files.

The second change is required for the desktop-base version we will have
in jessie to actually work.

unblock gnome-shell/3.14.2-3

Thanks,
-- 
 .''`.  Josselin Mouette
: :' :
`. `'
  `-
---End Message---
---BeginMessage---
On Sat, Dec 13, 2014 at 08:50:17PM +0100, Josselin Mouette wrote:
 please unblock gnome-shell for a pair of bugfixes.
 
 gnome-shell (3.14.2-3) unstable; urgency=medium
 
   * Add missing dependency on mutter. Closes: #764715.
   * 10_background_race.patch: fix a race condition when loading two 
 backgrounds made of different XML files.

Unblocked, overriding the unblock for -2.

Thanks,

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

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



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


Bug#773063: pre-approval unblock: quotatool/1.4.12-1.1

2014-12-13 Thread Jonathan Wiltshire
Control: tag -1 moreinfo

On Sat, Dec 13, 2014 at 10:26:59PM +0100, Jan Wagner wrote:
 Could you please state if you would approve to update the quotatool
 package via testing-proposed-updates, as there is a blocking release in
 unstable.
 
 This NMU is fixing #711502 and provides a working quota stack for jessie
 again as the package is actually not in testing.

Normally this wouldn't even be up for discussion for a package that was
removed in July and only fixed in November. But I think people might be
surprised that we shipped without a working quotatool.

However I'm not prepared to accept it through t-p-u. The version in
unstable should be reverted with an epoch, and get the full 10 days ageing
period.

(The confusion behind 1.6.2-1.1, a non-maintainer upload signed by the
maintainer, defeats me completely...)


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

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



signature.asc
Description: Digital signature


Processed: Re: Bug#773063: pre-approval unblock: quotatool/1.4.12-1.1

2014-12-13 Thread Debian Bug Tracking System
Processing control commands:

 tag -1 moreinfo
Bug #773063 [release.debian.org] pre-approval unblock: quotatool/1.4.12-1.1
Added tag(s) moreinfo.

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


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



Bug#773066: marked as done (unblock: gramps/4.1.1~dfsg-2)

2014-12-13 Thread Debian Bug Tracking System
Your message dated Sat, 13 Dec 2014 23:28:54 +
with message-id 20141213232854.gp17...@lupin.home.powdarrmonkey.net
and subject line Re: Bug#773066: unblock: gramps/4.1.1~dfsg-2
has caused the Debian Bug report #773066,
regarding unblock: gramps/4.1.1~dfsg-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.)


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

The clean target was failing which is a breach of Debian Policy (4.9). Allowing
this fix into Jessie will prevent a FTBFS during a second build. Bug:
https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=772573

Debdiff:
diff -Nru gramps-4.1.1~dfsg/debian/changelog gramps-4.1.1~dfsg/debian/changelog
--- gramps-4.1.1~dfsg/debian/changelog  2014-10-24 19:32:28.0 +0200
+++ gramps-4.1.1~dfsg/debian/changelog  2014-12-08 19:33:21.0 +0100
@@ -1,3 +1,9 @@
+gramps (4.1.1~dfsg-2) unstable; urgency=medium
+
+  * Fix clean target (Closes: #772573)
+
+ -- Ross Gammon rossgam...@mail.dk  Mon, 08 Dec 2014 19:25:11 +0100
+
 gramps (4.1.1~dfsg-1) unstable; urgency=medium

   * New upstream release
diff -Nru gramps-4.1.1~dfsg/debian/rules gramps-4.1.1~dfsg/debian/rules
--- gramps-4.1.1~dfsg/debian/rules  2014-10-24 19:32:28.0 +0200
+++ gramps-4.1.1~dfsg/debian/rules  2014-12-08 19:33:21.0 +0100
@@ -30,6 +30,13 @@
chmod a-x
$(CURDIR)/debian/gramps/usr/share/gramps/images/22x22/gramps*.png
chmod a-x
$(CURDIR)/debian/gramps/usr/share/gramps/images/16x16/gramps*.png

+# Fix clean target
+override_dh_clean:
+   rm -rf data/tips.xml
+   rm -rf gramps/plugins/lib/holidays.xml
+   rm -rf po/.intltool-merge-cache
+   dh_clean
+
 get-orig-source:
# To get ~dfsg, need to rename orig.tar after uscan
uscan --verbose --destdir . --force-download

unblock gramps/4.1.1~dfsg-2

-- System Information:
Debian Release: jessie/sid
  APT prefers trusty-security
  APT policy: (990, 'trusty-security'), (900, 'trusty-updates'), (500,
'trusty'), (400, 'trusty-proposed'), (200, 'utopic-proposed'), (100, 'trusty-
backports')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 3.13.0-43-generic (SMP w/4 CPU cores)
---End Message---
---BeginMessage---
On Sat, Dec 13, 2014 at 11:14:13PM +0100, Ross Gammon wrote:
 The clean target was failing which is a breach of Debian Policy (4.9). 
 Allowing
 this fix into Jessie will prevent a FTBFS during a second build. Bug:
 https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=772573

Unblocked.

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

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



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


Bug#773073: unblock: mdadm/3.3.2-4

2014-12-13 Thread Jonathan Wiltshire
Package: release.debian.org
Severity: normal
Tags: d-i
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock package mdadm to fix an RC bug and bring in other fixes.

I've added an unblock hint, but needs review by the d-i release manager.
Debdiff attached.

unblock-udeb mdadm/3.3.2-4

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

Kernel: Linux 3.16.0-4-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_GB.utf8, LC_CTYPE=en_GB.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)
diff -Nru mdadm-3.3.2/debian/changelog mdadm-3.3.2/debian/changelog
--- mdadm-3.3.2/debian/changelog	2014-10-04 18:28:54.0 +0100
+++ mdadm-3.3.2/debian/changelog	2014-12-05 14:29:22.0 +
@@ -1,3 +1,31 @@
+mdadm (3.3.2-4) unstable; urgency=medium
+
+  * really remove /var/lib/mdadm in postinst, fixing a brown-paper bag
+bug in previous upload (I fixed it earlier but forgot to commit it
+before 3.3.2-3 release).  (Closes: #764036 #771852)
+  * mention closing of #588965 #599352 #694513 by 3.3-1
+
+ -- Michael Tokarev m...@tls.msk.ru  Fri, 05 Dec 2014 17:29:22 +0300
+
+mdadm (3.3.2-3) unstable; urgency=medium
+
+  * remove /var/lib/mdadm dir in postinst to clean up from old pkg,
+remove config files on purge (restore extraneous cleanup from
+last change)  (Closes: #764036)
+  * remove set -u (error on unset variables) from maintscripts
+(Closes: #766308)
+  * rebuildmap-strip-local-host-name-from-device-name.patch - a patch
+from upstream fixing a bug when mdadm have to re-create device
+nodes after assembling arrays (eg, when switching from initramfs
+without preserving /dev and /run), to choose the same device names
+as when doing inital assembly
+  * readlink-path.patch: readlink is in /bin not /usr/bin on debian
+(Closes: #766416)
+  * mdmonitor-service-simplify.diff: simplify mdmonitor.service
+systemd file, do not try to read non-existing files (Closes: #764647)
+
+ -- Michael Tokarev m...@tls.msk.ru  Fri, 28 Nov 2014 09:55:14 +0300
+
 mdadm (3.3.2-2) unstable; urgency=medium
 
   * remove more leftovers from old versions
@@ -56,7 +84,7 @@
 mdadm (3.3-1) unstable; urgency=low
 
   [ Michael Tokarev ]
-  * new upstream 3.3 release (Closes: #718896)
+  * new upstream 3.3 release (Closes: #718896 #588965 #599352 #694513)
 See ANNOUNCE-3.3 for details.
 Patches:
 - refreshed debian-conffile-location.diff
diff -Nru mdadm-3.3.2/debian/mdadm.postinst mdadm-3.3.2/debian/mdadm.postinst
--- mdadm-3.3.2/debian/mdadm.postinst	2014-10-04 18:07:22.0 +0100
+++ mdadm-3.3.2/debian/mdadm.postinst	2014-12-05 08:09:59.0 +
@@ -3,10 +3,9 @@
 # Copyright © 2005-2008 Martin F. Krafft madd...@debian.org
 # Distributable under the terms of the GNU GPL version 2.
 #
+set -e
 
 . /usr/share/debconf/confmodule
-# See #369953 for ordering
-set -eu
 
 case ${1:-} in
   configure|reconfigure)
@@ -99,9 +98,11 @@
 
 command -v update-initramfs /dev/null 21  update-initramfs -u
 
-if dpkg --compare-versions $2 le 3.3.2-1; then
-  rm -f /var/lib/mdadm/CONF-UNCHECKED
-  rm -f /var/lib/mdadm/mdadm.conf-generated
+if dpkg --compare-versions $2 le 3.3.2-3; then
+  rm -f /var/lib/mdadm/CONF-UNCHECKED /var/lib/mdadm/mdadm.conf-generated
+  if [ -d /var/lib/mdadm ]; then
+rmdir --ignore-fail-on-non-empty /var/lib/mdadm
+  fi
 fi
 ;;
 esac
diff -Nru mdadm-3.3.2/debian/mdadm.postrm mdadm-3.3.2/debian/mdadm.postrm
--- mdadm-3.3.2/debian/mdadm.postrm	2014-10-04 18:07:27.0 +0100
+++ mdadm-3.3.2/debian/mdadm.postrm	2014-11-14 16:00:29.0 +
@@ -3,7 +3,7 @@
 # Copyright © 2006-2008 Martin F. Krafft madd...@debian.org
 # Distributable under the terms of the GNU GPL version 2.
 #
-set -eu
+set -e
 
 case ${1:-} in
   remove)
@@ -14,6 +14,10 @@
 fi
 ;;
 
+  purge)
+rm -f /etc/default/mdadm /etc/mdadm.conf /etc/mdadm/mdadm.conf
+;;
+
 esac
 
 [ -d /run/systemd/system ]  systemctl --system daemon-reload /dev/null || :
diff -Nru mdadm-3.3.2/debian/mdadm.preinst mdadm-3.3.2/debian/mdadm.preinst
--- mdadm-3.3.2/debian/mdadm.preinst	2014-10-04 18:07:34.0 +0100
+++ mdadm-3.3.2/debian/mdadm.preinst	2014-11-14 16:00:35.0 +
@@ -2,7 +2,7 @@
 # Copyright © martin f. krafft madd...@debian.org
 # Distributed under the terms of the Artistic Licence 2.0
 #
-set -eu
+set -e
 
 # based on idea from http://www.dpkg.org/dpkg/ConffileHandling
 rm_conffile() {
diff -Nru mdadm-3.3.2/debian/patches/mdmonitor-service-simplify.diff mdadm-3.3.2/debian/patches/mdmonitor-service-simplify.diff
--- mdadm-3.3.2/debian/patches/mdmonitor-service-simplify.diff	1970-01-01 01:00:00.0 +0100
+++ mdadm-3.3.2/debian/patches/mdmonitor-service-simplify.diff	

Bug#773081: unblock: simgrid/3.11.1-9

2014-12-13 Thread Martin Quinson
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock package simgrid

The new version fixes the RC bug #755047 -- really this time, sorry.
The debdiff is attached.

Also, it'd be cool if you could cancel the autorm against that package.

Thanks for your hard work,
Mt

unblock simgrid/3.11.1-9

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

Kernel: Linux 3.16-2-amd64 (SMP w/4 CPU cores)

-- 
Arguing with an engineer is a lot like wrestling in the mud with a pig.
After a couple of hours, you realize the pig likes it.
diff -Nru simgrid-3.11.1/debian/changelog simgrid-3.11.1/debian/changelog
--- simgrid-3.11.1/debian/changelog 2014-07-05 00:20:44.0 +0200
+++ simgrid-3.11.1/debian/changelog 2014-12-13 22:16:07.0 +0100
@@ -1,3 +1,25 @@
+simgrid (3.11.1-9) unstable; urgency=medium
+
+  * add some dependencies to really fix #755047:
+- libsimgrid-dev breaks libsimgrid3.10 and libsimgrid3.11 (3.11.1-8)
+- libsimgrid3.11 breaks+replaces libsimgrid3.10
+- This should hint apt about how to solve my mess :-(
+
+ -- Martin Quinson mquin...@debian.org  Sat, 13 Dec 2014 22:15:36 +0100
+
+simgrid (3.11.1-8) unstable; urgency=medium
+
+  * d/c: update VCS to not use any deprecated URLs
+  * d/c: improve short descriptions
+  * d/c: libsimgrid-java suggests java-virtual-machine, captain obvious.
+  * Install tesh and graphicator tools as part of the libsimgrid-dev,
+not as part of libsimgrid3.11 to allow the co-installation of
+several library versions (Closes: #755047).
+  * d/p/fix-bashism.diff: fix a bashism that mainly appears on Mac OSX
+(Closes: #772329).
+
+ -- Martin Quinson mquin...@debian.org  Tue, 09 Dec 2014 01:47:57 +0100
+
 simgrid (3.11.1-7) unstable; urgency=medium
 
   * Disable LTO on all non-AMD architectures to circumvent a seemingly
diff -Nru simgrid-3.11.1/debian/control simgrid-3.11.1/debian/control
--- simgrid-3.11.1/debian/control   2014-07-05 00:20:44.0 +0200
+++ simgrid-3.11.1/debian/control   2014-12-13 22:16:07.0 +0100
@@ -11,12 +11,14 @@
  transfig, ghostscript, texlive-font-utils
 Standards-Version: 3.9.5
 Homepage: http://simgrid.gforge.inria.fr/
-Vcs-Git: git://git.debian.org/git/collab-maint/simgrid.git
-Vcs-Browser: http://git.debian.org/?p=collab-maint/simgrid.git
+Vcs-Git: git://anonscm.debian.org/collab-maint/simgrid.git
+Vcs-Browser: http://anonscm.debian.org/gitweb/?p=collab-maint/simgrid.git
 
 Package: libsimgrid3.11
 Architecture: any
 Depends: ${shlibs:Depends}, ${misc:Depends}
+Breaks: libsimgrid3.10
+Replaces: libsimgrid3.10
 Recommends: lua5.1
 Conflicts: simgrid ( 3.11)
 Description: Toolkit for scalable simulation of distributed applications
@@ -34,7 +36,7 @@
 Section: doc
 Depends: ${misc:Depends}
 Conflicts: simgrid ( 3.11)
-Description: Toolkit for scalable simulation of distributed applications
+Description: Documentation for the SimGrid Toolkit
  SimGrid is a toolkit that provides core functionalities for the simulation of
  distributed applications in heterogeneous distributed environments. SimGrid
  can be used as a Grid simulator, a P2P simulator, a Cloud simulator, a MPI
@@ -50,7 +52,8 @@
 Depends: ${shlibs:Depends}, ${misc:Depends}, libsimgrid3.11 (= 
${source:Version})
 Recommends: simgrid-doc (= ${source:Version})
 Conflicts: simgrid ( 3.11)
-Description: Toolkit for scalable simulation of distributed applications
+Suggests: java-virtual-machine
+Description: Java bindings for the SimGrid Toolkit
  SimGrid is a toolkit that provides core functionalities for the simulation of
  distributed applications in heterogeneous distributed environments. SimGrid
  can be used as a Grid simulator, a P2P simulator, a Cloud simulator, a MPI
@@ -71,10 +74,11 @@
   libsimgrid3.11 (= ${binary:Version}),
   libf2c2-dev,
 Recommends: f2c, gcc, make, simgrid-doc (= ${source:Version})
+Breaks: libsimgrid3.10, libsimgrid3.11 (3.11.1-8)
 Conflicts: simgrid
 Replaces: simgrid
 Provides: simgrid
-Description: Toolkit for scalable simulation of distributed applications
+Description: Development files for the SimGrid Toolkit
  SimGrid is a toolkit that provides core functionalities for the simulation of
  distributed applications in heterogeneous distributed environments. SimGrid
  can be used as a Grid simulator, a P2P simulator, a Cloud simulator, a MPI
diff -Nru simgrid-3.11.1/debian/libsimgrid3.11.install 
simgrid-3.11.1/debian/libsimgrid3.11.install
--- simgrid-3.11.1/debian/libsimgrid3.11.install2014-07-05 
00:20:44.0 +0200
+++ simgrid-3.11.1/debian/libsimgrid3.11.install2014-12-13 
22:16:07.0 +0100
@@ -1,6 +1 @@
 usr/lib/libsimgrid.so.3.11
-
-usr/bin/tesh
-usr/share/man/man1/tesh.1
-
-usr/bin/simgrid-graphicator
diff -Nru simgrid-3.11.1/debian/libsimgrid-dev.install