Re: Please unblock virtualbox-ose

2010-10-25 Thread Bernd Zeimetz
On 10/20/2010 09:26 PM, Julien Cristau wrote:
 On Wed, Oct 20, 2010 at 20:31:54 +0200, Bernd Zeimetz wrote:
 
 Guess you did not read the virtualbox changelog?
 http://www.virtualbox.org/wiki/Changelog

 Nobody is saying the new version doesn't fix bugs, we're saying we can't
 review it.

Give it more time for testing in unstable then.
Virtualbox is important enough to have the latest version of it in the next
release. Remember that the SC says something about doing the best for our users,
not being able to review every single patch. It is a bugfix release from
upstream and not something which adds a lot of new features and the changes are
well documented. You could at least have asked if there is away to get a
reviable list of patches. Really a shame that Debian will ship with a large
number of bugs in an important piece of software again.

-- 
 Bernd ZeimetzDebian GNU/Linux Developer
 http://bzed.dehttp://www.debian.org
 GPG Fingerprint: ECA1 E3F2 8E11 2432 D485  DD95 EB36 171A 6FF9 435F


-- 
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/4cc5322a.5050...@bzed.de



please unblock package: open-iscsi

2010-10-25 Thread Ritesh Raj Sarraf
Hello Release Team,

I have just uploaded open-iscsi to unstable. It adds the feature of
iSCSI Boot support for NICs that have native iSCSI support.

Please allow this upload to propogate to Squeeze.
Debdiff attached.


Ritesh

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

diff -Nru open-iscsi-2.0.871.3/debian/changelog open-iscsi-2.0.871.3/debian/changelog
--- open-iscsi-2.0.871.3/debian/changelog	2010-06-11 12:34:11.0 +0530
+++ open-iscsi-2.0.871.3/debian/changelog	2010-10-25 03:01:17.0 +0530
@@ -1,3 +1,10 @@
+open-iscsi (2.0.871.3-2squeeze1) unstable; urgency=low
+
+  * Add patch to support NICs that have native iSCSI support. Thanks to
+Bjoern Metzdorf for the patch. (Closes: #514924) 
+
+ -- Ritesh Raj Sarraf r...@debian.org  Mon, 25 Oct 2010 02:57:58 +0530
+
 open-iscsi (2.0.871.3-2) unstable; urgency=low
 
   * Break down and add quilt patches
diff -Nru open-iscsi-2.0.871.3/debian/extra/initramfs.local-top open-iscsi-2.0.871.3/debian/extra/initramfs.local-top
--- open-iscsi-2.0.871.3/debian/extra/initramfs.local-top	2010-06-11 12:34:11.0 +0530
+++ open-iscsi-2.0.871.3/debian/extra/initramfs.local-top	2010-10-25 03:01:17.0 +0530
@@ -29,26 +29,30 @@
 	modprobe iscsi_tcp
 	modprobe crc32c
 
-	if [ -z $ISCSI_INITIATOR ]; then
-		. /etc/initiatorname.iscsi
-		ISCSI_INITIATOR=$InitiatorName
+	if [ -z $ISCSI_AUTO ]; then
+		if [ -z $ISCSI_INITIATOR ]; then
+			. /etc/initiatorname.iscsi
+			ISCSI_INITIATOR=$InitiatorName
+		fi
+
+		if [ -z $ISCSI_TARGET_PORT ]; then
+			ISCSI_TARGET_PORT=3260
+		fi
+
+		if [ -z $ISCSI_TARGET_GROUP ]; then
+			ISCSI_TARGET_GROUP=1
+		fi
+
+		iscsistart -i $ISCSI_INITIATOR -t $ISCSI_TARGET_NAME	\
+			   -g $ISCSI_TARGET_GROUP -a $ISCSI_TARGET_IP	\
+			   -p $ISCSI_TARGET_PORT \
+			   ${ISCSI_USERNAME:+-u $ISCSI_USERNAME}	\
+			   ${ISCSI_PASSWORD:+-w $ISCSI_PASSWORD}	\
+			   ${ISCSI_IN_USERNAME:+-U $ISCSI_IN_USERNAME}\
+			   ${ISCSI_IN_PASSWORD:+-W $ISCSI_IN_PASSWORD}
+	else
+		iscsistart -b
 	fi
-
-	if [ -z $ISCSI_TARGET_PORT ]; then
-		ISCSI_TARGET_PORT=3260
-	fi
-
-	if [ -z $ISCSI_TARGET_GROUP ]; then
-		ISCSI_TARGET_GROUP=1
-	fi
-
-	iscsistart -i $ISCSI_INITIATOR -t $ISCSI_TARGET_NAME	\
-		   -g $ISCSI_TARGET_GROUP -a $ISCSI_TARGET_IP	\
-		   -p $ISCSI_TARGET_PORT \
-		   ${ISCSI_USERNAME:+-u $ISCSI_USERNAME}	\
-		   ${ISCSI_PASSWORD:+-w $ISCSI_PASSWORD}	\
-		   ${ISCSI_IN_USERNAME:+-U $ISCSI_IN_USERNAME}\
-		   ${ISCSI_IN_PASSWORD:+-W $ISCSI_IN_PASSWORD}
 }
 
 parse_iscsi_ops ()
@@ -57,6 +61,9 @@
 
 	for x in $(cat /proc/cmdline); do
 		case ${x} in
+		iscsi_auto)
+			ISCSI_AUTO=true
+			;;
 	iscsi_initiator=*)
 	ISCSI_INITIATOR=${x#iscsi_initiator=}
 	;;
@@ -94,7 +101,7 @@
 
 parse_iscsi_ops
 
-if [ -z $ISCSI_TARGET_NAME ] || [ -z $ISCSI_TARGET_IP ]; then
+if ( [ -z $ISCSI_TARGET_NAME ] || [ -z $ISCSI_TARGET_IP ] )  [ -z $ISCSI_AUTO ]; then
 	exit 0
 fi
 
diff -Nru open-iscsi-2.0.871.3/debian/README.Debian open-iscsi-2.0.871.3/debian/README.Debian
--- open-iscsi-2.0.871.3/debian/README.Debian	2010-06-11 12:34:11.0 +0530
+++ open-iscsi-2.0.871.3/debian/README.Debian	2010-10-25 03:01:17.0 +0530
@@ -53,7 +53,15 @@
 
 The Debian open-iscsi package now supports root filesystem on iSCSI.  Support
 for this is controlled by the existence of the /etc/iscsi/iscsi.initramfs file.
-There are two ways to include iSCSI boot support in your initramfs:
+
+If you are booting from an iSCSI accelerator or NIC that supports iSCSI boot
+natively, you can likely have your iSCSI target mounted without any manual
+configuration. Either place the single line ISCSI_AUTO=true into
+/etc/iscsi/iscsi.initramfs, or touch /etc/iscsi/iscsi.initramfs and use the
+kernel boot line option iscsi_auto.
+
+If manual configuration is necessary, there are two ways to include iSCSI boot 
+options in your initramfs:
 
 1) Touch /etc/iscsi/iscsi.initramfs and provide options on the command line.
This provides flexibility, but if passwords are used, is not very secure.
---BeginMessage---
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Mon, 25 Oct 2010 02:57:58 +0530
Source: open-iscsi
Binary: open-iscsi
Architecture: source amd64
Version: 2.0.871.3-2squeeze1
Distribution: unstable
Urgency: low
Maintainer: Debian iSCSI Maintainers 
pkg-iscsi-maintain...@lists.alioth.debian.org
Changed-By: Ritesh Raj Sarraf r...@debian.org
Description: 
 open-iscsi - High performance, transport independent iSCSI implementation
Closes: 514924
Changes: 
 open-iscsi (2.0.871.3-2squeeze1) unstable; urgency=low
 .
   * Add patch to support NICs that have native iSCSI support. Thanks to
 Bjoern Metzdorf for the patch. (Closes: #514924)
Checksums-Sha1: 
 f6900f9bce3b3efdbbe68299a2d7a7fa2312fefe 2068 
open-iscsi_2.0.871.3-2squeeze1.dsc
 10549b6066cd5e2b83507f5913b351e65b36fa58 16829 
open-iscsi_2.0.871.3-2squeeze1.debian.tar.gz
 1a37c34b2427ce03c66e3643f21319ca16a2f509 

Re: Please unblock virtualbox-ose

2010-10-25 Thread Neil McGovern
Hi Michael, thanks for getting in touch.

On Wed, Oct 20, 2010 at 01:40:50PM +0200, Michael Meskes wrote:
 The only part of your email that I do not agree with is the part about
 removing. Yes, it's not easily possible, but I don't understand why this is
 even considered.
 

Just on this point, the choices are to:
1) Update to the latest version
2) Leave the current version in squeeze (and add squeeze-ignore as
   required)
3) Remove the package from squeeze
4) Ask for backported fixes to address RC bugs.

All are valid options from a Release Team POV, so that's where the
consideration comes from.

Hope this helps with the understanding,
Neil
-- 
* hermanr feels like a hedgehog having sex...


-- 
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/20101025084900.ge4...@halon.org.uk



Re: Please unblock virtualbox-ose

2010-10-25 Thread Neil McGovern
Hi Bernd,

On Mon, Oct 25, 2010 at 09:30:50AM +0200, Bernd Zeimetz wrote:
 Give it more time for testing in unstable then.

That's one of the things that's being considered, if you'd carefully
read the thread.

 Virtualbox is important enough to have the latest version of it in the
 next release.

From someone's perspective, every package is important enough to have
the latest version in the next release. Our job, unfortunately, is to
ensure the stability of the release as a whole, not one particular
package.

 Remember that the SC says something about doing the best for our
 users,

Um... I don't think I can reply sensibly to this point.

 not being able to review every single patch. It is a bugfix release
 from upstream and not something which adds a lot of new features and
 the changes are well documented.

I think we can both agree that there are a *lot* of new changes.

 You could at least have asked if there is away to get a
 reviable list of patches. Really a shame that Debian will ship with a large
 number of bugs in an important piece of software again.
 

Again, I'm not going to be able to comment sensibly on this section.

Neil
-- 
A. Because it breaks the logical sequence of discussion
Q. Why is top posting bad?
gpg key - http://www.halon.org.uk/pubkey.txt ; the.earth.li A40F862E


-- 
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/20101025084419.gd4...@halon.org.uk



Re: Permission to upload gnome-power-manager 2.32.0 to unstable (Was: Re: Dropping libdevkit-power-gobject for squeeze.)

2010-10-25 Thread Michael Biebl
Hi Adam!

On 23.10.2010 19:50, Adam D. Barratt wrote:
 On Wed, 2010-10-20 at 00:38 +0200, Michael Biebl wrote:
 Done, 2.32.0-2 has been uploaded to unstable.


 With all rdeps updated, attached is the debdiff for upower_0.9.5-5 which 
 removes
 the deprecated libdevkit-power-gobject library, closing #595083.

 I've also included a fix for #586751, the patch is cherry-picked from 
 upstream
 Git and rather simple.
 
 Please go ahead.

Done, package has been uploaded as 0.9.5-5

unblock upower/0.9.5-5

Thanks,
Michael

-- 
Why is it that all of the instruments seeking intelligent life in the
universe are pointed away from Earth?



