Bug#801739: plasma-workspace: plasmashell crashes after login through display manager

2015-10-13 Thread Robi Malik

On 14/10/15 15:08, Diederik de Haas wrote:

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


Confirmed: I can fix the problem by adding myself (and
presumably all users that want to login) to the video group.

Thanks.



Bug#801743: pu: package cpuset/1.5.6-4+deb8u1

2015-10-13 Thread Roberto C. Sanchez
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: pu

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

It turns out that #796893 makes cpuset effectively useless in stable.  I
have updated an existing quilt patch from a patch in the (now mostly
dead) upstream issue tracker.  I have already uploaded 1.5.6-5 into
unstable to fix the bug there.  The debdiff for the proposed update to
stable is attached.  Here is the diffstat:

 changelog|6 +
 patches/02_prefix_in_case_filesystem_has_its_own_namespace.patch |   45 
--
 2 files changed, 44 insertions(+), 7 deletions(-)

Regards,

- -Roberto

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

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

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

iQIcBAEBCAAGBQJWHdZ9AAoJECzXeF7dp7IPLZwP/1oIUNHuqrQiOvO+5pamEfto
6gZiBZaGes0TwLv0qAEJ1o1qLcOV/lsRqKcbHo9F6bFO6JKeA805l7WYW+lhauWD
PGhxogImME32EK0qmpae+FvKnXv90F/RzZnacCb9zYq8IHyUYW7IA565dizQ+E7r
Kad6sWCeqxSGYnnqej5i3cAeSrJPcPwq8fcYlqbYRFZpAe9lJiePZfi7//m2MUYD
fbY94GVOEfdt/PQLADa/DRgmvREwh9lglNwMcX5HFia6kKJhrcu559h+kIRVfgaD
GkTVDrvVF2OslE5zDto+xc1a3XEQXqJn1nvTklRv0GVC4CAEGXtLZx/EsQQ2Rsna
sE/AATpCmVeZL+aDEstt5IbCI34bqthEA9SDz01Vo8tIo/K6DmgnY1Bd+iDXN3xz
w3ssLVizyLq7vMy946+8G3ucy46cyLSeT14CYcn28JD/KwKdc+rS8H+aheCh5U0r
qJSHiDzJI10f/JNn7+db6qM7x9+ls9dbYdblM5x5EBEsf8ZFxX4wYpsMU7GnAGvI
YiuD19TAQWubhFWmSyzrut35tW7IqPR3DNWsCUUxdH7J93WXqED7NRprZBVJPP2H
Hwy26mDHlFU8/B48SwuBOrZj4TN0DPdiaw9X/zB1NCwFIXz9vULP0LjOvmqyPnpN
+Oo9VNDbP1hccUUdrntd
=jxoF
-END PGP SIGNATURE-
diff -Nru cpuset-1.5.6/debian/changelog cpuset-1.5.6/debian/changelog
--- cpuset-1.5.6/debian/changelog	2014-03-09 18:16:04.0 -0400
+++ cpuset-1.5.6/debian/changelog	2015-10-13 23:47:17.0 -0400
@@ -1,3 +1,9 @@
+cpuset (1.5.6-4+deb8u1) jessie; urgency=high
+
+  * Update filesystem namespace prefix patch (Closes: #796893)
+
+ -- Roberto C. Sanchez   Tue, 13 Oct 2015 23:46:35 -0400
+
 cpuset (1.5.6-4) unstable; urgency=low
 
   * Update Standards-Version to 3.9.5 (no changes)
diff -Nru cpuset-1.5.6/debian/patches/02_prefix_in_case_filesystem_has_its_own_namespace.patch cpuset-1.5.6/debian/patches/02_prefix_in_case_filesystem_has_its_own_namespace.patch
--- cpuset-1.5.6/debian/patches/02_prefix_in_case_filesystem_has_its_own_namespace.patch	2014-03-09 18:16:04.0 -0400
+++ cpuset-1.5.6/debian/patches/02_prefix_in_case_filesystem_has_its_own_namespace.patch	2015-10-13 23:47:17.0 -0400
@@ -1,7 +1,7 @@
 Author: Roberto C. Sanchez 
 Description: Account for filesystem namespace having its own prefix.  The updated file was downloaded from here: http://code.google.com/p/cpuset/issues/detail?id=10
 cpuset.hg.orig/cpuset/cset.py
-+++ cpuset.hg/cpuset/cset.py
+--- cpuset.git.orig/cpuset/cset.py
 cpuset.git/cpuset/cset.py
 @@ -32,10 +32,13 @@
  class CpuSet(object):
  # sets is a class variable dict that keeps track of all 
@@ -17,7 +17,33 @@
  
  def __init__(self, path=None):
  log.debug("initializing CpuSet")
-@@ -104,12 +107,18 @@
+@@ -47,7 +50,16 @@
+ log.debug("finding all cpusets")
+ path = self.locate_cpusets()
+ CpuSet.basepath = path
+-log.debug("creating root node at %s", path)
++if not os.access(path + '/cpus', os.F_OK):
++log.debug(path + "/cpus doesn't exist, trying to add the cpuset. prefix")
++CpuSet.prefix = 'cpuset.'
++if not os.access(path + '/cpuset.cpus', os.F_OK):
++# definitely not a cpuset directory
++str = '%s is not a cpuset directory' % (path)
++log.error(str)
++raise CpusetException(str)
++
++log.debug("creating root node at %s with prefix '%s'", path, CpuSet.prefix)
+ self.__root = True
+ self.name = 'root'
+ self.path = '/'
+@@ -56,6 +68,7 @@
+ del CpuSet.sets
+ CpuSet.sets = {}
+ CpuSet.sets[self.path] = self
++
+ # bottom-up search otherwise links will not exist
+ log.debug("starting bottom-up discovery walk...")
+ for dir, dirs, files in os.walk(path, topdown=False):
+@@ -104,12 +117,18 @@
  log.debug("the cpuset %s already exists, skipping", path)
  self = CpuSet.sets[path]  # questionable
  return
@@ -41,7 +67,7 @@
  self.__root = False
  self.read_cpuset(path)
  CpuSet.sets[path] = self
-@@ -158,36 +167,36 @@
+@@ -158,36 +177,36 @@
 

Bug#801740: bleachbit: deletes important config file (security issue)

2015-10-13 Thread U.Mutlu
Package: bleachbit
Version: 1.4-1
Severity: important

Dear Maintainer,

   * What led up to the situation?
If one enables deleting temp files of the flash-plugin then also the config-
file of the flash-plugin gets deleted.

   * What exactly did you do (or not do) that was effective (or ineffective)?
I had enabled deleting of the undesired flash files (cookies, tmp files etc.)

   * What was the outcome of this action?
It deleted also the (binary) config file:
~/.macromedia/Flash_Player/macromedia.com/support/flashplayer/sys/settings.sol

   * What outcome did you expect instead?
It should not delete that file, because that is a config file, and if it is not
existent,
then the defaults apply, and that leads to severe security issues, because
if one had tightened the security of the flash-plugin, then these security
settings
will silently be gone by deleting the said file.
So, the said file should be not deleted by this otherwise useful program.




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

Kernel: Linux 3.16.0-4-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
Init: sysvinit (via /sbin/init)

Versions of packages bleachbit depends on:
ii  menu 2.1.47
ii  python   2.7.9-1
ii  python-gtk2  2.24.0-4
pn  python:any   

Versions of packages bleachbit recommends:
ii  python-notify  0.1.1-4

bleachbit suggests no packages.

-- no debconf information



Bug#801741: shutdown hosts in the afternoon, but prevent morning start-up of hosts

2015-10-13 Thread Mike Gabriel

Package: shutdown-at-night
Severity: normal
User: debian-...@lists.debian.org
Usertags: debian-edu
X-Debbugs-Cc: debian-...@lists.debian.org

A customer of ours recently requested to disable the shutdown-at-night  
startup job in the morning.


At the moment, this is non-trivial in Debian Edu, as you have to  
disable the shutdown-at-night start-up script (flooding the intranet  
with WOL packets from every running system) on every installed system.


Alternatively, WoL has to be disabled in all BIOSes/EFIs.

I plan to work on a feature where you can configure the morning  
startup via another NIS netgroup (to LDAP)  
"block-startup-in-the-morning-hosts".


Greets,
Mike
--

DAS-NETZWERKTEAM
mike gabriel, herweg 7, 24357 fleckeby
fon: +49 (1520) 1976 148

GnuPG Key ID 0x25771B31
mail: mike.gabr...@das-netzwerkteam.de, http://das-netzwerkteam.de

freeBusy:
https://mail.das-netzwerkteam.de/freebusy/m.gabriel%40das-netzwerkteam.de.xfb


pgpOFVLwauoI5.pgp
Description: Digitale PGP-Signatur


Bug#801744: python-django-common: conffiles not removed

2015-10-13 Thread Paul Wise
Package: python-django-common
Version: 1.8.5-1
Severity: normal
User: debian...@lists.debian.org
Usertags: obsolete-conffile adequate

The recent upgrade did not deal with obsolete conffiles properly.
Please use the dpkg-maintscript-helper support provided by dh_installdeb
to remove these obsolete conffiles on upgrade.

https://www.debian.org/doc/debian-policy/ch-files.html#s-config-files
http://manpages.debian.org/man/1/dh_installdeb

This bug report brought to you by adequate:

http://bonedaddy.net/pabs3/log/2013/02/23/inadequate-software/

$ pkg=python-django-common ; adequate $pkg ; dpkg-query -W -f='${Conffiles}\n' 
$pkg | grep obsolete
python-django-common: obsolete-conffile 
/etc/bash_completion.d/django_bash_completion
$ /etc/bash_completion.d/django_bash_completion 
2723e26eb4d796a1fe35b20d33798fbf obsolete

-- System Information:
Debian Release: stretch/sid
  APT prefers testing
  APT policy: (900, 'testing'), (860, 'testing-proposed-updates'), (850, 
'buildd-testing-proposed-updates'), (800, 'unstable'), (790, 
'buildd-unstable'), (700, 'experimental'), (690, 'buildd-experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 4.2.0-1-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_AU.utf8, LC_CTYPE=en_AU.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

python-django-common depends on no packages.

Versions of packages python-django-common recommends:
ii  libjs-jquery  1.11.3+dfsg-4

python-django-common suggests no packages.

-- no debconf information

-- 
bye,
pabs

https://wiki.debian.org/PaulWise




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


Bug#794447: RFS: pbgenomicconsensus (NEW)

2015-10-13 Thread Afif Elghraoui
Hi, team,
I finished preparing pbgenomicconsensus. Could someone please upload to
unstable?

http://anonscm.debian.org/cgit/debian-med/pbgenomicconsensus.git/
ssh://git.debian.org/git/debian-med/pbgenomicconsensus.git

Many thanks and regards
Afif

-- 
Afif Elghraoui | عفيف الغراوي
http://afif.ghraoui.name



signature.asc
Description: OpenPGP digital signature


Bug#775277: should we split krb5-kpropd into a separate package?

2015-10-13 Thread Benjamin Kaduk
On Tue, 13 Oct 2015, Michael Weiser wrote:

> Hi Ben,
>
> > Looking at the patch, it feels awkward to manually install the unit file
> > and sysv script to the staging directory.  If we created a new
> > krb5-kpropd package to be installed only on slave KDCs, then we could
> > benefit from the debian/packagename.init magic and also have the script
> > be active by default, since it would only be installed on machines which
> > should use it.
>
> Uh, somehow this slipped past me. I like the idea.
>
> What's the status here: Do all agree, a separate package is the way to
> go? Is someone even working on it?

I think we still need to hear from Sam.

-Ben

> I'd be happy to give it a go, separating kpropd with it's init scripts
> out into a separate package.



Bug#801650: RFS: edgar/1.21-1 [ITP]

2015-10-13 Thread Zorian M
Control: tags -1 - moreinfo

Package is re-uploaded with fixes in place.



Bug#697821: ITP: ppsspp -- ppsspp: A portable PSP emulator.

2015-10-13 Thread Sérgio Benjamim

Hi,


I don't really understand why Sergio filed it anyway. I told him I would
take care of the sponsoring for him, so there is no need to make a
public request for sponsoring.

Adrian


Sorry, at the time I thought it was somewhat obliged to make a RFS bug :p

I'm very noob at these things and I'm trying to understand all these 
bureaucratic stuff [yet]...


Sergio Benjamim



Bug#801707: ITA: shadow -- system login tools

2015-10-13 Thread Christian PERRIER
Quoting Laszlo Boszormenyi (GCS) (g...@debian.org):
> retitle 801707 ITA: shadow -- system login tools
> owner 801707 !
> thanks
> 
> Hi Christian,
> 
> What's up with the team behind the maintenance of shadow? Does it
> still exists / active?
> I would like to adopt it, but under control for the first some months
> if you don't mind. First I'd like to package the new upstream release
> and do some cleanup. Does it sound right with you, do you accept me as
> the future maintainer?
> I'm a Security Team trainee and have some cryptographic background,
> but this package is vital to the system.

Hello,

The team is not really active but the tools are there: git repository,
mailing lists on Alioth.

Serge and John (CC'ed) have mentioned their intent to resume the work
on shadow, too. So I guess it's be easy to take things over.

My intent, in the "orphan" bug report, was mostly to officially
announce that nobody should wait for me for package uploads, changes,
etc.

I'd happy to hand out the pkg-shadow project on Alioth to another
person, of course, so that the work can continue/resume smoothly.




signature.asc
Description: PGP signature


Bug#801742: gnome-tweak-tool: Open Weather Extension not working

2015-10-13 Thread Michael Prokopec
Package: gnome-tweak-tool
Version: 3.14.2-2
Severity: important

I had ben using Open Weather Extension for about three weeks. The
extension in question within tweak tool has stoped working with no changes made
other than time passing. I checked all the settings and reloaded the extension
with no effect. I would like for this bug to be fixed.

P.S. In my last bug report I forgot to remove the template, I am sorry :(



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

Kernel: Linux 3.16.0-4-amd64 (SMP w/8 CPU cores)
Locale: LANG=en_US.utf8, LC_CTYPE=en_US.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages gnome-tweak-tool depends on:
ii  gir1.2-gnomedesktop-3.03.14.1-1
ii  gir1.2-gtk-3.0 3.14.5-1+deb8u1
ii  gir1.2-notify-0.7  0.7.6-2
ii  gir1.2-soup-2.42.48.0-1
ii  gnome-shell-common 3.14.4-1~deb8u1
ii  gsettings-desktop-schemas  3.14.1-1
ii  mutter-common  3.14.4-1~deb8u1
ii  python 2.7.9-1
ii  python-gi  3.14.0-1

gnome-tweak-tool recommends no packages.

gnome-tweak-tool suggests no packages.

-- no debconf information



Bug#800966: RFS: kimchi/1.5.1-1 [ITP] -- HTML5 based management tool for KVM

2015-10-13 Thread Liang Guo
On Wed, Oct 7, 2015 at 11:39 PM, Frederic Bonnard
 wrote:
> interesting. I tried to build the package on amd64 too but in a schroot env
> (unstable) and it built fine.
> Could you explain or give some links on how to setup this sbuild env ?
> Thanks a lot,
Sbuild is simple to setup, please visit its wiki [1][2] to see how to
build package
with sbuild.

Packages accepted by ftp-master are built with sbuild for all architecture and
uploaded to debian archive.

Beside sbuild, you may use pbuilder[3] to validate package build dependency.

[1] https://wiki.debian.org/sbuild
[2] https://wiki.ubuntu.com/SimpleSbuild
[3] https://www.debian.org/doc/manuals/maint-guide/build.zh-cn.html#pbuilder
-- 
Liang Guo



Bug#801745: vlc: Segfault when watching WebM video with increased speed

2015-10-13 Thread Michael Weghorn
The attached file contains the VLC output and the GDB backtrace.

Please let me know whether I can provide any additional information that
is useful.
$ while true; do gdb -ex run -ex quit --args vlc -vvv --play-and-exit --rate 2.5 http://download.media.tagesschau.de/video/2015/1012/TV-20151012-2022-5601.webm.webm; done
GNU gdb (Debian 7.10-1) 7.10
Copyright (C) 2015 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later 
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.  Type "show copying"
and "show warranty" for details.
This GDB was configured as "x86_64-linux-gnu".
Type "show configuration" for configuration details.
For bug reporting instructions, please see:
.
Find the GDB manual and other documentation resources online at:
.
For help, type "help".
Type "apropos word" to search for commands related to "word"...
Reading symbols from vlc...Reading symbols from /usr/lib/debug/.build-id/39/1fbfcc27d12d994a7d3208f55cf56694091211.debug...done.
done.
Starting program: /usr/bin/vlc -vvv --play-and-exit --rate 2.5 http://download.media.tagesschau.de/video/2015/1012/TV-20151012-2022-5601.webm.webm
[Thread debugging using libthread_db enabled]
Using host libthread_db library "/lib/x86_64-linux-gnu/libthread_db.so.1".
VLC media player 2.2.1 Terry Pratchett (Weatherwax) (revision 2.2.1-0-ga425c42)
[00605148] core libvlc debug: VLC media player - 2.2.1 Terry Pratchett (Weatherwax)
[00605148] core libvlc debug: Copyright © 1996-2015 the VideoLAN team
[00605148] core libvlc debug: revision 2.2.1-0-ga425c42
[00605148] core libvlc debug: configured with ./configure  '--includedir=${prefix}/include' '--mandir=${prefix}/share/man' '--infodir=${prefix}/share/info' '--localstatedir=/var' '--libdir=${prefix}/lib/x86_64-linux-gnu' '--libexecdir=${prefix}/lib/x86_64-linux-gnu' '--disable-dependency-tracking' '--build=x86_64-linux-gnu' 'CPPFLAGS=-D_FORTIFY_SOURCE=2' 'LDFLAGS=-Wl,-z,relro -Wl,--as-needed' '--config-cache' '--disable-maintainer-mode' '--disable-silent-rules' '--disable-update-check' '--enable-fast-install' '--prefix=/usr' '--docdir=/usr/share/doc/vlc-nox' '--libdir=/usr/lib' '--sysconfdir=/etc' '--with-binary-version=4' '--enable-a52' '--enable-aa' '--enable-bluray' '--enable-bonjour' '--enable-caca' '--enable-chromaprint' '--enable-dbus' '--enable-dca' '--enable-directfb' '--enable-dvbpsi' '--enable-dvdnav' '--enable-faad' '--enable-flac' '--enable-fluidsynth' '--enable-freerdp' '--enable-freetype' '--enable-fribidi' '--enable-gles1' '--enable-gles2' '--enable-gnutls' '--enable-jack' '--enable-kate' '--enable-libass' '--enable-libmpeg2' '--enable-libxml2' '--enable-lirc' '--enable-live555' '--enable-mad' '--enable-mkv' '--enable-mod' '--enable-mpc' '--enable-mtp' '--enable-mux_ogg' '--enable-ncurses' '--enable-notify' '--enable-ogg' '--enable-opus' '--enable-pulse' '--enable-qt' '--enable-realrtsp' '--enable-samplerate' '--enable-schroedinger' '--enable-sdl' '--enable-sdl-image' '--enable-sftp' '--enable-shine' '--enable-shout' '--enable-skins2' '--enable-speex' '--enable-svg' '--enable-svgdec' '--enable-taglib' '--enable-theora' '--enable-twolame' '--enable-upnp' '--enable-vcdx' '--enable-vdpau' '--enable-vnc' '--enable-vorbis' '--enable-x264' '--enable-x265' '--enable-zvbi' '--with-kde-solid=/usr/share/kde4/apps/solid/actions/' '--disable-decklink' '--disable-dxva2' '--disable-fdkaac' '--disable-gnomevfs' '--disable-goom' '--disable-libtar' '--disable-mfx' '--disable-opencv' '--disable-projectm' '--disable-sndio' '--disable-telx' '--disable-vpx' '--disable-vsxu' '--disable-wasapi' '--enable-alsa' '--enable-atmo' '--enable-dc1394' '--enable-dv1394' '--enable-linsys' '--enable-omxil' '--enable-udev' '--enable-v4l2' '--enable-libva' '--enable-vcd' '--enable-smbclient' '--disable-oss' '--enable-crystalhd' '--enable-mmx' '--enable-sse' '--disable-neon' '--disable-altivec' 'CFLAGS=-g -O2 -fstack-protector-strong -Wformat -Werror=format-security' 'CXXFLAGS=-g -O2 -fstack-protector-strong -Wformat -Werror=format-security' 'build_alias=x86_64-linux-gnu' 'OBJCFLAGS=-g -O2 -fstack-protector-strong -Wformat -Werror=format-security'
[00605148] core libvlc debug: searching plug-in modules
[00605148] core libvlc debug: loading plugins cache file /usr/lib/vlc/plugins/plugins.dat
[00605148] core libvlc debug: recursively browsing `/usr/lib/vlc/plugins'
[00605148] core libvlc debug: saving plugins cache /usr/lib/vlc/plugins/plugins.dat
[00605148] core libvlc debug: plug-ins loaded: 460 modules
[00605148] core libvlc debug: opening config file (/home/michi/.config/vlc/vlcrc)
[00605148] core libvlc debug: translation test: code is "en_GB"
[00605148] core libvlc debug: CPU has capabilities MMX MMXEXT SSE SSE2 SSE3 SSSE3 

Bug#801717: lintian: False positive for source-is-missing

2015-10-13 Thread Paul Wise
On Tue, 13 Oct 2015 20:48:48 +0100 Neil Williams wrote:

> lava_server/htdocs/js/jquery.validate.js
> lava_server/lava-server/js/jquery.validate.js

Are you sure these files are source for the jQuery validation plugin?

Looking at the upstream git repo for the jQuery validation plugin the
source is a bunch of separate files instead of just one file.

https://github.com/jzaefferer/jquery-validation/

These separate files are then combined using a tool called grunt, which
is similar to make and reads the build cmds in the Gruntfile.js file.

https://github.com/jzaefferer/jquery-validation/blob/master/CONTRIBUTING.md#build-setup
https://github.com/jzaefferer/jquery-validation/blob/master/Gruntfile.js

Also, I wonder why there are two embedded copies of this plugin instead
of just one and why this code shouldn't be packaged separately.

https://wiki.debian.org/EmbeddedCodeCopies

-- 
bye,
pabs

https://wiki.debian.org/PaulWise




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


Bug#801745: vlc: Segfault when watching WebM video with increased speed

2015-10-13 Thread Michael Weghorn
Package: vlc
Version: 2.2.1-4
Severity: important

Dear Maintainer,

when watching particular WebM videos with increased speed, VLC often crashes
due to a segmentation fault. 

When watching the same video multiple times, the segmentation fault does not
always occur and if so, it may occur at different points in time.

The following command can be used to reproduce the problem and examine it in 
GDB.
It plays a video in VLC repeatedly, until the segmentation fault occurs (which 
is often in the
first run already for me):

while true; do gdb -ex run -ex quit --args vlc -vvv --play-and-exit --rate 2.5 
http://download.media.tagesschau.de/video/2015/1012/TV-20151012-2022-5601.webm.webm;
 done

I am attaching the VLC output and the GDB backtrace of the segmentation fault.
The packages "vlc-dbg" and "ffmpeg-dbg" are installed on my system.

As far as I understand, the segmentation fault itself occurs in the ffmpeg 
library "libavcodec-ffmpeg56".
The crash happens with a similar backtrace on Debian jessie, where libav is 
used instead of ffmpeg.


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

Kernel: Linux 4.2.0-1-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages vlc depends on:
ii  fonts-freefont-ttf  20120503-4
ii  libaa1  1.4p5-44
ii  libavcodec-ffmpeg56 7:2.8-1
ii  libavutil-ffmpeg54  7:2.8-1
ii  libc6   2.19-22
ii  libcaca00.99.beta19-2
ii  libcairo2   1.14.2-2
ii  libegl1-mesa [libegl1-x11]  10.6.8-1
ii  libfreerdp-client1.11.1.0~git20140921.1.440916e+dfsg1-5
ii  libfreerdp-core1.1  1.1.0~git20140921.1.440916e+dfsg1-5
ii  libfreerdp-gdi1.1   1.1.0~git20140921.1.440916e+dfsg1-5
ii  libfreetype62.6-2
ii  libfribidi0 0.19.7-1
ii  libgcc1 1:5.2.1-22
ii  libgl1-mesa-glx [libgl1]10.6.8-1
ii  libgles1-mesa [libgles1]10.6.8-1
ii  libgles2-mesa [libgles2]10.6.8-1
ii  libglib2.0-02.46.0-2
ii  libpulse0   7.0-1
ii  libqt5core5a5.4.2+dfsg-9
ii  libqt5gui5  5.4.2+dfsg-9
ii  libqt5widgets5  5.4.2+dfsg-9
ii  libqt5x11extras55.4.2-2+b1
ii  librsvg2-2  2.40.11-1
ii  libsdl-image1.2 1.2.12-5+b5
ii  libsdl1.2debian 1.2.15-11
ii  libstdc++6  5.2.1-22
ii  libva-drm1  1.6.1-1
ii  libva-x11-1 1.6.1-1
ii  libva1  1.6.1-1
ii  libvlccore8 2.2.1-4
ii  libvncclient1   0.9.10+dfsg-3
ii  libx11-62:1.6.3-1
ii  libxcb-composite0   1.10-3+b1
ii  libxcb-keysyms1 0.4.0-1
ii  libxcb-randr0   1.10-3+b1
ii  libxcb-shm0 1.10-3+b1
ii  libxcb-xv0  1.10-3+b1
ii  libxcb1 1.10-3+b1
ii  libxext62:1.3.3-1
ii  libxinerama12:1.1.3-1+b1
ii  libxpm4 1:3.5.11-1+b1
ii  vlc-nox 2.2.1-4
ii  zlib1g  1:1.2.8.dfsg-2+b1

Versions of packages vlc recommends:
ii  vlc-plugin-notify  2.2.1-4
ii  vlc-plugin-samba   2.2.1-4
ii  xdg-utils  1.1.1-1

vlc suggests no packages.

Versions of packages vlc-nox depends on:
ii  liba52-0.7.4   0.7.4-18
ii  libasound2 1.0.29-1
ii  libass50.13.0-1
ii  libavahi-client3   0.6.31-5
ii  libavahi-common3   0.6.31-5
ii  libavc1394-0   0.5.4-2
ii  libavcodec-ffmpeg567:2.8-1
ii  libavformat-ffmpeg56   7:2.8-1
ii  libavutil-ffmpeg54 7:2.8-1
ii  libbasicusageenvironment0  2014.01.13-1
ii  libbluray1 1:0.9.0-1
ii  libc6  2.19-22
ii  libcddb2   1.3.2-5
ii  libcdio13  0.83-4.2
ii  libchromaprint01.2-1+b1
ii  libcrystalhd3  1:0.0~git20110715.fdd2f19-11+b1
ii  libdbus-1-31.10.0-3
ii  libdc1394-22   2.2.3-1
ii  libdca00.0.5-7
ii  libdirectfb-1.2-9  1.2.10.0-5.1
ii  libdvbpsi101.3.0-2
ii  libdvdnav4 5.0.3-1
ii  libdvdread45.0.3-1
ii  libebml4v5 1.3.1-5
ii  libfaad2   2.8.0~cvs20150510-1
ii  libflac8   1.3.1-4
ii  libfontconfig1 2.11.0-6.3
ii  libfreetype6   2.6-2
ii  libfribidi00.19.7-1
ii  libgcc11:5.2.1-22
ii  libgcrypt201.6.3-2
ii  libgnutls-deb0-28  3.3.18-1
ii  libgpg-error0  1.20-1
ii  libgroupsock1  2014.01.13-1
ii  libjpeg62-turbo1:1.4.1-2
ii  libkate1

Bug#801741: shutdown hosts in the afternoon, but prevent morning start-up of hosts

2015-10-13 Thread Mike Gabriel

Control: reassign -1 debian-edu-config

Hi,

On  Mi 14 Okt 2015 05:47:52 CEST, Mike Gabriel wrote:


Package: shutdown-at-night
Severity: normal
User: debian-...@lists.debian.org
Usertags: debian-edu
X-Debbugs-Cc: debian-...@lists.debian.org

A customer of ours recently requested to disable the  
shutdown-at-night startup job in the morning.


At the moment, this is non-trivial in Debian Edu, as you have to  
disable the shutdown-at-night start-up script (flooding the intranet  
with WOL packets from every running system) on every installed system.


Alternatively, WoL has to be disabled in all BIOSes/EFIs.

I plan to work on a feature where you can configure the morning  
startup via another NIS netgroup (to LDAP)  
"block-startup-in-the-morning-hosts".


Greets,
Mike


I just realized that this needs feature needs to be added in  
/etc/shutdown-at-night/clients-generator as provided via  
debian-edu-config.


Thus, reassigning to debian-edu-config.

Mike
--

DAS-NETZWERKTEAM
mike gabriel, herweg 7, 24357 fleckeby
fon: +49 (1520) 1976 148

GnuPG Key ID 0x25771B31
mail: mike.gabr...@das-netzwerkteam.de, http://das-netzwerkteam.de

freeBusy:
https://mail.das-netzwerkteam.de/freebusy/m.gabriel%40das-netzwerkteam.de.xfb


pgp6iN4w3AQ7m.pgp
Description: Digitale PGP-Signatur


Bug#801686: [INTL:es] Spanish translation of the debconf template open-iscsi

2015-10-13 Thread Christian Seiler
Control: tags -1 - moreinfo

Hi there,

On 10/13/2015 07:18 PM, Camaleón wrote:
> Sure, there's indeed a missing string that was not translated. It seems 
> that I overlooked completely and nobody of the Spanish team reviewed the
> PO file >:-)
> 
> I'm attaching the file again with the missing string added. Thanks for 
> the heads up!

Thanks for your work - we'll include it in the package once the translation
period is over.

Best regards,
Christian



signature.asc
Description: OpenPGP digital signature


Bug#801739: plasma-workspace: plasmashell crashes after login through display manager

2015-10-13 Thread Diederik de Haas
On Wednesday 14 October 2015 14:56:13 Robi Malik wrote:
> Failed to create OpenGL context for format QSurfaceFormat(version 2.0,
> options QFlags(), depthBufferSize 24, redBufferSize -1, greenBufferSize -1,
> blueBufferSize -1, alphaBufferSize 8, stencilBufferSize 8, samples -1,
> swapBehavior 2, swapInterval 1, profile  0) 

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

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


Bug#697821: ITP: ppsspp -- ppsspp: A portable PSP emulator.

2015-10-13 Thread John Paul Adrian Glaubitz
On 10/13/2015 07:32 PM, Gianfranco Costamagna wrote:
> so, can I please set yourself as owner of the RFS bug? this way I won't 
> bother you anymore :)
> (I didn't find any good way to "look at RFS bugs only where nobody is looking 
> at them", if not
> by setting yourself as owner, as described in [1])

Well, I can do that. But I am not a big fan of RFS bug reports anyway. I
find them redundant to the ITP bug reports. All the discussion that
regarding the package review and sponsoring should just be in one
bug report instead of two to avoid cluttering.

I don't really understand why Sergio filed it anyway. I told him I would
take care of the sponsoring for him, so there is no need to make a
public request for sponsoring.

Adrian

-- 
 .''`.  John Paul Adrian Glaubitz
: :' :  Debian Developer - glaub...@debian.org
`. `'   Freie Universitaet Berlin - glaub...@physik.fu-berlin.de
  `-GPG: 62FF 8A75 84E0 2956 9546  0006 7426 3B37 F5B5 F913



Bug#795664: Fixed ruby-handlebars-assets FTBS

2015-10-13 Thread Mathieu Parent
Hello,

I've fixed the FTBS in my local git repo. I'll request pkg-ruby-extras
membership and upload the fixes next week. As don't know Ruby either,
can someone from the team review?

Detail:
* patch 0001: the package was previously splitted as libjs-handlebars
and libjs-handlebars.runtime
* patch 0002: missing ruby load path. This one is strange and I don't
understand why system load path should be listed here
* patch 0003: fixes js path. This is related to 0001
* TODO patch 0004: debian/changelog

Regards
-- 
Mathieu
From 23e6c7735a5421b5142bf47cc76d97ba72623931 Mon Sep 17 00:00:00 2001
From: Mathieu Parent 
Date: Tue, 13 Oct 2015 04:58:28 +0200
Subject: [PATCH 3/3] Fix path during tests

---
 debian/patches/0002-Fix-slimbars-test.patch | 37 +
 debian/patches/series   |  1 +
 2 files changed, 38 insertions(+)
 create mode 100644 debian/patches/0002-Fix-slimbars-test.patch

diff --git a/debian/patches/0002-Fix-slimbars-test.patch b/debian/patches/0002-Fix-slimbars-test.patch
new file mode 100644
index 000..78c433f
--- /dev/null
+++ b/debian/patches/0002-Fix-slimbars-test.patch
@@ -0,0 +1,37 @@
+From: Mathieu Parent 
+Date: Tue, 13 Oct 2015 05:26:45 +0200
+Subject: Fix slimbars test
+
+---
+ test/handlebars_assets/slimbars_test.rb | 5 +
+ 1 file changed, 5 insertions(+)
+
+diff --git a/test/handlebars_assets/slimbars_test.rb b/test/handlebars_assets/slimbars_test.rb
+index f162d81..2002f26 100644
+--- a/test/handlebars_assets/slimbars_test.rb
 b/test/handlebars_assets/slimbars_test.rb
+@@ -5,6 +5,11 @@ module HandlebarsAssets
+ include SprocketsScope
+ include CompilerSupport
+ 
++def teardown
++  HandlebarsAssets::Config.reset!
++  HandlebarsAssets::Handlebars.reset!
++end
++
+ def compile_slim(source)
+   Slim::Template.new(HandlebarsAssets::Config.slim_options) { source }.render
+ end
+diff --git a/test/test_helper.rb b/test/test_helper.rb
+index c829413..fc18e3c 100644
+--- a/test/test_helper.rb
 b/test/test_helper.rb
+@@ -57,7 +57,7 @@ module HandlebarsAssets
+ def reset!
+   @chomp_underscore_for_partials = nil
+   @compiler = nil
+-  @compiler_path = nil
++  @compiler_path = 'vendor/assets/javascripts'
+   @haml_options = nil
+   @known_helpers = nil
+   @known_helpers_only = nil
diff --git a/debian/patches/series b/debian/patches/series
index d77d941..543a72c 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -1 +1,2 @@
 engine-root.patch
+0002-Fix-slimbars-test.patch
-- 
2.6.1

From c20b61299da5ba14d7e61f8d66702beb251fb747 Mon Sep 17 00:00:00 2001
From: Mathieu Parent 
Date: Tue, 13 Oct 2015 04:11:55 +0200
Subject: [PATCH 2/3] Fixing: uninitialized constant MiniTest::Test (NameError)
 (Closes: #795664)

---
 debian/ruby-tests.rake | 1 +
 1 file changed, 1 insertion(+)

diff --git a/debian/ruby-tests.rake b/debian/ruby-tests.rake
index fc925a8..024e4ab 100644
--- a/debian/ruby-tests.rake
+++ b/debian/ruby-tests.rake
@@ -1,5 +1,6 @@
 require 'rake/testtask'
 Rake::TestTask.new(:test) do |test|
+  test.libs << '/usr/lib/ruby/vendor_ruby'
   test.libs << 'test'
   test.test_files = FileList["test/**/*_test.rb"]
   test.verbose = false
-- 
2.6.1

From 09f88579ab0f0b667ce40d56b0964af281d212f9 Mon Sep 17 00:00:00 2001
From: Mathieu Parent 
Date: Tue, 13 Oct 2015 03:21:04 +0200
Subject: [PATCH 1/3] Remove circular dep on libjs-handlebars{,.runtime}

---
 debian/control | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/debian/control b/debian/control
index ab3e0c2..7388f96 100644
--- a/debian/control
+++ b/debian/control
@@ -4,8 +4,7 @@ Priority: optional
 Maintainer: Debian Ruby Extras Maintainers 
 Uploaders: Pirate Praveen 
 Build-Depends: debhelper (>= 7.0.50~), gem2deb (>= 0.7.5~), ruby-slim,
- ruby-execjs, ruby-tilt, ruby-multi-json, ruby-sprockets, ruby-haml,
- libjs-handlebars (>= 2:0.20.1~), libjs-handlebars.runtime (>= 2:0.20.1~)
+ ruby-execjs, ruby-tilt, ruby-multi-json, ruby-sprockets, ruby-haml
 Standards-Version: 3.9.6
 Vcs-Git: git://anonscm.debian.org/pkg-ruby-extras/ruby-handlebars-assets.git
 Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-ruby-extras/ruby-handlebars-assets.git;a=summary
-- 
2.6.1



Bug#801630: /sbin/mke2fs: mkfs fails on cryptosetup usb drive

2015-10-13 Thread Theodore Ts'o
Why do you think this is a e2fsprogs bug?

You didn't say what kind of usb drive this was, but if it was a USB
thumb drive, the 120 second stall was probably because USB thumb drives was 
slow.

Also, mke2fs must have completed if the shell script had gotten to the
"cryptsetup close prn" command.  As to why it thought the device was
busy, that's between cryptsetup and the kernel, and e2fsprogs has
nothing to do with this.

Can you reproduce this reliably?

- Ted



Bug#795418: jajuk: diff for NMU version 1:1.9.6-9.1

2015-10-13 Thread tony mancill
On 10/12/2015 09:29 AM, Sebastian Ramacher wrote:
> Control: tags 795418 + patch
> Control: tags 795418 + pending
> 
> Dear maintainer,
> 
> I've prepared an NMU for jajuk (versioned as 1:1.9.6-9.1) and
> uploaded it to DELAYED/5. Please feel free to tell me if I
> should delay it longer.
> 
> Cheers

Hi Sebastian,

Thank you for the NMU of jajuk.  I have committed the patch to the
pkg-java SVN packaging repo.

Cheers,
tony




signature.asc
Description: OpenPGP digital signature


Bug#800769: pbuilder: conffiles not removed

2015-10-13 Thread Wouter Verhelst
On Sun, Oct 11, 2015 at 03:49:31PM +, Mattia Rizzolo wrote:
> On Sun, Oct 11, 2015 at 11:03:09AM +0200, Wouter Verhelst wrote:
> > The only way to hand a file (any file) over to another package is by way of
> > 'Replaces:', *without* the Conflicts: and Provides:.
> > 
> > Since this is a single packaga version, you could put the file in 
> > pbuilder-uml
> > and have that 'Replaces: pbuilder (= 0.217)', that way the possible damage 
> > in
> > case you have other (accidental) file conflicts would be limited.
> 
> Though this way if a person install pbuilder 0.217, then removes it the
> conffile would stay there, and that's the whole point of the bug.
> I agree the Replaces is needed, but I don't see it as being enough to
> deal with this... :(

So these are the possible interactions that I can think of:

- If it's removed without --purge, the conffile stays, true,
  but that's what the user asked for.
- If it's removed without --purge, and later pbuilder-uml is installed,
  the Replaces: header takes care of taking over the config file.
- If it's removed with --purge without installing pbuilder-uml, the
  conffile is still registered to pbuilder and will be removed along
  with the rest of the package.
- If it's removed with --purge after installing pbuilder-uml, the
  Replaces: header should ensure it won't be removed (though you might
  want to test that to be sure).
- New versions of pbuilder should check in their postinst (with
  dpkg-query) when they're upgrading from 0.217 or purging what the
  status of pbuilder-uml is. If it's installed or at config-files with a
  version that has the Replaces: header, then pbuilder should not touch
  it. If not, it should remove the file.

Did I miss any other use case?

-- 
It is easy to love a country that is famous for chocolate and beer

  -- Barack Obama, speaking in Brussels, Belgium, 2014-03-26



Bug#778302: mate-desktop-environment: Places menu loads non-caja app

2015-10-13 Thread Mike Gabriel

Control: reassign -1 mate-session-manager

Hi all,

I am about to fix this issue. The fix will happen in bin:package  
mate-session-manager.


Mike

On  Mi 26 Aug 2015 02:59:20 CEST, Richard Jasmin wrote:


Package: mate-desktop-environment
Version: 1.8.0+9
Followup-For: Bug #778302

Thank you. Im glad someone is able to figure this one out. It was  
most annoying

getting baobab or some other thing like konqueror or dolphin instead of caja.

How did you figure this out?

Watch out for everything getting doubled on you.Nobody seems to have  
fixed that

one yet.



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

Kernel: Linux 3.16.0-4-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
Init: systemd (via /run/systemd/system)

Versions of packages mate-desktop-environment depends on:
ii  mate-desktop-environment-core  1.8.0+9

Versions of packages mate-desktop-environment recommends:
ii  atril 1.8.1+dfsg1-4
ii  desktop-base  8.0.2
ii  engrampa  1.8.1+dfsg1-1
ii  eom   1.8.0+dfsg1-4+b2
ii  ffmpegthumbnailer 2.0.8-dmo7
ii  galculator2.1.3-1
ii  mate-applets  1.8.1+dfsg1-3
ii  mate-icon-theme-faenza1.8.0+dfsg1-1
ii  mate-media1.8.0+dfsg1-3
ii  mate-notification-daemon  1.8.1-3
ii  mate-power-manager1.8.1+dfsg1-5
ii  mate-screensaver  1.8.1-2
ii  mate-system-monitor   1.8.0+dfsg1-2
ii  mate-themes   1.9.2-1
ii  mate-utils1.8.1+dfsg1-2+deb8u1
ii  pluma 1.8.1+dfsg1-2

Versions of packages mate-desktop-environment suggests:
ii  bsd-mailx [mail-reader]  8.1.2-0.20141216cvs-2
ii  iceweasel38.2.0esr-1~deb8u1
ii  kmail [mail-reader]  4:4.14.1-1
ii  mutt [mail-reader]   1.5.23-3
ii  network-manager-gnome0.9.10.0-2
ii  sylpheed [mail-reader]   3.5.0~beta1~r3426-1



--

DAS-NETZWERKTEAM
mike gabriel, herweg 7, 24357 fleckeby
fon: +49 (1520) 1976 148

GnuPG Key ID 0x25771B31
mail: mike.gabr...@das-netzwerkteam.de, http://das-netzwerkteam.de

freeBusy:
https://mail.das-netzwerkteam.de/freebusy/m.gabriel%40das-netzwerkteam.de.xfb


pgph6PadU3DNi.pgp
Description: Digitale PGP-Signatur


Bug#801572: [buildd-tools-devel] Bug#801572: sbuild-update -u not saved

2015-10-13 Thread Raphael Hertzog
Hi,

On Mon, 12 Oct 2015, Jérémy Lal wrote:
> doing sbuild-update -udcar sid-amd64-sbuild
> does update some packages.
> If i do it again, it does the same thing.
> Same for just -u.
> This is not happening with sbuild 0.65.2-1.1.
>
> [sid-amd64-sbuild]
> type=directory
> union-type=overlay

You are asking for an "overlay" chroot, so you want to update the source
of the chroot, not the chroot itself.

The correct command to use was always “sbuild-update [options]
source:sid-amd64-sbuild”.

At least that's my understanding and what my own chroot update scripts
have been doing for ages.

Cheers,
-- 
Raphaël Hertzog ◈ Debian Developer

Support Debian LTS: http://www.freexian.com/services/debian-lts.html
Learn to master Debian: http://debian-handbook.info/get/



Bug#801593: [pkg-go] Bug#801593: ratt does not find all reverse build dependencies

2015-10-13 Thread Michael Stapelberg
Thanks for the hint, I wasn’t aware of dose-ceve. When trying to run it, I
have some trouble getting it working, though:

$ dose-ceve -T debsrc -r 'golang-github-jacobsa-gcloud-dev' -G pkg
deb:///var/lib/apt/lists/ftp.ch.debian.org_debian_dists_testing_main_binary-amd64_Packages
debsrc:///var/lib/apt/lists/ftp.ch.debian.org_debian_dists_testing_main_source_Sources

The applications raised this exception : Option.No_value
$ dose-ceve --version
Build version 4.0.1

Can you explain what I’m doing wrong?

On Mon, Oct 12, 2015 at 1:05 PM, Johannes Schauer  wrote:

> Package: ratt
> Version: 0.0~git20150816.0.b060319-1
> Severity: wishlist
>
> Hi,
>
> ratt relies on finding all source packages that have the given binary
> package in their build dependencies. It seems that ratt is only able to
> find these reverse dependencies in very simple situations. In reality,
> ratt should also be able to work with:
>
>  - dependencies on virtual packages provided by the binary package in
>question
>  - indirect dependencies
>  - cross architecture dependencies and multiarch
>  - architecture restrictions
>  - version restrictions
>  - build profile restrictions
>
> The tool build-rdeps is using a similarly simple method as ratt
> currently seems to use to find reverse dependencies. In bug #797858 I
> explained how this simple method is not sufficient to properly find
> reverse build dependencies for nearly two thirds of all binary packages.
>
> The only tool I know of which allows to retrieve all reverse
> dependencies of an arbitrary source package is dose-ceve. Maybe the
> patch I supplied in #797858 for build-rdeps is enough to show how to use
> dose-ceve to retrieve all reverse build dependencies in ratt? Otherwise
> you could block this bug by #797858 and use build-rdeps in ratt once
> #797858 is fixed.
>
> Thanks!
>
> cheers, josch
>
> ___
> Pkg-go-maintainers mailing list
> pkg-go-maintain...@lists.alioth.debian.org
> http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-go-maintainers
>



-- 
Best regards,
Michael


Bug#801659: XML-Compile-Dumper and Perl 5.22

2015-10-13 Thread Niko Tyni
Hi Mark,

just a note in case you're not aware of the issue: your CPAN module
XML-Compile-Dumper can't currently be installed with Perl 5.22. This is
because it requires Data-Dump-Streamer which has compatibility problems:
 https://rt.cpan.org/Public/Bug/Display.html?id=102369

We'll be updating Debian testing/unstable to Perl 5.22 soonish, and
currently that means that the packages for Data-Dump-Streamer and
XML-Compile-Dumper need to be removed. These are tracked on the Debian
side as
 https://bugs.debian.org/787912
 https://bugs.debian.org/801659

Do you think XML-Compile-Dumper could be made to use another backend
or something?

Many thanks for your work on free software,
-- 
Niko Tyni   (Debian Perl Group)
nt...@debian.org



Bug#801347: [Reportbug-maint] Bug#801347: reportbug/querybts display mime encoded text instead of something humans parse

2015-10-13 Thread Sandro Tosi
On Sun, Oct 11, 2015 at 4:41 PM, Jakub Wilk  wrote:
> * Douglas Calvert , 2015-10-08, 16:59:
>>
>> $ querybts 773321
>>
>> <>
>> <>
>> What do you want to do now? [N|x|o|r|b|e|q|?]?
>> <>
>>
>> Followup 1 - must depend on the same irssi version it was built against
>>
>> Date: Wed, 17 Dec 2014 00:10:04 +0100
>> From: 
>> Subject: Re: Bug#773321: irssi-plugin-otr segfaults unexpectedly
>>
>>
>> Y29udHJvbDogdGFncyAtMSArIG1vcmVpbmZvCgpIaSBBbnRvaW5lLAoKT24gRGllbnN0YWcsIDE2LiBEZXplbWJlciAyMDE0LCBBbnRvaW5lIEJlYXVwcsOpIHdyb3RlOgo+IFNldmVyaXR5OiBjcml0aWNhbAoKPiB0aGUgb3RyIHBsdWdpbiBpcyBzZXZlcmx5IGRhbWFnZWQsIGJvdGggaW4gamVzc2llIGFuZAo+IHdoZWV6eS1iYWNrcG9ydHMuCj4gCj4gaW4gd2hlZXp5LCBpcnNzaSBjb21wbGV0ZWx5IGNyYXNoZXMgYWZ0ZXIgaSAiL2xvYWQgb3RyIi4gdGhpcyBpcyBldmVuCj4gd2l0aG91dCB0aGUgeG1wcCBwbHVnaW4gbG9hZGVkLCBzbyBpdCdzIGRpZmZlcmVudCBmcm9tICM0OTkyMjkuCgpJIGNhbm5vdCBjb25maXJtIHRoaXMsIGl0IHdvcmtzIGZvciBtZSBuaWNlbHkgYW5kIGRhaWx5IHNpbmNlIG1vcmUgdGhhbiBhIAp5ZWFyLiAoU28gaW4gYSB3YXkgSSdtIHRlbXB0ZWQgdG8gZG93bmdyYWRlIHRoaXMgYnVnLiBPbmNlIHRoZXJlIGFyZSAKYXV0b3JlbW92YWwgd2FybmluZ3MgSSdsbCBkbyBzby4pCgpJIG5ldmVyIHVzZSB0aGUgeG1wcCBwbHVnaW4gKG5vciBoYXZlIGl0IGluc3RhbGxlZCkuLi4KCgpjaGVlcnMsCglIb2xnZXI=
>
>
> Sounds similar to #799528.

indeed, but that bug is marked as fixed in python-debianbts/2.4 which
Douglas has installed. Bastian, do you want me to reassign this bug to
python-debianbts or are you already keeping track of this?


-- 
Sandro Tosi (aka morph, morpheus, matrixhasu)
My website: http://matrixhasu.altervista.org/
Me at Debian: http://wiki.debian.org/SandroTosi



Bug#801659: XML-Compile-Dumper and Perl 5.22

2015-10-13 Thread Niko Tyni
On Tue, Oct 13, 2015 at 10:52:23AM +0300, Niko Tyni wrote:

> We'll be updating Debian testing/unstable to Perl 5.22 soonish, and
> currently that means that the packages for Data-Dump-Streamer and
> XML-Compile-Dumper need to be removed.

Upstream responded to me privately, saying XML-Compile-Dumper
has very few users and can well be dropped from Debian if
necessary.
-- 
Niko Tyni   nt...@debian.org



Bug#799939: chromium: does not build / is not available for armhf

2015-10-13 Thread Riku Voipio
Hi,

With the following patch I got chromium for armhf built. This was with
arm64 machine in armhf chroot, so full 4G available. I assume for native
armhf 3/1 memsplit is needed.

Notice it needs a fix to objcopy/strip in binutils to handle stripping a > 2GB 
file.
I'm still working on cleaning up that patch.

Riku



Bug#799939: chromium: does not build / is not available for armhf

2015-10-13 Thread Riku Voipio
Hi,

this time with the patch.

Riku
diff -Nru chromium-browser-46.0.2490.13/debian/changelog chromium-browser-46.0.2490.13/debian/changelog
--- chromium-browser-46.0.2490.13/debian/changelog	2015-09-05 17:45:44.0 +
+++ chromium-browser-46.0.2490.13/debian/changelog	2015-10-13 08:26:24.0 +
@@ -1,3 +1,9 @@
+chromium-browser (46.0.2490.13-1.1) UNRELEASED; urgency=medium
+
+  * armhf build
+
+ -- Riku Voipio   Fri, 25 Sep 2015 18:07:49 +
+
 chromium-browser (46.0.2490.13-1) experimental; urgency=medium
 
   * New upstream beta release.
diff -Nru chromium-browser-46.0.2490.13/debian/control chromium-browser-46.0.2490.13/debian/control
--- chromium-browser-46.0.2490.13/debian/control	2015-09-05 17:44:49.0 +
+++ chromium-browser-46.0.2490.13/debian/control	2015-09-25 18:09:09.0 +
@@ -85,7 +85,7 @@
 Standards-Version: 3.9.6
 
 Package: chromium
-Architecture: i386 amd64
+Architecture: i386 amd64 armhf arm64
 Built-Using: ${Built-Using}
 Depends:
  ${misc:Depends},
@@ -106,7 +106,7 @@
  This package contains the web browser component.
 
 Package: chromium-dbg
-Architecture: i386 amd64
+Architecture: i386 amd64 armhf arm64
 Section: debug
 Priority: extra
 Built-Using: ${Built-Using}
@@ -135,7 +135,7 @@
  ro, ru, sk, sl, sr, sv, sw, ta, te, th, tr, uk, vi, zh-CN, zh-TW
 
 Package: chromedriver
-Architecture: i386 amd64
+Architecture: i386 amd64 armhf arm64
 Depends:
  ${misc:Depends},
  ${shlibs:Depends},
diff -Nru chromium-browser-46.0.2490.13/debian/patches/fix-clang-wanring chromium-browser-46.0.2490.13/debian/patches/fix-clang-wanring
--- chromium-browser-46.0.2490.13/debian/patches/fix-clang-wanring	1970-01-01 00:00:00.0 +
+++ chromium-browser-46.0.2490.13/debian/patches/fix-clang-wanring	2015-10-12 11:36:56.0 +
@@ -0,0 +1,17 @@
+Index: chromium-browser-46.0.2490.13/build/common.gypi
+===
+--- chromium-browser-46.0.2490.13.orig/build/common.gypi
 chromium-browser-46.0.2490.13/build/common.gypi
+@@ -2643,10 +2643,10 @@
+ '-Wno-deprecated-register',
+ 
+ # TODO(hans): Get this cleaned up, http://crbug.com/428099
+-'-Wno-inconsistent-missing-override',
++#'-Wno-inconsistent-missing-override',
+ 
+ # TODO(thakis): Enable this, crbug.com/507717
+-'-Wno-shift-negative-value',
++#'-Wno-shift-negative-value',
+   ],
+ },
+ 'includes': [ 'set_clang_warning_flags.gypi', ],
diff -Nru chromium-browser-46.0.2490.13/debian/patches/series chromium-browser-46.0.2490.13/debian/patches/series
--- chromium-browser-46.0.2490.13/debian/patches/series	2015-09-06 04:49:58.0 +
+++ chromium-browser-46.0.2490.13/debian/patches/series	2015-10-12 11:35:58.0 +
@@ -15,3 +15,4 @@
 system/clang.patch
 system/ffmpeg.patch
 fix.patch
+fix-clang-wanring
diff -Nru chromium-browser-46.0.2490.13/debian/rules chromium-browser-46.0.2490.13/debian/rules
--- chromium-browser-46.0.2490.13/debian/rules	2015-09-05 17:44:49.0 +
+++ chromium-browser-46.0.2490.13/debian/rules	2015-10-13 07:33:07.0 +
@@ -6,6 +6,8 @@
 # enable all build hardening flags
 export DEB_BUILD_MAINT_OPTIONS=hardening=+all
 
+DEB_HOST_ARCH ?= $(shell dpkg-architecture -qDEB_HOST_ARCH)
+
 # linker flags to avoid memory allocation issues on i386
 export LDFLAGS+=-Wl,--no-keep-memory -Wl,--reduce-memory-overheads -Wl,--hash-size=7919
 
@@ -15,6 +17,24 @@
 # treat all warnings as errors
 defines=werror=
 
+ifeq (armhf,$(DEB_HOST_ARCH))
+# non-NEON armv7 machines are rare and the benifit of NEON is major. Autodetection
+# didn't compile, so I suggest we enable NEON for the benefit of vast majority
+# use arm_use_neon=1 and arm_fpu=neon for speed
+defines += \
+sysroot= \
+arm_neon=1 \
+arm_use_neon=1 \
+use_cups=1 \
+v8_use_arm_eabi_hardfloat=true \
+arm_fpu=neon \
+arm_float_abi=hard \
+arm_thumb=1 \
+armv7=1 \
+remove_webcore_debug_symbols=1 \
+arm_version=7 
+endif
+
 # use clang instead of gcc
 defines+=clang=1
 defines+=clang_use_chrome_plugins=
@@ -134,8 +153,9 @@
 override_dh_fixperms:
 	dh_fixperms --exclude chrome-sandbox
 
+# readelf oom
 override_dh_strip:
-	dh_strip --dbg-package chromium-dbg
+	dh_strip -v --dbg-package chromium-dbg
 
 override_dh_gencontrol:
 	dh_gencontrol -- -VBuilt-Using="$(shell dpkg-query -f '$${source:Package} (= $${source:Version}), ' -W libjs-jquery libjs-jquery-flot)"


Bug#786727: crashes with segfault when drawLineH is called

2015-10-13 Thread John Millikin
I've uploaded version 0.2.12 to Hackage and my site with a fix for this
crash. It replaces the c2hs-based setters with a plain call to a C
function, which handles the struct initialization.

Version 0.2.12 also has unrelated changes to add new functionality. If
you'd prefer to cherrypick the fixes for this bug, they are:

* b44ae6e41bab47442d6fad8871d3f4e6e705aa40 to fix the crash.
* 2ac5b471a5d9a242a7591e8611d6d6385cbb2a89 to fix the build in c2hs<=0.18.0

On Sat, Jun 6, 2015 at 6:49 PM, John Millikin  wrote:

> I've verified the crash occurs when building with c2hs-0.25.2, and does
> not occur when building with c2hs-0.18.2.
>
> The generated code for withGlyph in 0.18.2 is:
>
> (\(CCharT ptr) val -> do {pokeByteOff ptr 0 (val::CULong)})
> (CCharT pBuf) cAttrs
> (\(CCharT ptr) val -> do {pokeByteOff ptr 8 (val::(CWString))})
> (CCharT pBuf) (wordPtrToPtr (fromIntegral (ord char)))
> io (CCharT pBuf)
>
> The generated code for withGlyph in 0.25.2 is:
>
> (\(CCharT ptr) val -> do {pokeByteOff ptr 0 (val :: CULong)})
> (CCharT pBuf) cAttrs
> (\(CCharT ptr) val -> do {copyArray (ptr `plusPtr` 8) (val ::
> (CWString)) 5}) (CCharT pBuf) (wordPtrToPtr (fromIntegral (ord char)))
> io (CCharT pBuf)
>
> The 0.25.2 code is definitely not going to work.
>
> Looking through the c2hs changelog, there are a number of
> suspicious-sounding entries that could be related:
>
> * [0.21.1] Fix treatment of arrays within structs [#115]
> * [0.21.1] Add default marshallers for C types [#83]
> * [0.22.1] Default marshallers for Char types [#98]
> * [0.24.1] Arrays in structuress bug [#123]
>
> My recommendation is to revert to an older c2hs version, because any
> package that uses c2hs to set the contents of an array is likely to be
> silently broken right now.
>
> Some time in the next few days, I will build a bunch of c2hs binaries and
> run that crash test to see which version in particular needs to be ifdef'd
> in haskell-ncurses.
>


Bug#801437: baobab is shown when trying to use caja in mate

2015-10-13 Thread Mike Gabriel

Control: forcemerge -1 #778302

Hi Andreas, hi Shirish,

On  Sa 10 Okt 2015 11:44:21 CEST, Andreas Henriksson wrote:


Control: reassign -1 mate-session-manager
Control: tags -1 + moreinfo

Hello shirish.

Thanks for your bug report.

On Sat, Oct 10, 2015 at 11:27:51AM +0530, shirish शिरीष wrote:

Package: baobab
Version: 3.18.1-1
Severity: normal

Dear Maintainer,

I installed baobab while running mate. I was under the impression that
baobab runs when I call it/use it explicitly and not run when I'm
trying to use a file-manager, in this case caja. Please let me know if
there is a way to help you. I looked at the man-page as well as the
upstream page but nothing jumped at me.


Please consider which package you report bugs against.
What you're currently reporting is that baobab work NOT A BUG! :P

I'm reassigning this bug report to MATE, but this means now this
bug reports misses all relevant meta-data added by reportbug.
Please followup to this bug report with that so the MATE maintainers
have the information they need to deal with this issue and remove
the moreinfo tag while doing so.

From what I can see the mate-session-manager sets the XDG_CURRENT_DESKTOP
environment variable, see:
http://codesearch.debian.net/results/XDG_CURRENT_DESKTOP%20package%3Amate-session-manager/page_0

... while at the same time it doesn't provide defaults.list et.al. in
the relevant location. This means one of the applications matching
the mime type will be used at "random" (and other kinds of unrelated
breakage from the rest of the missing files).

cf. gnome-session-common and xfce4-session


this issue has been on my list for quite a while... Unfortunately, I  
only discovered this during the freeze period of jessie (or even after  
that, can't remember exactly).


I am about to fix this in mate-session-manager the same way that it is  
done in gnome-session. Thanks for inspiration on this!




Look forward to clearing this up.


Me too. Please file bug reports against mate for mate issues in the future.
We're busy enough as it is on the Gnome side without having to also
work on fixing MATE.


@Shirish: with future releases of MATE 1.10, you can configure your  
default apps in /etc/mate/defaults.list



Regards,
Andreas Henriksson


Mike


--

DAS-NETZWERKTEAM
mike gabriel, herweg 7, 24357 fleckeby
fon: +49 (1520) 1976 148

GnuPG Key ID 0x25771B31
mail: mike.gabr...@das-netzwerkteam.de, http://das-netzwerkteam.de

freeBusy:
https://mail.das-netzwerkteam.de/freebusy/m.gabriel%40das-netzwerkteam.de.xfb


pgpfHnuRPgpco.pgp
Description: Digitale PGP-Signatur


Bug#778302: mate-desktop-environment: Places menu loads non-caja app

2015-10-13 Thread Mike Gabriel

Control: severity -1 important

Raising severity on this as it is really a bugging issue. Also in  
Debian jessie.


Mike

On  Di 13 Okt 2015 09:02:53 CEST, Mike Gabriel wrote:


Control: reassign -1 mate-session-manager

Hi all,

I am about to fix this issue. The fix will happen in bin:package  
mate-session-manager.


Mike

On  Mi 26 Aug 2015 02:59:20 CEST, Richard Jasmin wrote:


Package: mate-desktop-environment
Version: 1.8.0+9
Followup-For: Bug #778302

Thank you. Im glad someone is able to figure this one out. It was  
most annoying
getting baobab or some other thing like konqueror or dolphin  
instead of caja.


How did you figure this out?

Watch out for everything getting doubled on you.Nobody seems to  
have fixed that

one yet.



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

Kernel: Linux 3.16.0-4-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
Init: systemd (via /run/systemd/system)

Versions of packages mate-desktop-environment depends on:
ii  mate-desktop-environment-core  1.8.0+9

Versions of packages mate-desktop-environment recommends:
ii  atril 1.8.1+dfsg1-4
ii  desktop-base  8.0.2
ii  engrampa  1.8.1+dfsg1-1
ii  eom   1.8.0+dfsg1-4+b2
ii  ffmpegthumbnailer 2.0.8-dmo7
ii  galculator2.1.3-1
ii  mate-applets  1.8.1+dfsg1-3
ii  mate-icon-theme-faenza1.8.0+dfsg1-1
ii  mate-media1.8.0+dfsg1-3
ii  mate-notification-daemon  1.8.1-3
ii  mate-power-manager1.8.1+dfsg1-5
ii  mate-screensaver  1.8.1-2
ii  mate-system-monitor   1.8.0+dfsg1-2
ii  mate-themes   1.9.2-1
ii  mate-utils1.8.1+dfsg1-2+deb8u1
ii  pluma 1.8.1+dfsg1-2

Versions of packages mate-desktop-environment suggests:
ii  bsd-mailx [mail-reader]  8.1.2-0.20141216cvs-2
ii  iceweasel38.2.0esr-1~deb8u1
ii  kmail [mail-reader]  4:4.14.1-1
ii  mutt [mail-reader]   1.5.23-3
ii  network-manager-gnome0.9.10.0-2
ii  sylpheed [mail-reader]   3.5.0~beta1~r3426-1



--

DAS-NETZWERKTEAM
mike gabriel, herweg 7, 24357 fleckeby
fon: +49 (1520) 1976 148

GnuPG Key ID 0x25771B31
mail: mike.gabr...@das-netzwerkteam.de, http://das-netzwerkteam.de

freeBusy:
https://mail.das-netzwerkteam.de/freebusy/m.gabriel%40das-netzwerkteam.de.xfb


pgp7YbOemlJZj.pgp
Description: Digitale PGP-Signatur


Bug#801073: src:libidn: libidn needs gettext 0.19.3 or higher

2015-10-13 Thread Ondřej Surý
Hi Simon,

On Tue, Oct 13, 2015, at 10:25, Simon Josefsson wrote:
> Ondřej Surý  writes:
> 
> > Package: src:libidn
> > Version: 1.32-3
> > Severity: minor
> >
> > Hi,
> >
> > I am backporting some packages and found out that libidn requires
> > gettext 0.19.3 or higher.  Could you please declare this in B-D to
> > help backporters?
> 
> Hi.  Thanks for the report.  Libidn does not really require a modern
> gettext, but I bumped the version to 0.19.3 so that gettextize installs
> the latest m4 files.  I don't think you can tell gettext to use the
> latest M4 files but don't require the latest gettext.  Which gettext
> version do you have?  Maybe we can lower it a bit, it was raised
> arbitrarily and without any real problem prompting it.  We used to
> declare 0.18.3.

I am packaging our DNS servers just for latest Debian stable and latest
Ubuntu LTS, so 0.18.3 would be fine as it is the version in Ubuntu
Trusty.

0.18.1 would be even better as it is the version in Debian wheezy and
Ubuntu Precise, but it's not really needed for my purposes as it would
require to backport far more packages to pull gnutls28 in.

Cheers,
-- 
Ondřej Surý 
Knot DNS (https://www.knot-dns.cz/) – a high-performance DNS server



Bug#801665: bashdb: set0 and readc builtins do not build on non-linux

2015-10-13 Thread Nicholas Bamber
Package: bashdb
Version: 4.3.0.91+ds-4
Severity: minor

Dear Maintainer,

bashdb 4.3.0.91+ds-4 only builds on mon-linux because we turn
off compiling set0 and readc. They compile but fail to load.

There are three potential sources of the problem:
1. The set0.c and readc.c code.
2. The headers supplied by the bash-builtins package
3. Some inadequacies on the non-linux platform.

So I ran this experiment that points to the issue being 1. It can be reproduced
using the followig steps:

cp /usr/share/doc/bash-builtins/examples/loadables/hello.c .
gcc -DHAVE_CONFIG_H -I. -I..   -D_FORTIFY_SOURCE=2 -I /usr/include/bash/ -I 
/usr/include/bash//include -I/usr/include/bash//builtins  -fPIC -DPIC -g -O2 
-fstack-protector-strong -Wformat -Werror=format-security -c -o hello-hello.o 
`test -f 'hello.c' || echo './'`hello.c 
gcc  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security  
-Wl,-z,relro -o hello \
-shared hello-hello.o  
enable -f ./hello hello
hello

This should print "hello world" and it works on both linux and kfreebsd. So by 
trisecting the 
difference between hello.c on the one hand and set0.c/readc.c on the other we 
should 
be able to locate here the issue is. 

Versions of packages bashdb depends on:
ii  bash  4.3-11+b1
ii  libc6 2.19-18+deb8u1
ii  libreadline6  6.3-8+b3
ii  python2.7.9-1

bashdb recommends no packages.

bashdb suggests no packages.

-- no debconf information



Bug#801657: libdevmapper-dev: devmapper.pc has a private requirement on librt

2015-10-13 Thread Peter Rajnoha
On 10/13/2015 06:20 AM, Nick Black wrote:
> Package: libdevmapper-dev
> Version: 2:1.02.104-1
> Severity: important
> 
> Dear Maintainer,
> 
> Use of pkg-config with libdevmapper isn't working due to a
> Requires.private dependence on librt. There's no librt.pc file, so this
> breaks:
> 
> [skynet](0) $ pkg-config --print-requires-private devmapper
> Package librt was not found in the pkg-config search path.
> Perhaps you should add the directory containing `librt.pc'
> to the PKG_CONFIG_PATH environment variable
> Package 'librt', required by 'devmapper', not found
> [skynet](1) $
> 
> I think what you want here is a Libs.private line with -lrt, and to
> remove librt from the Requires.private. librt is not a "package" in the
> pkg-config world, and can't be used this way.

Yes, this was a bug in upstream lvm2. It's already fixed with:
https://git.fedorahosted.org/cgit/lvm2.git/commit/?id=fc35b6988d65fe3f11a3f668cd8f01fe3294b562

-- 
Peter



Bug#801347: [Reportbug-maint] Bug#801347: reportbug/querybts display mime encoded text instead of something humans parse

2015-10-13 Thread Sandro Tosi
control: reassign -1 python-debianbts

On Tue, Oct 13, 2015 at 10:07 AM, Bastian Venthur  wrote:
> It is related, but a new bug. Feel free to open a new bugreport if you
> want. I'm on it.

I'm just reassigning this one then, thx!

-- 
Sandro Tosi (aka morph, morpheus, matrixhasu)
My website: http://matrixhasu.altervista.org/
Me at Debian: http://wiki.debian.org/SandroTosi



Bug#801664: openssh-client: "ssh-keygen -f ... -R" proposed when hostkey doesn't match is interpreted by shells

2015-10-13 Thread Tomasz Buchert
Package: openssh-client
Version: 1:6.9p1-2
Severity: normal

Hi,
when host key does not match, the SSH client shows the following message
on my machine:

@@@
@WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED! @
@@@
IT IS POSSIBLE THAT SOMEONE IS DOING SOMETHING NASTY!
Someone could be eavesdropping on you right now (man-in-the-middle attack)!
It is also possible that a host key has just been changed.
The fingerprint for the ECDSA key sent by the remote host is
SHA256:b5E6hF7y8kdkILw9eHdLg3Jf7AhKE+iBcPFv+gnxnlo.
Please contact your system administrator.
Add correct host key in /home/user/.ssh/known_hosts to get rid of this
message.
Offending ECDSA key in /home/user/.ssh/known_hosts:650
  remove with:
  ssh-keygen -f "/home/user/.ssh/known_hosts" -R [localhost]:
ECDSA host key for [localhost]: has changed and you have requested
strict checking.
Host key verification failed.

(it happens quite often when I use VMs in VirtualBox and they use the same
port)

My problem is that when I copy-paste the line to *zsh* shell, I get:

[ /tmp ] $ ssh-keygen -f "/home/user/.ssh/known_hosts" -R [localhost]:
zsh: no matches found: [localhost]:

Obviously, that's because [] is interpreted by zsh (and maybe other shells too,
although bash is fine with that). This is likely to make problems with other
IPv6 addresses too.

My proposal is to modify the current patch to use '' instead, around the file
and the host. I think that '' ensures that the content between them is not
interpreted in any way.

The modified patch I attach here, does precisely that.

Cheers,
Tomasz



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

Kernel: Linux 4.2.0-1-amd64 (SMP w/4 CPU cores)
Locale: LANG=es_ES.utf8, LC_CTYPE=es_ES.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages openssh-client depends on:
ii  adduser   3.113+nmu3
ii  dpkg  1.18.3
ii  libc6 2.19-22
ii  libedit2  3.1-20150325-1
ii  libgssapi-krb5-2  1.13.2+dfsg-2
ii  libselinux1   2.3-2+b1
ii  libssl1.0.0   1.0.2d-1
ii  passwd1:4.2-3
ii  zlib1g1:1.2.8.dfsg-2+b1

Versions of packages openssh-client recommends:
ii  xauth  1:1.0.9-1

Versions of packages openssh-client suggests:
ii  keychain  2.8.1-0.1
pn  libpam-ssh
pn  monkeysphere  
ii  ssh-askpass   1:1.2.4.1-9
ii  ssh-askpass-fullscreen [ssh-askpass]  0.3-3.1
ii  ssh-askpass-gnome [ssh-askpass]   1:6.9p1-2

-- Configuration Files:
/etc/ssh/ssh_config changed [not included]

-- no debconf information
>From 68580f4a03088e52e1d680389a35655c85613c7a Mon Sep 17 00:00:00 2001
From: Scott Moser 
Date: Sun, 9 Feb 2014 16:10:03 +
Subject: Mention ssh-keygen in ssh fingerprint changed warning

Bug: https://bugzilla.mindrot.org/show_bug.cgi?id=1843
Bug-Ubuntu: https://bugs.launchpad.net/bugs/686607
Last-Update: 2015-09-08

Patch-Name: mention-ssh-keygen-on-keychange.patch
---
 sshconnect.c | 8 +++-
 1 file changed, 7 insertions(+), 1 deletion(-)

--- a/sshconnect.c
+++ b/sshconnect.c
@@ -1078,9 +1078,13 @@
 			error("%s. This could either mean that", key_msg);
 			error("DNS SPOOFING is happening or the IP address for the host");
 			error("and its host key have changed at the same time.");
-			if (ip_status != HOST_NEW)
+			if (ip_status != HOST_NEW) {
 error("Offending key for IP in %s:%lu",
 ip_found->file, ip_found->line);
+error("  remove with:");
+error("  ssh-keygen -f '%s' -R '%s'",
+ip_found->file, ip);
+			}
 		}
 		/* The host key has changed. */
 		warn_changed_key(host_key);
@@ -1088,6 +1092,8 @@
 		user_hostfiles[0]);
 		error("Offending %s key in %s:%lu", key_type(host_found->key),
 		host_found->file, host_found->line);
+		error("  remove with:");
+		error("  ssh-keygen -f '%s' -R '%s'", host_found->file, host);
 
 		/*
 		 * If strict host key checking is in use, the user will have


Bug#420716: Bend Linear COB LED- Alight New items

2015-10-13 Thread Alight
Dear =Manager,Alightcom=panyhere,recommendingNew cob 
Flexiblemodul=eforyouasbelowpictures.Power: 3w/15w/16w, Voltage: 3v-3.5v a=nd 
12v.Also,the=SizeandParameterofflexiblecobpanelscanbecustomizedaccording=toyourproductapplication.Gladtohe=arthatyou'reonthemarketforledlighting,andhopethatournewp=roductwillcatchyourattention.Samplecan=besentbyyourrequest.Moredetai=ls,welcometoinquire.Waittingf=oryourpromptreply,thanks.Bestregard=s
 =20 Bestregar=dsAlly 
AlightOptoelectronicIndustryCommerceCo.,LTDAddress:No.110,XiaolanRoad,XiaolanTown,ZhongshanCity=,GuangdongProvince,China.Tel:+86-760-22107179(Directline)
  Fax:+86-760-22102131Web:www.alight.hk 
=http://yaneng.en.alibaba.com/Skype:alightopto

Bug#707851: Debian Menu Systems : Implementation of the TC decision

2015-10-13 Thread Wouter Verhelst
On Tue, Sep 29, 2015 at 11:39:47AM +0200, Didier 'OdyX' Raboud wrote:
> Le mardi, 29 septembre 2015, 02.10:01 Guillem Jover a écrit :
> > Wow, this is such terrible policy… So we have supporters of the XDG
> > format, and supporters of the menu format. Some of those would and
> > have accepted files of their non-preferred format in their packages,
> > some have outright refused them. But now they have to choose between
> > one of them, because they can no longer ship both.
> 
> One of the points of the TC decision is precisely to avoid a "free 
> choice" between the two formats. The first point of that decision is to 
> adopt ba679bff76f5b9152f43d5bc901b9b3aad257479 in the Debian Policy, 
> which contains:
> > Packages shipping applications that comply with minimal requirements
> > described below for integration with desktop environments should
> > register these applications in the desktop menu, (…)
> 
> Applications "should" be registered in the FreeDesktop menu if that 
> makes sense. The second point of the TC decision (which phrasing to be 
> committed in the Debian Policy we're currently discussing) is to forbid 
> applications that do provide XDG menu entries to _also_ provide "trad 
> menu" entries.

So, I'm with Guillem on this one.

Saying that the FreeDesktop menu should be the default and "source"
format, I wholeheartedly support that choice. Making it clear that not
shipping a .menu file is not a bug, and that it is a bug (not
necessarily RC, but still) for a window manager to not look at the fdo
menu? Sure, great policy.

But _forbidding_ maintainers who want to from shipping a second file, if
that somehow makes the experience of menu users better than what the fdo
menu would have given them? Sorry, but that seems petty and silly.

I don't think I'll encounter the issue, seen as none of my packages ship
any menu entry, let alone a .desktop file, today. But yeah, it's
something I think I'll blatantly ignore if/when the time comes.

-- 
It is easy to love a country that is famous for chocolate and beer

  -- Barack Obama, speaking in Brussels, Belgium, 2014-03-26



Bug#801572: [buildd-tools-devel] Bug#801572: sbuild-update -u not saved

2015-10-13 Thread Ralf Jung
Hi,

> The correct command to use was always “sbuild-update [options]
> source:sid-amd64-sbuild”.
> 
> At least that's my understanding and what my own chroot update scripts
> have been doing for ages.

I am having the same problem: Calling sbuild-update is not persistent,
if I call it again, it performs the same update again.
This used to work some weeks ago. I didn't change my setup:

[experimental-amd64-sbuild]
type=file
description=Debian experimental/amd64 autobuilder
file=/var/lib/sbuild/experimental-amd64.tar.gz
groups=root,sbuild
root-groups=root,sbuild
profile=sbuild

Even adding the "source:" prefix does not help, the changes are still
thrown away. I definitely did not add the "source:" prefix earlier, and
it still used to work.
Actually, even the docs at  don't
mention that prefix.

Kind regards,
Ralf



Bug#801572: [buildd-tools-devel] Bug#801572: sbuild-update -u not saved

2015-10-13 Thread Gaudenz Steinlin

Hi

Raphael Hertzog  writes:

> Hi,
>
> On Mon, 12 Oct 2015, Jérémy Lal wrote:
>> doing sbuild-update -udcar sid-amd64-sbuild
>> does update some packages.
>> If i do it again, it does the same thing.
>> Same for just -u.
>> This is not happening with sbuild 0.65.2-1.1.
>>
>> [sid-amd64-sbuild]
>> type=directory
>> union-type=overlay
>
> You are asking for an "overlay" chroot, so you want to update the source
> of the chroot, not the chroot itself.
>
> The correct command to use was always “sbuild-update [options]
> source:sid-amd64-sbuild”.
>
> At least that's my understanding and what my own chroot update scripts
> have been doing for ages.

I just ran into the same problem and this does not solve it. Attached is the
debug output (std output and error) from running sbuild-update with the
following command:
/usr/bin/sbuild-update -u source:sid-amd64 --debug
  ^^

If I rerun the same command again it downloads the same pdiffs again, so
apparently the source chroot was not updated. The same happens when
updating packages with -d or -g. The packages are installed, but not
into the source chroot.

sbuild-update seems to use a non source:* chroot even if asked to do so.
I can also confirm this by the fact that it creates an LVM snapshot for
the chroot session. My chroots are LVM snapshot based:

[sid-amd64]
type=lvm-snapshot
device=/dev/moebius/sid-amd64-chroot
lvm-snapshot-options=--size 2G
description=Debian sid/amd64 autobuilder
groups=root,sbuild
root-groups=root,sbuild
source-root-groups=root,sbuild
command-prefix=/var/cache/ccache-sbuild/sbuild-setup,eatmydata

This used to work in the past even without the explicit "source:"
qualifier. But it should at least work with it.

Gaudenz


signature.asc
Description: PGP signature


Bug#801549: gitg: new upstream release available (3.18.0)

2015-10-13 Thread Ghislain Vaillant

On 13/10/15 00:10, Dmitry Smirnov wrote:

On Monday 12 October 2015 12:31:31 Ghislain Vaillant wrote:

And is actively developed upstream. AFAIK, the 0.2.x branch is
deprecated and won't receive any bugfix / feature.


This is true although I'm not happy with support of 3.x either...
As a matter of fact 0.2.x stopped receiving updates long before 3.x was
announced. Yet even now 0.2.x is more mature than 3.x...


Yet, the reality is that upstream has moved on and Debian is desperately 
holding onto to a deprecated, albeit still working, version.



I'll just point that very few of the GNOME-3 apps have reached
feature-parity with their corresponding GNOME-2 / MATE version, which
makes me question whether an upload to testing / unstable will *ever*
happen. At least, according to your standards.


As I've said, I think/hope that eventually Gitg-3 will be ready for
"unstable". Upload to "unstable" may happen sooner if something (e.g. library
upgrade) break Gitg-2 beyond repair...


So no precise timeline, judging by the usage of "think" "hope" and 
"may". Waiting for things to break does not sound like a healthy reason 
to upgrade, does it?



Though I do not expect Gitg-3 performance to improve so speed/slowness is not
a blocker...


I have seen a few upstream bugs investigating the startup-time problems.


We are also diverging from the official statement of Debian unstable
providing "the latest and greatest" [1].

[1] https://wiki.debian.org/DebianUnstable


I do not recognise a conflict here. IMHO it is more important to ensure
usability of packages in "unstable". Perhaps you are right and having both
(Gitg-2 and Gitg-3) at the same time could be a solution in a short term...


Gitg 3.17.x is "usable", just not by your standards.


Anyway, you made your position very clear and I believe further
discussion would be a wasted effort on my end.


Actually I'm almost with you. Upgrade to new Gitg-3 is inevitable. We are
merely disagree regarding when to do it. :)


Right now, and please correct me if I am mistaken, but *you* are making 
the decision for *all* Debian users to stick with old and no-longer 
maintained software.


Sure, there has been an updated version in experimental, and for quite a 
while now. But looking back to our discussion, this version *may or may 
not* transition to unstable, again based on *your* personal 
considerations of how "ready" the software is, not the package itself.


Since there is absolutely *no guarantee* that upstream will ever address 
all your concerns, this issue is a plain dead-end, isn't it?


Would a better course of action rather be to update the software and 
file bugs with appropriate severity regarding the missing features *you* 
believe are missing, like any regular Debian user would do? Let users' 
feedback do the talking instead of deciding for them?


Best regards,
Ghis



Bug#778302: mate-desktop-environment: Places menu loads non-caja app

2015-10-13 Thread Mike Gabriel

Control: tags -1 patch
Control: tags -1 - moreinfo

This is the proposed fix...

http://anonscm.debian.org/cgit/pkg-mate/mate-session-manager.git/commit/?id=7ad7d85fa6fd603c0ebfb2558c6bb9a37f06fc70

Mike

On  Di 13 Okt 2015 09:13:12 CEST, Mike Gabriel wrote:


Control: severity -1 important

Raising severity on this as it is really a bugging issue. Also in  
Debian jessie.


Mike

On  Di 13 Okt 2015 09:02:53 CEST, Mike Gabriel wrote:


Control: reassign -1 mate-session-manager

Hi all,

I am about to fix this issue. The fix will happen in bin:package  
mate-session-manager.


Mike

On  Mi 26 Aug 2015 02:59:20 CEST, Richard Jasmin wrote:


Package: mate-desktop-environment
Version: 1.8.0+9
Followup-For: Bug #778302

Thank you. Im glad someone is able to figure this one out. It was  
most annoying
getting baobab or some other thing like konqueror or dolphin  
instead of caja.


How did you figure this out?

Watch out for everything getting doubled on you.Nobody seems to  
have fixed that

one yet.



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

Kernel: Linux 3.16.0-4-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
Init: systemd (via /run/systemd/system)

Versions of packages mate-desktop-environment depends on:
ii  mate-desktop-environment-core  1.8.0+9

Versions of packages mate-desktop-environment recommends:
ii  atril 1.8.1+dfsg1-4
ii  desktop-base  8.0.2
ii  engrampa  1.8.1+dfsg1-1
ii  eom   1.8.0+dfsg1-4+b2
ii  ffmpegthumbnailer 2.0.8-dmo7
ii  galculator2.1.3-1
ii  mate-applets  1.8.1+dfsg1-3
ii  mate-icon-theme-faenza1.8.0+dfsg1-1
ii  mate-media1.8.0+dfsg1-3
ii  mate-notification-daemon  1.8.1-3
ii  mate-power-manager1.8.1+dfsg1-5
ii  mate-screensaver  1.8.1-2
ii  mate-system-monitor   1.8.0+dfsg1-2
ii  mate-themes   1.9.2-1
ii  mate-utils1.8.1+dfsg1-2+deb8u1
ii  pluma 1.8.1+dfsg1-2

Versions of packages mate-desktop-environment suggests:
ii  bsd-mailx [mail-reader]  8.1.2-0.20141216cvs-2
ii  iceweasel38.2.0esr-1~deb8u1
ii  kmail [mail-reader]  4:4.14.1-1
ii  mutt [mail-reader]   1.5.23-3
ii  network-manager-gnome0.9.10.0-2
ii  sylpheed [mail-reader]   3.5.0~beta1~r3426-1



--

DAS-NETZWERKTEAM
mike gabriel, herweg 7, 24357 fleckeby
fon: +49 (1520) 1976 148

GnuPG Key ID 0x25771B31
mail: mike.gabr...@das-netzwerkteam.de, http://das-netzwerkteam.de

freeBusy:
https://mail.das-netzwerkteam.de/freebusy/m.gabriel%40das-netzwerkteam.de.xfb


pgpG0r9NFBZF7.pgp
Description: Digitale PGP-Signatur


Bug#800660: gnome-keyring: crashes iceweasel when logging into a password-protected website

2015-10-13 Thread Raphael Hertzog
On Tue, 13 Oct 2015, Raphael Hertzog wrote:
> On Fri, 02 Oct 2015, Sebastian Dröge wrote:
> > Same here, without customized startup scripts and happens with dbus
> > -user-session and without.
> 
> One thing I just noticed, when iceweasel freezes, I can kill the
> gnome-keyring started by the session (which appears as
> "usr/bin/gnome-keyring-daemon --daemonize --login") and it will unfreeze
> iceweasel and the next time that I login in a password-protected website
> it will respawn a gnome keyring of its own (and ask me my password to
> unlock the keyring) and things will work fine from there.

Forget this last part, that was only true because I had downgraded
gnome-keyring to version 3.16...

Cheers,
-- 
Raphaël Hertzog ◈ Debian Developer

Support Debian LTS: http://www.freexian.com/services/debian-lts.html
Learn to master Debian: http://debian-handbook.info/get/



Bug#788418: Now resuming the packaging

2015-10-13 Thread Ghislain Vaillant

Hi Gianfranco,

Always a pleasure to have you as my reviewer for this package.

I will fix your comments during the week. I will also take this 
opportunity to apply a few of the improvement you suggested on other 
reviews.


So more work is needed, such as:

- *not* to use a custom symlink for jquery on doxygen generated HTML docs,
- split -arch and -indep targets, this package fits this requirement 
very nicely,

- apply stricter hardening.

Most of which I have already completed.

Could you expand on the comment wrt the transition slot? This is 
something I am not familiar with.


Many thanks,
Ghis



Bug#800660: gnome-keyring: crashes iceweasel when logging into a password-protected website

2015-10-13 Thread Raphael Hertzog
On Fri, 02 Oct 2015, Sebastian Dröge wrote:
> Same here, without customized startup scripts and happens with dbus
> -user-session and without.

One thing I just noticed, when iceweasel freezes, I can kill the
gnome-keyring started by the session (which appears as
"usr/bin/gnome-keyring-daemon --daemonize --login") and it will unfreeze
iceweasel and the next time that I login in a password-protected website
it will respawn a gnome keyring of its own (and ask me my password to
unlock the keyring) and things will work fine from there.

The newly spawned gnome-keyring looks like this:
/usr/bin/gnome-keyring-daemon --start --foreground --components=secret

Cheers,
-- 
Raphaël Hertzog ◈ Debian Developer

Support Debian LTS: http://www.freexian.com/services/debian-lts.html
Learn to master Debian: http://debian-handbook.info/get/



Bug#787912: libdata-dump-streamer-perl: FTBFS with perl 5.22

2015-10-13 Thread Niko Tyni
clone 787912 -1 -2 -3 -4 -5
retitle -1 libxml-compile-dumper-perl: depends on libdata-dump-streamer-perl, 
broken by perl 5.22
retitle -2 libtest-aggregate-perl: relax dependencies on 
libdata-dump-streamer-perl, broken by perl 5.22
retitle -3 libmoosex-runnable-perl: relax dependencies on 
libdata-dump-streamer-perl, broken by perl 5.22
retitle -4 libdevel-repl-perl: relax dependencies on 
libdata-dump-streamer-perl, broken by perl 5.22
retitle -5 libuniversal-ref-perl: relax build-dependency on 
libdata-dump-streamer-perl, broken by perl 5.22
reassign -1 libxml-compile-dumper-perl 0.14-1
reassign -2 libtest-aggregate-perl 0.372-1
reassign -3 libmoosex-runnable-perl 0.09-1
reassign -4 libdevel-repl-perl 1.003027-1
reassign -5 libuniversal-ref-perl 0.14-2
thanks

On Sat, Jun 06, 2015 at 10:24:35AM +0100, Dominic Hargreaves wrote:
> Source: libdata-dump-streamer-perl
> Version: 2.38-2
> Severity: important
> User: debian-p...@lists.debian.org
> Usertags: perl-5.22-transition
> Forwarded: https://rt.cpan.org/Public/Bug/Display.html?id=102369
> 
> This package FTBFS with perl 5.22:

There's no action on the upstream ticket(s), so it looks like this module
won't get updated for 5.22. I think we should look at minimizing the
cost of its removal.

The binary reverse dependencies are
  libxml-compile-dumper-perl
  libtest-aggregate-perl
  libmoosex-runnable-perl
  libdevel-repl-perl

and additionally there's one more package build depending on it:
  libuniversal-ref-perl

All of these except libxml-compile-dumper-perl have Data-Dump-Streamer as
an optional dependency, so I think we could just relax the dependencies
to recommendations.

The libxml-compile-dumper-perl package clearly needs Data-Dump-Streamer.
It doesn't have any reverse dependencies itself, so it may just have to
go with libxml-compile-dumper-perl if needed.

I'm cloning separate bugs for all the affected packages.
-- 
Niko Tyni   nt...@debian.org



Bug#707851: Debian Menu Systems : Implementation of the TC decision

2015-10-13 Thread Didier 'OdyX' Raboud
Le mardi, 13 octobre 2015, 08.55:07 Wouter Verhelst a écrit :
> But _forbidding_ maintainers who want to from shipping a second file,
> if that somehow makes the experience of menu users better than what
> the fdo menu would have given them? Sorry, but that seems petty and
> silly.

For context, the exact phrasing of the TC decision is "packages 
providing a .desktop file shall not also provide a menu file for the 
same application."

This translates to "this situation constitutes a bug", but doesn't 
specify an explicit patch for the Debian Policy (aka doesn't explicitly 
lay down the severity of the bug). I'd argue that in the absence of a 
new Debian Policy version incorporating the TC decision, such situations 
would be 'serious' bugs. Can we work towards ironing an adequate 
wording? 

> I don't think I'll encounter the issue, seen as none of my packages
> ship any menu entry, let alone a .desktop file, today. But yeah, it's
> something I think I'll blatantly ignore if/when the time comes.

Threatening to "blatantly ignore" the Debian Policy isn't terribly 
helpful.

Cheers,
OdyX



Bug#783454: radiotray not supporting a radio

2015-10-13 Thread Elías Alejandro
Hello Damian,

First all I'm sorry by the long delay.
On Mon, Apr 27, 2015 at 04:55:14AM -0300, Damian Nardelli wrote:
> Package: radiotray
> Version: 0.7.3-3
> Severity: normal
> 
> Dear Maintainer,
> 
> I'm trying to listen to the following radio http://201.212.5.144/aspen
> The problem is when I try to turn it on, there is no audio and radiotray pops
> up an error saying "gstdecodebin2.c(3576): gst_decode_bin_expose ():
> /GstPlayBin2:player/GstURIDecodeBin:uridecodebin1/GstDecodeBin2:decodebin21:
> no suitable plugins found".
...
> 
> I found that there's an opened bug in the upstream's webpage:
> https://bitbucket.org/carlmig/radio-tray/issue/221ou/bbc-radio-no-sound and 
> the
> user's workaround was to install gstreamer-ffmpeg (from an ubuntu PPA) which 
> is
> not available in Debian Jessie.
> Any workaround in Debian Jessie for this?
> 

You are right, Jessie has no got gstreamer-ffmepg, the quick and dirty way 
could be
try to install gstreamer-ffmpeg from the last oldstable Debian repository named 
Wheezy
adding this line in your sources.list:

deb http://mirrors.kernel.org/debian/ wheezy main

and then install as usual then comment it because no longer will be used.
You can also look at [1] to check out how it could be.

> I'm listening to this radio now through mplayer (not radiotray), and it works
> fine.
> 
> Thanks in advance,
> DN

[1] 
http://unix.stackexchange.com/questions/60555/debian-is-it-possible-safe-to-install-packages-from-an-older-version-of-the-rep


Regards,

Elías Alejandro



Bug#766102: marked as done (libcache-cache-perl: nondeterministic FTBFS: failure in t/6_test_size_aware_memory_cache.t)

2015-10-13 Thread Niko Tyni
On Tue, Apr 28, 2015 at 10:46:32PM +0300, Niko Tyni wrote:
> On Thu, Nov 06, 2014 at 04:37:17PM +0100, gregor herrmann wrote:
> > On Wed, 05 Nov 2014 13:24:52 +0200, Niko Tyni wrote:
> > 
> > > >  libcache-cache-perl (1.07-2) unstable; urgency=medium
> > > >  .
> > > >* Team upload.
> > > >* Add patch from Petr Písař to fix nondeterministic test failures.
> > > >  (Closes: #766102)
> > > 
> > > Still seems to happen with 1.07-2.
> > > 
> > >  
> > > http://ci.debian.net/data/packages/unstable/amd64/libc/libcache-cache-perl/20141101_214223.autopkgtest.log
> > 
> > Thanks for monitoring the autopkgtest results!
> > 
> > I've updated https://rt.cpan.org/Ticket/Display.html?id=88418 now.
> 
> Upstream included the patches in 1.08, which I've just uploaded.
> I disabled the two flapping tests in debian/tests/skip-smoke
> for now, as there were no further related changes wrt. 1.07-2.

Also seen on the reproducible.d.n CI system:

  
https://reproducible.debian.net/logs/unstable/amd64/libcache-cache-perl_1.08-1.build2.log.gz

Test Summary Report
---
t/7_test_size_aware_shared_memory_cache.t (Wstat: 0 Tests: 48 Failed: 1)
  Failed test:  45

-- 
Niko Tyni   nt...@debian.org



Bug#801666: git-dpm: Need a way to set the upstream branch names from within the repository

2015-10-13 Thread Raphaël Hertzog
Package: git-dpm
Version: 0.9.1-1
Severity: important

Hello,

Since the Python team now mandates git-dpm usage, I have to look into how
to use it for my own packages and I immediately came across this
limitation. The only way to configure the name of the various branches is
through "git config". However git configuration cannot be shared via the
repository and this means that a user with a fresh clone will not have the
required configuration...

In my case, I maintain python-django which uses a DEP-14 compliant
branch layout (http://dep.debian.net/deps/dep14/) and each packaging
branch (debian/) is associated the corresponding upstream branch
(upstream/1.7.x, upstream/1.8.x, etc.).

I want to be able to set the upstream branch from a config file in debian/
much like git-buildpackage offers:
$ cat debian/gbp.conf 
[DEFAULT]
upstream-branch=upstream/1.7.x
debian-branch=debian/sid

-- System Information:
Debian Release: stretch/sid
  APT prefers squeeze-lts
  APT policy: (500, 'squeeze-lts'), (500, 'oldoldstable'), (500, 'unstable'), 
(500, 'testing'), (500, 'stable'), (500, 'oldstable'), (1, 'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 4.2.0-1-amd64 (SMP w/4 CPU cores)
Locale: LANG=fr_FR.utf8, LC_CTYPE=fr_FR.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages git-dpm depends on:
ii  dpkg-dev  1.18.3
ii  git   1:2.6.1-1

Versions of packages git-dpm recommends:
ii  bzip2   1.0.6-8
ii  devscripts  2.15.9
ii  sensible-utils  0.0.9
ii  xz-utils5.1.1alpha+20120614-2.1

Versions of packages git-dpm suggests:
ii  pristine-tar  1.33
ii  sharutils 1:4.15.2-1

-- no debconf information



Bug#788418: Now resuming the packaging

2015-10-13 Thread Gianfranco Costamagna
Hi,

you should open a bug against release.debian.org

https://bugs.debian.org/cgi-bin/pkgreport.cgi?users=release.debian@packages.debian.org;tag=transition

and ask for a transition slot

test if the reverse dependencies still build fine
https://release.debian.org/transitions/html/auto-nfft.html
(maybe you have some other dependencies, please look at
apt-cache rdepends library
reverse-depends -b src:package
outputs)

cheers,

G.





Il Martedì 13 Ottobre 2015 9:42, Ghislain Vaillant  ha 
scritto:
Hi Gianfranco,

Always a pleasure to have you as my reviewer for this package.

I will fix your comments during the week. I will also take this 
opportunity to apply a few of the improvement you suggested on other 
reviews.

So more work is needed, such as:

- *not* to use a custom symlink for jquery on doxygen generated HTML docs,
- split -arch and -indep targets, this package fits this requirement 
very nicely,
- apply stricter hardening.

Most of which I have already completed.

Could you expand on the comment wrt the transition slot? This is 
something I am not familiar with.

Many thanks,
Ghis



Bug#781629: mate-panel: help not finding document

2015-10-13 Thread Mike Gabriel

Control: close -1
Control: fixed -1 1.10.0-1

On  Di 31 Mär 2015 23:11:12 CEST, Alessandro Barbieri wrote:


Package: mate-panel
Version: 1.8.1+dfsg1-3
Severity: normal

Dear Maintainer,



   * What led up to the situation?

Clicking help on the clock/calendar applet

   * What was the outcome of this action?

Yelp telling me that the URI <>   
points to a non valid page


   * What outcome did you expect instead?

Reading the help.



The mate-user-guide files are now shipped in the individual packages  
(i.e. those packages that they actually document).


There also now is a mate-user-guide base package (shipped with  
src:package mate-desktop).


If you still find missing documentation for individual MATE  
components, please file bugs against the software components where you  
experience the missing help files.


Please note, mate-user-guide files will not be available in Debian  
jessie (MATE 1.8), but only in Debian stretch (MATE 1.10 as of now).


Mike
--

DAS-NETZWERKTEAM
mike gabriel, herweg 7, 24357 fleckeby
fon: +49 (1520) 1976 148

GnuPG Key ID 0x25771B31
mail: mike.gabr...@das-netzwerkteam.de, http://das-netzwerkteam.de

freeBusy:
https://mail.das-netzwerkteam.de/freebusy/m.gabriel%40das-netzwerkteam.de.xfb


pgp2zzNC2AEoR.pgp
Description: Digitale PGP-Signatur


Bug#801073: src:libidn: libidn needs gettext 0.19.3 or higher

2015-10-13 Thread Simon Josefsson
Ondřej Surý  writes:

> Package: src:libidn
> Version: 1.32-3
> Severity: minor
>
> Hi,
>
> I am backporting some packages and found out that libidn requires
> gettext 0.19.3 or higher.  Could you please declare this in B-D to
> help backporters?

Hi.  Thanks for the report.  Libidn does not really require a modern
gettext, but I bumped the version to 0.19.3 so that gettextize installs
the latest m4 files.  I don't think you can tell gettext to use the
latest M4 files but don't require the latest gettext.  Which gettext
version do you have?  Maybe we can lower it a bit, it was raised
arbitrarily and without any real problem prompting it.  We used to
declare 0.18.3.

/Simon

>  autoreconf -f -i
>  autopoint: *** The AM_GNU_GETTEXT_VERSION declaration in your configure.ac
>  file requires the infrastructure from gettext-0.19.3 but 
> this version
>  is older. Please upgrade to gettext-0.19.3 or newer.
>  autopoint: *** Stop.
>  autoreconf: autopoint failed with exit status: 1
>
> Cheers,
> Ondrej
>
> -- System Information:
> Debian Release: 8.2
>   APT prefers stable-updates
>   APT policy: (500, 'stable-updates'), (500, 'stable')
> Architecture: amd64 (x86_64)
>
> Kernel: Linux 3.19.0-18-generic (SMP w/24 CPU cores)
> Locale: LANG=en_DK.UTF-8, LC_CTYPE=en_DK.UTF-8 (charmap=UTF-8)
> Shell: /bin/sh linked to /bin/dash
> Init: systemd (via /run/systemd/system)
>


signature.asc
Description: PGP signature


Bug#801317: wheezy-pu: package postgresql-9.1/9.1.19-0+deb7u1

2015-10-13 Thread Christoph Berg
Re: Adam D. Barratt 2015-10-10 <1444502159.22375.10.ca...@adam-barratt.org.uk>
> This appears to have been rejected by dak:
> 
> adsb@franck:~$ cat 
> queue/reject/postgresql-9.1_9.1.19-0+deb7u1_source.changes.reason 
> 
> postgresql-9.1_9.1.19-0+deb7u1.dsc: Refers to non-existing file 
> 'postgresql-9.1_9.1.19-0+deb7u1.debian.tar.gz'
> Perhaps you need to include the file in your upload?

Interesting. No idea why the .dsc didn't get rebuilt (xz vs. gz).

Reuploaded now.

Mit freundlichen Grüßen,
Christoph Berg
-- 
Senior Berater, Tel.: +49 (0)21 61 / 46 43-187
credativ GmbH, HRB Mönchengladbach 12080, USt-ID-Nummer: DE204566209
Hohenzollernstr. 133, 41061 Mönchengladbach
Geschäftsführung: Dr. Michael Meskes, Jörg Folz, Sascha Heuer
pgp fingerprint: 5C48 FE61 57F4 9179 5970  87C6 4C5A 6BAB 12D2 A7AE



Bug#800723: intermittent segfault on file drag and drop

2015-10-13 Thread Javier Cantero
Additional info:

This bug seems to be related to upstream bug #12253:
https://bugzilla.xfce.org/show_bug.cgi?id=12253

So I've downgraded glib-2.0 to the previous testing package
(libglib2.0-0_2.44.1-1.1_amd64.deb from snapshot.d.o) and I found that
the bug is not present with that version. Then I upgraded to glib 2.46
again, and the bug reappears.



Bug#801549: gitg: new upstream release available (3.18.0)

2015-10-13 Thread Dmitry Smirnov
On Tuesday 13 October 2015 10:03:49 Ghislain Vaillant wrote:
> Gitg 3.17.x is "usable", just not by your standards.

It is not usable to me. I can't review diffs affecting many files and 
(although I won't hold Gitg just for this reason) I can't wait for 10 seconds 
every time I start it before it opens. (I'm glad you've never seen this 
problem but it exists).


> Right now, and please correct me if I am mistaken, but *you* are making
> the decision for *all* Debian users to stick with old and no-longer
> maintained software.

Yes, right now I'm making this decision in favour of unmaintained but working 
software comparing to maintained but severely impaired alpha/beta quality 
software. This is not a vote and I stand for my decision. I will eventually 
reconsider but for now I'll stay on this position for some time.
Do you realise that you are asking me to take away the tool (gitg-2) that I'm 
using maybe 100 times a day without suitable replacement? I'm not ready to do 
such disservice to myself and to Debian users.

Gitg-2 still _works_ better than Gitg-3. Your argument is already won -- new 
UI or not Gitg-3 will eventually replace Gitg-2 but not just yet.

If you are so desperate to switch Debian to Gitg-3 then I'd suggest to 
convince upstream to work on proper implementations of diff view and blame 
view.
Alternatively if you are prepared to maintain Gitg-3 and libgit2-glib then 
you can prepare source upload for "gitg3" package and convince FTP-masters to 
accept once you find a sponsor for it.

Also please remember to fix FTBFS in 3.18.0 because in it's curernt state it 
can't be uploaded at all.

And please don't play arguments by suggesting that I'm waiting for Gitg-2 to 
break. That's not what I meant. :(

-- 
Regards,
 Dmitry Smirnov.

---

In questions of science, the authority of a thousand is not worth the
humble reasoning of a single individual.
-- Galileo Galilei


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


Bug#800622: game-data-packager: Quake 2 & 3 (GOG), make-template output

2015-10-13 Thread Alexandre Detiste
control: clone -1 -2
control: retitle -1 support Quake2 GOG package
control: retitle -2 support Quake3 GOG package

This is a lot of work and Q2 support need an extra trick for the .ogg files,
so splitting this bug in two.



Bug#801615: dosbox: Please allow dosbox to satisfy dependencies from other architectures (Multi-Arch: foreign)

2015-10-13 Thread Graham Inggs
Hi Jens

> Therefore I ask you to make dosbox multi-arch aware by changing it from
> the implicit "Multi-Arch: no" to "Multi-Arch: foreign". This allows
> dosbox to satisfy dependencies from another arch, but doesn't change
> anything in dosbox (e.g. its files continue to be installed to the same
> places as before). See attached patch, which I successfully built and
> tested on amd64. No special dependencies or build-dependencies are
> needed in order to use Multi-Arch: foreign.

This sounds reasonable.  I'll do it.

Regards
Graham



Bug#801593: [pkg-go] Bug#801593: ratt does not find all reverse build dependencies

2015-10-13 Thread Johannes Schauer
Hi,

Quoting Michael Stapelberg (2015-10-13 09:53:33)
> Thanks for the hint, I wasn’t aware of dose-ceve. When trying to run it, I
> have some trouble getting it working, though:
> 
> $ dose-ceve -T debsrc -r 'golang-github-jacobsa-gcloud-dev' -G pkg
> deb:///var/lib/apt/lists/ftp.ch.debian.org_debian_dists_testing_main_binary-amd64_Packages
> debsrc:///var/lib/apt/lists/ftp.ch.debian.org_debian_dists_testing_main_source_Sources
> 
> The applications raised this exception : Option.No_value
> $ dose-ceve --version
> Build version 4.0.1
> 
> Can you explain what I’m doing wrong?

you have to add the option --deb-native-arch=amd64

I'll see how I can improve the error message upstream to be more descriptive
about what it is missing.

Thanks!

cheers, josch


signature.asc
Description: signature


Bug#801674: youtube-dl: Only audio downloaded for PrBqr6nNzNY

2015-10-13 Thread David Purton
Package: youtube-dl
Version: 2015.06.04.1-1
Severity: normal

Dear Maintainer,

Only audio is downloaded for this youtube video:

https://www.youtube.com/watch?v=PrBqr6nNzNY

Thank,

David

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

Kernel: Linux 4.3.0-rc4-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_AU.UTF-8, LC_CTYPE=en_AU.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages youtube-dl depends on:
ii  python2.7.9-1
ii  python-pkg-resources  18.3.1-2
pn  python:any

Versions of packages youtube-dl recommends:
ii  curl7.44.0-2
ii  ffmpeg  7:2.8-1
ii  mplayer2 [mplayer]  2.0-728-g2c378c7-4+b2
pn  rtmpdump
ii  wget1.16.3-3

youtube-dl suggests no packages.

-- no debconf information



Bug#801600: apt-listbugs: Base64 encoded emails bodies should be encoded before being shown

2015-10-13 Thread Sandro Tosi
> However, apt-listbugs does not display bug reports directly.
> It relies on querybts to do so.

try upgrading python-debianbts and report if this still happens.

-- 
Sandro Tosi (aka morph, morpheus, matrixhasu)
My website: http://matrixhasu.altervista.org/
Me at Debian: http://wiki.debian.org/SandroTosi



Bug#801347: [Reportbug-maint] Bug#801347: reportbug/querybts display mime encoded text instead of something humans parse

2015-10-13 Thread Bastian Venthur
It is related, but a new bug. Feel free to open a new bugreport if you
want. I'm on it.


Cheers,

Bastian

Am 13.10.2015 um 10:52 schrieb Sandro Tosi:
> On Sun, Oct 11, 2015 at 4:41 PM, Jakub Wilk  wrote:
>> * Douglas Calvert , 2015-10-08, 16:59:
>>>
>>> $ querybts 773321
>>>
>>> <>
>>> <>
>>> What do you want to do now? [N|x|o|r|b|e|q|?]?
>>> <>
>>>
>>> Followup 1 - must depend on the same irssi version it was built against
>>>
>>> Date: Wed, 17 Dec 2014 00:10:04 +0100
>>> From: 
>>> Subject: Re: Bug#773321: irssi-plugin-otr segfaults unexpectedly
>>>
>>>
>>> Y29udHJvbDogdGFncyAtMSArIG1vcmVpbmZvCgpIaSBBbnRvaW5lLAoKT24gRGllbnN0YWcsIDE2LiBEZXplbWJlciAyMDE0LCBBbnRvaW5lIEJlYXVwcsOpIHdyb3RlOgo+IFNldmVyaXR5OiBjcml0aWNhbAoKPiB0aGUgb3RyIHBsdWdpbiBpcyBzZXZlcmx5IGRhbWFnZWQsIGJvdGggaW4gamVzc2llIGFuZAo+IHdoZWV6eS1iYWNrcG9ydHMuCj4gCj4gaW4gd2hlZXp5LCBpcnNzaSBjb21wbGV0ZWx5IGNyYXNoZXMgYWZ0ZXIgaSAiL2xvYWQgb3RyIi4gdGhpcyBpcyBldmVuCj4gd2l0aG91dCB0aGUgeG1wcCBwbHVnaW4gbG9hZGVkLCBzbyBpdCdzIGRpZmZlcmVudCBmcm9tICM0OTkyMjkuCgpJIGNhbm5vdCBjb25maXJtIHRoaXMsIGl0IHdvcmtzIGZvciBtZSBuaWNlbHkgYW5kIGRhaWx5IHNpbmNlIG1vcmUgdGhhbiBhIAp5ZWFyLiAoU28gaW4gYSB3YXkgSSdtIHRlbXB0ZWQgdG8gZG93bmdyYWRlIHRoaXMgYnVnLiBPbmNlIHRoZXJlIGFyZSAKYXV0b3JlbW92YWwgd2FybmluZ3MgSSdsbCBkbyBzby4pCgpJIG5ldmVyIHVzZSB0aGUgeG1wcCBwbHVnaW4gKG5vciBoYXZlIGl0IGluc3RhbGxlZCkuLi4KCgpjaGVlcnMsCglIb2xnZXI=
>>
>>
>> Sounds similar to #799528.
> 
> indeed, but that bug is marked as fixed in python-debianbts/2.4 which
> Douglas has installed. Bastian, do you want me to reassign this bug to
> python-debianbts or are you already keeping track of this?
> 
> 

-- 
Dr. Bastian Venthur  http://venthur.de
Debian Developer venthur at debian org



Bug#801649: git-dpm: generated patch header is unsuitable when commit message encoding mismatches

2015-10-13 Thread Daniel Stender
Experienced locally but also found e.g. here:
https://sources.debian.net/src/python-django/1.7.10-1/debian/patches/02_disable-sources-in-sphinxdoc.diff/

"From:" is UTF-8.

DS

-- 
4096R/DF5182C8
46CB 1CA8 9EA3 B743 7676 1DB9 15E0 9AF4 DF51 82C8
LPI certified Linux admin (LPI000329859 64mz6f7kt4)
http://www.danielstender.com/blog/



Bug#751005: new hg doesn't seem to be enough to build clisp for arm*

2015-10-13 Thread Christoph Egger
Hi!

  The current hg snapshot I've uploaded to experimental yesterday does
not seem to build as-is on arm* still.

  Christoph



Bug#801672: libgirepository1.0-dev is not Multi-Arch compatible

2015-10-13 Thread Francois Gouget
Package: libgirepository1.0-dev
Version: 1.46.0-1
Severity: normal

Dear Maintainer,

The libgirepository1.0-dev development package is not multiarch compatible.
As a result the amd64 version conflicts with the i386 one which makes it
impossible to install both, making it impossible to develop 32 bit
applications using this library on a 64 bit system.

For instance this makes it impossible to build both the 32 bit and 64 bit
versions of libharfbuzz-dev on the same system.


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

Kernel: Linux 4.1.0-2-amd64 (SMP w/8 CPU cores)
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages libgirepository1.0-dev depends on:
ii  gir1.2-freedesktop 1.46.0-1
ii  gir1.2-glib-2.01.46.0-1
ii  gobject-introspection  1.46.0-1
ii  libffi-dev 3.2.1-3
ii  libgirepository-1.0-1  1.46.0-1
ii  libglib2.0-dev 2.46.0-2

libgirepository1.0-dev recommends no packages.

Versions of packages libgirepository1.0-dev suggests:
pn  libgirepository1.0-doc  

-- no debconf information



Bug#787896: Upstream said WONTFIX

2015-10-13 Thread Pietro Battiston
I also was hit by this problem. Two remarks:

- I am afraid this is WONTFIX (or at least RedHat thinks so:
  https://bugzilla.redhat.com/show_bug.cgi?id=1180709), because it was
  an intentional change... but you can maybe try to open a bug upstream
  raising the issue (though I doubt that they will listen).

- I was able to solve the problem for me by just changing the buttons
  layout:

gsettings set org.gnome.desktop.wm.preferences button-layout \ ":close"

  Now evince is able to go half-screen on my 1366x768 monitor (but not
  on my 1280x1024 one). You can certainly shrink a bit more by also
  removing the "close" button and/or by switching theme (see
  https://bbs.archlinux.org/viewtopic.php?id=189333 ) but it will be
  very hard to get down half of a 1024 screen.

(BTW: Peter, as far as I know Okular or Zathura could work for you.)

Pietro



Bug#749331: spice: Stop building spicec, patch for update to 0.12.6 included

2015-10-13 Thread Liang Guo
On Fri, Oct 9, 2015 at 4:19 PM, Michael Tokarev  wrote:

> Liang, would you like me to take over the package(s), at least some of
> them, as I did almost all recent uploads (except the NMUs)? I'm talking
> about spice and spice-protocol especially, since I've no expirience
> whatsoever with other stuff (don't even know which other spice-related
> packages exists).
I'm very glad that you can take over spice related packages, in the last
two years, I found I have almost no time working on Debian and related
works, I even consider resign from Debian, but finally decide stay in,
hoping some day I can have free time.

spice-gtk is another large part of spice project, it provides the client side
of spice, would you like takeover it too ?

>
> Also, which libcacard update are you talking about?  It is a new library,
> currently provided by qemu package, but in upstream qemu we finally
> separated the two and it is now a separate project hosted in the same
> place as spice.  Its packaging is almost ready on my machine, I just
> need to complete d/copyright file.  Both versions of libcacard will
> work with current spice (which only uses headers from libcacard, btw).

For you are the primary maintainer of qemu, it would be easy to maintain
libcacard. If others maintain libcacard, the relationship with qemu will be
hard to deal with.

except libcacard, spice depends on some little utilities: usbredir and
spice-vdagent, currently maintained by me. hope you can adopt them
together.

Thanks,
-- 
Liang Guo
http://guoliang.me/



Bug#801674: youtube-dl: Only audio downloaded for PrBqr6nNzNY

2015-10-13 Thread David Purton
Slight modification:

I can download both the audio and video if I specify the format. It's
just when left to choose the format itself that you get audio only.

Perhaps something to do with the video.

But still unexpected behaviour.

David

-- 
David Purton
dcpur...@marshwiggle.net
 
For the eyes of the LORD range throughout the earth to
strengthen those whose hearts are fully committed to him.
 2 Chronicles 16:9a


signature.asc
Description: PGP signature


Bug#788418: Now resuming the packaging

2015-10-13 Thread Ghislain Vaillant

On 13/10/15 10:33, Mattia Rizzolo wrote:

On Tue, Oct 13, 2015 at 08:57:27AM +, Gianfranco Costamagna wrote:

Hi,

you should open a bug against release.debian.org

https://bugs.debian.org/cgi-bin/pkgreport.cgi?users=release.debian@packages.debian.org;tag=transition

and ask for a transition slot

test if the reverse dependencies still build fine
https://release.debian.org/transitions/html/auto-nfft.html
(maybe you have some other dependencies, please look at
apt-cache rdepends library
reverse-depends -b src:package
outputs)


More at https://wiki.debian.org/Teams/ReleaseTeam/Transitions



According to Mattia's link, I should be in step 1 of the recommended 
workflow:


"Upload your new version to experimental (and have it clear NEW)"

Requesting a transition slot happens way further the line it seems, or 
am I missing something?


Ghis



Bug#801600: apt-listbugs: Base64 encoded emails bodies should be encoded before being shown

2015-10-13 Thread Sandro Tosi
control: forcemerge 801347 -1

On Tue, Oct 13, 2015 at 10:24 AM, Adam Sjøgren  wrote:
> Sandro writes:
>
>> try upgrading python-debianbts and report if this still happens.
>
>   $ dpkg -l python-debianbts | grep ^ii
>   ii  python-debianbts 2.5.1all  Python interface to Debian's 
> Bug Tracking System
>   $ querybts -u text 801585
>   Retrieving report #801585 from Debian bug tracking system...
>
>   Original report - python-debianbts: get_bugs interface is broken
>
>   Date: Mon, 12 Oct 2015 15:07:50 +0530
>   From: Ritesh Raj Sarraf 
>   Subject: python-debianbts: get_bugs interface is broken
>
>   
> UGFja2FnZTogcHl0aG9uLWRlYmlhbmJ0cwpWZXJzaW9uOiAyLjUKU2V2ZXJpdHk6IGdyYXZlCgpIZWxsby
>   [etc etc etc]
>
> It still does.

ok then, merging with the other bug against python-debianbts

-- 
Sandro Tosi (aka morph, morpheus, matrixhasu)
My website: http://matrixhasu.altervista.org/
Me at Debian: http://wiki.debian.org/SandroTosi



Bug#801667: git-dpm offers no way to merge between different packaging branches

2015-10-13 Thread Raphaël Hertzog
Package: git-dpm
Version: 0.9.1-1
Severity: normal

Still discovering git-dpm, I tried to do something basic:
- make a packaging change in debian/sid (adding debian/README.source)
- switch to debian/experimental
- merge debian/sid into it to get the latest packaging changes

But this doesn't work at all because debian/sid contains all the upstream
patches applied and it generates lots of conflicts.  When the patches are
not applied, I might have to cleanup debian/patches after the merge but at
least the merge worked fine and I can make sure that I have integrated all my
packaging changes... (I have dpkg-mergechangelogs configured too)

So the only solution that I have right now is to cherry pick packaging
changes from one version to the other and hope to not forget something...
and this will not work easily either if my changes contain a one-line
modification to debian/changelog (describing the change) as what you
usually get when you're used to use "dch && debcommit".

So "git-dpm" should offer a way to merge packaging branches:
- avoiding conflict on upstream files
- avoiding conflict on unchanged patches in debian/patches (right now the
  commit id and and the blob ids differ and generate conflicts)

I'm not sure how to best achieve this though.

-- System Information:
Debian Release: stretch/sid
  APT prefers squeeze-lts
  APT policy: (500, 'squeeze-lts'), (500, 'oldoldstable'), (500, 'unstable'), 
(500, 'testing'), (500, 'stable'), (500, 'oldstable'), (1, 'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 4.2.0-1-amd64 (SMP w/4 CPU cores)
Locale: LANG=fr_FR.utf8, LC_CTYPE=fr_FR.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages git-dpm depends on:
ii  dpkg-dev  1.18.3
ii  git   1:2.6.1-1

Versions of packages git-dpm recommends:
ii  bzip2   1.0.6-8
ii  devscripts  2.15.9
ii  sensible-utils  0.0.9
ii  xz-utils5.1.1alpha+20120614-2.1

Versions of packages git-dpm suggests:
ii  pristine-tar  1.33
ii  sharutils 1:4.15.2-1

-- no debconf information



Bug#801600: apt-listbugs: Base64 encoded emails bodies should be encoded before being shown

2015-10-13 Thread Adam Sjøgren
Sandro writes:

> try upgrading python-debianbts and report if this still happens.

  $ dpkg -l python-debianbts | grep ^ii
  ii  python-debianbts 2.5.1all  Python interface to Debian's 
Bug Tracking System
  $ querybts -u text 801585
  Retrieving report #801585 from Debian bug tracking system...

  Original report - python-debianbts: get_bugs interface is broken

  Date: Mon, 12 Oct 2015 15:07:50 +0530
  From: Ritesh Raj Sarraf 
  Subject: python-debianbts: get_bugs interface is broken

  
UGFja2FnZTogcHl0aG9uLWRlYmlhbmJ0cwpWZXJzaW9uOiAyLjUKU2V2ZXJpdHk6IGdyYXZlCgpIZWxsby
  [etc etc etc]

It still does.



Bug#788418: Now resuming the packaging

2015-10-13 Thread Mattia Rizzolo
On Tue, Oct 13, 2015 at 08:57:27AM +, Gianfranco Costamagna wrote:
> Hi,
> 
> you should open a bug against release.debian.org
> 
> https://bugs.debian.org/cgi-bin/pkgreport.cgi?users=release.debian@packages.debian.org;tag=transition
> 
> and ask for a transition slot
> 
> test if the reverse dependencies still build fine
> https://release.debian.org/transitions/html/auto-nfft.html
> (maybe you have some other dependencies, please look at
> apt-cache rdepends library
> reverse-depends -b src:package
> outputs)

More at https://wiki.debian.org/Teams/ReleaseTeam/Transitions

-- 
regards,
Mattia Rizzolo

GPG Key: 66AE 2B4A FCCF 3F52 DA18  4D18 4B04 3FCD B944 4540  .''`.
more about me:  http://mapreri.org  : :'  :
Launchpad user: https://launchpad.net/~mapreri  `. `'`
Debian QA page: https://qa.debian.org/developer.php?login=mattia  `-


signature.asc
Description: PGP signature


Bug#801669: libharfbuzz-dev is not Multi-Arch compatible

2015-10-13 Thread Francois Gouget
Package: libharfbuzz-dev
Version: 1.0.1-1
Severity: normal

Dear Maintainer,

The libharfbuzz-dev development package is not multiarch compatible.
As a result the amd64 version conflicts with the i386 one which makes it
impossible to install both, making it impossible to develop 32 bit
applications using this library on a 64 bit system.


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

Kernel: Linux 4.1.0-2-amd64 (SMP w/8 CPU cores)
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages libharfbuzz-dev depends on:
ii  libharfbuzz-gobject0  1.0.1-1
ii  libharfbuzz-icu0  1.0.1-1
ii  libharfbuzz0b 1.0.1-1

libharfbuzz-dev recommends no packages.

libharfbuzz-dev suggests no packages.

-- no debconf information



Bug#801673: ITP -- Arabic script font for West African languages

2015-10-13 Thread Daniel Glassey
Package: wnpp
Severity: wishlist
X-Debbugs-CC: pkg-fonts-de...@lists.alioth.debian.org

Package name: fonts-sil-harmattan
Version: 1.00
Upstream Author: SIL International http://scripts.sil.org/Support
URL: http://scripts.sil.org/Harmattan
License: Open Font License 1.1 with Reserved Font Names "Harmattan",
"Andika", "SIL" and "Fouta"
Description: Arabic script font for West African languages

Harmattan, named after the trade winds that blow during the winter in West
Africa, is designed in a Warsh style to suit the needs of languages using
the Arabic script in West Africa.

The font does not cover the full Unicode Arabic repertoire. It only
supports  characters known to be used by languages in West Africa.

This font makes use of state-of-the-art font technologies to support
complex  typographic issues. Font smarts are implemented using OpenType and
Graphite technologies.

This font provides a simplified rendering of Arabic script, using basic
connecting glyphs but not including a wide variety of additional ligatures
or contextual alternates (only the required lam-alef ligatures). This
simplified style is often preferred for clarity, especially in non-Arabic
languages, but may be considered unattractive in more traditional and
literate communities.


Bug#799861: One more case of source-is-missing false positive with Django 1.8.5

2015-10-13 Thread Raphael Hertzog
I get this with python-django_1.8.5-1.dsc

P: python-django source: source-contains-prebuilt-javascript-object 
django/contrib/admin/static/admin/js/SelectFilter2.js line length is 360 
characters (>256)
E: python-django source: source-is-missing 
django/contrib/admin/static/admin/js/SelectFilter2.js

But the file is its own source code. It has comments, it's not minified at all.
Yes some of the lines are very long. That's all...

Cheers,
-- 
Raphaël Hertzog ◈ Debian Developer

Support Debian LTS: http://www.freexian.com/services/debian-lts.html
Learn to master Debian: http://debian-handbook.info/get/



Bug#801670: speech-dispatcher: Hangs and does no longer take speech from Orca until killed

2015-10-13 Thread Mario Lang
Package: speech-dispatcher
Version: 0.8-7
Severity: important

I am using Orca with Speech-Dispatcher, and just had speech output hung
completely.
Restarting Orca and even the complete X11 session did not help.

I had to kill the speech-dispatcher process running under my user
manually.
The process looked something like:

/usr/bin/speech-dispatcher --spawn --socket-path
/run/user/1000/speech-dispatcher/speechd.sock --communication-method
unix_socket --port 6560

This process was not automatically cleaned up.

I am not sure what is the culprit here.  Orca or Speech-Dispatcher.
In any case, the rogue process should at least have been killed when the
X11 session was restarted.  This did not happen.

This is actually a rather serious bug for those that only rely on speech
synthesis to access their computer.  It was relatively easy for me as a
braille and speech user, to clean this up by hand.  However, I can
imagine this being a real show stopper if speech is your only means of
output from the computer.

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

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

Versions of packages speech-dispatcher depends on:
ii  adduser  3.113+nmu3
ii  libc62.19-22
ii  libdotconf0  1.3-0.2
ii  libespeak1   1.48.04+dfsg-1
ii  libflite11.4-release-12
ii  libglib2.0-0 2.46.0-2
ii  libltdl7 2.4.2-1.11
ii  libspeechd2  0.8-7
ii  lsb-base 9.20150917
ii  speech-dispatcher-audio-plugins  0.8-7

Versions of packages speech-dispatcher recommends:
ii  pulseaudio  7.0-1

Versions of packages speech-dispatcher suggests:
pn  libttspico-utils
pn  speech-dispatcher-doc-cs
pn  speech-dispatcher-festival  

-- no debconf information

-- 
Mario Lang
Graz University of Technology
IT Services - Computing
Steyrergasse 30/1, 8010 Graz, Austria - Europe
Phone: +43 316 873 6897
Mobile: +43 664 60 873 6897
Email: ml...@tugraz.at
www.zid.tugraz.at



Bug#801572: [buildd-tools-devel] Bug#801572: sbuild-update -u not saved

2015-10-13 Thread Gaudenz Steinlin

And here goes the attachment...

D: Setting Config=Sbuild::ConfBase=HASH(0x2668058)
D: Setting Session ID=
D: Setting Chroot ID=/
D: Setting Defaults=HASH(0x3851e00)
D: Setting Split=1
D: Setting Split=0
D: Setting Config=Sbuild::ConfBase=HASH(0x2668058)
D: Setting Chroots=HASH(0x3868008)
Found schroot chroot: :jessie-amd64
  Aliases 
  Location 
  Name jessie-amd64
  Namespace 
  Priority 0
  Session Purged 0
Found schroot chroot: :jessie-amd64-local
  Aliases 
  Location 
  Name jessie-amd64-local
  Namespace 
  Priority 0
  Session Purged 0
Found schroot chroot: :jessie-amd64-local-tmpfs
  Aliases 
  Location 
  Name jessie-amd64-local-tmpfs
  Namespace 
  Priority 0
  Session Purged 0
Found schroot chroot: :jessie-amd64-tmpfs
  Aliases 
  Location 
  Name jessie-amd64-tmpfs
  Namespace 
  Priority 0
  Session Purged 0
Found schroot chroot: :jessie-i386
  Aliases 
  Location 
  Name jessie-i386
  Namespace 
  Priority 0
  Session Purged 0
Found schroot chroot: :jessie-i386-local
  Aliases 
  Location 
  Name jessie-i386-local
  Namespace 
  Priority 0
  Session Purged 0
Found schroot chroot: :jessie-i386-local-tmpfs
  Aliases 
  Location 
  Name jessie-i386-local-tmpfs
  Namespace 
  Priority 0
  Session Purged 0
Found schroot chroot: :jessie-i386-tmpfs
  Aliases 
  Location 
  Name jessie-i386-tmpfs
  Namespace 
  Priority 0
  Session Purged 0
Found schroot chroot: :sid-amd64
  Aliases 
  Location 
  Name sid-amd64
  Namespace 
  Priority 0
  Session Purged 0
Found schroot chroot: :sid-amd64-local
  Aliases 
  Location 
  Name sid-amd64-local
  Namespace 
  Priority 0
  Session Purged 0
Found schroot chroot: :sid-amd64-local-tmpfs
  Aliases 
  Location 
  Name sid-amd64-local-tmpfs
  Namespace 
  Priority 0
  Session Purged 0
Found schroot chroot: :sid-amd64-tmpfs
  Aliases 
  Location 
  Name sid-amd64-tmpfs
  Namespace 
  Priority 0
  Session Purged 0
Found schroot chroot: :sid-i386
  Aliases 
  Location 
  Name sid-i386
  Namespace 
  Priority 0
  Session Purged 0
Found schroot chroot: :sid-i386-tmpfs
  Aliases 
  Location 
  Name sid-i386-tmpfs
  Namespace 
  Priority 0
  Session Purged 0
Found schroot chroot: :squeeze-amd64
  Aliases 
  Location 
  Name squeeze-amd64
  Namespace 
  Priority 0
  Session Purged 0
Found schroot chroot: :squeeze-amd64-local
  Aliases 
  Location 
  Name squeeze-amd64-local
  Namespace 
  Priority 0
  Session Purged 0
Found schroot chroot: :squeeze-amd64-tmpfs
  Aliases 
  Location 
  Name squeeze-amd64-tmpfs
  Namespace 
  Priority 0
  Session Purged 0
Found schroot chroot: :squeeze-amd64-tmpfs-local
  Aliases 
  Location 
  Name squeeze-amd64-tmpfs-local
  Namespace 
  Priority 0
  Session Purged 0
Found schroot chroot: :wheezy-amd64
  Aliases 
  Location 
  Name wheezy-amd64
  Namespace 
  Priority 0
  Session Purged 0
Found schroot chroot: :wheezy-amd64-local
  Aliases 
  Location 
  Name wheezy-amd64-local
  Namespace 
  Priority 0
  Session Purged 0
Found schroot chroot: :wheezy-amd64-local-tmpfs
  Aliases 
  Location 
  Name wheezy-amd64-local-tmpfs
  Namespace 
  Priority 0
  Session Purged 0
Found schroot chroot: :wheezy-amd64-tmpfs
  Aliases 
  Location 
  Name wheezy-amd64-tmpfs
  Namespace 
  Priority 0
  Session Purged 0
Found schroot chroot: :wheezy-i386
  Aliases 
  Location 
  Name wheezy-i386
  Namespace 
  Priority 0
  Session Purged 0
Found schroot chroot: :wheezy-i386-local
  Aliases 
  Location 
  Name wheezy-i386-local
  Namespace 
  Priority 0
  Session Purged 0
Found schroot chroot: :wheezy-i386-local-tmpfs
  Aliases 
  Location 
  Name wheezy-i386-local-tmpfs
  Namespace 
  Priority 0
  Session Purged 0
Found schroot chroot: :wheezy-i386-tmpfs
  Aliases 
  Location 
  Name wheezy-i386-tmpfs
  Namespace 
  Priority 0
  Session Purged 0
Found schroot chroot: :jessie-amd64
  Aliases 
  Location 
  Name jessie-amd64
  Namespace 
  Priority 0
  Session Purged 0
Found schroot chroot: :jessie-i386
  Aliases 
  Location 
  Name jessie-i386
  Namespace 
  Priority 0
  Session Purged 0
Found schroot chroot: :sid-amd64
  Aliases 
  Location 
  Name sid-amd64
  Namespace 
  Priority 0
  Session Purged 0
Found schroot chroot: :sid-i386
  Aliases 
  Location 
  Name sid-i386
  Namespace 
  Priority 0
  Session Purged 0
Found schroot chroot: :squeeze-amd64
  Aliases 
  Location 
  Name squeeze-amd64
  Namespace 
  Priority 0
  Session Purged 0
Found schroot chroot: :wheezy-amd64
  Aliases 
  Location 
  Name wheezy-amd64
  Namespace 
  Priority 0
  Session Purged 0
Found schroot chroot: :wheezy-amd64-local
  Aliases 
  Location 
  Name wheezy-amd64-local
  Namespace 
  Priority 0
  Session Purged 0
Found schroot chroot: :wheezy-i386
  Aliases 
  Location 
  Name wheezy-i386
  Namespace 
  Priority 0
  Session Purged 0
D: Setting Chroots=HASH(0x3871b98)
D: Setting Config=Sbuild::ConfBase=HASH(0x2668058)
D: Setting Session ID=
D: Setting Chroot ID=chroot:sid-amd64
D: Setting Defaults=HASH(0x38522f8)
D: Setting Chroots=Sbuild::ChrootInfoSchroot=HASH(0x3867f30)

Bug#800003: Acknowledgement (samba-common-bin: samba-tool classic update w/LDAP - parsing error)

2015-10-13 Thread Mgr. Peter Tuharsky
If You don't intend to do the patching, please, could You at least point
me to a recommended way of patching the distributional Samba (some kind
of howto etc...)?



Bug#801668: git-dpm: Should create the upstream tag when importing the upstream tarball

2015-10-13 Thread Raphaël Hertzog
Package: git-dpm
Version: 0.9.1-1
Severity: wishlist

It looks git-dpm will only create the upstream tag with "git-dpm tag" and
this operation can only be called when you want to tag a released package.

However when I work on a new upstream release, it might take some time
until the new release is ready for release and it would be nice if I
the upstream/ tag was already available for use in various
git commands (even though I can also use the tip of the corresponding
upstream branch).

Furthermore since git-dpm offers no command to build & tag the package
it looks like that I will keep using "gbp buildpackage" to build my
package from a clean state and its --git-tag option will only create the
tag for the package release, not for the upstream release. The net result
is that I will likely forget to run "git-dpm tag" and I will miss the
upstream tags.

So it would be nice if the upstream tags could be created sooner
as part of "git-dpm import-new-upstream".

-- System Information:
Debian Release: stretch/sid
  APT prefers squeeze-lts
  APT policy: (500, 'squeeze-lts'), (500, 'oldoldstable'), (500, 'unstable'), 
(500, 'testing'), (500, 'stable'), (500, 'oldstable'), (1, 'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 4.2.0-1-amd64 (SMP w/4 CPU cores)
Locale: LANG=fr_FR.utf8, LC_CTYPE=fr_FR.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages git-dpm depends on:
ii  dpkg-dev  1.18.3
ii  git   1:2.6.1-1

Versions of packages git-dpm recommends:
ii  bzip2   1.0.6-8
ii  devscripts  2.15.9
ii  sensible-utils  0.0.9
ii  xz-utils5.1.1alpha+20120614-2.1

Versions of packages git-dpm suggests:
ii  pristine-tar  1.33
ii  sharutils 1:4.15.2-1

-- no debconf information



Bug#801528: lintian: package-contains-timestamped-gzip false positive

2015-10-13 Thread Jakub Wilk

Hi Bill!

* Bill Allombert , 2015-10-11, 22:10:

The tag is emitted only if the timestamp is after the changelog.

Then maybe this test could be indicated in the lintian-info output ?


Right, we should document it in the tag description.

I try to fix debian-policy... I have made a lot of progress, but I 
still get


W: debian-policy: package-contains-timestamped-gzip 
usr/share/doc/debian-policy/changelog.gz
which this heuristic cannot deal with.


This looks like a true positive to me. The changelog is stored 
uncompressed in the source package, and only compressed at build time.


--
Jakub Wilk



Bug#801685: [INTL:es] Spanish translation of the debconf template postsrsd

2015-10-13 Thread Camaleón
Package: postsrsd
Severity: wishlist
Tags: patch l10n

Hello,

You can find enclosed the Spanish translation template to be uploaded
with the latest package build.

Greetings,

-- 
Camaleón 
# postsrsd po-debconf translation to Spanish
# Copyright (C) 2015 Software in the Public Interest
# This file is distributed under the same license as the postsrsd package.
#
# Changes:
# - Initial translation
# Camaleón , 2015
#
# - Updates
#
#
# Traductores, si no conocen el formato PO, merece la pena leer la
# documentación de gettext, especialmente las secciones dedicadas a este
# formato, por ejemplo ejecutando:
# info -n '(gettext)PO Files'
# info -n '(gettext)Header Entry'
#
# Equipo de traducción al español, por favor lean antes de traducir
# los siguientes documentos:
#
# - El proyecto de traducción de Debian al español
# http://www.debian.org/intl/spanish/
# especialmente las notas y normas de traducción en
# http://www.debian.org/intl/spanish/notas
#
# - La guía de traducción de po's de debconf:
# /usr/share/doc/po-debconf/README-trans
# o http://www.debian.org/intl/l10n/po-debconf/README-trans
#
msgid ""
msgstr ""
"Project-Id-Version: postsrsd\n"
"Report-Msgid-Bugs-To: posts...@packages.debian.org\n"
"POT-Creation-Date: 2015-09-30 06:57+0200\n"
"PO-Revision-Date: 2015-10-04 17:20+0200\n"
"Last-Translator: Camaleón \n"
"Language-Team: Debian Spanish \n"
"Language: es\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Virtaal 0.7.1\n"

#. Type: string
#. Description
#: ../postsrsd.templates:2001
msgid "Local domain name to use as origin:"
msgstr "Nombre de dominio local para usar como origen:"

#. Type: string
#. Description
#: ../postsrsd.templates:2001
msgid ""
"Please enter the domain name to use in rewritten addresses of forwarded "
"mail. The SPF policy for that domain should allow this mail server to send "
"mail."
msgstr ""
"Introduzca el nombre de dominio local para utilizar al reescribir las "
"direcciones o en el reenvío de correos. La política SPF de ese dominio debe "
"permitir que este servidor de correos pueda enviar mensajes."

#. Type: string
#. Description
#: ../postsrsd.templates:2001
msgid "Without a configured local domain name, postsrsd will not start."
msgstr "Si no configura un nombre de dominio local, postsrsd no se iniciará."


Bug#801684: libosinfo: Please upload libosinfo 0.2.12 to unstable

2015-10-13 Thread Laurent Bigonville
Source: libosinfo
Version: 0.2.12-1
Severity: normal

Hi,

Could you please upload libosinfo 0.2.12-1 to unstable? gnome-boxes 3.18
needs that version.

Cheers,

Laurent Bigonville

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

Kernel: Linux 4.2.0-1-amd64 (SMP w/8 CPU cores)
Locale: LANG=fr_BE.utf8, LC_CTYPE=fr_BE.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)



Bug#801415: ejabberd: maintainer is not maintainer

2015-10-13 Thread Rhonda D'Vine
* Dominik George  [2015-10-12 15:03:06 CEST]:
> Am Montag, 12. Oktober 2015, 15:54:45 schrieb Konstantin Khomoutov:
> > While I'm dissatisfied, to put it mildly, with what the submitter wrote
> > in this bug report regarding me being «unable to respond to any
> > requests», 
> 
> Quoting, to make it clearer what I mean:
> 
> > unfortunately I'm not familiar with
> > these new line of ejabberd development (AB.CD version numbering).
> 
> > I can only google for the error string.
> 
> > Another room of interest is pkg-ejabb...@deb.at
> > which is dedicated to packaging ejabberd for Debian.

 It's kind of an exaggeration from that response to claim that
Konstantin is "not the current maintainer in reality and is unable to
respond to any requests".  Thanks for the quoting, but please don't
throw around such statements about fellow developers, they are pretty
hurtful and I totally can relate to that Konstantin felt bad about it.

> That means, that the person listed as maintainer is, in fact, unable to 
> respond to any requests, because he did not follow upstream development for 
> at 
> least three years.

 No, that doesn't mean that, and this is yet another exaggeration.  I
would like you to stop accusions like that.

> Of course, pointing to online resources or other packagers is, technically, a 
> response, but I think using Google is something that many people can do and 
> not something that makes a person maintainer of a software package.

 You can at any point join in the team if you are willing to help.
Currently I just read mud laundry against Konstantin here, can we pretty
please drop that and get to a more constructive level?  What's your
intention anyway?  Are you interested in bringing up ejabberd up to
part, are you interested in joining the effort?  Or is this just a
campaigning effort?  What for?

> There should be no bad feelings here, it's simply a fact.

 It's a simply a fact that your mail is kinda disrespectful and
exaggerating and twisting words, IMHO.

 So long,
Rhonda
-- 
Fühlst du dich mutlos, fass endlich Mut, los  |
Fühlst du dich hilflos, geh raus und hilf, los| Wir sind Helden
Fühlst du dich machtlos, geh raus und mach, los   | 23.55: Alles auf Anfang
Fühlst du dich haltlos, such Halt und lass los|



Bug#403304: Debian: bash --debugger doesn't start the debugger

2015-10-13 Thread Chet Ramey
On 10/12/15 4:16 PM, Nicholas Bamber wrote:
> My investigations indicate that it is still true that as per Debian bug
> report (https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=403304)
> --debugger does NOT start the debugger UNLESS the debugged script has a $1.

We discussed this in a thread on bug-bash back in April:

http://lists.gnu.org/archive/html/bug-bash/2015-04/msg00183.html

This discussion references an earlier bug report concerning whether the
--debugger option should produce an error if the bashdb script is not
installed.  There is also an issue with bashdb misbehaving when run in
an interactive shell; that was the reason for the check of $1 in the
first place.

Part of that thread explains why a check of $0 is not correct: since $0
is always set, a check for it has no effect.

The final change that solves both problems went into the bash development
branch in early May, and will be in bash-4.4.

-- 
``The lyf so short, the craft so long to lerne.'' - Chaucer
 ``Ars longa, vita brevis'' - Hippocrates
Chet Ramey, ITS, CWRUc...@case.eduhttp://cnswww.cns.cwru.edu/~chet/



Bug#801683: ITP: gradle-debian-helper -- Helper tools for building Debian packages with Gradle

2015-10-13 Thread Emmanuel Bourg
Package: wnpp
Severity: wishlist
Owner: Emmanuel Bourg 

* Package name: gradle-debian-helper
  Version : 1.0
  Upstream Author : Emmanuel Bourg 
* URL : 
http://anonscm.debian.org/cgit/pkg-java/gradle-debian-helper.git
* License : Apache-2.0
  Programming Lang: Java
  Description : Helper tools for building Debian packages with Gradle

gradle-debian-helper contains helper tools to ease the packaging of Gradle
based projects in Debian. It consists in:

 * a Gradle plugin resolving the dependencies against the system Maven
   repository (/usr/share/maven-repo). The resolver uses the same Maven
   rule files that maven-debian-helper and maven-repo-helper employ
   (debian/maven.rules, debian/maven.ignoreRules). 
 * a debhelper class detecting Gradle build files, initializing the plugin
   and running Gradle in offline mode.



Bug#801690: 'smbstatus -b' leads to broken ctdb cluster

2015-10-13 Thread Adi Kriegisch
Package: ctdb
Version: 2.5.4+debian0-4

Dear maintainers,

I recently upgraded a samba cluster from Wheezy (with Kernel, ctdb, samba
and glusterfs from backports) to Jessie. The cluster itself is way older
and basically always worked. Since the upgrade to Jessie 'smbstatus -b'
(almost always) just hangs the whole cluster; I need to interrupt the call
with ctrl+c (or run with 'timeout 2') to avoid a complete cluster lockup
leading to the other cluster nodes being banned and the node I run smbstatus
on to have ctdbd run at 100% load but not being able to recover.

The cluster itself consists of three nodes sharing three cluster ips. The
only service ctdb manages is Samba. The lock file is located on a mirrored
glusterfs volume.

running and interrupting the hanging smbstatus leads to the following log
messages in /var/log/ctdb/log.ctdb:
  | 2015/10/13 15:09:24.923002 [19378]: Starting traverse on DB
  |  smbXsrv_session_global.tdb (id 2592646)
  | 2015/10/13 15:09:25.505302 [19378]: server/ctdb_traverse.c:644 Traverse
  |  cancelled by client disconnect for database:0x6b06a26d
  | 2015/10/13 15:09:25.505492 [19378]: Could not find idr:2592646
  | [...]
  | 2015/10/13 15:09:25.507553 [19378]: Could not find idr:2592646

'ctdb getdbmap' lists that database, but also lists a second entry for
smbXsrv_session_global.tdb:
  | dbid:0x521b7544 name:smbXsrv_version_global.tdb 
path:/var/lib/ctdb/smbXsrv_version_global.tdb.0
  | dbid:0x6b06a26d name:smbXsrv_session_global.tdb 
path:/var/lib/ctdb/smbXsrv_session_global.tdb.0
(I have no idea if that has always been the case or if that happened after
the upgrade).

Calling 'smbstatus --locks' and 'smbstatus --shares' works just fine.
'strace'ing ctdbd leads to a massive amount of these messages:
  | 
write(58,"\240\4\0\0BDTC\1\0\0\0\215U\336\25\5\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"...,
  |  1184) = -1 EAGAIN (Resource temporarily 
unavailable)

Running 'ctdb_diagnostics' is only possible shortly after  the cluster is
started (ie. while smbstatus -b works) and yields the following messages:
  | ERROR[1]: /etc/krb5.conf is missing on node 0
  | ERROR[2]: File /etc/hosts is different on node 1
  | ERROR[3]: File /etc/hosts is different on node 2
  | ERROR[4]: File /etc/samba/smb.conf is different on node 1
  | ERROR[5]: File /etc/samba/smb.conf is different on node 2
  | ERROR[6]: File /etc/fstab is different on node 1
  | ERROR[7]: File /etc/fstab is different on node 2
  | ERROR[8]: /etc/multipath.conf is missing on node 0
  | ERROR[9]: /etc/pam.d/system-auth is missing on node 0
  | ERROR[10]: /etc/default/nfs is missing on node 0
  | ERROR[11]: /etc/exports is missing on node 0
  | ERROR[12]: /etc/vsftpd/vsftpd.conf is missing on node 0
  | ERROR[13]: Optional file /etc/ctdb/static-routes is not present on node 0
'/etc/hosts' differs in some newlines and comments while 'smb.conf' only
has some different log levels on the nodes. The rest of the messages does
not affect ctdb as it only manages samba.

Feel free to ask if you need any more information.

-- Adi


signature.asc
Description: Digital signature


Bug#539780: $package variable to uscan environment

2015-10-13 Thread Osamu Aoki
Hi,

Watch file is not just used by you (the maintainer) but by many other
uses such as the DEHS server to get the package status.

What this means is the watch file should be valid for others.

If it only function under a certain environment, that is not desirable
situation.  I suggest you to do as follows.

You provide debian/watch.in template file which creates debian/watch
with the "debian/rules clean" target making substitution.  Package both
in the source file.

Then other people downloading your source package can use debian/watch
while you do not need to edit it for every verion bumps.

I mean you can have something along:

debian/watch.in:
http://archive.xfce.org/src/apps/@@@app@@@/([\d\.]+)/ 
@@@app@@@\.([\d]+\.[\d]+)\.tar\.gz


debian/rules:
package = $(shell dpkg-parsechangelog -SSource)
clean:
sed "s/@@@app@@@/$(package)/g" debian/watch

So I do not think this is a valid wishlist.

Did I misunderstood the situation?

Osamu



Bug#801689: ITP: fonts-sil-lateef -- OpenType Arabic font for Sindhi and other languages of South Asia

2015-10-13 Thread Daniel Glassey
Package: wnpp
Severity: wishlist
X-Debbugs-CC: pkg-fonts-de...@lists.alioth.debian.org

Package name: fonts-sil-lateef
Version: 1.001
Upstream Author: SIL International http://scripts.sil.org/Support
URL: http://scripts.sil.org/Lateef
License: Open Font License 1.1 with Reserved Font Names "Lateef" and "SIL"
Description: OpenType Arabic font for Sindhi and other languages of South
Asia

Lateef is named after Shah Abdul Lateef Bhitai, the famous Sindhi mystic
and poet. It is intended to be an appropriate style for use in Sindhi and
other languages of the South Asian region.

This font provides a simplified rendering of Arabic script, using basic
connecting glyphs but not including a wide variety of additional ligatures
or contextual alternates (only the required lam-alef ligatures). This
simplified style is often preferred for clarity, especially in non-Arabic
languages, but may be considered unattractive in more traditional and
literate communities.

This release supports virtually all of the Unicode 5.0 Arabic character
repertoire (excluding the Arabic Presentation Forms blocks, which are not
recommended for normal use). Font smarts are implemented using OpenType
technology.


Bug#801688: flash-kernel fails with readlink: invalid option -- 'm'

2015-10-13 Thread Olliver Schinagl
Package: flash-kernel
Version: 3.35+deb8u1
Severity: important
Tags: d-i

Dear Maintainer,

when installing flash-kernel on a very basic and minimal system (created with
multistrap) flash-kernel fails to install.

While flash-kernel does seem to work and is installed afterwards this makes
automated installation via multistrap impossible.

My packages from multistrap looks like this, which as you can see is fairly
minimal
packages=f2fs-tools connman wpasupplicant iptables dropbear avahi-daemon
libv4l-0 lsb-invalid-mta ca-certificates mtd-utils busybox apt usbmount udisks2
rsync

I guess adding some dialog dependancy is probably the quickest fix, but I don't
think is the best solution.

root@system-02880482d32a:~# apt-get install flash-kernel
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following NEW packages will be installed:
  flash-kernel
0 upgraded, 1 newly installed, 0 to remove and 25 not upgraded.
Need to get 0 B/34.2 kB of archives.
After this operation, 76.8 kB of additional disk space will be used.
debconf: delaying package configuration, since apt-utils is not installed
Selecting previously unselected package flash-kernel.
(Reading database ... 14355 files and directories currently installed.)
Preparing to unpack .../flash-kernel_3.35+deb8u1_armhf.deb ...
Unpacking flash-kernel (3.35+deb8u1) ...
Setting up flash-kernel (3.35+deb8u1) ...
debconf: unable to initialize frontend: Dialog
debconf: (No usable dialog-like program is installed, so the dialog based
frontend cannot be used. at /usr/share/perl5/Debconf/FrontEnd/Dialog.pm line
76.)
debconf: falling back to frontend: Readline
readlink: invalid option -- 'm'
BusyBox v1.22.1 (Debian 1:1.22.0-9+deb8u1) multi-call binary.

Usage: readlink [-fnv] FILE

Display the value of a symlink

-f  Canonicalize by following all symlinks
-n  Don't add newline
-v  Verbose

: Unable to determine The new file
dpkg: error processing package flash-kernel (--configure):
 subprocess installed post-installation script returned error exit status 1
Errors were encountered while processing:
 flash-kernel
E: Sub-process /usr/bin/dpkg returned an error code (1)

P.S. 3.46~bpo8+1 also suffers the same problem.



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

Kernel: Linux 4.3.0-rc1+ (SMP w/4 CPU cores; PREEMPT)
Locale: LANG=en_US.utf8, LC_CTYPE=en_US.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)



Bug#801686: [INTL:es] Spanish translation of the debconf template open-iscsi

2015-10-13 Thread Camaleón
Package: open-iscsi
Severity: wishlist
Tags: patch l10n

Hello,

You can find enclosed the Spanish translation template to be uploaded
with the latest package build.

Greetings,

-- 
Camaleón 
# open-iscsi po-debconf translation to Spanish
# Copyright (C) 2015 Software in the Public Interest
# This file is distributed under the same license as the open-iscsi package.
#
# Changes:
# - Initial translation
# Camaleón , 2015
#
# - Updates
#
#
# Traductores, si no conocen el formato PO, merece la pena leer la
# documentación de gettext, especialmente las secciones dedicadas a este
# formato, por ejemplo ejecutando:
# info -n '(gettext)PO Files'
# info -n '(gettext)Header Entry'
#
# Equipo de traducción al español, por favor lean antes de traducir
# los siguientes documentos:
#
# - El proyecto de traducción de Debian al español
# http://www.debian.org/intl/spanish/
# especialmente las notas y normas de traducción en
# http://www.debian.org/intl/spanish/notas
#
# - La guía de traducción de po's de debconf:
# /usr/share/doc/po-debconf/README-trans
# o http://www.debian.org/intl/l10n/po-debconf/README-trans
#
msgid ""
msgstr ""
"Project-Id-Version: open-iscsi\n"
"Report-Msgid-Bugs-To: open-is...@packages.debian.org\n"
"POT-Creation-Date: 2015-09-30 06:58+0200\n"
"PO-Revision-Date: 2015-10-04 18:30+0200\n"
"Last-Translator: Camaleón \n"
"Language-Team: Debian Spanish \n"
"Language: es\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Virtaal 0.7.1\n"

#. Type: boolean
#. Description
#: ../open-iscsi.templates:2001
msgid "Proceed with removing open-iscsi?"
msgstr "¿Desea proceder con la eliminación de open-iscsi?"

#. Type: boolean
#. Description
#: ../open-iscsi.templates:2001
msgid ""
"There are currently active iSCSI sessions. If you remove open-iscsi now this "
"may lead to data loss and/or hang the system at shutdown."
msgstr ""
"Todavía hay sesiones iSCSI activas. Si elimina open-iscsi en este momento "
"podría conllevar la pérdida de datos y/o dejar colgado el sistema al apagar "
"el equipo."

#. Type: boolean
#. Description
#: ../open-iscsi.templates:2001
msgid "Do not do this if this system's root filesystem is on iSCSI."
msgstr "No haga esto si el sistema de archivos raíz se encuentra sobre iSCSI."

#. Type: boolean
#. Description
#: ../open-iscsi.templates:2001
msgid ""
"If you do proceed, open-iscsi will try to unmount all filesystems on iSCSI "
"and log out from current sessions. If that fails (because a filesystem is "
"still in use), the kernel will keep the current iSCSI sessions open, but "
"will not perform any recovery if there is an interruption of the network "
"connection (or if the target is rebooted)."
msgstr ""
"Si continúa, open-iscsi intentará desmontar todos los sistemas de archivos "
"que se encuentran sobre iSCSI y cerrará las sesiones actuales. En caso de "
"fallo (porque el sistema de archivos se encuentre todavía en uso) el núcleo "
"mantendrá la sesiones iSCSI actuales abiertas pero no realizará ninguna "
"operación de recuperación si se interrumpe la conexión de red (o si se "
"reinicia el target)."

#. Type: boolean
#. Description
#: ../open-iscsi.templates:2001
msgid ""
"If you really intend to remove open-iscsi, you should abort here and then "
"stop open-iscsi:"
msgstr ""
"Si realmente desea eliminar open-iscsi, debe abortar este cuadro de diálogo "
"y después detener open-iscsi:"

#. Type: boolean
#. Description
#: ../open-iscsi.templates:2001
msgid ""
"If that did not clean up everything, manually umount all filesystems that "
"are on iSCSI, manually dismantle the storage stack, and only then log out "
"from all iSCSI sessions:"
msgstr ""
"Si eso no limpia todo, desmonte manualmente todos los sistemas de archivos "
"que se encuentran sobre iSCSI, desmantele manualmente la pila de "
"almacenamiento y sólo entonces cierre todas las sesiones iSCSI:"

#. Type: boolean
#. Description
#: ../open-iscsi.templates:2001
msgid "At that point, it should be safe to remove this package."
msgstr "En ese momento debe ser seguro eliminar este paquete."

#. Type: boolean
#. Description
#: ../open-iscsi.templates:3001
msgid "Proceed with upgrading open-iscsi?"
msgstr "¿Desea proceder con la actualización de open-iscsi?"

#. Type: boolean
#. Description
#: ../open-iscsi.templates:3001
msgid ""
"There are currently failed iSCSI sessions. Upgrading open-iscsi may cause "
"data loss."
msgstr ""
"Todavía hay sesiones iSCSI fallidas. Actualizar open-iscsi podría conllevar "
"una pérdida de datos."

#. Type: boolean
#. Description
#: ../open-iscsi.templates:3001
msgid ""
"If you do not proceed, the preinstallation script will be aborted and you "
"will have the option to manually recover the iSCSI sessions. (Note that "
"aborting an upgrade is problematic if you are dist-upgrading your entire "
"system.) You 

Bug#799939: chromium: does not build / is not available for armhf

2015-10-13 Thread Riku Voipio
On Tue, Oct 13, 2015 at 11:48:04AM +0300, Riku Voipio wrote:
> Notice it needs a fix to objcopy/strip in binutils to handle stripping a > 
> 2GB file.
> I'm still working on cleaning up that patch.

The patch for binutils as attached to the upstream bug:

https://sourceware.org/bugzilla/show_bug.cgi?id=19123

And resulted packages at:

https://people.debian.org/~riku/chromium/

Riku



Bug#801691: glibc: pointer guarding weakness

2015-10-13 Thread Moritz Muehlenhoff
Package: glibc
Severity: important
Tags: security
Justification: user security hole

Please see http://www.openwall.com/lists/oss-security/2015/09/05/8
for details.

Cheers,
Moritz




Bug#801676: useradd manpage: no space between "subuid(5)," and "userdel(8)"

2015-10-13 Thread Jakub Wilk

Package: passwd
Version: 1:4.2-3
Severity: minor

$ man useradd | grep -F 'subuid(5)'
  subuid(5),userdel(8), usermod(8).

There should be a space after "subuid(5),".

--
Jakub Wilk



Bug#801654: dircolors: Please support colors on TERM=screen.xterm-256color

2015-10-13 Thread Pádraig Brady
On 13/10/15 04:11, Josh Triplett wrote:
> Package: coreutils
> Version: 8.23-4
> Severity: normal
> 
> josh@jet:~$ TERM=screen.xterm-256color dircolors
> LS_COLORS='';
> export LS_COLORS

> screen in current unstable seems to set TERM to screen.xterm-256color if
> running in a terminal with TERM=xterm-256color.  (With TERM=xterm,
> screen uses TERM=screen, which dircolors supports.)

It seems screen(1) has multiplied out the various 256 color variants recently:
http://invisible-island.net/ncurses/terminfo.ti.html#tic-screen-256color

I wonder should we add globbing support to TERM entries in dircolors?
I.E. add support for a general entry like:

  TERM *256color*

That would cater for all existing TERMs in Fedora's /etc/DIR_COLORS.256color
for example, and new entries following this common pattern.

Attached is a patch to do that.

From 3491a7702e2d235a255af36e731b84f84da97715 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?P=C3=A1draig=20Brady?= 
Date: Tue, 13 Oct 2015 12:40:52 +0100
Subject: [PATCH] dircolors: support globbing of TERM entries

* src/dircolors.c (dc_parse_stream): Support globbing of
TERM entries, to allow entries like "TERM *256color*" for example.
* src/dircolors.hin: Reduce the internal list with globbing.
* tests/misc/dircolors.pl: New test cases.
* NEWS: Mention the improvement.
---
 NEWS|  3 +++
 src/dircolors.c |  3 ++-
 src/dircolors.hin   | 39 +--
 tests/misc/dircolors.pl |  8 
 4 files changed, 18 insertions(+), 35 deletions(-)

diff --git a/NEWS b/NEWS
index 9aec259..80f99f3 100644
--- a/NEWS
+++ b/NEWS
@@ -22,6 +22,9 @@ GNU coreutils NEWS-*- outline -*-
 
 ** Improvements
 
+  dircolors now supports globbing of TERM entries in its database.
+  For example "TERM *256color*" is now supported.
+
   du no longer stats all mount points at startup, only doing so
   upon detection of a directory cycle.
   [issue introduced in coreutils-8.20]
diff --git a/src/dircolors.c b/src/dircolors.c
index 3a03f1f..d0bd2e4 100644
--- a/src/dircolors.c
+++ b/src/dircolors.c
@@ -18,6 +18,7 @@
 #include 
 
 #include 
+#include 
 #include 
 
 #include "system.h"
@@ -293,7 +294,7 @@ dc_parse_stream (FILE *fp, const char *filename)
   unrecognized = false;
   if (c_strcasecmp (keywd, "TERM") == 0)
 {
-  if (STREQ (arg, term))
+  if (fnmatch (arg, term, 0) == 0)
 state = ST_TERMSURE;
   else if (state != ST_TERMSURE)
 state = ST_TERMNO;
diff --git a/src/dircolors.hin b/src/dircolors.hin
index 5c89447..f557560 100644
--- a/src/dircolors.hin
+++ b/src/dircolors.hin
@@ -12,16 +12,7 @@
 TERM Eterm
 TERM ansi
 TERM color-xterm
-TERM con132x25
-TERM con132x30
-TERM con132x43
-TERM con132x60
-TERM con80x25
-TERM con80x28
-TERM con80x30
-TERM con80x43
-TERM con80x50
-TERM con80x60
+TERM con[0-9]*x[0-9]*
 TERM cons25
 TERM console
 TERM cygwin
@@ -40,34 +31,14 @@ TERM mach-gnu-color
 TERM mlterm
 TERM putty
 TERM putty-256color
-TERM rxvt
-TERM rxvt-256color
-TERM rxvt-cygwin
-TERM rxvt-cygwin-native
-TERM rxvt-unicode
-TERM rxvt-unicode-256color
-TERM rxvt-unicode256
-TERM screen
-TERM screen-256color
-TERM screen-256color-bce
-TERM screen-bce
-TERM screen-w
-TERM screen.Eterm
-TERM screen.rxvt
-TERM screen.linux
+TERM rxvt*
+TERM screen*
 TERM st
 TERM st-256color
 TERM terminator
-TERM tmux
-TERM tmux-256color
+TERM tmux*
 TERM vt100
-TERM xterm
-TERM xterm-16color
-TERM xterm-256color
-TERM xterm-88color
-TERM xterm-color
-TERM xterm-debian
-TERM xterm-termite
+TERM xterm*
 
 # Below are the color init strings for the basic file types. A color init
 # string consists of one or more of the following numeric codes:
diff --git a/tests/misc/dircolors.pl b/tests/misc/dircolors.pl
index b9f8a1d..2e6f27d 100755
--- a/tests/misc/dircolors.pl
+++ b/tests/misc/dircolors.pl
@@ -33,6 +33,14 @@ my @Tests =
   . "export LS_COLORS\n"}],
  ['other-wr', '-b', {IN => "owt 40;33\n"},
   {OUT => "LS_COLORS='tw=40;33:';\nexport LS_COLORS\n"}],
+ ['term-1', '-b', {IN => "TERM none\nowt 40;33\n"},
+  {OUT => "LS_COLORS='tw=40;33:';\nexport LS_COLORS\n"}],
+ ['term-2', '-b', {IN => "TERM non*\nowt 40;33\n"},
+  {OUT => "LS_COLORS='tw=40;33:';\nexport LS_COLORS\n"}],
+ ['term-3', '-b', {IN => "TERM nomatch\nowt 40;33\n"},
+  {OUT => "LS_COLORS='';\nexport LS_COLORS\n"}],
+ ['term-4', '-b', {IN => "TERM N*match\nowt 40;33\n"},
+  {OUT => "LS_COLORS='';\nexport LS_COLORS\n"}],
 
  # CAREFUL: always specify the -b option, unless explicitly testing
  # for csh syntax output.
-- 
2.5.0



Bug#800617: Fails to provide secrets

2015-10-13 Thread Mikhail Morfikov
Package: gnome-keyring
Version: 3.18.0-4
Followup-For: Bug #800617

It looks like the patch doesn't work either -- it's the exact same situation.
But there's another thing that can be helpful.

There's another bug (#796931) in debian concerning the gnupg-agent package.
When I first installed the sid version of that package, I was unable to access
my ssh keys at all. After switching to the testing version of the following
packages: gnupg-agent gnupg2 gpgsm scdaemon , the issue disappeared, so I was
using the testing version of the packages all the time.

When I noticed the problems with gnome-keyring, I didn't even realize that the
two things could be connected in some way. But it looks like they are.

First of all, I upgraded the packages in question. Then I did the trick
described in the aforementioned bug, which was to add some code to the
..bashrc/.zshrc file:

if [ "$PS1" ]; then
unset GPG_AGENT_INFO
unset SSH_AGENT_PID
if [ "${gnupg_SSH_AUTH_SOCK_by:-0}" -ne $$ ]; then
  export SSH_AUTH_SOCK="${HOME}/.gnupg/S.gpg-agent.ssh"
fi
fi
export GPG_TTY=`tty`

After reboot, the message "The Secret Service was already initialized" in the
log disappeared. Running gajim and ssh command in the same session no longer
gives the lag when executing the second application. There's no error/messages
in the log, and my ssh keys work just fine.



Bug#801677: po4a(7) manpage: grammar error: "didn't seemed"

2015-10-13 Thread Jakub Wilk

Package: po4a
Version: 0.47-1
Severity: minor

po4a(7) manpage reads: 
"For example, it didn't seemed adapted to debconf,"


It should be:
"... it didn't seem ..."

--
Jakub Wilk



  1   2   3   >