Bug#708963: Support tests that want the recommends to be installed

2013-11-19 Thread Martin Pitt
Hey Joachim,

Joachim Breitner [2013-05-19 21:52 +0200]:
> I am designing a test right now, and I would have to add a large number
> of packages of the tested package Recommends to the test dependencies.
> As I want to test „If this package and all its recommends are installed,
> then foo works.“, this is a counter-productive duplication.
> 
> It would be great if the test could depend on „foo and all its
> recommended packages“ somehow.

This could be done a new restriction preferrably, as I don't want to
introduce a magic syntax into Depends: which would render it
incompatible with apt.

This is currently blocked as adt-run currently runs
/usr/lib/pbuilder/pbuilder-satisfydepends-classic, which doesn't allow
specifying additional apt options. We have another request
(https://launchpad.net/bugs/1205110) to drop the pbuilder dependency,
so we could potentially do the parsing ourselves and call apt-get
directly. At that point, we can also add the APT::Install-Recommends
option.

Thanks,

Martin
-- 
Martin Pitt| http://www.piware.de
Ubuntu Developer (www.ubuntu.com)  | Debian Developer  (www.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#730015: libjs-jquery-ui: New upstream release

2013-11-19 Thread Patrick Matthäi
Package: libjs-jquery-ui
Version: 1.10.1+dfsg-1
Severity: wishlist

Hi,

for my otrs package I would require jquery-ui >= 1.10.3.


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

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


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



Bug#730014: libjs-jquery: New upstream release

2013-11-19 Thread Patrick Matthäi
Package: libjs-jquery
Version: 1.7.2+dfsg-3
Severity: wishlist

Hi,

for my otrs package I need at minimum jquery >= 1.10.0.


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

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

libjs-jquery depends on no packages.

Versions of packages libjs-jquery recommends:
pn  javascript-common  

libjs-jquery 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#730001: linux-image-3.2.0-4-kirkwood: IPv6 networking broken (missing symbol?)

2013-11-19 Thread Torsten Jerzembeck
Ben Hutchings wrote:
>On Wed, 2013-11-20 at 01:10 +0100, Torsten Jerzembeck wrote:
>> -- Package-specific info:
>> ** Version:
>> Linux version 3.2.0-4-kirkwood (debian-ker...@lists.debian.org) (gcc version 
>> 4.6.3 (Debian 4.6.3-14) ) #1 Debian 3.2.46-1
>[...]
>You are running the kernel image version 3.2.46-1 while you have modules
>from version 3.2.51-1.  This is why the symbol is missing.

*argh*

This is why one shouldn't file bugreports late in the evening. Sorry for
the confusion, I had missed that detail.
>
>Either you have not rebooted after upgrading, or you did not write the
>new kernel image to flash.  Perhaps you need to install flash-kernel?
>I'm not sure why the kernel package doesn't recommend that.

flash-kernel actually is installed. I'll try to find out why it didn't
do it's work in this case.

Sorry for bothering. Feel free to close this bugreport.

Greetings from Bad Cannstatt,

=ToJe=

-- 
Torsten Jerzembeck * Oberschlesische Str. 61 * D-70374 Stuttgart
Exil-Westfale * PGP: B74DB58D * MIME welcome * Generation Tux * >


signature.asc
Description: Digital signature


Bug#730013: nmu: libcgal-ipelets_4.2-5+b1

2013-11-19 Thread Ralf Treinen
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: binnmu

nmu libcgal-ipelets_4.2-5+b1 . ALL . -m "rebuild against ipe 7.1.4-1"

Thanks -Ralf.

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

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


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



Bug#698551: autopkgtest [spec]: spec may allow test names that escapes the "source directory"

2013-11-19 Thread Martin Pitt
Hey Niels,

Niels Thykier [2013-01-20 12:50 +0100]:
> Test names are separated by whitespace and should contain only
> characters which are legal in package names, plus `/'.
> """
> 
> First, it is unclear to me what exactly is meant by "only characters
> which are legal in package names".  I read it as that any character
> legal in the package and addition to that the symbol "/".

Right, but that indeed seems to be an overzealous claim in the spec,
I'll fix that.  The adt-run code explicity disallows this, presumably
to avoid directory traversal problems as you mentioned:

if '/' in tname:
raise Unsupported(base[' lno'],
  'test name may not contain / character')

There is the "Tests-Directory:" field if you really want to put tests
into a different dir. That one must not be absolute; you can still do
tricks like "../../../etc/..", but as you say this is hardly a
security issue, so let's not overthink this.

But this also pointed out a different bug if you actually try this:

adt-run: unexpected, exceptional, error:
Traceback (most recent call last):
  File "/home/martin/debian/autopkgtest/runner/adt-run", line 1962, in main
process_actions()
  File "/home/martin/debian/autopkgtest/runner/adt-run", line 1935, in 
process_actions
act, os.path.join(act.arg, 'debian/tests/control'))
  File "/home/martin/debian/autopkgtest/runner/adt-run", line 1328, in 
read_control
t = Test(tname, base, act)
  File "/home/martin/debian/autopkgtest/runner/adt-run", line 1069, in __init__
raise Unsupported(base[' lno'],
KeyError: ' lno'

So, I'll write a test which reproduces this crash, makes sure that
tests with / are disallowed, and fix the spec.

Thanks,

Martin
-- 
Martin Pitt| http://www.piware.de
Ubuntu Developer (www.ubuntu.com)  | Debian Developer  (www.debian.org)


signature.asc
Description: Digital signature


Bug#729967: fheroes2-pkg: French debconf templates translation

2013-11-19 Thread Christian PERRIER
Quoting Julien Patriarca (leatherf...@debian.org):
> Package: fheroes2-pkg
> Version: N/A
> Severity: wishlist
> Tags: patch l10n
> 
> Dear Maintainer,
> 
> *** /home/julien/traductions/po-debconf/patch-translate.txt


THe file is broken, with some extra lines before msgid lines. Just try
running "msgfmt -o /dev/null --statistics fr.po" to see the problem.

Fixed file attached.




fr.po
Description: application/gettext


signature.asc
Description: Digital signature


Bug#730012: nginx: CVE-2013-4547

2013-11-19 Thread Salvatore Bonaccorso
Package: nginx
Severity: grave
Tags: security upstream patch

Hi,

the following vulnerability was published for nginx.

CVE-2013-4547[0]:
security restrictions bypass

If you fix the vulnerability please also make sure to include the
CVE (Common Vulnerabilities & Exposures) id in your changelog entry.

For further information see:

[0] http://mailman.nginx.org/pipermail/nginx-announce/2013/000125.html

Please adjust the affected versions in the BTS as needed.

Regards,
Salvatore


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



Bug#729998: pu: package gnash/0.8.11~git20120629-1+wheezy1

2013-11-19 Thread Adam D. Barratt
Control: tags -1 + wheezy moreinfo

On Wed, 2013-11-20 at 01:05 +0100, Gabriele Giacone wrote:
> Youtube movie play is broken by default.
> Bug and patch at http://bugs.debian.org/729995

Please produce a full debdiff for your proposed package, and attach it
to this bug report.

The version information for #729995 suggests that it also applies to the
version of gnash in testing and unstable. Is that correct? If not then
please fix the versions.

Regards,

Adam


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



Bug#728752: [getbuildlog] get compressed buildlogs

2013-11-19 Thread James McCoy
On Mon, Nov 04, 2013 at 10:12:45PM -0300, Lisandro Damián Nicanor Pérez Meyer 
wrote:
> Since gcc became mor everbose on it builds it's not strange to find enourmous
> build logs (200+MB).
> 
> It would be really cool if getbuildlog could get the compressed buildlog
> to save bandwith.

As far as I know, there isn't a "compressed buildlog" available.  We
could change our wget call to specify "Accept-Encoding: deflate, gzip"
but that relies on the server being configured to offer compression.

Cheers,
-- 
James
GPG Key: 4096R/331BA3DB 2011-12-05 James McCoy 


signature.asc
Description: Digital signature


Bug#730011: heimdal-kdc: fails to install: Floating point exception

2013-11-19 Thread Andreas Beckmann
Package: heimdal-kdc
Version: 1.6~git20131117+dfsg-1
Severity: serious
User: debian...@lists.debian.org
Usertags: piuparts

Hi,

during a test with piuparts I noticed your package failed to install. As
per definition of the release team this makes the package too buggy for
a release, thus the severity.

>From the attached log (scroll to the bottom...):

  Selecting previously unselected package heimdal-kdc.
  (Reading database ... 8498 files and directories currently installed.)
  Unpacking heimdal-kdc (from .../heimdal-kdc_1.6~git20131117+dfsg-1_amd64.deb) 
...
  Setting up heimdal-kdc (1.6~git20131117+dfsg-1) ...
  Floating point exception
  dpkg: error processing heimdal-kdc (--configure):
   subprocess installed post-installation script returned error exit status 136
  Errors were encountered while processing:
   heimdal-kdc


cheers,

Andreas


heimdal-kdc_1.6~git20131117+dfsg-1.log.gz
Description: GNU Zip compressed data


Bug#730010: service-wrapper-java: FTBFS on mips, hurd-i386, s390x, sparc

2013-11-19 Thread tony mancill
Source: service-wrapper-java
Version: 3.5.22-1
Severity: wishlist

Filing a wishlist bug to get service-wrapper-java working on mips.
The severity is wishlist because the previous service-wrapper-java 
was only available on amd64, i386, ia64, and powerpc.

Cheers,
tony


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



Bug#730009: RFS: elementary-icon-theme/3.2-1 ITP -- A cool little icon theme

2013-11-19 Thread cameron

Package: sponsorship-requests
Severity: wishlist

Dear mentors,

I am looking for a sponsor for my package "elementary-icon-theme":

* Package name : elementary-icon-theme
  Version : 3.2-1
  Upstream Author : Daniel Foré
* URL : https://www.launchpad.net/elementaryicons
* License : GPLv3
  Section : misc

This package installs an icon theme, elementary, to /usr/share/icons/.

To learn more about this package, please see the following URL:

http://mentors.debian.net/package/elementary-icon-theme

Or use dget:

dget -x 
http://mentors.debian.net/debian/pool/main/h/hello/hello_3.1-4.dsc


You can check out the elementary icon theme at:

https://www.launchpad.net/elementaryicons.

This is the first upload of this package.


Best Regards,
Cameron Norman




Bug#730008: bsh: Builds libbsh-java package without needed maven-repo files

2013-11-19 Thread Daniel Schepler
Source: bsh
Version: 2.0b4-14
Severity: serious

If I build the latest bsh source package using pbuilder, the resulting package
has contents:

root@frobozz:/var/cache/pbuilder# dpkg-deb -c 
result/libbsh-java_2.0b4-14_all.deb 
drwxr-xr-x root/root 0 2013-11-19 19:06 ./
drwxr-xr-x root/root 0 2013-11-19 19:06 ./usr/
drwxr-xr-x root/root 0 2013-11-19 19:06 ./usr/share/
drwxr-xr-x root/root 0 2013-11-19 19:06 ./usr/share/maven-repo/
drwxr-xr-x root/root 0 2013-11-19 19:06 ./usr/share/maven-repo/org/
drwxr-xr-x root/root 0 2013-11-19 19:06 
./usr/share/maven-repo/org/beanshell/
drwxr-xr-x root/root 0 2013-11-19 19:06 
./usr/share/maven-repo/org/beanshell/bsh/
drwxr-xr-x root/root 0 2013-11-19 19:06 
./usr/share/maven-repo/org/beanshell/bsh/2.0b4/
drwxr-xr-x root/root 0 2013-11-19 19:06 
./usr/share/maven-repo/org/beanshell/bsh/debian/
drwxr-xr-x root/root 0 2013-11-19 19:06 ./usr/share/java/
-rw-r--r-- root/root280863 2013-11-19 19:06 ./usr/share/java/bsh-2.0b4.jar
drwxr-xr-x root/root 0 2013-11-19 19:06 ./usr/share/doc/
drwxr-xr-x root/root 0 2013-11-19 19:06 ./usr/share/doc/libbsh-java/
-rw-r--r-- root/root  1081 2013-11-04 08:39 
./usr/share/doc/libbsh-java/copyright
-rw-r--r-- root/root  3310 2013-11-04 08:39 
./usr/share/doc/libbsh-java/changelog.Debian.gz
lrwxrwxrwx root/root 0 2013-11-19 19:06 
./usr/share/maven-repo/org/beanshell/bsh/2.0b4/bsh-2.0b4.jar -> 
../../../../../java/bsh-2.0b4.jar
lrwxrwxrwx root/root 0 2013-11-19 19:06 
./usr/share/maven-repo/org/beanshell/bsh/debian/bsh-debian.jar -> 
../../../../../java/bsh-2.0b4.jar
lrwxrwxrwx root/root 0 2013-11-19 19:06 ./usr/share/java/bsh.jar -> 
bsh-2.0b4.jar

i.e. there are no *.pom files in /usr/share/maven-repo.

(By the way, any idea why this source package is in sid but all the bsh binary
packages are still at 2.0b4-12?)

Because of this, in a chroot with bsh 2.0b4-14 installed, I'm getting numerous
errors in packages which use maven to build, like this one from antlr-maven-
plugin:

 debian/rules build
test -x debian/rules
mkdir -p "."
/usr/share/maven-debian-helper/copy-repo.sh 
/tmp/buildd/antlr-maven-plugin-2.2/debian
mh_patchpoms -plibantlr-maven-plugin-java --debian-build --keep-pom-version 
--maven-repo=/tmp/buildd/antlr-maven-plugin-2.2/debian/maven-repo  
--build-no-docs
touch debian/stamp-poms-patched
# before-build target may be used to unpatch the pom files, so we need to check 
if
# patching the pom files is needed here, normally not
if [ ! -f pom.xml.save ]; then \
/usr/bin/make -f debian/rules patch-poms; \
fi
cd . && /usr/lib/jvm/default-java/bin/java -noverify -cp 
/usr/share/maven2/boot/classworlds.jar:/usr/lib/jvm/default-java/lib/tools.jar 
-Dproperties.file.manual=/tmp/buildd/antlr-maven-plugin-2.2/debian/maven.properties
 -Dclassworlds.conf=/etc/maven2/m2-debian-nodocs.conf 
org.codehaus.classworlds.Launcher -s/etc/maven2/settings-debian.xml 
-Dmaven.repo.local=/tmp/buildd/antlr-maven-plugin-2.2/debian/maven-repo  package
[INFO] 
NOTE: Maven is executing in offline mode. Any artifacts not already in your 
local
repository will be inaccessible.

[INFO] Scanning for projects...
[INFO] 
[INFO] Building Maven ANTLR Plugin
[INFO]task-segment: [package]
[INFO] 
[INFO] [modello:java {execution: default}]
[INFO] outputDirectory: 
/tmp/buildd/antlr-maven-plugin-2.2/target/generated-sources/modello
[INFO] Working on model: src/main/mdo/antlrOptions.mdo
[INFO] Generating current version: 1.0.0
[INFO] 
[ERROR] BUILD ERROR
[INFO] 
[INFO] Failed to resolve artifact.

Missing:
--
1) org.beanshell:bsh:jar:debian

  Try downloading the file manually from the project website.

  Then, install it using the command: 
  mvn install:install-file -DgroupId=org.beanshell -DartifactId=bsh 
-Dversion=debian -Dpackaging=jar -Dfile=/path/to/file

  Alternatively, if you host your own repository you can deploy the file there: 
  mvn deploy:deploy-file -DgroupId=org.beanshell -DartifactId=bsh 
-Dversion=debian -Dpackaging=jar -Dfile=/path/to/file -Durl=[url] 
-DrepositoryId=[id]

  Path to dependency: 
1) org.apache.maven.plugins:maven-plugin-plugin:maven-plugin:3.2
2) org.apache.maven.plugin-tools:maven-plugin-tools-beanshell:jar:debian
3) org.beanshell:bsh:jar:debian

--
1 required artifact is missing.

for artifact: 
  org.apache.maven.plugins:maven-plugin-plugin:maven-plugin:3.2

from the specified remote repositories:
  central (http://repo1.maven.org/maven2)



NOTE: Maven is executing in offline mode. Any artifacts not already in your 
local
repository will be

Bug#730007: Please, magically rescue SQLite databases

2013-11-19 Thread Eric Pozharski
Package: magicrescue
Severity: wishlist
Tags: patch

$Subject.  Happily recovered about handred database backups that
survived google-wipe.

-- 
Torvalds' goal for Linux is very simple: World Domination
Stallman's goal for GNU is even simpler: Freedom
--- ../foo.kMK5Np.recipe	2013-11-19 20:03:53.0 +0200
+++ magicrescue/recipes/sqlite	2013-11-19 20:03:53.0 +0200
@@ -0,0 +1,8 @@
+# Extracts sqlite databases
+0 string SQLite format 3\x00
+extension sqlite
+
+# Result will be "CREATE TABLE"'s and "INSERT INTO"'s
+allow_overlap -1
+#min_output_file 1024
+command dd bs=1M count=16 of="$1.with-trash" 2>/dev/null; sqlite3 -init /dev/null "$1.with-trash" .dump >"$1" ; rm -f "$1.with-trash"


Bug#730001: linux-image-3.2.0-4-kirkwood: IPv6 networking broken (missing symbol?)

2013-11-19 Thread Ben Hutchings
Control: tag -1 moreinfo

On Wed, 2013-11-20 at 01:10 +0100, Torsten Jerzembeck wrote:
> Package: src:linux
> Version: 3.2.51-1
> Severity: important
> Tags: ipv6
> 
> Dear Debian Kernel Team,
> 
> the kernel package for Marvell Kirkwood based systems seems to have lost
> a symbol (udp_push_pending_frames) during the build stage. This breaks
> IPv6 networking, as seen below: Although IPv6 is configured (and has
> been working in the past), no IPv6 addresses are assigned. (The actual
> addresses have been redacted in this bugreport, but can be provided if
> needed.)
> 
> The bug probably has been introduced during the change from 3.2.0-3 to
> 3.2.0-4.

This is not a bug in the kernel.

> I'll gladly provide additional data from the affected system if needed.
> 
> Best regards,
> 
> =ToJe=
> 
> -- Package-specific info:
> ** Version:
> Linux version 3.2.0-4-kirkwood (debian-ker...@lists.debian.org) (gcc version 
> 4.6.3 (Debian 4.6.3-14) ) #1 Debian 3.2.46-1
[...]

You are running the kernel image version 3.2.46-1 while you have modules
from version 3.2.51-1.  This is why the symbol is missing.

Either you have not rebooted after upgrading, or you did not write the
new kernel image to flash.  Perhaps you need to install flash-kernel?
I'm not sure why the kernel package doesn't recommend that.

Ben.

-- 
Ben Hutchings
Teamwork is essential - it allows you to blame someone else.


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


Bug#730004: kfreebsd-image-9.2-1-686: "service stop wdm" crashes kernel occasionally: "Sleeping thread owns a non-sleepable lock"

2013-11-19 Thread Axel Beckert
Hi,

Axel Beckert wrote:
> I installed wdm newly today on that box, so the fact that I can't
> remember having such issues in the past may be cause by wdm not being
> installed, but also by a newer kernel. (ca. 70 days uptime before the
> boot where it crashed for the first time. Can figure out details about
> the previously running kernel before these crashes started after the
> fsck is over.)

Last 3 three bootups before the boot since which the crashes started:

48   139 days, 01:23:04 | GNU/kFreeBSD 9.0-2-686Wed Feb 20 22:12:17 2013
4962 days, 22:19:52 | GNU/kFreeBSD 9.1-1-686Wed Jul 10 00:48:44 2013
5070 days, 01:03:46 | GNU/kFreeBSD 9.2-1-686Wed Sep 11 00:57:16 2013

So the last longer running kernel was likely 9.2-1-686, version
9.2~svn254368-2.

Regards, Axel
-- 
 ,''`.  |  Axel Beckert , http://people.debian.org/~abe/
: :' :  |  Debian Developer, ftp.ch.debian.org Admin
`. `'   |  1024D: F067 EA27 26B9 C3FC 1486  202E C09E 1D89 9593 0EDE
  `-|  4096R: 2517 B724 C5F6 CA99 5329  6E61 2FF9 CD59 6126 16B5


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



Bug#716807: Info received (opus: please make this pkg multi-arch compatible again)

2013-11-19 Thread Edward J. Shornock
but now I've read 674467 and understand a bit more what's happening.


On 20 November 2013 03:39, Debian Bug Tracking System  wrote:

> Thank you for the additional information you have supplied regarding
> this Bug report.
>
> This is an automatically generated reply to let you know your message
> has been received.
>
> Your message is being forwarded to the package maintainers and other
> interested parties for their attention; they will reply in due course.
>
> Your message has been sent to the package maintainer(s):
>  Ron Lee 
>
> If you wish to submit further information on this problem, please
> send it to 716...@bugs.debian.org.
>
> Please do not send mail to ow...@bugs.debian.org unless you wish
> to report a problem with the Bug-tracking system.
>
> --
> 716807: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=716807
> Debian Bug Tracking System
> Contact ow...@bugs.debian.org with problems
>


Bug#730006: dovecot: [INTL:pt] Updated Portuguese translation for debconf messages

2013-11-19 Thread Américo Monteiro
Package: dovecot
version: 1:2.2.5-2
Tags: l10n, patch
Severity: wishlist

Updated Portuguese translation for dovecot's debconf messages.
Translator: Américo Monteiro 
Feel free to use it.

For translation updates please contact 'Last Translator' or the
Portuguese Translation Team .

-- 
Melhores cumprimentos/Best regards,

Traduz! - Portuguese Translation Team


dovecot_1:2.2.5-2_pt.po.gz
Description: GNU Zip compressed data


Bug#730004: kfreebsd-image-9.2-1-686: "service stop wdm" crashes kernel occasionally: "Sleeping thread owns a non-sleepable lock"

2013-11-19 Thread Steven Chamberlain
Some initial observations:

System was running sid versions of eglibc, kfreebsd-9, and wdm probably.

On 20/11/13 01:17, Axel Beckert wrote:
> running "service wdm stop" [...]

That sends SIGTERM to wdm's pid from $PIDFILE;  handler sets
exit_request=0 to drop out cleanly from the event loop in main().

> Sleeping thread (tid 100165, pid 5722) owns a non-sleepable lock

DestroyLoginPanel() does some animated window effects before it exits,
involving calls to nanosleep(), so maybe after handling the signal, this
thread still holds a lock it isn't supposed to have?

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


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



Bug#730005: apt: duplicate cdrom entries in sources.list after clean install

2013-11-19 Thread Jason Lee Quinn
Package: apt
Version: 0.9.7.9
Severity: normal

Dear Maintainer,

Even after a clean install of Debian (from a AMD64 USB install if that
matters), /etc/apt/sources.list always seems to end up with two entries for the
cdrom as a source (one commented and one not). This is confusing, especially to
Debian newbies when using software like software-properties-gtk.

I have always seen this problem with Debian even with Squeeze. I always install
from a USB drive so they might be correlated.

By the time of the bug report I have enabled contrib and non-free and added a
ton of software but otherwise I have no messed with repository stuff.






-- Package-specific info:

-- apt-config dump --

APT "";
APT::Architecture "amd64";
APT::Build-Essential "";
APT::Build-Essential:: "build-essential";
APT::Install-Recommends "true";
APT::Install-Suggests "0";
APT::Authentication "";
APT::Authentication::TrustCDROM "true";
APT::NeverAutoRemove "";
APT::NeverAutoRemove:: "^firmware-linux.*";
APT::NeverAutoRemove:: "^linux-firmware$";
APT::NeverAutoRemove:: "^linux-image.*";
APT::NeverAutoRemove:: "^kfreebsd-image.*";
APT::NeverAutoRemove:: "^linux-restricted-modules.*";
APT::NeverAutoRemove:: "^linux-ubuntu-modules-.*";
APT::NeverAutoRemove:: "^gnumach$";
APT::NeverAutoRemove:: "^gnumach-image.*";
APT::Never-MarkAuto-Sections "";
APT::Never-MarkAuto-Sections:: "metapackages";
APT::Never-MarkAuto-Sections:: "restricted/metapackages";
APT::Never-MarkAuto-Sections:: "universe/metapackages";
APT::Never-MarkAuto-Sections:: "multiverse/metapackages";
APT::Never-MarkAuto-Sections:: "oldlibs";
APT::Never-MarkAuto-Sections:: "restricted/oldlibs";
APT::Never-MarkAuto-Sections:: "universe/oldlibs";
APT::Never-MarkAuto-Sections:: "multiverse/oldlibs";
APT::Periodic "";
APT::Periodic::Download-Upgradeable-Packages "0";
APT::Periodic::Unattended-Upgrade "0";
APT::Periodic::Update-Package-Lists "1";
APT::Update "";
APT::Update::Post-Invoke-Success "";
APT::Update::Post-Invoke-Success:: "[ ! -f /var/run/dbus/system_bus_socket ] || 
/usr/bin/dbus-send --system --dest=org.debian.apt --type=signal /org/debian/apt 
org.debian.apt.CacheChanged || true";
APT::Update::Post-Invoke-Success:: "/usr/bin/test -e 
/usr/share/dbus-1/system-services/org.freedesktop.PackageKit.service && 
/usr/bin/test -S /var/run/dbus/system_bus_socket && /usr/bin/gdbus call 
--system --dest org.freedesktop.PackageKit --object-path 
/org/freedesktop/PackageKit --timeout 1 --method 
org.freedesktop.PackageKit.StateHasChanged cache-update > /dev/null; /bin/echo 
> /dev/null";
APT::Architectures "";
APT::Architectures:: "amd64";
APT::Compressor "";
APT::Compressor::. "";
APT::Compressor::.::Name ".";
APT::Compressor::.::Extension "";
APT::Compressor::.::Binary "";
APT::Compressor::.::Cost "1";
APT::Compressor::gzip "";
APT::Compressor::gzip::Name "gzip";
APT::Compressor::gzip::Extension ".gz";
APT::Compressor::gzip::Binary "gzip";
APT::Compressor::gzip::Cost "2";
APT::Compressor::gzip::CompressArg "";
APT::Compressor::gzip::CompressArg:: "-9n";
APT::Compressor::gzip::UncompressArg "";
APT::Compressor::gzip::UncompressArg:: "-d";
APT::Compressor::bzip2 "";
APT::Compressor::bzip2::Name "bzip2";
APT::Compressor::bzip2::Extension ".bz2";
APT::Compressor::bzip2::Binary "bzip2";
APT::Compressor::bzip2::Cost "3";
APT::Compressor::bzip2::CompressArg "";
APT::Compressor::bzip2::CompressArg:: "-9";
APT::Compressor::bzip2::UncompressArg "";
APT::Compressor::bzip2::UncompressArg:: "-d";
APT::Compressor::xz "";
APT::Compressor::xz::Name "xz";
APT::Compressor::xz::Extension ".xz";
APT::Compressor::xz::Binary "xz";
APT::Compressor::xz::Cost "4";
APT::Compressor::xz::CompressArg "";
APT::Compressor::xz::CompressArg:: "-6";
APT::Compressor::xz::UncompressArg "";
APT::Compressor::xz::UncompressArg:: "-d";
APT::Compressor::lzma "";
APT::Compressor::lzma::Name "lzma";
APT::Compressor::lzma::Extension ".lzma";
APT::Compressor::lzma::Binary "xz";
APT::Compressor::lzma::Cost "5";
APT::Compressor::lzma::CompressArg "";
APT::Compressor::lzma::CompressArg:: "--format=lzma";
APT::Compressor::lzma::CompressArg:: "-9";
APT::Compressor::lzma::UncompressArg "";
APT::Compressor::lzma::UncompressArg:: "--format=lzma";
APT::Compressor::lzma::UncompressArg:: "-d";
APT::CompressorName "";
APT::CompressorExtension ".";
APT::CompressorBinary "";
APT::CompressorCost "100";
APT::CompressorCompressArg "";
APT::CompressorCompressArg:: "-9";
APT::CompressorUncompressArg "";
APT::CompressorUncompressArg:: "-d";
Dir "/";
Dir::State "var/lib/apt/";
Dir::State::lists "lists/";
Dir::State::cdroms "cdroms.list";
Dir::State::mirrors "mirrors/";
Dir::State::extended_states "extended_states";
Dir::State::status "/var/lib/dpkg/status";
Dir::Cache "var/cache/apt/";
Dir::Cache::archives "archives/";
Dir::Cache::srcpkgcache "srcpkgcache.bin";
Dir::Cache::pkgcache "pkgcache.bin";
Dir::Etc "etc/apt/";
Dir::Etc::sourcelist "sources.list";
Dir::Etc::sourceparts "sources.list.d";
Dir::Etc::vendorlist "v

Bug#716807: opus: please make this pkg multi-arch compatible again

2013-11-19 Thread Edward J. Shornock
Package: libopus0
Version: 1.1~beta-4
Followup-For: Bug #716807


Looking at the previous version it's not obvious how the nmu[0] was bogus.
It fixed this reported problem and with this latest upload reintroduces
the original issue.

Please support multi-arch so that both i386 and amd64 binaries can be
installed at the same time.

[0]
http://snapshot.debian.org/archive/debian/20131117T155451Z/pool/main/o/opus/opus_1.1%7Ebeta-3.1.diff.gz


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



Bug#729118: still happens

2013-11-19 Thread Russell Coker
On Tue, 19 Nov 2013, Santiago Garcia Mantinan  wrote:
> > I think that this is a large part of my problem.
> > 
> > Strangely I tested this again this morning and the forward delay had
> > changed for my entire network.  My network is a little unusual in that I
> > have 4 Linux bridges in series.
> > 
> > Last night before going to bed I shut down one of the end points.  I
> > imagine that doing so caused a root renegotiation and thus allowed the
> > forward delay to propagate.
> 
> So... can we close the bug? or do you want to do some more testings?

The bug as originally described appears to be fixed.  I still have some other 
issues but I'll open another bug.

-- 
My Main Blog http://etbe.coker.com.au/
My Documents Bloghttp://doc.coker.com.au/


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



Bug#730004: kfreebsd-image-9.2-1-686: "service stop wdm" crashes kernel occasionally: "Sleeping thread owns a non-sleepable lock"

2013-11-19 Thread Axel Beckert
Package: kfreebsd-image-9.2-1-686
Version: 9.2-1
Severity: grave

Dear kFreeBSD Porters,

running "service wdm stop" crashes the kernel with an approximately
25% percent chance on my ASUS EeeBox. Managed to trigger it twice in a
row (i.e. second time directly after reboot), but then again it took 6
or 7 start/stop runs to reproduce it again.

Kernel messages (bright white on console):

Sleeping thread (tid 100165, pid 5722) owns a non-sleepable lock
KDB: stack backtrace of thread 100165:
panic: sleeping thread
cpuid = 0
KDB: stack backtrace:
#0 0xc0f33dec at __func__.11990+0x23
Uptime: 26min21
Automatic reboot in 15 seconds […]

So far this did not happen when stopping kdm or xdm, but then again I
may not have tried these often enough.

I installed wdm newly today on that box, so the fact that I can't
remember having such issues in the past may be cause by wdm not being
installed, but also by a newer kernel. (ca. 70 days uptime before the
boot where it crashed for the first time. Can figure out details about
the previously running kernel before these crashes started after the
fsck is over.)

-- System Information:
Debian Release: jessie/sid
  APT prefers unstable
  APT policy: (990, 'unstable'), (600, 'testing'), (110, 'experimental')
Architecture: kfreebsd-i386 (i386)

Kernel: kFreeBSD 9.2-1-686
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages kfreebsd-image-9.2-1-686 depends on:
ii  devd   9.2-1
ii  freebsd-utils  9.2-1
ii  kbdcontrol 9.2-1
ii  kldutils   9.2-1

Versions of packages kfreebsd-image-9.2-1-686 recommends:
ii  libc0.1-i686  2.17-96

kfreebsd-image-9.2-1-686 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#701112: nginx: CVE-2013-0337: Directory /var/log/nginx is world readable

2013-11-19 Thread Steven Chamberlain
On Tue, 29 Oct 2013 01:22:08 -0500, Michael Lustfield wrote:
> This one sure slipped under the cracks for me.

Ouch, same here.  I also forgot to subscribe to this bug it seems...

> So... check if it's root:root 755;
> if so, change to www-data:adm 750
> 
> Would that sufficiently deal with this?

Yes I think that's exactly right.  I've also applied this change to
trial it on a couple of production servers, in case it throws up
anything unexpected.  One of them runs a log parser, which it turns out
was already added into the adm group, so no issues there.

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


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



Bug#730003: apt-listdifferences: [INTL:pt] Updated Portuguese translation for debconf messages

2013-11-19 Thread Américo Monteiro
Package: apt-listdifferences
version: 1.20131017
Tags: l10n, patch
Severity: wishlist

Updated Portuguese translation for apt-listdifferences's debconf messages.
Translator: Américo Monteiro 
Feel free to use it.

For translation updates please contact 'Last Translator' or the
Portuguese Translation Team .

-- 
Melhores cumprimentos/Best regards,

Traduz! - Portuguese Translation Team


apt-listdifferences_1.20131017_pt.po.gz
Description: GNU Zip compressed data


Bug#730001: linux-image-3.2.0-4-kirkwood: IPv6 networking broken (missing symbol?)

2013-11-19 Thread Torsten Jerzembeck
Package: src:linux
Version: 3.2.51-1
Severity: important
Tags: ipv6

Dear Debian Kernel Team,

the kernel package for Marvell Kirkwood based systems seems to have lost
a symbol (udp_push_pending_frames) during the build stage. This breaks
IPv6 networking, as seen below: Although IPv6 is configured (and has
been working in the past), no IPv6 addresses are assigned. (The actual
addresses have been redacted in this bugreport, but can be provided if
needed.)

The bug probably has been introduced during the change from 3.2.0-3 to
3.2.0-4.

I'll gladly provide additional data from the affected system if needed.

Best regards,

=ToJe=

-- Package-specific info:
** Version:
Linux version 3.2.0-4-kirkwood (debian-ker...@lists.debian.org) (gcc version 
4.6.3 (Debian 4.6.3-14) ) #1 Debian 3.2.46-1

** Command line:
console=ttyS0,115200 root=/dev/sda1 rootdelay=10 rootfstype=ext2 
mtdparts=orion_nand:1M(u-boot),4M(uImage),32M(rootfs),-(data)

** Not tainted

** Kernel log:
[   81.510626] ipv6: Unknown symbol udp_push_pending_frames (err 0)
[   81.584796] ipv6: Unknown symbol udp_push_pending_frames (err 0)
[   84.540803] mv643xx_eth_port mv643xx_eth_port.0: eth0: link up, 1000 Mb/s, 
full duplex, flow control disabled
[  111.694329] ipv6: Unknown symbol udp_push_pending_frames (err 0)
[  133.163116] ipv6: Unknown symbol udp_push_pending_frames (err 0)
[  133.461175] tun: Universal TUN/TAP device driver, 1.6
[  133.466297] tun: (C) 1999-2004 Max Krasnyansky 
[  133.978327] ipv6: Unknown symbol udp_push_pending_frames (err 0)
[  134.067968] ipv6: Unknown symbol udp_push_pending_frames (err 0)
[  134.118739] ipv6: Unknown symbol udp_push_pending_frames (err 0)
[  134.442612] ipv6: Unknown symbol udp_push_pending_frames (err 0)
[  134.464655] ipv6: Unknown symbol udp_push_pending_frames (err 0)
[  141.255262] ipv6: Unknown symbol udp_push_pending_frames (err 0)
[  785.146335] ipv6: Unknown symbol udp_push_pending_frames (err 0)
[  786.197361] ipv6: Unknown symbol udp_push_pending_frames (err 0)
[  788.582553] ipv6: Unknown symbol udp_push_pending_frames (err 0)
[  971.598331] ipv6: Unknown symbol udp_push_pending_frames (err 0)
[  972.763982] ipv6: Unknown symbol udp_push_pending_frames (err 0)
[  975.150273] ipv6: Unknown symbol udp_push_pending_frames (err 0)

** Model information
Processor   : Feroceon 88FR131 rev 1 (v5l)
Hardware: Seagate FreeAgent DockStar
Revision: 

** Loaded modules:
tun
ext3
jbd
hmac
sha1_generic
mv_cesa
aes_generic
ext2
mbcache
sg
sd_mod
crc_t10dif
ums_cypress
usb_storage
scsi_mod
ehci_hcd
usbcore
usb_common
mv643xx_eth
inet_lro
libphy

** Network interface configuration:
auto lo eth0
iface lo inet loopback

iface eth0 inet static
address 192.168.X.XXX
netmask 255.255.255.0
gateway 192.168.X.XXX

iface eth0 inet6 static
address 2001:XXX::X::XX
netmask 64

** Network status:
*** IP interfaces and addresses:
1: lo:  mtu 16436 qdisc noqueue state UNKNOWN 
link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
inet 127.0.0.1/8 scope host lo
2: eth0:  mtu 1500 qdisc mq state UP qlen 1000
link/ether 00:10:75:1a:c7:b5 brd ff:ff:ff:ff:ff:ff
inet 192.168.X.XXX/24 brd 192.168.X.255 scope global eth0
3: tun0:  mtu 1500 qdisc pfifo_fast 
state UNKNOWN qlen 100
link/none 
inet 192.168.XXX.X peer 192.168.XXX.X/32 scope global tun0

*** Device statistics:
Inter-|   Receive|  Transmit
 face |bytespackets errs drop fifo frame compressed multicast|bytes
packets errs drop fifo colls carrier compressed
lo:8631  67000 0  0 0 8631  
67000 0   0  0
  eth0: 6906245   13039000 0  0 0  3166033   
11754000 0   0  0
  tun0: 15225163375000 0  0 0   519249
3065000 0   0  0

*** Protocol statistics:
Ip:
16424 total packets received
5993 forwarded
0 incoming packets discarded
10428 incoming packets delivered
17057 requests sent out
6 reassemblies required
3 packets reassembled ok
Icmp:
276 ICMP messages received
0 input ICMP message failed.
ICMP input histogram:
destination unreachable: 44
echo requests: 232
347 ICMP messages sent
0 ICMP messages failed
ICMP output histogram:
destination unreachable: 58
redirect: 57
echo replies: 232
IcmpMsg:
InType3: 44
InType8: 232
OutType0: 232
OutType3: 58
OutType5: 57
Tcp:
8 active connections openings
73 passive connection openings
0 failed connection attempts
0 connection resets received
2 connections established
9481 segments received
8124 segments send out
18 segments retransmited
0 bad segments received.
0 resets sent
Udp:
516 packets received
55 packets to unknown port received

Bug#730002: netstat: fails to detect open socket

2013-11-19 Thread Toni Mueller
Package: net-tools
Version: 1.60-24.2
Severity: normal


Dear Maintainer,

I have a problem with netstat, which fails to agree with lsof that a
certain socket is open:

# netstat -anA inet|grep 18080
# lsof -np 22198|grep 'TCP.*18080'
java22198 jenkins  151u  IPv6   16154950  0t0  TCP  
192.168.2.10:18080 (LISTEN)
# 


What gives?



Kind regards,
--Toni++





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

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

Versions of packages net-tools depends on:
ii  libc6  2.13-38

net-tools recommends no packages.

net-tools 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#730000: bilibop: [INTL:pt] Updated Portuguese translation for debconf messages

2013-11-19 Thread Américo Monteiro
Package: bilibop
version: 0.4.19
Tags: l10n, patch
Severity: wishlist

Updated Portuguese translation for bilibop's debconf messages.
Translator: Américo Monteiro 
Feel free to use it.

For translation updates please contact 'Last Translator' or the
Portuguese Translation Team .

-- 
Melhores cumprimentos/Best regards,

Traduz! - Portuguese Translation Team


bilibop_0.4.19_pt.po.gz
Description: GNU Zip compressed data


Bug#729999: reportbung-ng: fails at reporting version number of (some) deps/recs packages

2013-11-19 Thread 0 1

Package: reportbug-ng
Version: 1.27
Severity: normal

For some reason, it seems reportbug-ng doesn't gather versions number of 
some installed packages listed in the "Depends" (and maybe "Recommands") 
tables.


As you can see in this same bug report, it does the job well when it 
searches for packages reportbug-ng depends on.


It also succeeds with:
- tzdata

However, it fails with:
- dwb (no version at all, see live @ 
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=728789#10 )

- iceweasel (no version at all)
- claws-mail (partially)
- openclipart-svg (partially)
- nginx-light (partially)

Obviously, all the above packages are installed, and dependencies are met.

Also gave a try with some uninstalled package:
- anjuta, versions aren't displayed, which is «normal»

Result doesn't seem random, since asking several times to gather infos 
about package «dwb» always produces an empty table.


All dummy reports for these packages attached.

--- System information. ---
Architecture: amd64
Kernel:   Linux 3.10-3-rt-amd64

Debian Release: jessie/sid
  500 testing ftp.fr.debian.org
  500 stable  ftp.fr.debian.org

--- Package information. ---
Depends(Version) | Installed
-+-
python   | 2.7.5-5
python-support   (>= 0.90.0) | 1.0.15
python-debianbts(>= 1.0) | 1.11
python-qt4   | 4.10.3+dfsg-1
xdg-utils| 1.1.0~rc1+git20111210-7
xterm| 297-1
python-apt   (>= 0.7.93) | 0.9.1


Package's Recommends field is empty.

Package's Suggests field is empty.

Package: anjuta
Severity: normal

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


--- System information. ---
Architecture: amd64
Kernel:   Linux 3.10-3-rt-amd64

Debian Release: jessie/sid
  500 testing ftp.fr.debian.org 
  500 stable  ftp.fr.debian.org 

--- Package information. ---
Package's Depends field is empty.

Package's Recommends field is empty.

Package's Suggests field is empty.
Package: claws-mail
Version: 3.9.2-2+b1
Severity: normal

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


--- System information. ---
Architecture: amd64
Kernel:   Linux 3.10-3-rt-amd64

Debian Release: jessie/sid
  500 testing ftp.fr.debian.org 
  500 stable  ftp.fr.debian.org 

--- Package information. ---
Depends  (Version) | Installed
==-+-===
libarchive13   | 3.1.2-7
libassuan0  (>= 2.0.1) | 2.1.1-1
libatk1.0-0(>= 1.12.4) | 
libc6(>= 2.15) | 
libcairo2   (>= 1.2.4) | 
libcompfaceg1  | 
libcurl3-gnutls(>= 7.16.2) | 
libdb5.1   | 
libdbus-1-3 (>= 1.0.2) | 
libdbus-glib-1-2 (>= 0.78) | 
libenchant1c2a  (>= 1.6.0) | 
libetpan15(>= 1.0) | 
libexpat1   (>= 2.0.1) | 
libfontconfig1 (>= 2.10.0) | 
libfreetype6(>= 2.2.1) | 
libgdk-pixbuf2.0-0 (>= 2.22.0) | 
libglib2.0-0   (>= 2.35.9) | 
libgnutls26 (>= 2.12.17-0) | 
libgpg-error0(>= 1.10) | 
libgpgme11  (>= 1.1.2) | 
libgtk2.0-0(>= 2.24.0) | 
libice6   (>= 1:1.0.0) | 
libldap-2.4-2   (>= 2.4.7) | 
liblockfile1  (>= 1.0) | 
libpango-1.0-0 (>= 1.14.0) | 
libpangocairo-1.0-0(>= 1.14.0) | 
libpangoft2-1.0-0  (>= 1.14.0) | 
libpisock9 | 
libsasl2-2 (>= 2.1.24) | 
libsm6 | 
xdg-utils  | 


Recommends(Version) | Installed
===-+-===
claws-mail-i18n | 3.9.2-2
xfonts-100dpi   | 1:1.0.3
 OR xfonts-75dpi| 1:1.0.3
 OR xfonts-100dpi-transcoded| 
 OR xfonts-75dpi-transcoded | 
aspell-en   | 7.1-0-1
 OR aspell-dictionary   | 


Suggests   (Version) | Installed
-+-
claws-mail-doc   (= 3.9.2-2) | 
www-browser  | 
gedit| 
 OR kwrite   | 
 OR mousepad | 0.3.0-2
 OR nedit| 
claws-mail-tools | 
Package: iceweasel
Version: 17.0.9esr-1~deb7u1
Severity: normal

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


--- System information. ---
Architecture: amd64
Kernel:   Linux 3.10-3-rt-amd64

Debian Release: jessie/sid
  500 testing ftp.fr.debian.org 
  500 stable  ftp.fr.debian.org 

--- Package information. ---
Depends 

Bug#700539: FQ compiler names for distributing to cross-compilers

2013-11-19 Thread Shawn Landden
ping

wheezy has been released.

-- 

---
Shawn Landden
+1 360 389 3001 (SMS preferred)


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



Bug#729998: pu: package gnash/0.8.11~git20120629-1+wheezy1

2013-11-19 Thread Gabriele Giacone
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: pu

Youtube movie play is broken by default.
Bug and patch at http://bugs.debian.org/729995

Thanks.


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



Bug#729997: does not work with debconf's 'readline' frontend

2013-11-19 Thread Raf Czlonka
Package: needrestart
Version: 0.3-1
Severity: important

Hi,

Let me start by saying that I was really pleased when I first saw
'needrestart' in Debian. I have now installed it on all of my machines.
On one of them, however, 'needrestart' does not run. The machine in
question is an 'armel' 'SheevaPlug'.

Due to limited space, I have removed all non-essential packages,
including 'dialog', and configured 'debconf' to use its 'readline'
frontend. This is also the reason why I'm reporting this bug from my
'i686' laptop, instead. It is obvious that, in order to be usable,
'needrestart' requires, at least, a dialog-like program to be available;
otherwise it fails with:

---8<---
Looking for daemons to restart
--

Debconf: CANCELED
--->8---

After installing, i.e. 'whiptail' I am presented with a familiar
list/menu.

The problem can be solved in either of the two ways:

1. "Fix" 'needrestart' to work with debconf's 'readline' frontend.

2. Dependency, at least, on 'dialog' or 'whiptail' needs to be put in
place - I'd suggest the latter as it is both smaller, and itself has
fewer dependencies. Having a logical 'or' for both (more?) would
suffice.

P.S. I have obviously omitted GUI frontends here, as these, I presume,
should simply work if enabled.

P.P.S. I have noticed that the manual page for 'needrestart' bears the
version number of '0.2', which obviously doesn't match the version
available in the packaged. I'd suggest modifying the man page to either
include the version number only in the footer, and it being updated with
respective version of the program, or removing it altogether.

Thanks in advance.

Kind regards,

rjc

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

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

Versions of packages needrestart depends on:
ii  dpkg 1.17.1
ii  libmodule-find-perl  0.11-1
ii  perl 5.18.1-4

needrestart recommends no packages.

needrestart 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#729996: recordmydesktop: Using --on-the-fly-encoding option causes audio to lose sync

2013-11-19 Thread Gene Cash
Package: recordmydesktop
Version: 0.3.8.1+svn602-1+b1
Severity: normal

Dear Maintainer,
*** Please consider answering these questions, where appropriate ***

   * What led up to the situation?
   * What exactly did you do (or not do) that was effective (or
 ineffective)?
   * What was the outcome of this action?
   * What outcome did you expect instead?

*** End of the template - remove these lines ***


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

Kernel: Linux 3.10-3-amd64 (SMP w/8 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)

Versions of packages recordmydesktop depends on:
ii  libasound21.0.27.2-3
ii  libc6 2.17-93
ii  libice6   2:1.0.8-2
ii  libjack-jackd2-0 [libjack-0.116]  1.9.9.5+20130622git7de15e7a-1
ii  libogg0   1.3.1-1
ii  libpopt0  1.16-8
ii  libsm62:1.2.1-2
ii  libtheora01.1.1+dfsg.1-3.1
ii  libvorbis0a   1.3.2-1.3
ii  libvorbisenc2 1.3.2-1.3
ii  libvorbisfile31.3.2-1.3
ii  libx11-6  2:1.6.2-1
ii  libxdamage1   1:1.1.4-1
ii  libxext6  2:1.3.2-1
ii  libxfixes31:5.0.1-1
ii  zlib1g1:1.2.8.dfsg-1

recordmydesktop recommends no packages.

recordmydesktop suggests no packages.

-- no debconf information

When you use the "--on-the-fly-encoding" option, the audio slowly starts 
falling behind the video, until it's a couple seconds late after about 30 
seconds. If you don't use this option, the audio and video remain perfectly 
synced.

I have a pretty hefty machine and none of my CPUs were more than 15% occupied 
according to xosview. It happens with both PulseAudio and ALSA, and the 
freq/channels options don't affect the problem.

Other than this option, my command line is:

recordmydesktop --windowid $(xwininfo | awk '/Window id:/ {print $4}') -o 
screencast.ogv --device pulse --channels 2 --freq 48000 --overwrite --no-frame

I don't get any error messages or any other non-optimal behaviour other than 
the loss of sync. A typical output from the script looks like this:

04:04:26 ~/temp # screencast
must pick window to record, and hit ^C when done
Initial recording window is set to:
X:24   Y:33Width:1152Height:864
Adjusted recording window is set to:
X:24   Y:32Width:1152Height:864
Your window manager appears to be FVWM

Initializing...
Buffer size adjusted to 4096 from 4096 frames.
Opened PCM device pulse
Recording on device pulse is set to:
2 channels at 48000Hz
Capturing!
^CShutting down.
*

Cached 10853 MB, from 31244 MB that were received.
Average cache compression ratio: 65.3 %

*
Saved 8229 frames in a total of 7551 requests

STATE:ENCODING
Encoding started!
This may take several minutes.
Pressing Ctrl-C will cancel the procedure (resuming will not be possible, but
any portion of the video, which is already encoded won't be deleted).
Please wait...
[108%]  [Cache File 21]
Encoding finished!
Wait a moment please...

Done.
Written 137602482 bytes
(113063284 of which were video data and 24539198 audio data)

Cleanning up cache...
Done!!!
Goodbye!


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



Bug#729995: gnash: youtube play with ffmpeg media handler broken on wheezy

2013-11-19 Thread Gabriele Giacone
Package: gnash
Version: 0.8.11~git20120629-1
Tags: wheezy patch
Severity: important

Gnash is built with two media handlers: ffmpeg and gstreamer.
Default is ffmpeg (libav) which is broken in wheezy due to deprecated api.

Biggest impact is youtube video play: circle keeps spinning, movie
doesn't start.

To reproduce:
$ gnash http://www.youtube.com/v/9sJUDx7iEJw?version=2

It can be workarounded by switching to gstreamer media handler:
$ echo "set mediahandler gst" >> ~/.gnashrc
or
$ gnash -M gst http://www.youtube.com/v/9sJUDx7iEJw?version=2

Backporting following upstream change fixes that:

http://git.savannah.gnu.org/gitweb/?p=gnash.git;a=commitdiff;h=4b3dae970549d42723c2528c250a1f95248145c7


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



Bug#729991: syslog-ng-core uninstallable

2013-11-19 Thread Andrei POPESCU
Control: reassign -1 syslog-ng-core 3.5.1-1

On Mi, 20 nov 13, 00:19:49, Martin Bagge / brother wrote:
> package: syslog.ng-core
> severity: grave
> version: 3.5.1-1 
> 
> On testing installing syslog-ng-core with no previous syslog-ng config
> files you end up in a dpkg failure mess.
> It complains about file() directives in the source clauses of the config
> files of syslog-ng but there are no such things in the default config files.
> 
> --- aptitude buffer ---
> 
> root@drake~# aptitude install -R syslog-ng-core
> The following NEW packages will be installed:
>   syslog-ng-core
> 0 packages upgraded, 1 newly installed, 0 to remove and 1 not upgraded.
> Need to get 0 B/356 kB of archives. After unpacking 1,398 kB will be used.
> Selecting previously unselected package syslog-ng-core.
> (Reading database ... 56636 files and directories currently installed.)
> Unpacking syslog-ng-core (from .../syslog-ng-core_3.5.1-1_i386.deb) ...
> Processing triggers for man-db ...
> Setting up syslog-ng-core (3.5.1-1) ...
> Processing triggers for syslog-ng-core ...
> [ ok ] Stopping system logging: syslog-ng.
> [] Starting system logging: syslog-ngUnable to determine how to
> monitor this file, follow_freq() unset and it is not possible to poll
> it with the current ivykis polling method. Set follow-freq() for
> regular files or change IV_EXCLUDE_POLL_METHOD environment variable to
> override the automatically selected polling method;
> filename='/dev/kmsg', fd='9'
> Error initializing message pipeline;
>  failed!
> invoke-rc.d: initscript syslog-ng, action "start" failed.
> dpkg: error processing syslog-ng-core (--configure):
>  subprocess installed post-installation script returned error exit status 1
> Errors were encountered while processing:
>  syslog-ng-core
> E: Sub-process /usr/bin/dpkg returned an error code (1)
> A package failed to install.  Trying to recover:
> Setting up syslog-ng-core (3.5.1-1) ...
> Processing triggers for syslog-ng-core ...
> [ ok ] Stopping system logging: syslog-ng.
> [] Starting system logging: syslog-ngUnable to determine how to
> monitor this file, follow_freq() unset and it is not possible to poll
> it with the current ivykis polling method. Set follow-freq() for
> regular files or change IV_EXCLUDE_POLL_METHOD environment variable to
> override the automatically selected polling method;
> filename='/dev/kmsg', fd='9'
> Error initializing message pipeline;
>  failed!
> invoke-rc.d: initscript syslog-ng, action "start" failed.
> dpkg: error processing syslog-ng-core (--configure):
>  subprocess installed post-installation script returned error exit status 1
> Errors were encountered while processing:
>  syslog-ng-core
> 
> --- aptitude buffer ---
> also at http://paste.debian.net/66688/
> 
> 
> The interesting part is ofc(?) the failure from the daemon start.
> 
> Unable to determine how to monitor this file, follow_freq() unset and
> it is not possible to poll it with the current ivykis polling method.
> Set follow-freq() for regular files or change IV_EXCLUDE_POLL_METHOD
> environment variable to override the automatically selected polling
> method; filename='/dev/kmsg', fd='9'
> Error initializing message pipeline;
> 
> My syslog-ng internals knowledge fails me here.
> 
> grasping for straws. or rather greping for them:
> 
> root@drake~# grep -ir kmsg /etc/syslog-ng/*
> root@drake~# grep -ir kmsg /etc/syslog-ng/
> root@drake~# grep -ir dev /etc/syslog-ng/
> /etc/syslog-ng/syslog-ng.conf:# The named pipe /dev/xconsole is for the
> nsole' utility.  To use it,
> /etc/syslog-ng/syslog-ng.conf:#$ xconsole -file /dev/xconsole [...]
> /etc/syslog-ng/syslog-ng.conf:destination d_xconsole {
> pipe("/dev/xconsole"); };
> root@drake~# grep -ir freq /etc/syslog-ng/
> /etc/syslog-ng/syslog-ng.conf:owner("root"); group("adm"); perm(0640);
> stats_freq(0);
> 
> I can provide more data as needed. The system is working properly (as far
> as I can tell) without the syslog-ng process.
> 
> -- 
> brother

-- 
http://wiki.debian.org/FAQsFromDebianUser
Offtopic discussions among Debian users and developers:
http://lists.alioth.debian.org/mailman/listinfo/d-community-offtopic
http://nuvreauspam.ro/gpg-transition.txt


signature.asc
Description: Digital signature


Bug#729994: jitsi: doesn't show my built-in webcam

2013-11-19 Thread Kurt Roeckx
Package: jitsi
Version: 2.3.4909-1

Hi,

In Tools - Options - Video - Devices you have an option to
select a camera, however nothing is showing up there.

Other programs have no problem finding it.  It's /dev/video0
and is an stkwebcam connected via usb.  I have permissions
to use /dev/video0.


Kurt


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



Bug#729993: python-qt4-doc: some critical documentation files are missing since upload, of 4.10.3+dfsg-1 0

2013-11-19 Thread Neil Wallace
Package: python-qt4-doc
Version: 4.10.3+dfsg-1
Severity: important

Dear Maintainer,

since upgrading package python-qt4-doc 4.10.3+dfsg-1 0, I note some
important
files are missing.

eg. /usr/share/doc/python-qt4-doc/html/classes.html



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

Kernel: Linux 3.12.0 (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/dash

Versions of packages python-qt4-doc depends on:
ii  libjs-sphinxdoc  1.1.3+dfsg-8

python-qt4-doc recommends no packages.

Versions of packages python-qt4-doc suggests:
pn  qt4-doc  

-- 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#729581: grep: basic regular expression (BRE) not matching anymore

2013-11-19 Thread Santiago
tags 729581 + confirmed 
thanks

Hi Alen,

Thanks for reporting this bug.

El 14/11/13 a las 16:12, Alen Komic escribió:
> 
> Uwsgi package version 1.9.17.1-5 init scripts failing to start uwsgi apps 
> with following error:
>  bind(): Permission denied [core/socket.c line 185]
> 
> uwsgi is using debian specific startup scripts and two ini configuration 
> files.
> First file is /usr/share/uwsgi/conf/default.ini with default settings and its 
> parsed on startup with
> package supplied script /usr/share/uwsgi/init/snippets which is extracting 
> uid/gid and setting ownership
> on directory holding pid and socket files before the uwsgi-core is started.
> Line for extraction used is
> grep --max-count=1 "^\s*${KIND}\s*=" "$CONFFILE" \
> | sed -e "s/^\s*${KIND}\s*=\s*\(.*\)\s*/\1/g"
> 
> The following test showing that grep BRE is not matching regexp properly 
> anymore and returning empty string (wheezy version is).

I suppose you meant wheezy version is OK.

> $ echo 'uid = www-data' > /tmp/test.conf
> $ grep "^\s*uid\s*=" /tmp/test.conf
> Explicit BRE also not working
> $ grep -G "^\s*uid\s*=" /tmp/test.conf
> $
> 
> Temporary fix change the regex grep lines in /usr/share/uwsgi/init/snippets 
> from "grep" to "grep -E"
> 

grep 2.14-4 matches when using LANG=C:

$ LANG=C grep "^\s*uid\s*=" /tmp/test.conf
uid = www-data

Actually, a patch fixing a similar issue [1] introduced this bug. I
suppose it is present in grep 2.15, but I need to confirm.

[1] http://debbugs.gnu.org/cgi/bugreport.cgi?bug=15440

I'm lacking some free time right now, so any help is welcome! 

Cheers,

Santiago


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



Bug#698988: Bug#729660: ITP: xemacs21 -- highly customizable text editor

2013-11-19 Thread Henrique de Moraes Holschuh
On Tue, 19 Nov 2013, Russ Allbery wrote:
> Henrique de Moraes Holschuh  writes:
> > On Sun, 17 Nov 2013, Russ Allbery wrote:
> 
> >> Yeah, I know, which is part of why I used it for an example.  I looked
> >> at it yesterday and will probably adopt it at some point when I have
> >> enough free time to do a proper job on the initial upload.
> 
> > File an ITA bug on nvi with that paragraph, please.
> 
> An ITA bug on nvi will block someone else who wants to adopt it, and
> therefore I don't plan on doing that until I'm actually ready to commit to
> adopting it myself.  In the meantime, the orphaned status is correct.

It shouldn't, as long as you title it appropriately and explain that, should
someone else want it, they're welcome.

something like: "ITA: nvi (if someone else wants to adopt it, please do)"

> I read debian-release and debian-qa, so hopefully I'll notice if someone
> starts looking seriously at removing it from the archive.  I'll also copy
> this message to the O bug.

Yeah, that should help.

-- 
  "One disk to rule them all, One disk to find them. One disk to bring
  them all and in the darkness grind them. In the Land of Redmond
  where the shadows lie." -- The Silicon Valley Tarot
  Henrique Holschuh


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



Bug#729992: jitsi: settings dialog box doesn't have a way to close it

2013-11-19 Thread Kurt Roeckx
Package: jitsi
Version: 2.3.4909-1

Hi,

If I go to the menu Tools - Options I get different behavior
depending on what machine I use:
- On amd64 in xfce there are icons to maximize, and close
  the the dialog in the upper right corner.  And one to just
  show the window caption.
  (The main window and chat windows all have an additional
  minimize icon)
- On i386 with gnome there are no icons in the option window.
  (The other windows have minimize, maximize, close.)

I'm not sure if this is a jitsi problem, or maybe some problem
with some toolkit.  Please reassign if you think this is a bug
somewhere else.


Kurt


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



Bug#729991: syslog-ng-core uninstallable

2013-11-19 Thread Martin Bagge / brother
package: syslog.ng-core
severity: grave
version: 3.5.1-1 

On testing installing syslog-ng-core with no previous syslog-ng config
files you end up in a dpkg failure mess.
It complains about file() directives in the source clauses of the config
files of syslog-ng but there are no such things in the default config files.

--- aptitude buffer ---

root@drake~# aptitude install -R syslog-ng-core
The following NEW packages will be installed:
  syslog-ng-core
0 packages upgraded, 1 newly installed, 0 to remove and 1 not upgraded.
Need to get 0 B/356 kB of archives. After unpacking 1,398 kB will be used.
Selecting previously unselected package syslog-ng-core.
(Reading database ... 56636 files and directories currently installed.)
Unpacking syslog-ng-core (from .../syslog-ng-core_3.5.1-1_i386.deb) ...
Processing triggers for man-db ...
Setting up syslog-ng-core (3.5.1-1) ...
Processing triggers for syslog-ng-core ...
[ ok ] Stopping system logging: syslog-ng.
[] Starting system logging: syslog-ngUnable to determine how to
monitor this file, follow_freq() unset and it is not possible to poll
it with the current ivykis polling method. Set follow-freq() for
regular files or change IV_EXCLUDE_POLL_METHOD environment variable to
override the automatically selected polling method;
filename='/dev/kmsg', fd='9'
Error initializing message pipeline;
 failed!
invoke-rc.d: initscript syslog-ng, action "start" failed.
dpkg: error processing syslog-ng-core (--configure):
 subprocess installed post-installation script returned error exit status 1
Errors were encountered while processing:
 syslog-ng-core
E: Sub-process /usr/bin/dpkg returned an error code (1)
A package failed to install.  Trying to recover:
Setting up syslog-ng-core (3.5.1-1) ...
Processing triggers for syslog-ng-core ...
[ ok ] Stopping system logging: syslog-ng.
[] Starting system logging: syslog-ngUnable to determine how to
monitor this file, follow_freq() unset and it is not possible to poll
it with the current ivykis polling method. Set follow-freq() for
regular files or change IV_EXCLUDE_POLL_METHOD environment variable to
override the automatically selected polling method;
filename='/dev/kmsg', fd='9'
Error initializing message pipeline;
 failed!
invoke-rc.d: initscript syslog-ng, action "start" failed.
dpkg: error processing syslog-ng-core (--configure):
 subprocess installed post-installation script returned error exit status 1
Errors were encountered while processing:
 syslog-ng-core

--- aptitude buffer ---
also at http://paste.debian.net/66688/


The interesting part is ofc(?) the failure from the daemon start.

Unable to determine how to monitor this file, follow_freq() unset and
it is not possible to poll it with the current ivykis polling method.
Set follow-freq() for regular files or change IV_EXCLUDE_POLL_METHOD
environment variable to override the automatically selected polling
method; filename='/dev/kmsg', fd='9'
Error initializing message pipeline;

My syslog-ng internals knowledge fails me here.

grasping for straws. or rather greping for them:

root@drake~# grep -ir kmsg /etc/syslog-ng/*
root@drake~# grep -ir kmsg /etc/syslog-ng/
root@drake~# grep -ir dev /etc/syslog-ng/
/etc/syslog-ng/syslog-ng.conf:# The named pipe /dev/xconsole is for the
nsole' utility.  To use it,
/etc/syslog-ng/syslog-ng.conf:#$ xconsole -file /dev/xconsole [...]
/etc/syslog-ng/syslog-ng.conf:destination d_xconsole {
pipe("/dev/xconsole"); };
root@drake~# grep -ir freq /etc/syslog-ng/
/etc/syslog-ng/syslog-ng.conf:owner("root"); group("adm"); perm(0640);
stats_freq(0);

I can provide more data as needed. The system is working properly (as far
as I can tell) without the syslog-ng process.

-- 
brother


Bug#729990: gnome-control-center -l does not exit

2013-11-19 Thread shirish शिरीष
Package: gnome-control-center
Version: 1:3.8.3-4
Severity: normal

Dear Maintainer,
This is from the manpage of gnome-control-center :-

-l, --list
   Lists the available panels and exits.

I put it up and waited for 10 mins. and still it didn't exit. I
finally had to kill it. Have no idea if this is/was fixed in GNOME
3.10 or not.

$ ps ux | grep gnome-control-center
shirish  22793  0.0  1.9 967972 40396 pts/0Sl+  04:36   0:00
gnome-control-center -l

Looking forward to know. Any info. needed please lemme know.

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

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

Versions of packages gnome-control-center depends on:
ii  accountsservice0.6.34-2
ii  apg2.2.3.dfsg.1-2
ii  colord 1.0.2-1
ii  desktop-file-utils 0.22-1
ii  gnome-control-center-data  1:3.8.3-4
ii  gnome-desktop3-data3.8.4-2
ii  gnome-icon-theme   3.10.0-1
ii  gnome-icon-theme-symbolic  3.10.1-1
ii  gnome-menus3.8.0-2
ii  gnome-settings-daemon  3.8.5-2
ii  gsettings-desktop-schemas  3.8.2-2
ii  libaccountsservice00.6.34-2
ii  libatk1.0-02.10.0-2
ii  libc6  2.17-93
ii  libcairo2  1.12.16-2
ii  libcanberra-gtk3-0 0.30-2
ii  libcanberra0   0.30-2
ii  libcheese-gtk233.10.1-1sid1
ii  libcheese7 3.10.1-1sid1
ii  libclutter-gtk-1.0-0   1.4.4-3
ii  libcolord-gtk1 0.1.25-1
ii  libcolord1 1.0.2-1
ii  libcups2   1.6.3-1
ii  libdbus-glib-1-2   0.100.2-1
ii  libfontconfig1 2.11.0-1
ii  libgdk-pixbuf2.0-0 2.28.2-1
ii  libgl1-mesa-glx [libgl1]   9.2.2-1
ii  libglib2.0-0   2.36.4-1
ii  libgnome-bluetooth11   3.8.1-2
ii  libgnome-desktop-3-7   3.8.4-2
ii  libgoa-1.0-0   3.8.3-2
ii  libgtk-3-0 3.8.4-1
ii  libgtop2-7 2.28.5-2
ii  libibus-1.0-5  1.5.3-7
ii  libkrb5-3  1.11.3+dfsg-3
ii  libnm-glib-vpn10.9.8.0-5
ii  libnm-glib40.9.8.0-5
ii  libnm-gtk0 0.9.8.4-1
ii  libnm-util20.9.8.0-5
ii  libpango-1.0-0 1.36.0-1
ii  libpangocairo-1.0-01.36.0-1
ii  libpolkit-gobject-1-0  0.105-4
ii  libpulse-mainloop-glib04.0-6+b1
ii  libpulse0  4.0-6+b1
ii  libpwquality1  1.2.3-1
ii  libsmbclient   2:4.0.11+dfsg-1
ii  libsocialweb-client2   0.25.20-6
ii  libupower-glib10.9.23-2
ii  libwacom2  0.8-1
ii  libx11-6   2:1.6.2-1
ii  libxi6 2:1.7.2-1
ii  libxml22.9.1+dfsg1-3

Versions of packages gnome-control-center recommends:
ii  cups-pk-helper 0.2.5-1
ii  gkbd-capplet   3.6.0-1
ii  gnome-online-accounts  3.8.3-2
ii  gnome-user-guide   3.8.2-1
ii  gnome-user-share   3.8.3-1
ii  iso-codes  3.48-1
ii  mesa-utils 8.1.0-2
ii  mousetweaks3.8.0-1
pn  network-manager-gnome  
ii  ntp1:4.2.6.p5+dfsg-3
ii  policykit-1-gnome  0.105-2
ii  rygel  0.20.1-1
ii  rygel-tracker  0.20.1-1
ii  system-config-printer  1.4.3-1

Versions of packages gnome-control-center suggests:
ii  gnome-screensaver3.6.1-1
ii  gstreamer1.0-pulseaudio  1.2.0-1
ii  libcanberra-gtk-module   0.30-2
ii  libcanberra-gtk3-module  0.30-2
ii  x11-xserver-utils7.7+1
ii  xscreensaver 5.22-1

-- no debconf information


-- 
  Regards,
  Shirish Agarwal  शिरीष अग्रवाल
  My quotes in this email licensed under CC 3.0
http://creativecommons.org/licenses/by-nc/3.0/
http://flossexperiences.wordpress.com
065C 6D79 A68C E7EA 52B3  8D70 950D 53FB 729A 8B17


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



Bug#728789: Same here

2013-11-19 Thread 0 1

Package: dwb
Version: 20130503hg-2

Same behaviour here. Websites aren't easy with all the javascript and 
flash, but dwb is very quick to crash.

See attached file for crash log.


--- System information. ---
Architecture: amd64
Kernel:   Linux 3.10-3-rt-amd64

Debian Release: jessie/sid
  500 testing ftp.fr.debian.org
  500 stable  ftp.fr.debian.org

--- Package information. ---
Depends (Version) | Installed
=-+-===
libc6   (>= 2.11) |
libgdk-pixbuf2.0-0(>= 2.22.0) |
libglib2.0-0(>= 2.36) |
libgnutls26(>= 2.12.17-0) |
libgtk-3-0 (>= 3.0.0) |
libjavascriptcoregtk-3.0-0 (>= 1.5.1) |
libpango1.0-0 (>= 1.14.0) |
libsoup2.4-1 (>= 2.37.92) |
libwebkitgtk-3.0-0(>= 1.3.13) |


Recommends  (Version) | Installed
=-+-===
wget  | 1.14-5
xterm | 297-1


Package's Suggests field is empty.

Received SIGSEGV, trying to clean up.

Last 19 stack frames:

 19: dwb(+0x44388) [0x7f9cb048b388]
 18: dwb(+0x56a2f) [0x7f9cb049da2f]
 17: /lib/x86_64-linux-gnu/libpthread.so.0(+0xf210) [0x7f9cabc19210]
 16: /usr/lib/libwebkitgtk-3.0.so.0(+0x6f95df) [0x7f9cae9285df]
 15: /usr/lib/libwebkitgtk-3.0.so.0(+0x54bc44) [0x7f9cae77ac44]
 14: /usr/lib/libjavascriptcoregtk-3.0.so.0(_ZN3JSC11SlotVisitor5drainEv+0xf3) 
[0x7f9cac6c2f43]
 13: /usr/lib/libjavascriptcoregtk-3.0.so.0(_ZN3JSC4Heap9markRootsEv+0xc65) 
[0x7f9cac6c61d5]
 12: 
/usr/lib/libjavascriptcoregtk-3.0.so.0(_ZN3JSC4Heap7collectENS0_11SweepToggleE+0x187)
 [0x7f9cac6c7c57]
 11: /usr/lib/libwebkitgtk-3.0.so.0(+0x502282) [0x7f9cae731282]
 10: /usr/lib/libwebkitgtk-3.0.so.0(+0x4bd380) [0x7f9cae6ec380]
  9: /usr/lib/libwebkitgtk-3.0.so.0(+0x4cf8a2) [0x7f9cae6fe8a2]
  8: /lib/x86_64-linux-gnu/libglib-2.0.so.0(+0x48a03) [0x7f9cac12ea03]
  7: /lib/x86_64-linux-gnu/libglib-2.0.so.0(g_main_context_dispatch+0x146) 
[0x7f9cac12dea6]
  6: /lib/x86_64-linux-gnu/libglib-2.0.so.0(+0x481f8) [0x7f9cac12e1f8]
  5: /lib/x86_64-linux-gnu/libglib-2.0.so.0(g_main_context_iteration+0x2c) 
[0x7f9cac12e29c]
  4: /usr/lib/x86_64-linux-gnu/libgio-2.0.so.0(g_application_run+0x1c4) 
[0x7f9cacee46e4]
  3: dwb(+0x47429) [0x7f9cb048e429]
  2: /lib/x86_64-linux-gnu/libc.so.6(__libc_start_main+0xf5) [0x7f9cab87f995]
  1: dwb(+0x44465) [0x7f9cb048b465]
zsh: segmentation fault  dwb


Bug#729545: libmtp-dev dependency issue on kfreebsd

2013-11-19 Thread Modestas Vainius
Control: reassign -1 libgphot2-2-dev 2.4.14-2.3

Hello,

Sekmadienis 17 Lapkritis 2013 19:17:31 Markus Koschany rašė:
> I prepared the last NMU for libgphoto2 because we ran into a similar
> issue with sane-backends back then. I agree that libmtp-dev needs to be
> fixed too. However I also think that the dependency on libusbx/libusb2
> can be dropped completely from libgphot2-2-dev because the reason for
> that, described in #407108, no longer holds true.
> 
> See also http://bugs.debian.org/717914, that libgphoto2-2-dev should not
> depend on libusb-1.0-0-dev anymore.

Looks like you are right: libusb-1.0-0-dev should be dropped from libgphot2-2-
dev depends. I will prepare a NMU.

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


Bug#729445: Workaround

2013-11-19 Thread Dmitrijs Ledkovs
On 19 November 2013 17:21, Martin Michlmayr  wrote:
> Here's a workaround for partman-basicfilesystem but obviously it would
> be nice if this could get fixed properly.
>

Very clever! =) i think to be honest, this is good enough.

Regards,

Dmitrijs.


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



Bug#729965: libcurl3 7.21.0-2.1+squeeze5 --insecure regression

2013-11-19 Thread Alessandro Ghedini
On Tue, Nov 19, 2013 at 09:45:50PM +0100, Salvatore Bonaccorso wrote:
> Hi Alessandro,
> 
> On Tue, Nov 19, 2013 at 06:18:42PM +0100, Alessandro Ghedini wrote:
> > Control: reassing -1 curl
> > Control: found -1 curl/7.21.0-2.1+squeeze5
> > Control: found -1 curl/7.26.0-1+wheezy5
> > Control: tags -1 confirmed
> > 
> > On mar, nov 19, 2013 at 09:51:35 -0600, Brian Kroth wrote:
> > > Package: libcurl3
> > > Version: 7.21.0-2.1+squeeze5
> > > Severity: important
> > > 
> > > 
> > > Hi, I believe I've found a regression in the recent libcurl3 DSA update.  
> > > Basically, it doesn't seem to be respecting the --insecure option in all 
> > > cases.
> > 
> > Yes, it seems that the libcurl3 patch exposed a latent bug in the curl tool
> > that was fixed in a later version (7.28.1 AFAICT). Wheezy is affected too.
> > 
> > For the security team, I prepared new uploads that fix the regression (see
> > attached debdiffs), could you please have a look?
> 
> This looks good to me. Could you upload both packages for
> security-master?

Done.

-- 
perl -E '$_=q;$/= @{[@_]};and s;\S+;;eg;say~~reverse'


signature.asc
Description: Digital signature


Bug#726341: ideviceinstaller: FTBFS against libimobildevice 1.1.5

2013-11-19 Thread Modestas Vainius
Hello,

Antradienis 19 Lapkritis 2013 20:24:36 Andreas Metzler rašė:
> > Šeštadienis 09 Lapkritis 2013 09:29:29 rašė:
> > > This FTBFS is now happening in sid, so bumping this to serious.  This is
> > > currently stalling the libimobildevice transition.
> > 
> > Could you NMU ideviceinstaller in unstable? It seems to have built
> > fine on all arches in experimental.
> 
> Hello,
> 
> I can, but I will not be able to this week. I expect it would take
> until monday 26th.

Ok, I have some time so I will do it today then.


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


Bug#690892: /etc/insserv/overrides/* too? (Re: Bug#690892: Acknowledgement (sysv: incorrect ordering for nfs-common and rpcbind))

2013-11-19 Thread Gerald Turner
Hello, I'm a newbie at systemd, just beginning to learn it on a test
system that I've upgraded to jessie.

I have a few systems where I place LSB comment header -style files in
/etc/insserv/overrides/ as documented in insserv(8).  systemd doesn't
parse these.  OTOH if I hack my edits directly into /etc/init.d/, then
systemd does pick up my local changes to dependency order.

Example, /etc/insserv/overrides/ipsec:

  ### BEGIN INIT INFO
  # Provides:  ipsec
  # Required-Start:$network $remote_fs aiccu
  # Required-Stop: $network $remote_fs aiccu
  # Default-Start: 2 3 4 5
  # Default-Stop:  0 1 6
  # Short-Description: Strongswan IPsec services
  ### END INIT INFO

(I need an AYIYA tunnel started before strongswan)

-- 
Gerald Turner   Email: gtur...@unzane.com   JID: gtur...@unzane.com
GPG: 0xFA8CD6D5  21D9 B2E8 7FE7 F19E 5F7D  4D0C 3FA0 810F FA8C D6D5


pgpIIC80mViSd.pgp
Description: PGP signature


Bug#729785: Copyright review for the package libpqxx 4.0.1-2.

2013-11-19 Thread Charles Plessy
Le Tue, Nov 19, 2013 at 09:04:37PM +, Marcin Kulisz a écrit :
> On 2013-11-17 20:43:05, Charles Plessy wrote:
> 
> > I found that libpqxx 4.0.1 contains at least one minified JavaScript file,
> > doc/html/Reference/jquery.js, for which there is no coresponding source, and
> > that is mentionned in the Debian copyright file.  If it works, it would be
> > better to replace this file with a link to the same file provided by
> > libjs-jquery.  You may find other advices on the debian-mentors mailing 
> > list on
> > how to deal with the situation.
>  
> I'm already providing link for jquery.js in libpqxx-doc.links, it is 
> documented
> in README.Debian, sorry for not giving explicit information about it in dch.
> If you think it'll be beneficial for the future I'll add such information in 
> to
> dch with the next commit. Hopefully this is sorting this problem.
> 
> On the other hand can you tell me how did you found this problem as according
> to the files listing from
> http://ftp-master.debian.org/new/libpqxx_4.0.1-2.html,
> my build logs and actual package check link is there, lintian is not
> complaining (and it used to before), so I'm a bit confused.

Hi Marcin,

indeed, I based my review on the copyright file displayed at the URL above, and
on the upstream tarball provided by the 4.0.1-1 package, given that nothing
mentions that it changed since.  I did not pay attention to the README.Debian
file, sorry, but simply grepped the unpacked source for strings such as
copyright, ©, (c), license, redistrib, etc.

The problem is that, in contrary to what the README.Debian file mentions, the
sourceless file jquery.js is still there in the source package.  In my
understanding of Debian's requirements, it has to be removed.

Cheers,

-- 
Charles Plessy
Debian Med packaging team,
http://www.debian.org/devel/debian-med
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#729097: enabled by default encryption breaks multi-server submission unless they share the same keyo

2013-11-19 Thread Bill Allombert
On Mon, Nov 18, 2013 at 11:16:57AM -0500, Yaroslav Halchenko wrote:
> > The problem is that the result depends in which order the "for" loop read 
> > the file,
> > since they all set the same variables, unless one do in all the *.conf like
> > SUBMITURLS="$SUBMITURLS http://myurl";
> > so this is not very robust. 
> 
> as long as it is reasonably documented -- it is bullet-proof! ;)
> 
> could also do smth like
> 
> /bin/ls /etc/popularity-contest.d/*.conf | sort | while read i; do
> 
> to provide consistency in order

Maybe it is better to use 
`run-parts --list --regex '\.conf$' /etc/popularity-contest.d/`

Mind to write the documentation ?

Cheers,
-- 
Bill. 

Imagine a large red swirl here. 


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



Bug#729989: apache2: Consider applying patch for upstream bug 29744 (CONNECT over SSL) to wheezy

2013-11-19 Thread David North
Package: apache2.2-common
Version: 2.2.22-13
Severity: wishlist

https://issues.apache.org/bugzilla/show_bug.cgi?id=29744 prevents CONNECT 
working over SSL.

The classic use-case for this is tunnelling SSH over a 'normal' HTTP SSL 
connection to avoid
troublesome proxies and firewalls, as per 
http://dag.wiee.rs/howto/ssh-http-tunneling/

This bug has been fixed in Apache 2.4, however that's not much use to those of 
us running stable
with Apache 2.2.222

Please consider back-porting the patch from the upstream bug to wheezy:

https://issues.apache.org/bugzilla/attachment.cgi?id=30144

I'd be happy to help in any way I can. I want this feature, but having to 
recompile mod_proxy
and diverge from the official packages is a step too far.

Alternatively, if there's a prospect of Apache 2.4 making it into backports for 
wheezy, that would
be a very acceptable solution.

-- Package-specific info:
List of /etc/apache2/mods-enabled/*.load:
  alias auth_basic authn_file authz_default authz_groupfile
  authz_host authz_svn authz_user autoindex cgid dav dav_svn deflate
  dir env fastcgi headers mime negotiation proxy proxy_connect
  proxy_http reqtimeout rewrite setenvif ssl status

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

Kernel: Linux 3.2.0-4-amd64 (SMP w/1 CPU core)
Locale: LANG=en_GB.UTF-8, LC_CTYPE=C (charmap=UTF-8) (ignored: LC_ALL set to 
en_GB.UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages apache2 depends on:
ii  apache2-mpm-worker  2.2.22-13
ii  apache2.2-common2.2.22-13

apache2 recommends no packages.

apache2 suggests no packages.

Versions of packages apache2.2-common depends on:
ii  apache2-utils  2.2.22-13
ii  apache2.2-bin  2.2.22-13
ii  lsb-base   4.1+Debian8+deb7u1
ii  mime-support   3.52-1
ii  perl   5.14.2-21+deb7u1
ii  procps 1:3.3.3-3

Versions of packages apache2.2-common recommends:
ii  ssl-cert  1.0.32

Versions of packages apache2.2-common suggests:
pn  apache2-doc 
pn  apache2-suexec | apache2-suexec-custom  
ii  elinks [www-browser]0.12~pre5-9

-- 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#729985: linux-image-3.2.0-4-486: Kernel panic Unable to mount root on old laptop with linux-image-3.2.0-4-486

2013-11-19 Thread Ben Hutchings
Control: tag -1 moreinfo

On Tue, Nov 19, 2013 at 10:31:06PM +0100, sebek wrote:
> Package: src:linux
> Version: 3.2.51-1
> Severity: critical
> Justification: breaks the whole system
> 
> Dear Maintainer,
> 
> After an aptitude upgrade in debian wheezy, a new kernel 
> linux-image-3.2.0-4-486 was installed.
> This kernel does not boot with following messages:
> 
> No filesystem could mount root: tried:
> Kernel Panic - not syncing: VFS: Unable to mount root fs on unknown-block(0,0)
> and then a stack trace.
[...]

It sounds like the initramfs is missing or otherwise broken.
This is not something the kernel package itself does.

What does this command show (you need to run it as root):

lsinitramfs /boot/initrd.img-3.2.0-4-486

Ben.

-- 
Ben Hutchings
Horngren's Observation:
   Among economists, the real world is often a special case.


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



Bug#729988: xchat: Background can't be set to transparent anymore as of GNOME 3.6

2013-11-19 Thread Manuel Bilderbeek
Package: xchat
Version: 2.8.8-7.1+b1
Severity: normal

Dear Maintainer,

As of yesterday, GNOME 3.6 got into testing and that stopped the
transparent background from working on system which run GNOME 3. Setting
it now gives the error:
"Unable to set transparent background!

You may be using a non-compliant window
manager that is not currently supported."

Apparently this newer version of GNOME 3 (which is the main and default
desktop environment on Debian now) does not support this feature any
more? (Talking about functional regression...) As far as I understand
from GNOME people, the method XChat is using is outdated, hence this bug
report.

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

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

Versions of packages xchat depends on:
ii  libatk1.0-0  2.10.0-2
ii  libc62.17-93
ii  libcairo21.12.16-2
ii  libdbus-1-3  1.6.18-1
ii  libdbus-glib-1-2 0.100.2-1
ii  libfontconfig1   2.11.0-1
ii  libfreetype6 2.4.9-1.1
ii  libgdk-pixbuf2.0-0   2.28.2-1
ii  libglib2.0-0 2.36.4-1
ii  libgtk2.0-0  2.24.22-1
ii  libpango-1.0-0   1.36.0-1
ii  libpangocairo-1.0-0  1.36.0-1
ii  libpangoft2-1.0-01.36.0-1
ii  libperl5.18  5.18.1-4
ii  libsexy2 0.1.11-2+b1
ii  libssl1.0.0  1.0.1e-4
ii  libx11-6 2:1.6.2-1
ii  libxml2  2.9.1+dfsg1-3
ii  xchat-common 2.8.8-7.1

Versions of packages xchat recommends:
ii  alsa-utils 1.0.27.2-1
ii  libnotify-bin  0.7.6-1
ii  libnotify4 0.7.6-1
ii  libpython2.7   2.7.5-8
ii  tcl8.5 8.5.14-2
ii  xdg-utils  1.1.0~rc1+git20111210-7

xchat 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#729987: lives: missing dep on libmjpegutils-2.1-0

2013-11-19 Thread Yann Dirson
Package: lives
Version: 2.0.6~ds0-1
Severity: serious

$ lives test.mov
/usr/lib/lives/lives-exe: error while loading shared libraries: 
libmjpegutils-2.1.so.0: cannot open shared object file: No such file or 
directory

Installing libmjpegutils-2.1-0 fixes the problem.

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

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

Versions of packages lives depends on:
ii  frei0r-plugins1.1.22git20091109-1.4
ii  imagemagick   8:6.7.7.10-6
ii  libasound21.0.27.2-3
ii  libatk1.0-0   2.10.0-2
ii  libavc1394-0  0.5.4-2
ii  libavcodec54  6:9.10-1
ii  libavformat54 6:9.10-1
ii  libavutil52   6:9.10-1
ii  libc6 2.17-93
ii  libcairo-gobject2 1.12.16-2
ii  libcairo2 1.12.16-2
ii  libdv41.0.0-6
ii  libgcc1   1:4.8.2-1
ii  libgdk-pixbuf2.0-02.28.2-1
ii  libgl1-mesa-glx [libgl1]  9.2.2-1
ii  libglee0d15.4.0-2
ii  libglib2.0-0  2.36.4-1
ii  libglu1-mesa [libglu1]9.0.0-2
ii  libgtk-3-03.8.4-1
ii  libjack-jackd2-0 [libjack-0.116]  1.9.9.5+20130622git7de15e7a-1
ii  libmjpegutils-2.0-0   1:2.0.0+debian-2
ii  libogg0   1.3.1-1
ii  liboil0.3 0.3.17-2
ii  libpango-1.0-01.36.0-1
ii  libpangocairo-1.0-0   1.36.0-1
ii  libpng12-01.2.49-5
ii  libpulse0 4.0-6+b1
ii  libraw1394-11 2.1.0-1
ii  libsdl1.2debian   1.2.15-8
ii  libstdc++64.8.2-1
ii  libswscale2   6:9.10-1
ii  libtheora01.1.1+dfsg.1-3.1
ii  libunicap20.9.12-2
ii  libweed0  2.0.6~ds0-1
ii  libx11-6  2:1.6.2-1
ii  libxrender1   1:0.9.8-1
ii  lives-data2.0.6~ds0-1
ii  mplayer   2:1.0~rc4.dfsg1+svn34540-1+b2
ii  ogmtools  1:1.5-3+b1
ii  perl  5.18.1-4
ii  procps1:3.3.4-2
ii  python2.7.5-5
ii  sox   14.4.1-3
ii  zlib1g1:1.2.8.dfsg-1

Versions of packages lives recommends:
pn  dvgrab 
pn  icedax 
ii  libtheora-bin  1.1.1+dfsg.1-3.1
ii  mencoder   2:1.0~rc4.dfsg1+svn34540-1+b2
pn  mkvtoolnix 
ii  pulseaudio 4.0-6+b1
ii  x11-utils  7.7+1
ii  youtube-dl 2013.10.23-1

Versions of packages lives suggests:
ii  ffmpeg  6:0.8.9-1
pn  libdv-bin   
pn  mjpegtools  

-- 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#729986: libnss-mysql-bg: Patch 04_shadow.diff Introduces Lock Acquisition Hang

2013-11-19 Thread Pat Suwalski
Package: libnss-mysql-bg
Version: 1.5-3+b3
Severity: serious
Justification: Policy 4.3

Hello,

I have found that the Debian patch 04_shadow.diff to libnss-mysql-bg causes
the library to hang under completely typical usage.

I am using libnss-mysql-bg with chrooted SFTP as documented here:
http://www.debian-administration.org/articles/590

I do not believe this to be causing the issue in question.

The issue is that when a get* entity check happens under the sftp session, the
server process hangs. This can be triggered simply by running 'ls' in the
sftp client.

A backtrace of the internal-sftp process shows the issue clearly:

#0  0x7f2ba42f6cec in __lll_lock_wait () from 
/lib/x86_64-linux-gnu/libpthread.so.0
#1  0x7f2ba42f2339 in _L_lock_926 () from 
/lib/x86_64-linux-gnu/libpthread.so.0
#2  0x7f2ba42f215b in pthread_mutex_lock () from 
/lib/x86_64-linux-gnu/libpthread.so.0
#3  0x7f2ba0d368d9 in _nss_mysql_getgrnam_r () from 
/usr/lib/x86_64-linux-gnu/libnss_mysql.so.2
#4  0x7f2ba5216a8d in getgrnam_r () from /lib/x86_64-linux-gnu/libc.so.6
#5  0x7f2ba52160e0 in getgrnam () from /lib/x86_64-linux-gnu/libc.so.6
#6  0x7f2ba0d361c8 in ?? () from /usr/lib/x86_64-linux-gnu/libnss_mysql.so.2
#7  0x7f2ba0d36547 in _nss_mysql_getpwuid_r () from 
/usr/lib/x86_64-linux-gnu/libnss_mysql.so.2
#8  0x7f2ba5217f4d in getpwuid_r () from /lib/x86_64-linux-gnu/libc.so.6
#9  0x7f2ba521783f in getpwuid () from /lib/x86_64-linux-gnu/libc.so.6

Both _nss_mysql_getpwuid_r() and _nss_mysql_getgrnam_r() use
_nss_mysql_lookup(), which uses a mutex. Naturally, these functions
cannot be nested.

The recursed nature of this execution is introduced by 04_shadow.diff, which
does the following inside _nss_mysql_lookup():

+  /* Get shadow gid, if needed */
+  if(cur_euid != 0) {
+cur_egid = getegid ();
+struct group *grp = getgrnam("shadow");
+shadow_gid = (grp ? grp->gr_gid : -1);
+  }

Assuming getgrnam() is mapped to libnss-mysql-bg in /etc/libnss-mysql.cfg,
it will re-enter libnss-mysql and block on the lock.

This simple workaround allows this package to work on my system:

--- lookup.c.orig   2013-11-19 20:16:12.778779823 +
+++ lookup.c2013-11-19 20:17:05.622959118 +
@@ -143,8 +143,7 @@
   /* Get shadow gid, if needed */
   if(cur_euid != 0) {
 cur_egid = getegid ();
-struct group *grp = getgrnam("shadow");
-shadow_gid = (grp ? grp->gr_gid : -1);
+shadow_gid = 42;
   }
 
   D ("%s: restricted = %d, cur_euid = %u", FUNCNAME, restricted, cur_euid);

This is obviously not the correct solution for the package, but it allows
it to be used on my servers, and any server with Debian-standard group
numbering.

It is not clear what the original patch was actually trying to accomplish,
so I cannot write a correct real fix.


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

Kernel: Linux 3.2.0-4-amd64 (SMP w/8 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 libnss-mysql-bg depends on:
ii  libc6  2.13-38
ii  libmysqlclient18   5.5.31+dfsg-0+wheezy1
ii  multiarch-support  2.13-38
ii  zlib1g 1:1.2.7.dfsg-13

libnss-mysql-bg recommends no packages.

Versions of packages libnss-mysql-bg suggests:
ii  libpam-mysql  0.7~RC1-4+b3
pn  mysql-server  

-- Configuration Files:
/etc/libnss-mysql-root.cfg [Errno 13] Permission denied: 
u'/etc/libnss-mysql-root.cfg'
/etc/libnss-mysql.cfg changed [not included]

-- 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#729985: linux-image-3.2.0-4-486: Kernel panic Unable to mount root on old laptop with linux-image-3.2.0-4-486

2013-11-19 Thread sebek
Package: src:linux
Version: 3.2.51-1
Severity: critical
Justification: breaks the whole system

Dear Maintainer,

After an aptitude upgrade in debian wheezy, a new kernel 
linux-image-3.2.0-4-486 was installed.
This kernel does not boot with following messages:

No filesystem could mount root: tried:
Kernel Panic - not syncing: VFS: Unable to mount root fs on unknown-block(0,0)
and then a stack trace.

I tried adding some debugging parameter to the kernel start line as instructed 
in:
https://wiki.archlinux.org/index.php/Boot_Debugging#Extreme_Debug
but it didn't added anything useful.

When selected in grub, the older kernel linux-image-3.2.0-2-486 (Version: 
3.2.20-1) does boot correctly.

When comparing 3.2.0-2 and 3.2.0-4 in /boot/grub/grub.cfg, they look similar 
(especially the set root='(hd0,msdos1)' and the UUID)

My laptop is a HP compaq nx7000 

cat /proc/cpuinfo 
processor   : 0
vendor_id   : GenuineIntel
cpu family  : 6
model   : 9
model name  : Intel(R) Pentium(R) M processor 1400MHz
stepping: 5
microcode   : 0x5
cpu MHz : 600.000
cache size  : 1024 KB
fdiv_bug: no
hlt_bug : no
f00f_bug: no
coma_bug: no
fpu : yes
fpu_exception   : yes
cpuid level : 2
wp  : yes
flags   : fpu vme de pse tsc msr mce cx8 sep mtrr pge mca cmov clflush 
dts acpi mmx fxsr sse sse2 tm pbe bts est tm2
bogomips: 1196.20
clflush size: 64
cache_alignment : 64
address sizes   : 32 bits physical, 32 bits virtual
power management:



-- Package-specific info:
** Kernel log: boot messages should be attached

** Model information
not available

** PCI devices:
00:00.0 Host bridge [0600]: Intel Corporation 82855PM Processor to I/O 
Controller [8086:3340] (rev 03)
Subsystem: Compaq Computer Corporation Device [0e11:0860]
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR- FastB2B- DisINTx-
Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- SERR- 
Kernel driver in use: agpgart-intel

00:01.0 PCI bridge [0604]: Intel Corporation 82855PM Processor to AGP 
Controller [8086:3341] (rev 03) (prog-if 00 [Normal decode])
Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR- FastB2B- DisINTx-
Status: Cap- 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- SERR- TAbort- 
Reset- FastB2B-
PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-

00:1d.0 USB controller [0c03]: Intel Corporation 82801DB/DBL/DBM 
(ICH4/ICH4-L/ICH4-M) USB UHCI Controller #1 [8086:24c2] (rev 01) (prog-if 00 
[UHCI])
Subsystem: Compaq Computer Corporation Device [0e11:0860]
Control: I/O+ Mem- BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR- FastB2B- DisINTx-
Status: Cap- 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- 
SERR- TAbort- 
SERR- TAbort- 
SERR- TAbort- 
SERR- 
Kernel driver in use: ehci_hcd

00:1e.0 PCI bridge [0604]: Intel Corporation 82801 Mobile PCI Bridge 
[8086:2448] (rev 81) (prog-if 00 [Normal decode])
Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR+ FastB2B- DisINTx-
Status: Cap- 66MHz- UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- SERR- TAbort- 
Reset- FastB2B-
PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-

00:1f.0 ISA bridge [0601]: Intel Corporation 82801DBM (ICH4-M) LPC Interface 
Bridge [8086:24cc] (rev 01)
Control: I/O+ Mem+ BusMaster+ SpecCycle+ MemWINV- VGASnoop- ParErr- 
Stepping- SERR+ FastB2B- DisINTx-
Status: Cap- 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- 
SERR- TAbort- 
SERR- TAbort- 
SERR- TAbort- 
SERR- 
Kernel driver in use: snd_intel8x0

00:1f.6 Modem [0703]: Intel Corporation 82801DB/DBL/DBM (ICH4/ICH4-L/ICH4-M) 
AC'97 Modem Controller [8086:24c6] (rev 01) (prog-if 00 [Generic])
Subsystem: Compaq Computer Corporation Device [0e11:0860]
Control: I/O+ Mem- BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR- FastB2B- DisINTx-
Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- 
SERR- 
Kernel driver in use: snd_intel8x0m

01:00.0 VGA compatible controller [0300]: Advanced Micro Devices [AMD] nee ATI 
Radeon RV250 [Mobility FireGL 9000] [1002:4c66] (rev 01) (prog-if 00 [VGA 
controller])
Subsystem: Compaq Computer Corporation Device [0e11:0860]
Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping+ SERR- FastB2B- DisINTx-
Status: Cap+ 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- 
SERR- 
Kernel driver in use: radeon

02:00.0 FireWire (IEEE 1394) [0c00]: VIA Technologies, Inc. VT6306/7/8 [Fire 
II(M)] IEEE 1394 OHCI Controller [1106:3044] (rev 80) (prog-if 10 [OHCI])
Subsystem: VIA Technologies, Inc. VT6306/7/8 [Fire II(M)] IEEE 1394 
OHCI Controller [1106:3044]
Control: I/O+ Mem+ BusMast

Bug#729984: ITP: golang-gocheck-dev -- Richer testing framework for Go libraries and applications to use.

2013-11-19 Thread Sergio Schvezov
Package: wnpp
Severity: wishlist
Owner: Sergio Schvezov 

* Package name: golang-gocheck-dev
  Version : 0.0~bzr20131118+85
  Upstream Author : Gustavo Niemeyer 
* URL : http://labix.org/gocheck
* License : BSD-3-Clause
  Programming Lang: Go
  Description : Richer testing framework for Go libraries and
applications to use.

gocheck extends Go's internal testing library with features such as:

- Helpful error reporting to aid on figuring problems out
- Richer test helpers: assertions which interrupt the test immediately,
  deep multi-type comparisons, string matching, etc
- Suite-based grouping of tests
- Fixtures: per suite and/or per test set up and tear down
- Benchmarks integrated in the suite logic (with fixtures, etc)
- Management of temporary directories
- Panic-catching logic, with proper error reporting
- Proper counting of successes, failures, panics, missed tests, skips,
etc
- Explicit test skipping
- Support for expected failures
- Verbosity flag which disables output caching (helpful to debug
  hanging tests, for instance)
- Multi-line string reporting for more comprehensible failures
- Inclusion of comments surrounding checks on failure reports
- Fully tested (it manages to test itself reliably)


Bug#729785: Copyright review for the package libpqxx 4.0.1-2.

2013-11-19 Thread Marcin Kulisz
On 2013-11-17 20:43:05, Charles Plessy wrote:
> Package: libpqxx
> Version: 4.0.1-1
> Severity: serious
> Control: user debian-le...@lists.debian.org
> Control: usertags -1 one-copyright-review
> 
> Dear Marcin,
 
Hi Charles

> In the hope of speeding up and strenghtening the processing of the NEW queue I
> had a look at your package libpqxx 4.0.1-2.  The rationale is explained in
> the proposal in the following wiki page.

Thx a lot for taking time and doing so.

> I found that libpqxx 4.0.1 contains at least one minified JavaScript file,
> doc/html/Reference/jquery.js, for which there is no coresponding source, and
> that is mentionned in the Debian copyright file.  If it works, it would be
> better to replace this file with a link to the same file provided by
> libjs-jquery.  You may find other advices on the debian-mentors mailing list 
> on
> how to deal with the situation.
 
I'm already providing link for jquery.js in libpqxx-doc.links, it is documented
in README.Debian, sorry for not giving explicit information about it in dch.
If you think it'll be beneficial for the future I'll add such information in to
dch with the next commit. Hopefully this is sorting this problem.

On the other hand can you tell me how did you found this problem as according
to the files listing from
http://ftp-master.debian.org/new/libpqxx_4.0.1-2.html,
my build logs and actual package check link is there, lintian is not
complaining (and it used to before), so I'm a bit confused.

> On a more minor side, the copyright statement of Bart Samwel in
> tools/template2mak.py is also missing from the Debian copyright file.

I'll fixed soon as alioth is up again.

> Have a nice Sunday,

It's already Tuesday :-)
Thx a lot for good wishes (the same for you) and one more thx for the review.
-- 

|_|0|_|  |
|_|_|0| "Heghlu'Meh QaQ jajVam"  |
|0|0|0|  kuLa -  |

gpg --keyserver pgp.mit.edu --recv-keys 0x58C338B3
3DF1 A4DF C732 4688 38BC F121 6869 30DD  58C3 38B3


signature.asc
Description: Digital signature


Bug#729983: Allow to attach comments to backups / generations

2013-11-19 Thread Michael Biebl
Package: obnam
Version: 1.5-1
Severity: wishlist

It would be handy if one could add comments / descriptions when creating
a new backup generation, say like
obnam backup --description="This backup was triggered via cron"

Or make it possible to attach comments via a separate command
afterwards, like
obnam add-description [GENERATION] "my comment"





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

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

Versions of packages obnam depends on:
ii  libc6 2.17-96
ii  python2.7.5-5
ii  python-cliapp 1.20130808-1
ii  python-larch  1.20130808-1
ii  python-paramiko   1.10.1-1
ii  python-tracing0.6-2
ii  python-ttystatus  0.23-1

obnam recommends no packages.

obnam 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#729982: sssd not starting via systemd

2013-11-19 Thread Florian
Package: sssd
Version: 1.11.2-1
Severity: important

Dear Maintainer,

after latest upgrade of sssd on sid/amd64 sssd was not running anymore.
So i tried it manually:

# systemctl start sssd
Failed to issue method call: Unit sssd.service failed to load: Invalid
argument. See system logs and 'systemctl status sssd.service' for details.

# systemctl status sssd.service
sssd.service - System Security Services Daemon
   Loaded: error (Reason: Invalid argument)
   Active: inactive (dead)

Nov 19 18:29:30 master sssd[3466]: Shutting down
Nov 19 18:29:30 master sssd[3465]: Shutting down
Nov 19 18:29:30 master sssd[be[3351]: Shutting down
Nov 19 18:29:30 master systemd[1]: Stopped LSB: System Security Services
Daemon.
Nov 19 18:29:30 master systemd[1]: [/lib/systemd/system/sssd.service:8]
Executable path is not absolute, ignori... -D -f
Nov 19 18:29:30 master systemd[1]: sssd.service lacks ExecStart setting.
Refusing.
Nov 19 18:29:43 master systemd[1]: [/lib/systemd/system/sssd.service:8]
Executable path is not absolute, ignori... -D -f
Nov 19 18:29:43 master systemd[1]: sssd.service lacks ExecStart setting.
Refusing.
Nov 19 18:29:43 master systemd[1]: [/lib/systemd/system/sssd.service:8]
Executable path is not absolute, ignori... -D -f
Nov 19 18:29:43 master systemd[1]: sssd.service lacks ExecStart setting.
Refusing.

# cat /etc/systemd/system/multi-user.target.wants/sssd.service
[Unit]
Description=System Security Services Daemon
# SSSD will not be started until syslog is
After=syslog.target

[Service]
EnvironmentFile=-/etc/sysconfig/sssd
ExecStart=${exec_prefix}/sbin/sssd -D -f
# These two should be used with traditional UNIX forking daemons
# consult systemd.service(5) for more details
Type=forking
PIDFile=/var/run/sssd.pid

[Install]
WantedBy=multi-user.target


Simple workaround/fix for me:


# diff -Nur sssd.service sssd.service.bak
--- sssd.service2013-11-19 21:22:24.695995263 +0100
+++ sssd.service.bak2013-11-19 21:21:59.439741345 +0100
@@ -5,7 +5,7 @@

 [Service]
 EnvironmentFile=-/etc/sysconfig/sssd
-ExecStart=/usr/sbin/sssd -D -f
+ExecStart=${exec_prefix}/sbin/sssd -D -f
 # These two should be used with traditional UNIX forking daemons
 # consult systemd.service(5) for more details
 Type=forking



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

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

Versions of packages sssd depends on:
ii  python-sss   1.11.2-1
ii  sssd-ad  1.11.2-1
ii  sssd-common  1.11.2-1
ii  sssd-ipa 1.11.2-1
ii  sssd-krb51.11.2-1
ii  sssd-ldap1.11.2-1
ii  sssd-proxy   1.11.2-1

sssd recommends no packages.

sssd 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#729980: [tar] Incomplete description for "-s" flag

2013-11-19 Thread Tim Sattarov
Package: tar
Version: 1.27-3
Severity: minor

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

currently man page for tar has this description for "-s"

_BEGIN_
 -s, --preserve-order, --same-order
   member arguments are listed in the same order as the
_END_


which does not look clear for me.

I suggest to change it to description from
http://www.gnu.org/software/tar/manual/tar.html

_BEGIN_

‘--same-order’
‘--preserve-order’
‘-s’

This option is an optimization for tar when running on machines with small
amounts of memory. It informs tar that the list of file arguments has
already been sorted to match the order of files in the archive

_END_

Thanks
Tim

--- System information. ---
Architecture: amd64
Kernel:   Linux 3.11-1-amd64

Debian Release: jessie/sid
  800 unstablehttp.us.debian.org
  800 unstabledeb-multimedia.org
  500 stable  dl.google.com
1 experimentalhttp.us.debian.org

--- Package information. ---
Package's Depends field is empty.

Package's Recommends field is empty.

Suggests (Version) | Installed
==- -===
bzip2  | 1.0.6-5
ncompress  |
xz-utils   | 5.1.1alpha 20120614-2
tar-scripts|


Bug#729981: gem2deb: Fails to handle irregular file names on install

2013-11-19 Thread Christopher Huhn
Package: gem2deb
Version: 0.5.0
Severity: normal
Tags: patch

Hi,

I tried to gem2deb di-ruby-lvm-attrib. This fails because the gem contains
files with parentheses in their name.
This can be circumvented by protecting the file name with quotes when calling 
install.

Cheers,
Christopher

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

Kernel: Linux 3.11.0-13-generic (SMP w/4 CPU cores)
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages gem2deb depends on:
ii  build-essential   11.6ubuntu5
ii  debhelper 9.20130630ubuntu1
ii  devscripts2.13.4
ii  perl  5.14.2-21build1
ii  ruby  1:1.9.3
ii  ruby1.8 [ruby-interpreter]1.8.7.358-7ubuntu2
ii  ruby1.9.1 [ruby-interpreter]  1.9.3.194-8.1ubuntu2
ii  ruby1.9.1-dev 1.9.3.194-8.1ubuntu2
ii  ruby2.0 [ruby-interpreter]2.0.0.299-2
ii  ruby2.0-dev   2.0.0.299-2

gem2deb recommends no packages.

gem2deb suggests no packages.

-- no debconf information
diff -Nru gem2deb-0.5.0/lib/gem2deb/installer.rb gem2deb-0.5.0chr1/lib/gem2deb/installer.rb
--- gem2deb-0.5.0/lib/gem2deb/installer.rb	2013-08-08 21:42:59.0 +0200
+++ gem2deb-0.5.0chr1/lib/gem2deb/installer.rb	2013-11-19 21:24:30.0 +0100
@@ -185,7 +185,7 @@
   files_to_install.each do |file|
 from = File.join(src, file)
 to = File.join(dest, file)
-run "install -D -m#{mode} #{from} #{to}"
+run "install -D -m#{mode} '#{from}' '#{to}'"
   end
 end
 


Bug#729979: wims-moodle: [INTL:pt] Updated Portuguese translation for debconf messages

2013-11-19 Thread Américo Monteiro
Package: wims-moodle
version: 4.0-8
Tags: l10n, patch
Severity: wishlist

Updated Portuguese translation for wims-moodle's debconf messages.
Translator: Américo Monteiro 
Feel free to use it.

For translation updates please contact 'Last Translator' or the
Portuguese Translation Team .

-- 
Melhores cumprimentos/Best regards,

Traduz! - Portuguese Translation Team


wims-moodle_4.0-8_pt.po.gz
Description: GNU Zip compressed data


Bug#729965: libcurl3 7.21.0-2.1+squeeze5 --insecure regression

2013-11-19 Thread Salvatore Bonaccorso
Hi Alessandro,

On Tue, Nov 19, 2013 at 06:18:42PM +0100, Alessandro Ghedini wrote:
> Control: reassing -1 curl
> Control: found -1 curl/7.21.0-2.1+squeeze5
> Control: found -1 curl/7.26.0-1+wheezy5
> Control: tags -1 confirmed
> 
> On mar, nov 19, 2013 at 09:51:35 -0600, Brian Kroth wrote:
> > Package: libcurl3
> > Version: 7.21.0-2.1+squeeze5
> > Severity: important
> > 
> > 
> > Hi, I believe I've found a regression in the recent libcurl3 DSA update.  
> > Basically, it doesn't seem to be respecting the --insecure option in all 
> > cases.
> 
> Yes, it seems that the libcurl3 patch exposed a latent bug in the curl tool
> that was fixed in a later version (7.28.1 AFAICT). Wheezy is affected too.
> 
> For the security team, I prepared new uploads that fix the regression (see
> attached debdiffs), could you please have a look?

This looks good to me. Could you upload both packages for
security-master?

Regards,
Salvatore


signature.asc
Description: Digital signature


Bug#728183: (no subject)

2013-11-19 Thread Stefan Kopetzky
Same here. I'm not using any of the mentioned applets.

The workaround with deleting
~/.kde/share/config/plasma-desktop-appletsrc makes it possible to start,
but when trying to add any (tested quite a few) applet it will crash again.

Regards,
Stefan


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



Bug#729791: fails to create tmpdir

2013-11-19 Thread Ian Jackson
Martin Pitt writes ("Re: Bug#729791: fails to create tmpdir"):
> tag 729791 pending
> thanks
...
> Indeed, noticed the same this morning. It's fixed in my local git.
> (Now, if only alioth would come back online..)

Heh, yes.

Thanks,
Ian.;


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



Bug#725333: when run in screen, elinks causes beeping on all window changes

2013-11-19 Thread Moritz Muehlenhoff
On Fri, Oct 04, 2013 at 03:07:11AM -0700, Dallas E. Legan wrote:
> Package: elinks
> Version: 0.12~pre6-1+b1
> Severity: normal
> 
> During a session using the screen program, if elinks is started
> screen starts to beep everytime a change is made to a different or new
> window or area.
> This continues even after elinks is stopped, until screen is detached.
> After reattaching, the problem is found to have stopped.
> Neither links or links2 (nor w3m or lynx for that matter)
> trigger this problem.
> 
> Thanks for any consideration.

I cannot reproduce. I think that's rather an issue somewhere in your
screen configuration?

Cheers,
Moritz


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



Bug#729978: base: fdisk returns "last_lba(): I don't know how to handle files with mode 20660"

2013-11-19 Thread Vaclav Vobornik
Package: base
Severity: important

Hi,
I have connected a 4TB disk but fdisk cannot access it:

# dmesg
ugen1.4:  at usbus1
umass0:  on usbus1
umass0:  SCSI over Bulk-Only; quirks = 0x4101
umass0:7:0:-1: Attached to scbus7
da0 at umass-sim0 bus 0 scbus7 target 0 lun 0
da0:  Fixed Direct Access SCSI-6 device 
da0: 40.000MB/s transfers
da0: 3815447MB (976754645 4096 byte sectors: 255H 63S/T 60800C)

# fdisk -l /dev/da0
last_lba(): I don't know how to handle files with mode 20660


Parted returns:
# parted -l 
Model: Seagate  Backup+ Desk (scsi)
Disk /dev/da0: 4001GB
Sector size (logical/physical): 4096B/512B
Partition Table: msdos

Number  Start   End SizeType File system  Flags
 1  1049kB  10.7GB  10.7GB  primary
 2  10.7GB  4001GB  3990GB  primary



The disk is visible under /dev/:

# ls -l /dev/da*
crw-rw 1 root disk 0,  89 Nov 18 22:35 /dev/da0
crw-rw 1 root disk 0, 101 Nov 19 21:02 /dev/da0s1
crw-rw 1 root disk 0, 102 Nov 19 21:02 /dev/da0s2


I was able to create zpool on the /dev/da0s2, however the zpool is not 
importable back immediately after "zpool export":

# zpool import
  pool: seagate
id: 15553645456179362411
 state: FAULTED
status: One or more devices contains corrupted data.
action: The pool cannot be imported due to damaged devices or data.
   see: http://www.sun.com/msg/ZFS-8000-5E
config:

seagateFAULTED  corrupted data
  7676761785093270867  UNAVAIL  corrupted data

zdb returns:

# zdb -l /dev/da0s2

LABEL 0

version: 28
name: 'seagate'
state: 1
txg: 319778
pool_guid: 15553645456179362411
hostname: 'nax'
top_guid: 7676761785093270867
guid: 7676761785093270867
vdev_children: 1
vdev_tree:
type: 'disk'
id: 0
guid: 7676761785093270867
path: '/dev/da0s2'
phys_path: '/dev/da0s2'
whole_disk: 1
metaslab_array: 30
metaslab_shift: 35
ashift: 12
asize: 3990043754496
is_log: 0
create_txg: 4

LABEL 1

version: 28
name: 'seagate'
state: 1
txg: 319778
pool_guid: 15553645456179362411
hostname: 'nax'
top_guid: 7676761785093270867
guid: 7676761785093270867
vdev_children: 1
vdev_tree:
type: 'disk'
id: 0
guid: 7676761785093270867
path: '/dev/da0s2'
phys_path: '/dev/da0s2'
whole_disk: 1
metaslab_array: 30
metaslab_shift: 35
ashift: 12
asize: 3990043754496
is_log: 0
create_txg: 4

LABEL 2

failed to read label 2

LABEL 3

failed to read label 3





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

Kernel: kFreeBSD 9.0-2-amd64
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash


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



Bug#729977: vim-gtk: gvim fails with SIGSEV

2013-11-19 Thread J C

Package: vim-gtk
Version: 2:7.3.547-7
Severity: important

Dear Maintainer,

Running gvim fails with SIGSEV.  Terminal vim runs fine.

-- Package-specific info:

--- real paths of main Vim binaries ---
/usr/bin/vi is /usr/bin/vim.gtk
/usr/bin/vim is /usr/bin/vim.gtk
/usr/bin/gvim is /usr/bin/vim.gtk

-- System Information:
Debian Release: 7.2
  APT prefers stable
  APT policy: (990, 'stable'), (500, 'stable-updates')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

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

Versions of packages vim-gtk depends on:
ii  libacl1 2.2.51-8
ii  libc6   2.13-38
ii  libgdk-pixbuf2.0-0  2.26.1-1
ii  libglib2.0-02.33.12+really2.32.4-5
ii  libgpm2 1.20.4-6
ii  libgtk2.0-0 2.24.10-2
ii  libice6 2:1.0.8-2
ii  liblua5.1-0 5.1.5-4
ii  libpango1.0-0   1.30.0-1
ii  libperl5.14 5.14.2-21+deb7u1
ii  libpython2.72.7.3-6
ii  libruby1.9.11.9.3.194-8.1+deb7u1
ii  libselinux1 2.1.9-5
ii  libsm6  2:1.2.1-2
ii  libtinfo5   5.9-10
ii  libx11-62:1.5.0-1+deb7u1
ii  libxt6  1:1.1.3-1+deb7u1
ii  tcl8.5  8.5.11-2
ii  vim-common  2:7.3.547-7
ii  vim-gui-common  2:7.3.547-7
ii  vim-runtime 2:7.3.547-7

vim-gtk recommends no packages.

Versions of packages vim-gtk suggests:
pn  cscope
ii  gnome-icon-theme  3.4.0-2
ii  ttf-dejavu2.33-3
pn  vim-doc   

-- 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#698988: Bug#729660: ITP: xemacs21 -- highly customizable text editor

2013-11-19 Thread Russ Allbery
Henrique de Moraes Holschuh  writes:
> On Sun, 17 Nov 2013, Russ Allbery wrote:

>> Yeah, I know, which is part of why I used it for an example.  I looked
>> at it yesterday and will probably adopt it at some point when I have
>> enough free time to do a proper job on the initial upload.

> File an ITA bug on nvi with that paragraph, please.

An ITA bug on nvi will block someone else who wants to adopt it, and
therefore I don't plan on doing that until I'm actually ready to commit to
adopting it myself.  In the meantime, the orphaned status is correct.

I read debian-release and debian-qa, so hopefully I'll notice if someone
starts looking seriously at removing it from the archive.  I'll also copy
this message to the O bug.

-- 
Russ Allbery (r...@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#729976: wims: postinst stuck waiting after exit 0 - debconf db_stop fixes this

2013-11-19 Thread Alban Browaeys
Package: wims
Version: 1:4.07a~dfsg1-4
Severity: normal
Tags: patch

Dear Maintainer,
I was able to reproduce with:
DEBCONF_DEBUG=developer /var/lib/dpkg/info/wims.postinst configure 1

the transactions are fine, exit 0 of the wims.postinst execute,
then deconf parent script wait forever with the wims.postinst
child zombie.

I added dn_stop (at end at first then after the $RET grab of
db_get). Attached patch is the latter.

Best regards
Alban

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

Kernel: Linux 3.11-1-686-pae (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 wims depends on:
ii  adduser3.113+nmu3
ii  bsd-mailx [mailx]  8.1.2-0.20131005cvs-1
ii  chemeq 2.11-1
ii  cpp4:4.8.1-3
ii  debconf [debconf-2.0]  1.5.52
ii  fortunes   1:1.99.1-7
ii  gnuplot4.6.4-1
ii  graphviz   2.26.3-15+b1
ii  imagemagick8:6.7.7.10-6
ii  ldap-utils 2.4.31-1+nmu2+b1
ii  libc6  2.17-96
ii  libgcc11:4.8.2-5
ii  libgd3 2.1.0-3
ii  libjs-edit-area0.8.2-1
ii  libjs-jquery   1.7.2+dfsg-3
ii  libjs-jquery-metadata  8-2
ii  libjs-mootools 1.4.5~debian1-2.1
ii  libjs-prototype1.7.1-3
ii  libstdc++6 4.8.2-5
ii  maxima 5.31.3-5
ii  maxima-share   5.31.3-5
ii  octave 3.6.4-4
ii  pari-gp2.5.5-1
ii  texlive-base   2013.20131112-1
ii  texlive-fonts-recommended  2013.20131112-1
ii  texlive-latex-base 2013.20131112-1
ii  units-filter   3.5-3
ii  wims-modules   1:4.07a~dfsg1-4

Versions of packages wims recommends:
ii  apache2  2.4.6-3
ii  apache2-bin [httpd]  2.4.6-3
ii  gap  4r6p5-3
ii  wims-help4.01-2
ii  wims-java-applets1:4.07a~dfsg1-4
ii  yacas1.3.3-2

wims suggests no packages.

-- debconf information:
* wims/reconfigure-webserver: apache2
* wims/restart-webserver: true
--- wims.postinst.old	2013-11-19 20:34:23.0 +0100
+++ wims.postinst.new	2013-11-19 20:36:14.0 +0100
@@ -105,6 +105,7 @@
   # reconfigure the webserver if necessary
   db_get wims/reconfigure-webserver
   webservers="$RET"
+  db_stop || true
   restart=""
   # remove a previous file if existing for apache2.2
   rm -f /etc/apache2/conf.d/wims.conf


Bug#726341: ideviceinstaller: FTBFS against libimobildevice 1.1.5

2013-11-19 Thread Andreas Metzler
On 2013-11-17 Modestas Vainius  wrote:
> Hello Andreas,

> Šeštadienis 09 Lapkritis 2013 09:29:29 rašė:
> > This FTBFS is now happening in sid, so bumping this to serious.  This is
> > currently stalling the libimobildevice transition.

> Could you NMU ideviceinstaller in unstable? It seems to have built
> fine on all arches in experimental.

Hello,

I can, but I will not be able to this week. I expect it would take
until monday 26th.

cu Andreas
-- 
`What a good friend you are to him, Dr. Maturin. His other friends are
so grateful to you.'
`I sew his ears on from time to time, sure'


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



Bug#729975: hotot: Wheezy version no longer usable with Twitter, uses retired 1.0 API

2013-11-19 Thread Sébastien Villemot
Package: hotot
Version: 1:0.9.7.32+git20111213.1d89daf-1.1
Severity: grave
Tags: upstream
Control: fixed -1 1:0.9.8.14-2

Dear Maintainer,

The version of hotot in wheezy is currently unusable with Twitter (though the
identi.ca backend may work, I did not test). The problem is that it uses
Twitter's 1.0 API, which has been retired on June 11, 2013.

There are two possible solutions:

- upload a new upstream release to wheezy, though I doubt the Release Team
  would accept that;

- or remove hotot from wheezy, and upload a recent version to wheezy-backports.

The second solution should be very easy to implement: I was able to compile
hotot 1:0.9.8.14-2 on wheezy without any change to the source package.

Cheers,

-- 
 .''`.Sébastien Villemot
: :' :Debian Developer
`. `' http://www.dynare.org/sebastien
  `-  GPG Key: 4096R/381A7594


signature.asc
Description: Digital signature


Bug#728232: sup-mail: CVE-2013-4478 and CVE-2013-4479

2013-11-19 Thread Per Andersson
Hi!

On Sun, Nov 10, 2013 at 8:58 PM, Salvatore Bonaccorso  wrote:
> Hi Per,
>
> Did you had time to prepare the fixes for unstable?

I am looking at uploading the latest upstream version to unstable yes.


> Can you also prepare packages targetting squeeze-security and
> wheezy-security and contact the Security team at
> t...@security.debian.org?

I am on this also.


Best,
Per

> Regards,
> Salvatore


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



Bug#729974: Acknowledgement (Patch: Adding a 'status' target to the initscript)

2013-11-19 Thread Gunnar Wolf
FWIW, this patch includes fixing the Lintian warning
(init.d-script-does-not-source-init-functions) currently reported for
this package.


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



Bug#728049: adt-virt-schroot: avoid debconf prompts on running tests

2013-11-19 Thread Martin Pitt
Hello Arthur,

I got back to investigating this.

Arthur de Jong [2013-10-28 22:46 +0100]:
> I'm seeing it with the prompts for slapd (both slapd/password1 and
> slapd/password2 which both have priority high) and from nss-pam-ldapd
> (the package that I'm trying to make tests for).
> 
> I'm running the tests with
>   adt-run nss-pam-ldapd_0.9.2-1.dsc --- adt-virt-schroot sid-snap

I'm afraid I still cannot reproduce this. schroot defaults to
"noninteractive", but even when I enable dialog I didn't get any
slapd prompt. I downloaded that very version from experimental, and
although I get some test case failures, both tests ran, slapd got
installed, and there was no debconf.

To cross-check I took out the DEBIAN_FRONTEND=noninteractive bits from
adt-run, and *did* get the prompts, so on my end it seems they are
doing their job.

Could you perhaps do the following: Configure your schroot to use
readline, and then run

  adt-run nss-pam-ldapd_0.9.2-1.dsc -d --log-file=/tmp/log --- adt-virt-schroot 
sid-snap

and then attach /tmp/log? This should show me at which point the
prompt occurs (test/build/binary/etc. dependency), and also include
debugging information from adt-run.

Thank you!

Martin
-- 
Martin Pitt| http://www.piware.de
Ubuntu Developer (www.ubuntu.com)  | Debian Developer  (www.debian.org)


signature.asc
Description: Digital signature


Bug#729940: fixed upstream in 3.8.1

2013-11-19 Thread Ryan Tandy
Control: fixed -1 3.8.1-1
Control: tags -1 fixed-upstream

This is fixed upstream in "layout: don't use OnlyUnallocated for
sections different than Other" (6e7790b on master, b89833d on
gnome-3-8) and that change is included in the 3.8.1 tarballs.


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



Bug#729974: Patch: Adding a 'status' target to the initscript

2013-11-19 Thread Gunnar Wolf
Package: thin
Version: 1.3.1-3
Severity: normal
Tags: patch

I added a 'status' target to the initscript, which gives useful
information (i.e. which Thin servers went down if any). I decided to
implement it against the output of netstat and not against the running
processes as I have at least found one case where an instance was
running but somehow not listening to the right socket — But I know
this might be polemic/dirty.

Read: I'm not uploading this yet, please comment!

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

Kernel: Linux 3.11-1-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 thin depends on:
ii  libc6 2.17-93
ii  libruby1.81.8.7.358-8
ii  libruby1.9.1  1.9.3.448-1
ii  ruby  1:1.9.3
ii  ruby-daemons  1.1.5-2
ii  ruby-eventmachine 1.0.3-3
ii  ruby-rack 1.5.2-1
ii  ruby1.8 [ruby-interpreter]1.8.7.358-8
ii  ruby1.9.1 [ruby-interpreter]  1.9.3.448-1
ii  ruby2.0 [ruby-interpreter]2.0.0.299-2

thin recommends no packages.

thin suggests no packages.

-- debconf-show failed
>From 984ff8a1a01e01d3510733388338bc6d409b1fba Mon Sep 17 00:00:00 2001
From: Gunnar Wolf 
Date: Tue, 19 Nov 2013 11:54:14 -0600
Subject: [PATCH] Added a "status" target to the initscript

---
 debian/changelog   |  7 +
 debian/control |  2 +-
 debian/patches/fix-init-script | 63 ++
 3 files changed, 66 insertions(+), 6 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 6e74d9a..dda5de9 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+thin (1.3.1-4) UNRELEASED; urgency=low
+
+  * Team upload
+  * Added a "status" target to the initscript
+
+ -- Gunnar Wolf   Tue, 19 Nov 2013 11:48:22 -0600
+
 thin (1.3.1-3) unstable; urgency=low
 
   * Team upload.
diff --git a/debian/control b/debian/control
index 999c30f..617e045 100644
--- a/debian/control
+++ b/debian/control
@@ -13,7 +13,7 @@ XS-Ruby-Versions: all
 Package: thin
 Architecture: any
 XB-Ruby-Versions: ${ruby:Versions}
-Depends: ${shlibs:Depends}, ${misc:Depends}, ruby | ruby-interpreter, ruby-rack (>= 1.0.0), ruby-eventmachine (>= 0.12.10), ruby-daemons (>= 1.0.9)
+Depends: ${shlibs:Depends}, ${misc:Depends}, ruby | ruby-interpreter, ruby-rack (>= 1.0.0), ruby-eventmachine (>= 0.12.10), ruby-daemons (>= 1.0.9), lsb-base
 Replaces: thin1.8 (<< 1.3.1-1)
 Breaks: thin1.8 (<< 1.3.1-1)
 Provides: thin1.8
diff --git a/debian/patches/fix-init-script b/debian/patches/fix-init-script
index 249f261..adab242 100644
--- a/debian/patches/fix-init-script
+++ b/debian/patches/fix-init-script
@@ -1,9 +1,9 @@
 # (better) lsb compliance
 
-Index: ruby-thin/lib/thin/controllers/service.sh.erb
+Index: thin/lib/thin/controllers/service.sh.erb
 ===
 ruby-thin.orig/lib/thin/controllers/service.sh.erb	2012-01-10 01:15:50.0 -0800
-+++ ruby-thin/lib/thin/controllers/service.sh.erb	2012-01-10 01:17:56.0 -0800
+--- thin.orig/lib/thin/controllers/service.sh.erb	2013-11-19 11:40:33.0 -0600
 thin/lib/thin/controllers/service.sh.erb	2013-11-19 11:43:17.0 -0600
 @@ -4,7 +4,7 @@
  # Required-Start:$local_fs $remote_fs
  # Required-Stop: $local_fs $remote_fs
@@ -13,11 +13,13 @@ Index: ruby-thin/lib/thin/controllers/service.sh.erb
  # Short-Description: thin initscript
  # Description:   thin
  ### END INIT INFO
-@@ -15,20 +15,28 @@
+@@ -15,23 +15,80 @@
  
  DAEMON=<%= Command.script %>
  SCRIPT_NAME=<%= INITD_PATH %>
 -CONFIG_PATH=<%= config_files_path %>
++
++. /lib/lsb/init-functions
  
  # Exit if the package is not installed
  [ -x "$DAEMON" ] || exit 0
@@ -31,6 +33,23 @@ Index: ruby-thin/lib/thin/controllers/service.sh.erb
 +	<% end %>
 +}
 +
++parse_config() {
++# Thin configuration files are expressed as flat YAML; implement a very
++# simplistic parser, good enough for our limited purposes.
++#
++# This parser interprets each YAML declaration used in this script
++# in the current shell environment; of course, it should be used
++# with care, as a crafted expression could lead to arbitrary code
++# execution. Some care is taken to sanitize it.
++CONFIG=$1
++if [ ! -f $CONFIG -o ! -r $CONFIG ]; then
++echo "Thin configuration file $CONFIG not readable"
++exit 3
++fi
++`ruby -ne 'next unless /^(port|servers|address|tag)\s*:\s*([\.\-\_\d\w]+)$/ ;puts "export %s=%s" % [$1,$2]' $CONFIG`
++}
++
++
  case "$1" in
start)
 -	$DAEMON start --all $CONFIG_PATH
@@ -45,5 +64,39 @@ Index: ruby-thin/lib/thin/controllers/service.sh.erb
 +  restart|force-reload|reload)
 +	run_action restart
  	;;
++  status)
++  

Bug#719585: jitsi: Reports time in UTC instead of the local timezone

2013-11-19 Thread Kurt Roeckx
I'm not sure if I had a /etc/timezone when I started jitsi the
last time since I did run dpkg-reconfigure tzdata yesterday and
the file is recreated.  But when I start jitsi now it does seem
to work properly.


Kurt

On Tue, Nov 19, 2013 at 09:58:54AM +0200, Damian Minkov wrote:
> Is it properly set in /etc/timezone?
> 
> I see a lot of reports for java wrong detecting the timezone on
> Internet, so this can be related, do you have another java application
> to check whether date is correctly displayed?
> 
> On Mon, Nov 18, 2013 at 10:59 PM, Kurt Roeckx  wrote:
> > Hi,
> >
> > I'm still seeing this with 2.3.4909-1
> >
> > This is for messages comming and going to facebook.  The clock on
> > my PC reported 21:28, facebook shows that it was at 9:28pm, but
> > jitsi shows it as 20:28.
> >
> > My locale is set to en_US, my /etc/localtime is set for
> > Europe/Brussels and everything shows the time properly.
> >
> > jitsi shows it as "Nov 18, 2013 20:28:48"
> >
> >
> > Kurt
> >
> > On Fri, Aug 23, 2013 at 02:13:40PM +0300, Damian Minkov wrote:
> >> Hi,
> >>
> >> did you change the timezone while jitsi was running? Currently
> >> timezone change while running is not supported.
> >> Timestamps are normally shown on my side. If I change timezone (using
> >> # dpkg-reconfigure tzdata as described in
> >> https://wiki.debian.org/TimeZoneChanges) and then start jitsi
> >> everything seems fine and timestamps of history are updated correctly
> >> and those for incoming and outgoing messages also shows the localtime
> >> of the machine.
> >>
> >> Regards
> >> damencho
> >>
> >>
> >> On Tue, Aug 13, 2013 at 1:43 PM, Kurt Roeckx  wrote:
> >> > Package: jitsi
> >> > Version: 2.3.4687.9786-1
> >> >
> >> > When chatting with someone, the timestamps are shown in UTC
> >> > instead of the local time zone that I set on the system.
> >> >
> >> >
> >> > Kurt
> >>
> 


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



Bug#729718: Enable support for autopkgtest

2013-11-19 Thread Jakub Wilk

[I'm not the maintainer of this package.]

* Jean-Baptiste Lallement , 2013-11-16, 10:14:
I used py.test instead of calling __init__.py as setup.py does 
because init adds the root of the source tree to the path and we want 
to run the testsuite against the package on the system.


I added "raise ImportError" to my 
/usr/lib/python2.7/dist-packages/simplejson/__init__.py, and it didn't cause 
any test failures. It looks like you still test against the source, rather 
than the installed package...



+Tests: upstream
+Depends: @, python-pytest


That's a bit wasteful. @ expands to "python-simplejson 
python-simplejson-dbg, python3-simplejson, python3-simplejson-dbg, 
python-simplejson-doc, pypy-simplejson", even though you'd actually test 
only the first one.


--
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#729973: javahelper: please support debhelper-style option "-p mypkg"

2013-11-19 Thread Dmitry Smirnov
Package: javahelper
Version: 0.45
Severity: minor

dh_* tools can be invoked with "-p" option in the following ways:

dh_installinit -v -pmypkg
dh_installinit -v -p mypkg

Javahelper support only first variant:

jh_depends -v -pmypkg

But it just do not do anything if there is a space between "-p" and
"mypkg":

jh_depends -v -p mypkg

This behaviour is slightly confusing so it would be nice to recognise
DH-compatible syntax. Thanks.

-- 
Best wishes,
 Dmitry Smirnov
 GPG key : 4096R/53968D1B


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



Bug#720570: shogun: Please stop using openjdk-6-*

2013-11-19 Thread Soeren Sonnenburg
yes indeed for the moment we won't have interfaces packaged at all so
this is obsolete.

On 19.11.13 17:41, Steve Cotton wrote:
> On Fri, Aug 23, 2013 at 14:19 +0200, Sylvestre Ledru wrote:
>> As part of the transition to OpenJDK 7 and the removal of OpenJDK 6 from
>> the archive, could you update the dependency of your package to 
>> default-jdk ?
> 
> Hello Soeren,
> 
> Can I mark #720570 as fixed in version 3.0.1~git20131115.557741b-1 ?
> 
> This dependency seems already removed by your packaging changes for
> splitting shogun in to separate libshogun and interface packages.
> 
> Thanks,
> Steve
> 


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



Bug#729972: bsh: Transition package to use servlet3.0 api

2013-11-19 Thread James Page
Package: bsh
Version: 2.0b4-14
Severity: normal
Tags: patch
User: ubuntu-de...@lists.ubuntu.com
Usertags: origin-ubuntu trusty ubuntu-patch

Dear Maintainer,

In Ubuntu, the attached patch was applied to achieve the following:

  * Merge from Debian unstable.  Remaining changes:
- Transition libservlet2.5-java -> libservlet3.0-java.

We've had this in Ubuntu for a release or so now (as a result of switching
tomcat6 for tomcat7 in Ubuntu main). It would be great if Debian could
make the same transition so we can drop tomcat6 altogether!

Thanks for considering the patch.


-- System Information:
Debian Release: wheezy/sid
  APT prefers trusty-updates
  APT policy: (500, 'trusty-updates'), (500, 'trusty-security'), (500, 
'trusty'), (100, 'trusty-backports')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 3.12.0-3-generic (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/dash
diff -Nru bsh-2.0b4/debian/changelog bsh-2.0b4/debian/changelog
diff -Nru bsh-2.0b4/debian/control bsh-2.0b4/debian/control
--- bsh-2.0b4/debian/control	2013-11-04 16:39:43.0 +
+++ bsh-2.0b4/debian/control	2013-11-19 17:31:36.0 +
@@ -11,8 +11,8 @@
javacc,
javahelper (>= 0.32~),
libbsf-java,
-   libservlet2.5-java,
-   libservlet2.5-java-doc,
+   libservlet3.0-java,
+   libservlet3.0-java-doc,
maven-repo-helper
 Standards-Version: 3.9.5
 Vcs-Svn: svn://anonscm.debian.org/pkg-java/trunk/bsh
@@ -23,7 +23,7 @@
 Architecture: all
 Depends: default-jre-headless | java1-runtime-headless | java2-runtime-headless,
  libjline-java, libbsh-java (= ${source:Version}), ${misc:Depends}
-Suggests: bsh-doc, default-jre | java1-runtime | java2-runtime, libservlet2.5-java
+Suggests: bsh-doc, default-jre | java1-runtime | java2-runtime, libservlet3.0-java
 Enhances: libbsf-java
 Description: Java scripting environment (BeanShell) Version 2
  BeanShell is a small, free, embeddable, Java source interpreter with object
diff -Nru bsh-2.0b4/debian/rules bsh-2.0b4/debian/rules
--- bsh-2.0b4/debian/rules	2013-11-04 16:39:43.0 +
+++ bsh-2.0b4/debian/rules	2013-11-17 01:41:50.0 +
@@ -7,7 +7,7 @@
 PACKAGE  := $(DEB_SOURCE_PACKAGE)
 VERSION  := $(DEB_UPSTREAM_VERSION)
 JAVA_HOME:= /usr/lib/jvm/default-java
-DEB_JARS := servlet-api-2.5 bsf javacc
+DEB_JARS := servlet-api-3.0 bsf javacc
 DEB_ANT_BUILD_TARGET := javadoc jarall test
 ANT_OPTS  = -Dcompile.debug=true
 


Bug#729965: libcurl3 7.21.0-2.1+squeeze5 --insecure regression

2013-11-19 Thread Alessandro Ghedini
Control: reassing -1 curl
Control: found -1 curl/7.21.0-2.1+squeeze5
Control: found -1 curl/7.26.0-1+wheezy5
Control: tags -1 confirmed

On mar, nov 19, 2013 at 09:51:35 -0600, Brian Kroth wrote:
> Package: libcurl3
> Version: 7.21.0-2.1+squeeze5
> Severity: important
> 
> 
> Hi, I believe I've found a regression in the recent libcurl3 DSA update.  
> Basically, it doesn't seem to be respecting the --insecure option in all 
> cases.

Yes, it seems that the libcurl3 patch exposed a latent bug in the curl tool
that was fixed in a later version (7.28.1 AFAICT). Wheezy is affected too.

For the security team, I prepared new uploads that fix the regression (see
attached debdiffs), could you please have a look?

Cheers

-- 
perl -E '$_=q;$/= @{[@_]};and s;\S+;;eg;say~~reverse'
diff -Nru curl-7.21.0/debian/changelog curl-7.21.0/debian/changelog
--- curl-7.21.0/debian/changelog	2013-11-16 13:16:01.0 +0100
+++ curl-7.21.0/debian/changelog	2013-11-19 17:40:46.0 +0100
@@ -1,3 +1,10 @@
+curl (7.21.0-2.1+squeeze6) oldstable-security; urgency=low
+
+  * Disable host verification too when using the --insecure option
+(Closes: #729965)
+
+ -- Alessandro Ghedini   Tue, 19 Nov 2013 17:29:46 +0100
+
 curl (7.21.0-2.1+squeeze5) oldstable-security; urgency=high
 
   * Fix OpenSSL checking of a certificate CN or SAN name field when the
diff -Nru curl-7.21.0/debian/patches/disable-verifyhost-with-insecure.patch curl-7.21.0/debian/patches/disable-verifyhost-with-insecure.patch
--- curl-7.21.0/debian/patches/disable-verifyhost-with-insecure.patch	1970-01-01 01:00:00.0 +0100
+++ curl-7.21.0/debian/patches/disable-verifyhost-with-insecure.patch	2013-11-19 17:40:46.0 +0100
@@ -0,0 +1,18 @@
+Description: Disable host verification too when the --insecure option is used
+Origin: vendor
+Bug-Debian: http://bug.debian.org/729965
+Forwarded: not-needed
+Author: Alessandro Ghedini 
+Last-Update: 2013-11-19
+
+--- a/src/main.c
 b/src/main.c
+@@ -5106,7 +5106,7 @@
+ if(config->insecure_ok) {
+   /* new stuff needed for libcurl 7.10 */
+   my_setopt(curl, CURLOPT_SSL_VERIFYPEER, FALSE);
+-  my_setopt(curl, CURLOPT_SSL_VERIFYHOST, 1);
++  my_setopt(curl, CURLOPT_SSL_VERIFYHOST, FALSE);
+ }
+ else {
+   char *home = homedir();
diff -Nru curl-7.21.0/debian/patches/series curl-7.21.0/debian/patches/series
--- curl-7.21.0/debian/patches/series	2013-11-16 13:16:01.0 +0100
+++ curl-7.21.0/debian/patches/series	2013-11-19 17:40:46.0 +0100
@@ -12,6 +12,7 @@
 test1218-another-cookie-tailmatch-test
 CVE-2013-2174.patch
 CVE-2013-4545.patch
+disable-verifyhost-with-insecure.patch
 
 # this must be the last
 curl_links_with_rt
diff -Nru curl-7.26.0/debian/changelog curl-7.26.0/debian/changelog
--- curl-7.26.0/debian/changelog	2013-11-16 13:12:02.0 +0100
+++ curl-7.26.0/debian/changelog	2013-11-19 17:41:19.0 +0100
@@ -1,3 +1,10 @@
+curl (7.26.0-1+wheezy6) stable-security; urgency=low
+
+  * Disable host verification too when using the --insecure option
+(Closes: #729965)
+
+ -- Alessandro Ghedini   Tue, 19 Nov 2013 17:15:32 +0100
+
 curl (7.26.0-1+wheezy5) stable-security; urgency=high
 
   * Fix OpenSSL checking of a certificate CN or SAN name field when the
diff -Nru curl-7.26.0/debian/patches/11_disable-verifyhost-with-insecure.patch curl-7.26.0/debian/patches/11_disable-verifyhost-with-insecure.patch
--- curl-7.26.0/debian/patches/11_disable-verifyhost-with-insecure.patch	1970-01-01 01:00:00.0 +0100
+++ curl-7.26.0/debian/patches/11_disable-verifyhost-with-insecure.patch	2013-11-19 17:41:19.0 +0100
@@ -0,0 +1,21 @@
+From a1be8e7f9be2feff103f314cd8ea8a50a560e79e Mon Sep 17 00:00:00 2001
+From: Daniel Stenberg 
+Date: Tue, 6 Nov 2012 22:27:25 +0100
+Subject: [PATCH] curl: set CURLOPT_SSL_VERIFYHOST to 0 to disable
+Bug-Debian: http://bugs.debian.org/729965
+
+---
+ src/tool_operate.c | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+--- a/src/tool_operate.c
 b/src/tool_operate.c
+@@ -982,7 +982,7 @@
+ if(curlinfo->features & CURL_VERSION_SSL) {
+   if(config->insecure_ok) {
+ my_setopt(curl, CURLOPT_SSL_VERIFYPEER, 0L);
+-my_setopt(curl, CURLOPT_SSL_VERIFYHOST, 1L);
++my_setopt(curl, CURLOPT_SSL_VERIFYHOST, 0L);
+   }
+   else {
+ my_setopt(curl, CURLOPT_SSL_VERIFYPEER, 1L);
diff -Nru curl-7.26.0/debian/patches/series curl-7.26.0/debian/patches/series
--- curl-7.26.0/debian/patches/series	2013-11-16 13:12:02.0 +0100
+++ curl-7.26.0/debian/patches/series	2013-11-19 17:41:19.0 +0100
@@ -8,6 +8,7 @@
 08_CVE-2013-2174.patch
 09_reset-timecond.patch
 10_CVE-2013-4545.patch
+11_disable-verifyhost-with-insecure.patch
 
 90_gnutls.patch
 99_nss.patch


signature.asc
Description: Digital signature


Bug#729445: Workaround

2013-11-19 Thread Martin Michlmayr
Here's a workaround for partman-basicfilesystem but obviously it would
be nice if this could get fixed properly.

diff --git a/commit.d/format_basicfilesystems b/commit.d/format_basicfilesystems
index 2b24dee..4a572ca 100755
--- a/commit.d/format_basicfilesystems
+++ b/commit.d/format_basicfilesystems
@@ -61,6 +61,13 @@ for dev in $DEVICES/*; do
read_line status
close_dialog
sync
+   # Create link in /dev/disk/by-uuid
+   dev=$(basename $device)
+   uuid=$(blkid $device -s UUID -o value)
+   if [ -n "$uuid" ]; then
+   rm -f /dev/disk/by-uuid/$uuid
+   ln -s ../../$dev 
/dev/disk/by-uuid/$uuid
+   fi
else
status=failed
fi

-- 
Martin Michlmayr
http://www.cyrius.com/


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



Bug#729965: Regression in curl if you use --insecure

2013-11-19 Thread Pascal Weller
Hi

It looks to me as if curl needs to use "0" for "CURLOPT_SSL_VERIFYPEER" and 
"CURLOPT_SSL_VERIFYHOST"
in case you use --insecure.

I found this patch that went in a later version of curl


--- curl-7.26.0.orig/src/tool_operate.c
+++ curl-7.26.0/src/tool_operate.c
@@ -982,7 +982,7 @@ int operate(struct Configurable *config,
 if(curlinfo->features & CURL_VERSION_SSL) {
   if(config->insecure_ok) {
 my_setopt(curl, CURLOPT_SSL_VERIFYPEER, 0L);
-my_setopt(curl, CURLOPT_SSL_VERIFYHOST, 1L);
+my_setopt(curl, CURLOPT_SSL_VERIFYHOST, 0L);
   }
   else {
 my_setopt(curl, CURLOPT_SSL_VERIFYPEER, 1L);




Cheers Pascal


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



Bug#729863: Use dh_autotools-dev to update config.{sub,guess} for new ports

2013-11-19 Thread Norbert Preining
tag 729863 + pending
thanks

Hi Matthias,

> please use dh_autotools-dev to update config.{sub,guess} for new ports.

Thanks, my local git repo is updated. 

Now if alioth would only be back up ...

Norbert


PREINING, Norbert   http://www.preining.info
JAIST, Japan TeX Live & Debian Developer
DSA: 0x09C5B094   fp: 14DF 2E6C 0307 BE6D AD76  A9C0 D2BF 4AA3 09C5 B094



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



Bug#729971: ITP: libnm-qt -- Qt wrapper for NetworkManager API

2013-11-19 Thread Maximiliano Curia
Package: wnpp
Severity: wishlist
Owner: Maximiliano Curia 

* Package name: libnm-qt
  Version : 0.9.0.1
  Upstream Author : Ilia Kats ,
Daniel Nicoletti ,
Jan Grulich ,
Lamarque Souza ,
Will Stephenson 
* URL : https://projects.kde.org/projects/extragear/libs/libnm-qt
* License : LGPL-2.1 or later as approved by kde e.v.
  Programming Lang: C++
  Description : Qt wrapper for NetworkManager API


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



Bug#641049: openjdk-7-jre-headless: circular dependency with openjdk-7-jre-lib

2013-11-19 Thread Andreas Beckmann
Followup-For: Bug #641049
Control: tag -1 patch

Hi,

I'm attaching two patches that fix the circular dependency issues. I
verified in piuparts that the new packages install and remove cleanly in
sid, and upgrade successfully from jessie and wheezy. And especially the
previously problematic installation test of biomaj-watcher with
--enable-recommends now succeeds.

Patch 1 downgrades the
  openjdk-7-jre-lib Depends: openjdk-7-jre-headless 
to a Recommends, but this was not sufficient to solve the problem.
openjdk-7-jre-lib has no rdepends beyond openjdk-7-jre-headless.
Needs turning /usr/share/doc/openjdk-7-jre-lib into a real directory.

Patch 2 splits most of openjdk-7-jre-headless' content into a new
openjdk-7-jre-core package (better name suggestions welcome, and I'll
update the patch).

A third patch is needed for ca-certificates-java to switch the
dependency from openjdk-7-jre-headless to openjdk-7-jre-core to actually
break the circular dependency. I'll file a bug once the patches for
openjdk-7 have been accepted.

In the end the dependencies should look like:

openjdk-7-jre-headless: openjdk-7-jre-core, ca-certificates-java
ca-certificates-java: ... | openjdk-7-jre-core | ...
openjdk-7-jre-core: openjdk-7-jre-lib
openjdk-7-jre-lib: n/a

and the recommends:

openjdk-7-jre-lib: openjdk-7-jre-headless
openjdk-7-jre-core: openjdk-7-jre-headless


Andreas
>From 73fd7df34faa44c906623486307a596465e1b00d Mon Sep 17 00:00:00 2001
From: Andreas Beckmann 
Date: Sat, 16 Nov 2013 18:20:47 +0100
Subject: [PATCH 1/2] break circular dependency openjdk-7-jre-{lib,headless}

---
 debian/JB-jre-lib.preinst.in |   10 ++
 debian/changelog |6 ++
 debian/control.in|4 ++--
 debian/rules |7 ++-
 4 files changed, 20 insertions(+), 7 deletions(-)
 create mode 100644 debian/JB-jre-lib.preinst.in

diff --git a/debian/JB-jre-lib.preinst.in b/debian/JB-jre-lib.preinst.in
new file mode 100644
index 000..d258ac3
--- /dev/null
+++ b/debian/JB-jre-lib.preinst.in
@@ -0,0 +1,10 @@
+#!/bin/sh
+set -e
+
+# prepare switching from symlink to real directory
+DOCDIR=/usr/share/doc/@basename@-jre-lib
+if [ -h $DOCDIR ]; then
+	rm $DOCDIR
+fi
+
+#DEBHELPER#
diff --git a/debian/changelog b/debian/changelog
index c6445d3..fb6c6fd 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -6,6 +6,12 @@ openjdk-7 (7u25-2.3.12-4.1) UNRELEASED; urgency=low
   * debian/rules
 - run autoreconf, instead of aclocal, automake and autoconf (Closes: #724083)
 
+  [ Andreas Beckmann ]
+  * openjdk-7-jre-lib: Break circular dependency with openjdk-7-jre-headless
+by downgrading the Depends to Recommends. Make /u/s/d/openjdk-7-jre-lib a
+real directory instead of a symbolic link to openjdk-7-jre-headless.
+(Closes: 641049)
+
  -- Hideki Yamane   Wed, 23 Oct 2013 19:14:39 +0900
 
 openjdk-7 (7u25-2.3.12-4) unstable; urgency=low
diff --git a/debian/control.in b/debian/control.in
index 1befc68..f6452b8 100644
--- a/debian/control.in
+++ b/debian/control.in
@@ -61,8 +61,8 @@ Package: @basename@-jre-lib
 Architecture: @lib_arch@
 Multi-Arch: foreign
 Pre-Depends: ${dpkg:Depends}
-Depends: @basename@-jre-headless (>= ${base:Version}), ${misc:Depends}
-Recommends: ${dlopen:Recommends}
+Depends: ${misc:Depends}
+Recommends: @basename@-jre-headless (>= ${base:Version}), ${dlopen:Recommends}
 Built-Using: ${rhino:Source}
 Description: OpenJDK Java runtime (architecture independent libraries)
  OpenJDK Java runtime, using ${vm:Name}.
diff --git a/debian/rules b/debian/rules
index 70a00d7..dd0adae 100755
--- a/debian/rules
+++ b/debian/rules
@@ -1783,11 +1783,6 @@ ifneq (,$(DEB_HOST_MULTIARCH))
 	  echo '$(commonbasedir)/src.zip $(basedir)/src.zip' >> $(d_jdk).links
 endif
 
-	: # create docdir symlinks for $(p_lib)
-	( \
-	  echo usr/share/doc/$(p_jrehl) usr/share/doc/$(p_lib); \
-	) > $(d_lib).links
-
 	: # create docdir symlinks for $(p_dbg)
 	( \
 	  echo usr/share/doc/$(p_jrehl) usr/share/doc/$(p_dbg); \
@@ -1920,6 +1915,8 @@ ifeq ($(with_docs),yes)
 	  ln -sf ../$(p_jrehl)/$$b $(d_doc)/usr/share/doc/$(p_doc)/$$b; \
 	done
 endif
+	dh_installchangelogs -p$(p_lib)
+	dh_installdocs -p$(p_lib)
 # FIXME: desktop and menu files not ready for multiarch. #658321
 ifeq (,$(DEB_HOST_MULTIARCH))
 	dh_installmenu -i $(nodocs)
-- 
1.7.10.4

>From 83d7a6ebd88955ac0424bd844555fc6110096d5a Mon Sep 17 00:00:00 2001
From: Andreas Beckmann 
Date: Sat, 16 Nov 2013 19:00:57 +0100
Subject: [PATCH 2/2] split openjdk-7-jre-core from openjdk-7-jre-headless

---
 debian/JB-jre-core.overrides.in |5 ++
 debian/JB-jre-core.postinst.in  |  144 +++
 debian/JB-jre-core.postrm.in|   21 +
 debian/JB-jre-core.preinst.in   |   28 +++
 debian/JB-jre-core.prerm.in |   27 +++
 debian/JB-jre-headless.overrides.in |5 --
 debian/JB-jre-headless.postinst.in  |  144 ---
 debian/JB-jre-headless.postrm.in|   21 

Bug#720570: shogun: Please stop using openjdk-6-*

2013-11-19 Thread Steve Cotton
On Fri, Aug 23, 2013 at 14:19 +0200, Sylvestre Ledru wrote:
> As part of the transition to OpenJDK 7 and the removal of OpenJDK 6 from
> the archive, could you update the dependency of your package to 
> default-jdk ?

Hello Soeren,

Can I mark #720570 as fixed in version 3.0.1~git20131115.557741b-1 ?

This dependency seems already removed by your packaging changes for
splitting shogun in to separate libshogun and interface packages.

Thanks,
Steve


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



Bug#717498: pu: package bootchart/0.10~svn407-4.1~deb7u1 - PATCH v2

2013-11-19 Thread Andreas Beckmann
On 2013-08-05 10:29, Andreas Beckmann wrote:
> On 2013-07-21 19:35, Andreas Beckmann wrote:
>> New patch, much less intrusive, use preinst to fix up the old
>> initscript.
> 
> 0.10~svn407-4.1 has been uploaded to unstable, now I'd like to continue
> with 0.10~svn407-4.1~deb7u1 for wheezy.

There has also been another bug report from a user about bootchart not
being installable: #726701
I really think we should fix the currently uninstallable package in wheezy.


Andreas


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



Bug#697846: same problem

2013-11-19 Thread Daniel Ahern

I've got the same problem trying to compile gridcoin from the git repo:
make -f makefile.unix
/bin/sh ../share/genbuild.sh obj/build.h
...
obj/alert.o: file not recognized: File format not recognized
collect2: error: ld returned 1 exit status
make: *** [litecoind] Error 1

Is there a fix for this, yet?


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



Bug#729970: buggy magic: text files reported as Python executable scripts very easily

2013-11-19 Thread Yann Cezard
Package: file
Version: 5.11-2
Severity: important

If a text file has 2 lines or more containing 3 (or more) ' or ", it is
considered as a Python executable text script, which is bad because amavisd-new
rely on file to  determine the file type of mail attachments, and any mail which
have more than 3 " or 3 ' in it would be reported as having an executable
attachment.

Steps to reproduce :
$ echo "Test." > /tmp/test.txt
$ file /tmp/test.txt
/tmp/test.txt: ASCII text
$ echo "'''" >> /tmp/test.txt
$ file /tmp/test.txt
/tmp/test.txt: ASCII text
$ echo "'''" >> /tmp/test.txt
$ file /tmp/test.txt
/tmp/test.txt: Python script, ASCII text executable

''' and """ (or more : , , etc.) are used for multiline comments in
Python, but that is not a sufficient condition to say if a file is a Python 
script.

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

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

Versions of packages file depends on:
ii  libc6   2.11.3-4 Embedded GNU C Library: Shared lib
ii  libmagic1   5.11-2   File type determination library us
ii  zlib1g  1:1.2.3.4.dfsg-3 compression library - runtime

file recommends no packages.

file 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#729969: zsnes: add a debug package

2013-11-19 Thread Etienne Millon
Package: zsnes
Version: 1.510+bz2-6
Severity: minor

Given the recent stability problems (ex: LP:1214241, #727781), a
package with debugging symbols would be a nice addition to zsnes.

Thanks

-- 
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#729965: better example

2013-11-19 Thread Brian Kroth

Apparently I didn't look hard enough the first time.  This appears to have the 
same issue:

# curl -s -S --insecure https://www.example.com > /dev/null
curl: (51) SSL peer certificate or SSH remote key was not OK

Let me know if you need anything else.

Thanks,
Brian


smime.p7s
Description: S/MIME cryptographic signature


Bug#729966: dovecot: French debconf templates translation

2013-11-19 Thread Julien Patriarca
Package: dovecot
Version: N/A
Severity: wishlist
Tags: patch l10n

Dear Maintainer,
*** /home/julien/traductions/po-debconf/patch-translate.txt


Please find attached the french debconf templates translation, proofread by the
debian-l10n-french mailing list contributors.

This file should be put as debian/po/fr.po in your package build tree.



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

Kernel: Linux 3.10-0.bpo.3-amd64 (SMP w/4 CPU cores)
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
# Translation of dovecot debconf templates to french.
# Copyright (C) 2013, French l10n team 
# This file is distributed under the same license as the dovecot package.
# Julien Patriarca , 2013.
#
msgid ""
msgstr ""
"Project-Id-Version: dovecot\n"
"Report-Msgid-Bugs-To: dove...@packages.debian.org\n"
"POT-Creation-Date: 2013-11-07 07:06+0100\n"
"PO-Revision-Date: 2013-11-08 10:15+0100\n"
"Last-Translator: Julien Patriarca \n"
"Language-Team: FRENCH \n"
"Language: fr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"

#. Type: error
#. Description
#: ../dovecot-core.templates:2001
msgid "Wrong location for SSL certificates"
msgstr "Mauvais emplacement pour les certificats SSL"

#. Type: error
#. Description
#: ../dovecot-core.templates:2001
msgid ""
"This machine uses SSL certificates for Dovecot. These certificates should be "
"moved from /etc/ssl to /etc/dovecot and Dovecot's configuration file (/etc/"
"dovecot/conf.d/10-ssl.conf) should be updated accordingly."
msgstr ""
"Cette machine utilise des certificats SSL pour Dovecot. Ces certificats "
"doivent être déplacés de /etc/ssl vers /etc/dovecot, et le fichier de "
"configuration de Dovecot (/etc/dovecot/conf.d/10-ssl.conf) doit être mis à "
"jour en conséquence."

#. Type: error
#. Description
#: ../dovecot-core.templates:2001
msgid "Please read /usr/share/doc/dovecot-core/README.Debian.gz for details."
msgstr ""
"Veuillez lire le fichier /usr/share/doc/dovecot-core/README.Debian.gz pour "
"les détails."

#. Type: boolean
#. Description
#: ../dovecot-core.templates:3001
msgid "Create a self-signed SSL certificate?"
msgstr "Faut-il créer un certificat SSL auto-signé ?"

#. Type: boolean
#. Description
#: ../dovecot-core.templates:3001
msgid ""
"An SSL certificate is needed in order to use IMAP or POP3 over SSL/TLS. No "
"such certificate was found."
msgstr ""
"Un certificat SSL est nécessaire pour utiliser les protocoles IMAP et POP3 "
"avec SSL. Aucun certificat n'a été trouvé."

#. Type: boolean
#. Description
#: ../dovecot-core.templates:3001
msgid ""
"Please choose whether you want to create one now. This will then be a self-"
"signed certificate."
msgstr ""
"Veuillez choisir si vous souhaitez en créer un maintenant. Ce sera alors un "
"certificat auto-signé."

#. Type: boolean
#. Description
#: ../dovecot-core.templates:3001
msgid ""
"If you choose not to create a certificate, please adapt Dovecot's "
"configuration file (/etc/dovecot/conf.d/10-ssl.conf)."
msgstr ""
"Si vous choisissez de ne pas créer de certificat, veuillez modifier le "
"fichier de configuration de Dovecot (/etc/dovecot/conf.d/10-ssl.conf)."

#. Type: string
#. Description
#: ../dovecot-core.templates:4001
msgid "Host name:"
msgstr "Nom d'hôte :"

#. Type: string
#. Description
#: ../dovecot-core.templates:4001
msgid "Please enter the host name to use in the SSL certificate."
msgstr "Veuillez indiquer le nom d'hôte à utiliser dans le certificat SSL."

#. Type: string
#. Description
#: ../dovecot-core.templates:4001
msgid ""
"It will become the \"commonName\" field of the generated SSL certificate."
msgstr "Il constituera le champ « commonName » du certificat SSL créé."


Bug#729967: fheroes2-pkg: French debconf templates translation

2013-11-19 Thread Julien Patriarca
Package: fheroes2-pkg
Version: N/A
Severity: wishlist
Tags: patch l10n

Dear Maintainer,

*** /home/julien/traductions/po-debconf/patch-translate.txt


Please find attached the french debconf templates translation, proofread by the
debian-l10n-french mailing list contributors.

This file should be put as debian/po/fr.po in your package build tree.



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

Kernel: Linux 3.10-0.bpo.3-amd64 (SMP w/4 CPU cores)
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
# Translation of fheroes2-pkg debconf templates to french.
# Copyright (C) French l10n team 
# This file is distributed under the same license as the fheroes2-pkg package.
# Julien Patriarca , 2013.
#
msgid ""
msgstr ""
"Project-Id-Version: fheroes2-pkg\n"
"Report-Msgid-Bugs-To: fheroes2-...@packages.debian.org\n"
"POT-Creation-Date: 2013-11-07 07:11+0100\n"
"PO-Revision-Date: 2013-11-08 11:16+0100\n"
"Last-Translator: Julien Patriarca \n"
"Language-Team: FRENCH \n"
"Language: fr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"

#. Type: boolean
#. Description
#: ../templates:2001
msgid "Proceed with downloading and compiling fheroes2?"
msgstr "Faut-il télécharger puis compiler fheroes2 ?"

#. Type: boolean
#. Description
#. Type: note
#. Description
#: ../templates:2001
 ../templates:3001
msgid ""
"The fheroes2 AI is non-free due to a not-for-sale restriction, and some "
"images may also be non-free."
msgstr ""
"Le moteur d'intelligence artificielle ainsi que certaines images de fheroes2 "
"ne sont pas libres à cause d'une restriction sur la vente."

#. Type: boolean
#. Description
#. Type: note
#. Description
#: ../templates:2001
 ../templates:3001
msgid ""
"The installation process is therefore about to download the source files "
"from SourceForge, compile them, and install the binary deb package "
"\"${PKGG}${VER}\"."
msgstr ""
"Le processus d'installation va télécharger les fichiers sources depuis "
"SourceForge, les compiler, puis installer le paquet deb « ${PKGG}${VER} »."

#. Type: boolean
#. Description
#: ../templates:2001
msgid "Please confirm whether you wish this to happen."
msgstr "Veuillez confirmer que c'est bien ce que vous souhaitez."

#. Type: note
#. Description
#: ../templates:3001
msgid ""
"Please remember to run \"sudo dpkg-reconfigure ${PKGI}\" to build and "
"install guest package(s) for the first time."
msgstr ""
"Veuillez noter qu'il vous faudra lancer « sudo dpkg-reconfigure ${PKGI} » "
"pour compiler et installer le(s) paquet(s) invité(s) pour la première fois."

#. Type: title
#. Description
#: ../templates:4001
msgid "Build and install ${PKGG}${VER}"
msgstr "Compiler et installer ${PKGG}${VER}"

#. Type: title
#. Description
#: ../templates:5001
msgid "Upgrades available for guest package(s)"
msgstr "Mises à jour disponibles pour le(s) paquet(s) invité(s)"

#. Type: note
#. Description
#: ../templates:6001
msgid ""
"An update to guest package(s) [${PKGG_ALL}] version ${VER} is available but "
"automatic upgrade is disabled."
msgstr ""
"Une mise à jour pour le(s) paquet(s) invité(s) [${PKGG_ALL}] version ${VER} "
"est disponible mais la mise à jour automatique est désactivée."

#. Type: note
#. Description
#: ../templates:6001
msgid ""
"Please remember to run \"sudo dpkg-reconfigure ${PKGI}\" to build and "
"install guest package(s) or consider installing the APT post-invoke hook."
msgstr ""
"Veuillez noter qu'il vous faudra lancer « sudo dpkg-reconfigure ${PKGI} » "
"pour compiler et installer le(s) paquet(s) invité(s) ou installer le "
"déclencheur post-appel (« post-invoke hook ») d'APT."

#. Type: boolean
#. Description
#: ../templates:7001
msgid "Install APT post-invoke hook?"
msgstr "Faut-il installer le déclencheur post-appel d'APT ?"

#. Type: boolean
#. Description
#. Type: boolean
#. Description
#: ../templates:7001
 ../templates:8001
msgid ""
"If activated, the APT post-invoke hook takes care of future automatic "
"upgrades of guest package(s) on host package upgrade. When an update is "
"available, the hook will attempt to download and build the package(s), and "
"(if \"apt-get check\" reports no errors) install them with \"dpkg -i\"."
msgstr ""
"S'il est activé, le déclencheur post-appel (« post-invoke hook ») d'APT s'occupera des mises à "
"jour automatiques futures du(es) paquet(s) invité(s) lors de la mise à jour "
"du paquet sur l'hôte. Lorsqu'une mise à jour est disponible, le déclencheur "
"essaiera de télécharger puis de compiler le(s) paquet(s), et, si la commande "
"« apt-get check » ne retourne pas d'erreurs, les installera avec « dpkg -i »."

#. Type: boolean
#. Description
#. Type: boolean
#. Description
#:

Bug#729965: libcurl3 7.21.0-2.1+squeeze5 --insecure regression

2013-11-19 Thread Brian Kroth
Package: libcurl3
Version: 7.21.0-2.1+squeeze5
Severity: important


Hi, I believe I've found a regression in the recent libcurl3 DSA update.  
Basically, it doesn't seem to be respecting the --insecure option in all 
cases.

This now fails:

# aptitude -PV install libcurl3=7.21.0-2.1+squeeze5
# curl -s -S --insecure https://backend-host-that-does-not-match-service-name > 
/dev/null
curl: (51) SSL peer certificate or SSH remote key was not OK

But this succeeds:

# aptitude -PV install libcurl3=7.21.0-2.1+squeeze4
# curl -s -S --insecure https://backend-host-that-does-not-match-service-name > 
/dev/null


Unfortunately, I haven't found a good test case for it at publicly 
accessible internet sites.  For instance, these still work as expected:

# curl -s -S --insecure https://74.125.225.40 > /dev/null
# curl -s -S https://74.125.225.40 > /dev/null
curl: (51) SSL: certificate subject name '*.google.com' does not match target 
host name '74.125.225.40'

So, I guess poke me offline if you need some extra details to help track 
this down.

I'll also note that wheezy versions don't seem to have this issue.

Thanks,
Brian

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

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

Versions of packages libcurl3 depends on:
ii  ca-certificates20090814+nmu3squeeze1 Common CA certificates
ii  libc6  2.11.3-4  Embedded GNU C Library: Shared lib
ii  libgssapi-krb5-2   1.8.3+dfsg-4squeeze7  MIT Kerberos runtime libraries - k
ii  libidn11   1.15-2GNU Libidn library, implementation
ii  libldap-2.4-2  2.4.23-7.3OpenLDAP libraries
ii  libssh2-1  1.2.6-1   SSH2 client-side library
ii  libssl0.9.80.9.8o-4squeeze14 SSL shared libraries
ii  zlib1g 1:1.2.3.4.dfsg-3  compression library - runtime

libcurl3 recommends no packages.

libcurl3 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#729828: django-openid-auth: FTBFS with django-1.6

2013-11-19 Thread Andrew Starr-Bochicchio
tag 729828 patch
thanks

On Sun, Nov 17, 2013 at 10:21 PM, Sebastian Ramacher
 wrote:
> Source: django-openid-auth
> Version: 0.5-1
> Severity: serious
> Justification: fails to build from source
> Tags: sid jessie
>
> django-openid-auth fails to build with django 1.6:
> |debian/rules override_dh_auto_test
> | make[1]: Entering directory `/«PKGBUILDDIR»'
> | set -e; \
> |   for python in python2.7; do \
> | PYTHONPATH="." $python example_consumer/manage.py test 
> --settings=example_consumer.settings django_openid_auth ; \
> |   done
> | Traceback (most recent call last):
> |   File "example_consumer/manage.py", line 2, in 
> | from django.core.management import execute_manager
> | ImportError: cannot import name execute_manager
> | make[1]: *** [override_dh_auto_test] Error 1

I've got a merge proposal upstream fixing this:

https://code.launchpad.net/~andrewsomething/django-openid-auth/1252445/+merge/195793

-- Andrew Starr-Bochicchio

   Ubuntu Developer 
   Debian Developer 
   PGP/GPG Key ID: D53FDCB1


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



  1   2   >