signature.asc
Description: OpenPGP digital signature


Bug#600465: unblock: freeradius 2.1.10+dfsg-1

2010-10-25 Thread Alan DeKok
Josip Rodin wrote:
 [For Alan: I requested for FreeRADIUS 2.1.10 to replace 2.1.9 in the future
 Debian 6.0 release; the former came too late in our process to be accepted
 automatically.]

  OK.

 This, from main/events.c, looks obviously wrong, however:

 +   home-zombie_period_start.tv_sec = home-last_packet;
 +   home-zombie_period_start.tv_sec = USEC / 2;

 Presumably the second tv_sec should be tv_usec.

  Yes, ouch.

 Yeah, that sounds like it to me, too. That change came in this commit
 http://github.com/alandekok/freeradius-server/commit/f8bcc0fe
 which actually probably fixed a fatal crash (the assert call removed
 because Don't check home-ev due to race conditions.), so that's still
 probably better than one randomized zombie period start (which can
 get reset and/or ignored soon enough anyway) which is why nobody else
 noticed.
 
 Alan, is this correct?

  Yes.  I'll commit a fix.

  Alan DeKok.



-- 
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/4cc55d7a.7060...@deployingradius.com



Bug#601347: unblock: aide/0.15.1-2

2010-10-25 Thread Hannes von Haugwitz
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: freeze-exception

Please unblock package aide

Danish translation update only.  No other changes. Thanks

aide (0.15.1-2) unstable; urgency=low

   * debian/po/da.po:
 - updated Danish debconf translations, thanks to Joe Hansen
   (closes: #59)


unblock aide/0.15.1-2

-- System Information:
Debian Release: squeeze/sid
  APT prefers testing
  APT policy: (990, 'testing'), (300, 'unstable'), (200, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.36 (SMP w/2 CPU cores; PREEMPT)
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/20101025120728.17102.15898.report...@carbon.localhost.localdomain



Re: [pkg-lighttpd] Bug#601177: (connections.c.1228) connection closed: poll() - ERR

2010-10-25 Thread Olaf van der Spek
On Sun, Oct 24, 2010 at 4:11 AM, Marco d'Itri m...@linux.it wrote:
 I am experiencing this bug on a high traffic server, please apply the
 fix:

 http://redmine.lighttpd.net/issues/2257

Hi release team,

The Lighttpd version in testing logs messages for non-errors. Could
the fix be accepted into Squeeze?

Greetings,

Olaf

Index: connections.c
===
--- connections.c   (revision 2770)
+++ connections.c   (revision 2771)
@@ -1224,7 +1224,8 @@

}
} else if (revents  FDEVENT_ERR) {
-#ifndef USE_LINUX_SIGIO
+   /* error, connection reset, whatever... we don't want 
to spam the logfile */
+#if 0
log_error_write(srv, __FILE__, __LINE__, sd,
connection closed: poll() - ERR, 
con-fd);
 #endif


-- 
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/aanlkti=13ra6wbl1kissue5iw7yeofxya_ptblnkz...@mail.gmail.com



Re: [pkg-lighttpd] Bug#601177: (connections.c.1228) connection closed: poll() - ERR

2010-10-25 Thread Mehdi Dogguy
On 10/25/2010 02:37 PM, Olaf van der Spek wrote:
 On Sun, Oct 24, 2010 at 4:11 AM, Marco d'Itri m...@linux.it wrote:
 I am experiencing this bug on a high traffic server, please apply the
 fix:

 http://redmine.lighttpd.net/issues/2257
 
 Hi release team,
 
 The Lighttpd version in testing logs messages for non-errors. Could
 the fix be accepted into Squeeze?
 

Yes, please go ahead.

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/4cc58068.9040...@dogguy.org



Bug#601347: marked as done (unblock: aide/0.15.1-2)

2010-10-25 Thread Debian Bug Tracking System
Your message dated Mon, 25 Oct 2010 15:30:18 +0200
with message-id 4cc5866a.6060...@dogguy.org
and subject line Re: Bug#601347: unblock: aide/0.15.1-2
has caused the Debian Bug report #601347,
regarding unblock: aide/0.15.1-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.)


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

Please unblock package aide

Danish translation update only.  No other changes. Thanks

aide (0.15.1-2) unstable; urgency=low

   * debian/po/da.po:
 - updated Danish debconf translations, thanks to Joe Hansen
   (closes: #59)


unblock aide/0.15.1-2

-- System Information:
Debian Release: squeeze/sid
  APT prefers testing
  APT policy: (990, 'testing'), (300, 'unstable'), (200, 'experimental')
Architecture: amd64 (x86_64)

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


---End Message---
---BeginMessage---
On 10/25/2010 02:07 PM, Hannes von Haugwitz wrote:
 Package: release.debian.org
 Severity: normal
 User: release.debian@packages.debian.org
 Usertags: freeze-exception
 
 Please unblock package aide
 

Unblocked.

Regards,


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

---End Message---


Bug#601304: unblock: speech-tools/1:2.0.95~beta-2

2010-10-25 Thread Mehdi Dogguy
On 10/25/2010 02:49 AM, Kumar Appaiah wrote:
 Package: release.debian.org
 Severity: normal
 User: release.debian@packages.debian.org
 Usertags: freeze-exception
 
 Please unblock package speech-tools (not yet uploaded)
 
 I have attached the update diff. The bug being fixed is #601294; a
 summary is that use of audsp causes festival to crash. Would it be all
 right to upload the new package to unstable?
 

Looks ok.

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/4cc587fb.3020...@dogguy.org



Bug#601304: unblock: speech-tools/1:2.0.95~beta-2

2010-10-25 Thread Kumar Appaiah
On Mon, Oct 25, 2010 at 03:36:59PM +0200, Mehdi Dogguy wrote:
  Please unblock package speech-tools (not yet uploaded)
  
  I have attached the update diff. The bug being fixed is #601294; a
  summary is that use of audsp causes festival to crash. Would it be all
  right to upload the new package to unstable?
  
 
 Looks ok.

Thank you, Mehdi. Uploading it now.

Kumar


signature.asc
Description: Digital signature


Re: Bug#600739: Please unblock dh-make-drupal

2010-10-25 Thread Mehdi Dogguy
On 10/24/2010 05:52 AM, Gunnar Wolf wrote:
 
 Anyway, in short: 0.7-1 is unsuitable for any work. 0.8-1 was tested
 against ~ a dozen modules, themes and translations, and works
 reliably. Please allow 0.8-1 to migrate into testing.
 

Unblocked.

 Thanks,

-- 
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/4cc58aa7.7080...@dogguy.org



Bug#601367: unblock: festival/1:2.0.95~beta-3

2010-10-25 Thread Kumar Appaiah
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: freeze-exception

Please unblock package festival (not yet uploaded)

Apparently, many people would find festival ready-to-use if the
default backend were made ALSA. This patch merely adds a change to
festival.scm (a file in debian/ installed into /etc) to make this
change.

Please consider this request. Thanks!

unblock festival/1:2.0.95~beta-3

Kumar

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

Kernel: Linux 2.6.32-5-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/bash
From 2e5dd419ff144a8f780b5042b4efb9d30ab3e831 Mon Sep 17 00:00:00 2001
From: Kumar Appaiah a.ku...@alumni.iitm.ac.in
Date: Mon, 25 Oct 2010 08:55:27 -0500
Subject: [PATCH] Make ALSA backend default

* Add patch from Samuel Thibault to make ALSA backend default.
  (Closes: #592442)
* Standards Version is now 3.9.1 (no changes needed)
---
 debian/changelog|8 
 debian/control  |2 +-
 debian/festival.scm |4 
 3 files changed, 13 insertions(+), 1 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 69ba611..5886f5f 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,11 @@
+festival (1:2.0.95~beta-3) unstable; urgency=low
+
+  * Add patch from Samuel Thibault to make ALSA backend default.
+(Closes: #592442)
+  * Standards Version is now 3.9.1 (no changes needed)
+
+ -- Kumar Appaiah aku...@debian.org  Mon, 25 Oct 2010 08:47:04 -0500
+
 festival (1:2.0.95~beta-2) unstable; urgency=low
 
   * Don't depend on alsa-oss on kfreebsd-*, since it is unavailable
diff --git a/debian/control b/debian/control
index 408a8bc..a810fbb 100644
--- a/debian/control
+++ b/debian/control
@@ -11,7 +11,7 @@ Build-Depends: debhelper (= 7.0.5~),
libncurses5-dev,
quilt (= 0.40),
texinfo
-Standards-Version: 3.9.0
+Standards-Version: 3.9.1
 Homepage: http://www.cstr.ed.ac.uk/projects/festival/
 Vcs-Git: git://git.debian.org/git/collab-maint/festival.git
 Vcs-Browser: http://git.debian.org/?p=collab-maint/festival.git
diff --git a/debian/festival.scm b/debian/festival.scm
index 8a6bde4..be5caf7 100644
--- a/debian/festival.scm
+++ b/debian/festival.scm
@@ -28,3 +28,7 @@
 (set! server_access_list '([^.]+ 127.0.0.1 localhost))
 
 ; Server deny list (hosts)
+
+; Make ALSA the default backend
+(Parameter.set 'Audio_Command aplay -q -c 1 -t raw -f s16 -r $SR $FILE)
+(Parameter.set 'Audio_Method 'Audio_Command)
-- 
1.7.1



Bug#601367: unblock: festival/1:2.0.95~beta-3

2010-10-25 Thread Mehdi Dogguy
On 10/25/2010 03:57 PM, Kumar Appaiah wrote:
 
 Apparently, many people would find festival ready-to-use if the 
 default backend were made ALSA. This patch merely adds a change to 
 festival.scm (a file in debian/ installed into /etc) to make this 
 change.
 

If you're going to use aplay by default, shouldn't you depend on
alsa-utils (or at least Recommends it?).

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/4cc59056.9080...@dogguy.org



Re: Freeze exception for Octave

2010-10-25 Thread Mehdi Dogguy
On 10/24/2010 11:43 PM, Thomas Weber wrote:
 Hi, 
 
 in order to fix #598227 (http://bugs.debian.org/598227), I would like to
 upload octave with the attached patch (it adds /usr/include/mpi to the
 include path used by mkoctfile, the script used for generating 'addons'
 for Octave). It shouldn't have any influence on other packages.
 
 Post-Squeeze, Octave will switch to only use the serial version of hdf5,
 but I'm reluctant to make this change now.
 
 Are you guys okay with the patch?
 

Yes, please go ahead with the upload.

 Thanks
   Thomas

-- 
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/4cc59318.7020...@dogguy.org



Re: please unblock package: open-iscsi

2010-10-25 Thread Mehdi Dogguy
On 10/25/2010 10:02 AM, Ritesh Raj Sarraf wrote:
 Hello Release Team,
 
 I have just uploaded open-iscsi to unstable. It adds the feature of 
 iSCSI Boot support for NICs that have native iSCSI support.
 
 Please allow this upload to propogate to Squeeze. Debdiff attached.
 

Can you me please tell how this change matches the freeze criteria we
described in our last mail [1] to debian-devel-announce?

[1] http://lists.debian.org/debian-devel-announce/2010/10/msg2.html

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/4cc594bd.1080...@dogguy.org



Re: please unblock package: open-iscsi

2010-10-25 Thread Luk Claes
On 10/25/2010 04:31 PM, Mehdi Dogguy wrote:
 On 10/25/2010 10:02 AM, Ritesh Raj Sarraf wrote:
 Hello Release Team,

 I have just uploaded open-iscsi to unstable. It adds the feature of 
 iSCSI Boot support for NICs that have native iSCSI support.

 Please allow this upload to propogate to Squeeze. Debdiff attached.

 
 Can you me please tell how this change matches the freeze criteria we
 described in our last mail [1] to debian-devel-announce?
 
 [1] http://lists.debian.org/debian-devel-announce/2010/10/msg2.html

I guess this is a request for a freeze exception and not a simple
unblock request.

IMHO it would be better to make a clear distinction so simple unblock
requests that should comply with the freeze guidelines could be
prioritised and freeze exception requests could be investigated on a
case by case basis with a lower priority and a higher chance of getting
denied.

This particular case I would be tempted to unblock though.

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/4cc59aaa.2020...@debian.org



Re: Pre-approval request for dpkg sync() changes for squeeze

2010-10-25 Thread Phillip Susi
On 10/24/2010 1:20 PM, Andreas Barth wrote:
 I quite often run dpkg installs / upgrades in pbuilder ramdisks. If
 the sync could be reduced to only that ramdisk, everything would be
 fine.

That's exactly the environment where you would disable syncing entirely
since you don't care if the pbuilder chroot becomes corrupted if the
system crashes; you will just rebuild it from the tarball anyhow.


-- 
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/4cc597f5.7040...@cfl.rr.com



Bug#601367: unblock: festival/1:2.0.95~beta-3

2010-10-25 Thread Kumar Appaiah
On Mon, Oct 25, 2010 at 04:12:38PM +0200, Mehdi Dogguy wrote:
 On 10/25/2010 03:57 PM, Kumar Appaiah wrote:
  
  Apparently, many people would find festival ready-to-use if the 
  default backend were made ALSA. This patch merely adds a change to 
  festival.scm (a file in debian/ installed into /etc) to make this 
  change.
  
 
 If you're going to use aplay by default, shouldn't you depend on
 alsa-utils (or at least Recommends it?).

Hmm... I believed that I had; obviously, I've missed it, since I
mistook the alsa-oss wrapper to be sufficient; obviously, it isn't,
since aplay is needed.

I will depend on alsa-utils. Thanks for pointing this out.

Kumar



-- 
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/20101025145822.ge19...@146653177.ece.utexas.edu



Re: please unblock package: open-iscsi

2010-10-25 Thread Mehdi Dogguy
On 10/25/2010 04:56 PM, Luk Claes wrote:
 [...]
 
 This particular case I would be tempted to unblock though.
 

Then, go ahead :)

Cheers,

-- 
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/4cc59d03.2060...@dogguy.org



Re: please unblock package: open-iscsi

2010-10-25 Thread Luk Claes
On 10/25/2010 05:06 PM, Mehdi Dogguy wrote:
 On 10/25/2010 04:56 PM, Luk Claes wrote:
 [...]

 This particular case I would be tempted to unblock though.

 
 Then, go ahead :)

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/4cc59f8b.8070...@debian.org



Re: Please unblock fuse-convmvfs/0.2.6-1

2010-10-25 Thread Mehdi Dogguy
On 10/24/2010 02:27 PM, Stanislav Maslovski wrote:
 Dear Release Team,
 
 About a weak ago I have uploaded a new upstream version of my package
 fuse-convmvfs that fixes some important symlink dereferencing and
 owner issues (Debian Bug #594021). Please consider unblocking this
 package.
 

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/4cc5a39e.9060...@dogguy.org



Pre-Approval for iftop 0.17-8

2010-10-25 Thread Alexander Reichle-Schmehl
Hi release team,

I haven't heard back from you, yet, so I guess, it didn't caught your
attention due to a missleading subject ;)

I still think it would be a good idea to have at least the ipv6 and the
segfautl patches applied.  One could discuss about the disabled Shell
functionality, and if it makes it easiert for you, I'm willing to upload
a new iftop version with only the IPv6 and the segfault patch.

Best Regards,
  Alexander

* Alexander Reichle-Schmehl toli...@debian.org [101018 13:07]:

 Overall, I would like to upload with the following changes:
 
  debian/patches/07-spelling-and-usage-text.patch|   87 +
 Fixes some spelling error in the manpage
 
  debian/patches/08-segfault-duplicate-options.patch |   55 +
 Fixes #425488/#598376 a sefault when using the same command line
 argument twice.
 
  debian/patches/09-incomplete-hash-func.patch   |   51 
 Fixes #595169, which is actually only wishlist, but quite nasty.
 
  debian/patches/10-lladdr-inclusion-kfreebsd.patch  |   37 
 Fixes #598367, an usage problem on kfreebds-*
 
  debian/patches/11-implement-ipv6-support.patch | 1120 
 +
 Is the missig IPv6 support.
 
 All these patches have been reviewsed and accepted by upstream in the
 meantime.
 
 The laste change I seek your approval would be the following:
  iftop-0.17/debian/rules|3 
  debian/NEWS|   11 
 
 Here I disabled an quite unexpected feature of iftop:  It allows you to
 open a subshell.  As iftop is often used in combination with sudo,
 sysadmins might be suprised, to give other users full root by granting
 them access to iftop (granted; only if the don't configure sudo
 properly); but as it is only a minimal change, I hope you allow that,
 too.
 
 
 Just for completness, I also changed the following files:
  debian/watch   |4 
  iftop-0.17/debian/changelog|   27 
  iftop-0.17/debian/control  |2 
  iftop-0.17/debian/patches/series   |5 
 
 I've uploaded the complete debdiff between 0.17-6 (currently in Squeeze)
 and the proposed 0.17-8 upload at
 http://people.debian.org/~tolimar/tmp/iftop-debdiff_0.17-6_0.17-8.diff.



signature.asc
Description: Digital signature


Re: sks bugfix for 599029

2010-10-25 Thread Christoph Martin
I had some holiday, so I can only respond now.

Am 10.10.2010 11:40, schrieb Julien Cristau:
 On Sun, Oct 10, 2010 at 11:14:25 +0200, Christoph Egger wrote:
 
 Julien Cristau jcris...@debian.org writes:
 On Sat, Oct  9, 2010 at 14:23:23 +0200, Christoph Martin wrote:

 Thanks for the answer. The upload now succeded.

 +DEB_BUILD_OPTIONS += $(if $(BYTECODE), nostrip,)

 Is that guaranteed to get exported to dh_strip's environment?

 It at least seems to work on the mipsel buildds (package is working
 now!)

 That might just mean they have DEB_BUILD_OPTIONS set in the environment
 already (for parallel build or whatever).

I did some research on this. If DEB_BUILD_OPTIONS is set when debuild is
invoked, the makefile debian/rules updates the environment variable
DEB_BUILD_OPTIONS with nostrip and dh_strip will work as intended. In
the other case DEB_BUILD_OPTIONS is only a make variable which will not
be exported to environment. So explicitly exporting the variable in
debian/rules is the correct way.

I prepare a new upload.

Christoph

-- 

Christoph Martin, Zentrum für Datenverarbeitung, Uni-Mainz, Germany
 Instant-Messaging: Jabber: mar...@uni-mainz.de
  (Siehe http://www.zdv.uni-mainz.de/4010.php)
attachment: martin.vcf

signature.asc
Description: OpenPGP digital signature


Processed: Re: Processed (with 2 errors): Re: Bug#598883: unblock: kolab-webadmin/2.2.3-20091217-4

2010-10-25 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 reopen 598883 =
Bug #598883 {Done: Mehdi Dogguy me...@dogguy.org} [release.debian.org] 
unblock: kolab-webadmin/2.2.3-20091217-3
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
598883: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=598883
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.128802465817466.transcr...@bugs.debian.org



Bug#598883: marked as done (unblock: kolab-webadmin/2.2.3-20091217-3)

2010-10-25 Thread Debian Bug Tracking System
Your message dated Mon, 25 Oct 2010 18:35:27 +0200
with message-id 4cc5b1cf.9010...@dogguy.org
and subject line Re: Bug#598883: unblock: kolab-webadmin/2.2.3-20091217-4
has caused the Debian Bug report #598883,
regarding unblock: kolab-webadmin/2.2.3-20091217-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.)


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

Please unblock package kolab-webadmin

   * Updated Standards-Version to 3.9.1: no changes
   * Switch to dpkg-source 3.0 (quilt) format
   * 70-sieve-port-i18n.diff, 71-sieve-port-number.diff: Change sieve port
 to 4190 (Closes: #598010)

Due to the sieve port number change, kolab-webadmin failed to connect to cyrus 
sieve.
I have added two patches 70-sieve-port-i18n.diff, 71-sieve-port-number.diff to 
solve this issue.

Additionnaly, I hav migrated to dpkg-source 3.0 (quilt) to ease maintenance if 
security fixes are needed. Standards-Version was also updated.

unblock kolab-webadmin/2.2.3-20091217-3

-- System Information:
Debian Release: squeeze/sid
  APT prefers testing
  APT policy: (900, 'testing')
Architecture: i386 (i686)

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


---End Message---
---BeginMessage---
On 10/25/2010 06:30 PM, Mathieu Parent (Debian) wrote:
 reopen 598883 -
 thanks
 
 unblock kolab-webadmin/2.2.3-20091217-4
 
 I am reopening this freeze exception as bug #598010 was not completely
 solved by the proposed patch.
 
 The new uploaded version use sieve port number instead of port name as
 the former doesn't work as expected.
 

Unblocked.

Thanks,

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

---End Message---


Bug#598883: unblock: kolab-webadmin/2.2.3-20091217-4

2010-10-25 Thread Mathieu Parent (Debian)
reopen 598883 -
thanks

unblock kolab-webadmin/2.2.3-20091217-4

I am reopening this freeze exception as bug #598010 was not completely
solved by the proposed patch.

The new uploaded version use sieve port number instead of port name as
the former doesn't work as expected.

Mini diff :
--- debian/patches/71-sieve-port-number.diff(révision 1534)
+++ debian/patches/71-sieve-port-number.diff(révision 1538)
-+function Net_Sieve($user = null , $pass  = null , $host =
'localhost', $port = 'sieve', $logintype = '', $euser = '', $debug =
false)
++function Net_Sieve($user = null , $pass  = null , $host =
'localhost', $port = 4190, $logintype = '', $euser = '', $debug =
false)

Thanks and sorry for the time spent.

Mathieu

PS: Complete diff:

Index: debian/changelog
===
--- debian/changelog(révision 1534)
+++ debian/changelog(révision 1538)
@@ -1,3 +1,11 @@
+kolab-webadmin (2.2.3-20091217-4) unstable; urgency=low
+
+  * Really fix could not connect to sieve port: not currently in by
+hardcoding sieve port as kolab-webadmin doesn't use nsswitch for service
+port numbers (Closes: #598010)
+
+ -- Mathieu Parent sath...@debian.org  Thu, 21 Oct 2010 22:23:48 +0200
+
 kolab-webadmin (2.2.3-20091217-3) unstable; urgency=low

   * Updated Standards-Version to 3.9.1: no changes
Index: debian/patches/71-sieve-port-number.diff
===
--- debian/patches/71-sieve-port-number.diff(révision 1534)
+++ debian/patches/71-sieve-port-number.diff(révision 1538)
@@ -25,7 +25,7 @@
  * @param  string $euser Effective User (if $user=admin,
login as $euser)
  */
 -function Net_Sieve($user = null , $pass  = null , $host =
'localhost', $port = 2000, $logintype = '', $euser = '', $debug =
false)
-+function Net_Sieve($user = null , $pass  = null , $host =
'localhost', $port = 'sieve', $logintype = '', $euser = '', $debug =
false)
++function Net_Sieve($user = null , $pass  = null , $host =
'localhost', $port = 4190, $logintype = '', $euser = '', $debug =
false)
  {
  $this-_state = NET_SIEVE_STATE_DISCONNECTED;
  $this-_data['user'] = $user;



--
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/aanlktikucc_saolwip3t1jkeqx-adck-tyv4z-m5f...@mail.gmail.com



Bug#592300: freeze exception: xz-utils 5.0.0

2010-10-25 Thread Jonathan Nieder
Hi,

Jonathan Nieder wrote:

 XZ Utils 5.0.0 is likely to be released some time in the next few
 weeks.  As the upstream maintainer explains:
 
 | In case of XZ Utils, a stable release is a promise about API, ABI, and
 | command line syntax compatibility long into the future.
 
 Therefore I would like (pretty please?) to align with upstream on this.

5.0.0 was released at last.  Relative to xz-utils in testing, it
brings the following major changes:

  - Any preset level (-0 ... -9) specified after a custom filter
chain option (e.g. --lzma2) will override the custom filter chain.
In testing, any preset options after a custom filter chain option
is completely ignored.

  - As mentioned before, the compression settings associated with the
preset levels -0 ... -9 have been changed. --extreme was changed a
little, too.  It is now less likely to make compression worse, but
with some files the new --extreme may compress slightly worse than
the old --extreme.

  - --list is looks ugly in Squeeze on locales that use space as
a thousands separator.

  - 5.0.0 allows LZMA_FINISH in addition to LZMA_RUN for Index
encoding and decoding. The API documentation explains that LZMA_RUN
is better if support for  5.0.0 is needed. This is an advanced API,
not used by any current Debian packages aside from xz-utils itself.

  - Major manual page updates and other documentation updates.

The sources are at:
  git://git.debian.org/collab-maint/xz.git experimental

The xz-utils package in experimental demonstrates the changes.  Most
of these changes have been in experimental for a while, and while they
are not huge, they are still nice to have.  Would it be okay to upload
to unstable, perhaps with some extended age-days?

Thanks for your work to bring about a high quality Squeeze,
Jonathan



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



Bug#601385: unblock: iceweasel/3.5.14-1

2010-10-25 Thread Moritz Muehlenhoff
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock package iceweasel. It fixes multiple security issues.

unblock iceweasel/3.5.14-1

-- System Information:
Debian Release: squeeze/sid
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)

Kernel: Linux 2.6.32-5-686 (SMP w/1 CPU core)
Locale: LANG=C, lc_ctype=de_de.iso-8859...@euro (charmap=ISO-8859-15)
Shell: /bin/sh linked to /bin/bash



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



Bug#601387: unblock: iceape/2.0.9-1

2010-10-25 Thread Moritz Muehlenhoff
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock package iceape. It fixes multiple security issues.

unblock iceape/2.0.9-1

-- System Information:
Debian Release: squeeze/sid
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)

Kernel: Linux 2.6.32-5-686 (SMP w/1 CPU core)
Locale: LANG=C, lc_ctype=de_de.iso-8859...@euro (charmap=ISO-8859-15)
Shell: /bin/sh linked to /bin/bash



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



Bug#601388: unblock: php5/5.3.3-2

2010-10-25 Thread Moritz Muehlenhoff
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock package php5. It fixes multiple security issues.
The update was acked earlier on debian-release.

unblock php5/5.3.3-2

-- System Information:
Debian Release: squeeze/sid
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)

Kernel: Linux 2.6.32-5-686 (SMP w/1 CPU core)
Locale: LANG=C, lc_ctype=de_de.iso-8859...@euro (charmap=ISO-8859-15)
Shell: /bin/sh linked to /bin/bash



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



Re: Permission to upload gnome-power-manager 2.32.0 to unstable (Was: Re: Dropping libdevkit-power-gobject for squeeze.)

2010-10-25 Thread Adam D. Barratt
On Mon, 2010-10-25 at 11:11 +0200, Michael Biebl wrote:
 On 23.10.2010 19:50, Adam D. Barratt wrote:
  On Wed, 2010-10-20 at 00:38 +0200, Michael Biebl wrote:
  Done, 2.32.0-2 has been uploaded to unstable.
 
 
  With all rdeps updated, attached is the debdiff for upower_0.9.5-5 which 
  removes
  the deprecated libdevkit-power-gobject library, closing #595083.
 
  I've also included a fix for #586751, the patch is cherry-picked from 
  upstream
  Git and rather simple.
  
  Please go ahead.
 
 Done, package has been uploaded as 0.9.5-5

Unblocked; thanks.

Regards,

Adam


-- 
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/1288028463.28180.97.ca...@hathi.jungle.funky-badger.org



Bug#601385: marked as done (unblock: iceweasel/3.5.14-1)

2010-10-25 Thread Debian Bug Tracking System
Your message dated Mon, 25 Oct 2010 18:42:44 +0100
with message-id 1288028564.28180.110.ca...@hathi.jungle.funky-badger.org
and subject line Re: Bug#601385: unblock: iceweasel/3.5.14-1
has caused the Debian Bug report #601385,
regarding unblock: iceweasel/3.5.14-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.)


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

Please unblock package iceweasel. It fixes multiple security issues.

unblock iceweasel/3.5.14-1

-- System Information:
Debian Release: squeeze/sid
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)

Kernel: Linux 2.6.32-5-686 (SMP w/1 CPU core)
Locale: LANG=C, lc_ctype=de_de.iso-8859...@euro (charmap=ISO-8859-15)
Shell: /bin/sh linked to /bin/bash


---End Message---
---BeginMessage---
On Mon, 2010-10-25 at 19:09 +0200, Moritz Muehlenhoff wrote:
 Please unblock package iceweasel. It fixes multiple security issues.

Unblocked.

Regards,

Adam


---End Message---


Bug#601388: marked as done (unblock: php5/5.3.3-2)

2010-10-25 Thread Debian Bug Tracking System
Your message dated Mon, 25 Oct 2010 18:40:26 +0100
with message-id 1288028426.28180.96.ca...@hathi.jungle.funky-badger.org
and subject line Re: Bug#601388: unblock: php5/5.3.3-2
has caused the Debian Bug report #601388,
regarding unblock: php5/5.3.3-2
to be marked as done.

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

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


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

Please unblock package php5. It fixes multiple security issues.
The update was acked earlier on debian-release.

unblock php5/5.3.3-2

-- System Information:
Debian Release: squeeze/sid
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)

Kernel: Linux 2.6.32-5-686 (SMP w/1 CPU core)
Locale: LANG=C, lc_ctype=de_de.iso-8859...@euro (charmap=ISO-8859-15)
Shell: /bin/sh linked to /bin/bash


---End Message---
---BeginMessage---
On Mon, 2010-10-25 at 19:12 +0200, Moritz Muehlenhoff wrote:
 Please unblock package php5. It fixes multiple security issues.
 The update was acked earlier on debian-release.

(and was still on my to-do list...)

Unblocked, and aged a little.

Regards,

Adam


---End Message---


Bug#601387: marked as done (unblock: iceape/2.0.9-1)

2010-10-25 Thread Debian Bug Tracking System
Your message dated Mon, 25 Oct 2010 18:44:09 +0100
with message-id 1288028649.28180.117.ca...@hathi.jungle.funky-badger.org
and subject line Re: Bug#601387: unblock: iceape/2.0.9-1
has caused the Debian Bug report #601387,
regarding unblock: iceape/2.0.9-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.)


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

