Request unblock for aiccu 20070115-15.1

2012-07-05 Thread Reinier Haasjes
Hi,

Axel Beckert uploaded a fix for the following bugs in aiccu:
Bug#667755: FTBFS[kfreebsd] (serious)
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=667755
Bug#670971: Danish translation
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=670971

Please consider this packages for Wheezy, thanks.

Kind Regards,

Reinier





-- 
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4ff53967.4060...@haasjes.com



Re: Request unblock for aiccu 20070115-15.1

2012-07-05 Thread Martin Zobel-Helas
Hi, 

On Thu Jul 05, 2012 at 08:51:19 +0200, Reinier Haasjes wrote:
> Hi,
> 
> Axel Beckert uploaded a fix for the following bugs in aiccu:
> Bug#667755: FTBFS[kfreebsd] (serious)
>   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=667755
> Bug#670971: Danish translation
>   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=670971
> 
> Please consider this packages for Wheezy, thanks.

As usual sponsor for Reinier, i ACK this request.

Cheers,
Martin
-- 
 Martin Zobel-Helas   | Debian System Administrator
 Debian & GNU/Linux Developer   |   Debian Listmaster
 GPG key http://go.debian.net/B11B627B  | 
 GPG Fingerprint:  6B18 5642 8E41 EC89 3D5D  BDBB 53B1 AC6D B11B 627B 


-- 
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20120705074140.gm31...@ftbfs.de



Bug#680343: unblock: trousers/0.3.9-2

2012-07-05 Thread Pierre Chifflier
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock package trousers

This version fixes an annoying bug which prevents upgrades or removal
from previous versions, including stable (and thus makes upgrades fail,
without any proper way to upgrade or remove the old version).
See #67682 and #679621

The fix is a workaround: since the init script cannot be used, we kill
and remove the executable in the prerm script so the init script can
exit properly, and continue the upgrade process with the new version.

debdiff attached

Thanks,
Pierre

unblock trousers/0.3.9-2
diff -Nru trousers-0.3.9/debian/changelog trousers-0.3.9/debian/changelog
--- trousers-0.3.9/debian/changelog	2012-06-18 22:22:21.0 +0200
+++ trousers-0.3.9/debian/changelog	2012-07-04 21:57:25.0 +0200
@@ -1,3 +1,10 @@
+trousers (0.3.9-2) unstable; urgency=low
+
+  * Add workaround for upgrade failure for versions before 0.3.8-3
+(Closes: #679621)
+
+ -- Pierre Chifflier   Wed, 04 Jul 2012 21:57:22 +0200
+
 trousers (0.3.9-1) unstable; urgency=low
 
   * Imported Upstream version 0.3.9
diff -Nru trousers-0.3.9/debian/trousers.postinst trousers-0.3.9/debian/trousers.postinst
--- trousers-0.3.9/debian/trousers.postinst	2012-02-26 11:47:51.0 +0100
+++ trousers-0.3.9/debian/trousers.postinst	2012-07-04 21:46:07.0 +0200
@@ -5,7 +5,7 @@
 case "${1}" in
 	configure)
 		# Adding tss system user
-		adduser --system --home /var/lib/tpm --shell /bin/false --no-create-home --group tss
+		adduser --system --quiet --home /var/lib/tpm --shell /bin/false --no-create-home --group tss
 
 		# Setting owner
 		chown tss:tss /var/lib/tpm -R
diff -Nru trousers-0.3.9/debian/trousers.prerm trousers-0.3.9/debian/trousers.prerm
--- trousers-0.3.9/debian/trousers.prerm	1970-01-01 01:00:00.0 +0100
+++ trousers-0.3.9/debian/trousers.prerm	2012-07-04 21:46:07.0 +0200
@@ -0,0 +1,42 @@
+#!/bin/sh
+# prerm script for trousers
+#
+# see: dh_installdeb(1)
+
+set -e
+
+# summary of how this script can be called:
+#*  `remove'
+#*  `upgrade' 
+#*  `failed-upgrade' 
+#*  `remove' `in-favour'  
+#*  `deconfigure' `in-favour'
+#`removing'
+#   
+# for details, see http://www.debian.org/doc/debian-policy/ or
+# the debian-policy package
+
+
+case "$1" in
+failed-upgrade)
+if dpkg --compare-versions "$2" lt 0.3.8-3; then
+# hack to avoid #676828
+# removing the executable will make the init script exit gracefully
+rm -f /usr/sbin/tcsd
+# kill tcsd (and any other process owned by the tss user)
+killall -u tss  2>/dev/null || true
+fi
+;;
+
+*)
+echo "prerm called with unknown argument \`$1'" >&2
+exit 1
+;;
+esac
+
+# dh_installdeb will replace this with shell code automatically
+# generated by other debhelper scripts.
+
+#DEBHELPER#
+
+exit 0


Bug#680350: unblock: monkeystudio/1.9.0.2-2

2012-07-05 Thread Evgeni Golov
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Hi,

please unblock package monkeystudio.
The diff is small[1] and fixes one simple (but nasty) bug:
#672272 monkeystudio is displayed under "other" and not "programming"
in the menus.

TIA
Evgeni

unblock monkeystudio/1.9.0.2-2

[1] 
http://anonscm.debian.org/gitweb/?p=users/evgeni/monkeystudio.git;a=commitdiff;h=debian/1.9.0.2-2;hp=debian/1.9.0.2-1

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

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



-- 
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/20120705091310.10707.28938.report...@rodo.kerker.die-welt.net



Re: Preparation for d-i beta 1

2012-07-05 Thread Julien Cristau
On Wed, Jul  4, 2012 at 18:46:54 -0600, Didier Raboud wrote:

> b) Then, discussing this over the lunch with Philipp Kern, we agreed that 
> instead of downloading netboot.tar.gz's from mirrors (without checking them) 
> to create those debian-installer-$version-netboot-$arch packages, it would 
> actually be saner to build them within the d-i build process.
> 
Might be something to discuss post wheezy but very much not something we
should change now IMO.

Cheers,
Julien


signature.asc
Description: Digital signature


Re: nbd freeze exception?

2012-07-05 Thread Julien Cristau
On Wed, Jul  4, 2012 at 17:49:42 -0600, Wouter Verhelst wrote:

> I've just uploaded then; could you allow it to migrate?
> 
Unblocked.

Cheers,
Julien


signature.asc
Description: Digital signature


Bug#680157: marked as done (unblock: gcpegg/5.1-13)

2012-07-05 Thread Debian Bug Tracking System
Your message dated Thu, 5 Jul 2012 11:33:10 +0200
with message-id <20120705093310.go6...@radis.cristau.org>
and subject line Re: Bug#680157: unblock: gcpegg/5.1-13
has caused the Debian Bug report #680157,
regarding unblock: gcpegg/5.1-13
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.)


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

Please unblock package gcpegg.  This version fixes RC bug #680014 which
affects all 64-bit architectures.  It also fixes an unreported path bug 
in the init.d script that would affect all users.  

This is *not* an absolutely minimal diff to fix those bugs from -12, but
the package is better in all respects, -13 has received significant testing,
and it's a "leaf package" that nothing else depends on... so I really think
5.1-13 is the version that should be in wheezy.

Thanks!

Bdale

unblock gcpegg/5.1-13

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

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


--- End Message ---
--- Begin Message ---
On Wed, Jul  4, 2012 at 22:22:03 -0600, Bdale Garbee wrote:

> Julien Cristau  writes:
> 
> > shouldn't the opts->port argument have been dropped?  same in
> > reg_pear.c, hw_pear.c.
> 
> Good point.  But, while it's no long used, it shouldn't hurt anything,
> and in testing it all works fine... so I'm inclined to leave it alone
> for now.
> 
> > funky indent... (and in a bunch of other places)
> 
> Yes.
> 
> > The hardcoding of vt 8 in the init script feels wrong as well, but I
> > guess that's not a regression.  (It's going to clash with a display
> > manager that starts before it or in parallel.)
> 
> Indeed.  The package has been set up this way for years.  This code is
> only likely to be installed on a server with a stable network
> configuration that's hosting one of the special hardware random number
> generators used by the project, and they don't tend to have displays, so
> in practice this isn't much of a problem.
> 
> There's an option to build the program without the UI enabled, but I've
> never tried it, and that feels like a bigger change more suited for the
> next stable release cycle.
> 
Unblocked.

Cheers,
Julien


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


Re: add tags

2012-07-05 Thread Julien Cristau
tags 631515 =
close 631515
kthxbye

On Wed, Jun 29, 2011 at 03:55:38 +, Nobuhiro Iwamatsu wrote:

> tags 631515 + wheezy-ignore
> tags 631515 + squeeze
> thanks
> 
Quoting from http://www.debian.org/Bugs/Developer#tags:
"This tag should only be used by the release manager(s); do not set it
yourself without explicit authorization from them."

Cheers,
Julien


signature.asc
Description: Digital signature


unblock and pu request for libxslt

2012-07-05 Thread Aron Xu
Hi,

