Bug#680721: wordpress: Several security vulnerabilities fixed in 3.4.1 CVE-2012-3383, CVE-2012-3384, CVE-2012-3385

2012-07-09 Thread Raphael Hertzog
Hi,

On Sun, 08 Jul 2012, Henri Salo wrote:
 On Sun, Jul 08, 2012 at 09:49:57PM +0200, Raphael Hertzog wrote:
  Are you able to extract and backport the relevant patches?
 
 I haven't done this before. What does this exactly mean? I am not a Debian 
 developer yet.

What kind of help had you in mind?

In any case, the above text means:
1/ finding out the upstream commit that fixes the security issue
2/ trying to apply it to the version that we have in Debian stable
3/ adapting it if required (because the code evolved between
3.3.2 and 3.4.1 and the patch might not apply any more)

There's no need to be a Debian developer to do this. Submitting patches by
mail here is perfectly OK.

Going further, if you help on a regular basis, I can get you added to the
Alioth project so that you can commit your work directly.

On Mon, 09 Jul 2012, Hor Jiun Shyong wrote:
 I would like to offer my help for the wordpress package too.   Thanks.

Great!

Do you need direction to get started or do you already know how you can
help?

Cheers,
-- 
Raphaël Hertzog ◈ Debian Developer

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



--
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#680910: libburn: CD SAO sessions with data tracks started by an audio pause

2012-07-09 Thread George Danchev
Source: libburn
Version: 1.2.2-1
Severity: normal
Tags: upstream patch

CD SAO sessions with data tracks started by an audio pause.
This affects an old Sony CD burner which refuses to burn SAO.

Upstream fix: http://libburnia-project.org/changeset/4744

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

Kernel: Linux 3.2.0-3-amd64 (SMP w/2 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash
--- libburn-1.2.2.orig/doc/cookbook.txt
+++ libburn-1.2.2/doc/cookbook.txt
@@ -296,8 +296,9 @@ A pre-gap of 2 seconds is mandatory only
 post-gap may be needed with further tracks if they have neighbors with
 different DATA FORM values. (Such mixing is not yet supported by libburn.)
 
-DATA FORM is 00h for audio payload, 01h for audio pause, 10h for data,
-41h for CD-TEXT in Lead-in. 
+DATA FORM is 00h for audio payload, 01h for audio pause (Lead-in and Lead-out),
+10h for data, 14h for data pause (Lead-in and Lead-out).
+This shall be ored with 40h for CD-TEXT in Lead-in. 
 (mmc5r03c.pdf 6.33.3.11 CD-DA Data Form, 6.33.3.12 CD-ROM mode 1 Form)
 
 SCMS value 80h in conjunction with bit5 of CTL is an indicator for exhausted
@@ -318,7 +319,8 @@ The next entry (eventually being the fir
 Its content is 
 (CTL|ADR ,00h,00h, DATA FORM ,00h,00h,00h,00h)
 With the CTL|ADR for the first track: 41h for data, 01h for audio.
-DATA FORM is 41h if CD-TEXT shall be stored in Lean-in. Else it is 01h.
+DATA FORM is pause (audio=01h, data=14h). Ored with 40h if CD-TEXT shall
+be stored in Lean-in.
 
 The LBA for the first write is negative: -150. This corresponds to MSF address
 00h:00h:00h. All addresses are to be given in MSF format.
@@ -354,8 +356,9 @@ A track must at least contain 300 payloa
 (mmc5r03c.pdf 6.33.3.6)
 
 At the end of the session there is a lead-out entry
-(CTL|ADR,AAh,01h,01h,00h,MIN,SEC,FRAME)
+(CTL|ADR,AAh,01h,DATA FORM,00h,MIN,SEC,FRAME)
 marking the end of the last track. (With libburn CTL is as of the last track.)
+DATA FORM is 01h for audio, 14h for data.
 
 
 ---
--- libburn-1.2.2.orig/libburn/write.c
+++ libburn-1.2.2/libburn/write.c
@@ -508,11 +508,13 @@ struct cue_sheet *burn_create_toc_entrie
 			Track mode has unusable value, 0, 0);
 		goto failed;
 	}