Please unblock package iceape. It fixes multiple security issues.

unblock iceape/2.0.9-1

-- System Information:
Debian Release: squeeze/sid
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)

Kernel: Linux 2.6.32-5-686 (SMP w/1 CPU core)
Locale: LANG=C, lc_ctype=de_de.iso-8859...@euro (charmap=ISO-8859-15)
Shell: /bin/sh linked to /bin/bash


---End Message---
---BeginMessage---
On Mon, 2010-10-25 at 19:10 +0200, Moritz Muehlenhoff wrote:
 Please unblock package iceape. It fixes multiple security issues.

Unblocked.

Regards,

Adam


---End Message---


Bug#599255: unblock: zabbix/1.8.3-2

2010-10-25 Thread Julien Cristau
On Mon, Oct 18, 2010 at 22:52:53 +0200, Christoph Haas wrote:

 Am 18.10.2010 22:44, schrieb Mehdi Dogguy:
  On 10/10/2010 01:50 PM, Christoph Haas wrote:
  Okay, I'm talking to the upstream about a minimal patch to fix this
  very issue.
  
  Any news?
  
  I'd appreciate an upload fixing #598578, #594304, #591967, various bugs
  about bashism and #578879.
 
 Yes, I already got a reply from the upstream support. I have submitted a
 patch they were evaluating. So far it looks good and they proposed to
 patch another file for the 1.8.3 security fix. They promised to get back
 to me quickly to confirm that the final patch will do the job but wanted
 to run it by their QA. I'm confident they are taking the matter
 seriously but will send them a ping nonetheless.
 