Can you please unblock libxslt/1.1.26-13 which fixes CVE-2012-2825
(Bug #679283)? Patch applied:
http://anonscm.debian.org/gitweb/?p=debian-xml-sgml/libxslt.git;a=blob;f=debian/patches/0005-cve-2012-2825.patch;h=2e7db481530519ed82a69ab41e4297767f83e6f5;hb=ecbb4ca70e90c1c4789049e7a41c6c1d2c51871e

I've also prepared an update for squeeze and please advise if I can
upload to pu. This fixes three CVEs:
CVE-2011-1202, #617413:
http://anonscm.debian.org/gitweb/?p=debian-xml-sgml/libxslt.git;a=commitdiff;h=dbb14e5be43bf20c8b7a2e37bda1d8f7867dc56b;hp=1a30e3c16a7b08489fec5dde9808dfbd15f9cd4b
CVE-2011-3970, #660650:
http://anonscm.debian.org/gitweb/?p=debian-xml-sgml/libxslt.git;a=commitdiff;h=18dd5c48fc1829ec75823b5ac975574b785c1233;hp=dbb14e5be43bf20c8b7a2e37bda1d8f7867dc56b
CVE-2012-2825, #679283:
http://anonscm.debian.org/gitweb/?p=debian-xml-sgml/libxslt.git;a=commitdiff;h=9ebc17a3bad5fc6807080e11bcca3f58c8c392fe;hp=18dd5c48fc1829ec75823b5ac975574b785c1233

-- 
Regards,
Aron Xu


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



Re: Freeze exception request for zendframework 1.11.12-1

2012-07-05 Thread Neil McGovern
On Wed, Jul 04, 2012 at 09:11:35PM +0200, Frank Habermann wrote:
> Dear release managers,
> 
> I ask for a freeze exception request for zendframework version 1.11.12-1.
> 
> This version fixes security bug #679215 and is the last minor bugfix version 
> of 
> zendframework 1.11.
> 

Hi,

 4303 files changed, 43422 insertions(+), 12755 deletions(-)

Can you please provide a clean patch that we can review, preferably one
that doesn't touch every single file.

Additionally, do you know what
/tmp/q3Y66RZCNJ/zendframework-1.11.12/extras/documentation/api/extras/css/black-tie/images/ui-bg_inset-hard_55_ffeb80_1x100.png
et al are doing in the change, as well as a load of documentation fixes?

Can't your stable fix simply be applied? :(

Cheers,
Neil


signature.asc
Description: Digital signature


Re: unblock and pu request for libxslt

2012-07-05 Thread Adam D. Barratt

On 05.07.2012 11:00, Aron Xu wrote:

Can you please unblock libxslt/1.1.26-13 which fixes CVE-2012-2825
(Bug #679283)? Patch applied:

http://anonscm.debian.org/gitweb/?p=debian-xml-sgml/libxslt.git;a=blob;f=debian/patches/0005-cve-2012-2825.patch;h=2e7db481530519ed82a69ab41e4297767f83e6f5;hb=ecbb4ca70e90c1c4789049e7a41c6c1d2c51871e


This is fun:

--- libxslt-1.1.26/debian/changelog 2012-06-15 11:04:15.0 
+
+++ libxslt-1.1.26/debian/changelog 2012-07-05 03:10:22.0 
+

@@ -1,9 +1,8 @@
-libxslt (1.1.26-12+rebuild1) unstable; urgency=low
+libxslt (1.1.26-13) unstable; urgency=low

-  * Rebuild against new libxml2 to make xslt-config identical across
-architectures.
+  * Patch to fix CVE-2012-2825 (Closes: #679283).

- -- Aron Xu   Fri, 15 Jun 2012 18:55:36 +0800
+ -- Aron Xu   Thu, 05 Jul 2012 11:09:19 +0800

Unblocked anyway.


I've also prepared an update for squeeze and please advise if I can
upload to pu. This fixes three CVEs:


Please don't mix different types of request in the same mail.  For a 
stable update, please open an appropriately usertagged pu bug, including 
a full source debdiff rather than VCS pointers.


Regards,

Adam


--
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/754a167b33cc47ab95e7a314b0dc3...@mail.adsl.funky-badger.org



Re: unblock and pu request for libxslt

2012-07-05 Thread Aron Xu
On Thu, Jul 5, 2012 at 6:21 PM, Adam D. Barratt
 wrote:
> On 05.07.2012 11:00, Aron Xu wrote:
>>
>> Can you please unblock libxslt/1.1.26-13 which fixes CVE-2012-2825
>> (Bug #679283)? Patch applied:
>>
>>
>> http://anonscm.debian.org/gitweb/?p=debian-xml-sgml/libxslt.git;a=blob;f=debian/patches/0005-cve-2012-2825.patch;h=2e7db481530519ed82a69ab41e4297767f83e6f5;hb=ecbb4ca70e90c1c4789049e7a41c6c1d2c51871e
>
>
> This is fun:
>
> --- libxslt-1.1.26/debian/changelog 2012-06-15 11:04:15.0 +
> +++ libxslt-1.1.26/debian/changelog 2012-07-05 03:10:22.0 +
> @@ -1,9 +1,8 @@
> -libxslt (1.1.26-12+rebuild1) unstable; urgency=low
> +libxslt (1.1.26-13) unstable; urgency=low
>
> -  * Rebuild against new libxml2 to make xslt-config identical across
> -architectures.
> +  * Patch to fix CVE-2012-2825 (Closes: #679283).
>
> - -- Aron Xu   Fri, 15 Jun 2012 18:55:36 +0800
> + -- Aron Xu   Thu, 05 Jul 2012 11:09:19 +0800
>
> Unblocked anyway.
>

Thanks for unblocking, but no fun at all. changelog for sourceful
rebuild is useless for history tracking anyway.

>
>> I've also prepared an update for squeeze and please advise if I can
>> upload to pu. This fixes three CVEs:
>
>
> Please don't mix different types of request in the same mail.  For a stable
> update, please open an appropriately usertagged pu bug, including a full
> source debdiff rather than VCS pointers.
>
> Regards,
>
> Adam

OK, will do, thanks!

-- 
Regards,
Aron Xu


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



Bug#680368: release.debian.org: unblock: evernote-mode/0.41-3

2012-07-05 Thread Youhei SASAKI
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Hi, Please unblock package evernote-mode.

Current evernote-mode (= 0.41-2) in Wheezy is completely broken and
can't use. I fix it 0.41-3 which is already in unstable.

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

Please unblock it. 

Best Wishes,
Youhei


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

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



-- 
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/87liiyh2cb.wl%uwab...@gfd-dennou.org



Re: Freeze exception for ruby-fast-xs 0.8.0-3

2012-07-05 Thread Antonio Terceiro
Hi,

Adam D. Barratt escreveu isso aí:
> Hi,
> 
> On 02.07.2012 12:02, Antonio Terceiro wrote:
> >Please unblock ruby-fast-xs 0.8.0-3, which fixes RC bug #679847
> >http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=679847
> >
> >The attached patch just declares a Breaks: agains the last version of
> >ruby-hpricot that contained a file that is now provided by
> >ruby-fast-xs.
> 
> Hmmm, it looks like ruby-fast-xs is a new package, i.e. it's not in
> wheezy yet?  This provides a slight complication, as it effectively
> makes a request for unblocking -3 in to a request for allowing a
> completely new source package in to the release (I realise that -1
> got an automatic exception, but if we'd been asked for a manual one
> I don't know whether it would have).
> 
> Looking through the BTS, it looks like both #679606 (in
> ruby-hpricot) and #679847 (in ruby-xs-fast) only affect unstable
> currently; is that correct?

Yes, that is correct. However, the situation is a little more
complicated.

ruby-fast-xs was introduced as a dependency for chef-expander; when
ruby-fast-xs was in unstable, it was discovered that ruby-hpricot had a
embedded copy of the fast_xs library, hence the RC bug against both
packages.

Then ruby-hpricot was fixed to depend on ruby-fast-xs instead of
embedding a copy of it in time to get a automatic freeze exception, but
that also required the versioned Breaks: in ruby-fast-xs to allow
upgrades, which wasn't done before the freeze.

If we can't get the fixed ruby-fast-xs in wheezy, then the existing
version of ruby-hpricot in wheezy will be fine, but we won't have
chef-expander, which is an important piece in large-scale Debian
deployments with chef.

This is why I am requesting this exception to be able to have
ruby-fast-xs, the fixed ruby-hpricot and chef-expander in Wheezy.

I've attached an updated debdiff with the exact change I am proposing
(thanks to Cyril for the heads up on < being deprecated).

Thanks,

-- 
Antonio Terceiro 
diff -Nru ruby-fast-xs-0.8.0/debian/changelog ruby-fast-xs-0.8.0/debian/changelog
--- ruby-fast-xs-0.8.0/debian/changelog	2012-06-29 03:50:40.0 -0300
+++ ruby-fast-xs-0.8.0/debian/changelog	2012-07-02 07:55:31.0 -0300
@@ -1,3 +1,11 @@
+ruby-fast-xs (0.8.0-3) unstable; urgency=low
+
+  * Team upload.
+  * Breaks: ruby-hpricot << 0.8.6-3~ since this package now provides a file
+that used to be provided by that package (Closes: #679847).
+
+ -- Antonio Terceiro   Mon, 02 Jul 2012 01:02:38 -0300
+
 ruby-fast-xs (0.8.0-2) unstable; urgency=low
 
   * Add full name to uploaders
diff -Nru ruby-fast-xs-0.8.0/debian/control ruby-fast-xs-0.8.0/debian/control
--- ruby-fast-xs-0.8.0/debian/control	2012-06-29 03:50:21.0 -0300
+++ ruby-fast-xs-0.8.0/debian/control	2012-07-05 08:44:54.0 -0300
@@ -15,6 +15,7 @@
 XB-Ruby-Versions: ${ruby:Versions}
 Depends: ${shlibs:Depends}, ${misc:Depends}, ruby | ruby-interpreter
 # hoe (>= 2.8.0, development)
+Breaks: ruby-hpricot (<< 0.8.6-3~)
 Description: ruby extension for escaping text
  fast_xs escapes text so it can be embedded more directly into XML and
  HTML without having to deal with character set issues.
\ No newline at end of file


signature.asc
Description: Digital signature


Re: Freeze exception request for zendframework 1.11.12-1

2012-07-05 Thread Frank Habermann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi,

> 4303 files changed, 43422 insertions(+), 12755 deletions(-)
> 
> Can you please provide a clean patch that we can review, preferably
> one that doesn't touch every single file.
> 
> Additionally, do you know what 
> /tmp/q3Y66RZCNJ/zendframework-1.11.12/extras/documentation/api/extras/css/black-tie/images/ui-bg_inset-hard_55_ffeb80_1x100.png
>
> 
et al are doing in the change, as well as a load of documentation fixes?
> 
> Can't your stable fix simply be applied? :(
Hi,

i could do that. But i would prefer to accapt the hole package.
The version 1.11.12 is the last minor bugfix release in the line of
version 1.11. So it makes sense to have this version in wheezy.
For a complete changelog of zendframework itself see:
http://framework.zend.com/changelog/1.11.12

regards,
Frank
-BEGIN PGP SIGNATURE-
Version: GnuPG v2.0.17 (MingW32)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/

iEYEARECAAYFAk/1hskACgkQWr0A+QOsIlDoXACfXWwHv8qFDnvGtYPUHxO4qPCH
UwIAnj0S+kH+hs1AUo2O1JrxY3Rzx2WQ
=xN+z
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4ff586c9.8030...@lordlamer.de



Bug#680381: unblock: spip/2.1.16-1

2012-07-05 Thread David Prévot
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: freeze-exception

Please unblock package spip, it's a minor release that will fix a
security issue, and a few bugs. The attached debdiff is pretty thin:
most of the changes, in the security screen file, are due to rewritten
comments.

unblock spip/2.1.16-1

-- System Information:
Debian Release: 6.0.5
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'proposed-updates'), (500, 
'stable'), (150, 'testing'), (120, 'unstable'), (110, 'experimental')
Architecture: i386 (i686)

Kernel: Linux 2.6.32-5-686 (SMP w/1 CPU core)
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
diff -Nru spip-2.1.15/debian/changelog spip-2.1.16/debian/changelog
--- spip-2.1.15/debian/changelog	2012-06-12 19:17:13.0 -0400
+++ spip-2.1.16/debian/changelog	2012-07-04 08:46:23.0 -0400
@@ -1,3 +1,13 @@
+spip (2.1.16-1) unstable; urgency=high
+
+  * New upstream version:
+- fixes PHP injection (Closes: #680118);
+- fixes growing session directory;
+- fixes PHP 5.4 compatibility.
+  * Update security screen file to 1.1.3.
+
+ -- David Prévot   Wed, 04 Jul 2012 08:42:01 -0400
+
 spip (2.1.15-1) unstable; urgency=high
 
   * New upstream version, fixes cross site scripting.
diff -Nru spip-2.1.15/debian/patches/fix_displayed_version.patch spip-2.1.16/debian/patches/fix_displayed_version.patch
--- spip-2.1.15/debian/patches/fix_displayed_version.patch	2012-06-12 17:55:50.0 -0400
+++ spip-2.1.16/debian/patches/fix_displayed_version.patch	2012-07-04 08:30:47.0 -0400
@@ -2,7 +2,7 @@
  Make it obvious it's a Debian (patched) version
 Forwarded: not-needed
 Author: David Prévot 
-Last-Update: 2012-06-12
+Last-Update: 2012-07-04
 --- a/ecrire/inc_version.php
 +++ b/ecrire/inc_version.php
 @@ -423,7 +423,7 @@
@@ -10,7 +10,7 @@
  // 1.xxyy : xx00 versions stables publiees, xxyy versions de dev
  // (ce qui marche pour yy ne marchera pas forcement sur une version plus ancienne)
 -$spip_version_affichee = "$spip_version_branche";
-+$spip_version_affichee = "2.1.15-1 (Debian)";
++$spip_version_affichee = "2.1.16-1 (Debian)";
  
  // ** Securite **
  $visiteur_session = $auteur_session = $connect_statut = $connect_toutes_rubriques =  $hash_recherche = $hash_recherche_strict = $ldap_present ='';
diff -Nru spip-2.1.15/debian/security/ecran_securite.php spip-2.1.16/debian/security/ecran_securite.php
--- spip-2.1.15/debian/security/ecran_securite.php	2012-06-12 17:06:39.0 -0400
+++ spip-2.1.16/debian/security/ecran_securite.php	2012-07-04 08:31:30.0 -0400
@@ -5,21 +5,20 @@
  * --
  */
 
-define('_ECRAN_SECURITE', '1.1.2'); // 12 juin  2012
+define('_ECRAN_SECURITE', '1.1.3'); // 3 juillet 2012
 
 /*
  * Documentation : http://www.spip.net/fr_article4200.html
- *
  */
 
 /*
- * test utilisateur
+ * Test utilisateur
  */
 if (isset($_GET['test_ecran_securite']))
 	$ecran_securite_raison = 'test '._ECRAN_SECURITE;
 
 /*
- * detecteur de robot d'indexation
+ * Détecteur de robot d'indexation
  */
 if (!defined('_IS_BOT'))
 	define('_IS_BOT',
@@ -28,10 +27,11 @@
 			(string) $_SERVER['HTTP_USER_AGENT'])
 	);
 
-/* - interdit de passer une variable id_article (ou id_xxx) qui ne
- *   soit pas numerique (ce qui bloque l'exploitation de divers trous
- *   de securite, dont celui de toutes les versions < 1.8.2f)
- *   (sauf pour id_table, qui n'est pas numerique jusqu'a [5743])
+/*
+ * Interdit de passer une variable id_article (ou id_xxx) qui ne
+ * soit pas numérique (ce qui bloque l'exploitation de divers trous
+ * de sécurité, dont celui de toutes les versions < 1.8.2f)
+ * (sauf pour id_table, qui n'est pas numérique jusqu'à [5743])
  */
 foreach ($_GET as $var => $val)
 	if ($_GET[$var] AND strncmp($var,"id_",3)==0 AND $var!='id_table')
@@ -43,15 +43,14 @@
 	if ($GLOBALS[$var] AND strncmp($var,"id_",3)==0 AND $var!='id_table')
 		$GLOBALS[$var] = is_array($GLOBALS[$var])?@array_map('intval',$GLOBALS[$var]):intval($GLOBALS[$var]);
 
-
-/* - interdit la variable $cjpeg_command, qui etait utilisee sans
- *   precaution dans certaines versions de dev (1.8b2 -> 1.8b5)
- *
+/*
+ * Interdit la variable $cjpeg_command, qui était utilisée sans
+ * précaution dans certaines versions de dev (1.8b2 -> 1.8b5)
  */
 $cjpeg_command='';
 
-/* - controle de quelques variables (XSS)
- *
+/*
+ * Contrôle de quelques variables (XSS)
  */
 foreach(array('lang', 'var_recherche', 'aide', 'var_lang_r', 'lang_r', 'var_ajax_ancre') as $var) {
 	if (isset($_GET[$var]))
@@ -60,15 +59,15 @@
 		$_REQUEST[$var] = $GLOBALS[$var] = $_POST[$var] = preg_replace(',[^\w\,/#&;-]+,',' ',(string)$_POST[$var]);
 }
 
-/* - filtre l'acces a spip_acces_doc (injection SQL en 1.8.2x)
- *
+/*
+ * Filtre l'accès à spip_acces_doc (injection SQL en 1.8.2x)
  */
 if (preg_match(',^(.*/)?spip_acces_doc\.,', (string)$_SERVER['REQUEST_URI'])

Bug#680384: unblock: ruby-mkrf/0.2.3+dfsg-2

2012-07-05 Thread Cédric Boutillier
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: freeze-exception

Hi!

Please unblock package ruby-mkrf. The version uploaded in unstable fixes
RC bug #676204, and now builds correctly with the new default version of
Ruby.

Find in attachment the debdiff between this new version and the one
currently in wheezy.

Thanks!


unblock ruby-mkrf/0.2.3+dfsg-2

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

Kernel: Linux 3.2.0-3-amd64 (SMP w/4 CPU cores)
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
diff -Nru ruby-mkrf-0.2.3+dfsg/debian/changelog 
ruby-mkrf-0.2.3+dfsg/debian/changelog
--- ruby-mkrf-0.2.3+dfsg/debian/changelog   2011-12-16 14:15:32.0 
+0100
+++ ruby-mkrf-0.2.3+dfsg/debian/changelog   2012-07-04 14:20:27.0 
+0200
@@ -1,3 +1,23 @@
+ruby-mkrf (0.2.3+dfsg-2) unstable; urgency=low
+
+  * Add 0400_use_correct_ruby_version_in_tests.patch:
+  Use the same Ruby binary to run the tests and to build test Rakefiles.
+  This is needed to test the library correctly against the different
+  versions of the Ruby interpreter in Debian.
+  * Add 0500_replace_config_by_rbconfig.patch
+  Use RbConfig:: instead of Config:: deprecated in Ruby 1.8 and 1.9.
+  Making this slight change avoids avoid annoying warnings.
+  * Add 0600_fix_test_libxml.patch 0610_fix_test_syck.patch
+  Port code built during tests to Ruby1.9 (Closes: #676204).
+  Although this is not part of the mkrf library itself, this is needed to
+  test the library correctly with the various Ruby interpreter.
+  * Add 9900_debug_test_failures.patch
+  Make the test suite output more verbose, to get enough info if something
+  goes wrong during the build.
+  * Bump Standards-Version: to 3.9.3 (no changes needed)
+
+ -- Cédric Boutillier   Wed, 04 Jul 2012 13:34:26 
+0200
+
 ruby-mkrf (0.2.3+dfsg-1) unstable; urgency=low
 
   * Initial release (Closes: #584886)
diff -Nru ruby-mkrf-0.2.3+dfsg/debian/control 
ruby-mkrf-0.2.3+dfsg/debian/control
--- ruby-mkrf-0.2.3+dfsg/debian/control 2011-12-28 15:55:46.0 +0100
+++ ruby-mkrf-0.2.3+dfsg/debian/control 2012-07-04 14:20:27.0 +0200
@@ -5,7 +5,7 @@
 Uploaders: Cédric Boutillier 
 DM-Upload-Allowed: yes
 Build-Depends: debhelper (>= 7.0.50~), gem2deb (>= 0.2.12~), rake, zlib1g-dev, 
libxml2-dev, libxslt1-dev
-Standards-Version: 3.9.2
+Standards-Version: 3.9.3
 Vcs-Git: git://git.debian.org/pkg-ruby-extras/ruby-mkrf.git
 Vcs-Browser: http://git.debian.org/?p=pkg-ruby-extras/ruby-mkrf.git;a=summary
 Homepage: http://mkrf.rubyforge.org/
diff -Nru 
ruby-mkrf-0.2.3+dfsg/debian/patches/0400_use_correct_ruby_version_in_tests.patch
 
ruby-mkrf-0.2.3+dfsg/debian/patches/0400_use_correct_ruby_version_in_tests.patch
--- 
ruby-mkrf-0.2.3+dfsg/debian/patches/0400_use_correct_ruby_version_in_tests.patch
1970-01-01 01:00:00.0 +0100
+++ 
ruby-mkrf-0.2.3+dfsg/debian/patches/0400_use_correct_ruby_version_in_tests.patch
2012-07-04 14:20:27.0 +0200
@@ -0,0 +1,45 @@
+Description: Use the same Ruby binary to run the tests and to create Rakefiles
+ Gem2deb defines the RUBY_TEST_BIN environment variable. Use it to call the
+ correct version of the Ruby binary during tests on extconf.rb to generate
+ Rakefiles.
+Author: Cédric Boutillier 
+Last-Update: 2012-07-04
+
+--- a/Rakefile
 b/Rakefile
+@@ -18,6 +18,8 @@
+ RUBY_FORGE_PROJECT = "mkrf"
+ RUBY_FORGE_USER= "kevinclark"
+ 
++RUBY_TEST_BIN = ENV['RUBY_TEST_BIN']
++
+ 
+ task :default => ["test:units"]
+ 
+@@ -55,22 +57,22 @@
+ 
+ desc "Try to compile a trivial extension"
+ task :trivial do
+-  sh "cd #{SAMPLE_DIRS[:trivial]}; ruby extconf.rb; rake"
++  sh "cd #{SAMPLE_DIRS[:trivial]}; #{RUBY_TEST_BIN} extconf.rb; rake"
+ end
+ 
+ desc "Try to compile libxml"
+ task :libxml do
+-  sh "cd #{SAMPLE_DIRS[:libxml]}; ruby extconf.rb; rake"
++  sh "cd #{SAMPLE_DIRS[:libxml]}; #{RUBY_TEST_BIN} extconf.rb; rake"
+ end
+ 
+ desc "Try to compile syck"
+ task :syck do
+-  sh "cd #{SAMPLE_DIRS[:syck]}; ruby extconf.rb; rake"
++  sh "cd #{SAMPLE_DIRS[:syck]}; #{RUBY_TEST_BIN} extconf.rb; rake"
+ end
+ 
+ desc "Try to compile cpp_bang"
+ task :cpp_bang do
+-  sh "cd #{SAMPLE_DIRS[:cpp_bang]}; ruby mkrf_config.rb; rake"
++  sh "cd #{SAMPLE_DIRS[:cpp_bang]}; #{RUBY_TEST_BIN} mkrf_config.rb; rake"
+ end
+ 
+ desc "Clean up after sample tests"
diff -Nru 
ruby-mkrf-0.2.3+dfsg/debian/patches/0500_replace_config_by_rbconfig.patch 
ruby-mkrf-0.2.3+dfsg/debian/patches/0500_replace_config_by_rbconfig.patch
--- ruby-mkrf-0.2.3+dfsg/debian/patches/0500_replace_config_by_rbconfig.patch   
1970-01-01 01:00:00.0 +0100
+++ ruby-mkrf-0.2.3+dfsg/debi

Bug#679979: marked as done (unblock: opendkim/2.6.2-1)

2012-07-05 Thread Debian Bug Tracking System
Your message dated Thu, 05 Jul 2012 15:51:25 +0200
with message-id <4ff59bdd.1090...@dogguy.org>
and subject line Re: Bug#679979: unblock: opendkim/2.6.2-1
has caused the Debian Bug report #679979,
regarding unblock: opendkim/2.6.2-1
to be marked as done.

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

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


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

Please unblock package opendkim

The opendkim upstream just did a new release primarily to fix #679548 through
a combination of improved documentation and a small code fix.

The release also addresses a few other minor issues.  The FFR_RESIGN fix
doesn't affect Debian since neither of the options affected by the fix are
enabled.  The opendkim-genrates fix doesn't affect Debian since that script is
not included in any of the binaries.  The only change that affects Debian that
isn't in the scope of #679548 is a hyphen/minus sign fix in a man page.

Upstream has been very cooperative on #679548, putting out a release
specifically because of it.  I think it's both technically and socially better
at this point in the freeze process to update to the new version than to
extract most of the update into a patch.

I have the package ready to upload if this is approved.  This problem exists
in both Squeeze and Wheezy and came to light due to increased IPv6 usage.
This is not a case of fixing a regression.

The full diff (upstream and packaging) is attached.

unblock opendkim/2.6.2-1
diff -Nru opendkim-2.6.1/configure opendkim-2.6.2/configure
--- opendkim-2.6.1/configure	2012-06-24 23:34:56.0 -0400
+++ opendkim-2.6.2/configure	2012-07-02 13:59:41.0 -0400
@@ -1,6 +1,6 @@
 #! /bin/sh
 # Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.68 for OpenDKIM 2.6.1.
+# Generated by GNU Autoconf 2.68 for OpenDKIM 2.6.2.
 #
 # Report bugs to .
 #
@@ -570,8 +570,8 @@
 # Identity of this package.
 PACKAGE_NAME='OpenDKIM'
 PACKAGE_TARNAME='opendkim'
-PACKAGE_VERSION='2.6.1'
-PACKAGE_STRING='OpenDKIM 2.6.1'
+PACKAGE_VERSION='2.6.2'
+PACKAGE_STRING='OpenDKIM 2.6.2'
 PACKAGE_BUGREPORT='b...@opendkim.org'
 PACKAGE_URL=''
 
@@ -1545,7 +1545,7 @@
   # Omit some internal or obsolete options to make the list less imposing.
   # This message is too long to be a string in the A/UX 3.1 sh.
   cat <<_ACEOF
-\`configure' configures OpenDKIM 2.6.1 to adapt to many kinds of systems.
+\`configure' configures OpenDKIM 2.6.2 to adapt to many kinds of systems.
 
 Usage: $0 [OPTION]... [VAR=VALUE]...
 
@@ -1615,7 +1615,7 @@
 
 if test -n "$ac_init_help"; then
   case $ac_init_help in
- short | recursive ) echo "Configuration of OpenDKIM 2.6.1:";;
+ short | recursive ) echo "Configuration of OpenDKIM 2.6.2:";;
esac
   cat <<\_ACEOF
 
@@ -1824,7 +1824,7 @@
 test -n "$ac_init_help" && exit $ac_status
 if $ac_init_version; then
   cat <<\_ACEOF
-OpenDKIM configure 2.6.1
+OpenDKIM configure 2.6.2
 generated by GNU Autoconf 2.68
 
 Copyright (C) 2010 Free Software Foundation, Inc.
@@ -2403,7 +2403,7 @@
 This file contains any messages produced by compilers while
 running configure, to aid debugging if configure makes a mistake.
 
-It was created by OpenDKIM $as_me 2.6.1, which was
+It was created by OpenDKIM $as_me 2.6.2, which was
 generated by GNU Autoconf 2.68.  Invocation command line was
 
   $ $0 $@
@@ -3222,7 +3222,7 @@
 
 # Define the identity of the package.
  PACKAGE='opendkim'
- VERSION='2.6.1'
+ VERSION='2.6.2'
 
 
 cat >>confdefs.h <<_ACEOF
@@ -3271,7 +3271,7 @@
 #
 # Hexadecimal version, for use in generating dkim.h
 #
-HEX_VERSION=$(printf %08x $(( ((2 << 8 | 6) << 8 | 1) << 8| 0 )))
+HEX_VERSION=$(printf %08x $(( ((2 << 8 | 6) << 8 | 2) << 8| 0 )))
 
 
 #
@@ -20528,7 +20528,7 @@
 # report actual input values of CONFIG_FILES etc. instead of their
 # values after options handling.
 ac_log="
-This file was extended by OpenDKIM $as_me 2.6.1, which was
+This file was extended by OpenDKIM $as_me 2.6.2, which was
 generated by GNU Autoconf 2.68.  Invocation command line was
 
   CONFIG_FILES= $CONFIG_FILES
@@ -20594,7 +20594,7 @@
 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/&/g'`"
 ac_cs_version="\\
-OpenDKIM config.status 2.6.1
+OpenDKIM config.status 2.6.2
 configured by $0, generated by GNU Autoconf 2.68,
   with options \\"\$ac_cs_config\\"
 
diff -Nru opendkim-2.

Bug#680388: pu: package nvidia-graphics-modules/195.36.31+3

2012-07-05 Thread Andreas Beckmann
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: pu

This is a rebuild of the kernel modules against the fixed
nvidia-kernel-source 195.36.31-6squeeze1 in s-p-u, see #668780.


Andreas
diff --git a/debian/changelog b/debian/changelog
index 350cd81..3835517 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,13 @@
+nvidia-graphics-modules (195.36.31+3) proposed-updates; urgency=low
+
+  [ Andreas Beckmann ]
+  * Rebuild for security fixes.  See #609338, CVE-2012-0946.
+  * Bump B-D to the fixed nvidia-kernel-source (>= 195.36.31-6squeeze1).
+  * Move VCS from SVN to GIT:
+git://git.debian.org/git/pkg-nvidia/nvidia-graphics-modules.git
+
+ -- Andreas Beckmann   Thu, 05 Jul 2012 16:15:04 +0200
+
 nvidia-graphics-modules (195.36.31+2) unstable; urgency=low
 
   [ Andreas Beckmann ]
diff --git a/debian/control b/debian/control
index 2643963..ca84022 100644
--- a/debian/control
+++ b/debian/control
@@ -7,11 +7,11 @@ Uploaders:
  Andreas Beckmann ,
 Build-Depends: debhelper (>= 7),
  linux-headers-2.6.32-5-amd64 [i386 amd64], linux-headers-2.6.32-5-486 [i386], linux-headers-2.6.32-5-686 [i386], linux-headers-2.6.32-5-686-bigmem [i386], linux-headers-2.6.32-5-vserver-686 [i386], linux-headers-2.6.32-5-vserver-686-bigmem [i386], linux-headers-2.6.32-5-vserver-amd64 [amd64],
- nvidia-kernel-source (>= 195.36.31), nvidia-kernel-source (<< 195.36.31.0~),
+ nvidia-kernel-source (>= 195.36.31-6squeeze1), nvidia-kernel-source (<< 195.36.31.0~),
 Standards-Version: 3.9.1
 Homepage: http://www.nvidia.com/
-Vcs-Svn: svn://svn.debian.org/svn/pkg-nvidia/packages/nvidia-graphics-modules/trunk
-Vcs-Browser: http://svn.debian.org/wsvn/pkg-nvidia/packages/nvidia-graphics-modules/
+Vcs-Git: git://git.debian.org/git/pkg-nvidia/nvidia-graphics-modules.git
+Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-nvidia/nvidia-graphics-modules.git
 
 Package: nvidia-kernel-2.6-amd64
 Architecture: i386 amd64
diff --git a/debian/control.md5sum b/debian/control.md5sum
index 339c491..27ae5b3 100644
--- a/debian/control.md5sum
+++ b/debian/control.md5sum
@@ -1,5 +1,5 @@
-b477326351039954c2641b7c436443c1  debian/control
-7a32873c1ce594a8ada6450e70ecb916  debian/control.source
+a322e882bea9c5e9cbbf13144854bfd7  debian/control
+e69fc6aec1ada659b8df3ed7451fcf82  debian/control.source
 92a483ab4b8800a8b2ea7f4e7ecd229c  debian/control.flavor
 839f226e3c789f358ab8c2e9e11c1b11  debian/rules
 582d220156c6dc4f2da55ad47df6d557  debian/rules.defs
diff --git a/debian/control.source b/debian/control.source
index 78c6782..570f557 100644
--- a/debian/control.source
+++ b/debian/control.source
@@ -7,8 +7,8 @@ Uploaders:
  Andreas Beckmann ,
 Build-Depends: debhelper (>= 7),
  #LINUX_HEADERS#
- nvidia-kernel#LEGACY#-source (>= #NVIDIA_VERSION#), nvidia-kernel#LEGACY#-source (<< #NVIDIA_VERSION#.0~),
+ nvidia-kernel#LEGACY#-source (>= #NVIDIA_VERSION#-6squeeze1), nvidia-kernel#LEGACY#-source (<< #NVIDIA_VERSION#.0~),
 Standards-Version: 3.9.1
 Homepage: http://www.nvidia.com/
-Vcs-Svn: svn://svn.debian.org/svn/pkg-nvidia/packages/nvidia-graphics-modules#LEGACY#/trunk
-Vcs-Browser: http://svn.debian.org/wsvn/pkg-nvidia/packages/nvidia-graphics-modules#LEGACY#/
+Vcs-Git: git://git.debian.org/git/pkg-nvidia/nvidia-graphics-modules.git
+Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-nvidia/nvidia-graphics-modules.git
diff --git a/debian/gbp.conf b/debian/gbp.conf
new file mode 100644
index 000..024418f
--- /dev/null
+++ b/debian/gbp.conf
@@ -0,0 +1,3 @@
+[git-buildpackage]
+export-dir = ../build-area/
+ignore-branch = True


Bug#680350: marked as done (unblock: monkeystudio/1.9.0.2-2)

2012-07-05 Thread Debian Bug Tracking System
Your message dated Thu, 05 Jul 2012 16:41:19 +0200
with message-id <4ff5a78f.3030...@dogguy.org>
and subject line Re: Bug#680350: unblock: monkeystudio/1.9.0.2-2
has caused the Debian Bug report #680350,
regarding unblock: monkeystudio/1.9.0.2-2
to be marked as done.

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

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


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

Hi,

please unblock package monkeystudio.
The diff is small[1] and fixes one simple (but nasty) bug:
#672272 monkeystudio is displayed under "other" and not "programming"
in the menus.

TIA
Evgeni

unblock monkeystudio/1.9.0.2-2

[1] 
http://anonscm.debian.org/gitweb/?p=users/evgeni/monkeystudio.git;a=commitdiff;h=debian/1.9.0.2-2;hp=debian/1.9.0.2-1

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

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


--- End Message ---
--- Begin Message ---

On 05/07/12 11:13, Evgeni Golov wrote:

unblock monkeystudio/1.9.0.2-2


Unblocked.

Cheers.

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

--- End Message ---


Bug#680259: marked as done (unblock: gmic/1.5.1.6+dfsg-4)

2012-07-05 Thread Debian Bug Tracking System
Your message dated Thu, 05 Jul 2012 16:45:24 +0200
with message-id <4ff5a884.4090...@dogguy.org>
and subject line Re: Bug#680259: unblock: gmic/1.5.1.6+dfsg-4
has caused the Debian Bug report #680259,
regarding unblock: gmic/1.5.1.6+dfsg-4
to be marked as done.

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

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


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

Hi,

today the gmic author pointed me to a mistake in the manpage of zart,
which mentioned the wrong author for the program. Also I found some
missing copyright information in debian/copyright, so both issues should
be fixed before the release.

Thanks,

Bernd

unblock gmic/1.5.1.6+dfsg-4

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

Kernel: Linux 3.2.0-3-amd64 (SMP w/2 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
diff --git a/debian/changelog b/debian/changelog
index f52fa63..20d3eee 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+gmic (1.5.1.6+dfsg-4) unstable; urgency=low
+
+  * [4ed5416f] Fix author/copyright information in debian/copyright and zart.1
+
+ -- Bernd Zeimetz   Wed, 04 Jul 2012 18:43:34 +0200
+
 gmic (1.5.1.6+dfsg-3) unstable; urgency=low
 
   * [152547f5] Add missing Breaks/Replaces.
diff --git a/debian/copyright b/debian/copyright
index ddc05bd..4641bfb 100644
--- a/debian/copyright
+++ b/debian/copyright
@@ -1,13 +1,10 @@
-Format-Specification: http://svn.debian.org/wsvn/dep/web/deps/dep5.mdwn?rev=59
 Name: gmic
-Maintainer: David Tschumperlé 
+Maintainer: Bernd Zeimetz http://gmic.sourceforge.net/
 
 Files: *
-Copyright: 2008, 2009, David Tschumperlé 
-Source: http://gmic.sourceforge.net/
-Source: http://gmic.sourceforge.net/
-License: other
+Copyright: 2008-2012 David Tschumperlé 
+License:  CeCILL FREE SOFTWARE LICENSE AGREEMENT
  CeCILL FREE SOFTWARE LICENSE AGREEMENT
  .
  Notice
@@ -481,13 +478,78 @@ License: other
  .
  Version 2.0 dated 2006-07-12.
 
-Files: debian/copyright
-Copyright: 2009 Jakub Wilk , 2010 Bernd Zeimetz 
+
+Files: zart/*
+Copyright: 2012 Sébastien Fourey  / GREYC Ensicaen
+License:  CeCILL FREE SOFTWARE LICENSE AGREEMENT
+
+Files: zart/haarcascade_eye.xml, zart/haarcascade_frontalface_*.xml
+Copyright: Copyright (C) 2000, Intel Corporation, all rights reserved.
+License: Intel License Agreement For Open Source Computer Vision Library
+ Redistribution and use in source and binary forms, with or without modification,
+ are permitted provided that the following conditions are met:
+
+   * Redistribution's of source code must retain the above copyright notice,
+ this list of conditions and the following disclaimer.
+
+   * Redistribution's in binary form must reproduce the above copyright notice,
+ this list of conditions and the following disclaimer in the documentation
+ and/or other materials provided with the distribution.
+
+   * The name of Intel Corporation may not be used to endorse or promote products
+ derived from this software without specific prior written permission.
+ .
+ This software is provided by the copyright holders and contributors "as is" and
+ any express or implied warranties, including, but not limited to, the implied
+ warranties of merchantability and fitness for a particular purpose are disclaimed.
+ In no event shall the Intel Corporation or contributors be liable for any direct,
+ indirect, incidental, special, exemplary, or consequential damages
+ (including, but not limited to, procurement of substitute goods or services;
+ loss of use, data, or profits; or business interruption) however caused
+ and on any theory of liability, whether in contract, strict liability,
+ or tort (including negligence or otherwise) arising in any way out of
+ the use of this software, even if advised of the possibility of such damage.
+
+
+
+Files: zart/haarcascade_mcs_*.xml
+Copyright: Copyright (c) 2006, Modesto Castrillon-Santana
+ (IUSIANI, University of Las Palmas de Gran Canaria, Spain)
+License:
+  Redistribution and use in source and binary forms, with or without
+  modification, are permitted provided that the following conditions are
+  met:
+  .
+ * Redistributions of source code must retain the above copyright
+notice, this list of conditions and the following disclaimer.
+ * R

Bug#680381: unblock: spip/2.1.16-1

2012-07-05 Thread Mehdi Dogguy

tags 680381 + pending
thanks

On 04/07/12 15:06, David Prévot wrote:

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

Please unblock package spip, it's a minor release that will fix a
security issue, and a few bugs. The attached debdiff is pretty thin:
most of the changes, in the security screen file, are due to rewritten
comments.

unblock spip/2.1.16-1



We cannot unblock packages that are not uploaded. The changes look okay. 
So please upload (if you were waiting for our approval) and get back to 
us once the package has hit the archive.


Regards,

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



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



Processed: Re: Bug#680381: unblock: spip/2.1.16-1

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

> tags 680381 + pending
Bug #680381 [release.debian.org] unblock: spip/2.1.16-1
Added tag(s) pending.
> thanks
Stopping processing here.

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


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



Bug#680057: marked as done (unblock: fracplanet/0.4.0-3)

2012-07-05 Thread Debian Bug Tracking System
Your message dated Thu, 05 Jul 2012 16:53:34 +0200
with message-id <4ff5aa6e.9000...@dogguy.org>
and subject line Re: Bug#680057: unblock: fracplanet/0.4.0-3
has caused the Debian Bug report #680057,
regarding unblock: fracplanet/0.4.0-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.)


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

Please consider unblocking package fracplanet/0.4.0-3

The version fixes FTBFS 653584 caused by the
configuration target being phony by mistake.

It also makes sure the proper flags are passed,
and calls dpkg-buildflags so the default hardening
flags are used.

unblock fracplanet/0.4.0-3

diff -r -u -N fracplanet_0.4.0-2/debian/changelog 
fracplanet_0.4.0-3/debian/changelog
--- fracplanet_0.4.0-2/debian/changelog 2012-05-09 04:44:47.0 +0200
+++ fracplanet_0.4.0-3/debian/changelog 2012-07-01 16:39:17.0 +0200
@@ -1,3 +1,13 @@
+fracplanet (0.4.0-3) unstable; urgency=low
+
+  * QA upload.
+  * fix configure calling
+  - use proper stamp file, avoiding recompilation (Closes: 653584)
+  - use dpkg-buildflags
+  - use correct variables to pass flags (thus respecting DEB_BUILD_OPTIONS)
+
+ -- Bernhard R. Link   Sun, 01 Jul 2012 16:36:55 +0200
+
 fracplanet (0.4.0-2) unstable; urgency=low
 
   * QA upload.
diff -r -u -N fracplanet_0.4.0-2/debian/rules fracplanet_0.4.0-3/debian/rules
--- fracplanet_0.4.0-2/debian/rules 2010-04-09 16:16:23.0 +0200
+++ fracplanet_0.4.0-3/debian/rules 2012-07-01 17:01:00.0 +0200
@@ -2,21 +2,34 @@
 # Uncomment this to turn on verbose mode.
 #export DH_VERBOSE=1
 
-CFLAGS = -Wall -g
+CFLAGS   := $(shell dpkg-buildflags --get CFLAGS)
+CXXFLAGS := $(shell dpkg-buildflags --get CXXFLAGS)
+CPPFLAGS := $(shell dpkg-buildflags --get CPPFLAGS)
+LDFLAGS  := $(shell dpkg-buildflags --get LDFLAGS)
+# options needed for qmake (called by ./configure)
+# (set _RELEASE and _DEBUG empty to avoid those overriding what we give,
+#  pass CPPFLAGS and CFLAGS and CXXFLAGS,
+#  pass CXXFLAGS and LDFLAGS in LFLAGS (it's LFLAGS, not LDFLAGS!)):
+QMAKEOPTIONS := QMAKE_CXXFLAGS_RELEASE='' QMAKE_CXXFLAGS_DEBUG='' \
+QMAKE_CFLAGS_RELEASE='' QMAKE_CFLAGS_DEBUG='' \
+QMAKE_CFLAGS='-Wall $(CFLAGS) $(CPPFLAGS)' \
+QMAKE_CXXFLAGS='-Wall $(CFLAGS) $(CPPFLAGS)' \
+QMAKE_LFLAGS='$(CXXFLAGS) $(LDFLAGS)'
 
-ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
-   CFLAGS += -O0
-else
-   CFLAGS += -O2
+ifneq (,$(filter parallel=%,$(DEB_BUILD_OPTIONS)))
+   MAKEFLAGS += -j$(patsubst parallel=%,%,$(filter 
parallel=%,$(DEB_BUILD_OPTIONS)))
 endif
 
-config.status: configure
+
+configure-stamp: configure
dh_testdir
-   QTDIR=/usr/lib/qt4 ./configure CFLAGS="$(CFLAGS)" LDFLAGS="-Wl,-z,defs"
+   QTDIR=/usr/lib/qt4 ./configure $(QMAKEOPTIONS)
+   touch $@
 
-build: build-stamp
+build build-arch: build-stamp
+build-indep:
 
-build-stamp:  config.status
+build-stamp:  configure-stamp
dh_testdir
$(MAKE)
touch $@
@@ -24,12 +37,12 @@
 clean:
dh_testdir
dh_testroot
-   rm -f build-stamp
+   rm -f build-stamp configure-stamp
[ ! -f Makefile ] || $(MAKE) distclean
rm -f Makefile usage_text.h
dh_clean
 
-install: build
+install: build-stamp
dh_testdir
dh_testroot
dh_prep
@@ -39,11 +52,11 @@
cp debian/fracplanet.desktop debian/fracplanet/usr/share/applications/
 
 # Build architecture-independent files here.
-binary-indep: build install
+binary-indep:
 # We have nothing to do by default.
 
 # Build architecture-dependent files here.
-binary-arch: build install
+binary-arch: install
dh_testdir
dh_testroot
dh_installchangelogs
@@ -60,4 +73,4 @@
dh_builddeb
 
 binary: binary-indep binary-arch
-.PHONY: build clean binary-indep binary-arch binary install
+.PHONY: build build-indep build-arch clean binary-indep binary-arch binary 
install


--- End Message ---
--- Begin Message ---

On 03/07/12 11:01, Bernhard R. Link wrote:

unblock fracplanet/0.4.0-3


Unblocked.

Regards,

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

--- End Message ---


Bug#679913: marked as done (unblock: frog/0.12.15-3)

2012-07-05 Thread Debian Bug Tracking System
Your message dated Thu, 05 Jul 2012 17:00:23 +0200
with message-id <4ff5ac07.7060...@dogguy.org>
and subject line Re: Bug#679913: unblock: frog/0.12.15-3
has caused the Debian Bug report #679913,
regarding unblock: frog/0.12.15-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.)


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

Hi,

Please unblock package frog.

Wheezy currently has frog/0.12.9-3.  Since frog/0.12.15-3 has new upstream
code, with lots of bugfixes, and depends upon the new frogdata package, both me
and upstream (Ko van der Sloot) consider this new version much more suitable
for inclusion in Debian wheezy.

Upstream writes about 0.12.15:
 
 Frog can be considered beta software, and, as of 2012-06, is being stabilized.
 All planned functionality (including a dependency parser, the multi-word
 chunker, Named Entity Recognition, Chunking and error handling and reporting)
 has been implemented and tested.

The new frogdata package is "architecture: all", it installs about 100 MB of
data.  Package frog in wheezy (arch: any) installs 70 MB, frog in sid installs 
500 kB.

The only other change in frog 0.12.9-3 vs 0.12.15-3 is: more strict build
dependencies.

unblock frog/0.12.15-3

Thanks for your time!

Bye,

Joost

-- 
Ho Mitakuye Oyasin ※ joostvb@{牛在田里,ad1810}.com ※ http://mdcc.cx/


--- End Message ---
--- Begin Message ---

On 02/07/12 14:35, Joost van Baal-Ilić wrote:

unblock frog/0.12.15-3


Unblocked (based on the fact that frog/0.12.15-2 already got an 
automatic freeze-exception).


Regards,

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

--- End Message ---


Re: Preparation for d-i beta 1

2012-07-05 Thread Didier Raboud
Le jeudi, 5 juillet 2012 03.27:36, vous avez écrit :
> On Wed, Jul  4, 2012 at 18:46:54 -0600, Didier Raboud wrote:
> > b) Then, discussing this over the lunch with Philipp Kern, we agreed that
> > instead of downloading netboot.tar.gz's from mirrors (without checking
> > them) to create those debian-installer-$version-netboot-$arch packages,
> > it would actually be saner to build them within the d-i build process.
> 
> Might be something to discuss post wheezy but very much not something we
> should change now IMO.

Would an implementation of {SHA1,MD5}SUM checking in src:debian-installer-
netboot-images be considered then ?

Cheers,

OdyX


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


Bug#679952: marked as done (unblock: fldigi/3.21.48-1)

2012-07-05 Thread Debian Bug Tracking System
Your message dated Thu, 05 Jul 2012 17:06:02 +0200
with message-id <4ff5ad5a.7040...@dogguy.org>
and subject line Re: Bug#679952: unblock: fldigi/3.21.48-1
has caused the Debian Bug report #679952,
regarding unblock: fldigi/3.21.48-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.)


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

Please unblock package fldigi

I request a freeze exception for fldigi/3.21.48-1 which I have uploaded to
unstable.  The delta for this version includes only the two bug fixes noted in
the changelog entry here:

fldigi (3.21.48-1) unstable; urgency=low

   * New upstream release, includes these changes only:
 - Tango Icon Library updated public domain version (Closes: #679792)
 - Retry session ID after session time out (Closes: #679797)

The Tango Icons issue is a DFSG-non-compliance problem (more details in the bug
report #679792).  The fix involves no functional change, just a replacement of
the icon pixmaps.  But as this results in a 1-line diff of just C-language
xpm pixmap data, I shall omit the diff from this report.

The Retry session ID (#679797) fix is a small functional change which corrects
a moderately serious malfunction of the application; that diff is attached for
reference.

Thanks!


unblock fldigi/3.21.48-1


--- End Message ---
--- Begin Message ---

On 02/07/12 18:42, Kamal Mostafa wrote:

unblock fldigi/3.21.48-1


Unblocked.

Regards,

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

--- End Message ---


Re: Please let electric-fence 2.2.3 into testing

2012-07-05 Thread Mehdi Dogguy

On 02/07/12 21:54, Matthew Vernon wrote:

Hi,

I've just uploaded electric-fence 2.2.3. This version just tweaks the
build system a little, which undoes a reversion such that we again pass
-fno-builtin-malloc to gcc, which fixes a FTBFS on many architectures
(gcc mis-optimises without it). I've tested it works on i386 amd64 and
armel, so the buildds should build the whole lot soon.



Unblocked.

Regards,

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


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



Re: Preparation for d-i beta 1

2012-07-05 Thread Didier Raboud
Le mercredi, 4 juillet 2012 18.46:54, Didier Raboud a écrit :
>  The approach I have been taking is to keep
> producing arch:all packages (as was done in
> src:debian-installer-netboot-images ), but one at a time: when amd64's d-i
> is built, then the debian-installer-7.0-netboot-amd64:all package is
> built by unpacking the just-built
> netboot.tar.gz's. debian/control becomes a maintainer-generated file.
> 
> This leads to the following problem: buildds are very probably not letting
> arch:all packages go towards the archive.

FWIW, I just tested a "simple" sbuild run with the code from the
aforementioned branch, the result is the following:

* debian-installer-7.0-netboot-${ARCH}_${VERSION}_all.deb is built;
* the .changes doesn't point to the _all.deb;
* … so the package is not taken out of the build chroot;
* sbuild complains loudly:

 I: Built successfully
 E: Package builds debian-installer-7.0-netboot-amd64_$
{VERSION}_all.deb when binary-indep target is not called.  This is a bug in 
the packaging.
 E: Package claims to have built debian-installer-7.0-netboot-
armel_${VERSION}_all.deb, but did not.  This is a bug in the packaging.
 (… same for all non-amd64 packages…)

So the "building" works, but dpkg-genchanges and sbuild stand in the way.

What's the way forward?

OdyX


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


Re: Preparation for d-i beta 1

2012-07-05 Thread Cyril Brulebois
Didier Raboud  (05/07/2012):
> Would an implementation of {SHA1,MD5}SUM checking in src:debian-installer-
> netboot-images be considered then ?

I think that'd be more than welcome.

Mraw,
KiBi.


signature.asc
Description: Digital signature


Bug#680107: unblock: foomatic-filters/4.0.17-1

2012-07-05 Thread Mehdi Dogguy

tags 680107 + pending
thanks

On 03/07/12 18:34, Didier Raboud wrote:

So, what would you accept ? Just the patches for a 4.0.16-2 or the new
upstream release 4.0.17-1 ?


Given most of the noise is in the ChangeLog file (the rest is fine), I'd 
say that uploading 4.0.17-1 looks reasonable. Please go ahead with the 
upload and get back to us once the package hits the archive.


Regards,

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



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



Bug#680381: unblock: spip/2.1.16-1

2012-07-05 Thread David Prévot
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Le 05/07/2012 08:50, Mehdi Dogguy a écrit :
> tags 680381 + pending

>> unblock spip/2.1.16-1

> We cannot unblock packages that are not uploaded. The changes look okay.
> So please upload (if you were waiting for our approval)

Done, thanks. I was indeed waiting for your approval, in order not to
mess with the “unstable” status if you'd disagreed with this request
(sorry I forgot to mention that in the first place).

Cheers

David

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

iQIcBAEBCAAGBQJP9a9KAAoJELgqIXr9/gnyJh8P/i6gsJMcJ7EyHLFAFfN56KDh
jAcx8DKFk7kWWpUd6uGTUwGc1rOJRJ4f134MbB0sXANimUICbxFM7e0d/0VXld+X
fWvuEwAVTMwKVyZezhciaaTwdVlHCzZoqEsM2+GhOrOUWR0R/MKsqah+Qd7IlmKp
/drY8iGgRA7qEPZouhEvo1emcYff4H7WnzzQvMCr25oYfqo1f+kvobziTxEjnaP5
8d1gGxQzwZqQJHsX4Opz42ZXBd4uqyQpPJhR/n36qqMKHfV5BG19mgoyp7HGIlTb
gOh+ISR3vj4C9+5Cmt5r91t0hlYh74MnnKFp7IMTns6KmP5e3cY0qtRAXLwj+BjT
C/99TBCsdSqaTZ3SpeB7zniz0fLBxzRBCfaZ78LtVHBJwjmI/jPi1thY8AkTPiBm
2JYcQMZwvE45RR6uo9p2g+/igosdPbGKYEl2gTlVhruhyshdl5MYh6pLkIp0fRAV
jB7YDtqDbn1yd9d7G0H5bZFyq2zQaL2V/0j4LOz9nznzF5Zl78AWdXTXuJu8vga3
UpzpDemy2s3KwmLcnMSApqcaF4QyI11Q44xY6rSTNRKEUY8TWzSkjG4fzLoucHlj
osjSqnaR4hpkApAZ/dvfEsVEV1999v483c2oekaSaX5fdfDiDjp4tIMOrO6zzjfk
WFRCMJC1lYugU06OoSP2
=AIrb
-END PGP SIGNATURE-



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



Processed: Re: Bug#680107: unblock: foomatic-filters/4.0.17-1

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

> tags 680107 + pending
Bug #680107 [release.debian.org] unblock: foomatic-filters/4.0.17-1
Added tag(s) pending.
> thanks
Stopping processing here.

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


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



Re: Preparation for d-i beta 1

2012-07-05 Thread Julien Cristau
On Thu, Jul  5, 2012 at 09:04:48 -0600, Didier Raboud wrote:

> Le jeudi, 5 juillet 2012 03.27:36, vous avez écrit :
> > On Wed, Jul  4, 2012 at 18:46:54 -0600, Didier Raboud wrote:
> > > b) Then, discussing this over the lunch with Philipp Kern, we agreed that
> > > instead of downloading netboot.tar.gz's from mirrors (without checking
> > > them) to create those debian-installer-$version-netboot-$arch packages,
> > > it would actually be saner to build them within the d-i build process.
> > 
> > Might be something to discuss post wheezy but very much not something we
> > should change now IMO.
> 
> Would an implementation of {SHA1,MD5}SUM checking in src:debian-installer-
> netboot-images be considered then ?
> 
Should probably do a gpg check along with that.

Cheers,
Julien


signature.asc
Description: Digital signature


Bug#680381: marked as done (unblock: spip/2.1.16-1)

2012-07-05 Thread Debian Bug Tracking System
Your message dated Thu, 05 Jul 2012 17:23:49 +0200
with message-id <4ff5b185.7030...@dogguy.org>
and subject line Re: Bug#680381: unblock: spip/2.1.16-1
has caused the Debian Bug report #680381,
regarding unblock: spip/2.1.16-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.)


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

Please unblock package spip, it's a minor release that will fix a
security issue, and a few bugs. The attached debdiff is pretty thin:
most of the changes, in the security screen file, are due to rewritten
comments.

unblock spip/2.1.16-1

-- System Information:
Debian Release: 6.0.5
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'proposed-updates'), (500, 
'stable'), (150, 'testing'), (120, 'unstable'), (110, 'experimental')
Architecture: i386 (i686)

Kernel: Linux 2.6.32-5-686 (SMP w/1 CPU core)
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
diff -Nru spip-2.1.15/debian/changelog spip-2.1.16/debian/changelog
--- spip-2.1.15/debian/changelog	2012-06-12 19:17:13.0 -0400
+++ spip-2.1.16/debian/changelog	2012-07-04 08:46:23.0 -0400
@@ -1,3 +1,13 @@
+spip (2.1.16-1) unstable; urgency=high
+
+  * New upstream version:
+- fixes PHP injection (Closes: #680118);
+- fixes growing session directory;
+- fixes PHP 5.4 compatibility.
+  * Update security screen file to 1.1.3.
+
+ -- David Prévot   Wed, 04 Jul 2012 08:42:01 -0400
+
 spip (2.1.15-1) unstable; urgency=high
 
   * New upstream version, fixes cross site scripting.
diff -Nru spip-2.1.15/debian/patches/fix_displayed_version.patch spip-2.1.16/debian/patches/fix_displayed_version.patch
--- spip-2.1.15/debian/patches/fix_displayed_version.patch	2012-06-12 17:55:50.0 -0400
+++ spip-2.1.16/debian/patches/fix_displayed_version.patch	2012-07-04 08:30:47.0 -0400
@@ -2,7 +2,7 @@
  Make it obvious it's a Debian (patched) version
 Forwarded: not-needed
 Author: David Prévot 
-Last-Update: 2012-06-12
+Last-Update: 2012-07-04
 --- a/ecrire/inc_version.php
 +++ b/ecrire/inc_version.php
 @@ -423,7 +423,7 @@
@@ -10,7 +10,7 @@
  // 1.xxyy : xx00 versions stables publiees, xxyy versions de dev
  // (ce qui marche pour yy ne marchera pas forcement sur une version plus ancienne)
 -$spip_version_affichee = "$spip_version_branche";
-+$spip_version_affichee = "2.1.15-1 (Debian)";
++$spip_version_affichee = "2.1.16-1 (Debian)";
  
  // ** Securite **
  $visiteur_session = $auteur_session = $connect_statut = $connect_toutes_rubriques =  $hash_recherche = $hash_recherche_strict = $ldap_present ='';
diff -Nru spip-2.1.15/debian/security/ecran_securite.php spip-2.1.16/debian/security/ecran_securite.php
--- spip-2.1.15/debian/security/ecran_securite.php	2012-06-12 17:06:39.0 -0400
+++ spip-2.1.16/debian/security/ecran_securite.php	2012-07-04 08:31:30.0 -0400
@@ -5,21 +5,20 @@
  * --
  */
 
-define('_ECRAN_SECURITE', '1.1.2'); // 12 juin  2012
+define('_ECRAN_SECURITE', '1.1.3'); // 3 juillet 2012
 
 /*
  * Documentation : http://www.spip.net/fr_article4200.html
- *
  */
 
 /*
- * test utilisateur
+ * Test utilisateur
  */
 if (isset($_GET['test_ecran_securite']))
 	$ecran_securite_raison = 'test '._ECRAN_SECURITE;
 
 /*
- * detecteur de robot d'indexation
+ * Détecteur de robot d'indexation
  */
 if (!defined('_IS_BOT'))
 	define('_IS_BOT',
@@ -28,10 +27,11 @@
 			(string) $_SERVER['HTTP_USER_AGENT'])
 	);
 
-/* - interdit de passer une variable id_article (ou id_xxx) qui ne
- *   soit pas numerique (ce qui bloque l'exploitation de divers trous
- *   de securite, dont celui de toutes les versions < 1.8.2f)
- *   (sauf pour id_table, qui n'est pas numerique jusqu'a [5743])
+/*
+ * Interdit de passer une variable id_article (ou id_xxx) qui ne
+ * soit pas numérique (ce qui bloque l'exploitation de divers trous
+ * de sécurité, dont celui de toutes les versions < 1.8.2f)
+ * (sauf pour id_table, qui n'est pas numérique jusqu'à [5743])
  */
 foreach ($_GET as $var => $val)
 	if ($_GET[$var] AND strncmp($var,"id_",3)==0 AND $var!='id_table')
@@ -43,15 +43,14 @@
 	if ($GLOBALS[$var] AND strncmp($var,"id_",3)==0 AND $var!='id_table')
 		$GLOBALS[$var] = is_array($GLOBALS[$var])?@array_map('intval',$GLOBALS[$var]):intval($GLOBALS[$var]);
 
-
-/* - interdit la variable $cjpeg_command, qui etait utilisee sans

Bug#680107: unblock: foomatic-filters/4.0.17-1

2012-07-05 Thread Didier Raboud
Le jeudi, 5 juillet 2012 09.13:57, Mehdi Dogguy a écrit :
> tags 680107 + pending
> thanks
> 
> On 03/07/12 18:34, Didier Raboud wrote:
> > So, what would you accept ? Just the patches for a 4.0.16-2 or the new
> > upstream release 4.0.17-1 ?
> 
> Given most of the noise is in the ChangeLog file (the rest is fine), I'd
> say that uploading 4.0.17-1 looks reasonable. Please go ahead with the
> upload and get back to us once the package hits the archive.

Uploaded, thanks.

OdyX


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


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

2012-07-05 Thread Yaroslav Halchenko
Hi Release Team,

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

ants 

Slightly updated snapshot version than then one in squeeze

Fresh upstream version requires fresh ITK (in experimental)

popcon ~100

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


openmeeg 

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

Fresh upstream requires fresh libmat (in experimental)

popcon ~200

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


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

Thanks in advance

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


--
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20120705160939.gf5...@onerussian.com



Bug#680398: unblock: python-qt4/4.9.3-2

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

Please unblock package python-qt4

Fixes RC bug #679819 to allow 4.9.3 (which was uploaded before the freeze, but
stuck in New for some time and has a lot of bug fixes) to migrate.

unblock python-qt4/4.9.3-2



-- 
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/20120705165612.31464.466.reportbug@Scott-Latitude-E6320



Bug#680401: unblock: powerstat/0.01.17-1

2012-07-05 Thread Colin Ian King
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: freeze-exception

Please unblock package powerstat

I request a freeze exception for powerstat/0.01.17-1 which has been uploaded
to unstable.  The delta for this version includes a bug fix noted in the
change log entry as follows:

powerstat (0.01.17-1) unstable; urgency=low

  * Update version
  * Add support for /sys/class/power_supply (Closes: #679593)

The added support for /sys/class/power_supply fix is absolutely required
to make powerstat work at all with newer linux kernels which do not have the
older (deprecated) /proc/acpi/battery interface.  Without this fix
powerstat just won't work in Wheezy.

Thanks!

unblock powerstat/0.01.17-1



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



Bug#680401: powerstat-16-17-delta

2012-07-05 Thread Colin Ian King

Attached is the delta between powerstat 0.01.16 and 0.01.17

diff -Nru powerstat-0.01.16/debian/changelog powerstat-0.01.17/debian/changelog
--- powerstat-0.01.16/debian/changelog	2012-06-20 15:56:47.0 +0100
+++ powerstat-0.01.17/debian/changelog	2012-07-03 11:49:02.0 +0100
@@ -1,3 +1,10 @@
+powerstat (0.01.17-1) unstable; urgency=low
+
+  * Update version
+  * Add support for /sys/class/power_supply (Closes: #679593)
+
+ -- Colin King   Tue, 3 Jul 2012 11:48:44 +0100
+
 powerstat (0.01.16-1) unstable; urgency=low
 
   * Initial Debian release (Closes: #678273)
diff -Nru powerstat-0.01.16/Makefile powerstat-0.01.17/Makefile
--- powerstat-0.01.16/Makefile	2012-06-20 15:48:34.0 +0100
+++ powerstat-0.01.17/Makefile	2012-07-03 11:49:49.0 +0100
@@ -1,6 +1,6 @@
 CFLAGS += -Wall
 
-VERSION=0.01.16
+VERSION=0.01.17
 
 BINDIR=/usr/bin
 MANDIR=/usr/share/man/man8
diff -Nru powerstat-0.01.16/powerstat.c powerstat-0.01.17/powerstat.c
--- powerstat-0.01.16/powerstat.c	2012-06-20 15:48:34.0 +0100
+++ powerstat-0.01.17/powerstat.c	2012-07-03 11:49:49.0 +0100
@@ -21,6 +21,7 @@
 #include 
 #include 
 #include 
+#include 
 
 #include 
 #include 
@@ -36,6 +37,7 @@
 #include 
 #include 
 #include 
+#include 
 #include 
 
 #include 
@@ -79,6 +81,16 @@
  OPTS_REDO_NETLINK_BUSY |  \
  OPTS_ROOT_PRIV)
 
+#define SYS_CLASS_POWER_SUPPLY	"/sys/class/power_supply"
+#define PROC_ACPI_BATTERY	"/proc/acpi/battery"
+
+#define SYS_FIELD_VOLTAGE		"POWER_SUPPLY_VOLTAGE_NOW="
+#define SYS_FIELD_WATTS_RATE		"POWER_SUPPLY_POWER_NOW="
+#define SYS_FIELD_WATTS_LEFT		"POWER_SUPPLY_ENERGY_NOW="
+#define SYS_FIELD_AMPS_RATE		"POWER_SUPPLY_CURRENT_NOW="
+#define SYS_FIELD_AMPS_LEFT		"POWER_SUPPLY_CHARGE_NOW="
+#define SYS_FIELD_STATUS_DISCHARGING  	"POWER_SUPPLY_STATUS=Discharging"
+
 /* Measurement entry */
 typedef struct {
 	double	value;
@@ -118,6 +130,25 @@
 static int opts;/* opt arg opt flags */
 static volatile int stop_recv;			/* sighandler stop flag */
 
+
+char *file_get(const char *file)
+{
+	FILE *fp;
+	char buffer[4096];
+
+	if ((fp = fopen(file, "r")) == NULL)
+		return NULL;
+
+	if (fgets(buffer, sizeof(buffer), fp) == NULL) {
+		fclose(fp);
+		return NULL;
+	}
+
+	fclose(fp);
+
+	return strdup(buffer);
+}
+
 /*
  *  tty_height()
  *  try and find height of tty
@@ -311,8 +342,10 @@
 {
 	int i;
 
-	for (i=0; ivalue[i] = 0.0;
+		stats->inaccurate[i] = false;
+	}
 }
 
 /*
@@ -530,7 +563,7 @@
 			max->inaccurate[j] = true;
 			min->inaccurate[j] = true;
 			stddev->inaccurate[j] = true;
-		
+
 			average->value[j] = 0.0;
 			max->value[j] = 0.0;
 			min->value[j] = 0.0;
@@ -539,11 +572,176 @@
 	}
 }
 
+
+
 /*
- *  power_rate_get()
- *	get power discharge rate from battery
+ *  power_rate_get_sys_fs()
+ *	get power discharge rate from battery via /sys interface
  */
-static int power_rate_get(double *rate, bool *discharging, bool *inaccurate)
+static int power_rate_get_sys_fs(double *rate, bool *discharging, bool *inaccurate)
+{
+	DIR *dir;
+	struct dirent *dirent;
+	time_t time_now, dt;
+
+	static measurement_t measurements[MAX_MEASUREMENTS];
+	static int index = 0;
+	int i, j;
+	double total_watts = 0.0;
+	double total_capacity = 0.0;
+	double dw;
+
+	*rate = 0.0;
+	*discharging = false;
+	*inaccurate = true;
+
+	if ((dir = opendir(SYS_CLASS_POWER_SUPPLY)) == NULL) {
+		fprintf(stderr, "Machine does not have %s, cannot run the test.\n", SYS_CLASS_POWER_SUPPLY);
+		return -1;
+	}
+
+	do {
+		dirent = readdir(dir);
+		if (dirent && strlen(dirent->d_name) > 2) {
+			char path[PATH_MAX];
+			char *data;
+			int  val;
+			FILE *fp;
+
+			double voltage = 0.0;
+
+			double amps_rate = 0.0;
+			double amps_left = 0.0;
+
+			double watts_rate = 0.0;
+			double watts_left = 0.0;
+
+			/* Check that type field matches the expected type */
+			snprintf(path, sizeof(path), "%s/%s/type", SYS_CLASS_POWER_SUPPLY, dirent->d_name);
+			if ((data = file_get(path)) != NULL) {
+bool mismatch = (strstr(data, "Battery") == NULL);
+free(data);
+if (mismatch)
+	continue;	/* type don't match, skip this entry */
+			} else
+continue;		/* can't check type, skip this entry */
+
+			snprintf(path, sizeof(path), "%s/%s/uevent", SYS_CLASS_POWER_SUPPLY, dirent->d_name);
+			if ((fp = fopen(path, "r")) == NULL) {
+fprintf(stderr, "Battery %s present but under supported - no state present.", dirent->d_name);
+return -1;
+			} else {
+char buffer[4096];
+while (fgets(buffer, sizeof(buffer)-1, fp) != NULL) {
+	if (strstr(buffer, SYS_FIELD_STATUS_DISCHARGING))
+		*discharging = true;
+
+	if (strstr(buffer, SYS_FIELD_AMPS_LEFT) &&
+	strlen(buffer) > sizeof(SYS_FIELD_AMPS_LEFT) - 1) {
+		sscanf(buffer + sizeof(SYS_FIELD_AMPS_LEFT) - 1, "%d", &val);
+		amps_left = (double)val / 100.0;
+	}
+
+	if (strstr(buffer, SYS_FIELD_WATTS_LEFT) &&
+	strlen(buffer) > sizeof(SYS_FIELD_WATTS_LEFT) - 1) {
+		sscanf(buffer + sizeof(SYS_FIELD_

Bug#680401: unblock: powerstat/0.01.17-1

2012-07-05 Thread Kamal Mostafa

> I request a freeze exception for powerstat/0.01.17-1

In case this matters...  As the upload sponsor, I also agree with this
request.

 -Kamal


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


Bug#680407: unblock: liblicense/0.8.1-3

2012-07-05 Thread Asheesh Laroia
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Dear release time,

I kindly request an unblock for package liblicense.

This 0.8.1-3 (and its predecessor, 0.8.1-2) was prepared before the freeze, and
is only delayed because of a delay in its sponsorship since a co-maintainer is
not a DD.

The changelog for 0.8.1-2 and 0.8.1-3:

diff -Nru liblicense-0.8.1/debian/changelog liblicense-0.8.1/debian/changelog
--- liblicense-0.8.1/debian/changelog   2012-03-03 09:24:24.0 -0600
+++ liblicense-0.8.1/debian/changelog   2012-06-25 20:23:04.0 -0600
@@ -1,3 +1,31 @@
+liblicense (0.8.1-3) unstable; urgency=low
+
+  * Adding a Replaces / Breaks line to liblicense-dev's control, since
+we moved the .a static libs from the liblicense package to -dev.
+Thanks, Andreas! (Closes: #673803)
+  * Adding a development symbolic link.
+
+ -- Paul Tagliamonte   Mon, 21 May 2012 16:24:59 -0400
+
+liblicense (0.8.1-2) unstable; urgency=low
+
+  * Acknowledge NMU. (Closes: #662015)
+  * Drop NMU diff, rewrite rules to use dh9, and overrides where needed.
+- By using the short-style rules, we restore build-arch sanity.
+  (Closes: #655003)
+- Bumped b-d on debhelper up to 9
+  * Add patch against modules/io/gsf.c, rename the "clone" function to
+gsf_clone. (Closes: #669451)
+  * Move -cli to utils from libs. (Closes: #663074)
+  * Build for all versions of Python (Closes: #662012)
+  * Remove brace-expansion.
+- Move the .a files into the -dev package
+  * update to debian/liblicense3.dirs.
+  * Dropped the lintian overrides, since the issues were resolved upstream.
+  * Update to policy 3.9.3. No further changes.
+
+ -- Paul Tagliamonte   Tue, 08 May 2012 16:47:21 -0400

The rest of the debdiff follows:

diff -Nru liblicense-0.8.1/debian/compat liblicense-0.8.1/debian/compat
--- liblicense-0.8.1/debian/compat  2012-03-03 08:21:31.0 -0600
+++ liblicense-0.8.1/debian/compat  2012-05-21 14:24:07.0 -0600
@@ -1 +1 @@
-5
+9
diff -Nru liblicense-0.8.1/debian/control liblicense-0.8.1/debian/control
--- liblicense-0.8.1/debian/control 2012-03-03 08:21:31.0 -0600
+++ liblicense-0.8.1/debian/control 2012-06-25 20:13:16.0 -0600
@@ -2,10 +2,10 @@
 Section: libs
 Priority: extra
 Maintainer: Asheesh Laroia 
-Uploaders: Paul Tagliamonte 
-Standards-Version: 3.9.2
+Uploaders: Paul Tagliamonte 
+Standards-Version: 3.9.3
 X-Python-Version: >= 2.5
-Build-Depends: debhelper (>= 5.0.38), dh-autoreconf, libcurl4-gnutls-dev,
+Build-Depends: debhelper (>= 9.20120115~), dh-autoreconf, libcurl4-gnutls-dev,
  libvorbis-dev, libtag1-dev, libflac-dev, libraptor-dev, libexempi-dev,
  libid3-3.8.3-dev, libgsf-1-dev, python-all-dev (>= 2.5), libglib2.0-dev,
  xsltproc, docbook-xsl, libtool, libexpat-dev
@@ -16,6 +16,8 @@
 Package: liblicense-dev
 Section: libdevel
 Architecture: any
+Replaces: liblicense3 (<< 0.8.1-3)
+Breaks: liblicense3 (<< 0.8.1-3)
 Depends: liblicense3 (= ${binary:Version}), ${misc:Depends}
 Description: Development headers for the liblicense package
  An implementation of the Creative Commons metadata standards for saving
@@ -51,6 +53,7 @@
- license properties, as described by ccREL

 Package: liblicense-cli
+Section: utils
 Architecture: any
 Depends: ${shlibs:Depends}, ${misc:Depends}
 Description: Command line interface for license metadata
diff -Nru liblicense-0.8.1/debian/liblicense3.dirs
liblicense-0.8.1/debian/liblicense3.dirs
--- liblicense-0.8.1/debian/liblicense3.dirs2012-03-03 08:21:31.0
-0600
+++ liblicense-0.8.1/debian/liblicense3.dirs2012-05-21 14:24:07.0
-0600
@@ -1,3 +1,3 @@
 usr/lib
-usr/lib/liblicense/0.8/io
-usr/lib/liblicense/0.8/config
+usr/lib/liblicense/0.8.1/io
+usr/lib/liblicense/0.8.1/config
diff -Nru liblicense-0.8.1/debian/liblicense3.install
liblicense-0.8.1/debian/liblicense3.install
--- liblicense-0.8.1/debian/liblicense3.install 2012-03-03 08:21:31.0
-0600
+++ liblicense-0.8.1/debian/liblicense3.install 2012-05-21 14:24:07.0
-0600
@@ -1,2 +1,2 @@
 usr/lib/liblicense.so.*
-usr/lib/liblicense/*/*/*.{so,a}
+usr/lib/liblicense/*/*/*.so
diff -Nru liblicense-0.8.1/debian/liblicense3.lintian-overrides
liblicense-0.8.1/debian/liblicense3.lintian-overrides
--- liblicense-0.8.1/debian/liblicense3.lintian-overrides   2012-03-03
08:32:59.0 -0600
+++ liblicense-0.8.1/debian/liblicense3.lintian-overrides   1969-12-31
18:00:00.0 -0600
@@ -1,4 +0,0 @@
-liblicense3 binary: extra-license-file
-# This is actually a F-P. This was fixed in Lintian it's self
-# with revision `8543ed2db3e1efd74d4f2fd8126d9570dbe33d73'.
-# (VCS Commit diff:
http://anonscm.debian.org/gitweb/?p=lintian/lintian.git;a=commit;h=8543ed2db3e1efd74d4f2fd8126d9570dbe33d73
)
diff -Nru liblicense-0.8.1/debian/liblicense-cli.lintian-overrides
liblicense-0.8.1/debian/liblicense-cli.lintian-overrides
--- liblicense-0.8.1/debian/liblicense-cli.lintia

Re: glibc: disabling armhf ldconfig support

2012-07-05 Thread Steve McIntyre
On Thu, Jul 05, 2012 at 12:08:06AM +0200, Aurelien Jarno wrote:
>Hi,
>
>At the end of last year the patch unsubmitted-ldconfig-cache-abi.diff
>has been added, but has not been submitted upstream despite asking a few
>times. This patch provides correct ldconfig support for systems with
>both armel and armhf libraries.
>
>The situation is now that this patch breaks MIPS N64 support due
>to a missing break in a case (easily fixable), but also that upstream
>has reused the same tag value for x32 support:
>
>  Debian 2.13:
>#define FLAG_ARM_HFABI  0x0800
>
>  Upstream HEAD:
>#define FLAG_X8664_LIBX32   0x0800

Sigh.

>As a consequence the armhf value will have to be changed in the future,
>which might have some side effects.

We'd have to make sure that the ldconfig cache is re-generated after
the change, to make sure things don't break.

>For now I guess the best change is simply to disable this patch for
>wheezy, which is already done in the SVN, and will land to send in the
>next upload. I'll ask debian-release to allow migration of the package
>to wheezy. I am also ready to re-enable this patch for wheezy once it
>has been merged upstream, or even when at least the tag value is merged
>upstream.

I'm in the middle of re-working the patch for upstream, but it's slow
going at the moment. I'm trying to get reviews for definitions of the
PT_ARM_ARCH_EXT segment, and that's been held up. :-(

Cheers,
-- 
Steve McIntyresteve.mcint...@linaro.org
 Linaro.org | Open source software for ARM SoCs


-- 
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20120705173641.gb19...@einval.com



Please unblock acpi-support

2012-07-05 Thread Michael Meskes
Hi,

while working on the dreaded dependency on consolekit (#665987) I found a much
more severe problem (#680409) and fixed both. I don't think we should release
without a fix to #680409 because that bug opens a whole can of worms. We've had
a lot of problems with acpi-support and other power managers interfering with
each other and I don't want to see those come up again. So please unblock.

Thanks.

Michael

P.S.: Debdiff attached.
-- 
Michael Meskes
Michael at Fam-Meskes dot De, Michael at Meskes dot (De|Com|Net|Org)
Michael at BorussiaFan dot De, Meskes at (Debian|Postgresql) dot Org
Jabber: michael.meskes at googlemail dot com
VfL Borussia! Força Barça! Go SF 49ers! Use Debian GNU/Linux, PostgreSQL
diff -u acpi-support-0.140/debian/changelog acpi-support-0.140/debian/changelog
--- acpi-support-0.140/debian/changelog
+++ acpi-support-0.140/debian/changelog
@@ -1,3 +1,13 @@
+acpi-support (0.140-5) unstable; urgency=low
+
+  * Rewrote getXuser in power-funcs to only use ck-list-sessions if installed,
+if not fallback to using pinky instead. This enables us to downgrade
+consolekit to a recommendation instead of a dependency. (Closes: #665987)
+  * Unset IFS after using it to make other commands use standard setting again.
+(Closes: #680409)
+
+ -- Michael Meskes   Thu, 05 Jul 2012 11:03:20 +0200
+
 acpi-support (0.140-4) unstable; urgency=low
 
   * Remove examples that are variants of files still in use.
diff -u acpi-support-0.140/debian/control acpi-support-0.140/debian/control
--- acpi-support-0.140/debian/control
+++ acpi-support-0.140/debian/control
@@ -35,7 +35,8 @@
 
 Package: acpi-support-base
 Architecture: all
-Depends: acpid (>= 1.0.4), consolekit, ${misc:Depends}
+Depends: acpid (>= 1.0.4), ${misc:Depends}
+Recommends: consolekit
 Suggests: acpi-support
 Replaces: acpi-support (<< 0.109-1)
 Description: scripts for handling base ACPI events such as the power button
diff -u acpi-support-0.140/debian/patches/power-funcs.diff 
acpi-support-0.140/debian/patches/power-funcs.diff
--- acpi-support-0.140/debian/patches/power-funcs.diff
+++ acpi-support-0.140/debian/patches/power-funcs.diff
@@ -1,6 +1,6 @@
 --- acpi-support-0.140/lib/power-funcs
 +++ acpi-support-0.140/lib/power-funcs
-@@ -1,33 +1,51 @@
+@@ -1,33 +1,83 @@
  # a micro library of helper functions for the power scripts
  
 -umask 022;
@@ -21,32 +21,62 @@
  getXuser() {
 -  local display userhome uid
 -  if [ -z "$displaynum" ]; then
--  display=.+
-+  local display uid user startx pid userhome IFS
++  local plist display uid user startx pid userhome IFS
 +
 +  if [ "$displaynum" ]; then
 +  display=:$displaynum
++  else
+   display=.+
++  fi
++
++  user=
++  if [ -x /usr/bin/ck-list-sessions ]; then
++  uid=$(ck-list-sessions | awk 'BEGIN { unix_user = ""; } 
/^Session/ { unix_user = ""; } /unix-user =/ { gsub(/'\''/,"",$3); unix_user = 
$3; } /x11-display = '\'$display\''/ { print unix_user; exit (0); }')
++
++  if [ "$uid" ]; then
++  IFS=:
++  set -- $(getent passwd $uid)
++  user=$1
++  unset IFS
++  fi
else
 -  display=":$displaynum"
-+  display=.+
++  plist=$(pinky -fw) || pwf_error "pinky lost"
++  while read l; do
++  set -- $l
++  eval lastpp=\$$#
++  for ds in $2 $lastpp; do
++  case $ds in
++  $display)
++  user=$1
++  break
++  ;;
++  esac
++  done
++  [ -z "$user" ] || break
++  for ds in $2 $lastpp; do
++  case $ds in
++  $display.0)
++  user=$1
++  break
++  ;;
++  esac
++  done
++  [ -z "$user" ] || break
++  done <<-EOF
++  $plist
++  EOF
fi
-+
-   uid=$(ck-list-sessions | awk 'BEGIN { unix_user = ""; } /^Session/ { 
unix_user = ""; } /unix-user =/ { gsub(/'\''/,"",$3); unix_user = $3; } 
/x11-display = '\'$display\''/ { print unix_user; exit (0); }')
+-  uid=$(ck-list-sessions | awk 'BEGIN { unix_user = ""; } /^Session/ { 
unix_user = ""; } /unix-user =/ { gsub(/'\''/,"",$3); unix_user = $3; } 
/x11-display = '\'$display\''/ { print unix_user; exit (0); }')
  
 -  if [ -n "$uid" ]; then
 -  user=$(getent passwd $uid | cut -d: -f1)
 -  userhome=$(getent passwd $user | cut -d: -f6)
 -

Re: Request unblock for aiccu 20070115-15.1

2012-07-05 Thread Mehdi Dogguy

On 05/07/12 08:51, Reinier Haasjes wrote:

Hi,

Axel Beckert uploaded a fix for the following bugs in aiccu:
Bug#667755: FTBFS[kfreebsd] (serious)
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=667755
Bug#670971: Danish translation
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=670971

Please consider this packages for Wheezy, thanks.



Unblocked. (and set required days to 15, RoZobel).

Regards,

--
Mehdi


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



Bug#680343: unblock: trousers/0.3.9-2

2012-07-05 Thread Pierre Chifflier
On Thu, Jul 05, 2012 at 10:01:08AM +0200, Pierre Chifflier wrote:
> Package: release.debian.org
> Severity: normal
> User: release.debian@packages.debian.org
> Usertags: unblock
> 
> Please unblock package trousers
> 
> This version fixes an annoying bug which prevents upgrades or removal
> from previous versions, including stable (and thus makes upgrades fail,
> without any proper way to upgrade or remove the old version).
> See #67682 and #679621
> 
> The fix is a workaround: since the init script cannot be used, we kill
> and remove the executable in the prerm script so the init script can
> exit properly, and continue the upgrade process with the new version.

Hi,

The previous upload was b0rked, it introduced a regression (upgrade was
working, removal broke, causing #680375).
I have uploaded a new version fixing both bugs (tested for install,
upgrade, and removal).

I've attached a full debdiff (modifications of both packages).

Sorry for the wrong upload.

unblock trousers/0.3.9-3

Cheers,
Pierre



-- 
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20120705191759.ga14...@mail.wzdftpd.net



Re: Bug#680343: unblock: trousers/0.3.9-2

2012-07-05 Thread Pierre Chifflier
On Thu, Jul 05, 2012 at 09:17:59PM +0200, Pierre Chifflier wrote:
> 
> I've attached a full debdiff (modifications of both packages).
> 

Here it is


diff -Nru trousers-0.3.9/debian/changelog trousers-0.3.9/debian/changelog
--- trousers-0.3.9/debian/changelog	2012-06-18 22:22:21.0 +0200
+++ trousers-0.3.9/debian/changelog	2012-07-05 20:56:17.0 +0200
@@ -1,3 +1,17 @@
+trousers (0.3.9-3) unstable; urgency=low
+
+  * Fix regression introduced in previous patch, preventing removal
+(Closes: #680375)
+
+ -- Pierre Chifflier   Thu, 05 Jul 2012 20:56:13 +0200
+
+trousers (0.3.9-2) unstable; urgency=low
+
+  * Add workaround for upgrade failure for versions before 0.3.8-3
+(Closes: #679621)
+
+ -- Pierre Chifflier   Wed, 04 Jul 2012 21:57:22 +0200
+
 trousers (0.3.9-1) unstable; urgency=low
 
   * Imported Upstream version 0.3.9
diff -Nru trousers-0.3.9/debian/trousers.postinst trousers-0.3.9/debian/trousers.postinst
--- trousers-0.3.9/debian/trousers.postinst	2012-02-26 11:47:51.0 +0100
+++ trousers-0.3.9/debian/trousers.postinst	2012-07-04 21:46:07.0 +0200
@@ -5,7 +5,7 @@
 case "${1}" in
 	configure)
 		# Adding tss system user
-		adduser --system --home /var/lib/tpm --shell /bin/false --no-create-home --group tss
+		adduser --system --quiet --home /var/lib/tpm --shell /bin/false --no-create-home --group tss
 
 		# Setting owner
 		chown tss:tss /var/lib/tpm -R
diff -Nru trousers-0.3.9/debian/trousers.prerm trousers-0.3.9/debian/trousers.prerm
--- trousers-0.3.9/debian/trousers.prerm	1970-01-01 01:00:00.0 +0100
+++ trousers-0.3.9/debian/trousers.prerm	2012-07-05 20:48:17.0 +0200
@@ -0,0 +1,45 @@
+#!/bin/sh
+# prerm script for trousers
+#
+# see: dh_installdeb(1)
+
+set -e
+
+# summary of how this script can be called:
+#*  `remove'
+#*  `upgrade' 
+#*  `failed-upgrade' 
+#*  `remove' `in-favour'  
+#*  `deconfigure' `in-favour'
+#`removing'
+#   
+# for details, see http://www.debian.org/doc/debian-policy/ or
+# the debian-policy package
+
+
+case "$1" in
+remove|upgrade|deconfigure)
+;;
+
+failed-upgrade)
+if dpkg --compare-versions "$2" lt 0.3.8-3; then
+# hack to avoid #676828
+# removing the executable will make the init script exit gracefully
+rm -f /usr/sbin/tcsd
+# kill tcsd (and any other process owned by the tss user)
+killall -u tss  2>/dev/null || true
+fi
+;;
+
+*)
+echo "prerm called with unknown argument \`$1'" >&2
+exit 1
+;;
+esac
+
+# dh_installdeb will replace this with shell code automatically
+# generated by other debhelper scripts.
+
+#DEBHELPER#
+
+exit 0


Possible freeze exception for autopkgtest

2012-07-05 Thread Ian Jackson
autopkgtest 2.2.2 is currently in sid but was uploaded before the
freeze and AIUI will be subject to the blanket freeze exception.
I would like to ask your opinion about about possible exceptions for
further changes to autopkgtest for wheezy.

autopkgtest has no rdepends.  The spec documment in its source tree is
an output consumed by other parts of the project but not via the
archive.  It is possible that bugs in autopkgtest might relate to only
certain packages, and make it difficult to test those packages with
autopkgtest, but the packages themselves would remain unaffected.  So
the risk for other packages and bad interactions is low.

I think best best chance of improving the use of autopkgtest in wheezy
is by making it more functional.

Of course another approach would be to ask users who wanted, after
wheezy is released, to use a better autopkgtest test runner would be
to ask them to install the version from sid or testing.  This wouldn't
be very hard as I don't expect in the lifetime of wheezy to introduce
changes that would make it hard to use the sid version on wheezy.

Things I think would be useful to get into wheezy are:

 #678359  autopkgtest: Depends: @ only works when building the source

 This is a pretty significant bug and really needs IMO to be
 fixed.  I'm tempted to declare it RC.  There is a patch
 available, which looks good, and I intend to accept it (after
 double-checking and testing it myself).

 With your approval, I intend to make an upload to fix this soon -
 after 2.2.2 has propagated to testing.

 #648148  autopkgtest: Support running as user

 This would be something that would be very nice to have.  It
 would enable users to run autopkgtest directly in wheezy without
 needing root.  There is no design or patch for this yet.  I will
 consider how best to implement it.

 Supposing I were to have a this ready for upload by (say) three
 weeks from now, would it be a candidate for a freeze exception ?
 If so then I will make this a priority.

 Of course there is a risk that this will introduce bugs.  If
 those bugs don't get fixed in time it might be necessary to
 revert the change by reuploading the previous version with a new
 (higher) version number.  This would be a simple operation which
 I'd be happy to authorise anyone to do, or to do myself.

Thanks for your attention.  Let me know if there's any more
questions you have.

Ian.


-- 
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20469.60254.352357.60...@chiark.greenend.org.uk



Re: Possible problems in your Debian packages

2012-07-05 Thread Robert Millan
Dear release team,

2012/6/30 DDPOMail robot :
> === freebsd-utils:
> = 1 Release Goals bug(s):
> - #577494 
>   include ktrdump and vmstat
>   Part of release goal: kfreebsd-* as release architectures

Please could you give more details on which part of #577494 is
considered a release goal? The bug title mentions ktrdump and vmstat,
two utilities which are seldom used. The bug log also mentions arp,
perhaps it's arp you're concerned with?

arp I would understand, but it sounds really strange that you consider
ktrdump and vmstat as mandatory for kfreebsd-* to qualify as release
architectures.

-- 
Robert Millan


-- 
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/caofdtxpb+hdbphhv4xbjswdxgggakjrz3t57yy5lymvjhyn...@mail.gmail.com



Re: Possible problems in your Debian packages

2012-07-05 Thread Julien Cristau
On Thu, Jul  5, 2012 at 21:39:18 +0200, Robert Millan wrote:

> Dear release team,
> 
> 2012/6/30 DDPOMail robot :
> > === freebsd-utils:
> > = 1 Release Goals bug(s):
> > - #577494 
> >   include ktrdump and vmstat
> >   Part of release goal: kfreebsd-* as release architectures
> 
> Please could you give more details on which part of #577494 is
> considered a release goal? The bug title mentions ktrdump and vmstat,
> two utilities which are seldom used. The bug log also mentions arp,
> perhaps it's arp you're concerned with?
> 
> arp I would understand, but it sounds really strange that you consider
> ktrdump and vmstat as mandatory for kfreebsd-* to qualify as release
> architectures.
> 
I don't think the release team has anything to do with this?

Cheers,
Julien


signature.asc
Description: Digital signature


Re: Possible problems in your Debian packages

2012-07-05 Thread Steven Chamberlain
On 05/07/12 20:39, Robert Millan wrote:
> 2012/6/30 DDPOMail robot :
>> === freebsd-utils:
>> = 1 Release Goals bug(s):
>> - #577494 
>>   include ktrdump and vmstat
>>   Part of release goal: kfreebsd-* as release architectures
> 
> Please could you give more details on which part of #577494 is
> considered a release goal?

I guessed that this (and other low-severity bugs) were flagged like this
simply because they are usertagged with 'kfreebsd'?  In which case that
may be a bit OTT.

Regards,
-- 
Steven Chamberlain
ste...@pyro.eu.org


-- 
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4ff5ef48.9070...@pyro.eu.org



Bug#680430: unblock: njam/1.25-5.2

2012-07-05 Thread Moritz Muehlenhoff
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock package njam

#651896 - security fix

unblock njam/1.25-5.2



-- 
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/20120705194917.24608.64118.reportbug@pisco.westfalen.local



Bug#680431: unblock: chrony/1.26-2

2012-07-05 Thread Moritz Muehlenhoff
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock package chrony

The upload adds hardened build flags and chrony is one of the
packages from the targeted subgroup (had a DSA in the past)

unblock chrony/1.26-2



-- 
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/20120705195031.24794.10964.reportbug@pisco.westfalen.local



Bug#680430: marked as done (unblock: njam/1.25-5.2)

2012-07-05 Thread Debian Bug Tracking System
Your message dated Thu, 05 Jul 2012 20:51:44 +0100
with message-id <1341517904.22239.0.ca...@jacala.jungle.funky-badger.org>
and subject line Re: Bug#680430: unblock: njam/1.25-5.2
has caused the Debian Bug report #680430,
regarding unblock: njam/1.25-5.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.)


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

Please unblock package njam

#651896 - security fix

unblock njam/1.25-5.2


--- End Message ---
--- Begin Message ---
On Thu, 2012-07-05 at 21:49 +0200, Moritz Muehlenhoff wrote:
> Please unblock package njam
> 
> #651896 - security fix

Already unblocked by Mehdi.

Regards,

Adam


--- End Message ---


Please unblock scim-chewing

2012-07-05 Thread Andrew Lee
Dear release team,

Please unblock scim-chewing 0.3.4-2 which has fixed a FTBFS problem
#676009 without other changes.

Thanks,

-Andrew


-- 
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/CACpy4ov6EszSiLL9gYqGKnZjGvabhPrjF3B4WK=f0l0bnys...@mail.gmail.com



Bug#680437: nmu: apertium-en-ca_0.8.9-1

2012-07-05 Thread Pablo Duboue
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: binnmu

nmu apertium-en-ca_0.8.9-1 . ALL . -m "Needs rebuild for PCRE dependencies. 
Fixes #503861."
nmu apertium-en-es_0.6.0-1.1 . ALL . -m "Needs rebuild for PCRE dependencies. 
Fixes #503861."
nmu apertium-eo-ca_0.9.0-1.1 . ALL . -m "Needs rebuild for PCRE dependencies. 
Fixes #503861."
nmu apertium-eo-es_0.9.0-1.1 . ALL . -m "Needs rebuild for PCRE dependencies. 
Fixes #503861."
nmu apertium-eu-es_0.3.1-1 . ALL . -m "Needs rebuild for PCRE dependencies. 
Fixes #503861."
nmu apertium-fr-es_0.9.0-1.1 . ALL . -m "Needs rebuild for PCRE dependencies. 
Fixes #503861."
nmu apertium-oc-ca_1.0.5-1.1 . ALL . -m "Needs rebuild for PCRE dependencies. 
Fixes #503861."
nmu apertium-oc-es_1.0.5-1.1 . ALL . -m "Needs rebuild for PCRE dependencies. 
Fixes #503861."

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

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



-- 
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/20120705203515.3175.72257.report...@netbook.homedns.org



Re: Preparation for d-i beta 1

2012-07-05 Thread Didier Raboud
Le jeudi, 5 juillet 2012 09.04:48, Didier Raboud a écrit :
> Le jeudi, 5 juillet 2012 03.27:36, vous avez écrit :
> > On Wed, Jul  4, 2012 at 18:46:54 -0600, Didier Raboud wrote:
> > > b) Then, discussing this over the lunch with Philipp Kern, we agreed
> > > that instead of downloading netboot.tar.gz's from mirrors (without
> > > checking them) to create those debian-installer-$version-netboot-$arch
> > > packages, it would actually be saner to build them within the d-i
> > > build process.
> > 
> > Might be something to discuss post wheezy but very much not something we
> > should change now IMO.
> 
> Would an implementation of {SHA1,MD5}SUM checking in src:debian-installer-
> netboot-images be considered then ?

This has now happenned [0]:

1) gpgv checks Release{,.gpg} files against debian-archive-keyring
2) sha256sum checks SHA256SUMS against the Release file
3) sha256sum checks the downloaded files against SHA256SUMS

[0] http://anonscm.debian.org/gitweb/?p=d-i/debian-installer-netboot-
images.git;a=commitdiff;h=0c3ed95410dbfdf5be5dfd93f5f486565c8cfaa7

sha1sum and md5sum support is implemented but commented for reference; it's 
probably useless to run more than one hash check so I left the stronger ones 
where possible.

I haven't uploaded as no debian-installer upload happenned in the meantime (so 
the version would be identical).

Ah, another question though: the installation paths are not version-specific: 
/usr/lib/debian-installer/images/amd64/… so I was about to add Replaces and 
Breaks against the -6.0- versions. But does this make sense? Would we not 
rather version-specify the paths (like /usr/lib/debian-installer/7.0/amd64/) 
to ensure co-installability ?

a) Add replaces+breaks ?
b) Version-specify the paths ?

… Which one is preferred ?

Cheers,

OdyX


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


Freeze exception for kde-gtk-config/3:2.1-1 (fix RC #678714)

2012-07-05 Thread Boris Pek
Dear release team,

I ask for a freeze exception for kde-gtk-config version 3:2.1-1.

File in attachment was produced using command:

$ debdiff kde-gtk-config_2.0-3.dsc kde-gtk-config_2.1-1.dsc | \
filterdiff -x '*/po/*' -x '*.desktop' > kde-gtk-config_2.0-3:2.1-1.diff

Info for my sponsor (see Cc field):
  
http://mentors.debian.net/debian/pool/main/k/kde-gtk-config/kde-gtk-config_2.1-1.dsc
 

Best regards,
Boris
diff -Nru kde-gtk-config-2.0/debian/changelog 
kde-gtk-config-2.1/debian/changelog
--- kde-gtk-config-2.0/debian/changelog 2012-06-08 07:07:18.0 +0300
+++ kde-gtk-config-2.1/debian/changelog 2012-07-06 00:40:04.0 +0300
@@ -1,3 +1,19 @@
+kde-gtk-config (3:2.1-1) unstable; urgency=low
+
+  * Update to stable release 2.1.
+  * Deleted file debian/patches/fix-build-on-kfreebsd-and-hurd-i386:
+accepted in upstream.
+  * Added file debian/patches/fix-loading-icons:
+without this patch KDE-GTK-Config module scans ./ directory if option
+gtk-icon-theme-name or option gtk-fallback-icon-theme is empty or invalid,
+now first element from the list of found icon themes is used.
+(Closes: #678714)
+  * Added file debian/patches/ignore-symlinks:
+prevents of possible infinite loop because of circular symlinks.
+(see #678714)
+
+ -- Boris Pek   Fri, 29 Jun 2012 01:31:54 +0300
+
 kde-gtk-config (3:2.0-3) unstable; urgency=low
 
   * Package moved to unstable after tests: no changes required.
diff -Nru kde-gtk-config-2.0/debian/patches/fix-build-on-kfreebsd-and-hurd-i386 
kde-gtk-config-2.1/debian/patches/fix-build-on-kfreebsd-and-hurd-i386
--- kde-gtk-config-2.0/debian/patches/fix-build-on-kfreebsd-and-hurd-i386   
2012-06-08 07:06:49.0 +0300
+++ kde-gtk-config-2.1/debian/patches/fix-build-on-kfreebsd-and-hurd-i386   
1970-01-01 03:00:00.0 +0300
@@ -1,15 +0,0 @@
-Description: Fix build in Debian GNU/kFreeBSD and in Debian GNU/Hurd
-Author: Boris Pek 
-Last-Update: 2012-06-06
-
 a/gtk3proxies/preview3.c
-+++ b/gtk3proxies/preview3.c
-@@ -24,8 +24,6 @@
- #include 
- #include 
- #include 
--
--#include 
- #include 
- 
- void printHelp()
diff -Nru kde-gtk-config-2.0/debian/patches/fix-loading-icons 
kde-gtk-config-2.1/debian/patches/fix-loading-icons
--- kde-gtk-config-2.0/debian/patches/fix-loading-icons 1970-01-01 
03:00:00.0 +0300
+++ kde-gtk-config-2.1/debian/patches/fix-loading-icons 2012-07-06 
00:40:04.0 +0300
@@ -0,0 +1,63 @@
+Description: Fix loading icons
+ Without this patch KDE-GTK-Config module scans ./ directory if option
+ gtk-icon-theme-name or option gtk-fallback-icon-theme is empty or invalid.
+ Now first element from the list of found icon themes is used.
+Bug-Debian: http://bugs.debian.org/678714
+Author: Boris Pek 
+Last-Update: 2012-07-05
+
+--- a/src/gtkconfigkcmodule.cpp
 b/src/gtkconfigkcmodule.cpp
+@@ -199,21 +199,26 @@
+ void tryIcon(QLabel* label, const QString& fallback, const QString& theme, 
const QString& iconName)
+ {
+ label->setToolTip(iconName);
+-
+-QString ret = 
IconThemesModel::findFilesRecursively(QStringList(iconName+".*"), theme);
+-if(!ret.isEmpty()) {
+-QPixmap p(ret);
+-Q_ASSERT(!p.isNull());
+-label->setPixmap(p);
+-return;
++QString ret = "";
++
++if (!theme.isEmpty()) {
++ret = 
IconThemesModel::findFilesRecursively(QStringList(iconName+".*"), theme);
++if(!ret.isEmpty()) {
++QPixmap p(ret);
++Q_ASSERT(!p.isNull());
++label->setPixmap(p);
++return;
++}
+ }
+ 
+-ret = IconThemesModel::findFilesRecursively(QStringList(iconName+".*"), 
fallback);
+-if(!ret.isEmpty()) {
+-QPixmap p(ret);
+-Q_ASSERT(!p.isNull());
+-label->setPixmap(p);
+-return;
++if (!fallback.isEmpty()) {
++ret = 
IconThemesModel::findFilesRecursively(QStringList(iconName+".*"), fallback);
++if(!ret.isEmpty()) {
++QPixmap p(ret);
++Q_ASSERT(!p.isNull());
++label->setPixmap(p);
++return;
++}
+ }
+ 
+ KIcon notFoundIcon("application-x-zerosize");
+@@ -403,8 +403,10 @@
+ //icons
+ QString currentIcon = useConfig ? appareance->getIcon() : 
ui->cb_icon->currentText(),
+ currentFallback = useConfig ? appareance->getIconFallback() : 
ui->cb_icon_fallback->currentText();
+-ui->cb_icon->setCurrentIndex(ui->cb_icon->findData(currentIcon, 
IconThemesModel::DirNameRole));
+-
ui->cb_icon_fallback->setCurrentIndex(ui->cb_icon_fallback->findData(currentFallback,
 IconThemesModel::DirNameRole));
++int currentIconIndex = ui->cb_icon->findData(currentIcon, 
IconThemesModel::DirNameRole),
++currentFallbackIndex = 
ui->cb_icon_fallback->findData(currentFallback, IconThemesModel::DirNameRole);
++ui->cb_icon->setCurrentIndex(currentIconIndex >= 0 ? currentFallbackIndex 
: 0);
++ui->cb_icon_fallback->setCurrentIndex(current

Bug#680457: unblock: ltsp/5.4.2-2

2012-07-05 Thread Vagrant Cascadian
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock
X-Debbugs-Cc: pkg-ltsp-de...@lists.alioth.debian.org

Please unblock package ltsp

"Not touching package due to block-udeb request by freeze"

The ltsp-client-builder udeb appears to be holding it up, but is not used in 
the default installer.

Thanks!

unblock ltsp/5.4.2-2


live well,
  vagrant



-- 
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20120705231636.GX21245@talon.fglan



Request for kvirc freeze exception.

2012-07-05 Thread Raúl Sánchez Siles
  Dear Release Managers:

  About a month ago I updated the kvirc package[0][1] to a newer version 
according 
to the following changelog entries:

kvirc (4:4.2.0-1) unstable; urgency=low
  * New upstream release.
  * Updated debhelper build-depends to better cope with multiarch.
  * Fix "must not be "Multi-Arch: same"" kvirc is Multi-Arch: foreign
(Closes: #658058)
  * Actually provide valid -dbg package. Added 30_upstream_build-g
  * Fix "Hardening flags missing". Applying suggested changes.
(Closes: #669189) Thanks to Simon Ruderich.

  Since I don't have upload rights I requested regular uploaders first, then 
kde-
extras team for sponsoring. The situation was such that I failed to manage time 
left to freeze properly and upload didn't happen. Moreover upstream released 
the 
4.2.0 version, which I'm proposing now and which differs slightly with my 
sponsoring requests. I'm asking now considering kvirc package 4:4.2.0-1 into 
wheezy, Taking into account [2], I'd like to support my petition on the 
following points:

  · Bugs 658058 and 669189 matches multiarch and hardening flags release goals, 
respectively.
  · All packages generated are priority optional or extra, and therefore 
unlikely to harm any other parts of the system. There is no other debian 
package, excluding those generated by kvirc source package, that depends on it.
  · New upstream release include a very high density of translation updates. 
For 
instance, full debdiff [3] shows 646 files changed, 99946 insertions(+), 72202 
deletions(-) whereas debdiff [4], excluding po dir shows 305 files changed, 
5472 
insertions(+), 6656 deletions(-)
  · New upstream release starts 4.2.x major versions, Historically there have 
been 1 or 2 upstream minor revisions which we (debian) may profit from, 
specially 
as regards with security or serious issues. If 4.2.0 is not deployed in Wheezy 
our base version will be 4.1.3+2024.svn5988-1, based on a development 
snapshot. From the maintainers point of view, basing on a stable release is 
more 
than convenient.
  · One extra cosmetic-point is that this upload means zero bug package. 
Something that I guess every package maintainer would like to see for his 
packaged stuff :)

  I also offer to carry out any suggestion you may deem important in order to 
get 
package in shape for wheezy. In other words, I appreciate your advise on how to 
proceed.

  Thanks and best regards,

[0] http://anonscm.debian.org/gitweb/?p=pkg-kde/kde-extras/kvirc.git
[1] http://mentors.debian.net/debian/pool/main/k/kvirc/kvirc_4.2.0-1.dsc
[2] http://release.debian.org/wheezy/freeze_policy.html
[3] http://trismegisto.no-ip.org/incoming/kvirc_testing-4.2.0.debdiff.xz 
(11879KiB uncompressed)
[4] http://trismegisto.no-ip.org/incoming/kvirc_testing-4.2.0-nopo.debdiff.xz 
(848KiB uncompressed) 

"""

-- 
 Raúl Sánchez Siles
->Proud Debian user<-
Linux registered user #416098


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


Freeze exception request: liblastfm 0.4.0~git20090710-2

2012-07-05 Thread John Stamp
Dear release managers,

I'm requesting a freeze exception for liblastfm version
0.4.0~git20090710-2.  It would fix RC bug #676104.

Because the last upload was so long ago, I modified the packaging to
take advantage of multiarch and hardened build flags.  A debdiff is
attached.

If the changes are acceptable, I can have a sponsor upload my package
from mentors.

John Stamp
diff -Nru liblastfm-0.4.0~git20090710/debian/changelog liblastfm-0.4.0~git20090710/debian/changelog
--- liblastfm-0.4.0~git20090710/debian/changelog	2012-07-05 15:30:33.0 -0700
+++ liblastfm-0.4.0~git20090710/debian/changelog	2012-07-03 15:57:50.0 -0700
@@ -1,3 +1,16 @@
+liblastfm (0.4.0~git20090710-2) unstable; urgency=medium
+
+  * Fix compilation with ruby >= 1.9.2 (Closes: #676104)
+  * Use source format 3.0 (quilt)
+  * Update the *.install files to accommodate multiarch
+  * Update to dh 9 to take advantage of hardening build flags
+  * Add missing misc:Depends and misc:Pre-Depends
+  * Fix lintian warnings description-synopsis-starts-with-article
+  * Bump Standards-Version to 3.9.3.
+  * Update debian/copyright format to version 1.0
+
+ -- John Stamp   Tue, 03 Jul 2012 15:57:47 -0700
+
 liblastfm (0.4.0~git20090710-1) unstable; urgency=low
 
   * New upstream release from git snapshot.
diff -Nru liblastfm-0.4.0~git20090710/debian/compat liblastfm-0.4.0~git20090710/debian/compat
--- liblastfm-0.4.0~git20090710/debian/compat	2012-07-05 15:30:33.0 -0700
+++ liblastfm-0.4.0~git20090710/debian/compat	2012-07-02 15:40:42.0 -0700
@@ -1 +1 @@
-7
+9
diff -Nru liblastfm-0.4.0~git20090710/debian/control liblastfm-0.4.0~git20090710/debian/control
--- liblastfm-0.4.0~git20090710/debian/control	2012-07-05 15:30:33.0 -0700
+++ liblastfm-0.4.0~git20090710/debian/control	2012-07-02 15:58:59.0 -0700
@@ -1,8 +1,8 @@
 Source: liblastfm
 Priority: extra
 Maintainer: John Stamp 
-Build-Depends: debhelper (>= 7), ruby, libqt4-dev, libfftw3-dev, libsamplerate0-dev
-Standards-Version: 3.8.2
+Build-Depends: debhelper (>= 9), ruby, libqt4-dev, libfftw3-dev, libsamplerate0-dev
+Standards-Version: 3.9.3
 Section: libs
 Homepage: http://www.last.fm/
 Vcs-Browser: http://github.com/jstamp/liblastfm
@@ -11,8 +11,8 @@
 Package: liblastfm-dev
 Section: libdevel
 Architecture: any
-Depends: liblastfm0 (= ${binary:Version}), liblastfm-fingerprint0 (= ${binary:Version})
-Description: The Last.fm web services library - development files
+Depends: liblastfm0 (= ${binary:Version}), liblastfm-fingerprint0 (= ${binary:Version}), ${misc:Depends}
+Description: Last.fm web services library - development files
  liblastfm is a collection of C++/Qt4 libraries provided by Last.fm for use
  with their web services.
  .
@@ -22,8 +22,9 @@
 Package: liblastfm0
 Section: libs
 Architecture: any
+Pre-Depends: ${misc:Pre-Depends}
 Depends: ${shlibs:Depends}, ${misc:Depends}
-Description: The Last.fm web services library
+Description: Last.fm web services library
  liblastfm is a collection of C++/Qt4 libraries provided by Last.fm for use
  with their web services.
  .
@@ -32,8 +33,9 @@
 Package: liblastfm-fingerprint0
 Section: libs
 Architecture: any
+Pre-Depends: ${misc:Pre-Depends}
 Depends: ${shlibs:Depends}, ${misc:Depends}
-Description: The Last.fm fingerprinting library
+Description: Last.fm fingerprinting library
  liblastfm is a collection of C++/Qt4 libraries provided by Last.fm for use
  with their web services.
  .
diff -Nru liblastfm-0.4.0~git20090710/debian/copyright liblastfm-0.4.0~git20090710/debian/copyright
--- liblastfm-0.4.0~git20090710/debian/copyright	2012-07-05 15:30:33.0 -0700
+++ liblastfm-0.4.0~git20090710/debian/copyright	2012-07-03 15:56:58.0 -0700
@@ -1,78 +1,136 @@
-This package was debianized by John Stamp  on
-Tue, 26 May 2009 09:40:42 -0700.
-
-It was downloaded from http://cdn.last.fm/src/liblastfm-0.3.0.tar.bz2
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: liblastfm
+Upstream-Contact: Michael Coffey 
+Source: http://github.com/mxcl/liblastfm/
 
 Files: *
-Copyright: Copyright 2009 Last.fm Ltd.
+Copyright: 2005-2009 Last.fm Ltd.
 License: GPL-3+
+ This file is part of liblastfm.
+ .
+ liblastfm is free software: you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+ .
+ liblastfm is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ GNU General Public License for more details.
+ .
+ You should have received a copy of the GNU General Public License
+ along with liblastfm.  If not, see .
 
 Files: debian/*
-Copyright: Copyright 2009 John Stamp 
-License: GPL-2+
+Copyright: 2009 John Stamp 
+License: GPL-3+
+ On Debian systems, the 

Re: Please unblock scim-chewing

2012-07-05 Thread Luk Claes
On 07/05/2012 10:06 PM, Andrew Lee wrote:
> Dear release team,
> 
> Please unblock scim-chewing 0.3.4-2 which has fixed a FTBFS problem
> #676009 without other changes.

unblocked

Cheers

Luk


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



Re: GDM 3.4 in wheezy

2012-07-05 Thread Lev Abashkin
On Wed, Jun 20, 2012 at 05:18:07PM +0200, Josselin Mouette wrote:
> Multi-seat support, using systemd. Currently it is disabled too,
> but if someone has the hardware to test it, this could be
> enabled during the freeze. The fallback code when systemd is not
> running is the code without multi-seat.
>

Hi,

Multi-seat was a missing feature in GDM for far too long for
manypeople including myself. I run multi-seat setup with two GeForce
videocards and there is one internal Radeon card also on my system.
If this qualifies as needed hardware then I'll be glad to participate
in testing.

Lev.