+	if (tar[0]-mode  BURN_AUDIO)
+		leadin_form = 0x01;
+	else
+		leadin_form = 0x14;
 	if (o-num_text_packs  0) {
-		leadin_form = 0x41;
+		leadin_form |= 0x40;
 	} else {
-		leadin_form = 0x01;
-
 		/* Check for CD-TEXT in session. Not the final creation,
 		   because the cue sheet content might be needed for CD-TEXT
 		   pack type 0x88 TOC.
@@ -522,7 +524,7 @@ struct cue_sheet *burn_create_toc_entrie
 			if (ret  0)
 goto failed;
 			else if (ret  0)
-leadin_form = 0x41;
+leadin_form |= 0x40;
 		}
 	}
 
@@ -803,7 +805,9 @@ XXX this is untested :)
 	e[2].pmin = m;
 	e[2].psec = s;
 	e[2].pframe = f;
-	ret = add_cue(sheet, ctladr | 1, 0xAA, 1, 1, 0, runtime);
+
+	ret = add_cue(sheet, ctladr | 1, 0xAA, 1, leadin_form  0x3f,
+  0, runtime);
 	if (ret = 0)
 		goto failed;
 	return sheet;
--- libburn-1.2.2.orig/libburn/mmc.c
+++ libburn-1.2.2/libburn/mmc.c
@@ -908,6 +908,12 @@ int mmc_write(struct burn_drive *d, int
 	extern int burn_sg_log_scsi;
 #endif
 
+/*
+fprintf(stderr, libburn_DEBUG: buffer sectors= %d  bytes= %d\n,
+buf-sectors, buf-bytes);
+*/
+
+
 	c = (d-casual_command);
 
 #ifdef Libburn_log_in_and_out_streaM


Bug#672119: CVE-2011-1658

2012-07-09 Thread Aurelien Jarno
On Sun, Jul 08, 2012 at 05:38:41PM -, Jonathan Wiltshire wrote:
 Dear maintainer,
 
 Recently you fixed one or more security problems and as a result you closed
 this bug. These problems were not serious enough for a Debian Security
 Advisory, so they are now on my radar for fixing in the following suites
 through point releases:
 
 squeeze (6.0.6) - use target stable
 

The bug is not present in squeeze (it has been fixed as part of the
upstream fixes in version 2.11.3-1), so there is no need to do an
upload.

Regards,
Aurelien

-- 
Aurelien Jarno  GPG: 1024D/F1BCDB73
aurel...@aurel32.net http://www.aurel32.net



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#605090: (no subject)

2012-07-09 Thread Tomasz Wartalski
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

I hope there will be some progress on this issue. There are advantages
in providing a grsec-patched kernel inside debian.

E.g: with a grsec patched vanilla kernel my radeon GPU tends to lock up
every couple of days and my computer doesn’t reliably recover from
standby. This ain’t happen with a stock debian kernel or a kernel build
out of the debian sources.

I’ve tried Yves-Alexis´s grsec-patched debian kernel and sources,
mentioned in this bugreport and they work like a charm. No more GPU
lock-ups and the standby issues are gone. I’m pretty sure there will be
other machine configurations out there, where folks just cannot run the
grsec-patched vanilla kernel using debian.

Please continue your work on this Yves-Alexis.

Cheers,

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

iEYEARECAAYFAk/6fIMACgkQiypP+gYHZb9sOwCcDSfigVr5vnl/XhFDOoYaS+Be
EEQAoKKt89FtfJbXHzxFBKWCOiC+/DaH
=V+Zg
-END PGP SIGNATURE-



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#680911: libburn: CD tracks are perceived 2 sectors too short

2012-07-09 Thread George Danchev
Source: libburn
Version: 1.2.2-1
Severity: normal
Tags: upstream patch

Info gathered with long conversations with Thomas:

CD tracks are perceived 2 sectors too short. Nice with TAO, bad with SAO.
The returned values of two different MMC track information commands differ
by 2. On Samsung and on LG drives. Must be a feature, but would be correct
only for TAO tracks.

Also, wodim -sao and libburn SAO produce CDs with the same effect. So it
seems not to be a critical bug at burn time. It will confuse brasero users
who manage to talk it into SAO and then want to inspect the CD by xorriso.

xorriso : WARNING : Session 1 bears ISO image size 13456s larger than track 
size 13454s

xorriso believes that the MMC table-of-content says 13454 blocks.
But I can read 13456 without error. By xorriso, by dd, by mount and diff -r.
The CD is burnt fine, but xorriso does not know it.

This shows up if one burns to blank CD by:

wodim -nopad -sao

or by:

xorriso -padding 0 

or if one forces Brasero into SAO
or (probably) if one burns with Brasero and intermediate disc storage.

Upstream fix: http://libburnia-project.org/changeset/4778

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

Kernel: Linux 3.2.0-3-amd64 (SMP w/2 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash
--- libburn-1.2.2.orig/libburn/structure.c
+++ libburn-1.2.2/libburn/structure.c
@@ -794,7 +794,9 @@ int burn_disc_cd_toc_extensions(struct b
 if (ret  0) {
 	ret = mmc_four_char_to_int(
 			buf-data + 24);
-	if (ret  prev_entry-track_blocks)
+	if (ret  prev_entry-track_blocks 
+	((!drive-current_is_cd_profile) ||
+	   ret  prev_entry-track_blocks - 2))
 		prev_entry-track_blocks = ret;
 }
 prev_entry-extensions_valid |= 1;


Bug#680104: [amarok] bug persitent after update

2012-07-09 Thread Lorenz Wenner
Package: amarok
Version: 2.6~beta1+75.g47e75df-1

--- Please enter the report below this line. ---

Hello folks,

in short: new version, old bug. just wanted to report.

Regards
Lorenz

--- System information. ---
Architecture: i386
Kernel:   Linux 3.2.0-3-486

Debian Release: wheezy/sid
  800 testing www.debian-multimedia.org 
  800 testing security.debian.org 
  800 testing ftp.de.debian.org 
  750 unstableftp.de.debian.org 
  250 experimentalftp.de.debian.org 

--- Package information. ---
Depends(Version) | Installed
-+-

amarok-common(= 2.6~beta1+75.g47e75df-1) | 2.6~beta1+75.g47e75df-1
amarok-utils (= 2.6~beta1+75.g47e75df-1) | 2.6~beta1+75.g47e75df-1
kde-runtime  | 4:4.8.4-1
libaio1  (= 0.3.93) | 0.3.109-3
libavcodec53 (= 6:0.8.3-4)  | 7:0.10.3-dmo1
 OR libavcodec-extra-53   (= 6:0.8.3-4) | 
libavformat53 (= 6:0.8.3-4) | 7:0.10.3-dmo1
libc6   (= 2.8) | 2.13-33
libcurl3-gnutls  (= 7.16.2) | 7.26.0-1
libgcc1 (= 1:4.1.1) | 1:4.7.1-2
libgcrypt11   (= 1.4.5) | 1.5.0-3
libgdk-pixbuf2.0-0   (= 2.22.0) | 2.26.1-1
libgl1-mesa-glx  | 8.0.3-1
 OR libgl1   | 
libglib2.0-0 (= 2.14.0) | 2.32.3-1
libgpod4-nogtk  (= 0.7.92)  | 0.8.2-6
 OR libgpod4 (= 0.7.92) | 
libkcmutils4  (= 4:4.7) | 4:4.8.4-3
libkdecore5   (= 4:4.7) | 4:4.8.4-3
libkdeui5 (= 4:4.7) | 4:4.8.4-3
libkdewebkit5 (= 4:4.7) | 4:4.8.4-3
libkdnssd4(= 4:4.7) | 4:4.8.4-3
libkfile4 (= 4:4.7) | 4:4.8.4-3
libkio5   (= 4:4.7) | 4:4.8.4-3
libknewstuff3-4   (= 4:4.7) | 4:4.8.4-3
liblastfm0(= 0.4.0~git20090710) | 0.4.0~git20090710-1
libloudmouth1-0   (= 1.1.4) | 1.4.3-8
libmtp9   (= 1.1.0) | 1.1.3-35-g0ece104-1
libmysqlclient18  (= 5.5.24+dfsg-1) | 5.5.24+dfsg-4
libofa0   (= 0.9.3) | 0.9.3-5
libphonon4  (= 4:4.6.0really4.3.80) | 4:4.6.0.0-2
libplasma3(= 4:4.7) | 4:4.8.4-3
libqjson0 (= 0.7.1) | 0.7.1-6
libqt4-dbus (= 4:4.6.1) | 4:4.8.2-1
libqt4-network  (= 4:4.5.3) | 4:4.8.2-1
libqt4-opengl   (= 4:4.5.3) | 4:4.8.2-1
libqt4-script   (= 4:4.5.3) | 4:4.8.2-1
libqt4-sql  (= 4:4.5.3) | 4:4.8.2-1
libqt4-svg  (= 4:4.5.3) | 4:4.8.2-1
libqt4-xml  (= 4:4.5.3) | 4:4.8.2-1
libqtcore4  (= 4:4.8.0) | 4:4.8.2-1
libqtgui4   (= 4:4.8.0) | 4:4.8.2-1
libqtwebkit4   (= 2.1.0~2011week13) | 2.2.1-4+b1
libsolid4 (= 4:4.7) | 4:4.8.4-3
libstdc++6  (= 4.6) | 4.7.1-2
libtag-extras1(= 1.0.0) | 1.0.1-3
libtag1c2a  (= 1.7) | 1.7.2-1
libthreadweaver4  (= 4:4.7) | 4:4.8.4-3
libx11-6 | 2:1.5.0-1
libxml2   (= 2.7.4) | 2.8.0+dfsg1-4
phonon   | 4:4.6.0.0-2
zlib1g  (= 1:1.2.0) | 1:1.2.7.dfsg-13
libqtscript4-core| 0.2.0-1
libqtscript4-gui | 0.2.0-1
libqtscript4-network | 0.2.0-1
libqtscript4-xml | 0.2.0-1
libqtscript4-sql | 0.2.0-1
libqtscript4-uitools | 0.2.0-1
amarok-common(= 2.6~beta1+75.g47e75df-1) | 2.6~beta1+75.g47e75df-1
amarok-utils (= 2.6~beta1+75.g47e75df-1) | 2.6~beta1+75.g47e75df-1
kde-runtime  | 4:4.8.4-1
libaio1  (= 0.3.93) | 0.3.109-3
libavcodec53 (= 6:0.8.3-4)  | 7:0.10.3-dmo1
 OR libavcodec-extra-53   (= 6:0.8.3-4) | 
libavformat53 (= 6:0.8.3-4) | 7:0.10.3-dmo1
libc6   (= 2.8) | 2.13-33
libcurl3-gnutls  

Bug#680594: [plasma-desktop] bug persistent after update of some dependencies

2012-07-09 Thread Lorenz Wenner
Package: plasma-desktop
Version: 4:4.8.4-3

--- Please enter the report below this line. ---

Hello folks,

there have been updates of some dependencies (see table below) of the package 
but installing them did not fix the problem.

Package   before after
Depends
libkcmutils4  4:4.8.3-2  4:4.8.4-3
libkdecore5   4:4.8.3-2  4:4.8.4-3
libkdeui5 4:4.8.3-2  4:4.8.4-3
libkephal4abi14:4.8.4-2  4:4.8.4-3
libkfile4 4:4.8.3-2  4:4.8.4-3
libkidletime4 4:4.8.3-2  4:4.8.4-3
libkio5   4:4.8.3-2  4:4.8.4-3
libknewstuff3-4   4:4.8.3-2  4:4.8.4-3
libktexteditor4   4:4.8.3-2  4:4.8.4-3
libkworkspace4abi14:4.8.4-2  4:4.8.4-3
libplasma34:4.8.3-2  4:4.8.4-3
libplasmagenericshell44:4.8.4-2  4:4.8.4-3
libsolid4 4:4.8.3-2  4:4.8.4-3
libtaskmanager4abi3   4:4.8.4-2  4:4.8.4-3
plasma-widgets-workspace  4:4.8.4-2  4:4.8.4-3

Recommends
kde-workspace 4:4.8.4-2  4:4.8.4-3

Regards
Lorenz

--- System information. ---
Architecture: i386
Kernel:   Linux 3.2.0-3-486

Debian Release: wheezy/sid
  800 testing www.debian-multimedia.org 
  800 testing security.debian.org 
  800 testing ftp.de.debian.org 
  750 unstableftp.de.debian.org 
  250 experimentalftp.de.debian.org 

--- Package information. ---
Depends   (Version) | Installed
===-+-===
kde-runtime | 4:4.8.4-1
libc6  (= 2.4) | 2.13-33
libkactivities6(= 4:4.8.1) | 4:4.8.4-1
libkcmutils4 (= 4:4.8) | 4:4.8.4-3
libkdecore5  (= 4:4.8) | 4:4.8.4-3
libkdeui5(= 4:4.8) | 4:4.8.4-3
libkephal4abi1(= 4:4.8.4-3) | 4:4.8.4-3
libkfile4(= 4:4.8) | 4:4.8.4-3
libkidletime4(= 4:4.8) | 4:4.8.4-3
libkio5  (= 4:4.8) | 4:4.8.4-3
libknewstuff3-4  (= 4:4.8) | 4:4.8.4-3
libktexteditor4  (= 4:4.8) | 4:4.8.4-3
libkworkspace4abi1(= 4:4.8.4-3) | 4:4.8.4-3
libplasma3   (= 4:4.8) | 4:4.8.4-3
libplasmagenericshell4(= 4:4.8.4-3) | 4:4.8.4-3
libqt4-dbus(= 4:4.6.1) | 4:4.8.2-1
libqt4-xml (= 4:4.5.3) | 4:4.8.2-1
libqtcore4   (= 4:4.7.0~beta1) | 4:4.8.2-1
libqtgui4  (= 4:4.8.0) | 4:4.8.2-1
libsolid4(= 4:4.8) | 4:4.8.4-3
libstdc++6   (= 4.1.1) | 4.7.1-2
libtaskmanager4abi3   (= 4:4.8.4-3) | 4:4.8.4-3
libx11-6| 2:1.5.0-1
libxext6| 2:1.3.1-2
plasma-widgets-workspace  (= 4:4.8.4-3) | 4:4.8.4-3
kde-wallpapers-default  | 4:4.8.4-1


Recommends (Version) | Installed
-+-===
kde-workspace| 4:4.8.4-3


Package's Suggests field is empty.


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


Bug#680912: tenace cannot open back the file it saved

2012-07-09 Thread Michael Tsang
Package: tenace
Version: 0.12-1
Severity: grave
Justification: renders package unusable

I created two boards, set the contract and vulnerability, saved it.

After I tried to open it, it saids
Using 4 GB RAM, 2 cores
/home/michael/bridge/hand records/SP Chan Cup 2012/SP Chan Cup 2012 #1.lin:
Wrong medium type
Hint: tenace can only read files in .lin format


The actual file is:

qx|o1|pn|South,West,North,East|st||md|3S25KH4KAD25QAC6TK,S47QH357JD67TC29Q,S38JAH6TD349JKC5A,|rh||ah|Board
1|sv|o|pg||pg||
qx|o2|pn|South,West,North,East|st||md|4S58TAH369QDTC568A,S46QKH7JD48JKC7QK,S29H8D35679QC29TJ,|rh||ah|Board
2|sv|n|pg||pg||




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

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

Versions of packages tenace depends on:
ii  gnome-cards-data1:3.4.1-1
ii  libatk1.0-0 2.4.0-2
ii  libc6   2.13-33
ii  libcairo2   1.12.2-1
ii  libfontconfig1  2.9.0-6
ii  libfreetype62.4.9-1
ii  libgdk-pixbuf2.0-0  2.26.1-1
ii  libglib2.0-02.32.3-1
ii  libgomp14.7.1-2
ii  libgtk2.0-0 2.24.10-1
ii  libpango1.0-0   1.30.0-1
ii  librsvg2-common 2.36.1-1

tenace recommends no packages.

Versions of packages tenace suggests:
pn  gnome-games-extra-data  none

-- no debconf information



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#678356: pts-static-n...@qa.debian.org seems to be broken

2012-07-09 Thread Raphael Hertzog
Hi,

(Ccing debian-admin because we need their troubleshooting help)

On Thu, 21 Jun 2012, Ben Hutchings wrote:
 In response to comments on #636010, I'm trying to add static news for
 linux-2.6, linux-kbuild-2.6 and linux-latest-2.6 about their being
 renamed.

It looks like the mail never arrives to its destination. 

They are not in the backup mailbox at least:
hertzog@quantz:/srv/packages.qa.debian.org/mail$ ls -al 
archive/incoming-news-static*
-rw-r- 1 qa qa0  9 juil. 06:57 archive/incoming-news-static
-rw-r- 1 qa qa17448 18 avril  2010 archive/incoming-news-static.0
-rw-r- 1 qa qa   327737 18 avril  2010 archive/incoming-news-static.1.gz
-rw-r- 1 qa qa  1347901 10 avril  2010 archive/incoming-news-static.2.gz
-rw-r- 1 qa qa   455629  3 avril  2010 archive/incoming-news-static.3.gz
-rw-r- 1 qa qa   200659 16 août   2006 archive/incoming-news-static.4.gz
-rw-r- 1 qa qa 34823420 15 août   2006 archive/incoming-news-static.5.gz

(the recent timestamp on the first file is only because I tried creating it to 
see if it helps)

My own tries have been delivered however:
Jul  9 08:52:27 mail postfix/smtp[20133]: 7CFC022005D: 
to=pts-static-n...@qa.debian.org, 
relay=quantz.debian.org[2607:f8f0:610:4000:216:36ff:fe40:3860]:25, delay=12, 
delays=0.09/0/11/1.3, dsn=2.0.0, status=sent (250 OK id=1So7pa-00042B-8Z)
Jul  9 09:01:40 mail postfix/smtp[21088]: EA29122005D: 
to=_static-n...@packages.qa.debian.org, 
relay=quantz.debian.org[2607:f8f0:610:4000:216:36ff:fe40:3860]:25, delay=10, 
delays=0.09/0/8.9/1.2, dsn=2.0.0, status=sent (250 OK id=1So7yU-0005AW-A1)

I made sure to add the header X-PTS-Approved: yes.

Dear Debian Admins, can you tell us what happened to the above messages?

 (both in GPG-signed mails).

GPG signature is not needed IIRC.

 But I don't see anything added to the PTS and I didn't get any mail
 back.

Me neither.

Cheers,
-- 
Raphaël Hertzog ◈ Debian Developer

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



--
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#679350: brewtarget

2012-07-09 Thread Nicholas Bamber
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1


On 09/07/12 01:44, Cyril Brulebois wrote:
 Hello,
 
 Nicholas Bamber nicho...@periapt.co.uk (03/07/2012):
 I cannot reproduce the crash but there is a patch if someone
 can. Else can this bug be downgraded to important.
 
 I was thinking of raising an NMU but I'm not sure if I feel 
 comfortable for just one bug.
 
 And of course I have copied the maintainer.
 
 I'm not sure why you Cc'd the release team when replying. If you 
 need any action from us, please say so. From a very quick glance, 
 it doesn't look like there's anything needed from our side.
 
 Mraw, KiBi.

Cyril,
The best I can do with brewtarget is rewrite the copyright file and
move it to non-free. The package clearly aspires to be free but I
cannot acheive that. And I cannot reproduce the crash failure.  So it
would only be worth my while trying to fix the copyright issue if the
release team are willing for the crash bug to be downgraded.
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.12 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/

iQIcBAEBAgAGBQJP+oRLAAoJELbE2bY7/+c8yBsQAOk172mKqJVE0+1fb0XbBhYm
B38bfb+NoMgv2bXDW7V9F+QY4/chcTXDIrXgEtG1FKNiYZeuxQCJF/zNHTwICvGY
uB6QU0Q445J/xJWR0pDoHRXO4Zz7thHWNY4rAJ5q1V4hn6UwKk/Be+ZTB9K0cSj/
5w3xTxjcDZACNvQBOEqny/As2GzPnio+PgbSlTzlhmrLRUL3WRjLe/I2yRDZBSfX
tAYetqbaTWnQxW4rCK3N7UEs/HydONuOWhLOg4VcY6Pu9MhGotGNJdhUAExkyYIW
DY/tqX6fW5GbqKQGScxJ/PdaKh7SkcR8ZUyoKk1SoFKWsrbx+A2NvApHfWmX91MD
sZI3ruLeTzwmCddQg0te/FLRp0j/5XLrl3braJtiklZevorrifg8IXr1mqQKN1G9
XEfg55vu6UHWu/+2dEd4fYmuLVBKamD1J/6L5Rar6lTQ48wSebFRaVxkHhHq/oCm
U5KKHYZdO0HN9N62DbJ7eqeQshGdELuhnTALd1tIB7tNYXn0DrKgU7T8yuK0QxFN
oDADJBXI7s/1FSeejvNooI5a+V/5wszetRJCp9HkbkABiZvhtZPLAB7Z19i0K72F
uSL7Gv+sHu3is1wGC4f2Q7I54li3ebpvjpVmK3PJyXtnmltG9quTGWeqHw9c986t
FdVBVtBBNrXj0DNTJAl+
=xrBk
-END PGP SIGNATURE-



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#548709: Fwd: debdelta integration

2012-07-09 Thread A Mennucc
forwarded for public reference

 Original Message 
Subject:debdelta integration
Date:   Thu, 24 May 2012 12:37:42 +0200
From:   A Mennucc mennu...@debian.org
To: Ftp Masters ftpmas...@debian.org
CC: Stefano Zacchiroli z...@debian.org



dear all,

I manage the debdelta service; I would like to integrate the delta
generation inside a Debian infrastructure: indeed my current server does
not manage it anymore gracefully (and also some upcoming family business
... keep an eye on d-private in June).

In the past I had some nice conversation in Sep 2010 with Joerg (hi!),
and also with some people inside bug http://bugs.debian.org/548709 ; and
with Zack (hi!) who suggested I should contact you.

I have looked around, into DAK a bit.

My current idea is: I may setup a generation server into ries.d.o , to
see if/how it works. Would this be fine?
ries.d.o seems a good choice, since it contains a copy of all the data
in ftp-master.d.o .

I need some help in these respects.

(1) the morgue is not copied into ries.d.o ; debdelta needs it, it needs
the old version of a deb to create the delta : may you please change
/home/dak/syncdd.sh in ries.d.o so that the morgue is copied (or at
least the last two months of it...)

(2) can I access r/o the postgres db of dak in ries.d.o ? how?

After that, I will look into it more, and come back with further ideas.

Thanks in advance

a.






signature.asc
Description: OpenPGP digital signature


Bug#548709: debdelta integration

2012-07-09 Thread A Mennucc
dear all,

currently I generate deltas on a desktop PC, with an external USB disk
for holding the mirror; this is not working well (the USB disk does not
stand up to the job, it needs power cycle every few days); so the
debdelta service is erratic; please help me move it onto some hw

a.

On 24/05/2012 12:37, A Mennucc wrote:
 dear all,

 I manage the debdelta service; I would like to integrate the delta
 generation inside a Debian infrastructure: indeed my current server does
 not manage it anymore gracefully (and also some upcoming family business
 ... keep an eye on d-private in June).

 In the past I had some nice conversation in Sep 2010 with Joerg (hi!),
 and also with some people inside bug http://bugs.debian.org/548709 ; and
 with Zack (hi!) who suggested I should contact you.

 I have looked around, into DAK a bit.

 My current idea is: I may setup a generation server into ries.d.o , to
 see if/how it works. Would this be fine?
 ries.d.o seems a good choice, since it contains a copy of all the data
 in ftp-master.d.o .

 I need some help in these respects.

 (1) the morgue is not copied into ries.d.o ; debdelta needs it, it needs
 the old version of a deb to create the delta : may you please change
 /home/dak/syncdd.sh in ries.d.o so that the morgue is copied (or at
 least the last two months of it...)

 (2) can I access r/o the postgres db of dak in ries.d.o ? how?

 After that, I will look into it more, and come back with further ideas.

 Thanks in advance

 a.






signature.asc
Description: OpenPGP digital signature


Bug#680913: RM: zsnes [amd64] -- RoM; ANAIS; drop amd64 support

2012-07-09 Thread Etienne Millon
Package: ftp.debian.org
Severity: normal

Hello,

Due to #679526, zsnes does not build a amd64 package anymore. As a
result, the old (1.510+bz2-3) package in unstable marks the package as
out of date and will block its transition to testing. Can you please
remove it ?

Thank you !

-- 
Etienne Millon



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#613205: filezilla: TLS problem in v3.3.5.1, it works in v3.3.3

2012-07-09 Thread Jonathan Wiltshire
Dear maintainer,

Recently you fixed one or more security problems and as a result you closed
this bug. These problems were not serious enough for a Debian Security
Advisory, so they are now on my radar for fixing in the following suites
through point releases:

squeeze (6.0.6) - use target stable

Please prepare a minimal-changes upload targetting each of these suites,
and submit a debdiff to the Release Team [0] for consideration. They will
offer additional guidance or instruct you to upload your package.

I will happily assist you at any stage if the patch is straightforward and
you need help. Please keep me in CC at all times so I can
track [1] the progress of this request.

For details of this process and the rationale, please see the original
announcement [2] and my blog post [3].

0: debian-rele...@lists.debian.org
1: http://prsc.debian.net/tracker/613205/
2: 201101232332.11736.th...@debian.org
3: http://deb.li/prsc

Thanks,

with his security hat on:
--
Jonathan Wiltshire  j...@debian.org
Debian Developer http://people.debian.org/~jmw

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




-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#623968: CVE-2011-1681

2012-07-09 Thread Jonathan Wiltshire
Dear maintainer,

Recently you fixed one or more security problems and as a result you closed
this bug. These problems were not serious enough for a Debian Security
Advisory, so they are now on my radar for fixing in the following suites
through point releases:

squeeze (6.0.6) - use target stable

Please prepare a minimal-changes upload targetting each of these suites,
and submit a debdiff to the Release Team [0] for consideration. They will
offer additional guidance or instruct you to upload your package.

I will happily assist you at any stage if the patch is straightforward and
you need help. Please keep me in CC at all times so I can
track [1] the progress of this request.

For details of this process and the rationale, please see the original
announcement [2] and my blog post [3].

0: debian-rele...@lists.debian.org
1: http://prsc.debian.net/tracker/623968/
2: 201101232332.11736.th...@debian.org
3: http://deb.li/prsc

Thanks,

with his security hat on:
--
Jonathan Wiltshire  j...@debian.org
Debian Developer http://people.debian.org/~jmw

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




-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#623552: 1.7.0 released (also fixes security bug)

2012-07-09 Thread Jonathan Wiltshire
Dear maintainer,

Recently you fixed one or more security problems and as a result you closed
this bug. These problems were not serious enough for a Debian Security
Advisory, so they are now on my radar for fixing in the following suites
through point releases:

squeeze (6.0.6) - use target stable

Please prepare a minimal-changes upload targetting each of these suites,
and submit a debdiff to the Release Team [0] for consideration. They will
offer additional guidance or instruct you to upload your package.

I will happily assist you at any stage if the patch is straightforward and
you need help. Please keep me in CC at all times so I can
track [1] the progress of this request.

For details of this process and the rationale, please see the original
announcement [2] and my blog post [3].

0: debian-rele...@lists.debian.org
1: http://prsc.debian.net/tracker/623552/
2: 201101232332.11736.th...@debian.org
3: http://deb.li/prsc

Thanks,

with his security hat on:
--
Jonathan Wiltshire  j...@debian.org
Debian Developer http://people.debian.org/~jmw

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




-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#631506: CVE-2011-1787

2012-07-09 Thread Jonathan Wiltshire
Dear maintainer,

Recently you fixed one or more security problems and as a result you closed
this bug. These problems were not serious enough for a Debian Security
Advisory, so they are now on my radar for fixing in the following suites
through point releases:

squeeze (6.0.6) - use target stable

Please prepare a minimal-changes upload targetting each of these suites,
and submit a debdiff to the Release Team [0] for consideration. They will
offer additional guidance or instruct you to upload your package.

I will happily assist you at any stage if the patch is straightforward and
you need help. Please keep me in CC at all times so I can
track [1] the progress of this request.

For details of this process and the rationale, please see the original
announcement [2] and my blog post [3].

0: debian-rele...@lists.debian.org
1: http://prsc.debian.net/tracker/631506/
2: 201101232332.11736.th...@debian.org
3: http://deb.li/prsc

Thanks,

with his security hat on:
--
Jonathan Wiltshire  j...@debian.org
Debian Developer http://people.debian.org/~jmw

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




-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#631507: CVE-2011-2146

2012-07-09 Thread Jonathan Wiltshire
Dear maintainer,

Recently you fixed one or more security problems and as a result you closed
this bug. These problems were not serious enough for a Debian Security
Advisory, so they are now on my radar for fixing in the following suites
through point releases:

squeeze (6.0.6) - use target stable

Please prepare a minimal-changes upload targetting each of these suites,
and submit a debdiff to the Release Team [0] for consideration. They will
offer additional guidance or instruct you to upload your package.

I will happily assist you at any stage if the patch is straightforward and
you need help. Please keep me in CC at all times so I can
track [1] the progress of this request.

For details of this process and the rationale, please see the original
announcement [2] and my blog post [3].

0: debian-rele...@lists.debian.org
1: http://prsc.debian.net/tracker/631507/
2: 201101232332.11736.th...@debian.org
3: http://deb.li/prsc

Thanks,

with his security hat on:
--
Jonathan Wiltshire  j...@debian.org
Debian Developer http://people.debian.org/~jmw

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




-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#631524: CVE-2011-2485: excessive memory use due improper checking of certain return values in GIF image loader

2012-07-09 Thread Jonathan Wiltshire
Dear maintainer,

Recently you fixed one or more security problems and as a result you closed
this bug. These problems were not serious enough for a Debian Security
Advisory, so they are now on my radar for fixing in the following suites
through point releases:

squeeze (6.0.6) - use target stable

Please prepare a minimal-changes upload targetting each of these suites,
and submit a debdiff to the Release Team [0] for consideration. They will
offer additional guidance or instruct you to upload your package.

I will happily assist you at any stage if the patch is straightforward and
you need help. Please keep me in CC at all times so I can
track [1] the progress of this request.

For details of this process and the rationale, please see the original
announcement [2] and my blog post [3].

0: debian-rele...@lists.debian.org
1: http://prsc.debian.net/tracker/631524/
2: 201101232332.11736.th...@debian.org
3: http://deb.li/prsc

Thanks,

with his security hat on:
--
Jonathan Wiltshire  j...@debian.org
Debian Developer http://people.debian.org/~jmw

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




-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#655971: CVE-2011-4919 info disclosure

2012-07-09 Thread Jonathan Wiltshire
Dear maintainer,

Recently you fixed one or more security problems and as a result you closed
this bug. These problems were not serious enough for a Debian Security
Advisory, so they are now on my radar for fixing in the following suites
through point releases:

squeeze (6.0.6) - use target stable

Please prepare a minimal-changes upload targetting each of these suites,
and submit a debdiff to the Release Team [0] for consideration. They will
offer additional guidance or instruct you to upload your package.

I will happily assist you at any stage if the patch is straightforward and
you need help. Please keep me in CC at all times so I can
track [1] the progress of this request.

For details of this process and the rationale, please see the original
announcement [2] and my blog post [3].

0: debian-rele...@lists.debian.org
1: http://prsc.debian.net/tracker/655971/
2: 201101232332.11736.th...@debian.org
3: http://deb.li/prsc

Thanks,

with his security hat on:
--
Jonathan Wiltshire  j...@debian.org
Debian Developer http://people.debian.org/~jmw

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




-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#655971: CVE-2011-4919 info disclosure

2012-07-09 Thread Jonathan Wiltshire
Dear maintainer,

Recently you fixed one or more security problems and as a result you closed
this bug. These problems were not serious enough for a Debian Security
Advisory, so they are now on my radar for fixing in the following suites
through point releases:

squeeze (6.0.6) - use target stable

Please prepare a minimal-changes upload targetting each of these suites,
and submit a debdiff to the Release Team [0] for consideration. They will
offer additional guidance or instruct you to upload your package.

I will happily assist you at any stage if the patch is straightforward and
you need help. Please keep me in CC at all times so I can
track [1] the progress of this request.

For details of this process and the rationale, please see the original
announcement [2] and my blog post [3].

0: debian-rele...@lists.debian.org
1: http://prsc.debian.net/tracker/655971/
2: 201101232332.11736.th...@debian.org
3: http://deb.li/prsc

Thanks,

with his security hat on:
--
Jonathan Wiltshire  j...@debian.org
Debian Developer http://people.debian.org/~jmw

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




-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#661627: init script x11-common creates directories in insecure manners

2012-07-09 Thread Jonathan Wiltshire
Dear maintainer,

Recently you fixed one or more security problems and as a result you closed
this bug. These problems were not serious enough for a Debian Security
Advisory, so they are now on my radar for fixing in the following suites
through point releases:

squeeze (6.0.6) - use target stable

Please prepare a minimal-changes upload targetting each of these suites,
and submit a debdiff to the Release Team [0] for consideration. They will
offer additional guidance or instruct you to upload your package.

I will happily assist you at any stage if the patch is straightforward and
you need help. Please keep me in CC at all times so I can
track [1] the progress of this request.

For details of this process and the rationale, please see the original
announcement [2] and my blog post [3].

0: debian-rele...@lists.debian.org
1: http://prsc.debian.net/tracker/661627/
2: 201101232332.11736.th...@debian.org
3: http://deb.li/prsc

Thanks,

with his security hat on:
--
Jonathan Wiltshire  j...@debian.org
Debian Developer http://people.debian.org/~jmw

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




-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#673987: CVE-2012-2374

2012-07-09 Thread Jonathan Wiltshire
Dear maintainer,

Recently you fixed one or more security problems and as a result you closed
this bug. These problems were not serious enough for a Debian Security
Advisory, so they are now on my radar for fixing in the following suites
through point releases:

squeeze (6.0.6) - use target stable

Please prepare a minimal-changes upload targetting each of these suites,
and submit a debdiff to the Release Team [0] for consideration. They will
offer additional guidance or instruct you to upload your package.

I will happily assist you at any stage if the patch is straightforward and
you need help. Please keep me in CC at all times so I can
track [1] the progress of this request.

For details of this process and the rationale, please see the original
announcement [2] and my blog post [3].

0: debian-rele...@lists.debian.org
1: http://prsc.debian.net/tracker/673987/
2: 201101232332.11736.th...@debian.org
3: http://deb.li/prsc

Thanks,

with his security hat on:
--
Jonathan Wiltshire  j...@debian.org
Debian Developer http://people.debian.org/~jmw

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




-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#680915: kid3: Pipes cause tag corruption

2012-07-09 Thread Francois Gouget
Package: kid3
Version: 2.1-2
Severity: normal

Dear Maintainer,

This typically happens when the 'Import from MusicBrainz Release...' feature 
inserts information about the interpret in multi-artist albums. When it does so 
it results in a tag of the form:

  Tag Name:  Arranger
  Tag Value: Vocal|Artist Name

The problem is that if one saves and reloads the album in kid3, then everything 
following the '|' character in the tag value is garbage. I'm not sure if this 
will manage to go through in an email but this is a typical result:

  Tag value: Vocal|䘀爀愀渀挀攀 䜀愀氀氀

Note that this artist name is actually supposed to be plain ascii (no 
chinese/japanese characters).

Changing the value to use a colon instead of the pipe avoids the issue.
Adding a pipe character in another tag does not cause this sort of corruption. 
Instead the pipe character is replaced with a space.

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

Kernel: Linux 3.2.0-2-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

Versions of packages kid3 depends on:
ii  kde-runtime  4:4.8.4-1
ii  libavcodec53 7:0.10.3-dmo1
ii  libavformat537:0.10.3-dmo1
ii  libavutil51  7:0.11.1-dmo2
ii  libc62.13-33
ii  libchromaprint0  0.6-2
ii  libflac++6   1.2.1-6
ii  libflac8 1.2.1-6
ii  libgcc1  1:4.7.1-2
ii  libid3-3.8.3c2a  3.8.3-15
ii  libkdecore5  4:4.8.3-2
ii  libkdeui54:4.8.3-2
ii  libkio5  4:4.8.3-2
ii  libogg0  1.3.0-4
ii  libphonon4   4:4.6.0.0-2
ii  libqt4-dbus  4:4.8.2-1
ii  libqt4-network   4:4.8.2-1
ii  libqt4-svg   4:4.8.2-1
ii  libqt4-xml   4:4.8.2-1
ii  libqtcore4   4:4.8.2-1
ii  libqtgui44:4.8.2-1
ii  libstdc++6   4.7.1-2
ii  libtag1c2a   1.7.2-1
ii  libvorbis0a  1.3.2-1.3
ii  libvorbisfile3   1.3.2-1.3
ii  phonon   4:4.6.0.0-2

kid3 recommends no packages.

kid3 suggests no packages.

-- no debconf information



--
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#680914: alsa-base: conffile name confusion: /etc/default/alsa-base vs /etc/default/alsa

2012-07-09 Thread Vincent Lefevre
Package: alsa-base
Version: 1.0.25+2+nmu1
Severity: normal

There was a config file /etc/default/alsa for months. But after
upgrading alsa-base from 1.0.23+dfsg-4 to 1.0.25+2+nmu1, a new
config file /etc/default/alsa-base has been installed, keeping
/etc/default/alsa with the same contents (up to a blank line).

The /usr/share/doc/alsa-base/changelog.gz file says:

alsa-base (1.0.25+2) unstable; urgency=low
[...]
- stop installing a default file in /usr/share and make
  /etc/default/alsa a real conffile.

but dpkg -s alsa-base outputs:

[...]
Conffiles:
 /etc/modprobe.d/alsa-base.conf a7a32d5a17e1ae3bf9053345f2eb40e6
 /etc/modprobe.d/alsa-base-blacklist.conf 7b763f6869f0a6568a3db9e7415a4768
 /etc/default/alsa-base 73825e30488fdf76613432c0f3408682
[...]

-- Package-specific info:
--- Begin additional package status ---
Desired=Unknown/Install/Remove/Purge/Hold
| Status=Not/Inst/Conf-files/Unpacked/halF-conf/Half-inst/trig-aWait/Trig-pend
|/ Err?=(none)/Reinst-required (Status,Err: uppercase=bad)
||/ Name   Version  Architecture Description
+++-==---=
ii  libasound2:amd 1.0.25-3 amd64shared library for ALSA applicati
--- End additional package status ---
--- Begin /proc/asound/version ---
Advanced Linux Sound Architecture Driver Version 1.0.25.
--- End /proc/asound/version ---
--- Begin /proc/asound/cards ---
 0 [Intel  ]: HDA-Intel - HDA Intel
  HDA Intel at 0xf6fdc000 irq 47
--- End /proc/asound/cards ---
--- Begin /dev/snd/ listing ---
total 0
drwxr-xr-x  2 root root   60 2012-07-06 01:52:41 by-path
crw-rw---T+ 1 root audio 116,  6 2012-07-06 01:52:41 controlC0
crw-rw---T+ 1 root audio 116,  5 2012-07-06 01:52:41 hwC0D0
crw-rw---T+ 1 root audio 116,  4 2012-07-06 01:52:41 hwC0D1
crw-rw---T+ 1 root audio 116,  3 2012-07-09 02:04:46 pcmC0D0c
crw-rw---T+ 1 root audio 116,  2 2012-07-09 02:04:46 pcmC0D0p
crw-rw---T+ 1 root audio 116,  1 2012-07-06 01:52:40 seq
crw-rw---T+ 1 root audio 116, 33 2012-07-06 01:52:38 timer
--- End /dev/snd/ listing ---

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

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

Versions of packages alsa-base depends on:
ii  kmod9-1
ii  procps  1:3.3.3-2
ii  udev175-3.1

Versions of packages alsa-base recommends:
ii  alsa-utils  1.0.25-3

Versions of packages alsa-base suggests:
pn  alsa-ossnone
ii  oss-compat  2

Versions of packages libasound2 depends on:
ii  libc6  2.13-34
ii  multiarch-support  2.13-34

Versions of packages libasound2 suggests:
ii  libasound2-plugins  1.0.25-2

-- no debconf information



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#584689: justniffer: changing back from ITP to RFP

2012-07-09 Thread Andrea Colangelo
retitle 584689 RFP: justniffer -- TCP packet sniffer
noowner 584689
thanks

Justniffer embeds a patched version of libnids. libnids had security
issues in the past, and the patched version adds some other security
concerns and other issues that would lead to a reject by security
team. Therefore, either justniffer needs to be patched to not use the
embedded libnids, or we must work with upstream to fix everything
there. In both cases I have no time to care of it, so I am changing
this ITP to a RFP.

-- 
Andrea Colangelo
Ubuntu Developer|  http://www.ubuntu.com



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#653497: RM: afio -- RoQA; license problem; orphaned

2012-07-09 Thread Jari Aalto
| Please remove this package from unstable.
|
| The comments on bug 653497 convince me that this software is not DFSG-free.
| Nobody did the effort of moving the package from main to non-free since the
| bug was submitted in 2008. Some comments even mention undistributable.
|
| The package is orphaned since December 2011.
|
| I guess that anyone interested has had sufficient time to fix bug 653497,
| and that the only remaining option at this time is to remove the package.

Please hold a while:

- I've already packaged newest release and made the needed changes to move the
  package to non-free/utils section
- The software is not orphaned; the Git repository (commit 2012-03-06
  99af1b206d) is at https://github.com/kholtman/afio/commits/master

ETA of upload in 2 weeks.

Jari



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#679562: developers-reference: note that it is possible for Release Team to override urgency

2012-07-09 Thread Raphael Hertzog
Hi,

On Sat, 07 Jul 2012, Paul Gevers wrote:
  On the typograhy side, it is very minor, but since you added a bullet point 
  to
  the list in 5.13.2, you can make the now previous bullet point finish by a
  semicolon (see below), and the last bullet point finishing by a dot.
 
 So, how about the attached patch?

Thanks, applied with minor tweaks. (And I dropped some supplementary
uninteresting information)

Cheers,
-- 
Raphaël Hertzog ◈ Debian Developer

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



--
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#673148: CVE-2012-2118

2012-07-09 Thread Jonathan Wiltshire
Dear maintainer,

Recently you fixed one or more security problems and as a result you closed
this bug. These problems were not serious enough for a Debian Security
Advisory, so they are now on my radar for fixing in the following suites
through point releases:

squeeze (6.0.6) - use target stable

Please prepare a minimal-changes upload targetting each of these suites,
and submit a debdiff to the Release Team [0] for consideration. They will
offer additional guidance or instruct you to upload your package.

I will happily assist you at any stage if the patch is straightforward and
you need help. Please keep me in CC at all times so I can
track [1] the progress of this request.

For details of this process and the rationale, please see the original
announcement [2] and my blog post [3].

0: debian-rele...@lists.debian.org
1: http://prsc.debian.net/tracker/673148/
2: 201101232332.11736.th...@debian.org
3: http://deb.li/prsc

Thanks,

with his security hat on:
--
Jonathan Wiltshire  j...@debian.org
Debian Developer http://people.debian.org/~jmw

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




-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#680721: wordpress: Several security vulnerabilities fixed in 3.4.1 CVE-2012-3383, CVE-2012-3384, CVE-2012-3385

2012-07-09 Thread Hor Jiun Shyong


On 07/09/2012 02:06 PM, Raphael Hertzog wrote:

Great!

Do you need direction to get started or do you already know how you can
help?

Cheers,


Yes , I would need direction on how to get started. Thanks.


Regards,
Hor Jiun Shyong 何俊雄

Blog: jiunshyong.dyndns.org
twitter.com/jiunshyong
facebook.com/jiunshyong

I'm an FSF member -- Help us support software freedom! 
http://www.fsf.org/jf?referrer=2442

Knowing is not enough, we must apply. Willing is not enough, we must
do - Bruce Lee.






--
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#680771: unblock: zsnes/1.510+bz2-4

2012-07-09 Thread Etienne Millon
* Cyril Brulebois k...@debian.org [120709 09:07]:
 That doesn't make the old amd64 binaries got away from unstable, see:
   http://release.debian.org/britney/update_excuses.html#zsnes
 
 → out of date on amd64: zsnes (from 1.510+bz2-3)

Thanks for the hint !

I've filed a removal bug as #680913.

-- 
Etienne Millon



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#680916: kid3: Performer tag silently replaced with an Arranger one

2012-07-09 Thread Francois Gouget
Package: kid3
Version: 2.1-2
Severity: normal

Dear Maintainer,

Here are the steps to reproduce this:
 * Open an album.
 * In the ID3v2.3.0 tags, click on the 'Add' button.
 * In the list pick 'Performer'.
 * Type 'Performer' as the value.
 * In the tag list you will see:
   Arranger: Performer

So the 'Performer' tag got silently replaced with an 'Arranger' one. Note that 
if you try again and pick 'Arranger' in the list, you will also get an 
'Arranger' tag. So either the 'Performer' tag does not exist and then it should 
be removed from the list, or it is mishandled.


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

Kernel: Linux 3.2.0-2-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

Versions of packages kid3 depends on:
ii  kde-runtime  4:4.8.4-1
ii  libavcodec53 7:0.10.3-dmo1
ii  libavformat537:0.10.3-dmo1
ii  libavutil51  7:0.11.1-dmo2
ii  libc62.13-33
ii  libchromaprint0  0.6-2
ii  libflac++6   1.2.1-6
ii  libflac8 1.2.1-6
ii  libgcc1  1:4.7.1-2
ii  libid3-3.8.3c2a  3.8.3-15
ii  libkdecore5  4:4.8.3-2
ii  libkdeui54:4.8.3-2
ii  libkio5  4:4.8.3-2
ii  libogg0  1.3.0-4
ii  libphonon4   4:4.6.0.0-2
ii  libqt4-dbus  4:4.8.2-1
ii  libqt4-network   4:4.8.2-1
ii  libqt4-svg   4:4.8.2-1
ii  libqt4-xml   4:4.8.2-1
ii  libqtcore4   4:4.8.2-1
ii  libqtgui44:4.8.2-1
ii  libstdc++6   4.7.1-2
ii  libtag1c2a   1.7.2-1
ii  libvorbis0a  1.3.2-1.3
ii  libvorbisfile3   1.3.2-1.3
ii  phonon   4:4.6.0.0-2

kid3 recommends no packages.

kid3 suggests no packages.

-- no debconf information



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#679983: atop: Please include systemd service file

2012-07-09 Thread Marc Haber
On Mon, Jul 09, 2012 at 06:07:25AM +0200, Michael Stapelberg wrote:
 Quoting Marc Haber (2012-07-08 23:37:56)
  On Debian/kFreeBSD?
 Of course not, but that’s not the point.

It is. Maintaining compatibility code for  1 init system is bound to
be untested and bug prone.

Looking forward to the patch set, welcome on board.

Greetings
Marc

-- 
-
Marc Haber | I don't trust Computers. They | Mailadresse im Header
Mannheim, Germany  |  lose things.Winona Ryder | Fon: *49 621 31958061
Nordisch by Nature |  How to make an American Quilt | Fax: *49 621 31958062



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#680730: closed by Ari Pollak a...@debian.org (Re: Bug#680730: [pidgin] Feature request: allow grouping duplicate contacts as one contact like in Empathy.)

2012-07-09 Thread Mika Suomalainen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Thanks :)
-BEGIN PGP SIGNATURE-
Version: GnuPG v2.0.19 (GNU/Linux)
Comment: Homepage: http://mkaysi.github.com/
Comment: gpg --keyserver pool.sks-keyservers.net --recv-keys 82A46728
Comment: Public key: http://mkaysi.github.com/PGP/key.txt
Comment: Fingerprint = 24BC 1573 B8EE D666 D10A  AA65 4DB5 3CFE 82A4 6728
Comment: Why do I (clear)sign emails? http://git.io/6FLzWg
Comment: Please send plaintext instead of HTML. http://git.io/TAc0cg
Comment: Please don't toppost. http://git.io/7-VB3g
Comment: Please remove PGP lines in replies. http://git.io/nvHrDg
Comment: Charset of this message should be UTF-8.
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/

iQIcBAEBAgAGBQJP+pBzAAoJEE21PP6CpGcoWsUQAIiIk1c0JxzEtlYp+e0+10sc
kwLlFUlkrJKQyo8fBfT7Hb+Kup9Jrrl66heT/kBVJuk/OMHqJKQRs+GIft4gAGoe
sGXPR6OMfcwVXFCrrzJReQfSYNAGxMfMD5i4kv74A7Rk3x+lK7giVCie3mukHgZg
HB12rJLM1q0qtO0ekXDqspYYeMsic7yIkYjQkz2bbrp3zXhWlQdCkigyD/uB8rDg
1/VMr134HC1Z62hbmhr6aZLWM0RFHaO/BlyJrZZN5nuoXMlSEnuqddaNOR9jXjNK
GfQZoiV4rJaCvBiTb6DPP81AEJiwjTTpsi8PvMThtstS4OLMTSEuKY1xgHTJLy7Q
HgPV7fwxxeV8ofvy19UKIQaZeiXgtKFhYPnabegIy06Coeii8di7CgmektXtFz5e
iSJJntvmgVCEtyI76SpnEft9kNMitb+4GthcRAkRTbT20BJMuh9cT3CWZHhRZtEh
JwOY8KPfZNoexnkarcud2YhHxHmPswpm/jjkOrg9pvRuOn5BlldpRZthntEjHFfQ
bVHOjT5P4pjB13qlzry8RNf2fqmap87GNNFOYfR6yrVUbyg8Pm2Pv+/r89w5o3MN
AWbNsbi0V85k08hnfgdA5iB14iJCGa483as1GRWXUBiiwZLy56LZqSiTcOKw8daX
Os/N6MUVzTmnsySNeFry
=ovbE
-END PGP SIGNATURE-



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#679078: ITP: acpi-support-minimal -- minimal acpi scripts

2012-07-09 Thread Michael Meskes
On Sun, Jul 08, 2012 at 09:53:00PM +0200, Vincent Bernat wrote:
 Yes, this would send the XF86ScreenSaver which would kick the
 screensaver of the currently displayed X session. This is another
 (imperfect) way to solve the problem of locking the user's screen
 without needing either an entry in /var/run/utmp or consolekit.

But this is not the problem. If it was just the screensaver a hard dependency
wouldn't be needed. After all screensaver itself is only recommended. The
problem we were facing was that acpi-support has to figure out if other power
management software was running before acting itself. And for that the X
session information is needed.

Michael
-- 
Michael Meskes
Michael at Fam-Meskes dot De, Michael at Meskes dot (De|Com|Net|Org)
Michael at BorussiaFan dot De, Meskes at (Debian|Postgresql) dot Org
Jabber: michael.meskes at googlemail dot com
VfL Borussia! Força Barça! Go SF 49ers! Use Debian GNU/Linux, PostgreSQL



--
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#680912: tenace cannot open back the file it saved

2012-07-09 Thread Christoph Berg
severity 680912 important
thanks

Re: Michael Tsang 2012-07-09 
20120709065727.13230.63629.report...@server.miklcct.csproject.org
 I created two boards, set the contract and vulnerability, saved it.
 
 After I tried to open it, it saids
 Wrong medium type
 Hint: tenace can only read files in .lin format

Hi Michael,

thanks for the report. I'll look into fixing this.

I'm downgrading the bug to important, as it doesn't make the program
completely unusable, but this definitely needs fixing.

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


signature.asc
Description: Digital signature


Bug#679350: brewtarget

2012-07-09 Thread Cyril Brulebois
Nicholas Bamber nicho...@periapt.co.uk (09/07/2012):
 Cyril,
   The best I can do with brewtarget is rewrite the copyright file
 and move it to non-free. The package clearly aspires to be free but I
 cannot acheive that. And I cannot reproduce the crash failure.  So it
 would only be worth my while trying to fix the copyright issue if the
 release team are willing for the crash bug to be downgraded.

Anyone can do that, and if the maintainer disagrees, that's not for the
release team to deal with it.

You only need us if the bug is deemed to be considered release critical,
and not to be fixed for the next release (so that we set a
$release-ignore tag). This doesn't appear to be the case here.

Mraw,
KiBi.


signature.asc
Description: Digital signature


Bug#680917: roundcube-core: Symbolic link not allowed or link target not accessible: js/jquery-ui.min.js

2012-07-09 Thread Teodor
Package: roundcube
Version: 0.7.1-1~bpo60+1
Severity: normal

Hi,

I've noticed multiple lines in httpd's error.log like this:
| [Mon Jul 09 08:49:14 2012] [error] [client xyz] Symbolic link not allowed
|   or link target not accessible:
|   /var/lib/roundcube/plugins/jqueryui/js/jquery-ui.min.js, referer:
|   https://mail.DOMAIN/roundcube/?_task=mail_mbox=INBOX_refresh=1

After a short look I see several broken links in plugins/jqueryui directory:
| css - ../../../javascript/jquery-ui/css
| js/i18n - ../../../../javascript/jquery-ui/ui/i18n
| js/jquery-ui.min.js - ../../../../javascript/jquery-ui/jquery-ui.min.js
| (config.inc.php too but shouldn't make a difference)

The reason for this broken links is that ../../../javascript get resolved
to /var/lib/javascript but the correct location is /usr/share/javascript.

Cheers

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

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

Versions of packages roundcube-core depends on:
ii  apache22.2.16-6+squeeze7 Apache HTTP Server metapackage
ii  apache2-mpm-prefork [h 2.2.16-6+squeeze7 Apache HTTP Server - traditional n
ii  dbconfig-common1.8.46+squeeze.0  common framework for packaging dat
ii  debconf [debconf-2.0]  1.5.36.1  Debian configuration management sy
ii  libjs-jquery   1.6.4-1~bpo60+1   JavaScript library for dynamic web
ii  libjs-jquery-ui1.8.dfsg-3JavaScript UI library for dynamic 
ii  libmagic1  5.04-5+squeeze2   File type determination library us
ii  php-auth   1.6.2-1   PHP PEAR modules for creating an a
ii  php-mail-mime  1.8.0-2   PHP PEAR module for creating MIME 
ii  php-mdb2   2.5.0b2-1 PHP PEAR module to provide a commo
ii  php-net-smtp   1.4.2-3   PHP PEAR module implementing SMTP 
ii  php-net-socket 1.0.9-2   PHP PEAR Network Socket Interface 
ii  php5   5.3.3-7+squeeze13 server-side, HTML-embedded scripti
ii  php5-gd5.3.3-7+squeeze13 GD module for php5
ii  php5-intl  5.3.3-7+squeeze13 internationalisation module for ph
ii  php5-mcrypt5.3.3-7+squeeze13 MCrypt module for php5
ii  php5-pspell5.3.3-7+squeeze13 pspell module for php5
ii  roundcube-sqlite   0.7.1-1~bpo60+1   metapackage providing sqlite depen
ii  tinymce3.3.8+dfsg0-0.1   platform independent web based Jav
ii  ucf3.0025+nmu1   Update Configuration File: preserv

roundcube-core recommends no packages.

Versions of packages roundcube-core suggests:
ii  php-auth-sasl1.0.4-1 Abstraction of various SASL mechan
pn  php-crypt-gpgnone  (no description available)
ii  roundcube-plugins0.7.1-1~bpo60+1 skinnable AJAX based webmail solut

roundcube depends on no packages.

-- Configuration Files:
/etc/logrotate.d/roundcube-core changed:
/var/log/roundcube/errors
/var/log/roundcube/sendmail
/var/log/roundcube/session
/var/log/roundcube/userlogins {
  create 640 www-data adm
  compress
  delaycompress
  missingok
  notifempty
  rotate 52
  weekly
}

/etc/roundcube/htaccess changed:
AddType text/x-component .htc
IfModule mod_php5.c
php_flagdisplay_errors  Off
php_flaglog_errors  On
php_value   upload_max_filesize 20M
php_value   post_max_size   6M
php_value   memory_limit64M
php_flagzlib.output_compression Off
php_flagmagic_quotes_gpcOff
php_flagmagic_quotes_runtimeOff
php_flagzend.ze1_compatibility_mode Off
php_flagsuhosin.session.encrypt Off
php_flagsession.auto_start  Off
php_value   session.gc_maxlifetime  21600
php_value   session.gc_divisor  500
php_value   session.gc_probability  1
/IfModule
IfModule mod_rewrite.c
RewriteEngine On
RewriteRule ^favicon.ico$ skins/default/images/favicon.ico
RewriteRule .svn/ - [F]
RewriteRule ^README|INSTALL|LICENSE|SQL|bin|CHANGELOG$ - [F]
/IfModule
IfModule mod_deflate.c
SetOutputFilter DEFLATE
/IfModule
IfModule mod_headers.c
/IfModule
IfModule mod_expires.c
ExpiresActive On
ExpiresDefault access plus 1 month
/IfModule
FileETag MTime Size
IfModule mod_autoindex.c
Options -Indexes
/ifModule


-- debconf information:
  roundcube/upgrade-error: abort
  roundcube/pgsql/authmethod-user: password
  roundcube/purge: false
* roundcube/dbconfig-install: true
* roundcube/language: en_US
* roundcube/db/dbname: roundcube
  roundcube/remote/newhost:
  roundcube/pgsql/changeconf: false
  roundcube/upgrade-backup: true
  roundcube/install-error: abort
  roundcube/mysql/admin-user: root
* roundcube/hosts:
  roundcube/pgsql/authmethod-admin: 

Bug#680918: irssi-scripts: [awayproxy.pl] $config{script_mode} should default to 2, not 1

2012-07-09 Thread Luca Capello
Package: irssi-scripts
Version: 20100512
Severity: normal
File: /usr/share/irssi/scripts/awayproxy.pl
Usertags: pca.it-communication

Hi there!

I recently configured the awayproxy.pl script on my squeeze server with

  ~/.irssi/scripts/awayproxy.pl - /usr/share/irssi/scripts/awayproxy.pl

This because README.Debian contains (emphasis is mine):

--8---cut here---start-8---
Some frequently asked questions with answers:
Q: How do I run scripts?
A: In irssi do /script load script.pl . There is a default alias for
   /script load to /run in newer versions of irssi.
Q: How do I rerun scripts?
A: Just do /script load script.pl .
Q: How do I unload scripts?
A: Just do /script unload script.pl .
Q: How do I run scripts automatically at startup?
A: Put them into ~/.irssi/scripts/autorun/ directory. Or better would be if
   you placed them in ~/.irssi/scripts/ (or kept them in the default
 ^^^
   installation directory) and created symlinks to autorun directory
   ^^
   (eg. cd ~/.irssi/scripts/autorun/ ; ln -s ../script.pl .)
--8---cut here---end---8---

However, I then started to get mail delivery failure notifications with
the IRC messages received when I was away:

  em...@email.org: connect to postbox.fabulous.com[128.242.120.13]:25:
Connection refused

This is because the default values for awayproxy.pl are:

--8---cut here---start-8---
# script operation mode:
#  0 - to send messages both to email and when you get back to proxy
#  1 - only email
#  2 - only irc
#  3 - off
$config{script_mode} = 1;
p# email address where to send the email
$config{emailto} = 'em...@email.org';
--8---cut here---end---8---

I would suggest to change the default value for script_mode to 2, thus
the instructions in README.Debian (symlinking the files shipped in the
installation directory) would still work ;-)

I reported this bug in the version in squeeze, but it is still present
in the Git repository, thus sid.

Thx, bye,
Gismo / Luca

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

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

Versions of packages irssi-scripts depends on:
ii  irssi 0.8.15-2   terminal based IRC client

Versions of packages irssi-scripts recommends:
ii  libwww-perl   5.836-1Perl HTTP/WWW client/server librar

Versions of packages irssi-scripts suggests:
pn  libdbi-perlnone(no description available)
ii  net-tools  1.60-23   The NET-3 networking toolkit
ii  perl   5.10.1-17squeeze3 Larry Wall's Practical Extraction 
ii  perl-modules   5.10.1-17squeeze3 Core Perl modules
ii  w3m [www-browser]  0.5.2-9   WWW browsable pager with excellent

-- no debconf information


pgpLfDqWoWjub.pgp
Description: PGP signature


Bug#680919: gpsbabel-gui does not depend on gpsbabel

2012-07-09 Thread Teppo Mäenpää
Package: gpsbabel-gui
Version: 1.4.0-1
Severity: minor


gpsbabel-gui does not depend on gpsbabel.
gpsbabel-gui does not recommend gpsbabel.
gpsbabel-gui does not even suggest gpsbabel.

Howeever,

gpsbabel-gui tool will not start without gpsbabel installed.

Suggested solution:

make -gui depend or recommend gpsbabel.


-- System Information:
Debian Release: 6.0.5
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: amd64 (x86_64)

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

Versions of packages gpsbabel-gui depends on:
ii  libc6 2.11.3-4   Embedded GNU C Library: Shared lib
ii  libgcc1   1:4.4.5-8  GCC support library
ii  libqt4-network4:4.6.3-4+squeeze1 Qt 4 network module
ii  libqt4-webkit 4:4.6.3-4+squeeze1 Qt 4 WebKit module
ii  libqt4-xml4:4.6.3-4+squeeze1 Qt 4 XML module
ii  libqtcore44:4.6.3-4+squeeze1 Qt 4 core module
ii  libqtgui4 4:4.6.3-4+squeeze1 Qt 4 GUI module
ii  libstdc++64.4.5-8The GNU Standard C++ Library v3

gpsbabel-gui recommends no packages.

gpsbabel-gui suggests no packages.

-- no debconf information



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#669368: [patch] Packaging of mlocate-0.25

2012-07-09 Thread Svante Signell
tags 669368 patch
thanks

Dear mlocate maintainer,

Attached are the source files (*.dsc, *.debian.tar.gz) for the packaging
of mlocate-0.25, which builds out of the box on GNU/Linux (i386),
GNU/Hurd (i386), and probably on all other architectures. The built
version is now installed at debian-ports for GNU/Hurd. It would be nice
to get it into sid/testing/wheezy too.

For space reasons the upstream tarball is not included, it is available at:
https://fedorahosted.org/releases/m/l/mlocate/mlocate-0.25.tar.xz

Since using format 3.0 (quilt) is is sufficient to rename 
mlocate-0.25.tar.xz to mlocate_0.25.orig.tar.xz 

The changelog entry looks like:
mlocate (0.25-0.1) UNRELEASED; urgency=low

  * New upstream release
  * NMU packaging for GNU/Hurd at debian-ports
  * Switch to dpkg-source 3.0 (quilt) format
  * Updated watch file
  * Updated homepage and standards version in the control file
  * Uploader Samuel Thibault

 -- Svante Signell svante.sign...@telia.com  Thu, 6 Jul 2012 10:02:12
+0200

Running through lintian:
# lintian mlocate_0.25-0.1.dsc 
W: mlocate source: debhelper-but-no-misc-depends mlocate
W: mlocate source: changelog-should-mention-nmu
W: mlocate source: debian-rules-missing-recommended-target build-arch
W: mlocate source: debian-rules-missing-recommended-target build-indep



Format: 3.0 (quilt)
Source: mlocate
Binary: mlocate
Architecture: any
Version: 0.25-0.1
Maintainer: Tollef Fog Heen tfh...@debian.org
Homepage: https://fedorahosted.org/releases/m/l/mlocate
Standards-Version: 3.9.3
Vcs-Browser: http://git.debian.org/?p=collab-maint/mlocate.git
Vcs-Git: git://git.debian.org/git/collab-maint/mlocate.git
Build-Depends: debhelper
Package-List: 
 mlocate deb utils standard
Checksums-Sha1: 
 d38310af31354c182d5853ee85407f03c7752db0 355900 mlocate_0.25.orig.tar.xz
 f4cef88c339fd5747f81ef9790ed74e1cd4fbe26 5526 mlocate_0.25-0.1.debian.tar.gz
Checksums-Sha256: 
 ab95c111f9dba35b5690896180dd0a7639dbf07d70b862fcb0731264d9273951 355900 
mlocate_0.25.orig.tar.xz
 805d5b26f6c81a9fa2c78733d30132f4e7be690f7136dc1c10916a6cce395aea 5526 
mlocate_0.25-0.1.debian.tar.gz
Files: 
 c6d043b170613b0e327a815b497f680a 355900 mlocate_0.25.orig.tar.xz
 1f4e357bd08ac08cc405100b33e89b7c 5526 mlocate_0.25-0.1.debian.tar.gz


mlocate_0.25-0.1.debian.tar.gz
Description: application/compressed-tar


Bug#680882: [buildd-tools-devel] Bug#680882: Please make git repository buildable, or documented, or something

2012-07-09 Thread Roger Leigh
On Sun, Jul 08, 2012 at 10:28:26PM +0100, Ian Jackson wrote:
 Package: schroot
 Version: 1.6.1-1
 
 I did this
   git-clone git://git.debian.org/git/buildd-tools/schroot schroot.git
 and then tried various things to try to build the source code.
 
 None of my attempts were successful.  I assume it must be possible
 somehow.  Please could this be documented.  Ideally I would like to be
 able to run git-buildpackage or dpkg-buildpackage and make a .deb
 directly from the git repo.

This is the upstream as well as debian source code.  It just
needs the autotools bootstrapping in order to build.  You just
need to run
  ./bootstrap
and then you're good to go.  I can document this in the README.
It wasn't documented because it's common to most autotools-using
projects which have a bootstrap or autogen.sh script.  If you
want the specific 1.6.1-1 release, I would suggest running
  git checkout release/schroot-1.6.1
or
  git checkout debian/schroot-1.6.1-1
(in this case, they are one and the same thing).

The distribution (equivalent of distributed tarball, pre-bootstrapped)
is also in schroot-dist.git:
  git remote add origin-dist 
git://anonscm.debian.org/buildd-tools/schroot-dist.git
  git fetch origin-dist
  git checkout distribution/schroot-1.6.1-1
This is directly buildable, and is bit-for-bit identical with the
orig.tar.gz (which is generated from this with git archive).


Regards,
Roger
-- 
  .''`.  Roger Leigh
 : :' :  Debian GNU/Linuxhttp://people.debian.org/~rleigh/
 `. `'   schroot and sbuild  http://alioth.debian.org/projects/buildd-tools
   `-GPG Public Key  F33D 281D 470A B443 6756 147C 07B3 C8BC 4083 E800



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#677533: video: USB webcam fails since kernel 3.2

2012-07-09 Thread Hans de Goede

Hi,

On 07/08/2012 08:33 PM, Jean-Francois Moine wrote:

On Sun, 08 Jul 2012 19:58:08 +0200
Hans de Goede hdego...@redhat.com wrote:


Hmm, this is then likely caused by the new isoc bandwidth negotiation code
in 3.2, unfortunately the vc032x driver is one of the few gspca drivers
for which I don't have a cam to test with. Can you try to build your own
kernel from source?


Hi Martin-Éric,

Instead of re-building the gspca driver from a kernel source, you may
try the gspca test tarball from my web site
http://moinejf.free.fr/gspca-2.15.18.tar.gz


That is a good option too and easier then building a whole new kernel,
but:


It contains most of the bug fixes, including the one about the
bandwidth problem.


Right, but the problem with the vc032x driver is that there no bandwidth
related bugfix for it yet, which is why I asked Martin-Éric, not only
to build a new gspca driver from source, but also to try some modifications.

Martin-Éric,

Building the gspca test-tarbal also is a good way to test this:
http://moinejf.free.fr/gspca-2.15.18.tar.gz

But once you've confirmed the problem still happens with that version
you will still need to try the changes I suggested to gspca.c to help
us confirm that this is a bandwidth issue and try to come up with a fix.

Thanks  Regards,

Hans



--
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#680798: sitplus: FTBFS: build-dependency not installable: libpoco-dev

2012-07-09 Thread Andreas Tille
Hi,

I wonder what this problem might be sitplus as well as libpoco-dev are
in unstable.  I can not see what action needs to be done here.  Please
explain.

Kind regards

Andreas.

On Sun, Jul 08, 2012 at 07:01:32PM +0200, Lucas Nussbaum wrote:
 Source: sitplus
 Version: 1.0.3-3
 Severity: serious
 Tags: wheezy sid
 User: debian...@lists.debian.org
 Usertags: qa-ftbfs-20120708 qa-ftbfs
 Justification: FTBFS on amd64
 
 Hi,
 
 During a rebuild of all packages in sid, your package failed to build on
 amd64.
 
 Relevant part:
  ┌──┐
  │ Install sitplus build dependencies (apt-based resolver)   
 │
  └──┘
  
  Installing build dependencies
  Reading package lists...
  Building dependency tree...
  Reading state information...
  Some packages could not be installed. This may mean that you have
  requested an impossible situation or if you are using the unstable
  distribution that some required packages have not yet been created
  or been moved out of Incoming.
  The following information may help to resolve the situation:
  
  The following packages have unmet dependencies:
   sbuild-build-depends-sitplus-dummy : Depends: libpoco-dev but it is not 
  going to be installed
  E: Unable to correct problems, you have held broken packages.
  apt-get failed.
 
 The full build log is available from:

 http://people.debian.org/~lucas/logs/2012/07/08/sitplus_1.0.3-3_unstable.log
 
 A list of current common problems and possible solutions is available at 
 http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!
 
 About the archive rebuild: The rebuild was done on EC2 VM instances from
 Amazon Web Services, using a clean, minimal and up-to-date chroot. Every
 failed build was retried once to eliminate random failures.
 
 
 
 ___
 Debian-med-packaging mailing list
 debian-med-packag...@lists.alioth.debian.org
 http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/debian-med-packaging

-- 
http://fam-tille.de



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#680920: unblock: nautilus-scripts-manager/1.7-1

2012-07-09 Thread Pietro Battiston
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock package nautilus-scripts-manager

The upstream version 1.7-1 only fixes two bugs, reported for Ubuntu but valid
also for Debian (any version):
https://bugs.launchpad.net/ubuntu/+source/nautilus-scripts-manager/+bug/617095
https://bugs.launchpad.net/ubuntu/+source/nautilus-scripts-manager/+bug/973239

The first is particularly important (nautilus-scripts-manager is completely
broken when /usr/share/nautilus-scripts contains a subdir).

The second is a bit less annoying, but the fix is extremely simple:
http://pietrobattiston.it/gitweb?p=nautilus-scripts-
manager.git/.git;a=commitdiff;h=228f13be925e3fff47612431c87edc9d4dd5c933


unblock nautilus-scripts-manager/1.7-1

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

Kernel: Linux 3.2.0-2-amd64 (SMP w/2 CPU cores)
diff -Nru nautilus-scripts-manager-1.6/ChangeLog nautilus-scripts-manager-1.7/ChangeLog
--- nautilus-scripts-manager-1.6/ChangeLog	2011-09-28 09:30:46.0 +0200
+++ nautilus-scripts-manager-1.7/ChangeLog	2012-07-04 20:26:18.0 +0200
@@ -1,3 +1,7 @@
+nautilus-scripts-manager 1.7, 2012-07-04
+  * Stop crashing when scripts dir contains dirs (LP: #494704)
+  * Check if a display is available (LP: #973239)
+
 nautilus-scripts-manager 1.6, 2011-09-28
   * Fetched new translated strings from Transifex
   * Updated email address
diff -Nru nautilus-scripts-manager-1.6/debian/changelog nautilus-scripts-manager-1.7/debian/changelog
--- nautilus-scripts-manager-1.6/debian/changelog	2011-09-28 09:13:27.0 +0200
+++ nautilus-scripts-manager-1.7/debian/changelog	2012-07-05 12:41:05.0 +0200
@@ -1,3 +1,12 @@
+nautilus-scripts-manager (1.7-1) unstable; urgency=low
+
+  * New upstream release
+- Stop crashing when scripts dir contains subdirs (LP: #494704)
+- Check if a display is available before starting the GUI (LP: #973239)
+  * Updated Standards-Version
+
+ -- Pietro Battiston m...@pietrobattiston.it  Wed, 04 Jul 2012 20:31:17 +0200
+
 nautilus-scripts-manager (1.6-1) unstable; urgency=low
 
   * New upstream release
diff -Nru nautilus-scripts-manager-1.6/debian/control nautilus-scripts-manager-1.7/debian/control
--- nautilus-scripts-manager-1.6/debian/control	2011-09-27 22:22:18.0 +0200
+++ nautilus-scripts-manager-1.7/debian/control	2012-07-05 12:39:42.0 +0200
@@ -4,7 +4,7 @@
 Maintainer: Pietro Battiston m...@pietrobattiston.it
 Build-Depends: debhelper (= 7)
 Build-Depends-Indep: python (=2.6.6-3~), python-setuptools (= 0.6)
-Standards-Version: 3.9.2
+Standards-Version: 3.9.3
 Homepage: http://www.pietrobattiston.it/nautilus-scripts-manager
 Vcs-Browser: http://git.debian.org/?p=collab-maint/nautilus-scripts-manager.git
 Vcs-Git: git://git.debian.org/git/collab-maint/nautilus-scripts-manager.git
diff -Nru nautilus-scripts-manager-1.6/nautilus-scripts-manager nautilus-scripts-manager-1.7/nautilus-scripts-manager
--- nautilus-scripts-manager-1.6/nautilus-scripts-manager	2011-09-28 09:30:46.0 +0200
+++ nautilus-scripts-manager-1.7/nautilus-scripts-manager	2012-07-04 20:26:18.0 +0200
@@ -21,7 +21,7 @@
 import pango
 from optparse import OptionParser, OptionGroup
 
-__version__ = '1.6'
+__version__ = '1.7'
 
 ## CONFIGURATION ###
 
@@ -92,6 +92,8 @@
 
 try:
 import gtk
+m = gtk.gdk.DisplayManager()
+assert( m.list_displays() )
 GRAPHIC = True
 except:
 GRAPHIC = False
@@ -105,9 +107,13 @@
 
 An installed script.
 
-def __init__(self, name):
+def __init__(self, name, path=''):
+if not path:
+path = SCRIPTS_SYSTEM_FOLDER + name
+subpath = os.path.relpath( path, SCRIPTS_SYSTEM_FOLDER )
+self.subpath = subpath
 self.name = name
-self.path = SCRIPTS_SYSTEM_FOLDER + name
+self.path = SCRIPTS_SYSTEM_FOLDER + subpath
 self.stale = not os.path.exists(self.path)
 self.links = []
 
@@ -179,13 +185,13 @@
 
 for script in self.scripts.values():
 if not script.links:
-self.ui.store.append(None, [False, script.name, self.retrieve_default_path(script.name), False])
+self.ui.store.append(None, [False, script.subpath, self.retrieve_default_path(script.name, script.path), False])
 elif script.links[1:]:
-root = self.ui.store.append(None, [True, script.name, '', script.stale])
+root = self.ui.store.append(None, [True, script.subpath, '', script.stale])
 for link in script.links:
-self.ui.store.insert(root, 1000, [True, script.name, link, script.stale])
+self.ui.store.insert(root, 1000, [True, 

Bug#680921: unblock: xz-java/1.0-2

2012-07-09 Thread Niels Thykier
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: freeze-exception

Hi,

I would like to request a freeze exception for xz-java/1.0-2.  1.0-1
was subject to the uploaded before the freeze-exception, but
unfortunately did not make it to testing due to insufficient age[1].
This means the entire package becomes the diff from testing.
  To ease reviewing I have created a debdiff between the xz-java/1.0-1
and xz-java/1.0-2.

The rationale for this exception is #680840[2] caused by two bugs
#680874[3] and #680873 (which is fixed in xz-java).

The FTBFS #680840 and weak relation #680874 already affects testing as
libcommons-compress-java was uploaded with urgency medium (it fixed a
security issue) and therefore migrated a couple of days ago.
  libcommons-compress-java will also need an unblock, but I will file a
separate bug for this.  commons-vfs will not need to be changed.

~Niels

unblock xz-java/1.0-2


[1] As far as I can tell, it would have migrated in less than 24
hours.

[2] commons-vfs FTBFS

[3] libcommons-compress-java has too weak a relation on libxz-java
diff -Nru xz-java-1.0/debian/changelog xz-java-1.0/debian/changelog
--- xz-java-1.0/debian/changelog	2012-06-21 06:19:23.0 +0200
+++ xz-java-1.0/debian/changelog	2012-07-09 02:46:28.0 +0200
@@ -1,3 +1,9 @@
+xz-java (1.0-2) unstable; urgency=low
+
+  * Install artifacts used in Maven repositories. (Closes: #680873).
+
+ -- Miguel Landaeta mig...@miguel.cc  Sun, 08 Jul 2012 13:07:21 -0430
+
 xz-java (1.0-1) unstable; urgency=low
 
   * Initial release. (Closes: #677942).
diff -Nru xz-java-1.0/debian/control xz-java-1.0/debian/control
--- xz-java-1.0/debian/control	2012-06-21 06:19:23.0 +0200
+++ xz-java-1.0/debian/control	2012-07-09 02:46:28.0 +0200
@@ -4,7 +4,7 @@
 Maintainer: Debian Java Maintainers pkg-java-maintain...@lists.alioth.debian.org
 Uploaders: Miguel Landaeta mig...@miguel.cc
 Build-Depends: debhelper (= 7.0.50~), default-jdk, javahelper, ant,
- default-jdk-doc
+ default-jdk-doc, maven-repo-helper
 Standards-Version: 3.9.3
 Vcs-Git: git://git.debian.org/git/pkg-java/xz-java.git
 Vcs-Browser: http://git.debian.org/?p=pkg-java/xz-java.git
diff -Nru xz-java-1.0/debian/libxz-java.poms xz-java-1.0/debian/libxz-java.poms
--- xz-java-1.0/debian/libxz-java.poms	1970-01-01 01:00:00.0 +0100
+++ xz-java-1.0/debian/libxz-java.poms	2012-07-09 02:46:28.0 +0200
@@ -0,0 +1 @@
+debian/xz.pom
diff -Nru xz-java-1.0/debian/rules xz-java-1.0/debian/rules
--- xz-java-1.0/debian/rules	2012-06-21 06:19:23.0 +0200
+++ xz-java-1.0/debian/rules	2012-07-09 02:46:28.0 +0200
@@ -8,8 +8,13 @@
 
 override_dh_auto_clean:
 	dh_auto_clean
+	mh_clean
 	-rm -rf extdoc
 
+override_jh_installlibs:
+	mh_installjar -plibxz-java --java-lib debian/xz.pom build/jar/xz.jar
+	mh_installpoms -plibxz-java
+
 get-orig-source:
 	cd $(dir $(firstword $(MAKEFILE_LIST)))../  \
 	uscan \
diff -Nru xz-java-1.0/debian/xz.pom xz-java-1.0/debian/xz.pom
--- xz-java-1.0/debian/xz.pom	1970-01-01 01:00:00.0 +0100
+++ xz-java-1.0/debian/xz.pom	2012-07-09 02:46:28.0 +0200
@@ -0,0 +1,58 @@
+?xml version=1.0 encoding=UTF-8?
+
+!--
+Author: Lasse Collin lasse.col...@tukaani.org
+
+This file has been put into the public domain.
+You can do whatever you want with this file.
+--
+
+project xmlns=http://maven.apache.org/POM/4.0.0;
+ xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance;
+ xsi:schemaLocation=http://maven.apache.org/POM/4.0.0
+ http://maven.apache.org/xsd/maven-4.0.0.xsd;
+
+modelVersion4.0.0/modelVersion
+
+groupIdorg.tukaani/groupId
+artifactIdxz/artifactId
+version1.0/version
+packagingjar/packaging
+
+nameXZ for Java/name
+descriptionXZ data compression/description
+urlhttp://tukaani.org/xz/java.html/url
+
+licenses
+license
+namePublic Domain/name
+commentsYou can do whatever you want with this package./comments
+distributionrepo/distribution
+/license
+/licenses
+
+scm
+urlhttp://git.tukaani.org/?p=xz-java.git/url
+connectionscm:git:http://git.tukaani.org/xz-java.git/connection
+/scm
+
+developers
+developer
+nameLasse Collin/name
+emaillasse.col...@tukaani.org/email
+/developer
+/developers
+
+contributors
+contributor
+!-- According to Maven docs, it's good to only list those people
+ as developers that should be contacted if someone wants
+ to talk with an upstream developer. Thus, Igor Pavlov is
+ marked as a contributor even though XZ for Java simply
+ couldn't exist without Igor Pavlov's code. --
+nameIgor Pavlov/name
+urlhttp://7-zip.org//url
+/contributor
+/contributors
+
+/project


Bug#680822: libphonon-dev should depend on phonon-backend-null | phonon-backend?

2012-07-09 Thread Evgeni Golov
Hi,

[ CCing libphonon-dev maintainers ]

while trying to fix random RC bugs, I stumbled over this one and tried 
to
reproduce it in my local cowbuilder setup (you used sbuild).
This seems not to happen on buildds, as they use sbuilds internal 
resolver.

cowbuilder uses aptitude to resolve Build-Dependencies and fails in the 
same way
your sbuild did:

After that I executed cowbuilder --login to debug further.
`aptitude install libphonon-dev phonon-backend-gstreamer` gives
 The following packages have unmet dependencies:
  phonon-backend-null : Conflicts: phonon-backend which is a virtual package.
 The following actions will resolve these dependencies:

  Keep the following packages at their current version:
 1) libphonon-dev [Not Installed]
 2) phonon-backend-null [Not Installed]
(cowbuilder aborts here).

However, `apt-get install libphonon-dev phonon-backend-gstreamer` works just
fine. Not sure why it tries phonon-backend-null at all (I requested
phonon-backend-gstreamer), but I think this is because libphonon-dev 
depends on
phonon-backend-null | phonon
and not
phonon-backend-null | phonon-backend

The fact that
 aptitude install libphonon-dev phonon-backend-gstreamer phonon
suceeds supports my guess (I hope).

Long mail short conclusion: bug in libphonon-dev, it should depend on -backend,
not on phonon?

Currently rebuilding pyside with libphonon-dev phonon-backend-gstreamer 
installed and phonon purged, to verify that this is what the build-scripts 
expect, but it takes ages.

Regards
Evgeni

-- 
Bruce Schneier can read and understand Perl programs.



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#680922: unblock: libcommons-compress-java/1.4.1-2

2012-07-09 Thread Niels Thykier
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Hi,

libcommons-compress-java has a too weak relation with libxz-java.
This caused a reverse dependency to FTBFS (#680840).  Please note this
unblock depends on the xz-java/1.0-2 freeze exception (#680921).

~Niels

unblock libcommons-compress-java/1.4.1-2



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#606395: [G-I][squeeze-d-i-beta2] wrong keyboard layout in console (correct in X)

2012-07-09 Thread Cyril Brulebois
Samuel Thibault sthiba...@debian.org (09/07/2012):
 But doesn't it work *with* speech synthesis?  (since in that
 case the installer uses text mode from the start)

It works with a netboot-gtk image built today, against wheezy's udebs,
presumably thanks to console-setup's migration during the last run.

I pulled all udebs from src:console-setup based on the -udeb suffix,
which fooled me, and I think the missing package for yesterday's build
was:
-console-setup-pc-ekmap 1.78 all
+console-setup-pc-ekmap 1.80 all

Mraw,
KiBi.


signature.asc
Description: Digital signature


Bug#680923: GtkStyle background color regression patch

2012-07-09 Thread Julien Puydt

Package: libgtk-3-0
Version: 3.4.2-2
Severity: wishlist

I was having strange black boxes in evolution ; after reporting to 
upstream, the bug was closed as a duplicate of :

https://bugzilla.gnome.org/show_bug.cgi?id=671437

That bug reports ends by a developer cherry-picking a gtk+ change from 
another branch into the 3.4 branch :

http://git.gnome.org/browse/gtk+/commit/?h=gtk-3-4id=72feb95edb6ab8c3fac27c0c32afeb2b2f61bd1c

It was applied after 3.4.3 so probably won't be in your packages by 
default -- could you add it anyway? Here is a quilt patch to do that ; I 
tested it and it fixes the issue.


Thanks,

Snark on #debian-science
From: Alexander Larsson al...@redhat.com
From: Alexander Larsson al...@redhat.com
Subject: [PATCH] Handle transparent colors better in GtkStyle emulation
Bug: https://bugzilla.gnome.org/show_bug.cgi?id=671437

It is in fact http://git.gnome.org/browse/gtk+/commit/?h=gtk-3-4id=72feb95edb6ab8c3fac27c0c32afeb2b2f61bd1c

--- a/gtk/deprecated/gtkstyle.c
+++ b/gtk/deprecated/gtkstyle.c
@@ -673,7 +673,7 @@
   break;
 }
 
-  if (color)
+  if (color  color-alpha  0.01)
 {
   dest-pixel = 0;
   dest-red = CLAMP ((guint) (color-red * 65535), 0, 65535);


Bug#680579: unblock: usb-modeswitch-data/20120531-1

2012-07-09 Thread Cyril Brulebois
Didier Raboud o...@debian.org (08/07/2012):
 [Long explanation]

Thanks, appreciated.

 So in that case, the device was previously thought to be uniquely
 identified by its 19d2:0083 vendorID:productID pair but it turned out
 that there is another device, not needing modeswitching, that has the
 same vendorID:productID pair. By specifying the usb Product (uPr)
 attribute (WCDMA), then only the device that needs modeswitching gets
 the red pill.
 
 (This is because most modem-dongles vendors are on crack and use
 identical ProductId's for different products. Don't go hunt for sanity
 there.)

I was afraid of that when I saw the patch.

*gotta love hardware (manufacturers)*

Mraw,
KiBi.


signature.asc
Description: Digital signature


Bug#654958: debian-policy: Document VCS fields.

2012-07-09 Thread Charles Plessy
Le Sun, Jul 08, 2012 at 08:19:12PM -0500, Jonathan Nieder a écrit :
 
 My feedback got no replies, so I can only assume that everyone was so
 awestruck by the suggestions that they were lost for words.

... or assume holidays :)

Thanks a lot for the revised patch.  From my point of view, it is consensual
and ready for being applied, so I second it.

Have a nice day,

-- 
Charles
Tsurumi, Kanagawa, Japan



--
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#680922: unblock: libcommons-compress-java/1.4.1-2

2012-07-09 Thread Niels Thykier
On 2012-07-09 10:49, Niels Thykier wrote:
 Package: release.debian.org
 Severity: normal
 User: release.debian@packages.debian.org
 Usertags: unblock
 
 Hi,
 
 libcommons-compress-java has a too weak relation with libxz-java.
 This caused a reverse dependency to FTBFS (#680840).  Please note this
 unblock depends on the xz-java/1.0-2 freeze exception (#680921).
 
 ~Niels
 
 unblock libcommons-compress-java/1.4.1-2
 
 

Forgot to attach the debdiff in the first email, so here it is.

~Niels

diff -Nru libcommons-compress-java-1.4.1/debian/changelog 
libcommons-compress-java-1.4.1/debian/changelog
--- libcommons-compress-java-1.4.1/debian/changelog 2012-06-21 
06:24:09.0 +0200
+++ libcommons-compress-java-1.4.1/debian/changelog 2012-07-09 
02:54:57.0 +0200
@@ -1,3 +1,16 @@
+libcommons-compress-java (1.4.1-2) unstable; urgency=low
+
+  * Team upload.
+  
+  [ Miguel Landaeta]
+  * Promote dependency on libxz-java from Suggests to Depends.
+(Closes: #680874)
+
+  [ tony mancill ]
+  * Correct broken Vcs-Svn URL.
+
+ -- Miguel Landaeta mig...@miguel.cc  Sun, 08 Jul 2012 15:59:26 -0430
+
 libcommons-compress-java (1.4.1-1) unstable; urgency=medium
 
   * Team upload.
diff -Nru libcommons-compress-java-1.4.1/debian/control 
libcommons-compress-java-1.4.1/debian/control
--- libcommons-compress-java-1.4.1/debian/control   2012-06-18 
01:00:30.0 +0200
+++ libcommons-compress-java-1.4.1/debian/control   2012-07-08 
23:03:27.0 +0200
@@ -14,11 +14,10 @@
 Standards-Version: 3.9.3
 Homepage: http://commons.apache.org/compress/
 Vcs-Browser: 
http://svn.debian.org/wsvn/pkg-java/trunk/libcommons-compress-java/
-Vcs-Svn: svn://svn.debian.org/pkg-java/trunk/libcommons-compress-java
+Vcs-Svn: svn://svn.debian.org/svn/pkg-java/trunk/libcommons-compress-java
 
 Package: libcommons-compress-java
 Architecture: all
-Depends: ${misc:Depends}
-Suggests: libxz-java
+Depends: ${misc:Depends}, libxz-java
 Description: Java API for working with tar, zip and bzip2 files
  Commons Compress defines an API for working with tar, zip and bzip2 files.


Bug#617655: unixodbc: buffer overflow in SQLDriverConnect function

2012-07-09 Thread Jonathan Wiltshire

On 2012-07-08 23:28, Steve Langasek wrote:

On Sun, Jul 08, 2012 at 07:15:10PM -, Jonathan Wiltshire wrote:
Recently you fixed one or more security problems and as a result you 
closed
this bug. These problems were not serious enough for a Debian 
Security
Advisory, so they are now on my radar for fixing in the following 
suites

through point releases:



squeeze (6.0.6) - use target stable


Please prepare a minimal-changes upload targetting each of these 
suites,
and submit a debdiff to the Release Team [0] for consideration. They 
will

offer additional guidance or instruct you to upload your package.


Since when do we expect maintainers to spend their time preparing 
stable
release updates for security bugs that are not important enough to 
have DSAs
issued?  I find this absurd.  If it's worth fixing, it should be 
fixed

through the security process.

This particular bug is a buffer overflow in handling of user-provided 
input
to a non-privileged library.  Don't expect me to prepare a stable 
upload for

this if it's not important enough to get a DSA.


Thanks for the information; tracker updated (and copying 
t...@security.debian.org

for your feedback).

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

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



--
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#679939: [Pkg-kde-extras] Bug#679939: meta-kde-telepathy depends on obsoloete package telepathy-butterfly

2012-07-09 Thread George Kiagiadakis
On Sun, Jul 8, 2012 at 11:41 PM, Laurent Bigonville bi...@debian.org wrote:
 Le Sun, 8 Jul 2012 00:32:33 +0300,
 George Kiagiadakis kiagiadakis.geo...@gmail.com a écrit :

 I don't really see any mention of telepathy-butterfly here:

 Package: kde-telepathy-minimal
 Architecture: all
 Depends: kde-config-telepathy-accounts (= ${ktp:Version}),
  kde-telepathy-approver (= ${ktp:Version}),
  kde-telepathy-auth-handler (= ${ktp:Version}),
  kde-telepathy-contact-list (= ${ktp:Version}),
  kde-telepathy-integration-module (= ${ktp:Version}),
  plasma-widget-telepathy-presence (= ${ktp:Version}),
  kde-telepathy-text-ui (= ${ktp:Version}),
  telepathy-mission-control-5 (= 1:5.12),
  telepathy-connection-manager,
  ${misc:Depends}
 Recommends: telepathy-gabble, telepathy-salut, telepathy-haze,
 telepathy-logger Suggests: telepathy-rakia, telepathy-idle

 Alexander, could dak be confused with telepathy-connection-manager which
 is a virtual package?

 George, I think it's not a good idea (isn't this even against the
 policy?) to only have a virtual package listed in the dependencies, it
 should be something like:
 telepathy-gabble | telepathy-connection-manager or it should
 completely be removed.

It's not against policy, at least according to lintian:
http://lintian.debian.org/tags/virtual-package-depends-without-real-package-depends.html

I know it's not a very good idea, but the question is which CM should
be proposed. Can we assume that most users will want to use gabble?



--
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#679928: systemd: PAM adding faulty module: pam_systemd.so

2012-07-09 Thread Teodor MICU
2012/7/9 Michael Biebl bi...@debian.org:
 Teodor, could you attach the output of debconf-show libpam-runtime please.
 Do you remember editing /etc/pam.d/common-session by hand?

No, I don't think that's the case as showed in a previous message were
a manual execution works properly. The issue is probably that the code
was not executed.

root@frost:~# debconf-show libpam-runtime
  libpam-runtime/override: false
  libpam-runtime/conflicts:
  libpam-runtime/no_profiles_chosen:
  libpam-runtime/profiles: unix, winbind, gnome-keyring, consolekit
  libpam-runtime/you-had-no-auth:
  libpam-runtime/title:

Cheers



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#680317: [Pkg-ia32-libs-maintainers] Bug#680317: Uninstallable due dependency to unexisting package: i32-libs-gtk-i386

2012-07-09 Thread Marco Nenciarini
Il giorno ven, 06/07/2012 alle 11.36 +0200, Goswin von Brederlow ha
scritto:
 On Thu, Jul 05, 2012 at 12:45:55AM +0200, Marco Nenciarini wrote:
  Package: ia32-libs-gtk
  Version: 20120616
  Severity: serious
  
  The package ia32-libs-gtk is uninstallable due to dependency on i32-libs-
  gtk-i386
  (missing 'a' in ia32)
  
  However, even with the correct spelling, I can't find the ia32-libs-gtk-i386
  package anywhere.
 
 Fixed in 20120706:
 
 http://mentors.debian.net/package/ia32-libs-gtk
 http://mentors.debian.net/debian/pool/main/i/ia32-libs-gtk/ia32-libs-gtk_20120706.dsc
 
 Feel free to sponsor the upload.
 
 Note: I've put some packages into Recommends because they are still
 Multi-Arch buggy. This allows ia32-libs-gtk-i386 to be installed and tested
 without them but might break some applications. They should move back to
 depends as the bugs get fixed.
 

I would be happy to help sponsoring, but I see another problem: the
package is listed only amd64 in buildd's Packages-arch-specific file
[1].
So It will not be picked up for i386 and therefore it will not work.

[1]https://buildd.debian.org/quinn-diff/sid/Packages-arch-specific

As a workaround I've searched if there is a clean way to do a mixed-arch
upload (i386+amd64) but I found nothing, so you should ask Bastian Blank
(in cc) who did a mixed upload for ia32-libs version 20120616 [2]

[2] http://packages.qa.debian.org/i/ia32-libs/news/20120630T094734Z.html

Regards,
Marco

-- 
-
|Marco Nenciarini| Debian/GNU Linux Developer - Plug Member |
| mnen...@prato.linux.it | http://www.prato.linux.it/~mnencia   |
-
Key fingerprint = FED9 69C7 9E67 21F5 7D95  5270 6864 730D F095 E5E4






-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#680817: tryton-proteus: FTBFS: ImportError: No module named dateutil.relativedelta

2012-07-09 Thread Mathias Behrle
* Betr.:  Bug#680817: tryton-proteus: FTBFS: ImportError: No module named
  dateutil.relativedelta (Sun, 8 Jul 2012 18:49:30 +0200):

Hello,

I want to ask according to Debian policy [1] about a Pre-Depends with respect to
the following build problem of proteus.

To know the proteus version, setup.py imports __init__.py from subfolder
proteus, which itself imports classes depending on python modules not yet
installed.
The problem is already known [2], the upstream bug report is at [3].

[1] http://www.debian.org/doc/debian-policy/ch-relationships.html
[2] http://www.tryton.org/~irclog/2012-06-28.log.html
[3] https://bugs.tryton.org/issue2705

Should I workaround the problem for wheezy by setting python-dateutils in
Pre-Depends instead of Depends or should I rather wait for the upstream patch,
for which I don't know if and when there will be a solution.

Regards,
Mathias



 Source: tryton-proteus
 Version: 2.2.2-2
 Severity: serious
 Tags: wheezy sid
 User: debian...@lists.debian.org
 Usertags: qa-ftbfs-20120708 qa-ftbfs
 Justification: FTBFS on amd64
 
 Hi,
 
 During a rebuild of all packages in sid, your package failed to build on
 amd64.
 
 Relevant part:
  make[1]: Entering directory `/«PKGBUILDDIR»'
  dh_auto_clean
  Traceback (most recent call last):
File setup.py, line 7, in module
  import proteus
File /«PKGBUILDDIR»/proteus/__init__.py, line 13, in module
  from proteus.pyson import PYSONDecoder
File /«PKGBUILDDIR»/proteus/pyson.py, line 11, in module
  from dateutil.relativedelta import relativedelta
  ImportError: No module named dateutil.relativedelta
  dh_auto_clean: python setup.py clean -a returned exit code 1
  make[1]: *** [override_dh_auto_clean] Error 2
 
 The full build log is available from:

 http://people.debian.org/~lucas/logs/2012/07/08/tryton-proteus_2.2.2-2_unstable.log
 
 A list of current common problems and possible solutions is available at 
 http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!
 
 About the archive rebuild: The rebuild was done on EC2 VM instances from
 Amazon Web Services, using a clean, minimal and up-to-date chroot. Every
 failed build was retried once to eliminate random failures.
 
 
 



-- 

Mathias Behrle
MBSolutions
Gilgenmatten 10 A
D-79114 Freiburg

Tel: +49(761)471023
Fax: +49(761)4770816
http://m9s.biz
UStIdNr: DE 142009020
PGP/GnuPG key availabable from any keyserver, ID: 0x8405BBF6


signature.asc
Description: PGP signature


Bug#679886: open-vm-dkms: Still fails to build modules

2012-07-09 Thread Thijs Kinkhorst
Hi Daniel,

I can reproduce this bug. When building the module, I get:

  /usr/src/linux-headers-3.2.0-3-common/scripts/Makefile.build:44:
  /var/lib/dkms/open-vm-tools/2012.05.21/build/Makefile: No such file or
  directory
  make[3]: *** No rule to make target `/var/lib/dkms/open-vm-tools
  /2012.05.21/build/Makefile'.  Stop.

I tried to add a top-level Makefile to /usr/src/open-vm-tools/2012.05.21/:

  .NOTPARALLEL:

  obj-m = vmblock/ vmci/ vmhgfs/ vmsync/ vmxnet/ vsock/

which results in:

  make: Entering directory `/usr/src/linux-headers-3.2.0-3-amd64'
LD  /var/lib/dkms/open-vm-tools/2012.05.21/build/built-in.o
  /bin/sh: 1: test: -I/usr/src/linux-headers-3.2.0-3-common/arch/x86
  /include: unexpected operator
  Using standalone build system.
  /var/lib/dkms/open-vm-tools/2012.05.21/build/vmblock/Makefile:167:
  Makefile.normal: No such file or directory
  make[4]: *** No rule to make target `Makefile.normal'.  Stop.

Not sure how to resolve that further, I hope you can provide a pointer.

Thanks,
Thijs





--
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#679928: systemd: PAM adding faulty module: pam_systemd.so

2012-07-09 Thread Teodor MICU
2012/7/9 Tollef Fog Heen tfh...@err.no:
 I think what might have happened is an aborted upgrade, which I don't
 think we currently handle correctly.  I'll have to take a look at the
 code in question, though.

My guess is that this problem was caused by a deadlock in the upgrade.
The packages were upgraded and started to execute the post-install
configuration. But one of these packages (clamav-freshclam) has failed
to configure (due to missing init-functions script) and the process
was aborted, thus systemd packages didn't get configured either.

To conclude, I see two problems to get fixed:
- make sure as early as possible on package install/upgrade that the
diversion is removed (probably pre-inst)
- make sure on package removal that the diversion is removed (probably pre-rm).

Cheers



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#680924: awesome: package description review

2012-07-09 Thread Justin B Rye
Package: awesome
Version: 3.4.12-2
Severity: wishlist
Tags: patch

Surprisingly for such a relatively mature and high-profile package,
awesome has several typos and grammar/usage problems in its package
description.  Currently:

 Description: highly configurable, next generation framework window manager 
 for X
^^^ ^
^
It's all grammatical, but while I'm editing things I would also
suggest changing this synopsis, for three reasons.

1) If you're not going to mention dwm, next generation conveys only
   it was newer than something or other else when we wrote this (or
   possibly I'm a huge fan of eighties scifi serials).

2) This framework window manager jargon was specifically invented
   to refer to awesome, so it's not helpful for uninitiated readers.
   Even after reading the docs I'm not sure what it means - is it
   saying its layouts are based on a system of frames, or that
   awesome is a window manager that provides a metaphorical framework
   for doing everyday work, or is it a garbled attempt to say that
   awesome is a window management framework?

3) How many window managers are there in Debian that aren't for X?

  Highly configurable window manager for X. It is primarly targeted at power

Sentence fragment.  Besides, highly configurable was the one thing
I was certain belonged in the short description, so it would be nice
if the long description could start some other way.

Typo: s/primarly/primarily/

What's missing here is any hint at what general family of window
managers awesome falls into - floating, or tiling, or what?  The man
page is relatively informative...

  users, developers and any people dealing with every day computing tasks and
^^^   ^
(I'll also push it towards the debian-l10n-english house style and
insert a Harvard comma here.)

Any people is subtly non-native-speakerish; maybe you were trying
to avoid anybody (and the taboo against singular they).  Users
would fit, but it's repetitive.  Personally I'd just say anyone
and to hell with the taboo, but there are alternatives - for
instance and all those dealing with...

Typo: s/every day/everyday/

  want to have fine-grained control on its graphical environment.
    ^^^  ^^ ^^^
More grammar problems:
 * it's either and wanting or who want;
 * less urgently, the to have is redundant; if they want to have
   control, they want control;
 * on is the wrong preposition (it's control over a thing);
 * what's the antecedent of its?  The window manager?  The version
   of this text on the awesome home page has theirs (presumably a
   typo for their), which implies the answer is the people.

(I could complain at this stage that this is verging on false
advertising - awesome *isn't* for random non-developers who just want
a configurable WM; it's for users who can casually learn a new
object-oriented programming language, and that pretty much rules out
arts graduates like me.  But since it goes on to feature Lua
prominently in the next paragraph I won't bother.)

  .
  awesome is very extensible and programmable using the Lua programming 
 language.
   ^^^   ^   ^^^
Each of the first three paragraphs starts with the name awesome.
This isn't an advert, so you don't need to keep repeating the brand
name so much.

Add another comma (to keep the very associated with extensible
instead of applying to programmable as well).  I would also suggest
changing very to highly.

Repetition of program*; either call awesome scriptable or call
Lua a scripting language (but not both).

  It provides an easily usable and very-well documented API to configure and
   ^^ ^ ^
Another unclear antecedent: is it awesome or Lua?  If it's awesome,
say providing; if it's Lua, say which provides.  Oh - the upstream
version has we!  In that case go for the former.

Easily usable would be more natural as easy-to-use; on the other
hand very-well documented has a surplus hyphen.

  define the behaviour of your window manager.
 ^
Standardising towards en_US, so s/our/or/ - to match the man page!

Throwing in a second person pronoun now seems odd after this
description has referred to the various kinds of user in third person
and tied itself in knots to avoid singular they.  Why not just to
define its behavior?

  .
  awesome also supports tiled window management, multi-head, use XCB instead
  of Xlib for better performance, does not need mouse (can be fully keyboard
  driven) and implements many of the Freedesktop standards.

All of these features need tweaking in one way or another.

 * Saying that awesome also supports tiled window management is
   strange when there has been no mention of what its *primary*
   layout mode is (and even stranger when most of the reviews I find
   on the Internet claim that 

Bug#680925: kerneloops: kernel:[ 3537.314418] invalid opcode: 0000 [#1] SMP

2012-07-09 Thread Seshadri
Package: kerneloops
Version: 0.12+git20090217-1
Severity: important

Intermittent errors in the Terminal as below:
~~
Message from syslogd@sesh2-sec-ml350 at Jul  5 15:39:04 ...
 kernel:[ 3537.314407] [ cut here ]

Message from syslogd@sesh2-sec-ml350 at Jul  5 15:39:04 ...
 kernel:[ 3537.314418] invalid opcode:  [#1] SMP

Message from syslogd@sesh2-sec-ml350 at Jul  5 15:39:04 ...
 kernel:[ 3537.314422] last sysfs file:
/sys/devices/pci:00/:00:02.0/:04:00.0/:05:01.0/:09:00.0/net/eth0/carrier

Message from syslogd@sesh2-sec-ml350 at Jul  5 15:39:04 ...
 kernel:[ 3537.314547] Stack:

Message from syslogd@sesh2-sec-ml350 at Jul  5 15:39:04 ...
 kernel:[ 3537.314564] Call Trace:

Message from syslogd@sesh2-sec-ml350 at Jul  5 15:39:04 ...
 kernel:[ 3537.314696] Code: 83 c3 08 48 83 3b 00 eb ec 48 83 fd 10 0f 86 89 00
00 00 48 89 ef e8 b9 e8 ff ff 48 89 c7 48 8b 00 84 c0 78 13 66 a9 00 c0 75 04
0f 0b eb fe 5b 5d 41 5c e9 8c 54 fd ff 48 8b 4c 24 18 4c 8b 4f



-- System Information:
Debian Release: 6.0.5
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: amd64 (x86_64)

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

Versions of packages kerneloops depends on:
ii  libc6    2.11.3-3    Embedded GNU C Library: Shared lib
ii  libcurl3-gnutls  7.21.0-2.1+squeeze2 Multi-protocol file transfer libra
ii  libdbus-1-3  1.2.24-4+squeeze1   simple interprocess messaging syst
ii  libdbus-glib-1-2 0.88-2.1    simple interprocess messaging syst
ii  libglib2.0-0 2.24.2-1    The GLib library of C routines
ii  libgtk2.0-0  2.20.1-2    The GTK+ graphical user interface 
ii  libnotify1 [libnotif 0.5.0-2 sends desktop notifications to a n

kerneloops recommends no packages.

kerneloops suggests no packages.

-- no debconf information

Bug#678992: RFS: grive/0.1.1+20120619git27g55c0f4e-1 [ITP #675310]

2012-07-09 Thread José Luis Segura Lucas
retitle 678992 grive/0.2.0-1 [ITP #675310]
thanks

Forget about all the patches mess. Upstream has released 0.2.0 version,
which makes unnecessary to apply all those patches.

I just uploaded it to mentors.debian.net [1]. Please, feel free to
comment here or in the grive's page on mentors.debian.net any issue
related to the packaging.

Benoît, are you interested on sponsor this package?

Thanks in advance and best regards.

[1] http://mentors.debian.net/package/grive

-- 
José Luis Segura Lucas




signature.asc
Description: OpenPGP digital signature


Bug#679875: ace-of-penguins: Games crash when trying to view help screen

2012-07-09 Thread Jari Aalto
severity 679875 minor
tags 679875 + unreproducible
thanks

2012-07-02 11:24 Lukas Hofmann lhfl...@gmx.de:
| Architecture: amd64 (x86_64)
| Package: ace-of-penguins
| Version: 1.3-8
| Severity: normal
|
| Dear Maintainer,
|
| Whenever I press F1 or h to view the help screen in any ace-of-penguins
| game it crashes with a Segmentation fault. This happens in all of the
| included games except in canfield, which doesn't react to F1 or h at all.

I tested both in i386 and amd64 but the F1 key works normally; brings up
game info screen.

It's hard to tell what is different in your environemt. Could you:

1. Update all to latest

   apt-get update  apt-get dist-upgrade

2. Try removing the package and installing it fresh

   apt-get --purge remove ace-of-penguins
   apt-get install ace-of-penguins

3. If F1 still brings up segmentation fault, please send strace:

:  /tmp/strace.log
strace -o /tmp/strace.log /usr/games/ace-freecell

4. send *.log as an attachment to this bug report

Until then, downgrading the severity.

Thanks,
Jari



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#680822: libphonon-dev should depend on phonon-backend-null | phonon-backend?

2012-07-09 Thread Evgeni Golov
Yay for packages running a ton of tests and ignoring the results...

On Mon, Jul 09, 2012 at 10:46:04AM +0200, Evgeni Golov wrote:

 Currently rebuilding pyside with libphonon-dev phonon-backend-gstreamer 
 installed and phonon purged, to verify that this is what the build-scripts 
 expect, but it takes ages.

It now built and the tests run just fine (minus the the three tests that 
were already failing on the buildds).

-- 
Bruce Schneier can read and understand Perl programs.



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#680926: tasksel: Typo in bug number included in changelog

2012-07-09 Thread Adrian Lang
Package: tasksel
Version: 3.11
Severity: minor

In the 3.11 changelog entry, bug #68067 is marked as closed, while it actually
should be #680678.

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

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

Versions of packages tasksel depends on:
ii  apt 0.9.7.1
ii  debconf [debconf-2.0]   1.5.45
ii  liblocale-gettext-perl  1.05-7+b1
ii  perl5.14.2-12
ii  tasksel-data3.11

tasksel recommends no packages.

tasksel suggests no packages.

-- debconf information excluded



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#630581: dropbear: Initramfs hook uses wrong path to libnss_*

2012-07-09 Thread Hugh Davenport
Package: initramfs-tools
Version: 0.106
Followup-For: Bug #630581

Just noting that if you add another architecture to your
install then the patch from #20 will fail. Attached is a patch
on top of that.

Cheers,

Hugh

-- Package-specific info:
-- initramfs sizes
-- /proc/cmdline
BOOT_IMAGE=/vmlinuz-3.2.0-2-amd64 
root=/dev/mapper/hugh--desktop--encrypted-root ro quiet

-- resume
RESUME=/dev/mapper/hugh--desktop--encrypted-swap
-- /proc/filesystems
ext4
ext2
ext3
reiserfs
xfs
jfs
msdos
vfat
ntfs
minix
hfs
hfsplus
qnx4
ufs
btrfs
fuseblk

-- lsmod
Module  Size  Used by
pci_stub   12429  1 
vboxpci19066  0 
vboxnetadp 25443  0 
vboxnetflt 23571  0 
vboxdrv   190105  3 vboxnetflt,vboxnetadp,vboxpci
fuse   61981  1 
btrfs 505480  0 
crc32c 12656  1 
libcrc32c  12426  1 btrfs
zlib_deflate   25638  1 btrfs
ufs58774  0 
qnx4   13184  0 
hfsplus71571  0 
hfs45877  0 
minix  27580  0 
ntfs  163839  0 
vfat   17316  0 
msdos  17077  0 
fat45642  2 msdos,vfat
jfs   137196  0 
xfs   594991  0 
reiserfs  192077  0 
ext3  161867  0 
jbd56902  1 ext3
joydev 17266  0 
powernow_k817574  1 
mperf  12453  1 powernow_k8
cpufreq_stats  12866  0 
cpufreq_powersave  12454  0 
cpufreq_conservative13147  0 
cpufreq_userspace  12576  0 
parport_pc 22364  0 
ppdev  12763  0 
lp 17149  0 
parport31858  3 lp,ppdev,parport_pc
rfcomm 33656  0 
bnep   17567  2 
bluetooth 119406  10 bnep,rfcomm
binfmt_misc12957  1 
nfsd  211858  2 
nfs   312191  0 
nfs_acl12511  2 nfs,nfsd
auth_rpcgss37143  2 nfs,nfsd
fscache36739  1 nfs
lockd  67328  2 nfs,nfsd
sunrpc173671  6 lockd,auth_rpcgss,nfs_acl,nfs,nfsd
ext2   59231  1 
loop   22641  0 
firewire_sbp2  17993  0 
arc4   12458  0 
snd_hda_codec_hdmi 30783  1 
snd_hda_codec_via  41160  1 
snd_hda_intel  26345  4 
snd_hda_codec  78031  3 
snd_hda_codec_via,snd_hda_intel,snd_hda_codec_hdmi
snd_hwdep  13186  1 snd_hda_codec
radeon643284  0 
ttm48725  1 radeon
drm_kms_helper 27227  1 radeon
snd_pcm63900  4 snd_hda_codec,snd_hda_intel,snd_hda_codec_hdmi
drm   167670  3 drm_kms_helper,ttm,radeon
zd1211rw   52161  0 
mac80211  192768  1 zd1211rw
sp5100_tco 12900  0 
snd_page_alloc 13003  2 snd_pcm,snd_hda_intel
power_supply   13475  1 radeon
i2c_algo_bit   12841  1 radeon
i2c_piix4  12536  0 
edac_mce_amd   17103  0 
snd_seq45093  0 
i2c_core   23876  5 i2c_piix4,i2c_algo_bit,drm,drm_kms_helper,radeon
snd_seq_device 13176  1 snd_seq
snd_timer  22917  2 snd_seq,snd_pcm
snd52850  16 
snd_timer,snd_seq_device,snd_seq,snd_pcm,snd_hda_codec_via,snd_hwdep,snd_hda_codec,snd_hda_intel,snd_hda_codec_hdmi
edac_core  35258  0 
psmouse64455  0 
k10temp12611  0 
asus_atk0110   17297  0 
cfg80211  137140  2 mac80211,zd1211rw
evdev  17562  9 
serio_raw  12931  0 
processor  28106  1 powernow_k8
pcspkr 12579  0 
rfkill 19012  4 cfg80211,bluetooth
soundcore  13065  1 snd
wmi13243  0 
thermal_sys18040  1 processor
button 12937  0 
ext4  350411  6 
crc16  12343  2 ext4,bluetooth
jbd2   62015  1 ext4
mbcache13065  3 ext4,ext2,ext3
sha256_generic 16797  2 
cryptd 14517  0 
aes_x86_64 16796  12 
aes_generic33026  1 aes_x86_64
cbc12754  6 
dm_crypt   22586  1 
dm_mod 63545  28 dm_crypt
usbhid 36379  0 
hid81288  1 usbhid
uhci_hcd   26865  0 
sd_mod 36136  5 
crc_t10dif 12348  1 sd_mod
ata_generic12479  0 
ohci_hcd   22467  0 
pata_atiixp12736  0 
pata_jmicron   12472  0 
firewire_ohci  35772  0 
firewire_core  48407  2 firewire_ohci,firewire_sbp2

Bug#678356: pts-static-n...@qa.debian.org seems to be broken

2012-07-09 Thread Stephen Gran
This one time, at band camp, Raphael Hertzog said:
 Hi,
 
 (Ccing debian-admin because we need their troubleshooting help)
 
 On Thu, 21 Jun 2012, Ben Hutchings wrote:
  In response to comments on #636010, I'm trying to add static news for
  linux-2.6, linux-kbuild-2.6 and linux-latest-2.6 about their being
  renamed.
 
 It looks like the mail never arrives to its destination. 
 
 They are not in the backup mailbox at least:
 hertzog@quantz:/srv/packages.qa.debian.org/mail$ ls -al 
 archive/incoming-news-static*
 -rw-r- 1 qa qa0  9 juil. 06:57 archive/incoming-news-static
 -rw-r- 1 qa qa17448 18 avril  2010 archive/incoming-news-static.0
 -rw-r- 1 qa qa   327737 18 avril  2010 archive/incoming-news-static.1.gz
 -rw-r- 1 qa qa  1347901 10 avril  2010 archive/incoming-news-static.2.gz
 -rw-r- 1 qa qa   455629  3 avril  2010 archive/incoming-news-static.3.gz
 -rw-r- 1 qa qa   200659 16 août   2006 archive/incoming-news-static.4.gz
 -rw-r- 1 qa qa 34823420 15 août   2006 archive/incoming-news-static.5.gz
 
 (the recent timestamp on the first file is only because I tried creating it 
 to see if it helps)
 
 My own tries have been delivered however:
 Jul  9 08:52:27 mail postfix/smtp[20133]: 7CFC022005D: 
 to=pts-static-n...@qa.debian.org, 
 relay=quantz.debian.org[2607:f8f0:610:4000:216:36ff:fe40:3860]:25, delay=12, 
 delays=0.09/0/11/1.3, dsn=2.0.0, status=sent (250 OK id=1So7pa-00042B-8Z)

2012-07-09 06:52:26 1So7pa-00042B-8Z = raph...@ouaza.com H=(mail.vm.ouaza.com) 
[2a01:e0b:1000:23:5054:ff:fe00:d7] P=esmtp S=1429 
id=20120709065158.ga2...@rivendell.home.ouaza.com
2012-07-09 06:52:27 1So7pa-00042B-8Z = 
/srv/packages.qa.debian.org/mail/archive/incoming-default 
(_static-n...@packages.qa.debian.org) pts-static-n...@qa.debian.org 
R=virt_direct T=address_file QT=1s DT=1s
2012-07-09 06:52:27 1So7pa-00042B-8Z = | 
/srv/packages.qa.debian.org/bin/dispatch.pl 
(_static-n...@packages.qa.debian.org) pts-static-n...@qa.debian.org 
R=virt_direct T=address_pipe QT=1s DT=0s
2012-07-09 06:52:27 1So7pa-00042B-8Z Completed


 Jul  9 09:01:40 mail postfix/smtp[21088]: EA29122005D: 
 to=_static-n...@packages.qa.debian.org, 
 relay=quantz.debian.org[2607:f8f0:610:4000:216:36ff:fe40:3860]:25, delay=10, 
 delays=0.09/0/8.9/1.2, dsn=2.0.0, status=sent (250 OK id=1So7yU-0005AW-A1)

2012-07-09 07:01:39 1So7yU-0005AW-A1 = raph...@ouaza.com H=(mail.vm.ouaza.com) 
[2a01:e0b:1000:23:5054:ff:fe00:d7] P=esmtp S=1447 
id=20120709070112.ga3...@rivendell.home.ouaza.com
2012-07-09 07:01:39 1So7yU-0005AW-A1 = 
/srv/packages.qa.debian.org/mail/archive/incoming-default 
_static-n...@packages.qa.debian.org R=virt_direct T=address_file QT=1s DT=0s
2012-07-09 07:01:39 1So7yU-0005AW-A1 = | 
/srv/packages.qa.debian.org/bin/dispatch.pl 
_static-n...@packages.qa.debian.org R=virt_direct T=address_pipe QT=1s DT=0s
2012-07-09 07:01:39 1So7yU-0005AW-A1 Completed

I don't know what dispatch.pl does, so I'll leave that to you.

As for archiving, it looks to me like the .forward file for _static-news
is not matching because exim is considering -news as a local_part_suffix
rather than a part of the email address.  I'd suggest trying with
_static_news instead and see how it goes?

Cheers,
-- 
 -
|   ,''`.Stephen Gran |
|  : :' :sg...@debian.org |
|  `. `'Debian user, admin, and developer |
|`- http://www.debian.org |
 -


signature.asc
Description: Digital signature


Bug#680924: awesome: package description review

2012-07-09 Thread Julien Danjou
tag 680924 +pending
thanks

On Mon, Jul 09 2012, Justin B Rye wrote:

 Surprisingly for such a relatively mature and high-profile package,
 awesome has several typos and grammar/usage problems in its package
 description. 
[…]

Whoa. Great job Justin, I've nothing to add. :-)
I'm probably the one who wrote that text years ago, and I'm neither a
native English speaker nor a literary person, so it's great you did
that review.

 My tentative recommended version is:

Looks nice, I've commited that.

-- 
Julien Danjou
-- Free Software hacker  freelance
-- http://julien.danjou.info



--
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#680821: libconfig-model-backend-augeas-perl: FTBFS: tests failed

2012-07-09 Thread Dominique Dumont
On Sunday 08 July 2012 19:10:01 Lucas Nussbaum wrote:
 During a rebuild of all packages in sid, your package failed to build on
 amd64.

confirmed. I'll check what's going on.

All the best


-- 
https://github.com/dod38fr/config-model/ -o- http://search.cpan.org/~ddumont/
http://ddumont.wordpress.com/-o-   irc: dod at irc.debian.org



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#670405: ekiga: Ekiga crashes on startup

2012-07-09 Thread Alberto Garcia
On Fri, Jul 06, 2012 at 02:23:22PM +0200, Eugen Dedu wrote:

 Could you please send us the -d 4 output when it crashes?

Here it is, tell me if you need something more.

Versions I'm using:

ekiga 3.2.7-5+b1
libpt2.10.4   2.10.4~dfsg-1
libopal3.10.4 3.10.4~dfsg-3 

Berto
2012/07/09 12:34:21.610   0:26.611  OpalUDP Setting 
interface to 80.186.104.57%ppp0
2012/07/09 12:34:21.610   0:26.611  SIP 
Transaction timers set: retry=0.500, completion=6.000
2012/07/09 12:34:21.612   0:26.612  
VideoOutputCoreConfBridge   Updating video view
2012/07/09 12:34:21.612   0:26.613  
VideoOutputCoreConfBridge   Updating zoom
2012/07/09 12:34:21.613   0:26.613  
VideoOutputCoreConfBridge   Updating Video Settings
2012/07/09 12:34:21.614   0:26.614  
VideoOutputCoreConfBridge   Updating Video Settings
2012/07/09 12:34:21.614   0:26.615  
VideoOutputCoreConfBridge   Updating Video Settings
2012/07/09 12:34:21.614   0:26.615  
VideoOutputCoreConfBridge   Updating Video Settings
2012/07/09 12:34:21.614   0:26.615  
VidInputCoreConfBridge  Updating preview size and fps
2012/07/09 12:34:21.614   0:26.615  VidInputCore
Setting new preview config: 640x480/30
2012/07/09 12:34:21.620   0:26.620  
VidInputCoreConfBridge  Updating preview size and fps
2012/07/09 12:34:21.620   0:26.621  VidInputCore
Setting new preview config: 640x480/30
2012/07/09 12:34:21.626   0:26.626  
VidInputCoreConfBridge  Updating device
2012/07/09 12:34:21.627   0:26.627  VidInputCore
Setting device: USB 2.0 Camera (PTLIB/V4L2)
2012/07/09 12:34:21.627   0:26.627  
GMVideoInputManager_ptlib   Setting Device USB 2.0 Camera (PTLIB/V4L2)
2012/07/09 12:34:21.627   0:26.627  
VidInputCoreConfBridge  Updating device
2012/07/09 12:34:21.627   0:26.627  VidInputCore
Setting device: USB 2.0 Camera (PTLIB/V4L2)
2012/07/09 12:34:21.627   0:26.627  
GMVideoInputManager_ptlib   Setting Device USB 2.0 Camera (PTLIB/V4L2)
2012/07/09 12:34:21.627   0:26.628  
VidInputCoreConfBridge  Updating device
2012/07/09 12:34:21.627   0:26.628  VidInputCore
Setting device: USB 2.0 Camera (PTLIB/V4L2)
2012/07/09 12:34:21.627   0:26.628  
GMVideoInputManager_ptlib   Setting Device USB 2.0 Camera (PTLIB/V4L2)
2012/07/09 12:34:21.628   0:26.628  
VidInputCoreConfBridge  Updating image
2012/07/09 12:34:21.628   0:26.629  
VidInputCoreConfBridge  Updating preview
2012/07/09 12:34:21.628   0:26.629  VidInputCore
Stopping Preview
2012/07/09 12:34:21.629   0:26.629  
AudioOutputCoreConfBridge   Updating device
2012/07/09 12:34:21.629   0:26.629  AudioOutputCore 
Setting device[0]: Default (PTLIB/ALSA)
2012/07/09 12:34:21.629   0:26.629  
GMAudioOutputManager_ptlib  Setting Device[0] Default (PTLIB/ALSA)
2012/07/09 12:34:21.629   0:26.630  
AudioOutputCoreConfBridge   Updating device
2012/07/09 12:34:21.629   0:26.630  AudioOutputCore 
Setting device[1]: Default (PTLIB/ALSA)
2012/07/09 12:34:21.635   0:26.635  
AudioInputCoreConfBridgeUpdating device
2012/07/09 12:34:21.635   0:26.635  AudioInputCore  
Setting device: Default (PTLIB/ALSA)
2012/07/09 12:34:21.635   0:26.635  
GMAudioInputManager_ptlib   Setting Device Default (PTLIB/ALSA)
[Thread 0xef5ceb70 (LWP 11810) exited]
2012/07/09 12:34:21.771   0:26.771  Ekiga version 
3.2.7
2012/07/09 12:34:21.771   0:26.771  OPAL version 
3.10.4
2012/07/09 12:34:21.771   0:26.771  PTLIB version 
2.10.4
2012/07/09 12:34:21.771   0:26.771  GNOME support 
disabled
2012/07/09 12:34:21.771   0:26.771  Accelerated 
rendering support enabled
2012/07/09 12:34:21.771   0:26.771  DBUS support 
enabled
2012/07/09 12:34:21.771   0:26.771  GConf support 
enabled
2012/07/09 12:34:21.771   0:26.771  ESound support 
disabled

Program received signal SIGSEGV, Segmentation fault.
[Switching to Thread 0xef650b70 (LWP 11808)]
0x081f1abf in PStringOptions::SetAt (this=0x85168f8, 

Bug#679875: ace-of-penguins: Games crash when trying to view help screen

2012-07-09 Thread lhfloss
Sorry for sending my reply twice. I did a mistake sending it with my
mail client.

I examined the log-file and found out that some fonts were missing.
After installing the package xfonts-100dpi everything works fine now.

Sorry for making you unnecessary work.



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#680871: dpkg-gencontrol: using substvars in the long description destroys paragraph structure

2012-07-09 Thread Andreas Beckmann
reassign 680871 dpkg-dev 1.16.4.3
found 680871 1.16.7
retitle 680871 dpkg-gencontrol: using substvars in the long description merges 
first and second paragraph
thanks

Reassigning to dpkg-gencontrol which actually applies the substvars.

As a workaround I'm now inserting an empty paragraph between the first 
and second - obviously only the separator after the first paragraph 
gets lost:

Package: test2
Architecture: all
Description: test 2
 paragraph 1
 .
 .
 paragraph 2
 .
 ${alpha}

Andreas





-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#634930: gpa: GPA unusable due to General Assuan error

2012-07-09 Thread Lionel Gamay
Trying to run gpa --disable-x509 issues an error in either 0.7.x or
0.9.0 versions:

v 0.7.x: gpa: unrecognized option '--disable-x509'

v 0.9.0: option parsing failed: Option inconnue --disable-x509

Either version was purged and reinstalled multiple times.

Regards,
Lionel



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#672119: CVE-2011-1658

2012-07-09 Thread Jonathan Wiltshire

On 2012-07-09 07:34, Aurelien Jarno wrote:

On Sun, Jul 08, 2012 at 05:38:41PM -, Jonathan Wiltshire wrote:

Dear maintainer,

Recently you fixed one or more security problems and as a result you 
closed
this bug. These problems were not serious enough for a Debian 
Security
Advisory, so they are now on my radar for fixing in the following 
suites

through point releases:

squeeze (6.0.6) - use target stable



The bug is not present in squeeze (it has been fixed as part of the
upstream fixes in version 2.11.3-1), so there is no need to do an
upload.

Regards,
Aurelien



Thanks, trackers updated.


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

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



--
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#680927: Imagemagick convert caption wrapping

2012-07-09 Thread Matt Cockayne
Package: Imagemagick
Version: 8:6.6.9.7-7
Severity: important

Debian Squeeze 6.0.5
Kernel 2.6.32-5-amd64

Issue: When using the convert binary using the --caption flag the text does
not wrap/resize correctly when restricting the image dimensions and not
specifying a pointsize. This is causing incorrect output in production env


Bug#680928: Imagmagick convert UTF8 non breaking space

2012-07-09 Thread Matt Cockayne
Package: Imagemagick
Version: 8:6.6.0.4-3+squeeze3
Severity: critical

Debian Squeeze 6.0.5
Kernel 2.6.32-5-amd64

Issue: When using the convert binary with the --caption flag, if the text
to be used contains a UTF-8 non-breaking space the convert binary then
enters into a loop and cannot finish. This then consumes CPU usage causing
a loss of perfomance.


Bug#680929: [okular] unable to open PDF file

2012-07-09 Thread Marco Righi
Package: okular
Version: 4:4.8.4-2
Severity: important
Tags: patch

--- Please enter the report below this line. ---
Okular can not open the attached file. This is a provate file, please
use only in order to debug the application.
In ored to open the file I (sigh) switched to Windows, I used Acrobat
Reader and printed it using PDFCreator.

Thanks in advance
Marco Righi

--- System information. ---
Architecture: amd64
Kernel:   Linux 3.2.0-2-amd64

Debian Release: wheezy/sid
  500 wheezy  linux.dropbox.com
  500 testing www.debian-multimedia.org
  500 testing security.debian.org
  500 testing http.us.debian.org
  500 testing ftp.fr.debian.org
  500 stable  repo.wuala.com
  500 stable  ftp2.de.debian.org
  500 stable  apt.spideroak.com
  500 squeeze www.lamaresh.net
  500 oneiric ppa.launchpad.net

--- Package information. ---
Depends (Version) | Installed
=-+-=
kde-runtime   | 4:4.8.4-1
libc6(= 2.4) | 2.13-33
libfreetype6   (= 2.2.1) | 2.4.9-1
libjpeg8  (= 8c) | 8d-1
libkdecore5(= 4:4.8) | 4:4.8.4-3
libkdeui5  (= 4:4.8) | 4:4.8.4-3
libkio5(= 4:4.8) | 4:4.8.4-3
libkparts4 (= 4:4.8) | 4:4.8.4-3
libkprintutils4(= 4:4.8) | 4:4.8.4-3
libkpty4   (= 4:4.8) | 4:4.8.4-3
libokularcore1   (= 4:4.8.4) | 4:4.8.4-2
libphonon4   (= 4:4.2.0) | 4:4.6.0.0-2
libpoppler-qt4-3(= 0.18) | 0.18.4-3
libqca2(= 2.0.2) | 2.0.3-4
libqimageblitz4  (= 1:0.0.4) | 1:0.0.6-4
libqt4-dbus  (= 4:4.6.1) | 4:4.8.2-1
libqt4-svg   (= 4:4.5.3) | 4:4.8.2-1
libqt4-xml   (= 4:4.5.3) | 4:4.8.2-1
libqtcore4   (= 4:4.8.0) | 4:4.8.2-1
libqtgui4(= 4:4.8.0) | 4:4.8.2-1
libsolid4  (= 4:4.8) | 4:4.8.4-3
libspectre1(= 0.2.3) | 0.2.6-2
libstdc++6 (= 4.1.1) | 4.7.1-2
phonon| 4:4.6.0.0-2
zlib1g   (= 1:1.1.4) | 1:1.2.7.dfsg-13


Package's Recommends field is empty.

Suggests  (Version) | Installed
===-+-==
okular-extra-backends (= 4:4.8.4-2) | 4:4.8.4-2
texlive-binaries| 2012.20120530-2+b1
unrar   | 1:4.1.4-1
poppler-data| 0.4.5-8
ghostscript | 9.05~dfsg-6
jovie   | 4:4.8.4-2


cessrighi_12070616541842210.pdf
Description: Adobe PDF document


Bug#680930: /usr/bin/python: Pre-Depend libssl1.0.0

2012-07-09 Thread Paul Szabo
Package: python-minimal
Version: 2.7.3~rc2-1
Severity: normal
File: /usr/bin/python

Attempting to upgrade from squeeze to wheezy, having edited
/etc/apt/sources.list and done apt-get update, I get:

  root@p639:~# apt-get dist-upgrade
  ...
  Selecting previously unselected package libsemanage-common.
  Unpacking libsemanage-common (from .../libsemanage-common_2.1.6-6_all.deb) ...
  Processing triggers for man-db ...
  Processing triggers for gconf2 ...
  /usr/bin/python: error while loading shared libraries: libssl.so.1.0.0: 
cannot open shared object file: No such file or directory
  dpkg: error processing gconf2 (--unpack):
  subprocess installed post-installation script returned error exit status 127
  configured to not write apport reports
  Processing triggers for desktop-file-utils ...
  Processing triggers for menu ...
  Errors were encountered while processing:
   gconf2
  E: Sub-process /usr/bin/dpkg returned an error code (1)
  root@p639:~# 

This leaves the machine in a messed-up state:

  root@p639:~# apt-get install libssl1.0.0
  ...
  E: Unmet dependencies. Try 'apt-get -f install' with no packages (or specify 
a solution).
  root@p639:~# apt-get -f install
  ...
  E: Error, pkgProblemResolver::Resolve generated breaks, this may be caused by 
held packages.
  E: Unable to correct dependencies
  root@p639:~# 

My workaround is to install libssl1.0.0 prior to dist-upgrade. I wonder
if there is a better way, whether adding a pre-depend would help.

Thanks, Paul

Paul Szabo   p...@maths.usyd.edu.au   http://www.maths.usyd.edu.au/u/psz/
School of Mathematics and Statistics   University of SydneyAustralia


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

Kernel: Linux 3.2.19-pk06.01-i386 (SMP w/2 CPU cores)
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)
Shell: /bin/sh linked to /bin/bash

Versions of packages python-minimal depends on:
ii  dpkg   1.16.4.3
ii  python2.7-minimal  2.7.3~rc2-2.1

Versions of packages python-minimal recommends:
ii  python  2.7.3~rc2-1

python-minimal suggests no packages.

-- no debconf information



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#680922: unblock: libcommons-compress-java/1.4.1-2

2012-07-09 Thread Touko Korpela
On Mon, Jul 09, 2012 at 10:53:19AM +0200, Niels Thykier wrote:
 @@ -14,11 +14,10 @@
  Standards-Version: 3.9.3
  Homepage: http://commons.apache.org/compress/
  Vcs-Browser: 
 http://svn.debian.org/wsvn/pkg-java/trunk/libcommons-compress-java/
 -Vcs-Svn: svn://svn.debian.org/pkg-java/trunk/libcommons-compress-java
 +Vcs-Svn: svn://svn.debian.org/svn/pkg-java/trunk/libcommons-compress-java
  
  Package: libcommons-compress-java
  Architecture: all
 -Depends: ${misc:Depends}
 -Suggests: libxz-java
 +Depends: ${misc:Depends}, libxz-java
  Description: Java API for working with tar, zip and bzip2 files
   Commons Compress defines an API for working with tar, zip and bzip2 files.

I think it would be good to list supported filetypes more accurately.
At upstream homepage says:

The Apache Commons Compress library defines an API for working with ar,
cpio, Unix dump, tar, zip, gzip, XZ, Pack200 and bzip2 files.



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#669338: chromium-browser: I can reproduce the problem consistently

2012-07-09 Thread Ronan
Package: chromium-browser
Version: 6.0.472.63~r59945-5+squeeze6
Severity: normal


I have this problem on my PC at work.  To be specific: a short time after
starting Chromium, one or more Chromium processes start to use large
amounts of CPU time.  As time goes by, these runaway processes accumulate.
They don't appear to die by themselves, and the only cure is to kill them
(which Chromium is able to recover from fairly gracefully), or to restart
the entire browser.

I'm having the problem right now, and the following lines are a sample
of what `top' is showing me.

PID USER  PR  NI  VIRT  RES  SHR S %CPU %MEMTIME+  COMMAND
  18512 ronan 20   0 1029m  93m  20m R   64  3.1   3:37.50 chromium-browse
   6732 ronan 20   0  993m  58m  19m S   24  1.9   6:01.23 chromium-browse
  7 root  20   0 000 S   22  0.0   1998:20 ksoftirqd/1
  4 root  20   0 000 R   21  0.0   2000:16 ksoftirqd/0
674 ronan 20   0 19184 1468 1012 S0  0.0   0:02.58 top

(Please take note of the first two process IDs, because I'll be using
them in what follows.)

strace shows that each of these Chromium processes seems to be in
a loop, calling futex over and over.  Here is a terminal transcript
which demonstrates this:

-- BEGINNING OF TRANSCRIPT 
  bash# for pid in 6732 18512; do /usr/bin/time --format='Elapsed time: %E' 
strace -c -p $pid; echo; done
  Process 6732 attached - interrupt to quit
  ^CProcess 6732 detached
  % time seconds  usecs/call callserrors syscall
  -- --- --- - - 
  100.000.000246   0247603123801 futex
0.000.00   0 1   write
0.000.00   0 1 1 restart_syscall
  -- --- --- - - 
  100.000.000246247605123802 total
  Elapsed time: 0:03.06

  Process 18512 attached - interrupt to quit
  ^CProcess 18512 detached
  % time seconds  usecs/call callserrors syscall
  -- --- --- - - 
  100.000.000307   0164488 82244 futex
  -- --- --- - - 
  100.000.000307164488 82244 total
  Elapsed time: 0:01.82

  bash# 
-- END OF TRANSCRIPT --

Here is a small sample of the output of strace -vi -p 18512 

--- BEGINNING OF SAMPLE ---
  [7f6243ed2df5] futex(0x71bf2638, FUTEX_WAKE_PRIVATE, 1) = 0
  [7f6243ed0569] futex(0x71bf2664, 
FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 201, {1341828330, 385995000}, 
) = -1 ETIMEDOUT (Connection timed out)
  [7f6243ed2df5] futex(0x71bf2638, FUTEX_WAKE_PRIVATE, 1) = 0
  [7f6243ed0569] futex(0x71bf2664, 
FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 203, {1341828330, 385995000}, 
) = -1 ETIMEDOUT (Connection timed out)
  [7f6243ed2df5] futex(0x71bf2638, FUTEX_WAKE_PRIVATE, 1) = 0
  [7f6243ed0569] futex(0x71bf2664, 
FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 205, {1341828330, 385995000}, 
) = -1 ETIMEDOUT (Connection timed out)
--- END OF SAMPLE -

I first noticed this problem on Monday, July 2nd.  (Some supplementary
facts, which might be helpful: firstly, I wasn't at work on the previous
2 days, so I can't say whether the problem would have manifested itself
if I had been using my PC.  Secondly, my time zone is GMT+01:00.)

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

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

Versions of packages chromium-browser depends on:
ii  chromium-br 6.0.472.63~r59945-5+squeeze6 page inspector for the chromium-br
ii  libasound2  1.0.23-2.1   shared library for ALSA applicatio
ii  libatk1.0-0 1.30.0-1 The ATK accessibility toolkit
ii  libbz2-1.0  1.0.5-6+squeeze1 high-quality block-sorting file co
ii  libc6   2.11.3-3 Embedded GNU C Library: Shared lib
ii  libcairo2   1.8.10-6 The Cairo 2D vector graphics libra
ii  libcups21.4.4-7+squeeze1 Common UNIX Printing System(tm) - 
ii  libdbus-1-3 1.2.24-4+squeeze1simple interprocess messaging syst
ii  libdbus-gli 0.88-2.1 simple interprocess messaging syst
ii  libevent-1. 1.4.13-stable-1  An asynchronous event notification
ii  libexpat1   2.0.1-7  XML parsing C library - runtime li
ii  libfontconf 2.8.0-2.1generic font configuration library
ii  libfreetype 2.4.2-2.1+squeeze4   

Bug#680344: FTBFS: cp: cannot stat `estraierpure.jar': No such file or directory

2012-07-09 Thread Satoru KURASHIKI
On Thu, Jul 5, 2012 at 5:05 PM, KURASHIKI Satoru lur...@gmail.com wrote:
 Package: hyperestraier
 Severity: serious
 Justification: fails to build from source (but built successfully in the past)

 Some architectures also need to drop building Java binding:

No, it's not true above:
These build failures are raised because splitting *-arch and *-indep
in debian/rules
is insufficient.
So, I will relocate them to merge into *-arch only (because some control file
assumed that build is done for both of them).

Though I have trouble with qemubuilder to test results of this change,
It will be
closed soon.

regards,
-- 
KURASHIKI Satoru



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#680931: libarmadillo-dev: trivial program fails to compile

2012-07-09 Thread Jet Holloway
Package: libarmadillo-dev
Version: 1:3.2.3+dfsg-1
Severity: grave
Tags: upstream
Justification: renders package unusable

Dear Maintainer,

I just upgraded libarmadillo-dev and libarmadillo3 from version 3.2.2+dfsg-1
to 3.2.3+dfsg-1, which caused a program I was working on to fail to compile.
When I removed 3.2.3 and reinstalled 3.2.2 the problem disappeared.


The following trivial program also causes the error:
#include armadillo
int main()
{
return 0;
}


When I try to compile this program with g++ armadillo_bug.cpp, I get these
errors:

In file included from /usr/include/armadillo:141:0,
from armadillo_bug.cpp:2:
/usr/include/armadillo_bits/Mat_bones.hpp:545:26: error: no members matching 
‘arma::MateT::operator=’ in ‘class arma::MateT’
/usr/include/armadillo_bits/Mat_bones.hpp:546:27: error: no members matching 
‘arma::MateT::operator()’ in ‘class arma::MateT’
In file included from /usr/include/armadillo:142:0,
from armadillo_bug.cpp:2:
/usr/include/armadillo_bits/Col_bones.hpp:175:27: error: no members matching 
‘arma::ColeT::operator()’ in ‘class arma::ColeT’
In file included from /usr/include/armadillo:143:0,
from armadillo_bug.cpp:2:
/usr/include/armadillo_bits/Row_bones.hpp:173:27: error: no members matching 
‘arma::RoweT::operator()’ in ‘class arma::RoweT’


I am using gcc 4.7.1-2.
I have also downloaded armadillo-3.2.3.tar.gz from the armadillo website and
tried including that header file in the trivial program. This also failed to
compile.


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

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

Versions of packages libarmadillo-dev depends on:
ii  libarmadillo3  1:3.2.3+dfsg-1

libarmadillo-dev recommends no packages.

Versions of packages libarmadillo-dev suggests:
pn  libitpp-dev  none

-- no debconf information



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#680817: tryton-proteus: FTBFS: ImportError: No module named dateutil.relativedelta

2012-07-09 Thread Jakub Wilk

* Mathias Behrle mathi...@m9s.biz, 2012-07-09, 11:17:
I want to ask according to Debian policy [1] about a Pre-Depends with 
respect to the following build problem of proteus.


To know the proteus version, setup.py imports __init__.py from 
subfolder proteus, which itself imports classes depending on python 
modules not yet installed.

The problem is already known [2], the upstream bug report is at [3].

[1] http://www.debian.org/doc/debian-policy/ch-relationships.html
[2] http://www.tryton.org/~irclog/2012-06-28.log.html
[3] https://bugs.tryton.org/issue2705

Should I workaround the problem for wheezy by setting python-dateutils 
in Pre-Depends instead of Depends or should I rather wait for the 
upstream patch, for which I don't know if and when there will be a solution.


No. If a package is needed at built time, then you put it in 
Build-Depends. Pre-Depends has nothing to do with your problem.


--
Jakub Wilk



--
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#627434: ATENÇÃO ATENÇÃO

2012-07-09 Thread WEBMAIL UPDATE TEAM
Caro usuário E-mail,

Sua caixa de correio excedeu seu limite, o seu webmail está sendo
executado 99,7% do seu limite de cota de 100%. Você não pode enviar ou
receber e-mail corretamente até que você tenha atualizado e actualizar a
sua conta de webmail. Para atualizar sua conta de webmail, clique no link
abaixo e cole no seu navegador para solicitar a atualização.

http://www.mechanicsvilleunitedsoccer.com/FormCreator/use/advertise/form1.html

Estamos sinceramente desculpas por qualquer inconveniente que isso possa
causar-lhe, nós tendemos a servi-lo melhor.

Obrigado por sua cooperação.
Webmail Equipe Update.





--
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#680932: file-roller: bad encoding as file-roller used 7z instead of 7za when decompressing zip files made under MacOSX

2012-07-09 Thread Mahendra TALLUR
Package: file-roller
Version: 3.4.2-1
Severity: normal

Dear Maintainer,

this bug occurs when decompressing zip files made under MacOSX (latest 
version), which contain some UTF-8 characters. For instance, it occurs with a 
ZIP file containing japanese characters made under a French OSX installation, 
which is in turn extracted under my system (French locale, up to date Wheezy).

What is important, is that, encoding is detected properly when using 7za from 
the commandline or when using unzip, but not when using 7z, which is summoned 
by file-roller by default as of today.

The bad encoding both affects the file listing in file-roller itself, and the 
resulting files after extracting the archive. I exchanged a couple of emails 
with the p7zip maintainer who indicated that the behaviour is expected from 7z. 

Would it be possible to depend on 7za instead of 7a ? Would there be some 
unforeseen consequences ? I think it's quite important for a stable release, as 
there are quite a few people using OSX likely to make .zip files with UTF-8 
characters.

Best regards and thanks a lot for reading and all your work !



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

Kernel: Linux 3.2.0-3-amd64 (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

Versions of packages file-roller depends on:
ii  bzip21.0.6-3
ii  dconf-gsettings-backend [gsettings-backend]  0.12.1-2
ii  libc62.13-33
ii  libcairo21.12.2-2
ii  libgdk-pixbuf2.0-0   2.26.1-1
ii  libglib2.0-0 2.32.3-1
ii  libgtk-3-0   3.4.2-2
ii  libmagic15.11-1
ii  libnautilus-extension1a  3.4.2-1
ii  libpango1.0-01.30.0-1
ii  nautilus-data3.4.2-1
ii  p7zip-full   9.20.1~dfsg.1-4

Versions of packages file-roller recommends:
ii  gnome-icon-theme  3.4.0-2
ii  gvfs  1.12.3-1+b1

Versions of packages file-roller suggests:
pn  arj  none
ii  binutils 2.22-6.1
ii  cpio 2.11-8
pn  lha  none
pn  lzip none
pn  lzop none
pn  ncompressnone
pn  rpm2cpio none
pn  rzip none
pn  sharutilsnone
pn  unacenone
pn  unalznone
ii  unrar1:4.1.4-1
ii  unzip6.0-6
ii  xz-utils [lzma]  5.1.1alpha+20120614-1
pn  zip  none
pn  zoo  none

-- no debconf information



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#680933: emacs24: a left-click changes the primary selection (stolen on mark deactivation)

2012-07-09 Thread Vincent Lefevre
Source: emacs24
Version: 24.1+1-2
Severity: important
Tags: upstream fixed-upstream patch
Forwarded: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=11772

Emacs 24 has an important and very annoying regression: a left-click
changes the primary selection, meaning that what is pasted is not
always what is expected (possibly sensitive information!).

To reproduce the bug:

1. Run emacs -Q under X.
2. Select something in the Emacs window, e.g. This buffer.
3. Select something in some other application that supports the
   PRIMARY selection, e.g. xterm.
4. Optional: paste the PRIMARY selection somewhere (but not in the
   Emacs window opened above). As expected, one can see that the
   selection done in (3) is pasted.
5. Click somethere in the Emacs window, with the left button.
   As expected, the selection is no longer highlighted.
6. Paste the PRIMARY selection somewhere: it is the one from Emacs
   (e.g. This buffer), i.e. in (2), that is pasted instead of the
   most recent PRIMARY selection from (3).

This bug has been fixed upstream in the trunk:

  http://bzr.savannah.gnu.org/lh/emacs/trunk/revision/108950

and the patch (attached) seems to work fine against the Debian
package.

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

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

-- no debconf information
--- lisp/simple.el  2012-07-07 09:33:28 +
+++ lisp/simple.el  2012-07-08 06:09:21 +
@@ -3863,7 +3863,11 @@
   (cond (saved-region-selection
 (x-set-selection 'PRIMARY saved-region-selection)
 (setq saved-region-selection nil))
-   ((/= (region-beginning) (region-end))
+   ;; If another program has acquired the selection, region
+   ;; deactivation should not clobber it (Bug#11772).
+   ((and (/= (region-beginning) (region-end))
+ (or (x-selection-owner-p 'PRIMARY)
+ (null (x-selection-exists-p 'PRIMARY
 (x-set-selection 'PRIMARY
  (buffer-substring-no-properties
   (region-beginning)


Bug#582704: xcompmgr does not properly resize chromium/google-chrome window

2012-07-09 Thread Pedro R
Package: xcompmgr
Version: 1.1.5-1
Followup-For: Bug #582704

Hi,

the new version 1.1.6 fixes this problem.
Please see http://code.google.com/p/chromium/issues/detail?id=26598.

Can you please upload the new version to go into wheezy?
Please let me know if you need any help.

Thanks in advance!
Pedro



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

Kernel: Linux 2.6.39.14-botto-toi-kdb-pax (SMP w/4 CPU cores; PREEMPT)
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages xcompmgr depends on:
ii  libc6   2.13-33
ii  libx11-62:1.5.0-1
ii  libxcomposite1  1:0.4.3-2
ii  libxdamage1 1:1.1.3-2
ii  libxfixes3  1:5.0-4
ii  libxrender1 1:0.9.7-1

xcompmgr recommends no packages.

xcompmgr suggests no packages.

-- no debconf information



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#664463: /conf/conf.d/cryptroot is missing after fresh install

2012-07-09 Thread Alexander Gattin
Hello,

After I installed
debian-live-6.0.4-i386-rescue.iso on a notebook,
the first reboot failed with cannot find root
device message.

I checked initrd.img-2.6.32-5-486 and
initrd.img-2.6.32-5-686 and found that
/conf/conf.d/cryptroot was missing.

Also, /etc/crypptab on root filesystem is empty
(header only).

P.S.

I used rescue mode of the CD, generated proper
entry for sda5_crypt in /etc/crypptab, and ran
dpkg-reconfigure cryptsetup to regenerate both
initrd images in order for this new install to
boot at all.

-- 
With best regards,
xrgtn


signature.asc
Description: Digital signature


Bug#680934: linux-image-3.2.0-2-amd64: sch5636 module not built by default

2012-07-09 Thread Urs Ganse
Package: linux-2.6
Version: 3.2.16-1
Severity: wishlist

Dear Maintainer,

sensors-detect of the lm-sensors suite detected that the sch5636 module
would be the approprite driver for the sensor chip of my motherboard
(a common Fujitsu Esprimo board).
This driver is part of the upstream kernel since 3.1.something, but not
yet being shipped as a module in the default debian kernel packages.

Please consider adding CONFIG_SENSORS_SCH5636 to the default debian
kernel configuration.

Thanks,

//Urs Ganse

-- Package-specific info:
** Version:
Linux version 3.2.0-2-amd64 (Debian 3.2.16-1) (debian-ker...@lists.debian.org) 
(gcc version 4.6.3 (Debian 4.6.3-1) ) #1 SMP Mon Apr 30 05:20:23 UTC 2012

** Command line:
BOOT_IMAGE=/boot/vmlinuz-3.2.0-2-amd64 
root=UUID=89b24e36-b686-490d-9db1-5b33a164567c ro quiet

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

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

Versions of packages linux-image-3.2.0-2-amd64 depends on:
ii  debconf [debconf-2.0]   1.5.40
ii  initramfs-tools [linux-initramfs-tool]  0.102 
ii  linux-base  3.3   
ii  module-init-tools   3.16-1

Versions of packages linux-image-3.2.0-2-amd64 recommends:
ii  firmware-linux-free  3.1

Versions of packages linux-image-3.2.0-2-amd64 suggests:
pn  grub-pc1.99-12
pn  linux-doc-3.2  none 

Versions of packages linux-image-3.2.0-2-amd64 is related to:
pn  firmware-atherosnone
pn  firmware-bnx2   none
pn  firmware-bnx2x  none
pn  firmware-brcm80211  none
pn  firmware-intelwimax none
pn  firmware-ipw2x00none
pn  firmware-ivtv   none
pn  firmware-iwlwifinone
pn  firmware-libertas   none
pn  firmware-linux  none
pn  firmware-linux-nonfree  0.36  
pn  firmware-myricomnone
pn  firmware-netxen none
pn  firmware-qlogic none
pn  firmware-ralink none
pn  firmware-realtek0.36  
pn  xen-hypervisor  none

-- debconf information excluded



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#664463: /conf/conf.d/cryptroot is missing after fresh install

2012-07-09 Thread Alexander Gattin
On Mon, Jul 09, 2012 at 01:58:46PM +0300,
Alexander Gattin wrote:
 I used rescue mode of the CD, generated proper
 entry for sda5_crypt in /etc/crypptab, and ran
 dpkg-reconfigure cryptsetup to regenerate both
 initrd images

only first (686) one was regenerated, so I ran
update-initramfs -u -k 2.6.32-5.484 too.

Now it boots.

-- 
With best regards,
xrgtn


signature.asc
Description: Digital signature


Bug#680317: [Pkg-ia32-libs-maintainers] Bug#680317: Bug#680317: Uninstallable due dependency to unexisting package: i32-libs-gtk-i386

2012-07-09 Thread Thijs Kinkhorst
On Mon, July 9, 2012 11:09, Marco Nenciarini wrote:
 I would be happy to help sponsoring, but I see another problem: the
 package is listed only amd64 in buildd's Packages-arch-specific file
 [1].
 So It will not be picked up for i386 and therefore it will not work.

 [1]https://buildd.debian.org/quinn-diff/sid/Packages-arch-specific

 As a workaround I've searched if there is a clean way to do a mixed-arch
 upload (i386+amd64) but I found nothing, so you should ask Bastian Blank
 (in cc) who did a mixed upload for ia32-libs version 20120616 [2]

I would recommend against sponsoring it in current form since the
following fix was already done in 20120702:
   * Fix typo in ia32-libs-gtk-i386 dependency. (Closes: #680317)
and the changelog entry for that version also misses (this is due to a
race condition between Goswin and me; and me not having git commit
access).


Thijs





--
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#680935: jbigkit: several compiler warnings on amd64

2012-07-09 Thread Colin Watson
Package: jbigkit
Version: 2.0-2
Severity: normal
Tags: patch
User: ubuntu-de...@lists.ubuntu.com
Usertags: origin-ubuntu ubuntu-patch quantal

I got the Ubuntu security team to review jbigkit
(https://bugs.launchpad.net/ubuntu/+source/jbigkit/+bug/993304), since
image processing libraries often end up being attack vectors one way or
another.  Jamie commented on some compiler warnings that show up.
Here's a patch to fix them.

Note that I've used some C99 printf length modifiers (z and t), since
those are the most precise way to specify the types.  This is fine for
Debian, but I don't know whether upstream is happy to rely on C99; if
not, they might have to use casts or something instead.

  * Fix a number of compiler warnings per feedback from Ubuntu security team
(LP: #993304).

diff -Nru jbigkit-2.0/debian/patches/series jbigkit-2.0/debian/patches/series
--- jbigkit-2.0/debian/patches/series   2012-04-09 10:25:02.0 +0100
+++ jbigkit-2.0/debian/patches/series   2012-07-09 11:11:28.0 +0100
@@ -1,3 +1,4 @@
 allNewMainMakefile.diff
 pbmtoolsMakefile.diff
 useLibtool.diff
+warnings.diff
diff -Nru jbigkit-2.0/debian/patches/warnings.diff 
jbigkit-2.0/debian/patches/warnings.diff
--- jbigkit-2.0/debian/patches/warnings.diff1970-01-01 01:00:00.0 
+0100
+++ jbigkit-2.0/debian/patches/warnings.diff2012-07-09 11:57:52.0 
+0100
@@ -0,0 +1,263 @@
+Subject: Fix several compiler warnings
+Author: Colin Watson cjwat...@ubuntu.com
+Forwarded: no
+
+Index: b/libjbig/tstcodec.c
+===
+--- a/libjbig/tstcodec.c
 b/libjbig/tstcodec.c
+@@ -399,7 +399,7 @@
+   for (i = 0; i  16 * 16  !trouble; i++) {
+ pix = arith_decode(sd, (t82cx[i  4]  ((15 - i)  15))  1);
+ if (pix  0) {
+-  printf(Problem at pixel %ld, byte %d.\n\n,
++  printf(Problem at pixel %ld, byte %td.\n\n,
+i+1, sd-pscd_ptr - sd-pscd_end);
+   trouble++;
+   break;
+@@ -411,7 +411,7 @@
+ }
+   }
+   if (!trouble  sd-pscd_ptr != sd-pscd_end - 2) {
+-printf(%d bytes left after decoder finished.\n\n,
++printf(%td bytes left after decoder finished.\n\n,
+  sd-pscd_end - sd-pscd_ptr - 2);
+ trouble++;
+   }
+@@ -439,7 +439,7 @@
+   pix = arith_decode(sd, (t82cx[i  4]  ((15 - i)  15))  1);
+ }
+ if (pix  0) {
+-  printf(Problem at pixel %ld, byte %d.\n\n,
++  printf(Problem at pixel %ld, byte %td.\n\n,
+i+1, sd-pscd_ptr - sd-pscd_end);
+   trouble++;
+   break;
+@@ -451,7 +451,7 @@
+ }
+   }
+   if (!trouble  sd-pscd_ptr != sd-pscd_end - 2) {
+-printf(%d bytes left after decoder finished.\n\n,
++printf(%td bytes left after decoder finished.\n\n,
+  sd-pscd_end - sd-pscd_ptr - 2);
+ trouble++;
+   }
+Index: b/libjbig/tstcodec85.c
+===
+--- a/libjbig/tstcodec85.c
 b/libjbig/tstcodec85.c
+@@ -334,7 +334,7 @@
+   for (i = 0; i  16 * 16  !trouble; i++) {
+ pix = arith_decode(sd, (t82cx[i  4]  ((15 - i)  15))  1);
+ if (pix  0) {
+-  printf(Problem at pixel %ld, byte %d.\n\n,
++  printf(Problem at pixel %ld, byte %td.\n\n,
+i+1, sd-pscd_ptr - sd-pscd_end);
+   trouble++;
+   break;
+@@ -346,7 +346,7 @@
+ }
+   }
+   if (!trouble  sd-pscd_ptr != sd-pscd_end - 2) {
+-printf(%d bytes left after decoder finished.\n\n,
++printf(%td bytes left after decoder finished.\n\n,
+  sd-pscd_end - sd-pscd_ptr - 2);
+ trouble++;
+   }
+@@ -374,7 +374,7 @@
+   pix = arith_decode(sd, (t82cx[i  4]  ((15 - i)  15))  1);
+ }
+ if (pix  0) {
+-  printf(Problem at pixel %ld, byte %d.\n\n,
++  printf(Problem at pixel %ld, byte %td.\n\n,
+i+1, sd-pscd_ptr - sd-pscd_end);
+   trouble++;
+   break;
+@@ -386,7 +386,7 @@
+ }
+   }
+   if (!trouble  sd-pscd_ptr != sd-pscd_end - 2) {
+-printf(%d bytes left after decoder finished.\n\n,
++printf(%td bytes left after decoder finished.\n\n,
+  sd-pscd_end - sd-pscd_ptr - 2);
+ trouble++;
+   }
+Index: b/pbmtools/jbgtopbm.c
+===
+--- a/pbmtools/jbgtopbm.c
 b/pbmtools/jbgtopbm.c
+@@ -110,7 +110,7 @@
+   for (i = 0; i  len  i  max; i++)
+ fprintf(f, %02x , p[i]);
+   if (len  i)
+-fprintf(f, ... %d bytes total, len);
++fprintf(f, ... %zd bytes total, len);
+   fprintf(f, \n);
+ }
+ 
+@@ -134,7 +134,7 @@
+   /* read BIH */
+   read_file(bie, buflen, len, fin);
+   if (len  20) {
+-fprintf(f, Error: Input file is %d  20 bytes long and therefore 
++fprintf(f, Error: Input file is %zd  20 bytes long and therefore 
+   does not contain an intact BIE header!\n, len);
+ return;
+   }
+@@ -188,18 +188,18 @@
+   == (JBG_DPON | JBG_DPPRIV))
+ p += 1728;  /* skip DPTABLE */
+   if (p  bie + len) {
+-fprintf(f, Error: Input file is %d  20+1728 

Bug#616308: Also affects Iceweasel and Gnome Shell animations

2012-07-09 Thread Mahen
Not sure it's 100% relevant, but in case : as of today (using Nvidia 
drivers and wheezy with libcairo2 1.12.2-2) I noticed that minimizing / 
restoring the Icedove window, when it displays a mail, is jerky (slight 
but visible delay), which used to happen as well in Debian Squeeze when 
using libcairo2 from the Mozilla backports. At that time I used to work 
around it by installing a libcairo2 from Ubuntu. (only using wheezy 
repos now)


Strangely, I didn't notice any issue with Iceweasel, but I didn't 
perform any scientific benchmarking.


Cheers !



--
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#680785: unblock: xen/4.1.3~rc1+hg-20120614.a9c0a89c08f2-4

2012-07-09 Thread Bastian Blank
On Mon, Jul 09, 2012 at 12:23:23AM +0200, Cyril Brulebois wrote:
 Bastian Blank wa...@debian.org (08/07/2012):
 Thanks for the extra ping (still had your earlier mails unread).
 
  unblock xen/4.1.3~rc1+hg-20120614.a9c0a89c08f2-4
  
  xen (4.1.3~rc1+hg-20120614.a9c0a89c08f2-4) unstable; urgency=low
  
* Add Build-Using info to xen-utils package.
 I guess that's what triggered the dpkg versioned build-dep addition?

Should have been dpkg-dev. Will be fixed.

 I see this change too, not sure what it does:
 | (debian/arch/defines):
 | -featuresets:

Workaround for a breakage in linux-support that I fixed there and forgot
about.

 I'm tempted to unblock this package, but I'm a bit uncomfortable with
 the changes to maintainer scripts (not familiar with the possible
 subtleties in this area), so I'd be glad if some other team members
 could look into those.

I did the corresponding changes in linux for build-arch support.

Bastian

-- 
Well, Jim, I'm not much of an actor either.



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#680317: [Pkg-ia32-libs-maintainers] Bug#680317: Uninstallable due dependency to unexisting package: i32-libs-gtk-i386

2012-07-09 Thread Bastian Blank
On Mon, Jul 09, 2012 at 11:09:42AM +0200, Marco Nenciarini wrote:
 I would be happy to help sponsoring, but I see another problem: the
 package is listed only amd64 in buildd's Packages-arch-specific file
 [1].
 So It will not be picked up for i386 and therefore it will not work.

debuild -ai386 -B works pretty good.

 As a workaround I've searched if there is a clean way to do a mixed-arch
 upload (i386+amd64) but I found nothing, so you should ask Bastian Blank
 (in cc) who did a mixed upload for ia32-libs version 20120616 [2]

No workaround. mergechanges combines changes files from different
builds.

Bastian

-- 
Ahead warp factor one, Mr. Sulu.



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#680834: ipadic: FTBFS: debian/utf8dict: 37: debian/utf8dict: /usr/lib/chasen/makemat: not found

2012-07-09 Thread Evgeni Golov

Hi,

this is due to multiarch'ed chasen (since 2.4.5-1) and thus makemat 
being in /usr/lib/triplet/chasen/ and not /usr/lib/chasen where the 
script expects it to be.

Regards
Evgeni

-- 
Bruce Schneier can read and understand Perl programs.



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#680317: [Pkg-ia32-libs-maintainers] Bug#680317: Bug#680317: Uninstallable due dependency to unexisting package: i32-libs-gtk-i386

2012-07-09 Thread Marco Nenciarini
Il giorno lun, 09/07/2012 alle 13.08 +0200, Thijs Kinkhorst ha scritto:
 On Mon, July 9, 2012 11:09, Marco Nenciarini wrote:
  I would be happy to help sponsoring, but I see another problem: the
  package is listed only amd64 in buildd's Packages-arch-specific file
  [1].
  So It will not be picked up for i386 and therefore it will not work.
 
  [1]https://buildd.debian.org/quinn-diff/sid/Packages-arch-specific
 
  As a workaround I've searched if there is a clean way to do a mixed-arch
  upload (i386+amd64) but I found nothing, so you should ask Bastian Blank
  (in cc) who did a mixed upload for ia32-libs version 20120616 [2]
 
 I would recommend against sponsoring it in current form since the
 following fix was already done in 20120702:
* Fix typo in ia32-libs-gtk-i386 dependency. (Closes: #680317)
 and the changelog entry for that version also misses (this is due to a
 race condition between Goswin and me; and me not having git commit
 access).

You are absolutely right.

However, I think it's important to find a way to solve the problem of
missing i386 packages, because at the moment both the ia32-libs and
ia32-libs-gtk packages are unusable for the majority of users.

Regards,
Marco


-- 
-
|Marco Nenciarini| Debian/GNU Linux Developer - Plug Member |
| mnen...@prato.linux.it | http://www.prato.linux.it/~mnencia   |
-
Key fingerprint = FED9 69C7 9E67 21F5 7D95  5270 6864 730D F095 E5E4






-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#680936: package description too historical

2012-07-09 Thread Erik Esterer
Package: fonts-gfs-neohellenic
Version: 1.1-4
Severity: wishlist

Dear Fonts Task Force,

while translating the package description of fonts-gfs-neohellenic I checked 
the descriptions of fonts-gfs-* packages and I think they are too historic. 
E.g. the description of fonts-gfs-neohellenic[1] has the most important 
information (What does it look like? Which weights?) hidden in a long text. 
Consider the following shortened version:

New Greek font family with matching Latin

New Hellenic is a round, and almost monoline Greek font family. It consists of 
several weights (normal, italic, bold and bold italic) as well as a latin 
version.
..
It was originally designed 1927 by Victor Scholderer and cut by the Lanston 
Monotype Corporation. It is the revival of a type which had first appeared in 
1492 in the edition of Macrobius, ascribable to the printing shop of Giovanni 
Rosso (Joannes Rubeus) in Venice. The Greek Font Society digitized the typeface 
(1993-1994) funded by the Athens Archeological Society with the addition of a 
new set of epigraphical symbols.

I wouldn't mind omitting the second paragraph as well.

Regards
Erik

PS: I intend to review the other fonts-gfs-* packages as well, after discussing 
this one :)

[1] https://ddtp.debian.net/ddt.cgi?desc_id=62202



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#680885: arch-dependent files in Multi-Arch: same package

2012-07-09 Thread Hilko Bengen
So, the only changes between the files seem to be date strings in the
manpages created by pod2man.

I guess I should modify the build sripts to explicitly specify a date.
Are there any recommendations from which source the date string should
be taken?

Cheers,
-Hilko



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



  1   2   3   4   5   >