Any luck?

Cheers,
Julien


signature.asc
Description: Digital signature


Bug#600210: Freeze Exception: libgda4

2010-10-25 Thread Adam D. Barratt
On Sun, 2010-10-24 at 11:31 +0200, Piotr Pokora wrote: 
 On 23.10.2010 19:44, Adam D. Barratt wrote:
  Without this release, any derived application or library breaks to build
  with GObject Introspection enabled.
 
  Which of the fixes mentioned in upstream's changelog does the above
  refer to?
 
 * libgda/gda-debug-macros.h, libgda/gda-transaction-status.c: Removed
   internal debug macros

Both of those changes are to code which is in #ifdef GDA_DEBUG blocks.
Surely not everything builds with GDA_DEBUG turned on?

  (and if it's a critical bug, why is it not at least mentioned in the
  package's changelog and/or filed in the BTS?)
 
 This bug is critical for libraries or application which have to be built 
 with GObject Introspection. Currently there's (at least) anjuta and glom 
 packages which depend on libgda, but do not use GIR.
[...]
 Besides, many developers who build applications on top of libgda 
 complains about this library, not being up to date in available official 
 repositories. Libgda is the only one, open source library which provides 
 common access to databases, and thus should be available with minimal 
 amount of bugs.

People will complain if its out of date is not a valid reason for a
freeze exception.  Besides, if upstream release 4.0.13 in a little
while, why won't people just complain about Squeeze not including that
instead?

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



Re: Please unblock pianobar 2010.10.07-1

2010-10-25 Thread Julien Cristau
On Thu, Oct  7, 2010 at 10:29:39 -0400, Luke Faraone wrote:

 Hi,
 
 Pianobar is currently broken in testing due to an upstream API change.
 The only change between the previous version in unstable (which was not
 in testing) and the new version is an API fix, but there were a few new
 features added since the package in testing.
 
 The version in testing, 0+git20100420.3072c5a-1, was a pre-release
 snapshot. Supporting pre-release git snapshots will be more difficult in
 the future.
 
 Version 2010.08.21-1, which was in unstable for the past month, has been
 widely used without problems. The only change between 2010.08.21-1 and
 2010.10.07-1 is the protocol fix. The log from upstream can be found at
 http://github.com/PromyLOPh/pianobar/commits/master.
 
 Pianobar does not export any public libraries, so there is no concern
 for API or ABI problems.
 
Unblocked.  Is there any guarantee the protocol won't change again
during squeeze's lifetime?

Cheers,
Julien


signature.asc
Description: Digital signature


Bug#599472: Permission to upload opensync-0.22 to testing-proposed-updates

2010-10-25 Thread Julien Cristau
On Thu, Oct  7, 2010 at 20:58:07 +0200, Michael Banck wrote:

 Uploading this would make it possible to potentially transition the barry and
 synce-sync-engine packages (which I believe were removed due to opensync), as
 well as the currently still at 0.22 kdepim plugin and the multisync0.90
 package in unstable.  Other still at 0.22 plugins in unstable could be
 transitioned as well, but they are less important.
 
 Further testing-proposed-updates uploads of the file and evolution2
 plugins should be done as well, as they are quite central.
 
OK, let's go ahead with this.

Cheers,
Julien


signature.asc
Description: Digital signature


Re: freeze exception for texinfo 4.13a.dfsg.1-6

2010-10-25 Thread Julien Cristau
On Thu, Oct 14, 2010 at 17:23:19 +0900, Norbert Preining wrote:

 Dear release managers,
 
 I know that it is late but we recently got some nasty bug reports
 we would like to see fixed for squeeze (full debdiff at the end of the 
 message)
 
Unblocked, thanks.

Cheers,
Julien


signature.asc
Description: Digital signature


Bug#600334: freeze exception for babeld/1.0.2-1

2010-10-25 Thread Julien Cristau
On Sat, Oct 16, 2010 at 09:38:18 +0200, Stéphane Glondu wrote:

 There has been a recent new bugfix release of babeld that fixes a
 possible crash on mips architectures. Attached is the diff of what I
 am planning to upload against the current version in unstable (and
 testing).
 
Are you sure the bug affected debian in the first place?

Cheers,
Julien


signature.asc
Description: Digital signature


Bug#601398: unblock: chromium-browser/6.0.472.63~r59945-1

2010-10-25 Thread Giuseppe Iuculano
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: freeze-exception

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Please unblock package chromium-browser

* New stable microrelease.
   * Allow to choose whether links are opened in a new link or new tab.
 (Closes: #581391) Thanks to Sam Morris
   * Backported security patches:
 - Medium Possible autofill / autocomplete profile spamming. Credit to
   Google Chrome Security Team (Inferno).
 - High Crash with forms. Credit to the Chromium development community.
 - Critical Browser crash with form autofill. Credit to the Chromium
   development community.
 - High Possible URL spoofing on page unload. Credit to kuzzcc; plus
   independent discovery by Jordi Chancel.
 - High Possible memory corruption with animated GIF. Credit to Simon 
Schaak.
 - High Failure to sandbox worker processes on Linux. Credit to Google
   Chrome Security Team (Chris Evans).
 - High Stale elements in an element map. Credit to Michal Zalewski of the
   Google Security Team.

unblock chromium-browser/6.0.472.63~r59945-1


Cheers,
Giuseppe.

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

iEYEARECAAYFAkzF0WsACgkQNxpp46476aqbTQCdE5fHABE7433DjREItKyLHc42
h28Anji/iGxs0S+3T+KEsZydVL7MwKev
=Qzod
-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/20101025185022.29053.91621.report...@sd6-casa.iuculano.it



Bug#600334: freeze exception for babeld/1.0.2-1

2010-10-25 Thread Stéphane Glondu
Le 25/10/2010 20:54, Julien Cristau a écrit :
 There has been a recent new bugfix release of babeld that fixes a
 possible crash on mips architectures. Attached is the diff of what I
 am planning to upload against the current version in unstable (and
 testing).

 Are you sure the bug affected debian in the first place?

No.

-- 
Stéphane




--
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/4cc5d490.7090...@glondu.net



Bug#601398: marked as done (unblock: chromium-browser/6.0.472.63~r59945-1)

2010-10-25 Thread Debian Bug Tracking System
Your message dated Mon, 25 Oct 2010 21:16:22 +0200
with message-id 4cc5d786.9090...@debian.org
and subject line Re: Bug#601398: unblock: chromium-browser/6.0.472.63~r59945-1
has caused the Debian Bug report #601398,
regarding unblock: chromium-browser/6.0.472.63~r59945-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.)


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

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Please unblock package chromium-browser

* New stable microrelease.
   * Allow to choose whether links are opened in a new link or new tab.
 (Closes: #581391) Thanks to Sam Morris
   * Backported security patches:
 - Medium Possible autofill / autocomplete profile spamming. Credit to
   Google Chrome Security Team (Inferno).
 - High Crash with forms. Credit to the Chromium development community.
 - Critical Browser crash with form autofill. Credit to the Chromium
   development community.
 - High Possible URL spoofing on page unload. Credit to kuzzcc; plus
   independent discovery by Jordi Chancel.
 - High Possible memory corruption with animated GIF. Credit to Simon 
Schaak.
 - High Failure to sandbox worker processes on Linux. Credit to Google
   Chrome Security Team (Chris Evans).
 - High Stale elements in an element map. Credit to Michal Zalewski of the
   Google Security Team.

unblock chromium-browser/6.0.472.63~r59945-1


Cheers,
Giuseppe.

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

iEYEARECAAYFAkzF0WsACgkQNxpp46476aqbTQCdE5fHABE7433DjREItKyLHc42
h28Anji/iGxs0S+3T+KEsZydVL7MwKev
=Qzod
-END PGP SIGNATURE-


---End Message---
---BeginMessage---
On 10/25/2010 08:50 PM, Giuseppe Iuculano wrote:

 Please unblock package chromium-browser
 
 * New stable microrelease.
* Allow to choose whether links are opened in a new link or new tab.
  (Closes: #581391) Thanks to Sam Morris
* Backported security patches:
  - Medium Possible autofill / autocomplete profile spamming. Credit to
Google Chrome Security Team (Inferno).
  - High Crash with forms. Credit to the Chromium development community.
  - Critical Browser crash with form autofill. Credit to the Chromium
development community.
  - High Possible URL spoofing on page unload. Credit to kuzzcc; plus
independent discovery by Jordi Chancel.
  - High Possible memory corruption with animated GIF. Credit to Simon 
 Schaak.
  - High Failure to sandbox worker processes on Linux. Credit to Google
Chrome Security Team (Chris Evans).
  - High Stale elements in an element map. Credit to Michal Zalewski of the
Google Security Team.

unblocked

Cheers

Luk

---End Message---


Bug#600210: Freeze Exception: libgda4

2010-10-25 Thread Piotr Pokora

On 25.10.2010 20:36, Adam D. Barratt wrote:

Which of the fixes mentioned in upstream's changelog does the above
refer to?


* libgda/gda-debug-macros.h, libgda/gda-transaction-status.c: Removed
internal debug macros


Both of those changes are to code which is in #ifdef GDA_DEBUG blocks.
Surely not everything builds with GDA_DEBUG turned on?


http://git.gnome.org/browse/libgda/commit/?h=LIBGDA_4.0id=a7a073f2bdb4d02faa876388fc4e7dd257259d90

It's not about building or code itself.
g-ir-scanner (and friends) generates GIR files, parsing the code.
Part of #ifdef has been removed because of obvious g-ir-xyz tool issue.
Not GDA library one.


Besides, many developers who build applications on top of libgda
complains about this library, not being up to date in available official
repositories. Libgda is the only one, open source library which provides
common access to databases, and thus should be available with minimal
amount of bugs.


People will complain if its out of date is not a valid reason for a
freeze exception.  Besides, if upstream release 4.0.13 in a little
while, why won't people just complain about Squeeze not including that
instead?


I fully understand Your point of view. But I do not mean keeping library 
up to date, sacrificing some stability. On the contrary.
I mean, no single application or library (which utilizes GIR 
functionality) can *be built* on top of GDA without this issue being 
resolved.


One can provide workarounds as long as library is working.
But no one can provide workaround as long as derived application/library 
can not be built at all. That's why I am saying, this bug is critical.


If I can not build my application or library on top of other included in 
Squeeze, it means package in release has a bug, which should be fixed. 
And I think it's better to do this now.


Possibility to build application is fundamental case.
The same as GIR is nowadays for Gnome or software built on top of 
GLib/GObject.


Piotras



--
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/4cc5d3fa.8000...@gmail.com



Re: Re: Please unblock virtualbox-ose

2010-10-25 Thread Luk Claes
 On Mon, Oct 25, 2010 at 09:30:50AM +0200, Bernd Zeimetz wrote:
 Give it more time for testing in unstable then.

 That's one of the things that's being considered, if you'd carefully
 read the thread.

Set to age-days 15.

I find some of the things mentioned in this thread quite low... though
when looking more closely to the package itself I decided to unblock anyway.

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/4cc5dab9.70...@debian.org



Re: Please unblock pianobar 2010.10.07-1

2010-10-25 Thread Luke Faraone
On 10/25/2010 02:43 PM, Julien Cristau wrote:
 Unblocked.  Is there any guarantee the protocol won't change again
 during squeeze's lifetime?

No. The service pianobar interacts with does not care to remain
backwards-compatible for its clients.

-- 
╒═╕
│Luke Faraone  ╭Debian / Ubuntu Developer╮│
│http://luke.faraone.cc╰Sugar Labs, Systems Admin╯│
│PGP: 5189 2A7D 16D0 49BB 046B  DC77 9732 5DD8 F9FD D506  │
╘═╛



signature.asc
Description: OpenPGP digital signature


Advice for an otrs2 2.4.9-1 upload

2010-10-25 Thread Patrick Matthäi
Hello release team,

2.4.8 has made it's way into squeeze a few days ago.
Anyway the OTRS AG released yet another (security) bugfix release today.

The upstream changelog is (only bugfixes) is (with some comments from me):

 - 2010-09-30 Fixed bug#6016 - AgentTicketZoom is vunerable to XSS
attacks from HTML e-mails.
= Security related, an must have!

 - 2010-09-22 Fixed bug#5903 - E-mail notification links don't contain
a href... tags.
= Annoying for agents

 - 2010-09-29 Fixed bug#6030 - Event notifications get's fired several
times on
event TicketFreeTextUpdate.
= In some situations agents get spammed

 - 2010-09-22 Fixed bug#5941 - Error in Apache log when no tickets
and/or customers in dashboard.
= bad behaviour

 - 2010-09-14 Fixed bug#5541 - Dashboard Chart generates error in
webserver log.
= bad behaviour

 - 2010-09-09 Fixed bug#5462 -
Kernel::System::Ticket::TicketEscalationIndexBuild()
does not invalidate the cache.
= wrong caching with escalated tickets in some situations

 - (2010/08/27) Fixed bug#5667 - Rich Text is not working in ipad. It's not
possible to add a note or close a ticket.
= better support/bugfixing with ipad as client

 - (2010/08/25) Fixed bug#5266 - Ticket Zoom shows wrong html content if
there
is no text but two html attachments in there.
= ugly


There is no debdiff, yet - I will create it tomorrow, but the whole diff
may be small and I hope that I get your OK to upload 2.4.9-1 to sid with
squeeze as target.

-- 
/*
Mit freundlichem Gruß / With kind regards,
 Patrick Matthäi
 GNU/Linux Debian Developer

E-Mail: pmatth...@debian.org
patr...@linux-dev.org

Comment:
Always if we think we are right,
we were maybe wrong.
*/



signature.asc
Description: OpenPGP digital signature


Bug#601414: Future freeze exception for liburi-perl

2010-10-25 Thread Mehdi Dogguy
On  0, gregor herrmann gre...@debian.org wrote:
 
 Does this sound acceptable?
 

Uploading 1.54-2 to t-p-u with this solution is acceptable.

Thanks for your work,

-- 
Mehdi Dogguy



-- 
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/20101025210816.ga25...@dogguy.org



Bug#601414: Future freeze exception for liburi-perl

2010-10-25 Thread gregor herrmann
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: freeze-exception

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Hi,

liburi-perl has been bitten by a FTBFS bug: #601116

The bug affects 1.54-1 in testing and 1.55-1 in unstable (but not the
new 1.56 release).

While looking at the issue I found a simple solution to fix the bug:
touch a file before running the test suite, so the failing test
(which needs DNS) is skipped. (More details in #601116.)

My proposal is to add this fix to the current 1.54-1 version and
upload it as 1.54-2 to t-p-u. (Alternatives like backporting the
changes from 1.56 to 1.54 or accepting 1.56 for testing are probably
more error prone and for sure more work both to create and to
review).

The complete debdiff would look like:

#v+
diff -Nru liburi-perl-1.54/debian/changelog liburi-perl-1.54/debian/changelog
- --- liburi-perl-1.54/debian/changelog   2010-04-01 22:12:40.0 +0200
+++ liburi-perl-1.54/debian/changelog   2010-10-23 18:13:51.0 +0200
@@ -1,3 +1,9 @@
+liburi-perl (1.54-2) UNRELEASED; urgency=low
+
+  * Don't run online tests (closes: #601116).
+
+ -- gregor herrmann gre...@debian.org  Sat, 23 Oct 2010 18:13:39 +0200
+
 liburi-perl (1.54-1) unstable; urgency=low
 
   * New upstream release.
diff -Nru liburi-perl-1.54/debian/control liburi-perl-1.54/debian/control
- --- liburi-perl-1.54/debian/control 2010-04-01 22:11:18.0 +0200
+++ liburi-perl-1.54/debian/control 2010-10-23 18:14:36.0 +0200
@@ -1,7 +1,7 @@
 Source: liburi-perl
 Section: perl
 Priority: optional
- -Build-Depends: debhelper (= 7)
+Build-Depends: debhelper (= 7.0.50~)
 Build-Depends-Indep: perl, libbusiness-isbn-perl
 Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
 Uploaders: Stefan Hornburg (Racke) ra...@linuxia.de,
diff -Nru liburi-perl-1.54/debian/rules liburi-perl-1.54/debian/rules
- --- liburi-perl-1.54/debian/rules   2010-03-15 16:38:38.0 +0100
+++ liburi-perl-1.54/debian/rules   2010-10-23 18:14:17.0 +0200
@@ -2,3 +2,8 @@
 
 %:
dh $@
+
+override_dh_auto_test:
+   touch OFFLINE
+   dh_auto_test
+   $(RM) OFFLINE
#v-


Does this sound acceptable?

Cheers,
gregor

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

iQIcBAEBCAAGBQJMxfCKAAoJELs6aAGGSaoGxXIP/RWH2ZAhdNu90qbj8JpuRo/4
12ndAwX0SuEKg0yw1ZU91TfrSnzLsFtlhkaW2h7uiPwc6LhRVRaRuPc6A2bEpnJv
5zDa/PiDtpMqmmwrPnaoWXaT5BJU9j9QzLlPDrsN11CebcmIy3JdHk6e49Bo2m+/
ByLUZ/Uezjke4CVPxBb7AMwwXTksMqx3VfMgHbzGxcVpK4XR+0CcBiBGDFDPazyD
lz2U00G+MQwiXcpL9Ht6vc492ahdF7INe3o4il8yF/Roog0klK9r4fVvjcTUzShi
sri7t/oQPXnDE677sCrJYcY3QTbNXKksB8HKY4H5RShtA9J/KbinkDz7t7NpfzmO
e5Asb/LuZrIYlBkLEc82E7/2lD3oYcHxxL7rN+CWGmFPrzLvo4wovf16zJrG2WxO
YZKOqKB+PnHieCFUjmkzG2PU1dcweJ2srK0N0FuS9086k+WdDsUm1CVYb5LQ3BG/
GX6jMEIpFhZIL6oGJ3TKhxkOh5S9sG5nO+DinOVkKwsm8ALDd3BJRPD/6JlukujV
tEKhX0y111NwOMHgYF7tfphfzj7XgIFWWu3zU0SiEUqGW1m5MaZR7RpaJPwDNsyw
e/1bBellLl52lYyLg4TQoJiRhJ3dNJVke1t8/g3Mq305GlhrMTPtqLkwTPkL8JOU
FYAB3Vqi8sku0y/9rOqp
=N3WV
-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/20101025210307.19760.59986.report...@belanna.comodo.priv.at



Bug#601414: Future freeze exception for liburi-perl

2010-10-25 Thread gregor herrmann
On Mon, 25 Oct 2010 23:08:16 +0200, Mehdi Dogguy wrote:

 On  0, gregor herrmann gre...@debian.org wrote:
 ^^
Oops :)

  Does this sound acceptable?
 Uploading 1.54-2 to t-p-u with this solution is acceptable.

Thanks alot!
Uploaded.
 

Cheers,
gregor
 
-- 
 .''`.   http://info.comodo.priv.at/ -- GPG key IDs: 0x8649AA06, 0x00F3CFE4
 : :' :  Debian GNU/Linux user, admin,  developer - http://www.debian.org/
 `. `'   Member of VIBE!AT  SPI, fellow of Free Software Foundation Europe
   `-NP: The Eagles: Lyin' Eyes


signature.asc
Description: Digital signature


Bug#601414: marked as done (Future freeze exception for liburi-perl)

2010-10-25 Thread Debian Bug Tracking System
Your message dated Mon, 25 Oct 2010 23:48:01 +0200
with message-id 4cc5fb11.6090...@dogguy.org
and subject line Re: Bug#601414: Future freeze exception for liburi-perl
has caused the Debian Bug report #601414,
regarding Future freeze exception for liburi-perl
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.)


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

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Hi,

liburi-perl has been bitten by a FTBFS bug: #601116

The bug affects 1.54-1 in testing and 1.55-1 in unstable (but not the
new 1.56 release).

While looking at the issue I found a simple solution to fix the bug:
touch a file before running the test suite, so the failing test
(which needs DNS) is skipped. (More details in #601116.)

My proposal is to add this fix to the current 1.54-1 version and
upload it as 1.54-2 to t-p-u. (Alternatives like backporting the
changes from 1.56 to 1.54 or accepting 1.56 for testing are probably
more error prone and for sure more work both to create and to
review).

The complete debdiff would look like:

#v+
diff -Nru liburi-perl-1.54/debian/changelog liburi-perl-1.54/debian/changelog
- --- liburi-perl-1.54/debian/changelog   2010-04-01 22:12:40.0 +0200
+++ liburi-perl-1.54/debian/changelog   2010-10-23 18:13:51.0 +0200
@@ -1,3 +1,9 @@
+liburi-perl (1.54-2) UNRELEASED; urgency=low
+
+  * Don't run online tests (closes: #601116).
+
+ -- gregor herrmann gre...@debian.org  Sat, 23 Oct 2010 18:13:39 +0200
+
 liburi-perl (1.54-1) unstable; urgency=low
 
   * New upstream release.
diff -Nru liburi-perl-1.54/debian/control liburi-perl-1.54/debian/control
- --- liburi-perl-1.54/debian/control 2010-04-01 22:11:18.0 +0200
+++ liburi-perl-1.54/debian/control 2010-10-23 18:14:36.0 +0200
@@ -1,7 +1,7 @@
 Source: liburi-perl
 Section: perl
 Priority: optional
- -Build-Depends: debhelper (= 7)
+Build-Depends: debhelper (= 7.0.50~)
 Build-Depends-Indep: perl, libbusiness-isbn-perl
 Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
 Uploaders: Stefan Hornburg (Racke) ra...@linuxia.de,
diff -Nru liburi-perl-1.54/debian/rules liburi-perl-1.54/debian/rules
- --- liburi-perl-1.54/debian/rules   2010-03-15 16:38:38.0 +0100
+++ liburi-perl-1.54/debian/rules   2010-10-23 18:14:17.0 +0200
@@ -2,3 +2,8 @@
 
 %:
dh $@
+
+override_dh_auto_test:
+   touch OFFLINE
+   dh_auto_test
+   $(RM) OFFLINE
#v-


Does this sound acceptable?

Cheers,
gregor

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

iQIcBAEBCAAGBQJMxfCKAAoJELs6aAGGSaoGxXIP/RWH2ZAhdNu90qbj8JpuRo/4
12ndAwX0SuEKg0yw1ZU91TfrSnzLsFtlhkaW2h7uiPwc6LhRVRaRuPc6A2bEpnJv
5zDa/PiDtpMqmmwrPnaoWXaT5BJU9j9QzLlPDrsN11CebcmIy3JdHk6e49Bo2m+/
ByLUZ/Uezjke4CVPxBb7AMwwXTksMqx3VfMgHbzGxcVpK4XR+0CcBiBGDFDPazyD
lz2U00G+MQwiXcpL9Ht6vc492ahdF7INe3o4il8yF/Roog0klK9r4fVvjcTUzShi
sri7t/oQPXnDE677sCrJYcY3QTbNXKksB8HKY4H5RShtA9J/KbinkDz7t7NpfzmO
e5Asb/LuZrIYlBkLEc82E7/2lD3oYcHxxL7rN+CWGmFPrzLvo4wovf16zJrG2WxO
YZKOqKB+PnHieCFUjmkzG2PU1dcweJ2srK0N0FuS9086k+WdDsUm1CVYb5LQ3BG/
GX6jMEIpFhZIL6oGJ3TKhxkOh5S9sG5nO+DinOVkKwsm8ALDd3BJRPD/6JlukujV
tEKhX0y111NwOMHgYF7tfphfzj7XgIFWWu3zU0SiEUqGW1m5MaZR7RpaJPwDNsyw
e/1bBellLl52lYyLg4TQoJiRhJ3dNJVke1t8/g3Mq305GlhrMTPtqLkwTPkL8JOU
FYAB3Vqi8sku0y/9rOqp
=N3WV
-END PGP SIGNATURE-


---End Message---
---BeginMessage---
On 10/25/2010 11:36 PM, gregor herrmann wrote:
 On Mon, 25 Oct 2010 23:08:16 +0200, Mehdi Dogguy wrote:
 
 On  0, gregor herrmann gre...@debian.org wrote:
  ^^
 Oops :)
 
 Does this sound acceptable?
 Uploading 1.54-2 to t-p-u with this solution is acceptable.
 
 Thanks alot!
 Uploaded.
 

Approved.

Cheers,

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

---End Message---


Re: Please unblock virtualbox-ose

2010-10-25 Thread Martin Zobel-Helas
Neil, 

On Mon Oct 25, 2010 at 09:49:00 +0100, Neil McGovern wrote:
 3) Remove the package from squeeze

did you had a look at it's r-depends? Removing is not an option.

Cheers,
Martin
-- 
 Martin Zobel-Helas zo...@debian.org  | Debian System Administrator
 Debian  GNU/Linux Developer   |   Debian Listmaster
 Public key http://zobel.ftbfs.de/5d64f870.asc   -   KeyID: 5D64 F870
 GPG Fingerprint:  5DB3 1301 375A A50F 07E7  302F 493E FB8E 5D64 F870


-- 
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/20101025093502.ga9...@ftbfs.de



Bug#601421: unblock: live-manual/1:2.0~a9-1

2010-10-25 Thread Daniel Baumann
Package: release.debian.org

live-manual (1:2.0~a9-1) unstable; urgency=medium

  [ Daniel Baumann ]
  * Correcting spelling mistake in previous changelog entry.
  * Updating other_customization-internationalization for squeeze.
  * Moving reviewed other_customization-internationalization to user
section.
  * Bumping build-depends on fixed sisu regarding odf and epub.

  [ Ben Armstrong ]
  * Add 'Managing a configuration' chapter

  [ M. Schneider ]
  * Adding a short description for Binary local packages lists.
  * Adding a short description how to achieve higher resolution when
booting in virtualbox-ose.

  [ Ben Armstrong ]
  * Fixing misc. punctuation, spelling and consistency.
  * Adding forgotten language updates.
  * Fixing missed lh config - lb config.
  * Fixing missing blank line which breaks code block.
  * Fixing spelling: we prefer standard US English.
  * Fixing bold styling for current release names.
  * Fixing lh_config - lb config.
  * Omitting Other section until it has been reviewed.
  * Fixing release codename capitalization and bolding.
  * Fixing improperly closed code block.

  [ Daniel Baumann ]
  * Updating ssh key location on live.debian.net.
  * Updating reference to 'howto contribute' section on autobuild index
page.

  [ Ben Armstrong ]
  * Fixing bad line break in PDFs by creative word rearrangement.
  * Adding some initial content for live-config overview.
  * Adding a section reference for lb-config.

  [ Daniel Baumann ]
  * Enabling French translations.
  * Adding French index.html.in.po from Christophe Siraut
ch...@tobald.eu.org.
  * Adding French about_manual.ssi.po from Christophe Siraut
ch...@tobald.eu.org.
  * Adding link to French translation on build index page.
  * Updating list of packages to install in order to work on live-
manual, thanks to Christophe Siraut ch...@tobald.eu.org.

  [ Carlo Stemberger ]
  * Removing unuseful option.

  [ Daniel Baumann ]
  * Reverting previous commit to remove --mirror-bootstrap mentioning,
it's not an unuseful option to have it explicitly listed.

  [ Ben Armstrong ]
  * Adding more references, including re-enabled Bugs and stub
Customization overview.
  * Fixing missed merge markers in translations.
  * Fixing missing customization overview references, reordered
sequentially.

  [ Christophe Siraut ]
  * Added character encoding meta for index, this helps browsers stick
to UTF-8.

  [ Daniel Baumann ]
  * Enabling Brasilian Portuguese translations.
  * Adding Brasilian Portuguese index.html.in.po from Bruno Gurgel
bruno.gur...@gmail.com.
  * Adding Brazilian Portuguese about_manual.ssi.po from Bruno Gurgel
bruno.gur...@gmail.com.
  * Adding link to Portuguese translation on build index page.

  [ Ben Armstrong ]
  * Adding more references.

  [ Daniel Baumann ]
  * Enabling Romanian translation.
  * Adding Romanian about_manual.po from Eugen Paiuc
linu...@bluewin.ch.
  * Adding Romanian about_project.po from Eugen Paiuc
linu...@bluewin.ch.
  * Adding link to Romanian translation on build index page.
  * Renaming other_reporting-bugs to project_bugs.
  * Updating project_bugs for squeeze.

 -- Daniel Baumann dan...@debian.org  Mon, 25 Oct 2010 23:29:47 +0200

-- 
Address:Daniel Baumann, Burgunderstrasse 3, CH-4562 Biberist
Email:  daniel.baum...@panthera-systems.net
Internet:   http://people.panthera-systems.net/~daniel-baumann/



-- 
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/4cc60544.6060...@debian.org



Bug#601420: unblock: freedink-data/1.08.20100103-3

2010-10-25 Thread Sylvain Beucler
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: freeze-exception


Please unblock package freedink-data

I updated the Dutch translation, along with instructions to regenerate
the .mo (in debian/rules).  Cf. #601245.

I also used by new @debian.org in debian/control.

unblock freedink-data/1.08.20100103-3

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

Kernel: Linux 2.6.32-5-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





-- 
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/20101025222333.8154.25840.report...@gun



Bug#601423: unblock: gollem/1.1.1+debian0-1.1

2010-10-25 Thread Moritz Muehlenhoff
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock package gollem. It fixes CVE-2010-3447.

unblock gollem/1.1.1+debian0-1.1

-- System Information:
Debian Release: squeeze/sid
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)

