Bug#755966: tracker.debian.org: Update Ubuntu COF to modern logo

2014-07-25 Thread Dmitry Smirnov
On Thu, 24 Jul 2014 22:37:18 Dimitri John Ledkov wrote:
 http://design.ubuntu.com/wp-content/uploads/logo-ubuntu_cof-orange-hex.png

What is the license of that image?

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


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


Bug#755984: util-linux: Packaging conflict with bash-completion

2014-07-25 Thread Ludovic Lebègue
Package: util-linux
Version: 2.24.2-1
Severity: serious

Hi

A conflict is detected upon installation of util-linux :


Unpacking util-linux (2.25-2) over (2.24.2-1) ...
dpkg: error processing archive /var/cache/apt/archives/util-
linux_2.25-2_amd64.deb (--unpack):
 trying to overwrite '/usr/share/bash-completion/completions/dmesg',
which is
also in package bash-completion 1:2.1-4

Regards
Ludovic



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

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

Versions of packages util-linux depends on:
ii  debconf [debconf-2.0]  1.5.53
ii  dpkg   1.17.10
ii  initscripts2.88dsf-55.2
ii  install-info   5.2.0.dfsg.1-4
ii  libblkid1  2.25-2
ii  libc6  2.19-7
ii  libmount1  2.25-2
ii  libncurses55.9+20140712-2
ii  libpam0g   1.1.8-3
ii  libselinux12.3-1
ii  libslang2  2.2.4-17
ii  libtinfo5  5.9+20140712-2
ii  libuuid1   2.25-2
ii  lsb-base   4.1+Debian13
ii  tzdata 2014e-1
ii  zlib1g 1:1.2.8.dfsg-1

util-linux recommends no packages.

Versions of packages util-linux suggests:
ii  dosfstools  3.0.26-2
ii  kbd 1.15.5-1
ii  util-linux-locales  2.24.2-1


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


Bug#755980: clang-3.4: crashes with error: unable to execute command: Segmentation fault

2014-07-25 Thread Sylvestre Ledru
Hello,

On 25/07/2014 06:06, hartja wrote:
 Package: clang-3.4
 Version: 1:3.4.2-4
 Severity: normal

 Dear Maintainer,

 I encountered a crash while building with clang++ and I am submitting this bug
 report as requested.

 Attached is an archive containing the preprocessed source file and run script
 that triggered the crash.  Please note the code in the archive is not expected
 to compile cleanly; I was experimenting with the syntax at the time the crash
 occurred.

Please provide a reduced test case. I won't be able to do anything
otherwise.

Thanks
Sylvestre


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



Bug#746884: Fwd: [src:molds] Fix FTBFS with GCC-4.9

2014-07-25 Thread Katsuhiko Nishimra
Hi,

