Bug#690610: unblock: openvrml/0.18.9-4

2012-10-22 Thread Philipp Kern
Nobuhiro,

am Mon, Oct 22, 2012 at 10:41:27AM +0900 hast du folgendes geschrieben:
 However, I think that it is already late to put in support of s390x.
 If this still does (if a release team permits this), I will set linux-any .

you could testbuild it on the porter box, but a new build wouldn't be a
problem.

Kind regards
Philipp Kern 


signature.asc
Description: Digital signature


Bug#691142: pu: package moodle/1.9.9.dfsg2-2.1+squeeze4

2012-10-22 Thread Didier Raboud
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: pu

Hi dear Release Team,

upon ping from Jonathan Wiltshire on #682203, here I am with a proposed stable
update for moodle. The changelog entry would be: 

moodle (1.9.9.dfsg2-2.1+squeeze4) stable; urgency=low

  * Minor security updates.
  * Backporting security fixes from MOODLE_19_STABLE:
- CVE-2012-1155 - MSA-12-0013: database activity module entries exporting
  does not respect separate groups (Closes: #668411).
- CVE-2012-2362 - MSA-12-0033: XSS bug in blog/index.php in IE.
- CVE-2012-2363 - MSA-12-0034: Stored SQL Injection in calendar.
- CVE-2012-2367 - MSA-12-0038: Calendar New Entry still shows and works
  for roles preventing calendar entry. (Closes: #674163)

debdiff and separate patches are attached; they are cherry-picks + quilt
refresh'es of upstream patches in the MOODLE_19_STABLE branch.

FYI, I started to backport the fix for CVE-2012-3398, but I'm not sure it'll
lead to an upload as the fix is quite invasive and doesn't apply cleanly on
the 1.9.9 codebase. Help welcome.

Cheers,

OdyX
diff -Nru moodle-1.9.9.dfsg2/debian/changelog moodle-1.9.9.dfsg2/debian/changelog
--- moodle-1.9.9.dfsg2/debian/changelog	2012-02-29 20:45:39.0 +0100
+++ moodle-1.9.9.dfsg2/debian/changelog	2012-10-22 08:10:11.0 +0200
@@ -1,3 +1,16 @@
+moodle (1.9.9.dfsg2-2.1+squeeze4) stable; urgency=low
+
+  * Minor security updates.
+  * Backporting security fixes from MOODLE_19_STABLE:
+- CVE-2012-1155 - MSA-12-0013: database activity module entries exporting
+  does not respect separate groups (Closes: #668411).
+- CVE-2012-2362 - MSA-12-0033: XSS bug in blog/index.php in IE.
+- CVE-2012-2363 - MSA-12-0034: Stored SQL Injection in calendar.
+- CVE-2012-2367 - MSA-12-0038: Calendar New Entry still shows and works
+  for roles preventing calendar entry. (Closes: #674163)
+
+ -- Didier Raboud o...@debian.org  Sun, 21 Oct 2012 14:16:11 +0200
+
 moodle (1.9.9.dfsg2-2.1+squeeze3) stable-security; urgency=low
 
   * Security update based on unstable:
diff -Nru moodle-1.9.9.dfsg2/debian/patches/MSA-12-0013 moodle-1.9.9.dfsg2/debian/patches/MSA-12-0013
--- moodle-1.9.9.dfsg2/debian/patches/MSA-12-0013	1970-01-01 01:00:00.0 +0100
+++ moodle-1.9.9.dfsg2/debian/patches/MSA-12-0013	2012-10-21 14:34:54.0 +0200
@@ -0,0 +1,45 @@
+commit 312ada2856cfb79d03ac6effe11dd750f2aa67f0
+Author: Adrian Greeve adr...@moodle.com
+Date:   Tue Jan 31 12:09:30 2012 +0800
+
+MDL-25185 - data - Allowing data from the database to be exported according to group roles.
+
+diff --git a/mod/data/export.php b/mod/data/export.php
+index 6ac914e..edea566 100644
+--- a/mod/data/export.php
 b/mod/data/export.php
+@@ -60,6 +60,7 @@ if($mform-is_cancelled()) {
+ print_header_simple($data-name, '', $nav,
+ '', '', true, update_module_button($cm-id, $course-id, get_string('modulename', 'data')),
+ navmenu($course, $cm), '', '');
++groups_print_activity_menu($cm, $CFG-wwwroot/mod/data/export.php?d=$d);
+ print_heading(format_string($data-name));
+ 
+ // these are for the tab display
+@@ -83,13 +84,25 @@ foreach($fields as $key = $field) {
+ $exportdata[0][] = $field-field-name;
+ }
+ }
++$groupid = groups_get_activity_group($cm);
+ 
+ $datarecords = get_records('data_records', 'dataid', $data-id);
+ ksort($datarecords);
+ $line = 1;
+ foreach($datarecords as $record) {
+ // get content indexed by fieldid
+-if( $content = get_records('data_content', 'recordid', $record-id, 'fieldid', 'fieldid, content, content1, content2, content3, content4') ) {
++if($groupid) {
++$select = SELECT c.fieldid, c.content, c.content1, c.content2, c.content3, c.content4 
++FROM {$CFG-prefix}data_content c, {$CFG-prefix}data_records r 
++WHERE c.recordid = $record-id  
++AND r.id = c.recordid 
++AND r.groupid = $groupid;
++} else {
++$select = SELECT fieldid, content, content1, content2, content3, content4 
++FROM {$CFG-prefix}data_content 
++WHERE recordid = $record-id;
++}
++if( $content = get_records_sql($select) ) {
+ foreach($fields as $field) {
+ $contents = '';
+ if(isset($content[$field-field-id])) {
diff -Nru moodle-1.9.9.dfsg2/debian/patches/MSA-12-0033 moodle-1.9.9.dfsg2/debian/patches/MSA-12-0033
--- moodle-1.9.9.dfsg2/debian/patches/MSA-12-0033	1970-01-01 01:00:00.0 +0100
+++ moodle-1.9.9.dfsg2/debian/patches/MSA-12-0033	2012-10-21 14:48:44.0 +0200
@@ -0,0 +1,45 @@
+commit 038131c8b5614f18c14d964dc53b6960ae6c30d8
+Author: Rajesh Taneja raj...@moodle.com
+Date:   Mon Mar 26 11:54:01 2012 +1300
+
+MDL-31745 blog: Fixed up encoding issue within blog
+
+--- a/blog/lib.php
 b/blog/lib.php
+@@ -672,7 +672,7 @@
+ $querystring = '';
+ foreach($_GET as $var = $val) {

Re: Candidates for removal from testing

2012-10-22 Thread Andreas Tille
Hi,

On Thu, Oct 18, 2012 at 10:32:39AM +0200, Niels Thykier wrote:
 Debian Med Packaging Team debian-med-packag...@lists.alioth.debian.org
gentle

A package fixing the issue is in

   http://ftp-master.debian.org/new.html

since some time and this had something to do with some problems in DAK
(according to

   
http://lists.alioth.debian.org/pipermail/debian-med-packaging/2012-October/017521.html

)  Ansgar, it would be really welcome if you could try again your manual
procedure to circumvent the problem to get the fixed package in.
 
We (as in the Debian Med team) would be really happy if you would delay
the removal of the package because we actually worked on this problem
and it should be fine once it has passed new (due to a move from contrib
to main).

Kind regards

   Andreas.

-- 
http://fam-tille.de


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



Bug#691155: unblock: fsl/4.1.9-7

2012-10-22 Thread Michael Hanke
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock package fsl

It fixes http://bugs.debian.org/689166 (prevent regeneration of
TclIndex). The full source diff is attached. It basically removes the
postinst script that performed the regeneration. All other changes are
necessary to prevent failure due to the removal of the postinst script.
Full source diff to 4.1.9-6 is attached.

unblock fsl/4.1.9-7

-- System Information:
Debian Release: wheezy/sid
Architecture: i386 (i686)

Kernel: Linux 3.2.0-2-686-pae (SMP w/2 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
diff --git a/debian/changelog b/debian/changelog
index 72fd4f8..3b037a8 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,11 @@
+fsl (4.1.9-7) unstable; urgency=low
+
+  * Stop regenerating tclIndex during postinst. This is no longer necessary
+since libfslio and its TCL scripts are built from the FSL source package
+-- which is since 4.1.1 or four years (Closes: #689166).
+
+ -- Michael Hanke m...@debian.org  Thu, 06 Sep 2012 09:10:33 +0200
+
 fsl (4.1.9-6) unstable; urgency=low
 
   * Declare a conflict to pre-4.1.9-5 fsl4.1-doc packages. Otherwise,
diff --git a/debian/fsl-4.1.postinst b/debian/fsl-4.1.postinst
deleted file mode 100644
index 70cd86c..000
--- a/debian/fsl-4.1.postinst
+++ /dev/null
@@ -1,27 +0,0 @@
-#!/bin/sh
-# postinst script for FSL
-# This script is used to regenerate the tclIndex file after placing a link to
-# fslio.tcl in the main tcl path of FSL.
-
-set -e
-
-case $1 in
-	configure)
-		( cd /usr/share/fsl/4.1/tcl  echo 'auto_mkindex . *.tcl' | tclsh )
-	;;
-
-	abort-upgrade|abort-remove|abort-deconfigure)
-	#nothing
-	;;
-
-	*)
-		echo postinst called with unknown argument \`$1' 2
-		exit 1
-	;;
-esac
-
-#DEBHELPER#
-
-exit 0
-
-
diff --git a/debian/rules b/debian/rules
index 6cde284..7ca22e6 100755
--- a/debian/rules
+++ b/debian/rules
@@ -76,7 +76,7 @@ controlfiles:
 			 debian/$$(basename $$f) ; \
 	done
 	# renamed files that need to have a version-specific name
-	for suffix in 1 desktop dirs install links lintian-overrides manpages menu postinst docs; do \
+	for suffix in 1 desktop dirs install links lintian-overrides manpages menu docs; do \
 		for prefix in fsl fsl-doc nudge; do \
 		[ -f debian/$$prefix.$$suffix ]   \
 			mv debian/$$prefix.$$suffix debian/$$prefix-$(FSLMAJORVERSION).$$suffix || true ; \
@@ -95,7 +95,7 @@ cleancontrolfiles:
 	done
 	rm -f debian/fsl.preinst
 	# versioned files
-	rm -f debian/{fsl,fsl-doc,nudge}-$(FSLMAJORVERSION).{1,desktop,dirs,install,links,lintian-overrides,manpages,menu,postinst,preinst,docs}
+	rm -f debian/{fsl,fsl-doc,nudge}-$(FSLMAJORVERSION).{1,desktop,dirs,install,links,lintian-overrides,manpages,menu,preinst,docs}
 
 # build and install extra
 biextra-%:
diff --git a/debian/templates/fsl.postinst b/debian/templates/fsl.postinst
deleted file mode 100644
index ca112a6..000
--- a/debian/templates/fsl.postinst
+++ /dev/null
@@ -1,27 +0,0 @@
-#!/bin/sh
-# postinst script for FSL
-# This script is used to regenerate the tclIndex file after placing a link to
-# fslio.tcl in the main tcl path of FSL.
-
-set -e
-
-case $1 in
-	configure)
-		( cd /usr/share/fsl/#FSLMVERSION#/tcl  echo 'auto_mkindex . *.tcl' | tclsh )
-	;;
-
-	abort-upgrade|abort-remove|abort-deconfigure)
-	#nothing
-	;;
-
-	*)
-		echo postinst called with unknown argument \`$1' 2
-		exit 1
-	;;
-esac
-
-#DEBHELPER#
-
-exit 0
-
-


Re: Uploads of evolution bits

2012-10-22 Thread Julien Cristau
On Sun, Oct 21, 2012 at 23:41:00 +0200, Jordi Mallach wrote:

 If I'm given a green light, I'll upload e-d-s and gtkhtml tomorrow, and
 the other few bits a bit later.
 
I think you should go ahead and upload, at least to get this some
exposure in sid.

Cheers,
Julien


signature.asc
Description: Digital signature


Re: Bug#688630: Bug#688630: t-coffee-doc: empty package

2012-10-22 Thread Julien Cristau
On Mon, Oct 22, 2012 at 08:14:46 +0900, Charles Plessy wrote:

 severity 688630 normal
 thanks
 
 Dear Release team,
 
 the t-coffee-doc package in Wheezy and Sid is empty, as Upstream removed
 documentation from the source package without us noticing.
 
 The work on t-coffee continued in our VCS since the freeze, and we already
 accumulated some other changes not related to the release.
 
 I propose to either ignore the emptiness of t-coffee-doc, or to make an upload
 to testing-proposed-updates, where the t-coffee-doc package would be 
 discarded.
 
 Please let us know if you would like this to happen.
 
NAK.  As the package version is the same in sid and wheezy this bug
needs to be fixed through sid, not tpu.  (And it *does* need to be
fixed, IMO.)

Cheers,
Julien


signature.asc
Description: Digital signature


Bug#691098: unblock: mumble/1.2.3-349-g315b5f5-2.1 [pre-approval request]

2012-10-22 Thread Julien Cristau
On Sun, Oct 21, 2012 at 15:54:38 +0200, gregor herrmann wrote:

 Package: release.debian.org
 Severity: normal
 User: release.debian@packages.debian.org
 Usertags: unblock
 
 I'd like to request a pre-approval for a future unblock of a
 not-yet-uploaded NMU of mumble.
 
IMO the package needs to be in sid before we consider it.

Cheers,
Julien


signature.asc
Description: Digital signature


Bug#691155: marked as done (unblock: fsl/4.1.9-7)

2012-10-22 Thread Debian Bug Tracking System
Your message dated Mon, 22 Oct 2012 12:35:02 +0200
with message-id 50852156.6000...@thykier.net
and subject line Re: Bug#691155: unblock: fsl/4.1.9-7
has caused the Debian Bug report #691155,
regarding unblock: fsl/4.1.9-7
to be marked as done.

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

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


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

It fixes http://bugs.debian.org/689166 (prevent regeneration of
TclIndex). The full source diff is attached. It basically removes the
postinst script that performed the regeneration. All other changes are
necessary to prevent failure due to the removal of the postinst script.
Full source diff to 4.1.9-6 is attached.

unblock fsl/4.1.9-7

-- System Information:
Debian Release: wheezy/sid
Architecture: i386 (i686)

Kernel: Linux 3.2.0-2-686-pae (SMP w/2 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
diff --git a/debian/changelog b/debian/changelog
index 72fd4f8..3b037a8 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,11 @@
+fsl (4.1.9-7) unstable; urgency=low
+
+  * Stop regenerating tclIndex during postinst. This is no longer necessary
+since libfslio and its TCL scripts are built from the FSL source package
+-- which is since 4.1.1 or four years (Closes: #689166).
+
+ -- Michael Hanke m...@debian.org  Thu, 06 Sep 2012 09:10:33 +0200
+
 fsl (4.1.9-6) unstable; urgency=low
 
   * Declare a conflict to pre-4.1.9-5 fsl4.1-doc packages. Otherwise,
diff --git a/debian/fsl-4.1.postinst b/debian/fsl-4.1.postinst
deleted file mode 100644
index 70cd86c..000
--- a/debian/fsl-4.1.postinst
+++ /dev/null
@@ -1,27 +0,0 @@
-#!/bin/sh
-# postinst script for FSL
-# This script is used to regenerate the tclIndex file after placing a link to
-# fslio.tcl in the main tcl path of FSL.
-
-set -e
-
-case $1 in
-	configure)
-		( cd /usr/share/fsl/4.1/tcl  echo 'auto_mkindex . *.tcl' | tclsh )
-	;;
-
-	abort-upgrade|abort-remove|abort-deconfigure)
-	#nothing
-	;;
-
-	*)
-		echo postinst called with unknown argument \`$1' 2
-		exit 1
-	;;
-esac
-
-#DEBHELPER#
-
-exit 0
-
-
diff --git a/debian/rules b/debian/rules
index 6cde284..7ca22e6 100755
--- a/debian/rules
+++ b/debian/rules
@@ -76,7 +76,7 @@ controlfiles:
 			 debian/$$(basename $$f) ; \
 	done
 	# renamed files that need to have a version-specific name
-	for suffix in 1 desktop dirs install links lintian-overrides manpages menu postinst docs; do \
+	for suffix in 1 desktop dirs install links lintian-overrides manpages menu docs; do \
 		for prefix in fsl fsl-doc nudge; do \
 		[ -f debian/$$prefix.$$suffix ]   \
 			mv debian/$$prefix.$$suffix debian/$$prefix-$(FSLMAJORVERSION).$$suffix || true ; \
@@ -95,7 +95,7 @@ cleancontrolfiles:
 	done
 	rm -f debian/fsl.preinst
 	# versioned files
-	rm -f debian/{fsl,fsl-doc,nudge}-$(FSLMAJORVERSION).{1,desktop,dirs,install,links,lintian-overrides,manpages,menu,postinst,preinst,docs}
+	rm -f debian/{fsl,fsl-doc,nudge}-$(FSLMAJORVERSION).{1,desktop,dirs,install,links,lintian-overrides,manpages,menu,preinst,docs}
 
 # build and install extra
 biextra-%:
diff --git a/debian/templates/fsl.postinst b/debian/templates/fsl.postinst
deleted file mode 100644
index ca112a6..000
--- a/debian/templates/fsl.postinst
+++ /dev/null
@@ -1,27 +0,0 @@
-#!/bin/sh
-# postinst script for FSL
-# This script is used to regenerate the tclIndex file after placing a link to
-# fslio.tcl in the main tcl path of FSL.
-
-set -e
-
-case $1 in
-	configure)
-		( cd /usr/share/fsl/#FSLMVERSION#/tcl  echo 'auto_mkindex . *.tcl' | tclsh )
-	;;
-
-	abort-upgrade|abort-remove|abort-deconfigure)
-	#nothing
-	;;
-
-	*)
-		echo postinst called with unknown argument \`$1' 2
-		exit 1
-	;;
-esac
-
-#DEBHELPER#
-
-exit 0
-
-
---End Message---
---BeginMessage---
On 2012-10-22 11:31, Michael Hanke wrote:
 Package: release.debian.org
 Severity: normal
 User: release.debian@packages.debian.org
 Usertags: unblock
 
 Please unblock package fsl
 
 It fixes http://bugs.debian.org/689166 (prevent regeneration of
 TclIndex). The full source diff is attached. It basically removes the
 postinst script that performed the regeneration. All other changes are
 necessary to prevent failure due to the removal of the postinst script.
 Full source diff to 4.1.9-6 is attached.
 
 unblock fsl/4.1.9-7
 
 [...]

Unblocked, thanks.

~Niels---End Message---


Bug#691059: pre-approval: gigolo/0.4.1+dfsg-1

2012-10-22 Thread Niels Thykier
On 2012-10-20 21:56, Lionel Le Folgoc wrote:
 Package: release.debian.org
 Severity: normal
 User: release.debian@packages.debian.org
 Usertags: unblock
 
 Dear release team,
 
 I've prepared a new revision of gigolo to fix rc bug #654468 (the tarball
 contains waf… but still provides an autotools-based build system, so I 
 repacked
 it to get rid of waf).
 
 Would such a change (see attached debdiff between 0.4.1-3 and 0.4.1+dfsg-1) be
 acceptable for wheezy?
 
 Thanks.
 
 Lionel
 
 [...]

Hi,

Please go ahead and ping us after it has been in unstable for a couple
of days.

~Niels


--
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/5085275c.90...@thykier.net



Bug#691098: unblock: mumble/1.2.3-349-g315b5f5-2.1 [pre-approval request]

2012-10-22 Thread gregor herrmann
On Mon, 22 Oct 2012 12:30:34 +0200, Julien Cristau wrote:

  Package: release.debian.org
  Severity: normal
  User: release.debian@packages.debian.org
  Usertags: unblock
  
  I'd like to request a pre-approval for a future unblock of a
  not-yet-uploaded NMU of mumble.
  
 IMO the package needs to be in sid before we consider it.

Thanks for your quick reply!

I was under the impression that the release team prefers to assess
the situation before an upload in more complicated situations, but
I'm happy to upload the NMU to a DELAYED queue later today.

Cheers,
gregor

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


-- 
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/20121022113509.gr3...@colleen.colgarra.priv.at



Bug#691098: unblock: mumble/1.2.3-349-g315b5f5-2.1 [pre-approval request]

2012-10-22 Thread Julien Cristau
On Mon, Oct 22, 2012 at 13:35:09 +0200, gregor herrmann wrote:

 On Mon, 22 Oct 2012 12:30:34 +0200, Julien Cristau wrote:
 
   Package: release.debian.org
   Severity: normal
   User: release.debian@packages.debian.org
   Usertags: unblock
   
   I'd like to request a pre-approval for a future unblock of a
   not-yet-uploaded NMU of mumble.
   
  IMO the package needs to be in sid before we consider it.
 
 Thanks for your quick reply!
 
 I was under the impression that the release team prefers to assess
 the situation before an upload in more complicated situations, but
 I'm happy to upload the NMU to a DELAYED queue later today.
 
I guess I don't consider this a complicated situation.  Either the new
version is ok, or we release without mumble.  Neither the current
version in sid nor the current version in wheezy are suitable anyway,
AIUI.

Cheers,
Julien


signature.asc
Description: Digital signature


Re: Candidates for removal from testing

2012-10-22 Thread Niels Thykier
On 2012-10-22 09:20, Andreas Tille wrote:
 Hi,
 
 On Thu, Oct 18, 2012 at 10:32:39AM +0200, Niels Thykier wrote:
 Debian Med Packaging Team debian-med-packag...@lists.alioth.debian.org
gentle
 
 A package fixing the issue is in
 
http://ftp-master.debian.org/new.html
 
 since some time and this had something to do with some problems in DAK
 (according to
 

 http://lists.alioth.debian.org/pipermail/debian-med-packaging/2012-October/017521.html
 
 )  Ansgar, it would be really welcome if you could try again your manual
 procedure to circumvent the problem to get the fixed package in.
  
 We (as in the Debian Med team) would be really happy if you would delay
 the removal of the package because we actually worked on this problem
 and it should be fine once it has passed new (due to a move from contrib
 to main).
 
 Kind regards
 
Andreas.
 

Hi,

Noted, I have taken it off the list for now.

~Niels


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



Re: Uploading linux (3.2.32-1)

2012-10-22 Thread Ben Hutchings
On Fri, 2012-10-19 at 14:44 +0100, Ben Hutchings wrote:
 I intend to upload linux version 3.2.32-1 to unstable this weekend.
 This brings in various fixes from stable updates 3.2.{31,32} and
 elsewhere, and should fix the previous FTBFS on mips{,el}.

This is now done.

 (Also, I intend to upload version 3.6.2-1 or .3-1 to experimental.)

Not done, but I'm building 3.6.3-1 and hope to be able to upload
tonight.

Ben.

-- 
Ben Hutchings
Humour is the best antidote to reality.


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


Bug#691171: unblock: pgbouncer/1.5.2-3

2012-10-22 Thread Christoph Berg
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock package pgbouncer. It fixes #687577 (important) that
re-adds the check for START=0 in /etc/default/pgbouncer which was
there until the recent init script refactoring. As it is also
documented in README.Debian, it would be rather embarassing not to
ship an init script that has it. (It also updates the Vcs-* headers to
reflect reality.)

unblock pgbouncer/1.5.2-3

diff -Nru pgbouncer-1.5.2/debian/changelog pgbouncer-1.5.2/debian/changelog
--- pgbouncer-1.5.2/debian/changelog2012-07-26 13:12:28.0 +0200
+++ pgbouncer-1.5.2/debian/changelog2012-10-07 19:16:41.0 +0200
@@ -1,3 +1,11 @@
+pgbouncer (1.5.2-3) unstable; urgency=low
+
+  * Re-add check for START=0 in the init script.  Spotted by Sergey Burladyan.
+Closes: #687577.
+  * Repository moved to git.
+
+ -- Christoph Berg m...@debian.org  Sun, 07 Oct 2012 19:16:34 +0200
+
 pgbouncer (1.5.2-2) unstable; urgency=low
 
   * Init script: Use --oknodo.  Closes: #681978.
diff -Nru pgbouncer-1.5.2/debian/control pgbouncer-1.5.2/debian/control
--- pgbouncer-1.5.2/debian/control  2012-04-30 14:32:31.0 +0200
+++ pgbouncer-1.5.2/debian/control  2012-10-07 17:28:00.0 +0200
@@ -6,8 +6,8 @@
 Standards-Version: 3.9.3
 Build-Depends: cdbs, debhelper (= 7), libevent-dev (= 1.3b), asciidoc, 
xmlto, python
 Homepage: http://pgfoundry.org/projects/pgbouncer/
-Vcs-Svn: svn://svn.debian.org/pkg-postgresql/trunk/pgbouncer/
-Vcs-Browser: http://svn.debian.org/wsvn/pkg-postgresql/trunk/pgbouncer/
+Vcs-Git: git://anonscm.debian.org/pkg-postgresql/pgbouncer.git
+Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-postgresql/pgbouncer.git
 
 Package: pgbouncer
 Architecture: any
diff -Nru pgbouncer-1.5.2/debian/init pgbouncer-1.5.2/debian/init
--- pgbouncer-1.5.2/debian/init 2012-07-19 16:34:34.0 +0200
+++ pgbouncer-1.5.2/debian/init 2012-10-07 17:34:00.0 +0200
@@ -35,6 +35,8 @@
 
 case $1 in
   start)
+# Check if we are still disabled in /etc/default/pgbouncer
+[ ${START:-} = 0 ]  exit 0
 echo -n Starting server: $NAME
 test -d $PIDDIR || install -d -o postgres -g postgres -m 2775 $PIDDIR
 $SSD --start --chuid $RUNASUSER --oknodo -- $OPTS 2 /dev/null


Christoph
-- 
c...@df7cb.de | http://www.df7cb.de/


--
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20121022145326.ga13...@msgid.df7cb.de



Bug#691098: unblock: mumble/1.2.3-349-g315b5f5-2.1 [pre-approval request]

2012-10-22 Thread gregor herrmann
Control: tag 675971 + pending

On Mon, 22 Oct 2012 13:39:24 +0200, Julien Cristau wrote:

   IMO the package needs to be in sid before we consider it.
  
  Thanks for your quick reply!
  
  I was under the impression that the release team prefers to assess
  the situation before an upload in more complicated situations, but
  I'm happy to upload the NMU to a DELAYED queue later today.
  
 I guess I don't consider this a complicated situation.  Either the new
 version is ok, or we release without mumble.  Neither the current
 version in sid nor the current version in wheezy are suitable anyway,
 AIUI.

Ok, I've uploaded 1.2.3-349-g315b5f5-2.1 now, to DELAYED/2 in order
to give the maintainers or other interested parties another chance to
take a look at the changes.

I'm attaching the debdiff of the upload against the version currently
in sid.


Cheers,
gregor

-- 
 .''`.  Homepage: http://info.comodo.priv.at/ - OpenPGP key 0xBB3A68018649AA06
 : :' : Debian GNU/Linux user, admin, and developer  -  http://www.debian.org/
 `. `'  Member of VIBE!AT  SPI, fellow of the Free Software Foundation Europe
   `-   NP: The Eagles: Take It Easy
diff -Nru mumble-1.2.3-349-g315b5f5/debian/changelog mumble-1.2.3-349-g315b5f5/debian/changelog
--- mumble-1.2.3-349-g315b5f5/debian/changelog	2012-07-08 19:42:05.0 +0200
+++ mumble-1.2.3-349-g315b5f5/debian/changelog	2012-10-14 18:37:03.0 +0200
@@ -1,3 +1,31 @@
+mumble (1.2.3-349-g315b5f5-2.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Fix Cannot communicate with the vast majority of Mumble servers due
+to lack of required baseline codec:
+re-enable using the bundled celt library:
+   debian/patches/series:
+ - add 07-use-embedded-celt-baseline patch
+   debian/patches/07-use-embedded-celt-baseline:
+ - build Celt 0.7.1 and not 0.11.0
+   debian/mumble.install:
+ - ship Celt 0.7.1 library from the embedded source
+   debian/rules:
+ - re-enable Celt using the bundled 0.7.1 version
+   debian/patches/20-add-opus-threshold-option:
+ - fix src/murmur/Meta.cpp to set default iOpusThreshold=100 to only
+   switch from Celt to Opus if 100% of connected clients support Opus
+   (instead of 1%)
+ - fix murmur.ini example for opusthreshold option to =100
+   (instead of =1)
+ - add #opusthreshold=100 comments to murmur.ini.system (shipped as
+   etc/mumble-server.ini) to match murmur.ini example
+Closes: #675971.
+This implements the TC decision in #682010.
+[Thanks to Gregor Herrmann for his help and guidance.]
+
+ -- Christopher Knadle chris.kna...@coredump.us  Thu, 04 Oct 2012 11:45:05 -0400
+
 mumble (1.2.3-349-g315b5f5-2) unstable; urgency=low
 
   * Drop the hard dep on boost-1.46, that's been removed now.  Closes: #678759
diff -Nru mumble-1.2.3-349-g315b5f5/debian/mumble.install mumble-1.2.3-349-g315b5f5/debian/mumble.install
--- mumble-1.2.3-349-g315b5f5/debian/mumble.install	2012-07-08 19:42:05.0 +0200
+++ mumble-1.2.3-349-g315b5f5/debian/mumble.install	2012-10-14 18:36:54.0 +0200
@@ -1,6 +1,6 @@
 release/mumble usr/bin/
 release/libmumble.so* usr/lib/mumble/
-#release/libcelt0.so.?.?.? usr/lib/mumble/
+release/libcelt0.so.?.?.? usr/lib/mumble/
 release/plugins/lib*.so usr/lib/mumble/
 icons/mumble.xpm usr/share/pixmaps/
 icons/mumble.svg usr/share/icons/hicolor/scalable/apps/
diff -Nru mumble-1.2.3-349-g315b5f5/debian/patches/07-use-embedded-celt-baseline mumble-1.2.3-349-g315b5f5/debian/patches/07-use-embedded-celt-baseline
--- mumble-1.2.3-349-g315b5f5/debian/patches/07-use-embedded-celt-baseline	1970-01-01 01:00:00.0 +0100
+++ mumble-1.2.3-349-g315b5f5/debian/patches/07-use-embedded-celt-baseline	2012-10-14 18:36:54.0 +0200
@@ -0,0 +1,13 @@
+# build and bundle in only celt 0.7.1 if celt is embedded
+--- a/main.pro
 b/main.pro
+@@ -12,7 +12,8 @@
+ SUBDIRS *= speexbuild
+   }
+   !CONFIG(no-bundled-celt) {
+-SUBDIRS *= celt-0.7.0-build celt-0.11.0-build
++SUBDIRS *= celt-0.7.0-build
++SUBDIRS -= celt-0.11.0-build
+   }
+ 
+   CONFIG(opus) {
diff -Nru mumble-1.2.3-349-g315b5f5/debian/patches/20-add-opus-threshold-option mumble-1.2.3-349-g315b5f5/debian/patches/20-add-opus-threshold-option
--- mumble-1.2.3-349-g315b5f5/debian/patches/20-add-opus-threshold-option	2012-07-08 19:42:05.0 +0200
+++ mumble-1.2.3-349-g315b5f5/debian/patches/20-add-opus-threshold-option	2012-10-14 18:36:54.0 +0200
@@ -8,7 +8,7 @@
  
 +# Amount of users with Opus support needed to force Opus usage, in percent.
 +# 0 = Always enable Opus, 100 = enable Opus if it's supported by all clients.
-+#opusthreshold=1
++#opusthreshold=100
 +
  # Regular expression used to validate channel names
  # (note that you have to escape backslashes with \ )
@@ -36,7 +36,7 @@
  	uiUid = uiGid = 0;
  #endif
  
-+	iOpusThreshold = 1;
++	iOpusThreshold = 100;
 +
  	qrUserName = 

POSTA CERTIFICATA: Photos

2012-10-22 Thread Per conto di: maurizio.sbr...@pec.saipisa.it
--Questo è un Messaggio di Posta Certificata--

Il giorno 22/10/2012 alle ore 20:09:51 (+0200) il messaggio con Oggetto
Photos è stato inviato dal mittente maurizio.sbr...@pec.saipisa.it
e indirizzato a:
debian-release@lists.debian.org
Il messaggio originale è incluso in allegato, per aprirlo cliccare sul file 
postacert.eml (nella webmail o in alcuni client di posta l'allegato potrebbe 
avere come nome l'oggetto del messaggio originale).
L'allegato daticert.xml contiene informazioni di servizio sulla trasmissione
L'identificativo univoco di questo messaggio è: 
opec271.20121022200951.22663.05.1...@pec.aruba.it


daticert.xml
Description: XML document
---BeginMessage---
Hi, 
as promised your photos - http://iwowwe.aekap.net/redirecting.htm---End Message---


smime.p7s
Description: S/MIME cryptographic signature


Bug#691184: unblock: cups-pk-helper/0.2.3-2

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

Please unblock cups-pk-helper 0.2.3-2

It fixes CVE-2012-4510

cheers,
Moritz

unblock cups-pk-helper/0.2.3-2

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

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


-- 
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/20121022175232.5549.25882.reportbug@pisco.westfalen.local



Bug#691186: unblock: icecast2/2.3.2-9+deb7u2

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

Ok to upload to t-p-u with the attached debdiff?

This fixes CVE-2011-4612 / #652663)

unblock icecast2/2.3.2-9+deb7u2

Cheers,
Moritz
diff -Nru icecast2-2.3.2/debian/changelog icecast2-2.3.2/debian/changelog
--- icecast2-2.3.2/debian/changelog	2012-09-14 00:55:08.0 +0200
+++ icecast2-2.3.2/debian/changelog	2012-10-22 20:40:33.0 +0200
@@ -1,3 +1,9 @@
+icecast2 (2.3.2-9+deb7u2) wheezy; urgency=low
+
+  * CVE-2011-4612 (Closes: #652663)
+
+ -- Moritz Muehlenhoff j...@debian.org  Sun, 21 Oct 2012 18:32:47 +0200
+
 icecast2 (2.3.2-9+deb7u1) wheezy; urgency=low
 
   * Team upload.
diff -Nru icecast2-2.3.2/debian/patches/1004_CVE-2011-4612.patch icecast2-2.3.2/debian/patches/1004_CVE-2011-4612.patch
--- icecast2-2.3.2/debian/patches/1004_CVE-2011-4612.patch	1970-01-01 01:00:00.0 +0100
+++ icecast2-2.3.2/debian/patches/1004_CVE-2011-4612.patch	2012-10-22 20:43:21.0 +0200
@@ -0,0 +1,227 @@
+diff -aur icecast2-2.3.2.orig/src/format_mp3.c icecast2-2.3.2/src/format_mp3.c
+--- icecast2-2.3.2.orig/src/format_mp3.c	2007-10-19 05:02:35.0 +0200
 icecast2-2.3.2/src/format_mp3.c	2012-10-22 20:37:31.0 +0200
+@@ -595,7 +595,7 @@
+ memcpy (meta-data, source_mp3-build_metadata,
+ source_mp3-build_metadata_len);
+ 
+-DEBUG1(shoutcast metadata %.4080s, meta-data+1);
++	DEBUG2(shoutcast metadata %.*s, 4080, meta-data+1);
+ if (strncmp (meta-data+1, StreamTitle=, 12) == 0)
+ {
+ filter_shoutcast_metadata (source, source_mp3-build_metadata,
+diff -aur icecast2-2.3.2.orig/src/fserve.c icecast2-2.3.2/src/fserve.c
+--- icecast2-2.3.2.orig/src/fserve.c	2008-04-29 06:32:10.0 +0200
 icecast2-2.3.2/src/fserve.c	2012-10-22 20:37:31.0 +0200
+@@ -397,7 +397,7 @@
+ FILE *file;
+ 
+ fullpath = util_get_path_from_normalised_uri (path);
+-INFO2 (checking for file %s (%s), path, fullpath);
++INFO2 (checking for file %H (%H), path, fullpath);
+ 
+ if (strcmp (util_get_extension (fullpath), m3u) == 0)
+ m3u_requested = 1;
+@@ -411,7 +411,7 @@
+ /* the m3u can be generated, but send an m3u file if available */
+ if (m3u_requested == 0  xspf_requested == 0)
+ {
+-WARN2 (req for file \%s\ %s, fullpath, strerror (errno));
++WARN2 (req for file \%H\ %s, fullpath, strerror (errno));
+ client_send_404 (httpclient, The file you requested could not be found);
+ free (fullpath);
+ return -1;
+@@ -482,7 +482,7 @@
+ config = config_get_config();
+ if (config-fileserve == 0)
+ {
+-DEBUG1 (on demand file \%s\ refused, fullpath);
++DEBUG1 (on demand file \%H\ refused, fullpath);
+ client_send_404 (httpclient, The file you requested could not be found);
+ config_release_config();
+ free (fullpath);
+@@ -493,7 +493,7 @@
+ if (S_ISREG (file_buf.st_mode) == 0)
+ {
+ client_send_404 (httpclient, The file you requested could not be found);
+-WARN1 (found requested file but there is no handler for it: %s, fullpath);
++WARN1 (found requested file but there is no handler for it: %H, fullpath);
+ free (fullpath);
+ return -1;
+ }
+@@ -501,7 +501,7 @@
+ file = fopen (fullpath, rb);
+ if (file == NULL)
+ {
+-WARN1 (Problem accessing file \%s\, fullpath);
++WARN1 (Problem accessing file \%H\, fullpath);
+ client_send_404 (httpclient, File not readable);
+ free (fullpath);
+ return -1;
+diff -aur icecast2-2.3.2.orig/src/log/log.c icecast2-2.3.2/src/log/log.c
+--- icecast2-2.3.2.orig/src/log/log.c	2008-01-24 04:10:20.0 +0100
 icecast2-2.3.2/src/log/log.c	2012-10-22 20:37:31.0 +0200
+@@ -420,11 +420,132 @@
+ _unlock_logger ();
+ }
+ 
++static void __vsnprintf(char *str, size_t size, const char *format, va_list ap) {
++int in_block = 0;
++int block_size = 0;
++int block_len;
++const char * arg;
++char buf[80];
++
++for (; *format  size; format++)
++{
++if ( !in_block )
++{
++if ( *format == '%' ) {
++in_block = 1;
++block_size = 0;
++block_len  = 0;
++}
++else
++{
++*(str++) = *format;
++size--;
++}
++}
++else
++{
++// TODO: %l*[sdupi] as well as %.4080s and %.*s
++arg = NULL;
++switch (*format)
++{
++case 'l':
++block_size++;
++break;
++case '.':
++// just ignore '.'. If somebody cares: fix it.
++break;
++case '*':
++

Bug#691188: unblock: [pre-approval] ncmpcpp/0.5.10-1.1

2012-10-22 Thread Christoph Egger
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: freeze-exception

Hi all!

  I would really like to get #676627 fixed for wheezy. Although it
might not be strictly RC I think failing to display the content (when
no configuration is present and Playlist should be shown in column
mode) is really confusing and there exists a small patch applied
upstream that works for the package in unstable (I built and tested
it). Is the attached diff OK for a freeze exception? If yes I would
work with the maintainer to get it uploaded or push an NMU.

Regards

Christoph

unblock ncmpcpp/0.5.10-1.1

==
diff -Nru ncmpcpp-0.5.10/debian/changelog ncmpcpp-0.5.10/debian/changelog
--- ncmpcpp-0.5.10/debian/changelog 2012-05-27 22:20:23.0 -0700
+++ ncmpcpp-0.5.10/debian/changelog 2012-10-22 11:59:17.0 -0700
@@ -1,3 +1,12 @@
+ncmpcpp (0.5.10-1.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Fix displaying of playlist in column mode if no config file is present
+using the patch applied upstream (See upstream bug #3490 / commit
+6126def6). (Closes: #676627)
+
+ -- Christoph Egger christ...@debian.org  Mon, 22 Oct 2012 11:48:45 -0700
+
 ncmpcpp (0.5.10-1) unstable; urgency=low
 
   * New upstream release:
diff -Nru ncmpcpp-0.5.10/debian/patches/column-mode.patch 
ncmpcpp-0.5.10/debian/patches/column-mode.patch
--- ncmpcpp-0.5.10/debian/patches/column-mode.patch 1969-12-31 
16:00:00.0 -0800
+++ ncmpcpp-0.5.10/debian/patches/column-mode.patch 2012-10-22 
11:50:50.0 -0700
@@ -0,0 +1,53 @@
+From 6126def6c5b339c7f43d99c47501dde21d4943b3 Mon Sep 17 00:00:00 2001
+From: Andrzej Rybczak electricityispo...@gmail.com
+Date: Mon, 16 Jul 2012 00:20:25 +0200
+Subject: [PATCH 1/1] settings: fix columns generation without configuration 
file (ticket #3490)
+
+---
+ src/ncmpcpp.cpp  |2 ++
+ src/settings.cpp |6 +-
+ src/settings.h   |1 +
+ 3 files changed, 8 insertions(+), 1 deletions(-)
+
+Index: ncmpcpp-0.5.10/src/ncmpcpp.cpp
+===
+--- ncmpcpp-0.5.10.orig/src/ncmpcpp.cpp2012-04-01 09:49:09.0 
-0700
 ncmpcpp-0.5.10/src/ncmpcpp.cpp 2012-10-22 11:50:44.836885069 -0700
+@@ -249,6 +249,8 @@
+   Config.Read();
+   Key.Read();
+   
++  Config.GenerateColumns();
++  
+   if (getenv(MPD_HOST))
+   Mpd.SetHostname(getenv(MPD_HOST));
+   if (getenv(MPD_PORT))
+Index: ncmpcpp-0.5.10/src/settings.cpp
+===
+--- ncmpcpp-0.5.10.orig/src/settings.cpp   2012-04-01 09:49:09.0 
-0700
 ncmpcpp-0.5.10/src/settings.cpp2012-10-22 11:50:44.846885787 -0700
+@@ -1330,7 +1330,11 @@
+   }
+   }
+   f.close();
+-  
++}
++
++void NcmpcppConfig::GenerateColumns()
++{
++  columns.clear();
+   std::string width;
+   while (!(width = GetLineValue(song_list_columns_format, '(', ')', 
1)).empty())
+   {
+Index: ncmpcpp-0.5.10/src/settings.h
+===
+--- ncmpcpp-0.5.10.orig/src/settings.h 2012-04-01 09:49:09.0 -0700
 ncmpcpp-0.5.10/src/settings.h  2012-10-22 11:50:44.846885787 -0700
+@@ -149,6 +149,7 @@
+   
+   void SetDefaults();
+   void Read();
++  void GenerateColumns();
+   
+   std::string ncmpcpp_directory;
+   std::string lyrics_directory;
diff -Nru ncmpcpp-0.5.10/debian/patches/series 
ncmpcpp-0.5.10/debian/patches/series
--- ncmpcpp-0.5.10/debian/patches/series2012-05-27 22:20:23.0 
-0700
+++ ncmpcpp-0.5.10/debian/patches/series2012-10-22 11:50:29.0 
-0700
@@ -2,3 +2,4 @@
 check-return-value-of-system.patch
 fix-typo.patch
 fix-manpage.patch
+column-mode.patch


-- 
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/20121022191013.10606.92410.report...@oteiza.siccegge.de



Bug#690552: pu: package clive/2.2.13-5+squeeze5

2012-10-22 Thread Adam D. Barratt
Control: tags -1 + squeeze confirmed

On Mon, 2012-10-15 at 13:26 +, Ansgar Burchardt wrote:
 I prepared an update for clive. It adapts clive to changes on youtube.com; the
 problem and patch are basically the same as #688972 in libquvi-scripts.

Please go ahead; 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/1350932863.23590.25.ca...@jacala.jungle.funky-badger.org



Processed: Re: Bug#690552: pu: package clive/2.2.13-5+squeeze5

2012-10-22 Thread Debian Bug Tracking System
Processing control commands:

 tags -1 + squeeze confirmed
Bug #690552 [release.debian.org] pu: package clive/2.2.13-5+squeeze5
Added tag(s) squeeze and confirmed.

-- 
690552: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=690552
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.b690552.135093295625624.transcr...@bugs.debian.org



Processed: Re: Bug#690951: pu: package clamav/0.97.6+dfsg-1~squeeze1

2012-10-22 Thread Debian Bug Tracking System
Processing control commands:

 tags -1 + pending
Bug #690951 [release.debian.org] pu: package clamav/0.97.6+dfsg-1~squeeze1
Added tag(s) pending.

-- 
690951: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=690951
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.b690951.13509347316275.transcr...@bugs.debian.org



Bug#690951: pu: package clamav/0.97.6+dfsg-1~squeeze1

2012-10-22 Thread Adam D. Barratt
Control: tags -1 + pending

On Fri, 2012-10-19 at 16:12 -0400, Scott Kitterman wrote:
 On Friday, October 19, 2012 08:53:32 PM Adam D. Barratt wrote:
  On Fri, 2012-10-19 at 09:10 -0400, Scott Kitterman wrote:
   This is a relatively small, non-security release, but it does include an
   increased functionality level, so 0.97.5 will no longer be able to process
   all virus signatures.  An updated clamav is important for all the usual
   reasons having to do with the bad guys not standing still.
  
  Please go ahead; thanks.
  
  Any comments on / issues with the attached SUA draft also welcome.
[...]
 SUA draft is generally good.  I'd change, ... might get warnings. to ... 
 may not be able to make use of all current virus signatures and might get 
 warnings.

For the record, I've released SUA29-1 including that wording; 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/1350934639.23590.29.ca...@jacala.jungle.funky-badger.org



Bug#691194: unblock: swftools/0.9.2+ds1-3

2012-10-22 Thread Christian Welzel
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock package swftools

There is a RC bug in swftools that prevents the included as3compile program
from working properly on i386. This causes libjs-swfupload not do build from
source on i386.
0.9.2+ds1-3 includes a patch to fix this problem.


Debdiff:

gawain@laptop:build-area$ debdiff swftools_0.9.2+ds1-2.dsc 
swftools_0.9.2+ds1-3.dsc
diff -Nru swftools-0.9.2+ds1/debian/changelog 
swftools-0.9.2+ds1/debian/changelog
--- swftools-0.9.2+ds1/debian/changelog 2012-04-21 20:18:34.0 +0200
+++ swftools-0.9.2+ds1/debian/changelog 2012-10-22 11:28:11.0 +0200
@@ -1,3 +1,9 @@
+swftools (0.9.2+ds1-3) unstable; urgency=low
+
+  * Added fix for segfault on i386. (Closes: 690237)
+
+ -- Christian Welzel gaw...@camlann.de  Mon, 22 Oct 2012 12:42:54 +0100
+
 swftools (0.9.2+ds1-2) unstable; urgency=low
   * Removed numbering from patch names and sorted alphabetically.
diff -Nru swftools-0.9.2+ds1/debian/patches/fix-segfault-690237.patch 
swftools-0.9.2+ds1/debian/patches/fix-segfault-690237.patch
--- swftools-0.9.2+ds1/debian/patches/fix-segfault-690237.patch 1970-01-01 
01:00:00.0 +0100
+++ swftools-0.9.2+ds1/debian/patches/fix-segfault-690237.patch 2012-10-22 
11:28:11.0 +0200
@@ -0,0 +1,24 @@
+Description: Fixes segfault on i386 (Closes 690237)
+Author: Matthias Kramm kr...@quiss.org
+Last-Update: 2012-10-18
+
+diff --git a/lib/as3/registry.c b/lib/as3/registry.c
+index 5aaef97..1bec405 100644
+--- a/lib/as3/registry.c
 b/lib/as3/registry.c
+@@ -538,13 +538,13 @@ classinfo_t* registry_getMovieClip() {
+ 
+ // --- builtin dummy types -
+ classinfo_t nullclass = {
+-INFOTYPE_CLASS,0,0,ACCESS_PACKAGE, , null, 0, 0, 0
++INFOTYPE_CLASS,0,0,ACCESS_PACKAGE, , null, 0,0,0,0,0,0,0,0,0,0,0,0,0,
+ };
+ classinfo_t* registry_getnullclass() {
+ return nullclass;
+ }
+ classinfo_t voidclass = {
+-INFOTYPE_CLASS,0,0,ACCESS_PACKAGE, , void, 0, 0, 0
++INFOTYPE_CLASS,0,0,ACCESS_PACKAGE, , void, 0,0,0,0,0,0,0,0,0,0,0,0,0,
+ };
+ classinfo_t* registry_getvoidclass() {
+ return voidclass;
diff -Nru swftools-0.9.2+ds1/debian/patches/series 
swftools-0.9.2+ds1/debian/patches/series
--- swftools-0.9.2+ds1/debian/patches/series2012-04-21 20:18:34.0 
+0200
+++ swftools-0.9.2+ds1/debian/patches/series2012-10-22 11:28:11.0 
+0200
@@ -6,3 +6,4 @@
 makefile.patch
 spelling.patch
 remove-fontconfig.patch
+fix-segfault-690237.patch

unblock swftools/0.9.2+ds1-3

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

Kernel: Linux 3.2.0-3-amd64 (SMP w/4 CPU cores)
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.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/20121022200142.22495.77726.reportbug@localhost



Bug#691196: unblock: gentle/1.9+cvs20100605+dfsg1-1

2012-10-22 Thread Andreas Tille
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock package gentle

as it is stated in the problematic bug report (#685149) the problem was
dealt with.  Unfortunately the propagation from contrib to main which was
approached with this upload (should have been done formerly) was delayed
due to some trouble with DAK.

The usually requested debdiff would involve some removed binaries (as
requestet in the bug report #685149) and so I rather comment on the
single changelog entries:


  * debian/rules:
 - Make sure that binary dlls will be deleted when unpacking
   Closes: #685149

- as requested.

 - Use xz compression for upstream source

- makes perfectly sense due to a way better compression rate once
   the source is repackaged anyway.

 - Drop *.a files from upstream source in get-orig-source target

- Also remove static library of GPLed code which is missing in the
   source as requested by ftpmaster to accept the package

  * Versioned depends from DFSG free clustalw - package can go to main

- clustalw used to be non-free formerly - the versioned Depends
   enables moving the package from contrib to main

  * debian/control:
 - fix broken VCS fields

- long standing fix we had in SVN - there would have been no point
   to ship the package with broken VCS fields just to keep the diff
   small

 - Standards-Version: 3.9.4 (no changes needed)

- This was actually stupid and should not have been done for Wheezy
   migration - should not harm anyway

  * debian/upstream: Add citation information

- Finally a documentation file which lasted for a long time in our
   SVN - there was no point in excluding it from the new package
   (even if I'm fully aware that we should keep the diff small)


Thanks for considering an unblock for gentle and for all your hard work

  Andreas.


unblock gentle/1.9+cvs20100605+dfsg1-1

-- System Information:
Debian Release: 6.0.6
Architecture: i386 (i686)

Kernel: Linux 2.6.36-xenU-4814-i386 (SMP w/1 CPU core)
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.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/20121022200611.21805.1131.report...@mail.an3as.eu



Processed (with 1 errors): unblock: ksh/93u+20120628-1

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

 reopen 687779 =
Bug #687779 {Done: Julien Cristau jcris...@debian.org} [release.debian.org] 
unblock: ksh/93u+20120628-1
Bug reopened
Ignoring request to alter fixed versions of bug #687779 to the same values 
previously set
 ..

End of message, stopping processing here.

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



Re: Processed (with 1 errors): unblock: ksh/93u+20120628-1

2012-10-22 Thread Adam D. Barratt
On Mon, 2012-10-22 at 20:12 +, Debian Bug Tracking System wrote:
 Processing commands for cont...@bugs.debian.org:
 
  reopen 687779 =
 Bug #687779 {Done: Julien Cristau jcris...@debian.org} [release.debian.org] 
 unblock: ksh/93u+20120628-1
 Bug reopened
 Ignoring request to alter fixed versions of bug #687779 to the same values 
 previously set
  ..

A rationale would be handy... :)

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



Bug#687779: Bug#679966: ksh: diff for NMU version 93u+-1.1

2012-10-22 Thread Oliver Kiddle
On 13 Oct, Jonathan Wiltshire wrote:
 
 I've prepared an NMU for ksh (versioned as 93u+-1.1) and
 uploaded it to DELAYED/00. Please feel free to tell me if I
 should delay it longer.

While this addresses the direct issue that bug #679966 concerns, the cd
builtin was broken in various ways in that release and I don't think it
goes far enough. For example, cd /etc;cd .. leaves you in /etc. That's a
grave bug as essential scripts could be broken. If you want to dig into
the upstream changes feel free but it'd be hard to avoid breaking things
or leaving other subtle cd issues unresolved. In my opinion, it would be
better if the debian release goes out with either the old squeeze release
(93s+20080202-1) or 93u+20120628-1 (which was only bug fixes).

I was away last week so sorry for not having got back to you sooner. Even
so, a bit of notice of your intentions would have been nice.

Note that I have put the ksh package up for adoption.

Oliver Kiddle


-- 
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/22235.1350938...@thecus.kiddle.eu



Bug#681717: unblock: openjpeg/1.3+dfsg-4.4

2012-10-22 Thread Michael Gilbert
control: retitle -1 unblock: openjpeg/1.3+dfsg-4.6

On Sun, Oct 14, 2012 at 5:38 AM, Julien Cristau wrote:
 On Sat, Oct 13, 2012 at 17:59:37 -0400, Michael Gilbert wrote:
 Please review the attached patch, and let me know if it is ok to
 upload to unstable.  The security issue is fixed, and the tool
 binaries are now not excluded from the -dbg package.

 Go ahead.

Uploaded.  Please unblock 1.3+dfsg-4.6.

Thanks,
Mike


-- 
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/CANTw=MPjy9CS__aM=e_g8f9_hagntfsxajmhvg3cfnww15s...@mail.gmail.com



Processed: Re: Bug#681717: unblock: openjpeg/1.3+dfsg-4.4

2012-10-22 Thread Debian Bug Tracking System
Processing control commands:

 retitle -1 unblock: openjpeg/1.3+dfsg-4.6
Bug #681717 [release.debian.org] unblock: openjpeg/1.3+dfsg-4.5
Changed Bug title to 'unblock: openjpeg/1.3+dfsg-4.6' from 'unblock: 
openjpeg/1.3+dfsg-4.5'

-- 
681717: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=681717
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.b681717.13509394249080.transcr...@bugs.debian.org



Bug#691204: unblock: trn/3.6-23

2012-10-22 Thread Matthew Vernon
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock package trn

I've just uploaded trn 3.6-23, which fixes the release-critical bug 
#681332. It does this by using debconf (specifically, the shared 
template that e.g. trn4 uses) to prompt about /etc/news/server if 
necessary during the configuration stage, rather than in postinst.

unblock trn/3.6-23

Diff:

diff -ruN trn-3.6-22/debian/changelog trn-3.6-23/debian/changelog
--- trn-3.6-22/debian/changelog 2012-03-13 15:11:28.0 +
+++ trn-3.6-23/debian/changelog 2012-10-22 21:45:25.0 +0100
@@ -1,3 +1,10 @@
+trn (3.6-23) unstable; urgency=high
+
+  * use the shared/news/server debconf template rather than prompting in
+postinst (closes: #688563)
+
+ -- Matthew Vernon matt...@debian.org  Mon, 22 Oct 2012 21:45:25 +0100
+
 trn (3.6-22) unstable; urgency=low
 
   * Mark package as autobuildable, per
diff -ruN trn-3.6-22/debian/config trn-3.6-23/debian/config
--- trn-3.6-22/debian/config2001-04-09 17:11:29.0 +0100
+++ trn-3.6-23/debian/config2012-10-22 21:49:59.0 +0100
@@ -95,6 +95,8 @@
 cp -f NEW debian/tmp/usr/share/doc/trn/trn-changes
 gzip -9vf debian/tmp/usr/share/doc/trn/trn-changes
 cp -f README debian/tmp/usr/share/doc/trn/trn-readme
+   install -m 755 debian/config.debconf debian/tmp/DEBIAN/config
+   cp -f debian/templates debian/tmp/DEBIAN/
 endef
 
 # After being installed in debian/tmp, everything is chowned to root.root,
diff -ruN trn-3.6-22/debian/config.debconf trn-3.6-23/debian/config.debconf
--- trn-3.6-22/debian/config.debconf1970-01-01 01:00:00.0 +0100
+++ trn-3.6-23/debian/config.debconf2012-10-22 21:36:36.0 +0100
@@ -0,0 +1,28 @@
+#! /bin/sh -e
+
+# Debconf script for trn3; gets installed as DEBIAN/config
+
+# Source debconf library.
+. /usr/share/debconf/confmodule
+db_version 2.0
+
+# Useful system information.
+hostname=`hostname --fqdn 2/dev/null || true`
+domainname=`dnsdomainname 2/dev/null || true`
+
+# Default news server.
+if [ ! -s /etc/news/server ]; then
+db_get shared/news/server
+nntpserver=$RET
+if [ -z $nntpserver ]; then
+# Try to guess a good value for the NNTP server.
+if [ $domainname ]; then
+nntpserver=news.$domainname
+else
+nntpserver=$hostname
+fi
+fi
+db_set shared/news/server $nntpserver
+db_input medium shared/news/server || true
+db_go || true
+fi
diff -ruN trn-3.6-22/debian/control trn-3.6-23/debian/control
--- trn-3.6-22/debian/control   2012-03-13 15:11:53.0 +
+++ trn-3.6-23/debian/control   2012-10-22 21:42:01.0 +0100
@@ -8,7 +8,7 @@
 
 Package: trn
 Architecture: any
-Depends: ${shlibs:Depends}, inews|inewsinn
+Depends: ${shlibs:Depends}, inews|inewsinn, debconf (= 0.5)
 Recommends: mail-transport-agent
 Provides: news-reader
 Suggests: ispell
diff -ruN trn-3.6-22/debian/postinst trn-3.6-23/debian/postinst
--- trn-3.6-22/debian/postinst  2001-04-09 16:52:55.0 +0100
+++ trn-3.6-23/debian/postinst  2012-10-22 21:39:41.0 +0100
@@ -1,5 +1,7 @@
 #! /bin/sh
 
+. /usr/share/debconf/confmodule
+
 case $1 in
configure)
;;
@@ -43,13 +45,5 @@
chmod 755 news
 fi
 
-echo -n \
-'Trn is configured to read news via a NNTP connection. If
-you have a local news spool, you should consider installing
-nntpd; enter \localhost\ below in that case.
-What news server (NNTP server) should I use for reading
- - enter its full name: '
-
-read server
-
-echo $server news/server
+db_get shared/news/server
+echo $RET  news/server
diff -ruN trn-3.6-22/debian/templates trn-3.6-23/debian/templates
--- trn-3.6-22/debian/templates 1970-01-01 01:00:00.0 +0100
+++ trn-3.6-23/debian/templates 2012-10-22 21:37:01.0 +0100
@@ -0,0 +1,7 @@
+Template: shared/news/server
+Type: string
+Description: What news server should be used for reading and posting news?
+ trn is configured to read news via an NNTP connection, and needs to know
+ the fully-qualified host name of the server (such as news.example.com). If
+ you have a local news spool, you should consider installing some NNTP
+ server like inn2; in that case, enter localhost as your news server.


-- System Information:
Debian Release: 6.0.6
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'stable')
Architecture: i386 (i686)

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


-- 
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/20121022210433.16754.5919.report...@aragorn.weathertop.principate.org.uk



Bug#691005: unblock: kdegames/4:4.8.4-2

2012-10-22 Thread Lisandro Damián Nicanor Pérez Meyer
On Sat 20 Oct 2012 06:53:10 Niels Thykier escribió:
[snip] 
 Indeed, thanks for catching that.
 
 Lisandro, can you please upload a new version fixing that and ping me
 via this bug when it has been in unstable for a couple of days?

Fixed, uploaded and built on all archs :-)

Thank you all for pointing me this out!

-- 
Lisandro Damián Nicanor Pérez Meyer
http://perezmeyer.com.ar/
http://perezmeyer.blogspot.com/


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


Re: Bug#687779: Bug#679966: ksh: diff for NMU version 93u+-1.1

2012-10-22 Thread Jonathan Wiltshire
On Mon, Oct 22, 2012 at 10:48:12PM +0200, Oliver Kiddle wrote:
 On 13 Oct, Jonathan Wiltshire wrote:
  
  I've prepared an NMU for ksh (versioned as 93u+-1.1) and
  uploaded it to DELAYED/00. Please feel free to tell me if I
  should delay it longer.
 
 While this addresses the direct issue that bug #679966 concerns, the cd
 builtin was broken in various ways in that release and I don't think it
 goes far enough. For example, cd /etc;cd .. leaves you in /etc. That's a
 grave bug as essential scripts could be broken. If you want to dig into
 the upstream changes feel free but it'd be hard to avoid breaking things
 or leaving other subtle cd issues unresolved. 

Oh dear, this is rather unfortunate. You're right that brokenness like this
will cause considerable problems in Wheezy if it can't be resolved; our
patch was deliberately minimal to fix the reported problem and still be
suitable for a freeze exception.

 In my opinion, it would be
 better if the debian release goes out with either the old squeeze release
 (93s+20080202-1) or 93u+20120628-1 (which was only bug fixes).

Well, I think the release team have already expressed that they are less
than happy with having a new upstream at this stage. I think the cleanest
thing you could do is revert back to the Squeeze version with an epoch;
another option is to remove ksh from Wheezy and provide the new upstream
through backports later, but this is icky.

As far as this patch is concerned, it is easily reverted by you or I. I
will happily do so if you want me to.

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

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

directhex i have six years of solaris sysadmin experience, from
8-10. i am well qualified to say it is made from bonghits
layered on top of bonghits


signature.asc
Description: Digital signature


Bug#691098: unblock: mumble/1.2.3-349-g315b5f5-2.1 [pre-approval request]

2012-10-22 Thread Chris Knadle
On Monday, October 22, 2012 07:39:24, Julien Cristau wrote:
 On Mon, Oct 22, 2012 at 13:35:09 +0200, gregor herrmann wrote:
  On Mon, 22 Oct 2012 12:30:34 +0200, Julien Cristau wrote:
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

I'd like to request a pre-approval for a future unblock of a
not-yet-uploaded NMU of mumble.
   
   IMO the package needs to be in sid before we consider it.
  
  Thanks for your quick reply!
  
  I was under the impression that the release team prefers to assess
  the situation before an upload in more complicated situations, but
  I'm happy to upload the NMU to a DELAYED queue later today.
 
 I guess I don't consider this a complicated situation.  Either the new
 version is ok, or we release without mumble.  Neither the current
 version in sid nor the current version in wheezy are suitable anyway,
 AIUI.

That's correct.  The 348-1 currently in Wheezy will not build due to 
library changes in Wheezy, and the 349-2 in Sid cannot communicate with the 
existing Mumble userbase.

Thanks much.

  -- Chris

--
Chris Knadle
chris.kna...@coredump.us


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


Bug#691218: unblock: uim/1:1.8.1-4

2012-10-22 Thread HIGUCHI Daisuke (VDR dai)
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Hi,

Please unblock package uim/1:1.8.1-4.
It fixes RC bug#688233 and removes accidental setting Multi-Arch: tag.

uim/1:1.8.1-2 in testing modifies conffiles by the maintainer scripts,
it violates Debian Policy 10.7.3.  So, uim/1:1.8.1-4 in unstable unsets
conffiles to change path from /etc/uim to /var/lib/uim.

Note: uim/1:1.8.1-3 did not fix this problem perfectly.

change summary:

- - use /var/lib/uim for uim config files directory instead of /etc/uim
  (d/uim-MODULES.postinst, d/uim-MODULES.prerm).
- - do not generate and contain uim config files in /etc/uim (d/rules).
- - generate uim config files in /var/lib/uim (d/libuim-data.postinst).
- - use dpkg-maintscript-helper mv_conffile to move uim config files
  from /etc/uim to /var/lib/uim (d/libuim-data.maintscript).
  add Pre-Depends: dpkg (= 1.15.7.2) to use dpkg-maintscript-helper
  (d/control).
- - remove all /etc/uim and /var/lib/uim at purging (d/libuim-data.postrm).
- - add Breaks: uim-MODULES for using /etc/uim yet (d/control).

additional change:

- - unset Multi-Arch: same of uim-dbg, it is set accidentally (d/control).

debdiff attached between 1:1.8.1-2 in testing and 1:1.8.1-4 in unstable.

unblock uim/1:1.8.1-4

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

Kernel: Linux 3.5-trunk-amd64 (SMP w/8 CPU cores)
Locale: LANG=ja_JP.UTF-8, LC_CTYPE=ja_JP.UTF-8 (charmap=UTF-8) (ignored: LC_ALL 
set to ja_JP.UTF-8)
Shell: /bin/sh linked to /bin/bash

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

iQIcBAEBCAAGBQJQhhKCAAoJEHg5YZ3UOWaOnkIQAMj2yiQHSe2KDMG6VKW0S5DG
cCOzTcGPnAdx8DBYJCeWl+GGwVjWuUE54AV4103PBhpZiajhm/W6IGgBYmlpaltO
l+k5n361fNfoS7sB4KzOZhttC6Y7hqhphGW1r3TBAx0rNfgtEdT/svgfPvgioiFl
u0lzz9iSFnoI1fGRgoFF4GPH4MtNh2iDKlhnDv4vUwsn3RYcEURXV6Jgg3cViW5f
qNlarEsNOL9ud+bgpkYkQKE3vjQt3IaZi+T3qD6t3vWOqNI4qz6t2eraEJRPuq0I
gPAbuYEnkJvUrWrTeDmL5p3TlIUcV6Ij9vQ8FVcKnbQ7npXhQL7ye+Pb/BGyD9wQ
pvZweKnubD35MrioArDJVaseXMBzn2ONqYeFqm1zya3XqEsihuZN0sJY5bIgYiZO
qxemSlPGIJCNdQMN3IJ/iVqW7umeIxu/f0UOU+azlqh/er7t/zQGWdNjM+U2rJbM
D92aNhHhB6ZW7oJYmyUoAcFc0aSJKBrJi8/Y58cGZhoZotlunmwosi1ndJybicOy
xqn5WfG6iHpdFp5cktIOF6Ba5aigtI+DSFHD4IGKCL5k8bsEj70YEJ1nzHPGiqjH
2nulgH2iXDZWPOP+pnyCORmmEIMYH/wdYPAZ/GUdv3BxhnTyxToZdtDVDomjmgmE
m+nNtaw2hw39XhmFEYqC
=L0ap
-END PGP SIGNATURE-
diff -Nru uim-1.8.1/debian/changelog uim-1.8.1/debian/changelog
--- uim-1.8.1/debian/changelog	2012-06-03 00:22:40.0 +0900
+++ uim-1.8.1/debian/changelog	2012-10-18 16:06:12.0 +0900
@@ -1,3 +1,37 @@
+uim (1:1.8.1-4) unstable; urgency=medium
+
+  * Urgency set medium to fix RC bug.
+  * touch /var/lib/uim/installed-modules.scm and /var/lib/uim/loader.scm
+before mv_conffile works in debian/libuim-data.postinst.
+because mv_conffile works only when destination file aleady exists.
+it appears upgrading from squeeze. (Closes: #688233) again.
+reported by Andreas Beckmann deb...@abeckmann.de.  Thank you.
+  * debian/control: libuim-data
+- replace Breaks: uim-chewing (= 0.1.0-2) by uim-chewing ( 0.1.0-3~).
+
+ -- HIGUCHI Daisuke (VDR dai) d...@debian.org  Thu, 18 Oct 2012 16:06:04 +0900
+
+uim (1:1.8.1-3) unstable; urgency=medium
+
+  * Urgency set medium to fix RC bug.
+  * move installed-modules.scm and loader.scm from /etc/uim to /var/lib/uim
+(Closes: #688233).
+- debian/*.{postinst,prerm}: change path from /etc/uim to /var/lib/uim.
+- debian/rules: do not generate installed-modules.scm and loader.scm.
+- debian/libuim-data.maintscript: add mv_conffile installed-modules.scm
+  and loader.scm from /etc/uim to /var/lib/uim.
+  Suggested by Andreas Beckmann deb...@abeckmann.de.  Thank you.
+- debian/libuim-data.postinst: generate installed-modules.scm and
+  loader.scm if they do not exists in /var/lib/uim.
+- debian/libuim-data.postrm: remove /etc/uim and /var/lib/uim contents.
+  * debian/control: libuim-data
+- add Pre-Depends: dpkg (= 1.15.7.2) to use dpkg-maintsctipt-helper.
+- add Breaks: uim-MODULE ( 1:1.8.1-3~).
+- add Breaks: uim-mozc ( 1.5.1090.102-4~), uim-chewing (= 0.1.0-2)
+  * unset Multi-Arch: same of uim-dbg, because of plasma-widget-uim (kde4).
+
+ -- HIGUCHI Daisuke (VDR dai) d...@debian.org  Sun, 14 Oct 2012 18:07:35 +0900
+
 uim (1:1.8.1-2) unstable; urgency=low
 
   * enable Multiarch.
diff -Nru uim-1.8.1/debian/control uim-1.8.1/debian/control
--- uim-1.8.1/debian/control	2012-06-03 00:07:38.0 +0900
+++ uim-1.8.1/debian/control	2012-10-18 03:14:18.0 +0900
@@ -115,9 +115,21 @@
 Package: libuim-data
 Section: utils
 Architecture: any
+Pre-Depends: dpkg (= 1.15.7.2)
 Depends: ${misc:Depends}, ${shlibs:Depends}, uim-common (= ${source:Version})
 Replaces: libuim6, libuim7 ( 

Bug#691220: unblock: irqbalance/1.0.3-3

2012-10-22 Thread Aníbal Monsalve Salazar
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

On Fri, Sep 07, 2012 at 05:57:33PM -0400, Daniel Jared Dominguez wrote:
Subject: Re: Bug#686986: irqbalance: missing dependency libnuma-dev in 
Build-Depends

Package: irqbalance
Version: 1.0.3-1
Severity: important

irqbalance 1.0.3-1 as packaged for unstable does not include a build
dependency on libnuma-dev, which is required to allow irqbalance to
detect that a system is NUMA capable. Checking on a Dell PowerEdge R820
before and after including this build dependency, I can confirm that
adding this build dependency allows irqbalance to correctly detect that
my system is NUMA capable. irqbalance as of version 1.0 as packaged for
Fedora also includes this library dependency.

Please unblock package irqbalance

unblock irqbalance/1.0.3-3

diff -Nru irqbalance-1.0.3/debian/changelog irqbalance-1.0.3/debian/changelog
--- irqbalance-1.0.3/debian/changelog   2012-06-16 13:19:39.0 +1000
+++ irqbalance-1.0.3/debian/changelog   2012-10-23 12:57:07.0 +1100
@@ -1,3 +1,17 @@
+irqbalance (1.0.3-3) unstable; urgency=low
+
+  * Fix dependency libnuma-dev [i386 amd64 ia64 mips mipsel powerpc]
+in Build-Depends
+
+ -- Anibal Monsalve Salazar ani...@debian.org  Tue, 23 Oct 2012 12:51:26 
+1100
+
+irqbalance (1.0.3-2) unstable; urgency=low
+
+  * Fix missing dependency libnuma-dev in Build-Depends
+Closes: #686986
+
+ -- Anibal Monsalve Salazar ani...@debian.org  Tue, 23 Oct 2012 12:11:51 
+1100
+
 irqbalance (1.0.3-1) unstable; urgency=low
 
   * New upstream release 1.0.3
diff -Nru irqbalance-1.0.3/debian/control irqbalance-1.0.3/debian/control
--- irqbalance-1.0.3/debian/control 2012-06-16 11:55:51.0 +1000
+++ irqbalance-1.0.3/debian/control 2012-10-23 12:51:06.0 +1100
@@ -2,7 +2,7 @@
 Section: utils
 Priority: extra
 Maintainer: Anibal Monsalve Salazar ani...@debian.org
-Build-Depends: dpkg-dev (= 1.16.1~), debhelper (= 9), pkg-config, 
libglib2.0-dev, xutils-dev, hardening-wrapper, libcap-ng-dev
+Build-Depends: dpkg-dev (= 1.16.1~), debhelper (= 9), pkg-config, 
libglib2.0-dev, xutils-dev, hardening-wrapper, libcap-ng-dev, libnuma-dev [i386 
amd64 ia64 mips mipsel powerpc]
 Standards-Version: 3.9.3
 Homepage: http://code.google.com/p/irqbalance/
 #Vcs-Svn: svn://irqbalance.googlecode.com/svn/trunk


-- 
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/20121023053638.ga11...@master.debian.org