Kernel: Linux 2.6.32-5-686 (SMP w/1 CPU core)
Locale: LANG=C, lc_ctype=de_de.iso-8859...@euro (charmap=ISO-8859-15)
Shell: /bin/sh linked to /bin/bash



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



Please unblock tangerine

2010-10-25 Thread Iain Lane

Hi release team,

The latest tangerine fixes CVE-2010-3381, which is rc bug #598302.

There is one other small fix.

Please unblock it:

  unblock tangerine/0.3.2.2-6

Cheers,
Iain


signature.asc
Description: Digital signature


Re: advice for syncevolution in squeeze

2010-10-25 Thread David Bremner
On Sun, 24 Oct 2010 13:46:58 +0200, Patrick Ohly patrick.o...@intel.com wrote:

 If 1.0 + bug fixes is not acceptable for Debian Squeeze, then I suggest
 that direct synchronization with phones gets disabled entirely in the
 Debian Squeeze build by turning off Bluetooth support. Users who want
 that need to find a backport of SyncEvolution.

This is of course easy to do.  And I don't mind doing the backport.

 FWIW, I still think that 1.0 + bug fixes is the better choice for
 Squeeze. It has been in use for a while now and arguably is better than
 beta 2, with no known regressions whatsoever. 

I'm also willing to do this if the release team approves it. One thing I
(belatedly) realized is that we need to think about not only the changes
introduced by a new upstream version of syncevolution (some 360 commits
between 1.0beta2 and 1.0, about 80 of these are translations) but also
in libsynthesis (another 77 commits).