I am one of upstream authors, and I've prepared the patch that fixes
this bug. (https://bugs.debian.org/746884)

I'm glad if you maintainers could take your time to merge this patch
into the package.

FYI, this patch is already in the trunk of upstream repository (rev 1697).

Thanks!

-- 
Katsuhiko Nishimra

ktns...@gmail.com
Fix boost serialization compile error.

Index: molds-0.3.0/src/base/MolDSException.cpp
===
--- molds-0.3.0.orig/src/base/MolDSException.cpp
+++ molds-0.3.0/src/base/MolDSException.cpp
@@ -161,7 +161,7 @@ void MolDSException::serialize(Archive
 
 void MolDSException::Serialize(std::ostream os){
boost::archive::text_oarchive oa(os);
-   oa  this;
+   oa  (*this);
 }
 
 MolDSException MolDSException::Deserialize(std::istream is){


Bug#755928: RFH: guake

2014-07-25 Thread Sylvestre Ledru

On 24/07/2014 20:19, Brandon Sharitt wrote:
 I use Guake and I'd be interested in helping maintain it. I've never 
 maintained a Debian package in any capacity, so I'd be new to it, but if 
 it's easy as you say, then it's probably a good place to start.

No worries.

Maybe you could start by fixing that bug:
https://github.com/Guake/guake/issues/354
which blocks the packaging of the 0.5.0 rc1.

And then, here is a list of bugs on which you could help:
http://bugs.debian.org/src:guake
https://bugs.launchpad.net/ubuntu/+source/guake/

Thanks,
Sylvestre


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



Bug#35733: #35744: /usr/bin/dh_strip: indeed additional cmdline option for additional suffixes to recognize would be awesome

2014-07-25 Thread Tzafrir Cohen
On Mon, Dec 20, 2010 at 01:43:14PM -0500, Yaroslav Halchenko wrote:

 I am talking about .mex and .oct files.  Since I am removing exectuable bits
 from them during installation (during dh_fixperms which comes before 
 dh_strip),
 dh_strip does not find them as exectuables, neither as dynamic libraries due 
 to
 extension mismatch.
 
 Hardcoding of those in addition to already existing cmxs for Ocaml does the
 trick, i.e.:
 
 if (m/.*\.(so.*?|cmxs$|mex$|oct$)/) {
 
 but may be addition of some -I, --include rule for manual extending of
 list of known extensions would be a better solution.

Attached a patch to do that: --add-exten extension. It can only add a
single extension but this seems good enough for my package.

Note that using a regex is not trivial as dh_strip uses perl matching
and dh_shlibdeps uses find(1).

I chose not to handle dh_shlibdeps as it did not seem necessary (also
note the lack of cmxs there.

But is already tagged with patch though from what I understand, the
patch is the one from https://bugs.debian.org/204633 and IMHO it is not
useful.

-- 
Tzafrir Cohen | tzaf...@jabber.org | VIM is
http://tzafrir.org.il || a Mutt's
tzaf...@cohens.org.il ||  best
tzaf...@debian.org|| friend
From f1f1a670677dad6453f5a3e5ac5082360bd35ffa Mon Sep 17 00:00:00 2001
From: Tzafrir Cohen tzaf...@debian.org
Date: Fri, 25 Jul 2014 08:56:45 +0300
Subject: [PATCH] extra extensions for dh_strip and dh_shlibdeps

Add an option --add-exten for both dh_strip and dh_shlibdeps that makes
them look for shared objects of different types.

Closes: #35733
---
 dh_shlibdeps |   18 +-
 dh_strip |   23 +--
 2 files changed, 38 insertions(+), 3 deletions(-)

diff --git a/dh_shlibdeps b/dh_shlibdeps
index b42c84a..e3e7f7e 100755
--- a/dh_shlibdeps
+++ b/dh_shlibdeps
@@ -65,6 +65,14 @@ It tells Bdpkg-shlibdeps (via its B-S parameter) to look first in the packag
 build directory for the specified package, when searching for libraries,
 symbol files, and shlibs files.
 
+=item B--add-exten=Iextension
+
+An extra file extension of symbols to look into. By default dh_shlibdeps
+will only check files with the pattern *.so* and files that end with
+.cmxs (OCaml native code shared libraries). However your package may
+have libraries or plugins with a different extension. To add all *.foo
+files, use parameter Ffoo.
+
 =back
 
 =head1 EXAMPLES
@@ -93,6 +101,7 @@ init(options = {
 	L|libpackage=s = \$dh{LIBPACKAGE},
 	dpkg-shlibdeps-params=s, = \$dh{U_PARAMS},
 	l=s, = \$dh{L_PARAMS},
+	add-exten=s = \$dh{ADD_EXTEN},
 });
 
 if (defined $dh{V_FLAG}) {
@@ -117,7 +126,14 @@ foreach my $package (@{$dh{DOPACKAGES}}) {
 	if (defined($dh{EXCLUDE_FIND})  $dh{EXCLUDE_FIND} ne '') {
 		$find_options=! \\( $dh{EXCLUDE_FIND} \\);
 	}
-	foreach my $file (split(/\n/,`find $tmp -type f \\( -perm /111 -or -name *.so* -or -name *.cmxs \\) $find_options -print`)) {
+
+	my @find_types = qw/so* cmxs/;
+	if (exists $dh{ADD_EXTEN}) {
+		push @find_types, $dh{ADD_EXTEN};
+	}
+	my $types_str = join '', map { -or -name \*.$_\} @find_types;
+
+	foreach my $file (split(/\n/,`find $tmp -type f \\( -perm /111 $types_str \\) $find_options -print`)) {
 		# Prune directories that contain separated debug symbols.
 		next if $file=~m!^\Q$tmp\E/usr/lib/debug/(lib|lib64|usr|bin|sbin|opt|dev|emul)/!;
 		# TODO this is slow, optimize. Ie, file can run once on
diff --git a/dh_strip b/dh_strip
index 516b6f2..9956987 100755
--- a/dh_strip
+++ b/dh_strip
@@ -63,6 +63,14 @@ Debug symbols will be retained, but split into an independent
 file in Fusr/lib/debug/ in the package build directory. B--dbg-package
 is easier to use than this option, but this option is more flexible.
 
+=item B--add-exten=Iextension
+
+An extra file extension of symbols to strip. By default dh_strip will only
+strip files with the pattern *.so* and files that end with .cmxs (OCaml
+native code shared libraries). However your package may have libraries
+or plugins with a different extension. To add all *.foo files, use
+parameter Ffoo.
+
 =back
 
 =head1 NOTES
@@ -79,6 +87,7 @@ Debian policy, version 3.0.1
 
 init(options = {
 	keep-debug = \$dh{K_FLAG},
+	add-exten=s = \$dh{ADD_EXTEN},
 });
 
 # This variable can be used to turn off stripping (see Policy).
@@ -100,6 +109,17 @@ sub get_file_type {
 	return $type;
 }
 
+sub get_extens_regex() {
+	my @extens = qw/so.*? cmxs$/;
+	if (exists $dh{ADD_EXTEN}) {
+		push(@extens, $dh{ADD_EXTEN}\$);
+	}
+	my $regex = .*\.(. join('|', @extens) . );
+	return qr/$regex/;
+}
+
+my $extens_regex = get_extens_regex();
+
 # Check if a file is an elf binary, shared library, or static library,
 # for use by File::Find. It'll fill the following 3 arrays with anything
 # it finds:
@@ -118,8 +138,7 @@ sub testfile {
 	return if $fn=~m/debug\/.*\.so/;
 
 	# Does its filename look like a shared library?
-	# (*.cmxs are OCaml native code shared libraries)
-	if 

Bug#755844: libudev.so.0.13.0: Re: libudev.so.0.13.0: applications crash in libudev (under memory pressure?)

2014-07-25 Thread Michal Suchanek
Excerpts from Marco d'Itri's message of Fri Jul 25 04:06:06 +0200 2014:
 On Jul 24, Michal Suchanek michal.sucha...@ruk.cuni.cz wrote:
 
  Apparently there are two versions of libudev linked in.
  
  Upgrading libudev-dev so it references libudev.so.1 resolves the
  problem.
  
  I am not sure if linking symbols from two different versions of libudev
  should be prevented in some way.
 I am not sure about how this could happen since the libudev symbols are 
 versioned.
 

Probably different libraries linking different versions of libudev.

I built libwaffle which is not packaged in Debian with libudev.so.0 and
when I linked piglit with it it would crash calling different libudev
symbols at random. Linking libwaffle with libudev.so.1 and rebuilding
piglit resolves the problem for my test but iceweasel and chromium
still crash in libudev.

Looking through dependencies only daemons and tools should depend on
libudev0 - no libraries but I might have missed something.

Thanks

Michal


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



Bug#726348: (no subject)

2014-07-25 Thread Gianfranco Costamagna
Hi,
can you please try again with the newly uploaded 3.9.0.1 in unstable?
this issue might have been wx related, and the wx3.0 switch might have been 
fixed it!

thanks,

Gianfranco

Sent from Yahoo Mail on Android



Bug#753029: (no subject)

2014-07-25 Thread Gianfranco LocutusOfBorg Costamagna
Version 3.9.0.1-0.1

thanks

Hi, I fixed this bug with the new upload, thanks for reporting and sorry for 
not having put the bug reference into the changelog.

Thanks,

Gianfranco

Sent from Yahoo Mail on Android



Bug#716913: (no subject)

2014-07-25 Thread Gianfranco Costamagna
Hi, can you please try again with the just uploaded version 3.9.0.1?

This release is built on top of wx3.0, so this bug might be automagically fixed.

thanks,

Gianfranco

Sent from Yahoo Mail on Android



Bug#755985: transmission: CVE-2014-4909

2014-07-25 Thread Salvatore Bonaccorso
Source: transmission
Version: 2.52-3+nmu1
Severity: grave
Tags: security upstream fixed-upstream
Justification: user security hole
Control: fixed -1 2.52-3+nmu2

Hi,

Opening this bugreport, since this was already fixed by Moritz in
DSA-2988-1.

The following vulnerability was published for transmission.

CVE-2014-4909[0]:
peer communication vulnerability

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

For further information see:

[0] https://security-tracker.debian.org/tracker/CVE-2014-4909

Regards,
Salvatore


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



Bug#699123: ITP: python-sh -- Python subprocess interface

2014-07-25 Thread Nick Moffitt
Tianon Gravi:
 Just a friendly ping - did you guys come to a consensus on packaging for
 python-sh and the old pbs package?

No, we haven't spoken about it for a long time.

 I'm happy to pitch in or take over and make the adjustments necessary
 (and of course get it uploaded) if you guys don't have the time or the
 motivation anymore.

Please do.  It wasn't my intention to block the uploads.


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



Bug#755980: clang-3.4: crashes with error: unable to execute command: Segmentation fault

2014-07-25 Thread Sylvestre Ledru
Forwarding to the bug

On 25/07/2014 08:33, Jacob Hart wrote:
 On Fri, Jul 25, 2014 at 4:00 PM, Sylvestre Ledru sylves...@debian.org wrote:
 Hello,

 On 25/07/2014 06:06, hartja wrote:
 Package: clang-3.4
 Version: 1:3.4.2-4
 Severity: normal

 Dear Maintainer,

 I encountered a crash while building with clang++ and I am submitting this 
 bug
 report as requested.

 Attached is an archive containing the preprocessed source file and run 
 script
 that triggered the crash.  Please note the code in the archive is not 
 expected
 to compile cleanly; I was experimenting with the syntax at the time the 
 crash
 occurred.

 Please provide a reduced test case. I won't be able to do anything
 otherwise.

 Thanks
 Sylvestre
 Hi Sylvestre,

 Thanks for your reply.  I have attached source code that triggers the
 crash to this email.  Fortunately the test case is quite small -- I
 think the size blew out in the preprocessed version because of the
 includes.

 Regards,
 Jacob.

#include iostream
#include tuple

namespace syntax {
typedef uint32_t error_t;
}

template typename T struct validator;

template typename T struct value_type;

namespace detail {

/** @require Validatable(T) 
  * @require Rule(R), Rule(Rs...) defined on T */
template typename T, typename R, typename...Rs
struct validator_base
{
typedef T type;
typedef std::tupleR, Rs... rule_set_t;
rule_set_t rule_set;

syntax::error_t operator()(const T x) const
{
return evaluate_std::tuple_sizerule_set_t(x);
}

protected:
~validator_base() = default;

template unsigned N
syntax::error_t evaluate_(const T x)
{
validatorT v = static_castvalidatorT(*this);
syntax::error_t error = rule_setN(v, x);
return error | evaluate_N-1(x)1;
}
};

template typename T, typename R, typename...Rs
syntax::error_t validator_baseT, R, Rs...::evaluate_0(const T x)
{
validatorT v = static_castvalidatorT(*this);
return rule_set0(v, x);
};

template typename T, typename value_typeT::type Min, typename value_typeT::type Max
struct rule_range
{
bool operator()(const validatorT v, const T x) const
{
return !(Min = x.value  x.value = Max); 
}
};

} // detail

template  struct value_typeint
{
typedef int type;
};

template  struct validatorint:
public detail::validator_baseint, detail::rule_rangeint, 0, 15
{ };

int main(int, char **) {

validatorint v;

std::cout  std::hex  v(1)  std::endl;

return 0;
}


Bug#755980: clang-3.4: crashes with error: unable to execute command: Segmentation fault

2014-07-25 Thread Sylvestre Ledru
On 25/07/2014 08:33, Jacob Hart wrote:
 On Fri, Jul 25, 2014 at 4:00 PM, Sylvestre Ledru sylves...@debian.org wrote:
 Hello,

 On 25/07/2014 06:06, hartja wrote:
 Hi Sylvestre, Thanks for your reply. I have attached source code that
 triggers the crash to this email. Fortunately the test case is quite
 small -- I think the size blew out in the preprocessed version
 because of the includes. Regards, Jacob. 
OK. Thanks.

For the record, it was possible to reduce it a bit more (and probably
more again).
CF attachment.

Anyway, the bug is fixed in 3.5. I won't try to fix the patch to
backport the fix but if you want to try yourself
and the patch is minor, I could apply it to 3.4.

Cheers,
Sylvestre


#include iostream
#include tuple

namespace syntax {
typedef uint32_t error_t;
}

template typename T struct validator;

template typename T struct value_type;

namespace detail {

/** @require Validatable(T)
  * @require Rule(R), Rule(Rs...) defined on T */
template typename T, typename R, typename...Rs
struct validator_base
{
typedef T type;
typedef std::tupleR, Rs... rule_set_t;
rule_set_t rule_set;

syntax::error_t operator()(const T x) const
{
return evaluate_std::tuple_sizerule_set_t(x);
}

protected:
~validator_base() = default;

template unsigned N
syntax::error_t evaluate_(const T x)
{
validatorT v = static_castvalidatorT(*this);
syntax::error_t error = rule_setN(v, x);
return error | evaluate_N-1(x)1;
}
};

template typename T, typename R, typename...Rs
syntax::error_t validator_baseT, R, Rs...::evaluate_0(const T x)
{
validatorT v = static_castvalidatorT(*this);
return rule_set0(v, x);
};

} // detail


Bug#732068: #732068 - gnome-disk-utility: Can't format external USB partition / device

2014-07-25 Thread Fabian Greffrath
Am Donnerstag, den 24.07.2014, 22:33 +0100 schrieb Pedro Beja: 
 Could you please still reproduce it ?
 if so how could you reproduce and which version ?

The bug is not in g-d-u itself, but in wipefs from the util-linux
package (#695473). Until this was fixed there, the bug should be
reproducible with every single version of g-d-u.

 and what is the outcome with the newer util-linux version 2.24.2-1 ?

The bug was actually fixed in util-linux (2.20.1-5.8), but should as
well be fixed in 2.24.2-1. As soon as this is uploaded to unstable, I
think this bug should be closed.

Thanks,

Fabian


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



Bug#755946: dictionaries-common: Korean debconf template translation update

2014-07-25 Thread Christian PERRIER
Quoting Changwoo Ryu (cw...@debian.org):
 Package: dictionaries-common
 Version: 1.23.8
 Tags: l10n patch
 Severity: wishlist
 
 Please update the Korean debconf template translation debian/po/ko.po


Hello,

Since I sent the first call for translation, a new template was marked
as translatable while it wasn't previously. That adds 5 extra
strings. Would you mind updating them too? See attached file.




ko.po
Description: application/gettext


signature.asc
Description: Digital signature


Bug#755980: clang-3.4: crashes with error: unable to execute command: Segmentation fault

2014-07-25 Thread hartja
Thanks, Sylvestre.  I am satisfied that the bug is fixed in 3.5.
Since the syntax is invalid, I'll just put it in the don't do that
basket whilst building with 3.4.

Cheers,
Jacob.

On Fri, Jul 25, 2014 at 4:51 PM, Sylvestre Ledru sylves...@debian.org wrote:
 On 25/07/2014 08:33, Jacob Hart wrote:
 On Fri, Jul 25, 2014 at 4:00 PM, Sylvestre Ledru sylves...@debian.org 
 wrote:
 Hello,

 On 25/07/2014 06:06, hartja wrote:
 Hi Sylvestre, Thanks for your reply. I have attached source code that
 triggers the crash to this email. Fortunately the test case is quite
 small -- I think the size blew out in the preprocessed version
 because of the includes. Regards, Jacob.
 OK. Thanks.

 For the record, it was possible to reduce it a bit more (and probably
 more again).
 CF attachment.

 Anyway, the bug is fixed in 3.5. I won't try to fix the patch to
 backport the fix but if you want to try yourself
 and the patch is minor, I could apply it to 3.4.

 Cheers,
 Sylvestre



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



Bug#753444: Bug#753542: Bug#753444: Bug#753542: perl-base - Segfaults in libperl.so.5.18

2014-07-25 Thread Emilio Pozuelo Monfort
On 14/07/14 23:17, Niko Tyni wrote:
 I've just uploaded perl_5.18.2-7 providing only perlapi-5.18.2d on s390x
 and closing this bug (#753444).

FWIW, this had some trouble migrating because there were a few packages that
were still depending on perlapi-5.18.2 on testing, and the rebuilds were not
migrating for one reason or another.

These are the packages I had to remove:

remove libsereal-encoder-perl/2.04-1 libsereal-decoder-perl/2.12-3
libsession-storage-secure-perl/0.010-1 libdancer-session-cookie-perl/0.22-1
libimager-perl/0.98+dfsg-2 libimager-qrcode-perl/0.033-1.2
libmojomojo-perl/1.10+dfsg1-3 libxml-saxon-xslt2-perl/0.007-3
libinline-java-perl/0.53-1
remove inn/1:1.7.2q-41 uucpsend/1.1-4
remove pilot-manager/1.107.0pre108-5 syncbbdb/2.6-2

As you can see, most of those are perl modules that had no (non-perl-modules)
rdeps in the archive. They can get back when they are fixed.

inn has been fixed already, so it and uucpsend should get back in very soon.

pilot-manager and syncbbdb are RC-buggy, as they depend on libpda-pilot-perl
which is gone.

Thanks to gregor who fixed libio-interface-perl, preventing me from removing a
few more packages.

Cheers,
Emilio


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



Bug#755851: [uscan] repacked tarballs not renamed with +dfsg

2014-07-25 Thread Andreas Tille
Hi,

On Wed, Jul 23, 2014 at 05:53:58PM -0400, Caitlin Matos wrote:
 The repacked tarballs that are created when a Files-Exclude line is in 
 d/copyright are no longer being renamed as +dfsg.
 
 I realize that bugs 748465  753772 already document this problem. However, 
 the discussion and proposed solution seem to have steered off-track. While 
 documenting how to rename it with uversionmangle is a good idea, it does not 
 really solve the actual problem. And, as others have pointed out in those 
 threads, rewriting all related watch files is not a great solution.

Just a comment from my side as original author of the Files-Excluded
patch:  Originally the +dfsg was added when the content of the upstream
source tarball was changed.  I considered this the easiest solution
while I would have seen room for improvement by somehow configuring the
postfix via some command-line option.  While I have lived now with the
need to adapt the d/watch file (usually you need to edit the watch file
anyway when adding a prefix) I could imagine that this bug could be
solved by something like

   --repack-prefix +dfsg

leaving the option for other prefixes as well.

But it might be that this is in fact redundant since an uversionmangle
finally does the same and makes such option redundant.  I'm currently
more bored by the now false lintian information that you should not
uversionmangle the +dfsg prefix than the fact that uscan does not add
anything to a repackaged tarball.  I'm just always three minutes of
spare time away when the issues comes up to file the bug report against
lintian immediately.

Kind regards

   Andreas.

-- 
http://fam-tille.de


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



Bug#755539: transition: hdf5

2014-07-25 Thread Emilio Pozuelo Monfort
On 24/07/14 20:10, Gilles Filippini wrote:
 BTW, my last upload to experimental fixes the support for the cmake HDF5
 macro. Then a bunch of affected package will need binNMUing only.

That's great.

 I am currently rebuilding every affected package to prepare debdiff
 patches. I'll need a week or so to complete this task.

Let us know when that's done.

Emilio


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



Bug#732068: #732068 - gnome-disk-utility: Can't format external USB partition / device

2014-07-25 Thread Andreas Henriksson
Control: fixed -1 2.20.1-5.8
Control: fixed -1 2.24.2-1
Control: tags -1 - moreinfo

Hello Fabian Graffrath!

On Fri, Jul 25, 2014 at 09:00:45AM +0200, Fabian Greffrath wrote:
[...]
 The bug was actually fixed in util-linux (2.20.1-5.8), but should as
 well be fixed in 2.24.2-1. As soon as this is uploaded to unstable, I
 think this bug should be closed.

Thanks for the followup!

Regards,
Andreas Henriksson


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



Bug#708070: enable x32 support for the amd64 kernels

2014-07-25 Thread Robert de Bath

On Fri, 25 Jul 2014, Ben Hutchings wrote:


No, there should be no extra kernel flavours for i386 or amd64.

Hmm, still not getting this. I thought the point of flavours was to split
off options that, though popular, have undesirable side effects.


I had an idea how to unblock this, and finally got round to trying it,
and it seems to work.  That is, we build in x32 support but require a
run-time parameter to enable.  So, please try the attached patch
(against the sid branch), adding syscall.x32=y to the kernel command
line.

But this sounds perfectly acceptable.


The general instructions for building a patched package are:
http://kernel-handbook.alioth.debian.org/ch-common-tasks.html#s-common-official.

Oh, yes ... I remember that :-(


You'll need to follow subsection 4.2.3 and apply the patch like so:
   patch -p1  ../x86-syscall-make-x32-syscall-support-conditional.patch
   quilt push

Will try this shortly. Though I may have to spin up a VM to build it.

--
Rob.  (Robert de Bath robert$ @ debath.co.uk)
 http://www.debath.co.uk/


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



Bug#755986: bash-completion: Please drop util-linux-related completions

2014-07-25 Thread Andreas Henriksson
Package: bash-completion
Version: 1:2.1-4
Severity: wishlist

Dear Maintainer,

I'm working on getting an updated util-linux package into Debian
(and you can see my efforts in experimental).

I'm inclined to ship the set of bash completions available 
from upstream util-linux and have crafted a way for the
package to only include the completions that we actually ship
in the util-linux package in Debian. (Many utilities
overlap with other packages, ie. eject, sysvinit-utils,
bsdmainutils, etc...)

Unfortunately I still ran into problems because of the following
completions shipped in the bash-completion package:
bash-completion: /usr/share/bash-completion/completions/pgrep
bash-completion: /usr/share/bash-completion/completions/dmesg

Could you please consider dropping these and let me ship them
from the util-linux source instead?

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

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

Versions of packages bash-completion depends on:
ii  bash  4.3-7
ii  dpkg  1.17.10

bash-completion recommends no packages.

bash-completion suggests no packages.

-- no debconf information


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



Bug#755612: Problem migrating from South to Django migrations for Linux distributions

2014-07-25 Thread Raphael Hertzog
Hi Andrew, 

thanks for your quick answer.

On Thu, 24 Jul 2014, Andrew Godwin wrote:
 There is no way around this; it's unfortunate that the packaging situation
 means that Django will get auto-upgraded as part of a distribution upgrade;
 I'm surprised that Debian hasn't had this with packages before? (Version
 upgrades that break installed but non-packaged things)

We probably had this kind of things before and the best we can do for
non-packaged things is usally to document this in the release notes.

But for packaged things, we try usually hard to get things to just work
without any human intervention. Hence my question.

 Neither of your suggested ways to go forward will work; the two history
 models are very different, so the tagging of positions isn't going to work,
 and Django 1.7 has changed substantially enough internally that porting
 South 1.x up to it would be a very large amount of work.

OK.

 Also, what are the applications in particular that this will be a problem
 for? I'm curious to know what Django + South things Debian is shipping
 these days.

Applications that depend on South and have different upstream versions
in Debian 7 and Debian 8 are:
http://tracker.debian.org/pkg/python-django-voting
http://tracker.debian.org/pkg/python-django-threadedcomments
http://tracker.debian.org/pkg/python-django-reversion
http://tracker.debian.org/pkg/python-django-picklefield
http://tracker.debian.org/pkg/bcfg2

Given the package names, it probably means only a single end-user application.
The others are Django extensions for use in non-packaged applications.

And looking more closely the case of bcfg2, the package in Debian 7 does
not use South, it started using South in the version in Jessie so it
should be easy to deal with.

For the 4 others, they should provide some NEWS.Debian entry warning
users of the potential upgrade problem.

(Bccing the 5 relevant bug reports to keep a record of this)

Cheers,
-- 
Raphaël Hertzog ◈ Debian Developer

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


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



Bug#755982: file conflict with bash-completion: dmesg and pgrep completion

2014-07-25 Thread Andreas Henriksson
Hello!

On Fri, Jul 25, 2014 at 06:55:00AM +0200, Michael Biebl wrote:
[...]
  trying to overwrite '/usr/share/bash-completion/completions/dmesg', which is 
 also in package bash-completion 1:2.1-4
[...]
 Another file-conflict is
 bash-completion: /usr/share/bash-completion/completions/pgrep

Sigh, I was apparently too tired yesterday to get my apt-file check
correct.

 
 Arguably, the package shipping the actual tool should be the one
 shipping the bash-completion file. So this bug should be clone for
 bash-completion, to get those files removed and then util-linux should
 get an appropriate Breaks/Replaces.

I've filed a Bug#755986 requesting this against bash-completion.

I'll drop the files in the next util-linux package revision pending
the above bug being closed, where I can do a proper versioned
Conflicts/Replaces.

Regards,
Andreas Henriksson


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



Bug#748040: (no subject)

2014-07-25 Thread Gianfranco Costamagna
Hi Tim, do you think this bug still apply to 3.9.0.1?



I didn't check it, but seems trivial to fix, let me know if I can help

thanks,



Gianfranco


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



Bug#718624: Bug#742626: transmission-daemon: SEGFAULT on first run, breaks installation

2014-07-25 Thread François Bobot
On 08/04/2014 13:09, Markus Koschany wrote:
 Updated patch is attached.

It works for me and fixed the problem. Even if my configuration is a modified 
settings.json with not
the default download directory.

-- 
François Bobot


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



Bug#753785: [Python-modules-team] Bug#753785: flask-silk: please ship icons in a new package which does not depends on python

2014-07-25 Thread Leo Iannacone
 Updated sources at: http://www.dustinkirkland.com/debian/famfamfam-silk

 Cheers,
 :-Dustin

I know ...summer is coming :) but.. some news about this?


-- 
Ubuntu Member - http://launchpad.net/~l3on
Home Page - http://leoiannacone.com
GPG Key Id - 0xD282FC25


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



Bug#755987: util-linux: FTBFS in the test suite on all architectures

2014-07-25 Thread Cyril Brulebois
Source: util-linux
Version: 2.25-2
Severity: serious
Justification: FTBFS

Hi,

your package still FTBFS on all buildds. This time it's due to different
test failures across architectures. The full build summary is still at:
  https://buildd.debian.org/status/package.php?p=util-linuxsuite=experimental

Mraw,
KiBi.


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



Bug#754280: ganeti-2.11 - gnt-cluster upgrade writes config backup in /var/lib

2014-07-25 Thread Bastian Blank
Control: severity -1 serious

On Wed, Jul 09, 2014 at 02:54:58PM +0200, Bastian Blank wrote:
 But on the other hand the FHS mandates to use a
 sub-directory.
 
 | An application (or a group of inter-related applications) must use a
 | subdirectory of /var/lib for its data.

This bug is actually a FHS violation.  So I'm now setting the
appropriate severity.

Bastian

-- 
Bastian Blank
Berater
Telefon: +49 2161 / 4643-194
E-Mail: bastian.bl...@credativ.de
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


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



Bug#755971: gzip: zcmp fails on .svgz files

2014-07-25 Thread Vincent Lefevre
On 2014-07-24 21:57:38 -0600, Bdale Garbee wrote:
 Vincent Lefevre vinc...@vinc17.net writes:
 
  zcmp fails on .svgz files. I suspect that zcmp doesn't recognized
  the .svgz extension, though rather common. 
 
 I've never seen a .svgz extension.  What's it supposed to mean?

gzipped SVG. There are more than 1 million matches of svgz
on Google, and it's in Debian's /etc/mime.types file:

image/svg+xml   svg svgz

and it's referenced by Wikipedia:

  https://en.wikipedia.org/wiki/Scalable_Vector_Graphics

(see infobox).

-- 
Vincent Lefèvre vinc...@vinc17.net - Web: https://www.vinc17.net/
100% accessible validated (X)HTML - Blog: https://www.vinc17.net/blog/
Work: CR INRIA - computer arithmetic / AriC project (LIP, ENS-Lyon)


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



Bug#755896: Cinnamon: Power management and Battery life applet not working

2014-07-25 Thread Fabio Fantoni
Control: reassign -1 cinnamon

The power applet is in cinnamon package and this bug is solved in next
build (now in git).



smime.p7s
Description: Firma crittografica S/MIME


Bug#753785: [Python-modules-team] Bug#753785: flask-silk: please ship icons in a new package which does not depends on python

2014-07-25 Thread Sebastian Ramacher
On 2014-07-25 10:24:08, Leo Iannacone wrote:
  Updated sources at: http://www.dustinkirkland.com/debian/famfamfam-silk
 
  Cheers,
  :-Dustin
 
 I know ...summer is coming :) but.. some news about this?

https://ftp-master.debian.org/new/famfamfam-silk_1.3-1.html

Cheers
-- 
Sebastian Ramacher


signature.asc
Description: Digital signature


Bug#755846: libroar2: no multiarch possible

2014-07-25 Thread Simon McVittie
affects 755846 libopenal1
thanks

On Thu, 24 Jul 2014 at 19:26:27 +0200, Patrick Matthäi wrote:
 Am 24.07.2014 um 12:14 schrieb Philipp Schafft:
  upstream speaking,

I think this is a bug in the way OpenAL and/or roaraudio is packaged in
Debian, not in upstream code, so there isn't a great deal of relevance
for upstream here.

 I will have a look in the next days if it is possible with the current
 upstream code base.

I think the most appropriate answer would be for libopenal1 to either drop
the libroar-compat2 dependency again, or turn it into a dynamically-loaded
plugin that can be dropped to Suggests (like its dependency
on libportaudio2). I would say ... or Recommends, like libpulse0,
but according to popcon, roaraudio is several orders of magnitude
less widely used than pulseaudio, and only 0.45% of libroar-compat2
installations actually have roaraudio installed.

Looking into libopenal1 in more detail, it doesn't actually have a
backend to support roaraudio: what it supports is (among other things)
libsndio, which as far as I can tell is the OpenBSD audio API.
In OpenAL 1.14 this *was* dlopened, but in 1.15 it was changed
upstream to use ordinary library linking. That makes perfect sense
if you're on OpenBSD and libsndio is the audio API, but doesn't really
make sense on Debian where sndio is really roaraudio.

OpenAL maintainers, please consider reverting the sndio backend to use
dlopen like 1.14 did, or dropping roaraudio-via-fake-sndio support
until/unless someone provides an actual roaraudio backend analogous
to the pulseaudio backend. A real roaraudio backend would make configuration
make more sense, too: it seems more reasonable to enable roaraudio via
drivers=roaraudio than to use drivers=sndio and rely on knowing that
sndio is really roaraudio.

I notice this isn't the first time libopenal1 has had an undesirable
dependency chain from libroar-compat2: #673178.

Looking at the multiarch situation anyway, for completeness:

The libraries in libroar-compat2, which are all that OpenAL actually
needs right now, look superficially OK for marking as multiarch. However,
libroar-compat2 also contains /usr/bin/roarify which differs between
architectures (it contains absolute paths to libroar.so.2, libroaross.so.2,
/usr/lib/x86_64-linux-gnu/roaraudio/complibs, etc.).

If libroar-compat2 is meant to be for manual use, more like aoss, pulsedsp,
socksify etc., then nothing should be normal-library-linked to it.
I notice that OpenAL seems to be the only thing using its libsndio,
and the fact that it provides libsndio at all seems like an abuse of
the fact that (a) OpenAL happens to have a libsndio backend, and (b)
Debian happens to not have the real libsndio.

On the other hand, if the intention is that other packages should be
able to depend on the fake libsndio like libopenal1 does, I would suggest
either:

- generating a real libsndio2 package and having libopenal1 use that; or
- making roarify a separate package that is Architecture:any, not multiarch,
  and depends on libroar-compat2 of the same architecture.

Further down the stack, libroar-compat2 depends on libroar2. libroar2 also
looks OK for multiarch: it only contains architecture-prefixed libraries.

However, libroar2 depends on libdnet (#755934, etc.) which is not ready for
multiarch: it contains /usr/lib/librms.so.2 which you will notice is not
architecture-prefixed; so making libroar-compat2 and libroar2 multiarch
while libdnet is used would just move this bug a couple of steps down the
stack, to I can't install both libdnet:i386 and libdnet:amd64.

The rest of the libraries that libroar2 depends on are already multiarch.

S


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



Bug#741509: libdrm: please include exynos and freedreno DRM

2014-07-25 Thread Maarten Lankhorst
op 13-03-14 10:12, Fathi Boudra schreef:
 Source: libdrm
 Severity: wishlist

 Dear Maintainer,

 Exynos and freedreno DRM aren't enabled during libdrm build.
 Please could you enable Exynos and freedreno APIs?

 I packaged the X.Org driver side and only need libdrm support is missing
 now.

Do you have the packaged drivers somewhere? I should have a system to test 
freedreno soon, and I would be interested.

What about exynos, did you perform any testing on that? It should probably have 
a separate bug.

~Maarten


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



Bug#741441: gnustep-base-runtime: gdomap does chroot(/tmp)

2014-07-25 Thread Ansgar Burchardt
On 07/24/2014 22:55, Yavor Doganov wrote:
 On Wed, Mar 12, 2014 at 03:02:38PM +0100, Ansgar Burchardt wrote:
 gdomap chroots to /tmp as another level of paranoia. However if
 you are paranoid, you really want to chroot to an empty,
 non-writable directory, not to a world-writable one containing
 random files.
 
 Thanks for the report.  Do you have a suggestion how to handle this
 issue?  Upstream writes:

I would just create an empty directory in /run (optionally via
tmpfiles.d) or ship one in /usr/share/gdomap/empty-directory-for-chroot
(or so) in the package itself.

Ansgar


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



Bug#741441: gnustep-base-runtime: gdomap does chroot(/tmp)

2014-07-25 Thread Yavor Doganov
Ansgar Burchardt wrote:
 On 07/24/2014 22:55, Yavor Doganov wrote:
   Do you have a suggestion how to handle this issue?
 
 I would just create an empty directory in /run (optionally via
 tmpfiles.d)

Hmm, this doesn't look like a portable solution.

 or ship one in /usr/share/gdomap/empty-directory-for-chroot (or so)
 in the package itself.

And this is Debian-specific.


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



Bug#750870: Upstream issue

2014-07-25 Thread Michael van der Kolff
I've lodged an issue upstream asking for an OpenSSL linking exception.

https://github.com/FreeRDP/Remmina/issues/286

Cheers,

Michael


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



Bug#755303: Adoption: Happy to help out...

2014-07-25 Thread Michael van der Kolff
I'm happy to help out with remmina, acting as (preferably)
co-maintainer or a maintainer; I see there are a number of bugs, the
highest priority of which is surely #750870, the OpenSSL licencing
issue. Looking at the upstream github repo, they take lots of
contributions, so it isn't likely that they can effectively relicence
with the OpenSSL exception. How likely is it that progress can be made
on #656650 in resolving it?

BTW, from the activity I see on https://github.com/FreeRDP/Remmina ,
it doesn't look inactive - they recently released a new beta.

I'm the maintainer for jbigkit, and have done some work on t38modem.

That said, I need a sponsor for my uploads.  I trust you'd be able to
continue to upload, if nothing else?

Warmest regards,

Michael


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



Bug#741441: gnustep-base-runtime: gdomap does chroot(/tmp)

2014-07-25 Thread Ansgar Burchardt
On 07/25/2014 11:05, Yavor Doganov wrote:
 Ansgar Burchardt wrote:
 On 07/24/2014 22:55, Yavor Doganov wrote:
  Do you have a suggestion how to handle this issue?

 I would just create an empty directory in /run (optionally via
 tmpfiles.d)
 
 Hmm, this doesn't look like a portable solution.
 
 or ship one in /usr/share/gdomap/empty-directory-for-chroot (or so)
 in the package itself.
 
 And this is Debian-specific.

Well, then don't chroot? That is less broken than chroot into a
world-writable location.

Ansgar


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



Bug#755988: qemu-user-binfmt: confusing short description about empty package

2014-07-25 Thread Vincent Lefevre
Package: qemu-user-binfmt
Version: 2.0.0+dfsg-7
Severity: minor

The qemu-user-binfmt short description is:

  QEMU user mode binfmt registration for qemu-user (empty package)

This is confusing because when looking at dpkg -l output, one can
think that this package doesn't contain anything and can be removed.
However, if I understand correctly, this package may still be useful
for its postinst and prerm scripts.

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

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

Versions of packages qemu-user-binfmt depends on:
ii  binfmt-support  2.1.4-1
ii  qemu-user   2.0.0+dfsg-7

qemu-user-binfmt recommends no packages.

qemu-user-binfmt suggests no packages.

-- no debconf information


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



Bug#755978: Please support multiple installation targets for gummiboot in RAID environments

2014-07-25 Thread Julian Andres Klode
On Fri, Jul 25, 2014 at 04:29:02AM +0200, Stefan Lippers-Hollmann wrote:
 Package: gummiboot
 Version: 45-2
 Severity: wishlist
 Tags: patch
 
 It would be nice if gummiboot would support installing its EFI loader 
 to multiple EFI system partitions in order to gain failsafe support for 
 RAID setups under UEFI. The attached patch allows (optionally) 
 configuring multiple targets via GUMMIBOOT_EFI.

I understand what you're trying to do, but my plan was to drop options,
not add some more. To be precise: Upstream only supports a single ESP
in both gummiboot and systemd. systemd provides a script called
kernel-install for installing kernels. I want to switch to that script.
(and that script is really primitive, and only supports configuring
the kernel cmdline or reading it from /proc/cmdline).

Upstream mounts /boot/efi at /boot, so there's not much chance to
get support for multiple ESPs there.

I'm not sure what I should do now.

-- 
Julian Andres Klode  - Debian Developer, Ubuntu Member

See http://wiki.debian.org/JulianAndresKlode and http://jak-linux.org/.

Be friendly, do not top-post, and follow RFC 1855 Netiquette.
- If you don't I might ignore you.


pgpEzshXdBWL7.pgp
Description: PGP signature


Bug#755989: cfdisk: german help page strangely formatted

2014-07-25 Thread Martin Steigerwald
Package: util-linux-locales
Version: 2.25-2
Severity: minor

Dear Maintainer,

Thank you a lot for packaging util-linux 2.25!

I found a minor issue with new cfdisk. The help page looks like this:

 Hilfe für cfdisk
 Project-Id-Version: util-linux 2.25-rc3
RDies ist cfdisk, ein Programm, das curses benutzt und es Ihnen
Perlaubt, auf Ihren Festplatten Partitionen anzulegen, zu löschen
Pund zu verändern.2014-07-12 21:56+0100
LProject-Id-Version: util-linux 2.25-rc3
RCopyright (C) 2014 Karel Zak removed
PBasierend auf dem originalen cfdisk von Kevin E. Martin  aeb.
PProject-Id-Version: util-linux 2.25-rc3
RBefehl  Bedeutungutil-linux@removed
P --07-22 11:17+0200
P  b  (De)Aktivieren der bootfähig-Markierung der aktuellen Partition
L  d  Die aktuelle Partition löschensome.mailadress@somedomain
L  h  Diese Hilfe some.mailadress@somedomain
L  n  Aus dem freien Bereich eine neue Partition erzeugen
M  q  das Programm beenden, ohne die Partitionstabelle zu schreiben
C  t  Partitionstyp ändernUTF-8 
C  s  Fix partitions order (only when in disarray)
P  W  Die Partitionstabelle auf die Festplatte schreiben (großes W)
X Da dies Daten auf der Festplatte zerstören kann, müssen
  Sie das Schreiben mit »ja« oder »nein« bestätigen oder
  ablehnen  
 Pfeil-hoch   den Cursor zur vorherigen Partition bewegen
 Pfeil-runter den Cursor zur nächsten Partition bewegen 
 Pfeil-links   den Cursor zum vorherigen Menüeintrag bewegen
 Pfeil-rechts den Cursor zum nächsten Menüeintrag bewegen
 Project-Id-Version: util-linux 2.25-rc3
RHinweis: Alle Befehle können mit Klein- oder Großbuchstaben
Peingegeben werden (ausgenommen Texte).0
PProject-Id-Version: util-linux 2.25-rc3
RVerwenden Sie lsblk(8) oder partx(8), um weitere Details zum Gerät anzuzeigen.
POT-Creation-Date: 2014-07-22 11:17+0200
PO-Revision-Date: 2014-07-12 21:56+0100 
Last-Translator: Mario Blättermann removed
Language-Team: German removed
Language: de
MIME-Version: 1.0   
Content-Type: text/plain; charset=UTF-8 
Content-Transfer-Encoding: 8bit 
Plural-Forms: nplurals=2; plural=(n != 1);  
X-Generator: Poedit 1.5.4


Seems some preprocessing is missing here.

The english help page looks fine.

Thanks,
Martin

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

Kernel: Linux 3.16.0-rc6-tp520-fixcompwrite+ (SMP w/4 CPU cores; PREEMPT)
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages util-linux-locales depends on:
ii  util-linux  2.25-2

util-linux-locales recommends no packages.

util-linux-locales suggests no packages.

-- no debconf information


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



Bug#755975: syntax error in /usr/sbin/update-gummiboot

2014-07-25 Thread Julian Andres Klode
Control: tag -1 pending

On Fri, Jul 25, 2014 at 03:59:50AM +0200, Stefan Lippers-Hollmann wrote:
 Package: gummiboot
 Version: 45-2
 Severity: minor
 
 Hi
 
 The current version of update-gummiboot has a small syntax error:
 
 if [ -z $GUMMIBOOT_ROOT] ; then
 GUMMIBOOT_ROOT=$(determine_root)
 fi
 
 the attached patch fixes this by adding the required whitespace to the 
 test condition.
 

Thank you for your patch. I merged it into the git repository as
commit 0cc9667253b86d4dca9dfea2810810b2dd82c8d6.

-- 
Julian Andres Klode  - Debian Developer, Ubuntu Member

See http://wiki.debian.org/JulianAndresKlode and http://jak-linux.org/.

Be friendly, do not top-post, and follow RFC 1855 Netiquette.
- If you don't I might ignore you.


pgpro1E3PRqIW.pgp
Description: PGP signature


Bug#755991: cfdisk: no cursor shown after exiting cfdisk

2014-07-25 Thread Martin Steigerwald
Package: util-linux
Version: 2.25-2
Severity: minor

Dear Maintainer,

Thank you for packaging 2.25!

A found a minor issue with cfdisk:

After exiting it the shell does not show a cursor anymore until I type
the commend reset to reset the terminal.

Tested with zsh and bash.

Would be confusing for newbies this new version of cfdisk is targetted at.

Thanks,
Martin

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

Kernel: Linux 3.16.0-rc6-tp520-fixcompwrite+ (SMP w/4 CPU cores; PREEMPT)
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages util-linux depends on:
ii  debconf [debconf-2.0]  1.5.53
ii  dpkg   1.17.10
ii  initscripts2.88dsf-53.2
ii  install-info   5.2.0.dfsg.1-4
ii  libblkid1  2.25-2
ii  libc6  2.19-7
ii  libmount1  2.25-2
ii  libncurses55.9+20140712-2
ii  libpam0g   1.1.8-3
ii  libselinux12.3-1
ii  libslang2  2.2.4-17
ii  libsmartcols1  2.25-2
ii  libtinfo5  5.9+20140712-2
ii  libuuid1   2.20.1-5.8
ii  lsb-base   4.1+Debian13
ii  tzdata 2014e-1
ii  zlib1g 1:1.2.8.dfsg-1

util-linux recommends no packages.

Versions of packages util-linux suggests:
ii  dosfstools  3.0.26-2
ii  kbd 1.15.5-1
ii  util-linux-locales  2.25-2

-- debconf information:
  util-linux/noauto-with-nonzero-passnum:


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



Bug#755990: cgmanager: fails to start cgmanager and reports [ ok ]

2014-07-25 Thread Cristian Ionescu-Idbohrn
Package: cgmanager
Version: 0.28-1
Severity: important

This is how it goes:

,
| # apt-get install cgmanager
| Reading package lists... Done
| Building dependency tree
| Reading state information... Done
| The following extra packages will be installed:
|   libcgmanager0 libnih-dbus1 libnih1
| Suggested packages:
|   cgmanager-utils
| The following NEW packages will be installed:
|   cgmanager libcgmanager0 libnih-dbus1 libnih1
| 0 upgraded, 4 newly installed, 0 to remove and 187 not upgraded.
| Need to get 317 kB of archives.
| After this operation, 818 kB of additional disk space will be used.
| Do you want to continue? [Y/n]
| Get:1 ...debian.org/debian/ unstable/main libcgmanager0 amd64 0.28-1 [33.4 kB]
| Get:2 ...debian.org/debian/ testing/main libnih1 amd64 1.0.3-4.2+b2 [126 kB]
| Get:3 ...debian.org/debian/ testing/main libnih-dbus1 amd64 1.0.3-4.2+b2 
[97.1 kB]
| Get:4 ...debian.org/debian/ unstable/main cgmanager amd64 0.28-1 [60.1 kB]
| Fetched 317 kB in 0s (602 kB/s)
| Retrieving bug reports... Done
| Parsing Found/Fixed information... Done
| Selecting previously unselected package libcgmanager0:amd64.
| (Reading database ... 552122 files and directories currently installed.)
| Preparing to unpack .../libcgmanager0_0.28-1_amd64.deb ...
| Unpacking libcgmanager0:amd64 (0.28-1) ...
| Selecting previously unselected package libnih1.
| Preparing to unpack .../libnih1_1.0.3-4.2+b2_amd64.deb ...
| Unpacking libnih1 (1.0.3-4.2+b2) ...
| Selecting previously unselected package libnih-dbus1.
| Preparing to unpack .../libnih-dbus1_1.0.3-4.2+b2_amd64.deb ...
| Unpacking libnih-dbus1 (1.0.3-4.2+b2) ...
| Selecting previously unselected package cgmanager.
| Preparing to unpack .../cgmanager_0.28-1_amd64.deb ...
| Unpacking cgmanager (0.28-1) ...
| Processing triggers for man-db (2.6.7.1-1) ...
| Processing triggers for readahead-fedora (2:1.5.6-4) ...
| Setting up libcgmanager0:amd64 (0.28-1) ...
| Setting up libnih1 (1.0.3-4.2+b2) ...
| Setting up libnih-dbus1 (1.0.3-4.2+b2) ...
| Setting up cgmanager (0.28-1) ...
| [] Starting cgroup management daemon: cgmanagercgmanager: Failed mounting 
memory onto /run/cgmanager/fs/memory: No such file or directory
| cgmanager: Failed mounting cgroups
| cgmanager: Failed to set up cgroup mounts
| . ok
| [] Starting cgroup management proxy daemon: cgproxycgproxy: Failed to 
open connection to unix:path=/sys/fs/cgroup/cgmanager.lower/sock: Failed to 
connect to socket /sys/fs/cgroup/cgmanager.lower/sock: No such file or directory
| cgproxy: Failed to set up as proxy
| . ok
`

Yes, I know...  The system is not fully upgraded (uptime 468 days).
Still, there's something here (package install) that doesn't seem right :(


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

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

Versions of packages cgmanager depends on:
ii  libc6  2.19-7
ii  libcgmanager0  0.28-1
ii  libdbus-1-31.8.6-1
ii  libnih-dbus1   1.0.3-4.2+b2
ii  libnih11.0.3-4.2+b2

cgmanager recommends no packages.

Versions of packages cgmanager suggests:
pn  cgmanager-utils  none

-- no debconf information


Cheers,

-- 
Cristian


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



Bug#755992: proftpd-mod-clamav: error: Can not stat file (9): Bad file descriptor

2014-07-25 Thread Stanislav German-Evtushenko
Package: proftpd-mod-clamav
Version: 0.10-1
Severity: critical

Dear Maintainer,

mod_clamav.c doesn't work and reports error: Can not stat file (9): Bad
file descriptor on a new file coming to ftp folder. As I discovered with
strace it closes a file descriptor before it tries to stat that
descriptor.

Best regards,
Stanislav


Bug#755993: node-express-generator: uninstallable because of version number

2014-07-25 Thread Xavier Bestel
Package: node-express-generator
Version: 4.0.0-1
Severity: grave
Justification: renders package unusable

Dear Maintainer,

There's only one version ofthis package, and it depends on an inexistant 
version of another package, node-express (it breaks 4.1.1-1 and the only 
version available is 4.1.1~dfsg-1).
I was unable to install it, apparently it's just a minor problem with version 
numbers.

Thanks,
Xav


-- System Information:
Debian Release: 7.6
  APT prefers stable
  APT policy: (990, 'stable'), (500, 'unstable'), (500, 'testing')
Architecture: i386 (x86_64)

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


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



Bug#755206: gmpc: Upcoming vala-0.16 removal

2014-07-25 Thread Etienne Millon
forcemerge 739030 755206
thanks

* po...@debian.org po...@debian.org [140721 08:38]:
 gmpc build-depends on vala-0.16, which is pretty old and we would
 like to remove. You should instead use the much newer valac-0.24, or
 preferably the unversioned 'valac' package.

Hi,

I have started to work on this. I will first update libmpd and package
a newer gmpc. Thanks!

-- 
Etienne Millon


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



Bug#688760: please enable upstream crash reporting

2014-07-25 Thread Sylvestre Ledru
Hello,

The attached patch enables the crash reporting tool.

It would be nice if that could be implemented in a future upload. Crash
report is a critical part of the Firefox upstream release team workflow.
Having Debian/Linux packages reporting would help to improve the overall
quality of the software.

Thanks,
Sylvestre

From 32bc3d59e91ff99f76cf5e7166bd1d64d9bd3d0e Mon Sep 17 00:00:00 2001
From: Sylvestre Ledru sylves...@debian.org
Date: Fri, 25 Jul 2014 11:58:57 +0200
Subject: [PATCH] Enable the crash reporter

---
 debian/browser.install.in   | 5 +
 debian/browser.mozconfig.in | 1 -
 debian/changelog| 6 ++
 3 files changed, 11 insertions(+), 1 deletion(-)

diff --git a/debian/browser.install.in b/debian/browser.install.in
index 63a8712..c3280be 100644
--- a/debian/browser.install.in
+++ b/debian/browser.install.in
@@ -70,3 +70,8 @@ usr/lib/@browser@/browser/chrome.manifest
 
 usr/lib/@browser@/webapprt-stub
 usr/lib/@browser@/webapprt usr/share/@browser@
+
+usr/lib/@browser@/crashreporter.ini
+usr/lib/@browser@/crashreporter
+usr/lib/@browser@/Throbber-small.gif
+usr/lib/@browser@/browser/crashreporter-override.ini
\ No newline at end of file
diff --git a/debian/browser.mozconfig.in b/debian/browser.mozconfig.in
index 8144e59..9403b49 100644
--- a/debian/browser.mozconfig.in
+++ b/debian/browser.mozconfig.in
@@ -25,7 +25,6 @@ ac_add_options --disable-installer
 ac_add_options --disable-javaxpcom
 ac_add_options --disable-elf-dynstr-gc
 ac_add_options --enable-system-hunspell # MOZ_NATIVE_HUNSPELL=1
-ac_add_options --disable-crashreporter
 ac_add_options --disable-strip
 ac_add_options --disable-install-strip
 ac_add_options --enable-url-classifier
diff --git a/debian/changelog b/debian/changelog
index e567376..6c21588 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+iceweasel (31.0-2) UNRELEASED; urgency=medium
+
+  * Enable the crash reporter
+
+ -- Sylvestre Ledru sylves...@debian.org  Fri, 25 Jul 2014 11:51:07 +0200
+
 iceweasel (31.0-1) unstable; urgency=medium
 
   * New upstream release.
-- 
2.0.1



Bug#755994: oolite: New upstream version available; change of upstream VCS

2014-07-25 Thread Chris Morris
Package: oolite
Version: 1.77.1-3
Severity: wishlist

Dear Maintainer,

Oolite 1.80 is now available as the recommended stable release. VCS has 
also changed to https://github.com/OoliteProject/oolite from the now 
unavailable Berlios SVN, so the debian/watch file also needs updating

Thanks

 - Chris

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

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

Versions of packages oolite depends on:
ii  gnustep-base-runtime  1.22.1-4
ii  libc6 2.13-38+deb7u1
ii  libgcc1   1:4.7.2-5
ii  libgl1-mesa-glx [libgl1]  8.0.5-4+deb7u2
ii  libglu1-mesa [libglu1]8.0.5-4+deb7u2
ii  libgnustep-base1.22   1.22.1-4
ii  libmozjs185-1.0   1.8.5-1.0.0+dfsg-4
ii  libobjc4  4.7.2-5
ii  libpng12-01.2.49-1
ii  libsdl-mixer1.2   1.2.12-3
ii  libsdl1.2debian   1.2.15-5
pn  oolite-data   none

Versions of packages oolite recommends:
pn  oolite-data-sounds  none
pn  oolite-doc  none

oolite suggests no packages.


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



Bug#754441: GMastermind Relicensing

2014-07-25 Thread Riley Baird
Hi Riccardo,

I'm glad that you're fine with releasing your contributions under GPL-2+.

I'll send your arguments to debian-legal, and we'll see what they make
of them; you might be right.

Riley

On 24/07/14 07:49, Riccardo Mottola wrote:
 Hi Riley,
 
 the program comes with a COPYING file, which standard to contain the
 license used. In thiscase, it contains the GPL v2 or later.
 
 In other words:
 1) the program headers contain reference to the GPL v2 or later
 2) the COPYING file distirbuted with GMastermind contains the GPL v2 or
 later text
 3) only the readme file contains a reference to the program being
 distributed GPL v2 without the or later clause
 
 To me it is clear that the intent is the program to be under GPLv2 or
 later and that the readme.txt contains a small omission. The source
 files and the COPYING file have priority!
 
 Given this, I already consider all my contributions under  the GPL v2
 or later clause.
 
 Riccardo
 
 On 2014-07-22 09:26:48 +0200 Riley Baird
 bm-2cvqnduybau5do2dfjtrn7zbaj246s4...@bitmessage.ch wrote:
 
 Hi Riccardo,

 Even if you're not the original author, if you've made any modifications
 to the work, you own copyright on them.

 For example, Linus Torvalds is not the only copyright holder of Linux;
 the other ~5000 contributors all have copyright on it as well. This is
 why the kernel can't be upgraded to GPL-3, even if Linus wants to.

 So, having a statement from you would be helpful. (You are only
 relicensing *your* contributions)

 Also, what do you mean by the COPYING is the full GPL v2 or later?

 Riley
 


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



Bug#755246: notmuch-mutt: search that returns whole threads

2014-07-25 Thread David Bremner
Stefano Zacchiroli z...@debian.org writes:


 In fact, I was hoping in some sort of meta-syntax, to piggyback on. For
 instance, if field:value is something that is always threated
 specially by notmuch, we can use something like notmuch:threads (vs,
 say, notmuch:nothreads) and strip it before it hits notmuch.

 If you've no objection to this, I can implement something like it.

(bringing in the upstream list, as this is really an upstream design
issue)

Currently any unrecognized field:value will be searched for as a phrase
[1], and is equivalent to field value, field.value, field-value, among
others.  So as long as notmuch: is not a recognized prefix, your scheme
will not block any searches.  

It doesn't seem especially likely that we'll want to use notmuch: as a
prefix; of course if you were to choose something with mutt in the
name that would be more nearly a sure thing.



[1]: http://xapian.org/docs/queryparser.html


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



Bug#755966: tracker.debian.org: Update Ubuntu COF to modern logo

2014-07-25 Thread Raphael Hertzog
Hello,

On Thu, 24 Jul 2014, Dimitri John Ledkov wrote:
 Please consider updating ubuntu COF logo on the new tracker page.
 I have prepared the below patch, blind, but please test it cause I
 didn't manage to start my own instance of the tracker to check how it
 looks like.

It doesn't stand out with the relatively dark background. Maybe
we should use another variant made for dark backgrounds?

Can you update your patch accordingly?

Otherwise it looks fine, the image was properly updated.

Cheers,
-- 
Raphaël Hertzog ◈ Debian Developer

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


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



Bug#754326: gtick.desktop placed into wrong folder

2014-07-25 Thread Petter Reinholdtsen
[Mike Gabriel]
 the gtick.desktop file gets installed to /usr/share/application.
 
 It should be the plural form: /usr/share/applications.

A misplaced desktop file do not seem like a release critical problem
to me.  Why do you believe the bug should have severity serious?

-- 
Happy hacking
Petter REinholdtsen


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



Bug#755995: External USB HD problem in linux kernel 3.16 with usb-uas module

2014-07-25 Thread Jos van Wolput

Package: linux-image-3.16-rc6-amd64
Version: 3.16~rc6-1~exp1
Severity: important

Dear Maintainer,

After upgrading linux to 3.16-rc6 I have problems with my Seagate expansion 
hard drive.
While mounting it or writing to it, my whole system quite often freezes and 
needs a hard reset.

It seems to be a known UAS (USB Attached SCSI) issue and there is a workaround, 
see
https://bbs.archlinux.org/viewtopic.php?id=183190
The mentioned workaround fixes the issue by telling the USB-UAS module to 
ignore the device.
To avoid this issue the UAS module should be patched to handle the hard disk 
correctly.

-- System Information:
Debian Release: jessie/sid
Architecture: amd64 (x86_64)
Kernel: linux-image-3.16-rc6-amd64
Systemd, udev: 208-3

Kind regards,
Jos v.Wolput


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



Bug#755848: preseed d-i netcfg/hostname does not set hostname

2014-07-25 Thread Brian Potkin
On Wed 23 Jul 2014 at 23:12:02 +0200, Andre Osku Schmidt wrote:

 using d-i netcfg/hostname string foobar in preseed file still makes
 the installer to ask user for hostname. or when using kernel option
 priority=critcal hostname is silently set to noname.
 
 info from:
 https://www.debian.org/releases/wheezy/example-preseed.txt

  # Any hostname and domain names assigned from dhcp take precedence over
  # values set here. However, setting the values still prevents the questions
  # from being shown, even if values come from dhcp.
  d-i netcfg/get_hostname string unassigned-hostname

This line is used with d-i netcfg/hostname string foobar.

I do not think this is a bug.

Regards,

Brian.


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



Bug#741275: Debian Bug report logs - #741275

2014-07-25 Thread Víctor Manuel Espí
Hello,Same mistake in Debian Wheezy,Jessie and Ubuntu 
12.04,14.04https://bugs.launchpad.net/ubuntu/+source/freerdp/+bug/1317175
Thanks, Víctor.
freerdp-x11 error in spanish keyboard numeric keypadUbuntu “freerdp” package 
Bugs Bug #1317175Reported by victor manuel espi on 2014-05-0710This bug affects 
2 peopleAffectsStatusImportanceAssigned toMilestone​freerdp 
(Ubuntu)ConfirmedUndecidedUnassignedAlso affects project (?) Also affects 
distribution/package Nominate for seriesBug Description   * What led up to the 
situation?
xfreerdp --sec rdp --no-nla --plugin rdpsnd --data alsa latency:40 -- --plugin 
rdpdr --data disk:terminal:/media -- -u user -a 16 -k 0x040A --plugin 
cliprdr -z 192.168.0.205   * What was the outcome of this action?
With spanish keyboard In numeric keypad, pressing key / button appears - and 
pressing key . button appears ,   * What outcome did you expect instead?
In numeric keypad, pressing key / button appears / , and pressing key . button 
appears .Add tags Tag helpLaunchpad Janitor (janitor) wrote 17 hours 
ago:#1Status changed to 'Confirmed' because the bug affects multiple 
users.Changed in freerdp (Ubuntu):status:New → ConfirmedMarcus Trautwig 
(marcus-trautwig) wrote 17 hours ago:#2I can see the same problem on multiple 
Computers with German keyboards, running Ubuntu 14.04 (Unity) and Kubuntu 
14.04. The key / on the numpad works as expected in the respective desktop 
environment, but produces a - in the xfreerdp window (also when running 
full-screen).German keyboards have a , key in the bottom right, this works as 
expected.See full activity logTo post a comment you must log in.
  

Bug#755993: [Pkg-javascript-devel] Bug#755993: node-express-generator: uninstallable because of version number

2014-07-25 Thread Leo Iannacone
On 25 July 2014 11:44, Xavier Bestel xavier.bes...@free.fr wrote:
 I was unable to install it, apparently it's just a minor problem with version 
 numbers.

Hi Xavier,

I can't reproduce this bug in a fresh installation of unstable (I was
able to install, remove, purge it).

Even piuparts reports no error about node-express-generator... are you
sure about that?

Regards,
L.


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



Bug#715931:

2014-07-25 Thread Michael van der Kolff
I've diagnosed this bug - it occurs whenever --anim= is passed any
non-existent file.  The fix should then be kind of trivial...

Cheers,

Michael


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



Bug#748455: umbrello: Unable to move elements in Umbrello diagrams

2014-07-25 Thread Maximiliano Curia
Control: tags -1 + unreproducible

Hi,

I couldn't reproduce this issue. But using the provided file, I fixed some
segfaults related to copy and pasting. Please let us know if you can still
reproduce the issue with the version 4:4.13.3-1, thanks.

-- 
Las computadoras son inútiles, solo pueden darte respuestas. -- Pablo Picasso
Saludos /\/\ /\  `/


signature.asc
Description: Digital signature


Bug#729825: wdm: lacks integration with consolekit

2014-07-25 Thread Axel Beckert
Control: tag -1 + moreinfo

Hi Jamin,

Jamin W. Collins wrote:
 Version: 1.28-16
[...]
 It appears that wdm lacks integration with consolekit,

As far as I know, ConsoleKit is deprecated in favor of systemd-logind
and will go away. And we got wdm working with logind in 1.28-15.

So I'm a little bit confused about this bug report. Cc'ing Michael
Stapelberg who was so kind to fix wdm for use with logind. I don't
know too much about how logind is supposted to replace ConsoleKit.

 this in turn means that user sessions launched via wdm a prevented
 from interacting with things such as network configuration (via
 nm-applet) and laptop power states such as suspend and resume.

I don't use GNOME's NetworkManager but WICD. ConsoleKit is not
installed.

But xfce-power-manager was IIRC able to do suspend to RAM. Now I do
Suspend-to-RAM with with systemd upon lid-close and that works fine in
most situations, too.

Then again I don't use any of the common desktop environments but only
explicitly chosen parts of them in a carefully fine-tuned .Xsession
file.

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


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



Bug#755996: ulatencyd: Install ulatencyd with systemd can not normal shutdown (even as root)

2014-07-25 Thread John Wong
Package: ulatencyd
Version: 0.5.0-9
Severity: normal

Dear Maintainer,


   I want to reopen bug report (the old one number: 755375)

When my system installed ulatencyd, my system can not normal
shutdown, even as root.
I opened the bug report, number: 755375,
deveplor said:

-
I believe this is a configuration issue, not a bug. Please see 
(1) https://github.com/poelzi/ulatencyd/wiki/Faq#id4

Closing, please reopen if the problem persists after adjusting
the systemd 
configuration as documented in the ulatencyd faq.
-

I tried remove /etc/ulatencyd, then reinstall ulatencyd with
default setup/config (/etc/ulatencyd/*), but still can not
normal shutdown.
then I tried following the (1)Faq#id4
add 3 line to /etc/ulatencyd/system.conf

---
DefaultControllers=
JoinControllers=
controllers=
---

but still can not normal shutdown.

then I remove ulatencyd (apt-get remove ulatencyd),
my system can normal shutdown.

So, I want to reopen this bug report.

Thank you.


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


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

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

Versions of packages ulatencyd depends on:
ii  dbus   1.8.6-1
ii  libc6  2.19-7
ii  libdbus-1-31.8.6-1
ii  libdbus-glib-1-2   0.102-1
ii  libglib2.0-0   2.40.0-3
ii  liblua5.1-05.1.5-5
ii  libpolkit-gobject-1-0  0.105-6.1
ii  libxau61:1.0.8-1
ii  libxcb11.10-3
ii  lua-posix  31-2
ii  lua5.1 [lua]   5.1.5-5

Versions of packages ulatencyd recommends:
ii  consolekit  0.4.6-5

ulatencyd suggests no packages.

-- no debconf information


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



Bug#754863: missing license in debian/copyright

2014-07-25 Thread Dmitry Shachnev
Control: severity -1 important
Control: tags -1 moreinfo

Hi Thorsten,

On Tue, 15 Jul 2014 12:44:17 +0200, Thorsten Alteholz wrote:
 [...]
 please add the missing licenses of:
  doc/creating_themes/*
 to debian/copyright.

Was this bug report generated automatically? I think it is false positive.

Indeed, creating_themes/C/index.docbook mentions the LGPL, but the context is:

  [...]
  Would it be useful to spin off Metacity's theme parsing code into a separate,
  LGPL-licensed library so that other applications could use it more easily?

Licensecheck does not find any non-GPL files as well.

I am lowering the severity of this bug to let the current version migrate from
unstable to testing.

--
Dmitry Shachnev

signature.asc
Description: OpenPGP digital signature


Bug#754441: GMastermind Relicensing

2014-07-25 Thread Yavor Doganov
Riley Baird wrote:
 I'll send your arguments to debian-legal, and we'll see what they
 make of them; you might be right.

As I said to you earlier, you are making a mountain out of a
molehill.


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



Bug#740753: Re: [pkg-go] Bug#740753: RFP: packer -- create vm images for multiple platforms from a single source configuration

2014-07-25 Thread Balint Reczey
Hi Emmanuel,

On 03/04/2014 11:10 PM, Michael Stapelberg wrote:
 Hi Emmanuel,
 
 Emmanuel Kasper emman...@libera.cc writes:
 I am interested in packaging packer ! With the aim one day of creating
 official debian images for VirtualBox, though I would wait before to know if
 someone is willing to upload the resulting work in the archive.
 An RFP bugreport means that you want someone else to package this. If
 _you_ want to work on it, you should create an ITP.
 
 In general, we welcome any contributions (and will sponsor uploads when
 the package fulfills our quality criteria), as long as they are
 maintained as part of pkg-go. Feel free to reach out to us at
 #debian-golang if you have questions.
Have you made any progress with the package? If so I would happily help
reviewing the package, too. If not I'm thinking about packaging packer
myself.

Cheers,
Balint


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



Bug#755993: [Pkg-javascript-devel] Bug#755993: node-express-generator: uninstallable because of version number

2014-07-25 Thread Xavier Bestel
Le vendredi 25 juillet 2014 à 12:52 +0200, Leo Iannacone a écrit :
 On 25 July 2014 11:44, Xavier Bestel xavier.bes...@free.fr wrote:
  I was unable to install it, apparently it's just a minor problem with 
  version numbers.
 
 Hi Xavier,
 
 I can't reproduce this bug in a fresh installation of unstable (I was
 able to install, remove, purge it).
 
 Even piuparts reports no error about node-express-generator... are you
 sure about that?

OK, the bug report was a bit wrong: it's impossible to install alongside
node-express, which makes it a bit useless.

[root@awak:~]$ LANG=C aptitude install node-express-generator
The following NEW packages will be installed:
  node-express-generator{b} 
0 packages upgraded, 1 newly installed, 0 to remove and 103 not upgraded.
Need to get 0 B/7338 B of archives. After unpacking 97.3 kB will be used.
The following packages have unmet dependencies:
 node-express-generator : Breaks: node-express ( 4.1.1-1) but 4.1.1~dfsg-1 is 
installed.
The following actions will resolve these dependencies:

 Remove the following packages:
1) node-express



Accept this solution? [Y/n/q/?] ^C
[root@awak:~]$ 


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



Bug#755997: arping not found

2014-07-25 Thread Harald Dunkel
Package: network-manager
Version: 0.9.10.0-1

daemon.log shows that NM tries to run /sbin/arping instead of
/usr/sbin/arping:

:
Jul 25 13:05:34 ppcl001 NetworkManager[4158]: warn Could not send ARP for 
local address 192.168.1.9: Failed to execute child process /sbin/arping (No 
such file or directory)
:

BTW, arping is not mentioned in NM's dependencies, recommendencies
or suggestions.


Regards
Harri


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



Bug#616447: Fyre: adoption

2014-07-25 Thread Michael van der Kolff
Dear Christoph,

I've been playing around with this package, and I'm willing to adopt
it, though I will need a sponsor. As a start, I'll update the
standards version, fix the build flags, and #715931.  I've opened
https://github.com/mvanderkolff/fyre-packaging as my packaging repo.

Cheers,


Michael


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



Bug#755998: zathura: Won't open compressed files

2014-07-25 Thread Marc-Jano Knopp
Package: zathura
Version: 0.2.9-2
Severity: wishlist

It seems zathura does not open compressed files:

$ zathura maximabook-19-Sept-2004.pdf.gz  
error: unknown file type

^C
$

As counter examples, the following programs can open compressed PDF files:

- xpdf
- mupdf
- evince
- gv

It would be very nice if zathura could handle compression
transparently, because then I would have to call other PDF readers
less often. :-)


-- System Information:
Debian Release: jessie/sid
  APT prefers testing
  APT policy: (501, 'testing'), (50, 'unstable'), (25, 'experimental'), (12, 
'stable')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 3.14-1-amd64 (SMP w/6 CPU cores)
Locale: LANG=en_US.ISO-8859-15, LC_CTYPE=en_US.ISO-8859-15 (charmap=ISO-8859-15)
Shell: /bin/sh linked to /bin/bash

Versions of packages zathura depends on:
ii  libc6 2.19-7
ii  libcairo2 1.12.16-2
ii  libgirara-gtk3-1  0.2.2-2
ii  libglib2.0-0  2.40.0-3
ii  libgtk-3-03.12.2-1+b1
ii  libmagic1 1:5.19-1
ii  libpoppler-glib8  0.26.2-2
ii  libsqlite3-0  3.8.5-2
ii  libsynctex1   2014.20140528.34243-4

zathura recommends no packages.

Versions of packages zathura suggests:
ii  chromium [www-browser]   35.0.1916.153-2
ii  conkeror [www-browser]   1.0~~pre-1+git140616-1
ii  dillo [www-browser]  3.0.4-1
ii  dwb [www-browser]20140702hg-1
ii  iceweasel [www-browser]  24.5.0esr-1
ii  konqueror [www-browser]  4:4.12.4-1
ii  midori [www-browser] 0.4.3+dfsg-0.1
ii  netsurf [www-browser]2.9-2.1
ii  netsurf-gtk [www-browser]2.9-2.1
ii  poppler-data 0.4.6-5
ii  uzbl [www-browser]   0.0.0~git.20120514-1.1
ii  w3m [www-browser]0.5.3-16
ii  xemacs21-mule [www-browser]  21.4.22-8
ii  zathura-cb   0.1.2-5
ii  zathura-djvu 0.2.3-5
ii  zathura-ps   0.2.2-5

-- no debconf information


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



Bug#755989: cfdisk: german help page strangely formatted

2014-07-25 Thread Andreas Henriksson
Hello Martin Steigerwald!

Thanks for your bug report and kind words.

On Fri, Jul 25, 2014 at 11:39:50AM +0200, Martin Steigerwald wrote:
[...]
 I found a minor issue with new cfdisk. The help page looks like this:
 
  Hilfe für cfdisk
[...]

This problem could possibly be caused by this patch:
http://anonscm.debian.org/cgit/collab-maint/pkg-util-linux.git/tree/debian/patches/cfdisk.8-mention-slang-next-to-curses.-Closes-295487.patch?h=debian-2.25

Do you think you could rebuild without that one and report back if it
makes a difference?

Thanks in advance!

Regards,
Andreas Henriksson


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



Bug#755999: [gdb] gdb segfaults when reading symbols

2014-07-25 Thread Ondra Lengal
Package: gdb
Version: 7.7.1-2
Severity: normal

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

  Dear maintainer,

I encountered the following segmentation fault of GDB when debugging my
program:

  $ gdb ./explicit_tree_aut_test
  GNU gdb (Debian 7.7.1-2) 7.7.1
  Copyright (C) 2014 Free Software Foundation, Inc.
  License GPLv3+: GNU GPL version 3 or later http://gnu.org/licenses/gpl.html
  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:
  http://www.gnu.org/software/gdb/bugs/.
  Find the GDB manual and other documentation resources online at:
  http://www.gnu.org/software/gdb/documentation/.
  For help, type help.
  Type apropos word to search for commands related to word...
  Reading symbols from ./explicit_tree_aut_test...zsh: segmentation fault  gdb 
./explicit_tree_aut_test

I can reproduce it on my (debian sid) machine by the following sequence
of operations (provided adequate supporting packages are installed):

  $ git clone https://github.com/ondrik/libvata.git libvata-gdbbug (1)
  $ cd libvata-gdbbug  (2)
  $ make debug (3)
  $ cd build/unit_tests(4)
  $ gdb ./explicit_tree_aut_test   (5)

Note that when I run make release instead of make debug in step (3),
then gdb works fine (without debuggin symbols, of course, but does not
SEGFAULTs). Under bash, the results is the same as under zsh.

Can I ask you about any idea how to make GDB work again? Thank you.

  Best regards,
Ondra

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

Debian Release: jessie/sid
  500 unstablemerlin.fit.vutbr.cz 
  500 unstabledebian.yeasoft.net 

--- Package information. ---
Depends (Version) | Installed
=-+-=
libc6   (= 2.15) | 
libexpat1  (= 2.0.1) | 
liblzma5 (= 5.1.1alpha+20110809) | 
libncurses5   (= 5.5-5~) | 
libpython2.7 (= 2.7) | 
libreadline6 (= 6.0) | 
libtinfo5 | 
zlib1g   (= 1:1.2.0) | 


Recommends  (Version) | Installed
=-+-===
libc-dbg  | 
gdbserver | 7.7.1-2


Suggests  (Version) | Installed
===-+-===
gdb-doc | 



signature.asc
Description: Digital signature


Bug#756000: regression in Catalyst::Plugin::Session (since ver. 0.35)

2014-07-25 Thread Martin Zobel-Helas
Package: libcatalyst-plugin-session-perl
Severity: minor
Tags: patch

Hi,

In the version 0.35 of Session.pm, the method
calculate_initial_session_expires has been changed and now it tries to
get a stored session_expired if sessionid exists. One of its usage is
inside reset_session_expires() which is called during a session
creation.

There is no real need to ask for session data here because the
session was just created. 

In most cases, an additional get_session_data() call costs nothing, but
we are using Infinispan as session store for caching and such call means
at least one or even several remote requests returning no data. The
simple fix for this problem can be as follows.

 sub create_session_id {
 my $c = shift;

 my $sid = $c-generate_session_id;

 $c-log-debug(qq/Created session $sid/) if $c-debug;

-$c-_sessionid($sid);
 $c-reset_session_expires;
+$c-_sessionid($sid);
 $c-set_session_id($sid);

 return $sid;
 } 




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

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

-- 
 Martin Zobel-Helas zo...@debian.orgDebian System Administrator
 Debian  GNU/Linux Developer   Debian Listmaster
 http://about.me/zobel   Debian Webmaster
 GPG Fingerprint:  6B18 5642 8E41 EC89 3D5D  BDBB 53B1 AC6D B11B 627B 


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



Bug#754619: works for me

2014-07-25 Thread Plamen Aleksandrov
I just tried building sdformat on MIPS and it build successfully with all tests 
passing.

I suppose we should try building it again.


signature.asc
Description: Digital signature


Bug#755893: Smart Card IO fails to detect any card terminals

2014-07-25 Thread Peter De Wachter
Package: openjdk-7-jre-headless
Version: 7u65-2.5.1-3
Followup-For: Bug #755893

Ok, I think I figured this out. PC/SC initialization fails when the
method PlaformPCSC#getLibraryName() fails. This method tries to guess
the location of libpcsclite but can't find it on Debian systems. With
--enable-system-pcsc, the return value is never used, but the method
is called unconditionally and still needs to succeed. 

So this bug was caused by the removal of libpcsclite-dlopen.diff. That
patch made #getLibraryName() return a constant string.

Below is simpler test program. It should succeed as long as pcscd is
installed. A card reader isn't needed.

import javax.smartcardio.*;
public class PCSC {
  public static void main (String[] args) throws Exception {
TerminalFactory.getInstance(PC/SC, null);
  }
}


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



Bug#630941: [Pkg-kde-extras] Bug#630941: tora should probably depen on libqt4-sql-pgsql | libqt4-sql-mysql | libqt4-sql-odbc

2014-07-25 Thread Thorsten Glaser
On Sun, 24 Feb 2013, Michael Meskes wrote:

  This is really an issue, as it’s puzzling when you
  start tora and have no database for choosing, only
  MySQL… please add this, at least as Recommends, so
  people know what to look for.
 
 tora depends on libqt4-sql which in turn recommends:
 
 libqt4-sql-mysql | libqt4-sql-odbc | libqt4-sql-psql | libqt4-sql-sqlite | 
 libqt4-sql-sqlite2 | libqt4-sql-ibase
 
 So I guess, we have what we need.

No. Nobody is looking at transitive Recommends. Please
add them directly to the tora package.

I had to look into archived bugs on the tora package
to figure this out, again, after not having used it
for a while, as a coworker now wants this.

bye,
//mirabilos
-- 
tarent solutions GmbH
Rochusstraße 2-4, D-53123 Bonn • http://www.tarent.de/
Tel: +49 228 54881-393 • Fax: +49 228 54881-235
HRB 5168 (AG Bonn) • USt-ID (VAT): DE122264941
Geschäftsführer: Dr. Stefan Barth, Kai Ebenrett, Boris Esser, Alexander Steeg


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



Bug#756001: python-tidylib: Please build a Python 3 package

2014-07-25 Thread Dmitry Shachnev
Source: python-tidylib
Version: 0.2.1~dfsg-2
Severity: wishlist

Dear Maintainer,

Upstream PyTidyLib 0.2.3 now fully supports Python 3.

I would like to have a python3-tidylib package to enable tidylib
support in Python-Markdown.

See https://wiki.debian.org/Python/LibraryStyleGuide for an example
on how to build both Python 2 and Python 3 packages for a module.

--
Dmitry Shachnev

signature.asc
Description: OpenPGP digital signature


Bug#755977: Should conflict with systemd-sysv

2014-07-25 Thread Michael Biebl
I don't think a conflict is the proper fix for this.

Serge told me that cgmanager is supposed coexist with systemd as PID 1.

Maybe the SysV init script can be adjusted to behave different depening
on whether systemd is the active PID 1.

The canonical check for this is test -d /run/systemd/system


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



signature.asc
Description: OpenPGP digital signature


Bug#756002: grub-efi-amd64: Changes EFI boot manager settings

2014-07-25 Thread Julian Andres Klode
Package: grub-efi-amd64
Version: 2.02~beta2-11
Severity: normal

I have both gummiboot and grub installed on my laptop. Whenever grub is updated,
it sets itself as the default bootloader in the EFI variables. I do not want
grub to be the default bootloader, it's only there as a fallback if I mess up
gummiboot.

It should only do this on the initial install, it's counter productive to
set the active boot entry on every upgrade.


-- Package-specific info:

*** WARNING grub-setup left core.img in filesystem

*** BEGIN /proc/mounts
/dev/sdb2 / ext4 
rw,noatime,journal_checksum,journal_async_commit,errors=remount-ro,commit=600,data=ordered
 0 0
/dev/sdb3 /home ext4 
rw,noatime,journal_checksum,journal_async_commit,commit=600,data=ordered 0 0
/dev/sdb1 /boot/efi vfat 
rw,relatime,fmask=0022,dmask=0022,codepage=437,iocharset=utf8,shortname=mixed,errors=remount-ro
 0 0
*** END /proc/mounts

*** BEGIN /boot/grub/device.map
(hd0)   /dev/disk/by-id/usb-SanDisk_Cruzer_Blade_20052845510C6160C9F6-0:0
(hd1)   /dev/disk/by-id/ata-HGST_HTS725050A7E630_TF755AWHJ0AGDM
(hd2)   /dev/disk/by-id/ata-PLEXTOR_PX-128M5M_P02315109046
*** END /boot/grub/device.map

*** BEGIN /boot/grub/grub.cfg
#
# DO NOT EDIT THIS FILE
#
# It is automatically generated by grub-mkconfig using templates
# from /etc/grub.d and settings from /etc/default/grub
#

### BEGIN /etc/grub.d/00_header ###
if [ -s $prefix/grubenv ]; then
  set have_grubenv=true
  load_env
fi
if [ ${next_entry} ] ; then
   set default=${next_entry}
   set next_entry=
   save_env next_entry
   set boot_once=true
else
   set default=0
fi

if [ x${feature_menuentry_id} = xy ]; then
  menuentry_id_option=--id
else
  menuentry_id_option=
fi

export menuentry_id_option

if [ ${prev_saved_entry} ]; then
  set saved_entry=${prev_saved_entry}
  save_env saved_entry
  set prev_saved_entry=
  save_env prev_saved_entry
  set boot_once=true
fi

function savedefault {
  if [ -z ${boot_once} ]; then
saved_entry=${chosen}
save_env saved_entry
  fi
}
function load_video {
  if [ x$feature_all_video_module = xy ]; then
insmod all_video
  else
insmod efi_gop
insmod efi_uga
insmod ieee1275_fb
insmod vbe
insmod vga
insmod video_bochs
insmod video_cirrus
  fi
}

if [ x$feature_default_font_path = xy ] ; then
   font=unicode
else
insmod part_gpt
insmod ext2
set root='hd2,gpt2'
if [ x$feature_platform_search_hint = xy ]; then
  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,gpt2 
--hint-efi=hd1,gpt2 --hint-baremetal=ahci1,gpt2 --hint='hd2,gpt2'  
dd840eac-0283-45e9-8f04-ef33f516d29d
else
  search --no-floppy --fs-uuid --set=root dd840eac-0283-45e9-8f04-ef33f516d29d
fi
font=/usr/share/grub/unicode.pf2
fi

if loadfont $font ; then
  set gfxmode=auto
  load_video
  insmod gfxterm
  set locale_dir=$prefix/locale
  set lang=de_DE
  insmod gettext
fi
terminal_output gfxterm
if [ ${recordfail} = 1 ] ; then
  set timeout=-1
else
  if [ x$feature_timeout_style = xy ] ; then
set timeout_style=menu
set timeout=5
  # Fallback normal timeout code in case the timeout_style feature is
  # unavailable.
  else
set timeout=5
  fi
fi
### END /etc/grub.d/00_header ###

### BEGIN /etc/grub.d/05_debian_theme ###
insmod part_gpt
insmod ext2
set root='hd2,gpt2'
if [ x$feature_platform_search_hint = xy ]; then
  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,gpt2 
--hint-efi=hd1,gpt2 --hint-baremetal=ahci1,gpt2 --hint='hd2,gpt2'  
dd840eac-0283-45e9-8f04-ef33f516d29d
else
  search --no-floppy --fs-uuid --set=root dd840eac-0283-45e9-8f04-ef33f516d29d
fi
insmod png
if background_image /usr/share/images/desktop-base/joy-grub.png; then
  set color_normal=white/black
  set color_highlight=black/white
else
  set menu_color_normal=cyan/blue
  set menu_color_highlight=white/blue
fi
### END /etc/grub.d/05_debian_theme ###

### BEGIN /etc/grub.d/10_linux ###
function gfxmode {
set gfxpayload=${1}
}
set linux_gfx_mode=
export linux_gfx_mode
menuentry 'Debian GNU/Linux' --class debian --class gnu-linux --class gnu 
--class os $menuentry_id_option 
'gnulinux-simple-dd840eac-0283-45e9-8f04-ef33f516d29d' {
load_video
insmod gzio
insmod part_gpt
insmod ext2
set root='hd2,gpt2'
if [ x$feature_platform_search_hint = xy ]; then
  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,gpt2 
--hint-efi=hd1,gpt2 --hint-baremetal=ahci1,gpt2 --hint='hd2,gpt2'  
dd840eac-0283-45e9-8f04-ef33f516d29d
else
  search --no-floppy --fs-uuid --set=root 
dd840eac-0283-45e9-8f04-ef33f516d29d
fi
echo'Linux 3.14-2-amd64 wird geladen …'
linux   /boot/vmlinuz-3.14-2-amd64 
root=UUID=dd840eac-0283-45e9-8f04-ef33f516d29d ro  quiet i915.i915_enable_fbc=0 
i915.i915_enable_rc6=7 i915.lvds_downclock=1 acpi_osi=!Windows 2012 
init=/lib/systemd/systemd
echo

Bug#756003: ITP: r-bioc-snpstats -- BioConductor SnpMatrix and XSnpMatrix classes and methods

2014-07-25 Thread Andreas Tille
Package: wnpp
Severity: wishlist
Owner: Andreas Tille ti...@debian.org

* Package name: r-bioc-snpstats
  Version : 1.14.0
  Upstream Author : David Clayton dc...@cam.ac.uk
* URL : 
http://bioconductor.org/packages/release/bioc/html/snpStats.html
* License : GPL-3
  Programming Lang: R
  Description : BioConductor SnpMatrix and XSnpMatrix classes and methods
 This BioConductor package provides R functions to work with
 SnpMatrix and XSnpMatrix classes and methods.


Remark: This package is needed to run parts of the testsuite of other 
BioConductor
modules and is packaged to enable proper autopkgtest suite.  It is maintained by
the Debian Med team at

svn://anonscm.debian.org/debian-med/trunk/packages/R/r-bioc-snpstats/trunk/


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



Bug#753575: texlive-bin: FTBFS on s390x, test suite errors

2014-07-25 Thread Matthias Klose
Am 04.07.2014 08:03, schrieb Norbert Preining:
 Hi Matthias,
 
 you posted on debian-ports and some others about the 4.9 transition.
 I have now the problem with building texlive-bin on s390x. The
 resulting binaries segfault on various occasions during the tests.
 
 Switching to gcc/g++ 4.8 fixes this problem.
 
 Do you have any suggestion on how to fix that?
 
 I posted a lengthy description to the TeX Live builder list:
 https://www.tug.org/pipermail/tlbuild/2014q3/003012.html
 
 The problem is that compilation works, but the generated binaries
 are just not working in some cases.
 
 Before uploading a package which specifically selects the 4.8
 compiler on s390x, I wanted to ask if you have any suggestion.

we did have some offline communication, but the discussion died.  So to 
summarize:

 - please use 4.9 with -O1 if the issue persists
 - please find out the subproject which needs to be built
   with -O1, don't build everything with -O1.

thanks, Matthias


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



Bug#756004: Redmine (2.5.1-2~bpo70+1) requires a newer version of ruby-mime-types

2014-07-25 Thread Adi Kriegisch
Package: redmine
Version: 2.5.1-2~bpo70+1

Hey!

There is another issue with that backport: it requires a newer version of
ruby-mime-types:
  | ActionView::Template::Error (undefined method `find' for
  | MIME::Types:Class):
  | 1: div class=attachments
  | 2: % for attachment in attachments %
  | 3: p%= link_to_attachment attachment, :class = 'icon 
icon-attachment', :download = true -%
  | 4:   % if attachment.is_text? %
  | 5: %= link_to image_tag('magnifier.png'),
  | 6: :controller = 'attachments', :action = 'show',
  |   lib/redmine/mime_type.rb:63:in `block in of'
  |   lib/redmine/mime_type.rb:66:in `yield'
  |   lib/redmine/mime_type.rb:66:in `default'
  |   lib/redmine/mime_type.rb:66:in `of'
  |   lib/redmine/mime_type.rb:78:in `main_mimetype_of'
  |   lib/redmine/mime_type.rb:85:in `is_type?'
  |   app/models/attachment.rb:217:in `is_text?'
  |   app/views/attachments/_links.html.erb:3:in `block in
  | _app_views_attachments__links_html_erb___1975547646385983842_56322060'
  |   app/views/attachments/_links.html.erb:2:in
  | `_app_views_attachments__links_html_erb___1975547646385983842_56322060'
  |   app/helpers/attachments_helper.rb:31:in `link_to_attachments'
  |   app/views/wiki/show.html.erb:46:in
  | `_app_views_wiki_show_html_erb___4419406770341271523_36907160'
  |   app/controllers/wiki_controller.rb:97:in `show'
 
I backported the version currently in sid and everything seems to work
fine. All wiki pages with attachments were affected by this issue.

-- Adi


signature.asc
Description: Digital signature


Bug#756005: lxsession-logout has too short dbus timeout for password query

2014-07-25 Thread Vladimir Kudrya
Package: lxsession
Version: 0.4.6.1-4
Severity: normal

Dear Maintainer, this bug is basically a copy of already resolved ubuntu bug.
Description and fix is available here:
https://bugs.launchpad.net/ubuntu/+source/lxsession/+bug/1132693

As far as I can tell, testing is also affected.

-- System Information:
Debian Release: 7.6
  APT prefers stable
  APT policy: (900, 'stable'), (400, 'testing'), (300, 'unstable'), (200, 
'experimental')
Architecture: i386 (i686)

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

Versions of packages lxsession depends on:
ii  libatk1.0-0 2.4.0-2
ii  libc6   2.13-38+deb7u3
ii  libcairo2   1.12.2-3
ii  libdbus-1-3 1.6.8-1+deb7u3
ii  libfontconfig1  2.9.0-7.1
ii  libfreetype62.4.9-1.1
ii  libgdk-pixbuf2.0-0  2.26.1-1
ii  libglib2.0-02.33.12+really2.32.4-5
ii  libgtk2.0-0 2.24.10-2
ii  libpango1.0-0   1.30.0-1
ii  libx11-62:1.5.0-1+deb7u1

Versions of packages lxsession recommends:
ii  metacity [x-window-manager]  1:2.34.3-4
ii  openbox [x-window-manager]   3.5.2-6~bpo70+1
ii  openssh-client [ssh-client]  1:6.0p1-4+deb7u2
ii  upower   0.9.17-1

Versions of packages lxsession suggests:
ii  gpicview 0.2.3-2
ii  lxde-common  0.5.5-6
ii  lxpanel  0.5.10-1
pn  pcmanfm  none

-- no debconf information


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



Bug#756002: grub-efi-amd64: Changes EFI boot manager settings

2014-07-25 Thread Colin Watson
On Fri, Jul 25, 2014 at 01:47:05PM +0200, Julian Andres Klode wrote:
 I have both gummiboot and grub installed on my laptop. Whenever grub is 
 updated,
 it sets itself as the default bootloader in the EFI variables. I do not want
 grub to be the default bootloader, it's only there as a fallback if I mess up
 gummiboot.
 
 It should only do this on the initial install, it's counter productive to
 set the active boot entry on every upgrade.

Have you considered only installing grub-efi-amd64-bin?  The semantics
of the plain platform packages (as opposed to platform-bin) are meant to
be that they own the boot process.

(That said, that would mean you'd have to run grub-install --no-nvram
manually after each upgrade.)

-- 
Colin Watson   [cjwat...@debian.org]


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



Bug#701480:

2014-07-25 Thread Mathieu Malaterre
Control: found -1 1:3.7.0-6

Indeed very annoying behavior.


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



Bug#756007: postgresql-common: remember to update the README when changing the default!

2014-07-25 Thread Thorsten Glaser
Package: postgresql-common
Version: 159
Severity: normal

Hi!

/usr/share/doc/postgresql-9.4/README.Debian.gz still says:

|Then drop the default 9.3 cluster:
|
|  pg_dropcluster 9.3 main --stop
|
|And then upgrade the 9.1 cluster to the latest installed version (e. g. 9.3):
|
|  pg_upgradecluster 9.1 main

Following these instructions is dangerous if 9.3 is your
current old version, from which to upgrade to 9.4, ofc.

Please remember to always update this file when changing
the default psql server version too!

Thanks!


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

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

Versions of packages postgresql-common depends on:
ii  adduser   3.113+nmu3
ii  debconf [debconf-2.0] 1.5.53
ii  lsb-base  4.1+Debian13
ii  postgresql-client-common  159
ii  procps1:3.3.9-7
ii  ssl-cert  1.0.34
ii  ucf   3.0030

Versions of packages postgresql-common recommends:
ii  logrotate  3.8.7-1

postgresql-common suggests no packages.

-- Configuration Files:
/etc/postgresql-common/createcluster.conf changed:
ssl = on
stats_temp_directory = '/var/run/postgresql/%v-%c.pg_stat_tmp'
log_line_prefix = '%%t [%%p-%%l] %%q%%u@%%d '


-- debconf information:
  postgresql-common/ssl: true
* postgresql-common/obsolete-major:


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



Bug#756006: pcscd: Card reader is no longer recognized by application

2014-07-25 Thread Singer Michael
Package: pcscd
Version: 1.8.11-3
Severity: important

Dear Maintainer,
Since recently stopped working on my system the card reader (ReinerSCT 
Cyberjack eCom) in the secure online banking software Hibiscus. This error 
shows itself in the card reader can no longer access the application.

The driver libifd-cyberjack6 is in version 3.99.5final.SP03, but neither does 
the current driver version 3.99.5final.sp05 SID-1 (same error image). herefore, 
for me, this is the hardware driver okay.  

The card reader is correctly recognized by pcsc_scan solbald the application 
Hibiscus has accessed it, it is no longer recognized by pcsc_scan. Also in 
the hibiscus application, a test of the card reader is integrated, which fails 
but.

Here the output of pcsc_scan:

# pcsc_scan 
PC/SC device scanner
V 1.4.22 (c) 2001-2011, Ludovic Rousseau ludovic.rouss...@free.fr
Compiled with PC/SC lite version: 1.8.10
Using reader plug'n play mechanism
Scanning present readers...
0: REINER SCT cyberJack ecom_a (0679700133) 00 00

Fri Jul 25 13:55:57 2014
Reader 0: REINER SCT cyberJack ecom_a (0679700133) 00 00
  Card state: Card removed,


This is the edition of the card tests in application Hibiscus (in German):

[24.07.2014 23:32:35] Teste Sicherheits-Medium... 
[24.07.2014 23:32:35] Fehler beim Testen des Sicherheits-Mediums: Kein 
Kartenleser gefunden 
[24.07.2014 23:32:35] Aufgetretene Fehlermeldungen: 
[24.07.2014 23:32:35] - 
[24.07.2014 23:32:35]   error while opening chipcard; nested exception is:  
[24.07.2014 23:32:35]Kein Kartenleser gefunden 
[24.07.2014 23:32:35]   Kein Kartenleser gefunden 
[24.07.2014 23:32:35] - 

This error has since 07/20/2014, before everything worked properly. What can I 
do with pcscd, libifd-cyberjack6 and hibiscus working again?

Let me know if I can still provide relevant information or log outputs.

Regards
Michael

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

Kernel: Linux 3.15-6.towo-siduction-amd64 (SMP w/8 CPU cores; PREEMPT)
Locale: LANG=de_DE.utf8, LC_CTYPE=de_DE.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages pcscd depends on:
ii  init-system-helpers 1.19
ii  libc6   2.19-7
ii  libccid [pcsc-ifd-handler]  1.4.17-1
ii  libpcsclite11.8.11-3
ii  libudev1208-6
ii  lsb-base4.1+Debian13

pcscd recommends no packages.

Versions of packages pcscd suggests:
ii  systemd  208-6

-- no debconf information


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



Bug#756008: postgresql-common: (URGENT) pg_upgradecluster 9.3 - 9.4 fails

2014-07-25 Thread Thorsten Glaser
Package: postgresql-common
Version: 159
Severity: important

tglase@tglase:~ $ sudo pg_dropcluster 9.4 main --stop
[sudo] password for tglase:
tglase@tglase:~ $ sudo pg_upgradecluster 9.3 main
Stopping old cluster...
pg_ctl: server does not shut down
HINT: The -m fast option immediately disconnects sessions rather than
waiting for session-initiated disconnection.
Error: Could not stop old cluster
1|tglase@tglase:~ $ sudo pg_upgradecluster 9.3 main
psql: FATAL:  the database system is shutting down
psql: FATAL:  the database system is shutting down
Use of uninitialized value $out in pattern match (m//) at 
/usr/share/postgresql-common/PgCommon.pm line 911.
psql: FATAL:  the database system is shutting down
Use of uninitialized value $out in pattern match (m//) at 
/usr/share/postgresql-common/PgCommon.pm line 917.
Use of uninitialized value $ctype in scalar chomp at 
/usr/share/postgresql-common/PgCommon.pm line 920.
Use of uninitialized value $collate in scalar chomp at 
/usr/share/postgresql-common/PgCommon.pm line 921.
Error: could not get cluster locales
1|tglase@tglase:~ $ 

What am I supposed to do now? I fear doing anything wrong
will make the situation much worse?

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

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

Versions of packages postgresql-common depends on:
ii  adduser   3.113+nmu3
ii  debconf [debconf-2.0] 1.5.53
ii  lsb-base  4.1+Debian13
ii  postgresql-client-common  159
ii  procps1:3.3.9-7
ii  ssl-cert  1.0.34
ii  ucf   3.0030

Versions of packages postgresql-common recommends:
ii  logrotate  3.8.7-1

postgresql-common suggests no packages.

-- Configuration Files:
/etc/postgresql-common/createcluster.conf changed:
ssl = on
stats_temp_directory = '/var/run/postgresql/%v-%c.pg_stat_tmp'
log_line_prefix = '%%t [%%p-%%l] %%q%%u@%%d '


-- debconf information:
* postgresql-common/obsolete-major:
  postgresql-common/ssl: true


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



Bug#572372: O - ITA: wdm -- WINGs Display Manager - an xdm replacement with a WindowMaker look

2014-07-25 Thread Axel Beckert
Control: retitle -1 ITA: wdm -- WINGs Display Manager - an xdm replacement with 
a WindowMaker look
Control: owner -1 !

Hi,

I intent to adopt the wdm package.

I want to keep wdm in Debian because I think it's a good compromise
between xdm (which IMHO has everything except a possibility to
temporarily choose a different window manager) and gdm/kdm/lightdm
which I all consider far too bloaty.

I've revamped the wdm packaging (mostly debian/rules) in the past few
days and hope that I can handle it despite a not so active upstream.

I intent to forward all the patches we currently have in Debian to
upstream's mailing list and see what happens.

Agustin Martin wrote in 2010:
 On Wed, Mar 03, 2010 at 08:28:47PM +0100, Jan Hauke Rahm wrote:
  The current maintainer of wdm, Vlad Shakhov lumpen.intellect...@gmail.com,
  is not active anymore.  Therefore, I orphan this package now.
 
 No, I do not intend to adopt this package, but have some changes ready for
 it.

Agustin: You've made over a dozen of QA uploads for wdm in the past
few years and showed quite some continuity. So even if you don't want
to adopt the package as the sole maintainer, maybe you would like to
join me as co-maintainer of Debian's wdm package?

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


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



Bug#755989: cfdisk: german help page strangely formatted

2014-07-25 Thread Martin Steigerwald
Am Freitag, 25. Juli 2014, 13:22:22 schrieb Andreas Henriksson:
 Hello Martin Steigerwald!

Hello Andreas,

 Thanks for your bug report and kind words.
 
 On Fri, Jul 25, 2014 at 11:39:50AM +0200, Martin Steigerwald wrote:
 [...]
 
  I found a minor issue with new cfdisk. The help page looks like this:
   Hilfe für cfdisk
 
 [...]
 
 This problem could possibly be caused by this patch:
 http://anonscm.debian.org/cgit/collab-maint/pkg-util-linux.git/tree/debian/p
 atches/cfdisk.8-mention-slang-next-to-curses.-Closes-295487.patch?h=debian-2
 .25
 
 Do you think you could rebuild without that one and report back if it
 makes a difference?
 
 Thanks in advance!

I tried. Unfortunately installing the build dependences insists on upgrading 
systemd to the version which is currently not installable without removing 
sysvinit-core.

I do not feel comfortable with removing sysvinit-core as a fallback on a 
production system yet.

Sorry. Hopefully they are co-installable soon as cgmanager package was 
uploaded recently. I may try to find the exact versions of the developer 
packages

dpkg-checkbuilddeps: Unmet build dependencies: dh-systemd (= 1.5) libpam0g-
dev libsystemd-daemon-dev libsystemd-journal-dev

that match exactly the older version of systemd installed here.

(I think its crap that it was uploaded to unstable before it could coexist 
with sysvinit-core and this again shows why.)

Ciao,
-- 
Martin 'Helios' Steigerwald - http://www.Lichtvoll.de
GPG: 03B0 0D6C 0040 0710 4AFA  B82F 991B EAAC A599 84C7


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



Bug#754326: gtick.desktop placed into wrong folder

2014-07-25 Thread Roland Stigge
On 07/25/2014 12:17 PM, Petter Reinholdtsen wrote:
 A misplaced desktop file do not seem like a release critical problem
 to me.  Why do you believe the bug should have severity serious?

Don't worry anyway, will upload a fix during the weekend.

Sorry for the delay.

Roland


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



Bug#755989: cfdisk: german help page strangely formatted

2014-07-25 Thread Andreas Henriksson
On Fri, Jul 25, 2014 at 02:12:10PM +0200, Martin Steigerwald wrote:
[...]
 I tried. Unfortunately installing the build dependences insists on upgrading 
 systemd to the version which is currently not installable without removing 
 sysvinit-core.
 
 I do not feel comfortable with removing sysvinit-core as a fallback on a 
 production system yet.
[...]

I can fully understand that and (except from suggesting you get involved
with sysvinit packaging and solve problems on their side ;P) the best
advice I can give you is to use something like pbuilder.
Then you don't need to install most build-dependencies (only the
ones needed for fakeroot debian/rules clean to pass) on your
host system.

Regards,
Andreas Henriksson


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



Bug#717808: plasma-desktop: Panel freezes when disconnecting power and network

2014-07-25 Thread Stefanie Dargel
Am Donnerstag, 25. Juli 2013, 12:01:09 schrieb Kjetil Kjernsmo:
 Package: plasma-desktop
 Version: 4:4.8.4-6
 Severity: important
 
 Dear Maintainers,
 
 I'm plagued by a bug that forces me to reboot my laptop frequently. I
 hope I'm filing the bug to the right package, feel free to reassign.
 
 The problem happens when I undock the laptop, which causes the laptop
 to disconnect from the AC power and the network simultanously.
 What happens is that the panel freezes. I.e. it becomes unresponsive
 to mouse clicks, so I can't use it to configure networks, switch
 windows, launch applications, i.e. the standard stuff one has it there
 to do. I can use other features such as Alt-TABbing through windows,
 and the mouse and keyboard can be used on other apps.
 

Dear Maintainers,

I have the same problem. The panel freezes almost all of time when I connect or 
disconnect to a vpn connection. It sometimes also happens when I resume my 
laptop from standby and the wireless lan connection it was connected before 
going to standby is not available anymore.

The panel does unfreeze eventually, but it takes several minutes up to hours if 
left alone, so I reboot the laptop most of the time it happens.

Please tell me, what additional information I can supply or if I should report 
it upstream.

Thank you for maintaining KDE in debian!

Stefanie


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



Bug#734983: seahorse-nautilus: Please package seahorse-nautilus 3.10.1+

2014-07-25 Thread Clement Hermann
[Resent with compressed debdiff as the first mail didn't seem to make
it  to the BTS]

Hi,

I just packaged the last upstream version.

There is nothing special to it as far as I can see, please find a
debdiff attached.

Note : I also removed the quilt working directory (.pc) that was left in
the source package.

Cheers,

-- 
Clément Hermann (nodens)



seahorse-nautilus_newupstream.debdiff.gz
Description: application/gzip


Bug#756009: ITP: python-pypuppetdb -- interface to the PuppetDB REST API

2014-07-25 Thread Jonas Genannt
Package: wnpp
Owner: Jonas Genannt jonas.gena...@capi2name.de
Severity: wishlist

* Package name: python-pypuppetdb
  Version : 0.1.1
  Upstream Author : Daniele Sluijters
* URL : https://github.com/nedap/pypuppetdb
* License : Apache
  Programming Lang: python
  Description : interface to the PuppetDB REST API

 This library provides a Python interface to the PuppetDB REST API.
 It's a thin wrapper around the PuppetDB REST API providing some
 convinience functions and objects to request and hold data from
 PuppetDB.


Package will be maintained by Puppet PKG Group, this library is needed
for puppetboard #754796


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



Bug#754863: missing license in debian/copyright

2014-07-25 Thread Thorsten Alteholz

Control: severity -1 serious

Hi Dmitry,

oh, come on, do you really want to play severity ping pong just to let 
your package migrate?


On Fri, 25 Jul 2014, Dmitry Shachnev wrote:

[...]
please add the missing licenses of:
 doc/creating_themes/*
to debian/copyright.


Was this bug report generated automatically?


No, all my bug reports are hand-crafted.


I think it is false positive.


So I would say you are wrong.


Indeed, creating_themes/C/index.docbook mentions the LGPL, but the context is:


I totally agree.


Licensecheck does not find any non-GPL files as well.


You might want to file a bug against it.

My version of creating_themes/C/index.docbook contains:
 legalnotice
   para
 Permission is granted to copy, distribute and/or modify this document
 under the terms of the GNU Free Documentation License, Version 1.2
 or any later version published by the Free Software Foundation;
 with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts.
 You may obtain a copy of the GNU Free Documentation License from
 the Free Software Foundation by visiting their Web site or by writing
 to:
 Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
 MA 02110-1301 USA.
   /para
 /legalnotice

This doesn't look like GPL and has no corresponding entry in your
debian/copyright. There might be other files/licenses you forgot to 
mention ...


  Thorsten


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



Bug#756010: [net-tools] upstream url was changed in 2011.

2014-07-25 Thread Ryosuke KUTSUNA
Package: net-tools
Version: 1.60-26
Severity: wishlist

Dear Maintainer,

net-tools's Homepage url was changed in 2011.

  http://sourceforge.net/p/net-tools/news/2011/10/berliosde-will-close-down/

URL was change to http://sourceforge.net/projects/net-tools/;

Regards,

 DEER N' HORSEhttp://www.deer-n-horse.jp/
 Ryosuke KUTSUNA  ryos...@deer-n-horse.jp
 PGP FP: D1BF 4076 2BA9 F062 E61D  862D 43E3 EB6D E642 0EC2


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



Bug#756011: CONTROL_USB_AUTOSUSPEND broken?

2014-07-25 Thread Harald Dunkel
Package: laptop-mode-tools
Version: 1.65-2

Seems that CONTROL_USB_AUTOSUSPEND=0 doesn't work anymore.
Even though I have explicitly set

:
# Enable USB autosuspend feature?
# Set to 0 to disable
CONTROL_USB_AUTOSUSPEND=0
:

my external USB mouse goes off after only 2 seconds not
watching it. I have to click a button to wake it up again;
moving the mouse is not sufficient. Highly annoying. The
touchpad is not affected, as it seems.

I can reproduce this in KDM's failsafe mode, i.e. independent
of a running desktop environment or window manager.

On squeeze CONTROL_USB_AUTOSUSPEND worked as expected.


Please mail if I can help to track this down. Regards
Harri


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



Bug#755809: xorg.conf.5 man page mentions an incorrect Enable option for Monitors

2014-07-25 Thread Tanguy Ortolo

Julien Cristau, 2014-07-24 22:46+0200:

I don't know what you think is incorrect about the existing text.


The existing texts is about an option named “Enable”, which may or may 
not exist, but does nothing and is thus useless to mention. The 
behaviour expected from that option (disabling a monitor at server 
startup) is achieved by using the option “Disable” which is not 
documented at all.


To be more specific, according to the man page:

Option Enable bool
   This  optional  entry  specifies  whether the monitor should be
   turned on at startup.  By default, the server will  attempt  to
   enable  all  connected monitors.  (RandR 1.2-supporting drivers
   only)


The following configuration should disable the projector monitor at 
startup:

Section Device
   Identifier  Intel HD Graphics
   Option  Monitor-HDMI2 Main
   Option  Monitor-HDMI1 Projector
EndSection

Section Monitor
   Identifier  Main
EndSection

Section Monitor
   Identifier  Projector
   Option  Enablefalse
EndSection


But it does not work, and the projector is turned on at startup. On the 
contrary, the following, which uses an undocumented option “Disable” 
does disable the projector at startup:

Section Device
   Identifier  Intel HD Graphics
   Option  Monitor-HDMI2 Main
   Option  Monitor-HDMI1 Projector
EndSection

Section Monitor
   Identifier  Main
EndSection

Section Monitor
   Identifier  Projector
   Option  Disable   true
EndSection



My patch aims at correcting that by simply replacing the incorrect 
option “Enable” by the correct one “Disable” in the man page. It also 
does a small change in the explanation text since this option is used 
the reverse way:

Option Disable bool
   This  optional  entry  specifies  whether the monitor should be
   turned off at startup.  By default, the server will  attempt  to
   enable  all  connected monitors.  (RandR 1.2-supporting drivers
   only)


Librement,

--
 ,--.
: /` )   ن Tanguy Ortoloxmpp:tan...@ortolo.eu
| `-'Debian Developer   irc://irc.oftc.net/Tanguy
 \_


signature.asc
Description: Digital signature


Bug#753299: libghc-highlighting-kate-dev: Highlighting Ocaml fails

2014-07-25 Thread Samuel Hym

Updating to libpcre3/1:8.35-3 now in debian/unstable also solves the issue.

Cheers
Sam


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



  1   2   3   4   >