David


-- 
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/878w1lg2av@rocinante.cs.unb.ca



Bug#601367: unblock: festival/1:2.0.95~beta-3

2010-10-25 Thread Kumar Appaiah
Dear Mehdi,

On Mon, Oct 25, 2010 at 09:58:22AM -0500, Kumar Appaiah wrote:
 On Mon, Oct 25, 2010 at 04:12:38PM +0200, Mehdi Dogguy wrote:
  If you're going to use aplay by default, shouldn't you depend on
  alsa-utils (or at least Recommends it?).
 
 Hmm... I believed that I had; obviously, I've missed it, since I
 mistook the alsa-oss wrapper to be sufficient; obviously, it isn't,
 since aplay is needed.

Could you please consider the new patch attached?

Thanks!

Kumar
From 47b0d0af3af71b72a52116d357509139129545da Mon Sep 17 00:00:00 2001
From: Kumar Appaiah a.ku...@alumni.iitm.ac.in
Date: Mon, 25 Oct 2010 08:55:27 -0500
Subject: [PATCH] Make ALSA backend default

---
 debian/changelog|9 +
 debian/control  |3 ++-
 debian/festival.scm |4 
 3 files changed, 15 insertions(+), 1 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 69ba611..709c7b2 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,12 @@
+festival (1:2.0.95~beta-3) unstable; urgency=low
+
+  * Add patch from Samuel Thibault to make ALSA backend default.
+(Closes: #592442)
+  * Standards Version is now 3.9.1 (no changes needed)
+  * Depend on alsa-utils for default ALSA use.
+
+ -- Kumar Appaiah aku...@debian.org  Mon, 25 Oct 2010 21:38:04 -0500
+
 festival (1:2.0.95~beta-2) unstable; urgency=low
 
   * Don't depend on alsa-oss on kfreebsd-*, since it is unavailable
diff --git a/debian/control b/debian/control
index 408a8bc..91a63da 100644
--- a/debian/control
+++ b/debian/control
@@ -11,7 +11,7 @@ Build-Depends: debhelper (= 7.0.5~),
libncurses5-dev,
quilt (= 0.40),
texinfo
-Standards-Version: 3.9.0
+Standards-Version: 3.9.1
 Homepage: http://www.cstr.ed.ac.uk/projects/festival/
 Vcs-Git: git://git.debian.org/git/collab-maint/festival.git
 Vcs-Browser: http://git.debian.org/?p=collab-maint/festival.git
@@ -21,6 +21,7 @@ Architecture: any
 Depends: ${shlibs:Depends}, ${misc:Depends},
  adduser (= 3.105),
  alsa-oss [!kfreebsd-i386 !kfreebsd-amd64],
+ alsa-utils,
  lsb-base (= 3.0-10),
  oss-compat,
  sysv-rc (= 2.86.ds1) | file-rc
diff --git a/debian/festival.scm b/debian/festival.scm
index 8a6bde4..be5caf7 100644
--- a/debian/festival.scm
+++ b/debian/festival.scm
@@ -28,3 +28,7 @@
 (set! server_access_list '([^.]+ 127.0.0.1 localhost))
 
 ; Server deny list (hosts)
+
+; Make ALSA the default backend
+(Parameter.set 'Audio_Command aplay -q -c 1 -t raw -f s16 -r $SR $FILE)
+(Parameter.set 'Audio_Method 'Audio_Command)
-- 
1.7.1



signature.asc
Description: Digital signature


Re: freeze exception for texinfo 4.13a.dfsg.1-6

2010-10-25 Thread Norbert Preining
On Mo, 25 Okt 2010, Julien Cristau wrote:
  I know that it is late but we recently got some nasty bug reports
  we would like to see fixed for squeeze (full debdiff at the end of the 
  message)
  
 Unblocked, thanks.

Thanks, was a good idea to wait until the 10 days are over.

Best wishes

Norbert

Norbert Preiningprein...@{jaist.ac.jp, logic.at, debian.org}
JAIST, Japan TeX Live  Debian Developer
DSA: 0x09C5B094   fp: 14DF 2E6C 0307 BE6D AD76  A9C0 D2BF 4AA3 09C5 B094

OSBASTON (n.)
A point made for the seventh time to somebody who insists that they
know exactly what you mean but clearly hasn't got the faintest idea.
--- Douglas Adams, The Meaning of Liff


-- 
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/20101026023933.gn7...@gamma.logic.tuwien.ac.at



Please unblock twidge

2010-10-25 Thread John Goerzen

Release folks,

twidge 1.0.6 was just accepted into unstable.

Twitter revoked [1] twidge's API keys (a pig-headed move, but there it 
is.)  This means that twidge is broken by default.


I made a new version that uses new API keys, and prevents them from 
showing up in the source in the clear.  This is a minimally invasive 
patch designed to meet the requirements for squeeze, and is at [2]. 
Please laugh at the obfuscation algorithm if you wish.  This appears to 
be what they want (found out by trial and error by others).


There was also a small fix [3] to the manpage for users of identi.ca. 
No other changes.


Thanks,

-- John Goerzen

[1] http://github.com/jgoerzen/twidge/wiki/FrequentlyAskedQuestions

[2] 
http://github.com/jgoerzen/twidge/commit/9421da8999efb3322e86c30f8f026af3529576e3


[3] 
http://github.com/jgoerzen/twidge/commit/d5e6e32fdac5adb367b7e2f4250f58d1d1d27003



--
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/4cc643f1.8050...@complete.org



Re: Please unblock twidge

2010-10-25 Thread John Goerzen

On 10/25/2010 09:58 PM, John Goerzen wrote:

Release folks,

twidge 1.0.6 was just accepted into unstable.


I should have added that it fixes grave bug #601427, which complains of 
this issue.


-- John


--
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/4cc64415.5000...@complete.org



Re: Please unblock tangerine

2010-10-25 Thread Mehdi Dogguy
On 10/26/2010 02:23 AM, Iain Lane wrote:
 Hi release team,
 
 The latest tangerine fixes CVE-2010-3381, which is rc bug #598302.
 
 There is one other small fix.
 
 Please unblock it:
 
   unblock tangerine/0.3.2.2-6
 

It was already unblocked by Adam.

Cheers,

-- 
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/4cc6533f.5010...@dogguy.org



Bug#601367: unblock: festival/1:2.0.95~beta-3

2010-10-25 Thread Mehdi Dogguy
On 10/26/2010 04:42 AM, Kumar Appaiah wrote:
 Dear Mehdi,
 
 On Mon, Oct 25, 2010 at 09:58:22AM -0500, Kumar Appaiah wrote:
 On Mon, Oct 25, 2010 at 04:12:38PM +0200, Mehdi Dogguy wrote:
 If you're going to use aplay by default, shouldn't you depend on
 alsa-utils (or at least Recommends it?).

 Hmm... I believed that I had; obviously, I've missed it, since I
 mistook the alsa-oss wrapper to be sufficient; obviously, it isn't,
 since aplay is needed.
 
 Could you please consider the new patch attached?
 

Seems ok… please go ahead with the upload.

 Thanks!
 
 Kumar

-- 
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/4cc65254.3060...@dogguy.org



Bug#601423: marked as done (unblock: gollem/1.1.1+debian0-1.1)

2010-10-25 Thread Debian Bug Tracking System
Your message dated Tue, 26 Oct 2010 06:05:12 +0200
with message-id 4cc65378.1010...@dogguy.org
and subject line Re: Bug#601423: unblock: gollem/1.1.1+debian0-1.1
has caused the Debian Bug report #601423,
regarding unblock: gollem/1.1.1+debian0-1.1
to be marked as done.

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

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


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

Please unblock package gollem. It fixes CVE-2010-3447.

unblock gollem/1.1.1+debian0-1.1

-- System Information:
Debian Release: squeeze/sid
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)

Kernel: Linux 2.6.32-5-686 (SMP w/1 CPU core)
Locale: LANG=C, lc_ctype=de_de.iso-8859...@euro (charmap=ISO-8859-15)
Shell: /bin/sh linked to /bin/bash


---End Message---
---BeginMessage---
On 10/26/2010 12:48 AM, Moritz Muehlenhoff wrote:
 Package: release.debian.org
 Severity: normal
 User: release.debian@packages.debian.org
 Usertags: unblock
 
 Please unblock package gollem. It fixes CVE-2010-3447.
 
 unblock gollem/1.1.1+debian0-1.1
 

Unblocked.

Cheers,

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

---End Message---


Bug#601420: marked as done (unblock: freedink-data/1.08.20100103-3)

2010-10-25 Thread Debian Bug Tracking System
Your message dated Tue, 26 Oct 2010 06:09:27 +0200
with message-id 4cc65477.1060...@dogguy.org
and subject line Re: Bug#601420: unblock: freedink-data/1.08.20100103-3
has caused the Debian Bug report #601420,
regarding unblock: freedink-data/1.08.20100103-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.)


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


Please unblock package freedink-data

I updated the Dutch translation, along with instructions to regenerate
the .mo (in debian/rules).  Cf. #601245.

I also used by new @debian.org in debian/control.

unblock freedink-data/1.08.20100103-3

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

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




---End Message---
---BeginMessage---
On 10/26/2010 12:23 AM, Sylvain Beucler wrote:
 Package: release.debian.org
 Severity: normal
 User: release.debian@packages.debian.org
 Usertags: freeze-exception
 
 
 Please unblock package freedink-data
 
 I updated the Dutch translation, along with instructions to regenerate
 the .mo (in debian/rules).  Cf. #601245.
 
 I also used by new @debian.org in debian/control.
 

That doesn't appear in the changelog.

 unblock freedink-data/1.08.20100103-3
 

Unblocked.

Regards,

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

---End Message---


Bug#601367: unblock: festival/1:2.0.95~beta-3

2010-10-25 Thread Mehdi Dogguy
On 10/26/2010 06:21 AM, Kumar Appaiah wrote:
 
 I have done this. Thank you for considering it.
 

In your upload, .git directory appeared in the sources. Please remove it.

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/4cc65a5c.30...@dogguy.org



Bug#601367: unblock: festival/1:2.0.95~beta-3

2010-10-25 Thread Kumar Appaiah
On Tue, Oct 26, 2010 at 06:34:36AM +0200, Mehdi Dogguy wrote:
 On 10/26/2010 06:21 AM, Kumar Appaiah wrote:
  
  I have done this. Thank you for considering it.
  
 
 In your upload, .git directory appeared in the sources. Please remove it.

Oops. That's horrible. I shall fix it right away!

Kumar


signature.asc
Description: Digital signature


Bug#601367: unblock: festival/1:2.0.95~beta-3

2010-10-25 Thread Kumar Appaiah
On Mon, Oct 25, 2010 at 11:39:38PM -0500, Kumar Appaiah wrote:
 On Tue, Oct 26, 2010 at 06:34:36AM +0200, Mehdi Dogguy wrote:
  On 10/26/2010 06:21 AM, Kumar Appaiah wrote:
   
   I have done this. Thank you for considering it.
   
  
  In your upload, .git directory appeared in the sources. Please remove it.
 
 Oops. That's horrible. I shall fix it right away!

OK, I've done a brown paper upload. Extremely sorry for this;
incorrect pbuilder parameters and lack of a debc check caused this.

Kumar


signature.asc
Description: Digital signature


Bug#601367: marked as done (unblock: festival/1:2.0.95~beta-3)

2010-10-25 Thread Debian Bug Tracking System
Your message dated Tue, 26 Oct 2010 07:12:36 +0200
with message-id 4cc66344.4010...@dogguy.org
and subject line Re: Bug#601367: unblock: festival/1:2.0.95~beta-3
has caused the Debian Bug report #601367,
regarding unblock: festival/1:2.0.95~beta-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.)


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

Please unblock package festival (not yet uploaded)

Apparently, many people would find festival ready-to-use if the
default backend were made ALSA. This patch merely adds a change to
festival.scm (a file in debian/ installed into /etc) to make this
change.

Please consider this request. Thanks!

unblock festival/1:2.0.95~beta-3

Kumar

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

Kernel: Linux 2.6.32-5-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/bash
From 2e5dd419ff144a8f780b5042b4efb9d30ab3e831 Mon Sep 17 00:00:00 2001
From: Kumar Appaiah a.ku...@alumni.iitm.ac.in
Date: Mon, 25 Oct 2010 08:55:27 -0500
Subject: [PATCH] Make ALSA backend default

* Add patch from Samuel Thibault to make ALSA backend default.
  (Closes: #592442)
* Standards Version is now 3.9.1 (no changes needed)
---
 debian/changelog|8 
 debian/control  |2 +-
 debian/festival.scm |4 
 3 files changed, 13 insertions(+), 1 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 69ba611..5886f5f 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,11 @@
+festival (1:2.0.95~beta-3) unstable; urgency=low
+
+  * Add patch from Samuel Thibault to make ALSA backend default.
+(Closes: #592442)
+  * Standards Version is now 3.9.1 (no changes needed)
+
+ -- Kumar Appaiah aku...@debian.org  Mon, 25 Oct 2010 08:47:04 -0500
+
 festival (1:2.0.95~beta-2) unstable; urgency=low
 
   * Don't depend on alsa-oss on kfreebsd-*, since it is unavailable
diff --git a/debian/control b/debian/control
index 408a8bc..a810fbb 100644
--- a/debian/control
+++ b/debian/control
@@ -11,7 +11,7 @@ Build-Depends: debhelper (= 7.0.5~),
libncurses5-dev,
quilt (= 0.40),
texinfo
-Standards-Version: 3.9.0
+Standards-Version: 3.9.1
 Homepage: http://www.cstr.ed.ac.uk/projects/festival/
 Vcs-Git: git://git.debian.org/git/collab-maint/festival.git
 Vcs-Browser: http://git.debian.org/?p=collab-maint/festival.git
diff --git a/debian/festival.scm b/debian/festival.scm
index 8a6bde4..be5caf7 100644
--- a/debian/festival.scm
+++ b/debian/festival.scm
@@ -28,3 +28,7 @@
 (set! server_access_list '([^.]+ 127.0.0.1 localhost))
 
 ; Server deny list (hosts)
+
+; Make ALSA the default backend
+(Parameter.set 'Audio_Command aplay -q -c 1 -t raw -f s16 -r $SR $FILE)
+(Parameter.set 'Audio_Method 'Audio_Command)
-- 
1.7.1

---End Message---
---BeginMessage---
On 10/26/2010 06:39 AM, Kumar Appaiah wrote:
 On Tue, Oct 26, 2010 at 06:34:36AM +0200, Mehdi Dogguy wrote:

 In your upload, .git directory appeared in the sources. Please remove it.
 
 Oops. That's horrible. I shall fix it right away!
 

Unblocked festival/1:2.0.95~beta-4

Regards,

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

---End Message---