Bug#730329: haskell-mode: fails to load; not byte compiled for emacs flavors

2013-11-24 Thread Shyamal Prasad
Package: haskell-mode
Version: 13.07-1
Severity: important

Dear Maintainer,

When I install haskell-mode I find I cannot actually use it. For
example, if I try to (require 'haskell-mode) I get:

Debugger entered--Lisp error: (file-error Cannot open load file 
haskell-mode)
  require(haskell-mode)
  eval((require (quote haskell-mode)) nil)
  eval-expression((require (quote haskell-mode)) nil)
  call-interactively(eval-expression nil nil)

On debugging a little bit, I find that my load path contains
/usr/share/emacs24/site-lisp/haskell-mode, but that the directory is not
present on my system!

Now I've noticed there is no attempt to build haskell-mode for the
emacs flavors I have installed (emacs23 and emacs24) when I install it:

snip

Unpacking haskell-mode (from .../haskell-mode_13.07-1_all.deb) ...
Processing triggers for install-info ...
Setting up haskell-mode (13.07-1) ...
~$
/snip

So I go ahead and try running the install script by hand:

$ sudo /usr/lib/emacsen-common/packages/install/haskell-mode emacs24

and sure enough, everything now works! I do the same thing for emacs23
and that works. Also, when I uninstall the package the byte compiled
files are not removed.

$ update-alternatives --list emacs
/usr/bin/emacs23-x
/usr/bin/emacs24-x


The wheezy package does not seem to have any of these issues. I can
install it and things load without any special action by me.

Bug? Or is my machine messed up somehow? Let me know if I can help any
further, would be happy to try.

Cheers!
Shyamal


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

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

Versions of packages haskell-mode depends on:
ii  emacs45.0
ii  emacs23  23.4+1-4.1
ii  emacs24  24.3+1-2

Versions of packages haskell-mode recommends:
ii  ghc  7.6.3-5

haskell-mode 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#730330: xxxterm: FTBFS: storage size of 'hints' isn't known

2013-11-24 Thread Daniel Schepler
Source: xxxterm
Version: 1:1.11.3-1.1
Severity: serious

From my pbuilder build log:

...
Generating ../xxxterm.o.depend
cc  -O2 -Wall -ggdb3 -D_GNU_SOURCE -I. -I.. -pthread -I/usr/include/gtk-2.0 
-I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/atk-1.0 
-I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 
-I/usr/include/gio-unix-2.0/ -I/usr/include/freetype2 -I/usr/include/glib-2.0 
-I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/pixman-1 
-I/usr/include/libpng12 -I/usr/include/libdrm -I/usr/include/harfbuzz 
-I/usr/include/libsoup-2.4 -I/usr/include/libxml2 -I/usr/include/p11-kit-1 
-I/usr/include/webkitgtk-1.0   -o ../xxxterm.o -c ../xxxterm.c
../xxxterm.c: In function 'connect_socket_from_uri':
../xxxterm.c:1474:19: error: storage size of 'hints' isn't known
  struct addrinfo  hints, *res = NULL, *ai;
   ^
../xxxterm.c:1497:23: error: invalid application of 'sizeof' to incomplete type 
'struct addrinfo'
  bzero(hints, sizeof(struct addrinfo));
   ^
../xxxterm.c:1498:19: error: 'AI_CANONNAME' undeclared (first use in this 
function)
  hints.ai_flags = AI_CANONNAME;
   ^
../xxxterm.c:1498:19: note: each undeclared identifier is reported only once 
for each function it appears in
../xxxterm.c:1502:2: warning: implicit declaration of function 'getaddrinfo' 
[-Wimplicit-function-declaration]
  if ((error = getaddrinfo(su-host, port, hints, res))) {
  ^
../xxxterm.c:1504:7: warning: implicit declaration of function 'gai_strerror' 
[-Wimplicit-function-declaration]
   gai_strerror(errno));
   ^
../xxxterm.c:1504:7: warning: format '%s' expects argument of type 'char *', 
but argument 4 has type 'int' [-Wformat=]
../xxxterm.c:1504:7: warning: format '%s' expects argument of type 'char *', 
but argument 4 has type 'int' [-Wformat=]
../xxxterm.c:1508:28: error: dereferencing pointer to incomplete type
  for (ai = res; ai; ai = ai-ai_next) {
^
../xxxterm.c:1514:9: error: dereferencing pointer to incomplete type
   if (ai-ai_family != AF_INET  ai-ai_family != AF_INET6)
 ^
../xxxterm.c:1514:37: error: dereferencing pointer to incomplete type
   if (ai-ai_family != AF_INET  ai-ai_family != AF_INET6)
 ^
../xxxterm.c:1516:16: error: dereferencing pointer to incomplete type
   s = socket(ai-ai_family, ai-ai_socktype, ai-ai_protocol);
^
../xxxterm.c:1516:31: error: dereferencing pointer to incomplete type
   s = socket(ai-ai_family, ai-ai_socktype, ai-ai_protocol);
   ^
../xxxterm.c:1516:48: error: dereferencing pointer to incomplete type
   s = socket(ai-ai_family, ai-ai_socktype, ai-ai_protocol);
^
../xxxterm.c:1522:20: error: dereferencing pointer to incomplete type
   if (connect(s, ai-ai_addr, ai-ai_addrlen) == 0)
^
../xxxterm.c:1522:33: error: dereferencing pointer to incomplete type
   if (connect(s, ai-ai_addr, ai-ai_addrlen) == 0)
 ^
../xxxterm.c:1539:3: warning: implicit declaration of function 'freeaddrinfo' 
[-Wimplicit-function-declaration]
   freeaddrinfo(res);
   ^
../xxxterm.c:1475:29: warning: variable 'error' set but not used 
[-Wunused-but-set-variable]
  int   rv = -1, s = -1, on, error;
 ^
../xxxterm.c:1474:19: warning: unused variable 'hints' [-Wunused-variable]
  struct addrinfo  hints, *res = NULL, *ai;
   ^
../xxxterm.c: In function 'show_ca_status':
../xxxterm.c:3501:2: warning: 'g_thread_create' is deprecated (declared at 
/usr/include/glib-2.0/glib/deprecated/gthread.h:100): Use 'g_thread_new' 
instead [-Wdeprecated-declarations]
  t-thread = g_thread_create((GThreadFunc)color_address_bar, t, TRUE, NULL);
  ^
../xxxterm.c: In function 'mtx_lock':
../xxxterm.c:7512:2: warning: 'g_static_rec_mutex_lock' is deprecated (declared 
at /usr/include/glib-2.0/glib/deprecated/gthread.h:174): Use 'g_rec_mutex_lock' 
instead [-Wdeprecated-declarations]
  g_static_rec_mutex_lock(my_gdk_mtx);
  ^
../xxxterm.c:7521:3: warning: 'g_static_rec_mutex_unlock_full' is deprecated 
(declared at /usr/include/glib-2.0/glib/deprecated/gthread.h:187) 
[-Wdeprecated-declarations]
   g_static_rec_mutex_unlock_full(my_gdk_mtx);
   ^
../xxxterm.c:7522:3: warning: 'g_static_rec_mutex_lock' is deprecated (declared 
at /usr/include/glib-2.0/glib/deprecated/gthread.h:174): Use 'g_rec_mutex_lock' 
instead [-Wdeprecated-declarations]
   g_static_rec_mutex_lock(my_gdk_mtx);
   ^
../xxxterm.c:7530:4: warning: 'g_static_rec_mutex_unlock' is deprecated 
(declared at /usr/include/glib-2.0/glib/deprecated/gthread.h:180): Use 
'g_rec_mutex_unlock' instead [-Wdeprecated-declarations]
g_static_rec_mutex_unlock(my_gdk_mtx);
^
../xxxterm.c: In function 'mtx_unlock':
../xxxterm.c:7543:3: warning: 'g_static_rec_mutex_unlock_full' is deprecated 
(declared at 

Bug#347573: [bug #20417] 503 respose is not retryable but should be

2013-11-24 Thread Jarek Czekalski
Follow-up Comment #4, bug #20417 (project wget):

In my case an nginx server (from which I download several pages gathered in
links.txt file) uses 503 error to slow down the download. If the requests for
html files come in periods closer than 3 seconds to one another, then 503 is
returned. So wget -w 3 helps. However I wanted to show this case as the one
that would also be better handled by automatic retry of 503.

If I use -w 3 it always waits 3 seconds, even for helper files like gif, js,
which could be loaded immediately instead.

___

Reply to this item at:

  http://savannah.gnu.org/bugs/?20417

___
  Message sent via/by Savannah
  http://savannah.gnu.org/


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



Bug#730331: xmem: Needs update to libprocps1-dev

2013-11-24 Thread Daniel Schepler
Source: xmem
Version: 1.20-7.2
Severity: important

The Build-Depends on libprocps0-dev is only available from an old version of 
src:procps (1:3.3.4-2, whereas the current version is 1:3.3.8-2).
-- 
Daniel Schepler


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



Bug#730332: Please decouple boinc-manager from boinc-client

2013-11-24 Thread Ken Sharp

Package: boinc-manager
Severity: wishlist
Version: 7.2.28+dfsg-1
Control: found -1 7.0.24+dfsg-1
Control: found -1 7.0.27+dfsg-5

I would like to use boinc-manager without there being a need to install 
boinc-client.


It doesn't take too much of a stretch of the imagination to see that 
some users might want to control clients on other machines without the 
need to install the client on the machine they are using. It is a waste 
of space and requires additional steps to disable the client. This 
becomes a particular concern on small devices such as low-end mobile phones.


It kind of defeats the point of having a boinc-manager package if it 
needs to pull boinc-client anyway. The two are usually updated together 
upstream.



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



Bug#445875: (no subject)

2013-11-24 Thread Ken Sharp

http://lists.ssl.berkeley.edu/pipermail/boinc_dev/2008-May/010796.html

Has this been fixed?


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



Bug#724931: Please include the patch in git

2013-11-24 Thread Andreas Cadhalpun

Hi,

I just created patches against cdrom-detect-1.46, hw-detect-1.98 and 
mountmedia-0.23. I hope that helps.


For the patch to work, the loop-module is needed in the initrd, so I
suggest to make it a dependency of cdrom-detect.
I furthermore highly recommend to make the ext4, ntfs and udf
modules dependencies of cdrom-detect, since these are the most common
filesystems and thus being able to loopmount from them would be good.

Best regards,
Andreas
diff -rup cdrom-detect-1.46.orig/debian/cdrom-detect.postinst cdrom-detect-1.46/debian/cdrom-detect.postinst
--- cdrom-detect-1.46.orig/debian/cdrom-detect.postinst	2011-03-23 03:00:14.0 +0100
+++ cdrom-detect-1.46/debian/cdrom-detect.postinst	2013-11-24 09:44:59.678577887 +0100
@@ -1,4 +1,4 @@
-#! /bin/sh
+#!/bin/sh
 
 set -e
 . /usr/share/debconf/confmodule
@@ -14,26 +14,43 @@ fail() {
 	exit 1
 }
 
+list_devices_by_id()
+{
+	local dir disk=$(echo $1 | sed 's/ /\\x20/g')
+	for dir in /dev/disk/by-label /dev/disk/by-uuid ; do
+		[ -e ${dir}/${disk} ]  echo ${dir}/${disk} || true
+	done
+}
+
+get_fstype ()
+{
+	/sbin/blkid -s TYPE -o value $1 2/dev/null
+}
+
 try_mount() {
 	local device=$1
 	local type=$2
+	local options=$3
+	local loopdev=$4
 
 	local ret=1
-	if mount -t $type -o $OPTIONS $device /cdrom; then
-		log CD-ROM mount succeeded: device=$device fstype=$type
+	if mount -o ${loopdev:+loop,}$options -t $type $device /cdrom; then
+		log CD-ROM ${loopdev:+loop-}mount succeeded: device=$loopdev${device#/loop} fstype=$type
 		if [ -e /cdrom/.disk/info ]; then
 			CDNAME=$(cat /cdrom/.disk/info)
 			log Detected CD '$CDNAME'
 			db_set cdrom-detect/cdrom_device $device
 			db_set cdrom-detect/cdrom_fs $type
+			db_set cdrom-detect/cdrom_options ${loopdev:+loop,}$options
+			db_set cdrom-detect/cdrom_loopdev $loopdev
 			ret=0
 		else
-			log The CD in $device is not a Debian CD!
+			log The CD in $loopdev${device#/loop} is not a Debian CD!
 			umount /cdrom 2/dev/null || true
 			WRONG=1
 		fi
 	else
-		log CD-ROM mount failed: device=$device fstype=$type
+		log CD-ROM ${loopdev:+loop-}mount failed: device=$loopdev${device#/loop} fstype=$type
 	fi
 
 	return $ret
@@ -61,25 +78,21 @@ OS=$(udpkg --print-os)
 case $OS in
 	kfreebsd)
 		CDFS=cd9660
-		FATFS=msdosfs
 		OPTIONS=ro,exec
 		;;
 	linux)
 		CDFS=iso9660
-		FATFS=vfat
 		OPTIONS=ro,exec
 		;;
 	hurd)
 		CDFS=iso9660fs
-		FATFS=fatfs
 		OPTIONS=ro
 		;;
 	*)
 		log Unknown OS '$OS', exiting
 		exit 0
-		
 esac
- 
+
 # Is a cdrom already mounted? If so, assume it's the right one.
 mount | grep -q 'on /cdrom'  set_suite_and_codename  exit 0
 if [ -e /cdrom/.disk/info ]; then
@@ -95,42 +108,101 @@ log Searching for Debian installation m
 
 mkdir /cdrom 2/dev/null || true
 
+# Check whether the boot parameter 'loopmount=' is used
+for arg in $(cat /proc/cmdline); do
+	case $arg in
+	loopmount=*)
+		LOOPMOUNT=${arg#loopmount=}
+		LOOPFILE=${LOOPMOUNT#*:}
+		[ $LOOPFILE != $LOOPMOUNT ]  LOOPDEV=${LOOPMOUNT%:*}
+		;;
+	esac
+done
+
+if [ $LOOPMOUNT ]; then
+	# Create mount point for loop mount
+	mkdir /loop 2/dev/null || true
+fi
+
 # Need to wait for the usb device scan to complete
 if [ $OS = linux ]; then
-  for count in 1 2 3 4 5 6 8 9 10; do
-devices=$(list-devices cd; list-devices maybe-usb-floppy)
-log Devices: '$devices'
-if [ -n $devices ]; then
-  break 2
-else
-  sleep 1
-fi
-  done
+	for count in 1 2 3 4 5 6 8 9 10; do
+		devices=$(list-devices cd; list-devices maybe-usb-floppy)
+		log CD/maybe-usb-floppy devices: '$devices'
+		if [ $devices ]; then
+			break
+		else
+			sleep 1
+		fi
+	done
 fi
 
+# This is for apt-cdrom-setup, that needs to know, whether or not it should try to automatically (u)mount the device.
+cd_mountable=true
+
 while true; do
-	WRONG=
+	WRONG=''
+
+	if [ $LOOPMOUNT ]; then
+		mounted=0
+		log Searching for Debian ISO: LOOPDEV='$LOOPDEV' LOOPFILE='$LOOPFILE'
+		loopfile=/loop/${LOOPFILE#/}
+		log Unmounting /loop just to be sure
+		umount /loop 2/dev/null || true
+
+		if [ $LOOPDEV ] ; then
+			dev_given=device_given
+		else
+			dev_given=
+		fi
+
+		# First look for the given device (if given) and then on USB devices, since the ISO is probably on them
+		for fs in $dev_given usb-partition cd partition; do
+			if [ $fs = device_given ]; then
+devices=$(list_devices_by_id $LOOPDEV)
+			else
+devices=$(list-devices $fs)
+			fi
+			log Trying loopmount ($fs) on '$devices' ...
+			for loopdev in $devices; do
+# Determine the filesystem of the device
+LOOPFS=$(get_fstype $loopdev)
+# Mount the device and try to mount the ISO specified by 'loopmount='
+log Try to mount device=$loopdev fstype=$LOOPFS
+if mount -o $OPTIONS -t $LOOPFS $loopdev /loop; then
+	log Try to loop mount file=$loopfile fstype=$CDFS
+	if [ -f $loopfile ]  try_mount $loopfile $CDFS $OPTIONS $loopdev; then
+		mounted=1
+		cd_mountable=false
+		break 2
+	else
+		umount /loop
+	fi
+fi
+			done
+		done
+		if [ 

Bug#727012: rhash: Error value too large for defined data type for big files (4 GB)

2013-11-24 Thread Mario B.
Package: rhash
Version: 1.2.9-8 and 1.3.0-2
Followup-For: Bug #727012

Dear Maintainer,

the upstream version of rhash (1.3.0) is not affected by this problem, even if 
it should be the same version provided by the repositories of testing and Sid. 
So for now I've solved the problem removing the packet and manually installing 
the software.


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



Bug#730333: php-opencloud: VCS- links are 404

2013-11-24 Thread Gergely Nagy
Source: php-opencloud
Version: 1.6.0+dfsg-1

The VCS fields in the package reference a repository that does not
exist. As far as I see, an s/pkg-opencloud/pkg-php/g; needs to be
applied to it.

(If anyone reading this on unknown-package@, php-opencloud just cleared
NEW, and the maintainer is CC'd.)

-- 
|8]


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



Bug#730108: vamp-plugin-sdk: Unnecessarily shipped libtool archive (.la) files are invalid

2013-11-24 Thread Jaromír Mikeš
2013/11/21 Benjamin Drung bdr...@debian.org

 Package: vamp-plugin-sdk
 Version: 2.1-1
 Severity: important

 Dear Maintainer,

 The libtool archive files /usr/lib/libvamp-hostsdk.la and /usr/lib/
 libvamp-sdk.la are
 invalid and break building packages with libtool. Please remove these
 files from the
 package in stable. They are already removed in testing and unstable.

 Steps to reproduce:

 $ echo main() { return 0; }  main.c
 $ libtool --mode=link g++ main.c -o main $(pkg-config vamp-hostsdk --libs)
 libtool: link: `/usr/lib//libvamp-hostsdk.la' is not a valid libtool
 archive

 ___
 pkg-multimedia-maintainers mailing list
 pkg-multimedia-maintain...@lists.alioth.debian.org

 http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers


Hi Benjamin,

I would be happy to fix this issue for stable, but we are now at 2.5
upstream version now.
It is probably anyway possible to fix, but I never did it before.
Can you advise me please?

best regards

mira


Bug#718767: transition: ocaml 4.01.0

2013-11-24 Thread Stéphane Glondu
retitle 718767 transition: ocaml 4.01.0
thanks

Le 05/08/2013 10:43, Stéphane Glondu a écrit :
 I would like to start the transition to OCaml 4.00.1 (released last
 November) as soon as possible. It breaks some packages; most of them
 have been fixed in experimental. As usual, it involves a lot of binNMUs;
 I will take care of those.

Now, I think we should start the transition to OCaml 4.01.0 in unstable.


Cheers,

-- 
Stéphane


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



Bug#730335: sa-learn-cyrus: ipurge command path has changed in the latest cyrus-common package

2013-11-24 Thread Julien Reveret
Package: sa-learn-cyrus
Version: 0.3.5-1.1
Severity: important

Dear Maintainer,

The cyrus-common package was updated a few days ago and it broke sa-learn-cyrus
by modifying ipurge command path.
ipurge isn't anymore in /usr/sbin but in /usr/lib/cyrus/bin/ipurge

Both the sa-learn-cyrus.conf config file and sa-learn-cyrus script should be
updated to prevent execution failures.



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

Kernel: Linux 2.6.36-xenU-4814-i386 (SMP w/1 CPU core)
Locale: LANG=en_US.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages sa-learn-cyrus depends on:
ii  cyrus-imapd-2.4  2.4.17+caldav~beta7-2
ii  perl 5.18.1-4
ii  spamassassin 3.3.2-7

sa-learn-cyrus recommends no packages.

sa-learn-cyrus suggests no packages.

-- Configuration Files:
/etc/spamassassin/sa-learn-cyrus.conf changed:
[global]
tmp_dir = /tmp
lock_file = /var/lock/sa-learn-cyrus.lock
verbose = 1
simulate = no
[mailbox]
include_list = ''
include_regexp = '.*'
exclude_list = ''
exclude_regexp = ''
spam_folder = 'Junk'
ham_folder = 'Ham'
remove_spam = yes
remove_ham = no
[sa]
site_config_path = /etc/spamassassin
prefs_file = /etc/spamassassin/local.cf
learn_cmd = /usr/bin/sa-learn
user = mail
group = mail
debug = no
[imap]
base_dir = /var/spool/cyrus/mail
initial_letter = yes
domains = ''
unixhierarchysep = no
purge_cmd = /usr/sbin/ipurge
user = cyrus


-- 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#730334: [l10n] Updated Czech translation of localepurge debconf messages

2013-11-24 Thread Miroslav Kure
Package: localepurge
Severity: wishlist
Tags: l10n, patch

Hi,

in attachement there is updated Czech (cs.po) translation of 
localepurge debconf messages. Please include it with the package.

Thank you
-- 
Miroslav Kure
#
#Translators, if you are not familiar with the PO format, gettext
#documentation is worth reading, especially sections dedicated to
#this format, e.g. by running:
# info -n '(gettext)PO Files'
# info -n '(gettext)Header Entry'
#
#Some information specific to po-debconf are available at
#/usr/share/doc/po-debconf/README-trans
# or http://www.debian.org/intl/l10n/po-debconf/README-trans
#
#Developers do not need to manually edit POT or PO files.
#
msgid 
msgstr 
Project-Id-Version: localepurge\n
Report-Msgid-Bugs-To: localepu...@packages.debian.org\n
POT-Creation-Date: 2013-11-08 07:01+0100\n
PO-Revision-Date: 2013-11-24 11:04+0100\n
Last-Translator: Miroslav Kure ku...@debian.cz\n
Language-Team: Czech debian-l10n-cz...@lists.debian.org\n
Language: cs\n
MIME-Version: 1.0\n
Content-Type: text/plain; charset=UTF-8\n
Content-Transfer-Encoding: 8bit\n

#. Type: multiselect
#. Description
#: ../localepurge.templates:2001
msgid Locale files to keep on this system:
msgstr Soubory locale, které mají v systému zůstat:

#. Type: multiselect
#. Description
#: ../localepurge.templates:2001
msgid 
The localepurge package will remove all locale files from the system except 
those that you select here.
msgstr 
Balík localepurge odstraní ze systému všechny soubory locale kromě jazyků, 
které zde vyberete.

#. Type: multiselect
#. Description
#: ../localepurge.templates:2001
msgid 
When selecting the locale corresponding to your language and country code 
(such as \de_DE\, \de_CH\, \it_IT\, etc.) it is recommended to choose 
the two-character entry (\de\, \it\, etc.) as well.
msgstr 
Při výběru locale odpovídající vašemu jazyku a kódu země (např. „cs_CZ“, 
„de_DE“, „de_CH“, apod.) doporučujeme vybrat i dvoupísmenný název 
(„cs“, „de“, apod.).

#. Type: multiselect
#. Description
#: ../localepurge.templates:2001
msgid 
Entries from /etc/locale.gen will be preselected if no prior configuration 
has been successfully completed.
msgstr 
Pokud jste ještě localepurge nenastavovali, standardně se předvyberou záznamy 
z /etc/locale.gen.

#. Type: boolean
#. Description
#: ../localepurge.templates:3001
msgid Use dpkg --path-exclude?
msgstr Použít dpkg --path-exclude?

#. Type: boolean
#. Description
#: ../localepurge.templates:3001
msgid 
dpkg supports --path-exclude and --path-include options to filter files from 
packages being installed.
msgstr 
dpkg podporuje volby --path-exclude a --path-include, které souží pro 
odklonění 
souborů z instalovaoných balíků.

#. Type: boolean
#. Description
#: ../localepurge.templates:3001
msgid 
Please see /usr/share/doc/localepurge/README.dpkg-path for more information 
about this feature. It can be enabled (or disabled) later by running \dpkg-
reconfigure localepurge\.
msgstr 
Více informací o této možnosti naleznete v /usr/share/doc/localepurge/
README.dpkg-path. Později ji můžete zapnout (nebo vypnout) příkazem 
„dpkg-reconfigure localepurge“.

#. Type: boolean
#. Description
#: ../localepurge.templates:3001
msgid 
This option will become active for packages unpacked after localepurge has 
been (re)configured. Packages installed or upgraded together with 
localepurge may (or may not) be subject to the previous configuration of 
localepurge.
msgstr 
Tato volba začne fungovat až pro balíky, které se rozbalí po (re)konfiguraci 
localepurge. U balíků instalovaných nebo aktualizovaných v tomto sezení 
společně s localepurge závisí, zda budou rozbaleny až po této otázce.

#. Type: boolean
#. Description
#: ../localepurge.templates:4001
msgid Really remove all locales?
msgstr Opravdu odstranit všechny locales?

#. Type: boolean
#. Description
#: ../localepurge.templates:4001
msgid 
No locale has been chosen for being kept. This means that all locales will 
be removed from this system. Please confirm whether this is really your 
intent.
msgstr 
Vybrali jste, že nechcete ponechat žádné locales. To znamená, že budou ze 
systému odstraněny všechny locales. Jste si jisti, že tomu tak chcete?

#. Type: note
#. Description
#: ../localepurge.templates:5001
msgid No localepurge action until the package is configured
msgstr Žádná akce, dokud nenastavíte balík localepurge

#. Type: note
#. Description
#: ../localepurge.templates:5001
msgid 
The localepurge package will not be useful until it has been successfully 
configured using the command \dpkg-reconfigure localepurge\. The 
configured entries from /etc/locale.gen of the locales package will then be 
automatically preselected.
msgstr 
Balík localepurge nebude provádět nic užitečného dokud jej úspěšně 
nenastavíte příkazem „dpkg-reconfigure localepurge“. Vybrané položky z 
/etc/locale.gen pak budou automaticky předvybrány.

#. Type: boolean
#. Description
#: 

Bug#730337: linux-image-3.10-3-amd64: Fails to enumerate USB3 device, sometimes hangs the system for seconds

2013-11-24 Thread Alexander Heinlein
Package: src:linux
Version: 3.10.11-1
Severity: normal

Hi,

attaching a USB3 device mostly results in the following error messages:
[ 1780.947651] usb 2-2: new high-speed USB device number 2 using xhci_hcd
[ 1780.951138] usb 2-2: Device not responding to set address.
[ 1781.154991] usb 2-2: Device not responding to set address.
[ 1781.355397] usb 2-2: device not accepting address 2, error -71
[ 1781.523237] usb 2-2: new high-speed USB device number 3 using xhci_hcd
[ 1781.526723] usb 2-2: Device not responding to set address.
[ 1781.730596] usb 2-2: Device not responding to set address.
[ 1781.931055] usb 2-2: device not accepting address 3, error -71
[ 1782.09] usb 2-2: new high-speed USB device number 4 using xhci_hcd
[ 1782.102377] usb 2-2: Device not responding to set address.
[ 1782.306311] usb 2-2: Device not responding to set address.
[ 1782.506574] usb 2-2: device not accepting address 4, error -71
[ 1782.674546] usb 2-2: new high-speed USB device number 5 using xhci_hcd
[ 1782.678032] usb 2-2: Device not responding to set address.
[ 1782.881826] usb 2-2: Device not responding to set address.
[ 1783.082313] usb 2-2: device not accepting address 5, error -71
[ 1783.082345] hub 2-0:1.0: unable to enumerate USB device on port 2

Sometimes the system hangs for several seconds when attaching the device. The
sound stutters, the network connection breaks, no input is accepted:

[ 1986.465988] usb 2-1: new high-speed USB device number 14 using xhci_hcd
[ 1986.568645] usb 2-1: New USB device found, idVendor=067b, idProduct=2773
[ 1986.568655] usb 2-1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 1986.568661] usb 2-1: Product: USB-SATA Bridge
[ 1986.568665] usb 2-1: Manufacturer: Prolific Technology Inc.
[ 1986.568669] usb 2-1: SerialNumber: PROLIFICMP2
[ 1986.570061] usb-storage 2-1:1.0: USB Mass Storage device detected
[ 1986.570195] scsi9 : usb-storage 2-1:1.0
[ 1988.975317] scsi 9:0:0:0: Direct-Access WDC WD30 EZRX-00AZ6B0 80.0 PQ: 0 
ANSI: 4
[ 1988.975548] sd 9:0:0:0: Attached scsi generic sg4 type 0
[ 1988.976520] sd 9:0:0:0: [sdd] Very big device. Trying to use READ 
CAPACITY(16).
[ 1988.976940] sd 9:0:0:0: [sdd] 5860533168 512-byte logical blocks: (3.00 
TB/2.72 TiB)
[ 1988.977374] sd 9:0:0:0: [sdd] Write Protect is off
[ 1988.977378] sd 9:0:0:0: [sdd] Mode Sense: 22 00 00 00
[ 1988.977813] sd 9:0:0:0: [sdd] Write cache: disabled, read cache: enabled, 
doesn't support DPO or FUA
[ 1988.978122] sd 9:0:0:0: [sdd] Very big device. Trying to use READ 
CAPACITY(16).
[ 1989.088468]  sdd: sdd1 sdd2 sdd3
[ 1989.089463] sd 9:0:0:0: [sdd] Very big device. Trying to use READ 
CAPACITY(16).
[ 1989.090880] sd 9:0:0:0: [sdd] Attached SCSI disk
[ 1990.048300] usb 2-1: reset high-speed USB device number 14 using xhci_hcd
[ 1995.044916] xhci_hcd :02:00.0: Timeout while waiting for address device 
command
[ 1995.136795] xhci_hcd :02:00.0: Timeout while waiting for a slot
[ 2005.941021] xhci_hcd :02:00.0: Stopped the command ring failed, maybe 
the host is dead
[ 2005.941040] xhci_hcd :02:00.0: Abort command ring failed
[ 2005.941051] xhci_hcd :02:00.0: Abort the command ring, but the xHCI is 
dead.
[ 2005.941212] xhci_hcd :02:00.0: HC died; cleaning up
[ 2005.942363] [sched_delayed] sched: RT throttling activated
[ 2006.346230] usb 2-1: device not accepting address 14, error -22
[ 2006.346342] xHCI xhci_free_dev called with unaddressed device
[ 2006.386255] sd 9:0:0:0: [sdd] Unhandled error code
[ 2006.386263] sd 9:0:0:0: [sdd]  
[ 2006.386268] Result: hostbyte=DID_ERROR driverbyte=DRIVER_OK
[ 2006.386272] sd 9:0:0:0: [sdd] CDB: 
[ 2006.386275] Read(16): 88 00 00 00 00 00 07 af 3d 38 00 00 00 f0 00 00
[ 2006.386293] end_request: I/O error, dev sdd, sector 128924984
[ 2006.386299] Buffer I/O error on device sdd2, logical block 12864
[ 2006.386306] Buffer I/O error on device sdd2, logical block 12865
[ 2006.386310] Buffer I/O error on device sdd2, logical block 12866
[ 2006.386314] Buffer I/O error on device sdd2, logical block 12867
[ 2006.386319] Buffer I/O error on device sdd2, logical block 12868
[ 2006.386323] Buffer I/O error on device sdd2, logical block 12869
[ 2006.386327] Buffer I/O error on device sdd2, logical block 12870
[ 2006.386331] Buffer I/O error on device sdd2, logical block 12871
[ 2006.386354] Buffer I/O error on device sdd2, logical block 12872
[ 2006.386359] Buffer I/O error on device sdd2, logical block 12873
[ 2006.498151] sd 9:0:0:0: [sdd] Unhandled error code
[ 2006.498159] sd 9:0:0:0: [sdd]  
[ 2006.498164] Result: hostbyte=DID_ERROR driverbyte=DRIVER_OK
[ 2006.498168] sd 9:0:0:0: [sdd] CDB: 
[ 2006.498170] Read(16): 88 00 00 00 00 00 07 af 3e 28 00 00 00 10 00 00
[ 2006.498188] end_request: I/O error, dev sdd, sector 128925224
[ 2006.542159] sd 9:0:0:0: [sdd] Unhandled error code
[ 2006.542167] sd 9:0:0:0: [sdd]  
[ 2006.542171] Result: hostbyte=DID_ERROR driverbyte=DRIVER_OK
[ 2006.542175] sd 

Bug#730338: apt-show-versions reports wrong version of distribution

2013-11-24 Thread debianuser01

Package: apt-show-versions
Version: 0.22.3

apt-show-versions displays distribution wheezy instead of jessie/sid:

$ apt-show-versions apt-show-versions
apt-show-versions:all/wheezy 0.22.3 downgradeable to 0.20

$ apt-show-versions -a apt-show-versions
apt-show-versions:all 0.22.3 hold ok installed
apt-show-versions:all 0.15  lenny   archive.debian.org
apt-show-versions:all 0.16+squeeze1 squeeze ftp.fr.debian.org
apt-show-versions:all 0.20  wheezy  ftp.fr.debian.org
apt-show-versions:all 0.22.3jessie  ftp.fr.debian.org
apt-show-versions:all 0.22.3sid ftp.fr.debian.org
apt-show-versions:all/wheezy 0.22.3 downgradeable to 0.20


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



Bug#730339: localepurge: [INTL:pt] Updated Portuguese translation for debconf messages

2013-11-24 Thread Américo Monteiro
Package: localepurge
version: N/A
Tags: l10n, patch
Severity: wishlist

Updated Portuguese translation for localepurge's debconf messages.
Translator: Américo Monteiro a_monte...@gmx.com
Feel free to use it.

For translation updates please contact 'Last Translator' or the
Portuguese Translation Team traduz at debianpt.org.

-- 
Melhores cumprimentos/Best regards,

Traduz! - Portuguese Translation Team


localepurge_pt.po.gz
Description: GNU Zip compressed data


Bug#730326: haskell-osm: FTBFS w/comonad 4.0: Couldn't match type

2013-11-24 Thread Joachim Breitner
Control: forwarded -1 https://github.com/fpco/stackage
Control: tag -1 + upstream

Hi,

Am Samstag, den 23.11.2013, 23:06 -0500 schrieb Aaron M. Ucko:
 Builds of haskell-osm against libghc-comonad-dev 4.0 (by way of
 current libghc-comonad-transformers-dev) have been failing:

thanks, forwarded upstream.

Greetings,
Joachim


-- 
Joachim Breitner
  e-Mail: m...@joachim-breitner.de
  Homepage: http://www.joachim-breitner.de
  Jabber-ID: nome...@joachim-breitner.de



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


Bug#730325: haskell-aeson-lens: FTBFS - some test results differ from expected order

2013-11-24 Thread Joachim Breitner
Control: tag -1 + upstream
Control: tag -1 forwarded https://github.com/tanakh/aeson-lens/issues/10

Am Samstag, den 23.11.2013, 22:59 -0500 schrieb Aaron M. Ucko:
 Two of haskell-aeson-lens's tests have been consistently failing in
 automatic builds:

Thanks,
Joachim


-- 
Joachim Breitner
  e-Mail: m...@joachim-breitner.de
  Homepage: http://www.joachim-breitner.de
  Jabber-ID: nome...@joachim-breitner.de



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


Bug#729300: clirr: Please add a dependency on libasm4-java

2013-11-24 Thread Miguel Landaeta
On Mon, Nov 18, 2013 at 11:43:52AM +0100, Emmanuel Bourg wrote:
 clirr doesn't use asm. You are seeing this error because clirr expects
 you to specify the classpath of the libraries compared. You can do that
 with the -ocp and -ncp command line parameters.

Hi Emmanuel,

Noted. Thanks for the clarification.

Cheers,

-- 
Miguel Landaeta, miguel at miguel.cc
secure email with PGP 0x6E608B637D8967E9 available at http://keyserver.pgp.com/
Faith means not wanting to know what is true. -- Nietzsche


signature.asc
Description: Digital signature


Bug#729781: ITP: subliminal -- Command-line tool to search and download subtitles

2013-11-24 Thread Etienne Millon
* Daniele Tricoli er...@mornie.org [131124 11:40]:
 I'm also a DPMT member and I sent a RFS for charade months ago.
 Something did go wrong and it was not uploaded:
 http://anonscm.debian.org/viewvc/python-modules/packages/python-charade/
 
 It was tagged but I don't know why it did not get uploaded. I will
 work on this now: I will also update it to use pybuild.
 
 Etienne, I can work on charade, since I'm also interested on having
 it in Debian, so you can focus on the other packages, if it's not a
 problem for you :)

Sure, I wasn't planning on packaging charade as I saw your ITP.

Pysrt depends on charade, but I added a small patch to make it use
chardet in the meantime. So, it's not blocking for me.

Good luck for your RFS :)

-- 
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#654867: (no subject)

2013-11-24 Thread Ken Sharp

Is this fixed?


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



Bug#721242: UDD: maintainer and uploaders and bugs.cgi

2013-11-24 Thread Lucas Nussbaum
On 29/08/13 at 13:47 +0200, Paul Wise wrote:
 It would be useful to have the option to display maintainer and
 uploaders on bugs.cgi. Being able to search for yourself in the bugs
 list would also be useful.

On 02/10/13 at 14:08 +0200, Niels Thykier wrote:
 It would be great if one could download a list of bugs found from a
 given query in a machine consumable format (e.g. YAML) for further
 processing.

The code of bugs.cgi is really ugly spaghetti code. The correct way to fix
#721242 and #725184 is:
- implement an abstraction that allows to search bugs
- turn bugs.cgi into a simple frontend of this abstraction
- also have another renderer (or a bugs.cgi option) to output JSON
- integrate the bugs search in dmd.cgi for per-team/maintainer lookup

Lucas


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



Bug#728743: libgmime2.6-cil: Installation hangs whilst installing Assembly

2013-11-24 Thread Alexander Heinlein
Package: mono-gac
Version: 2.10.8.1-8
Followup-For: Bug #728743

Hi,

same problem here, the installation currently hangs while reporting this
bug.

Regards
alex

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

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

Versions of packages mono-gac depends on:
ii  mono-4.0-gac  2.10.8.1-8

mono-gac recommends no packages.

mono-gac 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#730338: (no subject)

2013-11-24 Thread debianuser01
With attached patch:

$ ./apt-show-versions apt-show-versions
apt-show-versions:all/jessie 0.22.3 downgradeable to 0.20

$ ./apt-show-versions -a apt-show-versions
apt-show-versions:all 0.22.3 hold ok installed
apt-show-versions:all 0.15  lenny   archive.debian.org
apt-show-versions:all 0.16+squeeze1 squeeze ftp.fr.debian.org
apt-show-versions:all 0.20  wheezy  ftp.fr.debian.org
apt-show-versions:all 0.22.3jessie  ftp.fr.debian.org
apt-show-versions:all 0.22.3sid ftp.fr.debian.org
apt-show-versions:all/jessie 0.22.3 downgradeable to 0.20


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



Bug#730341: [backintime-kde] Segmentation fault

2013-11-24 Thread Diego Russo
Package: backintime-kde
Version: 1.0.10-1
Severity: grave

--- Please enter the report below this line. ---
When run it on console :

rudi@Seifer:~$ backintime-kde4

Back In Time
Version: 1.0.10

Back In Time comes with ABSOLUTELY NO WARRANTY.
This is free software, and you are welcome to redistribute it
under certain conditions; type `backintime-kde4 --license' for details.

Segmentation fault


I do not know how to get more debug information, I tried to run it whit dbg :

rudi@Seifer:~$ gdb -ex r --args python /usr/share/backintime/kde4/app.py
GNU gdb (GDB) 7.6.1 (Debian 7.6.1-1)
Copyright (C) 2013 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 i486-linux-gnu.
For bug reporting instructions, please see:
http://www.gnu.org/software/gdb/bugs/...
Reading symbols from /usr/bin/python2.7...Reading symbols from 
/usr/lib/debug/usr/bin/python2.7...done.
done.
Starting program: /usr/bin/python /usr/share/backintime/kde4/app.py
warning: Could not load shared library symbols for linux-gate.so.1.
Do you need set solib-search-path or set sysroot?
[Thread debugging using libthread_db enabled]
Using host libthread_db library /lib/i386-linux-
gnu/i686/cmov/libthread_db.so.1.

Back In Time
Version: 1.0.10

Back In Time comes with ABSOLUTELY NO WARRANTY.
This is free software, and you are welcome to redistribute it
under certain conditions; type `backintime-kde4 --license' for details.


Program received signal SIGSEGV, Segmentation fault.
0xb645e0b4 in QMetaObject::normalizedSignature(char const*) () from 
/usr/lib/i386-linux-gnu/libQtCore.so.4

--- System information. ---
Architecture: i386
Kernel:   Linux 3.11-2-686-pae

Debian Release: jessie/sid
  990 testing www.deb-multimedia.org 
  990 testing security.debian.org 
  990 testing debian.fastweb.it 
  500 stable  dl.google.com 
  500 stable  deb.opera.com 
  500 sid linux.dropbox.com 

--- Package information. ---
Depends   (Version) | Installed
===-+-==
backintime-common (= 1.0.10-1) | 1.0.10-1
python-kde4 | 4:4.10.5-1+b1
menu| 2.1.46
python(= 2.6.6-7~) | 2.7.5-5


Package's Recommends field is empty.

Package's Suggests field is empty.



-- 
Diego Russo


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



Bug#730342: New version of nut

2013-11-24 Thread Baruch Even
Package: nut
Version: 2.6.5-4
Severity: wishlist

A new version of nut was released last week. It includes some revamping to
the monitoring of blazer which should fix some issues around detection of
my UPS.

Thanks,
Baruch


Bug#730338: (no subject)

2013-11-24 Thread debianuser01

--- apt-show-versions.ORIG  2013-11-23 18:51:32.184960841 +0100
+++ apt-show-versions   2013-11-24 12:06:20.509078277 +0100
@@ -443,12 +443,19 @@ sub print_package_internal {
 if ($cache-{$pkgarch}) {
 $cand = $policy-candidate($cache-{$pkgarch});
 }
+   my $irelease; # first release associated with $iversion in
reorder_pkg_releases() order.
+   foreach (@pkg_releases) {
+   if ( $_-{$VERS} eq $iversion ) {
+   $irelease = get_rel_name($_-{$RELEASE});
+   last;
+   }
+   }
 foreach (@pkg_releases) {
 my $version = $_-{$VERS};
 if ($version) {
 my @version_info;
 ($found, @version_info) =
-print_version(get_rel_name($_-{$RELEASE}),
+print_version($irelease,
$pkgarch, $iversion, $version, $cand);
 push @print_info, @version_info if ($found);
 $aversion = $version;


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



Bug#730344: RFP fonts-courier-prime - It's_Courier, just_better.

2013-11-24 Thread Juhapekka Tolvanen

Package: wnpp
Severity: wishlist

* Package name: fonts-courier-prime
  Version : 1.203
* URL : http://quoteunquoteapps.com/courierprime/
* License : SIL Open Font License
  Description : It's Courier, just better.

From it's homepage:

Since the beginning, screenplays have been written in Courier. Its
uniformity allows filmmakers to make handy comparisons and estimates,
such as 1 page = 1 minute of screen time.

But there's no reason Courier has to look terrible. We set out to make
the best damn Courier ever.

We call it Courier Prime.

See also:

http://johnaugust.com/2013/introducing-courier-prime


-- 
Juhapekka naula Tolvanen * http colon slash slash iki dot fi slash juhtolv
Quidquid Latine dictum sit altum videtur.


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



Bug#730343: dch: default urgency to medium

2013-11-24 Thread Jonathan Wiltshire

Package: devscripts
Version: 2.13.4
Severity: normal
X-Debbugs-CC: debian-rele...@lists.debian.org

Dear maintainers,

At a recent sprint the release team agreed to reduce the default britney
migration time to just five days. To facilitate this, please change the
default urgency in new changelog entries to medium.

The reason for this, rather than changing britney, is that maintainers
can artificially delay their package back to ten days for changes they
know to be disruptive or in need of longer testing.

Thanks,

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

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

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


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



Bug#730345: libvirt: FTBFS on armel

2013-11-24 Thread Julien Cristau
Package: libvirt
Version: 1.1.4-1
Severity: serious
Tags: patch pending

Dear maintainer,

I've prepared an NMU for libvirt (versioned as 1.1.4-1.1) and
am going to upload it to DELAYED/2. Please feel free to tell me if I
should delay it longer.

Cheers,
Julien
diff -Nru libvirt-1.1.4/debian/changelog libvirt-1.1.4/debian/changelog
--- libvirt-1.1.4/debian/changelog	2013-11-04 07:05:56.0 +0100
+++ libvirt-1.1.4/debian/changelog	2013-11-24 12:28:11.0 +0100
@@ -1,3 +1,11 @@
+libvirt (1.1.4-1.1) unstable; urgency=high
+
+  * Non-maintainer upload.
+  * Fix linking when using pthread atomic ops, such as on armel.
+  * Disable silent build rules.
+
+ -- Julien Cristau jcris...@debian.org  Sun, 24 Nov 2013 12:27:18 +0100
+
 libvirt (1.1.4-1) unstable; urgency=low
 
   * Upload to unstable
diff -Nru libvirt-1.1.4/debian/patches/atomic-pthread-link-fix libvirt-1.1.4/debian/patches/atomic-pthread-link-fix
--- libvirt-1.1.4/debian/patches/atomic-pthread-link-fix	1970-01-01 01:00:00.0 +0100
+++ libvirt-1.1.4/debian/patches/atomic-pthread-link-fix	2013-11-24 12:15:27.0 +0100
@@ -0,0 +1,110 @@
+Description: short summary of the patch
+ TODO: Put a short summary on the line above and replace this paragraph
+ with a longer explanation of this change. Complete the meta-information
+ with other relevant fields (see below for details). To make it easier, the
+ information below has been extracted from the changelog. Adjust it or drop
+ it.
+ .
+ libvirt (1.1.4-1) unstable; urgency=low
+ .
+   * Upload to unstable
+   * [54c6758] New upstream version 1.1.4
+Author: Guido GÃŒnther a...@sigxcpu.org
+
+---
+The information above should follow the Patch Tagging Guidelines, please
+checkout http://dep.debian.net/deps/dep3/ to learn about the format. Here
+are templates for supplementary fields that you might want to add:
+
+Origin: vendor|upstream|other, url of original patch
+Bug: url in upstream bugtracker
+Bug-Debian: http://bugs.debian.org/bugnumber
+Bug-Ubuntu: https://launchpad.net/bugs/bugnumber
+Forwarded: no|not-needed|url proving that it has been forwarded
+Reviewed-By: name and email of someone who approved the patch
+Last-Update: -MM-DD
+
+Index: libvirt-1.1.4/src/Makefile.am
+===
+--- libvirt-1.1.4.orig/src/Makefile.am
 libvirt-1.1.4/src/Makefile.am
+@@ -1982,6 +1982,7 @@ noinst_LTLIBRARIES += libvirt-setuid-rpc
+ 
+ libvirt_setuid_rpc_client_la_SOURCES = 		\
+ 		util/viralloc.c			\
++		util/viratomic.c		\
+ 		util/virbitmap.c		\
+ 		util/virbuffer.c		\
+ 		util/vircommand.c		\
+Index: libvirt-1.1.4/src/Makefile.in
+===
+--- libvirt-1.1.4.orig/src/Makefile.in
 libvirt-1.1.4/src/Makefile.in
+@@ -1,4 +1,4 @@
+-# Makefile.in generated by automake 1.13.4 from Makefile.am.
++# Makefile.in generated by automake 1.14 from Makefile.am.
+ # @configure_input@
+ 
+ # Copyright (C) 1994-2013 Free Software Foundation, Inc.
+@@ -612,10 +612,10 @@ libvirt_qemu_la_LINK = $(LIBTOOL) $(AM_V
+ 	$(LDFLAGS) -o $@
+ libvirt_setuid_rpc_client_la_LIBADD =
+ am__libvirt_setuid_rpc_client_la_SOURCES_DIST = util/viralloc.c \
+-	util/virbitmap.c util/virbuffer.c util/vircommand.c \
+-	util/virconf.c util/virerror.c util/virevent.c \
+-	util/vireventpoll.c util/virfile.c util/virhash.c \
+-	util/virhashcode.c util/virjson.c util/virlog.c \
++	util/viratomic.c util/virbitmap.c util/virbuffer.c \
++	util/vircommand.c util/virconf.c util/virerror.c \
++	util/virevent.c util/vireventpoll.c util/virfile.c \
++	util/virhash.c util/virhashcode.c util/virjson.c util/virlog.c \
+ 	util/virobject.c util/virpidfile.c util/virprocess.c \
+ 	util/virrandom.c util/virsocketaddr.c util/virstoragefile.c \
+ 	util/virstring.c util/virtime.c util/virthread.c \
+@@ -629,6 +629,7 @@ am__libvirt_setuid_rpc_client_la_SOURCES
+ 	remote/lxc_protocol.c datatypes.c libvirt.c libvirt-lxc.c
+ @WITH_LXC_TRUE@am_libvirt_setuid_rpc_client_la_OBJECTS =  \
+ @WITH_LXC_TRUE@	util/libvirt_setuid_rpc_client_la-viralloc.lo \
++@WITH_LXC_TRUE@	util/libvirt_setuid_rpc_client_la-viratomic.lo \
+ @WITH_LXC_TRUE@	util/libvirt_setuid_rpc_client_la-virbitmap.lo \
+ @WITH_LXC_TRUE@	util/libvirt_setuid_rpc_client_la-virbuffer.lo \
+ @WITH_LXC_TRUE@	util/libvirt_setuid_rpc_client_la-vircommand.lo \
+@@ -4456,6 +4457,7 @@ libvirt_lxc_la_CFLAGS = $(AM_CFLAGS)
+ libvirt_lxc_la_LIBADD = libvirt.la $(CYGWIN_EXTRA_LIBADD)
+ @WITH_LXC_TRUE@libvirt_setuid_rpc_client_la_SOURCES = \
+ @WITH_LXC_TRUE@		util/viralloc.c			\
++@WITH_LXC_TRUE@		util/viratomic.c		\
+ @WITH_LXC_TRUE@		util/virbitmap.c		\
+ @WITH_LXC_TRUE@		util/virbuffer.c		\
+ @WITH_LXC_TRUE@		util/vircommand.c		\
+@@ -4937,6 +4939,8 @@ util/$(DEPDIR)/$(am__dirstamp):
+ 	@:  util/$(DEPDIR)/$(am__dirstamp)
+ util/libvirt_setuid_rpc_client_la-viralloc.lo: util/$(am__dirstamp) \
+ 	util/$(DEPDIR)/$(am__dirstamp)
++util/libvirt_setuid_rpc_client_la-viratomic.lo: 

Bug#730313: racoon and ipcomp not working for small packets

2013-11-24 Thread Matthijs Möhlmann
Hello,

Some more information, find attached the tcpdump on each machine, both
with the following commandline:
tcpdump -i eth0 -s 65535 -w filename proto 50 or proto 51 or proto 108

The information needed for the decryption is fetched using:
ip xfrm state

I have done this with both racoon and manual keying to be able to
investigate this issue a bit further.

Regards, Matthijs


ipsec1.racoon.pcap
Description: Binary data


ipsec1.setkey.pcap
Description: Binary data


ipsec2.racoon.pcap
Description: Binary data


ipsec2.setkey.pcap
Description: Binary data
src 192.168.5.94 dst 192.168.5.95
proto comp spi 0x4ec3 reqid 0 mode transport
replay-window 0
comp deflate (ERROR truncated)
sel src 0.0.0.0/0 dst 0.0.0.0/0
src 192.168.5.94 dst 192.168.5.95
proto esp spi 0x0486197e reqid 0 mode transport
replay-window 4
auth-trunc hmac(sha1) 0xbda5d966ec5b95d8bdf06c8485f418afe74f3bf6 96
enc cbc(aes) 
0x90d6ed708142f7b026a87429d9b1f97e1576fb4e5b5ad1c12de83f4cdf59c5c9
sel src 0.0.0.0/0 dst 0.0.0.0/0
src 192.168.5.94 dst 192.168.5.95
proto ah spi 0x0dc1d500 reqid 0 mode transport
replay-window 4
auth-trunc hmac(sha1) 0xa95ffc304a87aaf0adba46a324794205b6b0ecc6 96
sel src 0.0.0.0/0 dst 0.0.0.0/0
src 192.168.5.95 dst 192.168.5.94
proto comp spi 0xdbc4 reqid 0 mode transport
replay-window 0
comp deflate (ERROR truncated)
sel src 0.0.0.0/0 dst 0.0.0.0/0
src 192.168.5.95 dst 192.168.5.94
proto esp spi 0x0987761d reqid 0 mode transport
replay-window 4
auth-trunc hmac(sha1) 0x5033d0023081c9df0023dbad5e1052fe4a2db055 96
enc cbc(aes) 
0xaaacb89089097705e58b927f68e74b738d4ef475833e1b5b9e257befa69212e0
sel src 0.0.0.0/0 dst 0.0.0.0/0
src 192.168.5.95 dst 192.168.5.94
proto ah spi 0x0df15d1f reqid 0 mode transport
replay-window 4
auth-trunc hmac(sha1) 0xc65840e9de72e6dd82eede5c96779af22ebfd132 96
sel src 0.0.0.0/0 dst 0.0.0.0/0
src 192.168.5.95 dst 192.168.5.94
proto comp spi 0x0200 reqid 0 mode transport
replay-window 0
comp deflate 0x
sel src 0.0.0.0/0 dst 0.0.0.0/0
src 192.168.5.94 dst 192.168.5.95
proto comp spi 0x0100 reqid 0 mode transport
replay-window 0
comp deflate 0x
sel src 0.0.0.0/0 dst 0.0.0.0/0
src 192.168.5.95 dst 192.168.5.94
proto esp spi 0x5fb5 reqid 0 mode transport
replay-window 0
enc cbc(aes) 
0x3132333435363738393031323334353637383930313233343536373839303132
sel src 0.0.0.0/0 dst 0.0.0.0/0
src 192.168.5.94 dst 192.168.5.95
proto esp spi 0x3d55 reqid 0 mode transport
replay-window 0
enc cbc(aes) 
0x3132333435363738393031323334353637383930313233343536373839303132
sel src 0.0.0.0/0 dst 0.0.0.0/0
src 192.168.5.95 dst 192.168.5.94
proto ah spi 0x5fb4 reqid 0 mode transport
replay-window 0
auth-trunc hmac(sha1) 0x3132333435363738393031323334353637383930 96
sel src 0.0.0.0/0 dst 0.0.0.0/0
src 192.168.5.94 dst 192.168.5.95
proto ah spi 0x3d54 reqid 0 mode transport
replay-window 0
auth-trunc hmac(sha1) 0x3132333435363738393031323334353637383930 96
sel src 0.0.0.0/0 dst 0.0.0.0/0


Bug#730313: racoon and ipcomp not working for small packets

2013-11-24 Thread Cacholong Info
Hello,

Find attached the configuration files that I used for testing:

Host: ipsec1 (192.168.5.94):
 - ipsec1-ipsec-tools.conf
 - ipsec1.racoon.conf

Host: ipsec2 (192.168.5.95):
 - ipsec2-ipsec-tools.conf
 - ipsec2.racoon.conf

I will add the debug output of racoon later to this bug report.

Regards, Matthijs
#!/usr/sbin/setkey -f

# NOTE: Do not use this file if you use racoon with racoon-tool
# utility. racoon-tool will setup SAs and SPDs automatically using
# /etc/racoon/racoon-tool.conf configuration.
# 

# Flush the SAD and SPD
flush;
spdflush;

# AH
add 192.168.5.94 192.168.5.95 ah 15700 -A hmac-sha1 12345678901234567890;
add 192.168.5.95 192.168.5.94 ah 24500 -A hmac-sha1 12345678901234567890;

# ESP
add 192.168.5.94 192.168.5.95 esp 15701 -E rijndael-cbc 
12345678901234567890123456789012;
add 192.168.5.95 192.168.5.94 esp 24501 -E rijndael-cbc 
12345678901234567890123456789012;

# Add compression algo
add 192.168.5.94 192.168.5.95 ipcomp 0x100 -C deflate;
add 192.168.5.95 192.168.5.94 ipcomp 0x200 -C deflate;

# Security Policy (IPv4)
spdadd 192.168.5.94 192.168.5.95 any -P out ipsec
ipcomp/transport//use
esp/transport//require
ah/transport//require;
spdadd 192.168.5.94 192.168.5.95 any -P in ipsec
ipcomp/transport//use
esp/transport//require
ah/transport//require;

# Also read the Linux IPSEC Howto up at 
# http://www.ipsec-howto.org/t1.html 
log info;
path certificate /etc/racoon/certs;

remote 192.168.5.95 {

# Passive off, we will connect automatically
passive off;

# Allow only main mode
exchange_mode main;

# Verification (using x509 certificates)
my_identifier asn1dn;
peers_identifier asn1dn;
verify_identifier on;
verify_cert on;
ca_type x509 cacert.pem;
certificate_type x509 client.crt client.key;

# Settings
ike_frag on;
nat_traversal off;
generate_policy on;
dpd_delay 10; # dead peer detection

# Proposal
proposal {
encryption_algorithm aes 256;
hash_algorithm sha1;
authentication_method rsasig;
dh_group 5;
}
}

sainfo anonymous {
encryption_algorithm aes 256;
authentication_algorithm hmac_sha1;
compression_algorithm deflate;
}

#!/usr/sbin/setkey -f

# NOTE: Do not use this file if you use racoon with racoon-tool
# utility. racoon-tool will setup SAs and SPDs automatically using
# /etc/racoon/racoon-tool.conf configuration.
# 

## Flush the SAD and SPD
#
flush;
spdflush;

# AH
add 192.168.5.94 192.168.5.95 ah 15700 -A hmac-sha1 12345678901234567890;
add 192.168.5.95 192.168.5.94 ah 24500 -A hmac-sha1 12345678901234567890;

# ESP
add 192.168.5.94 192.168.5.95 esp 15701 -E rijndael-cbc 
12345678901234567890123456789012;
add 192.168.5.95 192.168.5.94 esp 24501 -E rijndael-cbc 
12345678901234567890123456789012;

# Compression
add 192.168.5.94 192.168.5.95 ipcomp 0x100 -C deflate;
add 192.168.5.95 192.168.5.94 ipcomp 0x200 -C deflate;

# Security Policy (IPv4)
spdadd 192.168.5.95 192.168.5.94 any -P out ipsec
ipcomp/transport//use
esp/transport//require
ah/transport//require;
spdadd 192.168.5.95 192.168.5.94 any -P in ipsec
ipcomp/transport//use
esp/transport//require
ah/transport//require;

# Also read the Linux IPSEC Howto up at 
# http://www.ipsec-howto.org/t1.html 
log info;
path certificate /etc/racoon/certs;

remote 192.168.5.94 {

# Passive on, other end will connect automatically
passive on;

# Allow only main mode
exchange_mode main;

# Verification (using x509 certificates)
my_identifier asn1dn;
peers_identifier asn1dn;
verify_identifier on;
verify_cert on;
ca_type x509 cacert.pem;
certificate_type x509 client.crt client.key;

# Settings
ike_frag on;
nat_traversal off;
generate_policy on;
dpd_delay 10; # dead peer detection

# Proposal
proposal {
encryption_algorithm aes 256;
hash_algorithm sha1;
authentication_method rsasig;
dh_group 5;
}
}

sainfo anonymous {
encryption_algorithm aes 256;
authentication_algorithm hmac_sha1;
compression_algorithm deflate;
}



Bug#729746: MAXLOGNAME increased (17 - 32)

2013-11-24 Thread Robert Millan
On 16/11/2013 17:26, Robert Millan wrote:
 See:
 
 http://svnweb.freebsd.org/base?view=revisionrevision=243023
 
 Given that MAXLOGNAME is mirrored in bits/param.h and available to
 userland, this opens a few questions:

I've audited the getlogin / getlogin_r / setlogin family of functions.
My findings so far:

 - Does the new ABI create any security concerns? E.g. buffer overflows
 in userland.

There are no security concerns AFAICT. Both getlogin and getlogin_r use
the same syscall, which conveniently takes a user-defined length limit
as parameter instead of assuming MAXLOGNAME.

 - Should we update MAXLOGNAME in glibc?

As far as getlogin / getlogin_r / setlogin are concerned I think we
should. Programs will still fail if they receive a string longer than 17
bytes in getlogin / getlogin_r. [1]

 Would we need wrapper code in
 order to preserve compatibility with 9.x in case we did that?

Increasing MAXLOGNAME that is visible to userland creates the
expectation that setlogin() will accept 32 bytes.

Unfortunately I don't see anything that can be done about that in glibc
side. Perhaps we could patch our 9.x kernels to increase MAXLOGNAME
there as well?

But if we do that, we introduce problem [1] (see above) for older code
(e.g. Wheezy chroot).

 - Do we need to patch the kernel in order to preserve backward
 compatibility with old userland? (e.g. Wheezy chroot)

I can't see a way around it: either we break new code or we break old
code. Am I missing something?

We could also turn MAXLOGNAME into a sysconf() parameter, but that
changes syscall ABI and would have to be coordinated with upstream.

Adding Petr to CC, hoping for his wisdom :-)

-- 
Robert Millan


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



Bug#645540:

2013-11-24 Thread Jacopo Nespolo
Dear Maintainer,
I came across this bug while looking into systemd, which I'm curious to try.

First thing first: I saw that the discussion here heated up in the
past, and I would like to make sure this email doesn't start a war. We
users should all be grateful to maintainers' dedicated work.

I noticed that some technical solutions were put forward, but the
discussion ended in February 2012.
Is there any chance that this bug be addressed anew?

Thanks,
j


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



Bug#730258: please add arch-specific BTS tags

2013-11-24 Thread Robert
On 24/11/2013 02:45, Robert Millan wrote:
 On 23/11/2013 22:53, Don Armstrong wrote:
 kfreebsd-amd64
 kfreebsd-i386
 
 Most of the bugs affecting one of these also affect the other. I think
 it makes sense to add a single tag to cover both.

FWIW, I think dpkg resolved this quite nicely by splitting the
architecture in two:

$ head -n 9 ostable cputable | grep -v ^#
== ostable ==
uclibceabi-linuxlinux-uclibceabilinux[^-]*-uclibceabi
uclibc-linuxlinux-uclibclinux[^-]*-uclibc
gnueabihf-linux linux-gnueabihf linux[^-]*-gnueabihf
gnueabi-linux   linux-gnueabi   linux[^-]*-gnueabi
gnuspe-linuxlinux-gnuspelinux[^-]*-gnuspe
gnux32-linuxlinux-gnux32linux[^-]*-gnux32
gnulp-linux linux-gnulp linux[^-]*-gnulp
gnu-linux   linux-gnu   linux[^-]*(-gnu.*)?
gnu-kfreebsdkfreebsd-gnukfreebsd[^-]*(-gnu.*)?
gnu-knetbsd knetbsd-gnu knetbsd[^-]*(-gnu.*)?
gnu-kopensolariskopensolaris-gnukopensolaris[^-]*(-gnu.*)?
gnu-hurdgnu gnu[^-]*
bsd-darwin  darwin  darwin[^-]*
bsd-freebsd freebsd freebsd[^-]*
bsd-netbsd  netbsd  netbsd[^-]*
bsd-openbsd openbsd openbsd[^-]*
sysv-solarissolaris solaris[^-]*
uclibceabi-uclinux  uclinux-uclibceabi  uclinux[^-]*-uclibceabi
uclibc-uclinux  uclinux-uclibc  uclinux[^-]*(-uclibc.*)?
tos-mintmintmint[^-]*

== cputable ==
i386i486(i[3456]86|pentium) 32  little
ia64ia64ia6464  little
alpha   alpha   alpha.* 64  little
amd64   x86_64  x86_64  64  little
armeb   armeb   arm.*b  32  big
arm arm arm.*   32  little
arm64   aarch64 aarch64 64  little
avr32   avr32   avr32   32  big
hppahppahppa.*  32  big
m32rm32rm32r32  big
m68km68km68k32  big
mipsmipsmips(eb)?   32  big
mipsel  mipsel  mipsel  32  little
powerpc powerpc (powerpc|ppc)   32  big
ppc64   powerpc64   (powerpc|ppc)64 64  big
s390s390s39032  big
s390x   s390x   s390x   64  big
sh3 sh3 sh3 32  little
sh3eb   sh3eb   sh3eb   32  big
sh4 sh4 sh4 32  little
sh4eb   sh4eb   sh4eb   32  big
sparc   sparc   sparc   32  big
sparc64 sparc64 sparc64 64  big

-- 
Robert


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



Bug#729567: Debian bug #726676: linux-image-3.10-3-amd64: TCP packet loss when using proxy ARP IP addresses

2013-11-24 Thread John Hughes

On 11/24/2013 01:52 AM, Ben Hutchings wrote:

On Sat, 2013-11-23 at 16:29 -0800, Andris Kalnozols wrote:

Package: src:linux
Version: 3.10.11-1

Please close bug report #726676 as the observed problem had nothing to
do with proxy-arp.  The correct diagnosis was provided by John Hughes
who filed bug report #729567.

[...]
This is still a bug, even if you can work around it by disabling GRO. 
Ben. 
Yes, but Andris confirms that bug 726676 and bug 729567 should be 
merged.  I'll do it tomorrow.



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



Bug#730346: dh-make-drupal barfs on undefined method 'search'

2013-11-24 Thread Stefan Hornburg (Racke)
package: dh-make-drupal
version: 1.6-1
severity: grave

racke@argus:~/build$ dh-make-drupal google_analytics
/usr/bin/dh-make-drupal:695:in `fetch_data': undefined method `search' for 
nil:NilClass (NoMethodError)
from /usr/bin/dh-make-drupal:747:in `for'
from /usr/bin/dh-make-drupal:147:in `fetch_info'
from /usr/bin/dh-make-drupal:99:in `initialize'
from /usr/bin/dh-make-drupal:1130:in `new'
from /usr/bin/dh-make-drupal:1130:in `run'
from /usr/bin/dh-make-drupal:1144:in `main'

-- 
LinuXia Systems = http://www.linuxia.de/
Expert Interchange Consulting and System Administration
ICDEVGROUP = http://www.icdevgroup.org/
Interchange Development Team


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



Bug#724931: Please include the patch in git

2013-11-24 Thread Christian PERRIER
clone 724931 -1 -2 -3
reassign -1 cdrom-detect
reassign -2 hw-detect
reassign -3 mountmedia
thanks

Quoting Andreas Cadhalpun (andreas.cadhal...@googlemail.com):
 Hi,
 
 I just created patches against cdrom-detect-1.46, hw-detect-1.98 and
 mountmedia-0.23. I hope that helps.
 
 For the patch to work, the loop-module is needed in the initrd, so I
 suggest to make it a dependency of cdrom-detect.

That (imho) won't work : if that module is not in D-I kernel then it
should be added there.


 I furthermore highly recommend to make the ext4, ntfs and udf
 modules dependencies of cdrom-detect, since these are the most common
 filesystems and thus being able to loopmount from them would be good.

The same stands here, but I suspect all these modules are already in
D-I kernel image packages. Needs to be carefully checked anyway.



signature.asc
Description: Digital signature


Bug#730262: Reactivation of the list

2013-11-24 Thread Altair Linux
Hello, I think I should re-activated because it is an interesting project.


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



Bug#730350: ITP: libturpial -- Python library that handles multiple microblogging protocols

2013-11-24 Thread Miguel Landaeta
Package: wnpp
Severity: wishlist
Owner: Miguel Landaeta mig...@miguel.cc

* Package name: libturpial
  Version : 1.0
  Upstream Author : Wil Alvarez wil.alejan...@gmail.com
* URL : http://github.com/Turpial/libturpial
* License : GPL-3
  Programming Lang: Python
  Description : Python library that handles multiple microblogging protocols

 libturpial aims to implement all the features and support the main
 microblogging platforms like Twitter and Identi.ca.
 .
 libturpial is the backend of Turpial microblogging client.

-- 
Miguel Landaeta, miguel at miguel.cc
secure email with PGP 0x6E608B637D8967E9 available at http://keyserver.pgp.com/
Faith means not wanting to know what is true. -- Nietzsche


signature.asc
Description: Digital signature


Bug#730352: libisl-dev: /usr/include/isl/union_map.h:114:45: error: unknown type name 'isl_multi_aff'

2013-11-24 Thread Roland Stigge
Source: libisl-dev
Version: 0.12.1-1
Severity: serious

Hi,

upon builing llvm-toolchain-3.2, I noticed that union_map.h from libisl-dev
made it FTBFS.

Consider the following minimal example.c program:

#include isl/union_map.h
int main() {
return 0;
}

Results in:

In file included from test1.c:1:0:
/usr/include/isl/union_map.h:114:45: error: unknown type name ?isl_multi_aff?
  __isl_take isl_union_map *umap, __isl_take isl_multi_aff *ma);
 ^

Roland


-- System Information:
Debian Release: 7.0
  APT prefers unreleased
  APT policy: (500, 'unreleased'), (500, 'unstable')
Architecture: powerpcspe (ppc)

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


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



Bug#730353: electrum: Please upgrade to 1.9.4

2013-11-24 Thread Laurent Bigonville
Source: electrum
Version: 1.8-1.1
Severity: wishlist

Hi,

It would be nice if you could upgrade to 1.9.4. See the release notes:

# Release 1.9.4
bugfixes: offline transactions

# Release 1.9.3
bugfixes: connection problems, transactions staying unverified

# Release 1.9.2
* fix a syntax error

# Release 1.9.1
* fix regression with --offline mode
* fix regression with --portable mode: use a dedicated directory

# Release 1.9

* The client connects to multiple servers in order to retrieve block headers 
and find the longest chain
* SSL certificate validation (to prevent MITM)
* Deterministic signatures (RFC 6979)
* Menu to create/restore/open wallets
* Create transactions with multiple outputs from CSV (comma separated values)
* New text gui: stdio
* Plugins are no longer tied to the qt GUI, they can reach all GUIs
* Proxy bugs have been fixed


# Release 1.8.1

* Notification option when receiving new tranactions
* Confirm dialogue before sending large amounts
* Alternative datafile location for non-windows systems
* Fix offline wallet creation
* Remove enforced tx fee
* Tray icon improvements
* Various bugfixes

Cheers,

Laurent Bigonville


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

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


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



Bug#730354: [INTL:es] Spanish debconf template translation for dovecot

2013-11-24 Thread Camaleón
Package: dovecot
Version: 1:2.2.5-2
Severity: wishlist
Tags: l10n patch

Greetings,

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

#. Type: error
#. Description
#: ../dovecot-core.templates:2001
msgid Wrong location for SSL certificates
msgstr Ubicación incorrecta de los certificados SSL

#. Type: error
#. Description
#: ../dovecot-core.templates:2001
msgid 
This machine uses SSL certificates for Dovecot. These certificates should be 
moved from /etc/ssl to /etc/dovecot and Dovecot's configuration file (/etc/
dovecot/conf.d/10-ssl.conf) should be updated accordingly.
msgstr 
Este equipo utiliza certificados SSL para Dovecot. Debe mover estos 
certificados de «/etc/ssl» a «/etc/dovecot» y actualizar el archivo de 
configuración de Dovecot («/etc/dovecot/conf.d/10-ssl.conf») para reflejar 
este cambio.

#. Type: error
#. Description
#: ../dovecot-core.templates:2001
msgid Please read /usr/share/doc/dovecot-core/README.Debian.gz for details.
msgstr 
Consulte «/usr/share/doc/dovecot-core/README.Debian.gz» para más detalles.

#. Type: boolean
#. Description
#: ../dovecot-core.templates:3001
msgid Create a self-signed SSL certificate?
msgstr ¿Desea crear un certificado SSL autofirmado?

#. Type: boolean
#. Description
#: ../dovecot-core.templates:3001
msgid 
An SSL certificate is needed in order to use IMAP or POP3 over SSL/TLS. No 
such certificate was found.
msgstr 
Necesita un certificado SSL para utilizar IMAP o POP3 sobre SSL/TLS. No se 
ha encontrado ningún certificado.

#. Type: boolean
#. Description
#: ../dovecot-core.templates:3001
msgid 
Please choose whether you want to create one now. This will then be a self-
signed certificate.
msgstr Elija si desea crear uno ahora. Este será un certificado autofirmado.

#. Type: boolean
#. Description
#: ../dovecot-core.templates:3001
msgid 
If you choose not to create a certificate, please adapt Dovecot's 
configuration file (/etc/dovecot/conf.d/10-ssl.conf).
msgstr 
Si decide no crear un certificado, modifique el archivo de configuración de 
Dovecot («/etc/dovecot/conf.d/10-ssl.conf»).

#. Type: string
#. Description
#: ../dovecot-core.templates:4001
msgid Host name:
msgstr Nombre del equipo:

#. Type: string
#. Description
#: ../dovecot-core.templates:4001
msgid Please enter the host name to use in the SSL certificate.
msgstr Introduzca el nombre del equipo para utilizar en el certificado SSL.

#. Type: string
#. Description
#: ../dovecot-core.templates:4001
msgid 
It will become the \commonName\ field of the generated SSL certificate.
msgstr Este será el campo «commonName» del certificado SSL generado.


Bug#730355: do not add dependency on kdepim-runtime

2013-11-24 Thread Jonathan Riddell
Package: libkolab

libkolab binary package depends on kdepim-runtime.  This is added by
kdepimlibs libraries which have symbols files modified to force the
dependency.  This causes problems with a circular dependency with
kdepim-runtime build requiring itself installed.

Add this to debian/rules to prevent it
override_dh_shlibdeps:
$(overridden_command) -- -xkdepim-runtime

this should also be added to libkgapi and libkfbapi if you package them

Jonathan


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



Bug#729650: gnome-settings-daemon segfault on start

2013-11-24 Thread Emilio Pozuelo Monfort
severity 729650 important
tags 729650 moreinfo
thanks

On 15/11/13 11:03, blu wrote:
 Package: gnome-settings-daemon
 Version: 3.10.1-1
 Severity: critical
 
 gnome-settings-daemon segfault on start. Starting with --debug option give no 
 info.

Please get a gdb backtrace.

Emilio


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



Bug#730350: ITP: libturpial -- Python library that handles multiple microblogging protocols

2013-11-24 Thread gregor herrmann
On Sun, 24 Nov 2013 09:22:02 -0300, Miguel Landaeta wrote:

 * Package name: libturpial
 * URL : http://github.com/Turpial/libturpial
 
  libturpial aims to implement all the features and support the main
  microblogging platforms like Twitter and Identi.ca.

Identi.ca has switched from StatusNet to pump.io some months ago;
looking at https://github.com/Turpial/libturpial/issues/35 it seems
that libturpial does not support pump.io yet; so it might be more
correct to say that it supports StatusNet but not identi.ca.

(In the code, libturpial/lib/protocols/identica should probably also
be libturpial/lib/protocols/statusnet but well.)

Cheers,
gregor


-- 
 .''`.  Homepage: http://info.comodo.priv.at/ - OpenPGP key 0xBB3A68018649AA06
 : :' : Debian GNU/Linux user, admin, and developer  -  http://www.debian.org/
 `. `'  Member of VIBE!AT  SPI, fellow of the Free Software Foundation Europe
   `-   NP: Albert King: Angel Of Mercy


signature.asc
Description: Digital signature


Bug#730356: ITP: kscreen -- KDE monitor hotplug and screen handling

2013-11-24 Thread Rohan Garg
Package: wnpp
Severity: wishlist
Owner: Rohan Garg rohang...@kubuntu.org

* Package name: kscreen
  Version : 1.0.2
  Upstream Author : Alejandro Fiestas Olivares afies...@kde.org
* URL : http://download.kde.org/stable/kscreen/
* License : GPL-2.0+, LGPL-2.1+, BSD
  Programming Lang: C++
  Description : KDE monitor hotplug and screen handling

 The KDE multiple monitor support is trying be as smart as possible
 adapting the behavior of it to each use case making the configuration
 of monitors as simple as plugging them to your computer.


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



Bug#723573: xterm occasionally forgets BackSpace translation

2013-11-24 Thread Zefram
Thomas Dickey wrote:
If you are using translations, xterm won't see anything except for the
given string.  None of xterm's configurability will have any effect.

Indeed, that's the intent of that setting.

That last part is where I don't see a possible relationship to xterm.

It seems to only affect xterm translations.  But I wouldn't be too
surprised if the bug turns out not to be in the xterm source at all but
in one of the X libraries.

(nor do I see a way to reproduce the bug)

Yes.  It only happens apparently at random.

-zefram


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



Bug#730028: gnome-settings-daemon: Can't change layout with alt-shift

2013-11-24 Thread Emilio Pozuelo Monfort
severity 730028 important
stop

On 20/11/13 12:21, Mikhail Timonin wrote:
 Package: gnome-settings-daemon
 Version: 3.8.5-2
 Severity: grave
 Justification: renders package unusable

 Dear Maintainer,
 *** Please consider answering these questions, where appropriate ***
 
* What led up to the situation?
Upgrade to 3.8.5-2
* What exactly did you do (or not do) that was effective (or
  ineffective)?
Alt-shift to change layouts. I believe it is the same bug as here

 https://bugs.launchpad.net/ubuntu/+source/gnome-settings-daemon/+bug/1218322
* What was the outcome of this action?
none
* What outcome did you expect instead?
layout switch

This is fixed in 3.10 which is in experimental at the moment but will move to
unstable/testing in the following weeks. In the meantime, you can use 
super+space.


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



Bug#730350: ITP: libturpial -- Python library that handles multiple microblogging protocols

2013-11-24 Thread Miguel Landaeta
On Sun, Nov 24, 2013 at 01:36:32PM +0100, gregor herrmann wrote:
 Identi.ca has switched from StatusNet to pump.io some months ago;
 looking at https://github.com/Turpial/libturpial/issues/35 it seems
 that libturpial does not support pump.io yet; so it might be more
 correct to say that it supports StatusNet but not identi.ca.
 
 (In the code, libturpial/lib/protocols/identica should probably also
 be libturpial/lib/protocols/statusnet but well.)

Thanks for the comments. I'll forward them to upstream and update the
package description to indicate this.

Cheers,

-- 
Miguel Landaeta, miguel at miguel.cc
secure email with PGP 0x6E608B637D8967E9 available at http://keyserver.pgp.com/
Faith means not wanting to know what is true. -- Nietzsche


signature.asc
Description: Digital signature


Bug#725321: [UDD]: Please make a BTS might be confused script/query

2013-11-24 Thread Lucas Nussbaum
On 04/10/13 at 15:23 +0200, Niels Thykier wrote:
 On 2013-10-04 08:43, Niels Thykier wrote:
  Package: qa.debian.org
  Severity: wishlist
  
  Hi,
  
  There are a number of cases where the Debian Bug Tracker can become
  confused or (to many) behave surprisingly.  The most common example
  is when a bug in marked as found and fixed in the same version.
  
  In this case, the BTS silent accepts the values but ignores the
  fixed version and counts the bug as unfixed in that version.
  Accordingly, the bug will still count until either the found version
  or the fixed version is removed[1].
  
  I think it would be nice if we had some easy way to get a list of all
  bugs where the BTS is (possibly) confused, so we can easily resolve
  those problems.
  
  As mentioned, one type of problem like this is when a bug has a fixed
  version equal to a found version.  A second type of issue is the use
  of binNMU versions in fixed or found versions; I am pretty sure the
  BTS does not know of binNMUs, but I have seen people use it in the
  past.
  
  Thank you in advance,
  ~Niels
  
  [1] It is possible that the BTS behaves sensible if you mark a later
  version fixed as well.  Haven't tried.
  
 
 I think the first type of confusion can be detected via the query:
 
   SELECT * FROM public.bugs_fixed_in fixed, public.bugs_found_in found
   WHERE fixed.id=found.id AND fixed.version = found.version;

Hi,

I've implemented this in
http://udd.debian.org/cgi-bin/bts-is-confused.cgi

but not yet Ivo's suggestion.

Lucas


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



Bug#730357: ITP: turpial -- Light, fast, and fully functional Twitter client written in Python

2013-11-24 Thread Miguel Landaeta
Package: wnpp
Severity: wishlist
Owner: Miguel Landaeta mig...@miguel.cc

* Package name: turpial
  Version : 2.9.6~a1
  Upstream Author : Wil Alvarez wil.alejan...@gmail.com
* URL : http://turpial.org.ve/
* License : GPL-3
  Programming Lang: Python
  Description : Light, fast, and fully functional Twitter client written in 
Python

 Turpial is a microblogging client for social networks like Twitter
 and StatusNet.
 .
 It is developed under a strict diet in order to consume very few resources,
 so it is a perfect choice to be used with netbooks, and systems with limited
 specs.
 .
 Turpial also has desktop integration features like notifications, and themes.
 It includes convenient features like muting users, and url
 shorteners.

-- 
Miguel Landaeta, miguel at miguel.cc
secure email with PGP 0x6E608B637D8967E9 available at http://keyserver.pgp.com/
Faith means not wanting to know what is true. -- Nietzsche


signature.asc
Description: Digital signature


Bug#728573: supercollider: FTBFS on sparc and ppc but built there in the past

2013-11-24 Thread Dan S
2013/11/6 Felipe Sateler fsate...@debian.org:
 On Sun, Nov 3, 2013 at 7:44 AM, Dan S danstowell+de...@gmail.com wrote:

 Thanks. As discussed previously on pkg-multimedia-maintainers, I
 propose that we restrict archs for one package
 supercollider-supernova. The package is optional for users (it's a
 non-default drop-in alternative to supercollider-server) and there
 is very little upstream support for getting it working across archs.
 It uses some fancy coding and boost libs that I'm not familiar with,
 and these are what incur these build fails. I know it would be great
 to avoid having to special-case any archs, but I don't see where the
 expertise will come from to do this, and supercollider is
 fully-functional without that package.

 I thought sc used the problematic boost libs elsewhere so this was not
 really a workable solution...

Hi all - just tested this on sparc/ppc porterboxes and the proposed
fix works. I've pushed the fix to git.debian.org - please could I
request a new upload, so that it's possible for the supercollider
packages to go eventually to testing?

Dan


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



Bug#730359: tarantool ftbfs, b-d on libiberty-dev instead of binutils-dev

2013-11-24 Thread Matthias Klose
Package: tarantool
Version: 1.5.1.218.g1a69fd6-1
Severity: serious
Tags: sid jessie

tarantool ftbfs, please b-d on libiberty-dev instead of binutils-dev.


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



Bug#730358: grive ftbfs, b-d on libiberty-dev instead of binutils-dev

2013-11-24 Thread Matthias Klose
Package: grive
Version: 0.2.0-1
Severity: serious
Tags: sid jessie

grive ftbfs, please b-d on libiberty-dev instead of binutils-dev.


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



Bug#730343: dch: default urgency to medium

2013-11-24 Thread Julien Cristau
Control: tags -1 patch

On Sun, Nov 24, 2013 at 11:17:04 +, Jonathan Wiltshire wrote:

 At a recent sprint the release team agreed to reduce the default britney
 migration time to just five days. To facilitate this, please change the
 default urgency in new changelog entries to medium.
 
 The reason for this, rather than changing britney, is that maintainers
 can artificially delay their package back to ten days for changes they
 know to be disruptive or in need of longer testing.
 
Here you go.

diff --git a/scripts/debchange.pl b/scripts/debchange.pl
index b1fb0aa..82875d6 100755
--- a/scripts/debchange.pl
+++ b/scripts/debchange.pl
@@ -1268,7 +1268,7 @@ if (($opt_i || $opt_n || $opt_bn || $opt_qa || $opt_R || 
$opt_s || $opt_team ||
 if ($opt_news) {
$urgency ||= $CL_URGENCY;
 }
-$urgency ||= 'low';
+$urgency ||= 'medium';
 
 if (($opt_v or $opt_i or $opt_l or $opt_d) and
$opt_release_heuristic eq changelog and
@@ -1537,7 +1537,7 @@ elsif ($opt_create) {
 if ($opt_news) {
$urgency ||= $CL_URGENCY;
 }
-$urgency ||= 'low';
+$urgency ||= 'medium';
 print O $PACKAGE ($VERSION) $DISTRIBUTION; urgency=$urgency\n\n;
 
 if (@closes_text or $TEXT) {

Cheers,
Julien


signature.asc
Description: Digital signature


Bug#730329: haskell-mode: fails to load; not byte compiled for emacs flavors

2013-11-24 Thread David Bremner
Shyamal Prasad shya...@member.fsf.org writes:

 Now I've noticed there is no attempt to build haskell-mode for the
 emacs flavors I have installed (emacs23 and emacs24) when I install it:

 snip
 
 Unpacking haskell-mode (from .../haskell-mode_13.07-1_all.deb) ...
 Processing triggers for install-info ...
 Setting up haskell-mode (13.07-1) ...
 ~$

I noticed the same thing with another mode recently, but I figured it
was just a local problem. 

Can you try re-installing emacsen-common, and see if haskell-mode
installs properly then?

d


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



Bug#730360: apt-cacher-ng: fails to install: dpkg-statoverride: error: syntax error: unknown user 'apt-cacher-ng' in statoverride file

2013-11-24 Thread Andreas Beckmann
Package: apt-cacher-ng
Version: 0.7.20-1
Severity: serious
User: debian...@lists.debian.org
Usertags: piuparts

Hi,

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

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

  Selecting previously unselected package apt-cacher-ng.
  (Reading database ... 8152 files and directories currently installed.)
  Unpacking apt-cacher-ng (from .../apt-cacher-ng_0.7.20-1_amd64.deb) ...
  Setting up apt-cacher-ng (0.7.20-1) ...
  dpkg-statoverride: error: syntax error: unknown user 'apt-cacher-ng' in 
statoverride file
  dpkg: error processing apt-cacher-ng (--configure):
   subprocess installed post-installation script returned error exit status 2
  Errors were encountered while processing:
   apt-cacher-ng


cheers,

Andreas


apt-cacher-ng_0.7.20-1.log.gz
Description: GNU Zip compressed data


Bug#729872: ITP: pysrt -- Python parser for SubRip (srt) files

2013-11-24 Thread Etienne Millon
Pushed to Alioth:

Vcs-Svn: svn://anonscm.debian.org/python-modules/packages/pysrt/trunk/
Vcs-Browser: 
http://anonscm.debian.org/viewvc/python-modules/packages/pysrt/trunk/

-- 
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#730361: fontconfig-config: unowned files after purge (policy 6.8, 10.8): /etc/fonts/conf.d/70-no-bitmaps.conf - /usr/share/fontconfig/conf.avail/70-no-bitmaps.conf

2013-11-24 Thread Andreas Beckmann
Package: fontconfig-config
Version: 2.11.0-2
Severity: important
User: debian...@lists.debian.org
Usertags: piuparts

Hi,

during a test with piuparts I noticed your package left unowned files on
the system after purge, which is a violation of policy 6.8 (or 10.8):

http://www.debian.org/doc/debian-policy/ch-maintainerscripts.html#s-removedetails

Filing this as important as having a piuparts clean archive is a release
goal since lenny.

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

0m27.1s ERROR: WARN: Broken symlinks:
  /etc/fonts/conf.d/70-no-bitmaps.conf - 
/usr/share/fontconfig/conf.avail/70-no-bitmaps.conf

0m28.7s ERROR: FAIL: Package purging left files on system:
  /etc/fonts/conf.d/70-no-bitmaps.conf - 
/usr/share/fontconfig/conf.avail/70-no-bitmaps.confnot owned


cheers,

Andreas


fontconfig-config_2.11.0-2.log.gz
Description: GNU Zip compressed data


Bug#728461: pu: package nagios3/3.4.1-3+deb7u1

2013-11-24 Thread Jonathan Wiltshire

Control: tag -1 pending

On 2013-11-17 14:51, Jonas Meurer wrote:

Am 15.11.2013 23:30, schrieb Jonathan Wiltshire:

On 2013-11-01 14:45, Jonas Meurer wrote:

the nagios3 package in wheezy suffers from at least one minor
security bug and a regression. I prepared nagios3/3.4.1+deb7u1
for wheezy proposed-updates in order to fix both of them.

Additionally two non-intrusive fixes in the initscript are
included: a typo and another regression.

I consider the fixes for #680615 and #714171 as pretty important.
Thus I suggest to push the pu to wheezy-updates.

So do you agree to upload the prepared packages to pu? And
furthermore, do you agree to push it to wheezy-updates as well?


Please go ahead to Wheezy. I don't think there is a great need to
use wheezy-updates as well.


Thanks a lot for looking into this. Just uploaded to wheezy.


Flagged for acceptance.

Thanks,

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

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

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


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



Bug#725321: [UDD]: Please make a BTS might be confused script/query

2013-11-24 Thread Andreas Beckmann
On 2013-11-24 12:24, Lucas Nussbaum wrote:
 On 04/10/13 at 15:23 +0200, Niels Thykier wrote:
 On 2013-10-04 08:43, Niels Thykier wrote:

 There are a number of cases where the Debian Bug Tracker can become
 confused or (to many) behave surprisingly.  The most common example
 is when a bug in marked as found and fixed in the same version.

   SELECT * FROM public.bugs_fixed_in fixed, public.bugs_found_in found
   WHERE fixed.id=found.id AND fixed.version = found.version;

 I've implemented this in
 http://udd.debian.org/cgi-bin/bts-is-confused.cgi

Script is confused and prints the list twice :-)


Andreas


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



Bug#722109: drizzle FTBFS on Alpha due to unavailable systemtap-sdt-dev build-dep

2013-11-24 Thread Matthias Klose
same for arm64. And maybe other architectures where systemtap isn't built yet.


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



Bug#730362: /usr/bin/apt-get: simulate option does not work any more

2013-11-24 Thread Ritesh Raj Sarraf
Package: apt
Version: 0.9.12.1
Severity: important
File: /usr/bin/apt-get

I don't know since when, but --simulate has broken. I checked in the
changelog, but there was no such metion.


rrs@zan:/var/lib/apt$ apt-get   update --dry-run
E: Command line option --dry-run is not understood

rrs@zan:~$ sudo apt-get -qq --print-uris --simulate update  
 
E: Command line option --simulate is not understood 
 

-- Package-specific info:

-- apt-config dump --

APT ;
APT::Architecture amd64;
APT::Build-Essential ;
APT::Build-Essential:: build-essential;
APT::Install-Recommends false;
APT::Install-Suggests false;
APT::Authentication ;
APT::Authentication::TrustCDROM true;
APT::NeverAutoRemove ;
APT::NeverAutoRemove:: ^firmware-linux.*;
APT::NeverAutoRemove:: ^linux-firmware$;
APT::NeverAutoRemove:: ^kfreebsd-image.*;
APT::NeverAutoRemove:: ^gnumach$;
APT::NeverAutoRemove:: ^gnumach-image.*;
APT::NeverAutoRemove:: ^linux-image-3.11-2-amd64$;
APT::NeverAutoRemove:: ^linux-image-extra-3.11-2-amd64$;
APT::NeverAutoRemove:: ^linux-signed-image-3.11-2-amd64$;
APT::NeverAutoRemove:: ^linux-backports-modules-.*-3.11-2-amd64$;
APT::NeverAutoRemove:: ^linux-headers-3.11-2-amd64$;
APT::NeverAutoRemove:: ^linux-image-3.12-trunk-amd64$;
APT::NeverAutoRemove:: ^linux-image-extra-3.12-trunk-amd64$;
APT::NeverAutoRemove:: ^linux-signed-image-3.12-trunk-amd64$;
APT::NeverAutoRemove:: ^linux-backports-modules-.*-3.12-trunk-amd64$;
APT::NeverAutoRemove:: ^linux-headers-3.12-trunk-amd64$;
APT::Never-MarkAuto-Sections ;
APT::Never-MarkAuto-Sections:: metapackages;
APT::Never-MarkAuto-Sections:: restricted/metapackages;
APT::Never-MarkAuto-Sections:: universe/metapackages;
APT::Never-MarkAuto-Sections:: multiverse/metapackages;
APT::Never-MarkAuto-Sections:: oldlibs;
APT::Never-MarkAuto-Sections:: restricted/oldlibs;
APT::Never-MarkAuto-Sections:: universe/oldlibs;
APT::Never-MarkAuto-Sections:: multiverse/oldlibs;
APT::Update ;
APT::Update::Post-Invoke-Success ;
APT::Update::Post-Invoke-Success:: test -x /usr/bin/apt-show-versions || exit 
0 ; apt-show-versions -i;
APT:: Periodic::Update-Package-Lists=1;
APT::Get ;
APT::Get::Download true;
APT::Architectures ;
APT::Architectures:: amd64;
APT::Architectures:: i386;
APT::Compressor ;
APT::Compressor::. ;
APT::Compressor::.::Name .;
APT::Compressor::.::Extension ;
APT::Compressor::.::Binary ;
APT::Compressor::.::Cost 1;
APT::Compressor::gzip ;
APT::Compressor::gzip::Name gzip;
APT::Compressor::gzip::Extension .gz;
APT::Compressor::gzip::Binary gzip;
APT::Compressor::gzip::Cost 2;
APT::Compressor::gzip::CompressArg ;
APT::Compressor::gzip::CompressArg:: -9n;
APT::Compressor::gzip::UncompressArg ;
APT::Compressor::gzip::UncompressArg:: -d;
APT::Compressor::bzip2 ;
APT::Compressor::bzip2::Name bzip2;
APT::Compressor::bzip2::Extension .bz2;
APT::Compressor::bzip2::Binary bzip2;
APT::Compressor::bzip2::Cost 3;
APT::Compressor::bzip2::CompressArg ;
APT::Compressor::bzip2::CompressArg:: -9;
APT::Compressor::bzip2::UncompressArg ;
APT::Compressor::bzip2::UncompressArg:: -d;
APT::Compressor::xz ;
APT::Compressor::xz::Name xz;
APT::Compressor::xz::Extension .xz;
APT::Compressor::xz::Binary xz;
APT::Compressor::xz::Cost 4;
APT::Compressor::xz::CompressArg ;
APT::Compressor::xz::CompressArg:: -6;
APT::Compressor::xz::UncompressArg ;
APT::Compressor::xz::UncompressArg:: -d;
APT::Compressor::lzma ;
APT::Compressor::lzma::Name lzma;
APT::Compressor::lzma::Extension .lzma;
APT::Compressor::lzma::Binary xz;
APT::Compressor::lzma::Cost 5;
APT::Compressor::lzma::CompressArg ;
APT::Compressor::lzma::CompressArg:: --format=lzma;
APT::Compressor::lzma::CompressArg:: -9;
APT::Compressor::lzma::UncompressArg ;
APT::Compressor::lzma::UncompressArg:: --format=lzma;
APT::Compressor::lzma::UncompressArg:: -d;
APT::CompressorName ;
APT::CompressorExtension .;
APT::CompressorBinary ;
APT::CompressorCost 100;
APT::CompressorCompressArg ;
APT::CompressorCompressArg:: -9;
APT::CompressorUncompressArg ;
APT::CompressorUncompressArg:: -d;
Dir /;
Dir::State var/lib/apt/;
Dir::State::lists lists/;
Dir::State::cdroms cdroms.list;
Dir::State::mirrors mirrors/;
Dir::State::extended_states extended_states;
Dir::State::status /var/lib/dpkg/status;
Dir::Cache var/cache/apt/;
Dir::Cache::archives archives/;
Dir::Cache::srcpkgcache srcpkgcache.bin;
Dir::Cache::pkgcache pkgcache.bin;
Dir::Etc etc/apt/;
Dir::Etc::sourcelist sources.list;
Dir::Etc::sourceparts sources.list.d;
Dir::Etc::vendorlist vendors.list;
Dir::Etc::vendorparts vendors.list.d;
Dir::Etc::main apt.conf;
Dir::Etc::netrc auth.conf;
Dir::Etc::parts apt.conf.d;
Dir::Etc::preferences preferences;
Dir::Etc::preferencesparts preferences.d;
Dir::Etc::trusted trusted.gpg;
Dir::Etc::trustedparts trusted.gpg.d;
Dir::Bin ;
Dir::Bin::methods 

Bug#730345: [Pkg-libvirt-maintainers] Bug#730345: libvirt: FTBFS on armel

2013-11-24 Thread Guido Günther
Hi Julien,
On Sun, Nov 24, 2013 at 12:29:43PM +0100, Julien Cristau wrote:
 Package: libvirt
 Version: 1.1.4-1
 Severity: serious
 Tags: patch pending
 
 Dear maintainer,
 
 I've prepared an NMU for libvirt (versioned as 1.1.4-1.1) and
 am going to upload it to DELAYED/2. Please feel free to tell me if I
 should delay it longer.

I've fixed this upstream already but didn't push it to Debian yet since
we have another blocker hindering testing migration. The NMU is fine
though.
Thanks!
 -- Guido

 
 Cheers,
 Julien

 diff -Nru libvirt-1.1.4/debian/changelog libvirt-1.1.4/debian/changelog
 --- libvirt-1.1.4/debian/changelog2013-11-04 07:05:56.0 +0100
 +++ libvirt-1.1.4/debian/changelog2013-11-24 12:28:11.0 +0100
 @@ -1,3 +1,11 @@
 +libvirt (1.1.4-1.1) unstable; urgency=high
 +
 +  * Non-maintainer upload.
 +  * Fix linking when using pthread atomic ops, such as on armel.
 +  * Disable silent build rules.
 +
 + -- Julien Cristau jcris...@debian.org  Sun, 24 Nov 2013 12:27:18 +0100
 +
  libvirt (1.1.4-1) unstable; urgency=low
  
* Upload to unstable
 diff -Nru libvirt-1.1.4/debian/patches/atomic-pthread-link-fix 
 libvirt-1.1.4/debian/patches/atomic-pthread-link-fix
 --- libvirt-1.1.4/debian/patches/atomic-pthread-link-fix  1970-01-01 
 01:00:00.0 +0100
 +++ libvirt-1.1.4/debian/patches/atomic-pthread-link-fix  2013-11-24 
 12:15:27.0 +0100
 @@ -0,0 +1,110 @@
 +Description: short summary of the patch
 + TODO: Put a short summary on the line above and replace this paragraph
 + with a longer explanation of this change. Complete the meta-information
 + with other relevant fields (see below for details). To make it easier, the
 + information below has been extracted from the changelog. Adjust it or drop
 + it.
 + .
 + libvirt (1.1.4-1) unstable; urgency=low
 + .
 +   * Upload to unstable
 +   * [54c6758] New upstream version 1.1.4
 +Author: Guido GÃŒnther a...@sigxcpu.org
 +
 +---
 +The information above should follow the Patch Tagging Guidelines, please
 +checkout http://dep.debian.net/deps/dep3/ to learn about the format. Here
 +are templates for supplementary fields that you might want to add:
 +
 +Origin: vendor|upstream|other, url of original patch
 +Bug: url in upstream bugtracker
 +Bug-Debian: http://bugs.debian.org/bugnumber
 +Bug-Ubuntu: https://launchpad.net/bugs/bugnumber
 +Forwarded: no|not-needed|url proving that it has been forwarded
 +Reviewed-By: name and email of someone who approved the patch
 +Last-Update: -MM-DD
 +
 +Index: libvirt-1.1.4/src/Makefile.am
 +===
 +--- libvirt-1.1.4.orig/src/Makefile.am
  libvirt-1.1.4/src/Makefile.am
 +@@ -1982,6 +1982,7 @@ noinst_LTLIBRARIES += libvirt-setuid-rpc
 + 
 + libvirt_setuid_rpc_client_la_SOURCES =  \
 + util/viralloc.c \
 ++util/viratomic.c\
 + util/virbitmap.c\
 + util/virbuffer.c\
 + util/vircommand.c   \
 +Index: libvirt-1.1.4/src/Makefile.in
 +===
 +--- libvirt-1.1.4.orig/src/Makefile.in
  libvirt-1.1.4/src/Makefile.in
 +@@ -1,4 +1,4 @@
 +-# Makefile.in generated by automake 1.13.4 from Makefile.am.
 ++# Makefile.in generated by automake 1.14 from Makefile.am.
 + # @configure_input@
 + 
 + # Copyright (C) 1994-2013 Free Software Foundation, Inc.
 +@@ -612,10 +612,10 @@ libvirt_qemu_la_LINK = $(LIBTOOL) $(AM_V
 + $(LDFLAGS) -o $@
 + libvirt_setuid_rpc_client_la_LIBADD =
 + am__libvirt_setuid_rpc_client_la_SOURCES_DIST = util/viralloc.c \
 +-util/virbitmap.c util/virbuffer.c util/vircommand.c \
 +-util/virconf.c util/virerror.c util/virevent.c \
 +-util/vireventpoll.c util/virfile.c util/virhash.c \
 +-util/virhashcode.c util/virjson.c util/virlog.c \
 ++util/viratomic.c util/virbitmap.c util/virbuffer.c \
 ++util/vircommand.c util/virconf.c util/virerror.c \
 ++util/virevent.c util/vireventpoll.c util/virfile.c \
 ++util/virhash.c util/virhashcode.c util/virjson.c util/virlog.c \
 + util/virobject.c util/virpidfile.c util/virprocess.c \
 + util/virrandom.c util/virsocketaddr.c util/virstoragefile.c \
 + util/virstring.c util/virtime.c util/virthread.c \
 +@@ -629,6 +629,7 @@ am__libvirt_setuid_rpc_client_la_SOURCES
 + remote/lxc_protocol.c datatypes.c libvirt.c libvirt-lxc.c
 + @WITH_LXC_TRUE@am_libvirt_setuid_rpc_client_la_OBJECTS =  \
 + @WITH_LXC_TRUE@ util/libvirt_setuid_rpc_client_la-viralloc.lo \
 ++@WITH_LXC_TRUE@ util/libvirt_setuid_rpc_client_la-viratomic.lo \
 + @WITH_LXC_TRUE@ util/libvirt_setuid_rpc_client_la-virbitmap.lo \
 + @WITH_LXC_TRUE@ util/libvirt_setuid_rpc_client_la-virbuffer.lo \
 + @WITH_LXC_TRUE@ util/libvirt_setuid_rpc_client_la-vircommand.lo \
 +@@ -4456,6 +4457,7 @@ libvirt_lxc_la_CFLAGS = $(AM_CFLAGS)
 + 

Bug#729869: ITP: babelfish -- Python library to work with countries and languages

2013-11-24 Thread Etienne Millon
Pushed to alioth:

Vcs-Svn: svn://anonscm.debian.org/python-modules/packages/babelfish/trunk/
Vcs-Browser: 
http://anonscm.debian.org/viewvc/python-modules/packages/babelfish/trunk/

-- 
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#730345: [Pkg-libvirt-maintainers] Bug#730345: libvirt: FTBFS on armel

2013-11-24 Thread Julien Cristau
On Sun, Nov 24, 2013 at 14:11:21 +0100, Guido Günther wrote:

 Hi Julien,
 On Sun, Nov 24, 2013 at 12:29:43PM +0100, Julien Cristau wrote:
  Package: libvirt
  Version: 1.1.4-1
  Severity: serious
  Tags: patch pending
  
  Dear maintainer,
  
  I've prepared an NMU for libvirt (versioned as 1.1.4-1.1) and
  am going to upload it to DELAYED/2. Please feel free to tell me if I
  should delay it longer.
 
 I've fixed this upstream already but didn't push it to Debian yet since
 we have another blocker hindering testing migration. The NMU is fine
 though.

Hi Guido,

I'm likely to ignore the other bug for now and force testing migration,
because it's now blocking a bunch of other packages that have been
waiting in sid for too long.

Thanks,
Julien


signature.asc
Description: Digital signature


Bug#730363: New upstream release 3.2.1

2013-11-24 Thread Luca Falavigna
Source: proot
Version: 3.0.2-1
Severity: wishlist


Hi,

upstream released version 3.2.1, it would be good to have it packaged:
https://github.com/cedric-vincent/PRoot/releases/tag/v3.2.1

Cheers,
Luca


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



Bug#730365: ftp.debian.com not in the mirrors file

2013-11-24 Thread Ken Sharp

Package: apt-cacher-ng
Version: 0.7.2-1
Severity: wishlist
Control: found -1 0.7.7-1 0.7.11-1 0.7.18-1 0.7.19-1 0.7.20-1

I noticed in my /var/cache/apt-cacher-ng that a separate entry for 
ftp.debian.com had been created in the directory structure instead of 
being part of debrep. ftp.debian.com seems to be quite an obvious URL to 
be missing from the mirrors file. Can this be added?



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



Bug#730364: gpredict: ground track not displayed

2013-11-24 Thread Yves-Alexis Perez
Package: gpredict
Version: 1.3-2
Severity: normal

Hi,

it seems that ground tracks are not displayed on gpredict. I've tried to
enable/disable them, changing the orbits numbers etc. I've restarted
gpredict between each changes, tried to let it run for several ours, but
nothing changes.

Regards,
-- 
Yves-Alexis

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

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

Versions of packages gpredict depends on:
ii  libatk1.0-0 2.10.0-2
ii  libc6   2.17-96
ii  libcairo2   1.12.16-2
ii  libcurl3-gnutls 7.33.0-1
ii  libfontconfig1  2.11.0-2
ii  libfreetype62.4.9-1.1
ii  libgdk-pixbuf2.0-0  2.28.2-1
ii  libglib2.0-02.38.1-2
ii  libgoocanvas3   0.15-1.1
ii  libgtk2.0-0 2.24.22-1
ii  libpango1.0-0   1.36.0-1

gpredict recommends no packages.

gpredict 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#724273: libopenmpi-dbg: not installable in sid

2013-11-24 Thread Michael Banck
reassign 724273 ftp.debian.org
retitle 724273 RM: libopenmpi-dbg -- NBS

Hi,

On Mon, Sep 23, 2013 at 09:01:12AM +0200, Ralf Treinen wrote:
 Package: libopenmpi-dbg
 Version: 1.4.5-1
 Severity: grave
 User: trei...@debian.org
 Usertags: edos-outdated
 
 Hello,
 
 libopenmpi-dbg is no longer installable in sid since it depends on 
 openmpi-bin (= 1.4.5-1). However, sid has now version 1.6.5-5 of
 openmpi-sid.

It is also no longer built from the openmpi source, so should get
removed instead I think. Reassigning to ftp.debian.org


Michael


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



Bug#730262: Reactivation of the list the spiral

2013-11-24 Thread Ricardo
Hello, I am interested to see project La Espiral.


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



Bug#730112: poppler-utils: pdftotext unusable: Inconsistency detected by ld.so / Assertion failed

2013-11-24 Thread Vincent Lefevre
On 2013-11-23 18:52:29 -0500, Michael Gilbert wrote:
 This seems to work now that fontconfig 2.11.0-2 has been uploaded.
 This can probably be fixed with a depends fontconfig (= 2.11.0-2).

That's annoying because this means that there is no longer any
workaround to get xpdf running.

-- 
Vincent Lefèvre vinc...@vinc17.net - Web: http://www.vinc17.net/
100% accessible validated (X)HTML - Blog: http://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#698544: patch implementing the functionality

2013-11-24 Thread Andreas B. Mundt
tags 698544 +patch
thanks


Hi!

Thanks to Michael Bank the attached patch seems to implement the
desired functionality.  I am going to test it some more in the
Debian-LAN setup.

Best regards,

 Andi


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



Bug#698544: and here is the patch ...

2013-11-24 Thread Andreas B. Mundt
patch attached ...
diff -ur gosa.orig/include/password-methods/class_password-methods-sasl.inc gosa/include/password-methods/class_password-methods-sasl.inc
--- gosa.orig/include/password-methods/class_password-methods-sasl.inc	2012-05-02 11:49:53.0 +0200
+++ gosa/include/password-methods/class_password-methods-sasl.inc	2013-11-24 14:32:29.354960467 +0100
@@ -42,8 +42,6 @@
 if($ldap-count() == 1){
 $attrs = $ldap-fetch();
 $this-uid = $attrs['uid'][0];
-}else{
-trigger_error(Cannot change password, unknown users '.$dn.');
 }
   }
 
diff -ur gosa.orig/plugins/admin/users/class_userManagement.inc gosa/plugins/admin/users/class_userManagement.inc
--- gosa.orig/plugins/admin/users/class_userManagement.inc	2012-05-04 17:08:16.0 +0200
+++ gosa/plugins/admin/users/class_userManagement.inc	2013-11-24 14:38:46.563804917 +0100
@@ -279,18 +279,6 @@
 $this-proposalSelected = ($this-proposal != );
 $this-dn = array_pop($this-pwd_change_queue);
 
-// Do not allow to modify SASL passwords for this customer
-$ldap = $this-config-get_ldap_link();
-$ldap-cat($this-dn, array('uid', 'userPassword'));
-$attrs = $ldap-fetch();
-$hasSasl = isset($attrs['userPassword'][0])  preg_match(/^{SASL}/i, $attrs['userPassword'][0]);
-$getsSasl= !isset($this-force_hash_type[$this-dn]) || $this-force_hash_type[$this-dn] == sasl;
-if($getsSasl  $hasSasl){
-$this-dn = ;
-$this-handlePasswordQueue();
-return;
-}
-
 // Check if we are able to enforce a password change
 $ldap = $this-config-get_ldap_link();
 $ldap-cd($this-config-current['BASE']);


Bug#730112: poppler-utils: pdftotext unusable: Inconsistency detected by ld.so / Assertion failed

2013-11-24 Thread Vincent Lefevre
On 2013-11-23 14:26:48 -0500, Michael Gilbert wrote:
 On Thu, Nov 21, 2013 at 10:18 AM, Vincent Lefevre wrote:
  $ pdftotext file.pdf
  Inconsistency detected by ld.so: dl-version.c: 224: _dl_check_map_versions: 
  Assertion `needed != ((void *)0)' failed!
 
 This is caused by the upload of fontconfig 2.11, which has pthreads
 newly enabled.

No, this was not the cause, as I had rebuilt fontconfig 2.11 without
pthreads (to have xpdf working). But...

 I've tested that disabling pthreads in fontconfig and rebuilding
 poppler solves this problem.

perhaps I needed fontconfig without pthreads + poppler rebuilt against
fontconfig without pthreads.

-- 
Vincent Lefèvre vinc...@vinc17.net - Web: http://www.vinc17.net/
100% accessible validated (X)HTML - Blog: http://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#730366: nautilus: Should provide desktop background in gnome-flashback-session

2013-11-24 Thread Olivier Berger
Package: nautilus
Version: 3.8.2-2
Severity: normal

Hi.

When in gnome-flashback-session, nautilus is run as :
nautilus --no-default-window --force-desktop

But the background of the desktop is then full back (except for the icons).

Please make it so it displays the background as selected through 
gnome-control-center background.

Many thanks in advance.

Best regards,

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

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

Versions of packages nautilus depends on:
ii  desktop-file-utils 0.22-1
ii  gsettings-desktop-schemas  3.8.2-2
ii  gvfs   1.16.3-1+b2
ii  libatk1.0-02.10.0-2
ii  libc6  2.17-93
ii  libcairo-gobject2  1.12.16-2
ii  libcairo2  1.12.16-2
ii  libexempi3 2.2.1-1
ii  libexif12  0.6.21-1
ii  libgail-3-03.8.4-1
ii  libgdk-pixbuf2.0-0 2.28.2-1
ii  libglib2.0-0   2.36.4-1
ii  libglib2.0-data2.36.4-1
ii  libgnome-desktop-3-7   3.8.4-2
ii  libgtk-3-0 3.8.4-1
ii  libnautilus-extension1a3.8.2-2
ii  libnotify4 0.7.6-1
ii  libpango-1.0-0 1.36.0-1
ii  libpangocairo-1.0-01.36.0-1
ii  libselinux12.2.1-1
ii  libtracker-sparql-0.16-0   0.16.2-1
ii  libx11-6   2:1.6.2-1
ii  libxml22.9.1+dfsg1-3
ii  nautilus-data  3.8.2-2
ii  shared-mime-info   1.0-1+b1

Versions of packages nautilus recommends:
ii  eject  2.1.5+deb1+cvs20081104-13
ii  gnome-icon-theme-symbolic  3.10.1-1
ii  gnome-sushi3.8.1-1
ii  gvfs-backends  1.16.3-1+b2
ii  librsvg2-common2.40.0-1

Versions of packages nautilus suggests:
ii  brasero3.8.0-2
ii  eog3.10.1-1
ii  evince [pdf-viewer]3.8.3-2
ii  gv [pdf-viewer]1:3.7.4-1
ii  totem  3.8.2-3
ii  tracker0.16.2-1
ii  vlc [mp3-decoder]  2.1.0-2
ii  vlc-nox [mp3-decoder]  2.1.0-2
ii  xdg-user-dirs  0.15-1
ii  xpdf [pdf-viewer]  3.03-11

-- debconf-show failed


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



Bug#729523: bind(): Permission denied [core/socket.c line 185]

2013-11-24 Thread Nicolas Iooss
I'm also experiencing issues with bind(): Permission denied after
upgrading uwsgi to 1.9.17.1-5.

I've found
http://osdir.com/ml/python-wsgi-uwsgi-general/2012-03/msg00218.html,
which points to init/snippets, which is in
/usr/share/uwsgi/init/snippets on my host. This file uses grep commands
to find uid and gid for each applications (grep --max-count=1
^\s*${KIND}\s*= $CONFFILE). However this command fails to parse uid
= www-data because -E is missing:

$ echo 'uid = www-data' | grep --max-count=1 ^\s*uid\s*= ; echo $?
1
$ echo 'uid = www-data' | grep -E --max-count=1 ^\s*uid\s*= ; echo $?
uid = www-data
0

Is it possible to add -E on line 69 of
debian/uwsgi-files/init/snippets
(http://anonscm.debian.org/gitweb/?p=collab-maint/uwsgi.git;a=blob;f=debian/uwsgi-files/init/snippets;h=1a2dda8b532158918a593d2e3fa8e6d9fc6d2897;hb=HEAD#l69)
so that the grep command works? After this change the problem is solved
on my system.

Thanks

-

Here is /var/log/uwsgi/app/iosenag.log (iosenag is the name of my
uwsgi app):

Sun Nov 24 13:28:41 2013 - *** Starting uWSGI 1.9.17.1-debian (64bit) on
[Sun Nov 24 13:28:41 2013] ***
Sun Nov 24 13:28:41 2013 - compiled with version: 4.8.1 on 26 September
2013 23:59:28
Sun Nov 24 13:28:41 2013 - os: Linux-2.6.32-042stab078.27 #1 SMP Mon Jul
1 20:48:07 MSK 2013
Sun Nov 24 13:28:41 2013 - nodename: iphiclides
Sun Nov 24 13:28:41 2013 - machine: x86_64
Sun Nov 24 13:28:41 2013 - clock source: unix
Sun Nov 24 13:28:41 2013 - pcre jit disabled
Sun Nov 24 13:28:41 2013 - detected number of CPU cores: 4
Sun Nov 24 13:28:41 2013 - current working directory: /
Sun Nov 24 13:28:41 2013 - writing pidfile to /run/uwsgi/app/iosenag/pid
Sun Nov 24 13:28:41 2013 - detected binary path: /usr/bin/uwsgi-core
Sun Nov 24 13:28:41 2013 - setgid() to 33
Sun Nov 24 13:28:41 2013 - setuid() to 33
Sun Nov 24 13:28:41 2013 - your processes number limit is 126960
Sun Nov 24 13:28:41 2013 - your memory page size is 4096 bytes
Sun Nov 24 13:28:41 2013 - detected max file descriptor number: 1024
Sun Nov 24 13:28:41 2013 - lock engine: pthread robust mutexes
Sun Nov 24 13:28:41 2013 - thunder lock: disabled (you can enable it
with --thunder-lock)
Sun Nov 24 13:28:41 2013 - bind(): Permission denied [core/socket.c line
185]

/etc/uwsgi/apps-enabled/iosenag.ini:
[uwsgi]
processes = 2
chdir = /home/nag/iosenag
module = iosenag.wsgi
vacuum = true
plugins = python


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

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

Versions of packages uwsgi depends on:
ii  initscripts  2.88dsf-43
ii  lsb-base 4.1+Debian12
ii  uwsgi-core   1.9.17.1-5

Versions of packages uwsgi recommends:
ii  sqlite3  3.8.1-1

uwsgi suggests no packages.

-- no debconf information

-- debsums errors found:
debsums: changed file /usr/share/uwsgi/init/snippets (from uwsgi package)


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



Bug#721250: [Pkg-javascript-devel] Bug#721250: Error: No compatible version found: underscore.string@'~2.2.0rc'

2013-11-24 Thread Margarita Manterola
Hi,

I've read the info on the different bug reports and pull requests in
github, and they all indicate that this bug is fixed by installing the
latest npm version.  Why was the bug reassigned to node-semver?

Debian currently is shipping npm version 1.3.10, which I believe
doesn't have this bug.

Unless I'm missing something, I think this bug should be re-assigned
back to npm and marked as fixed in version 1.3.10~dfsg-1

-- 
Cheers,
Marga


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



Bug#730251: pu: package shutdown-at-night/0.10+deb7u1

2013-11-24 Thread Jonathan Wiltshire

Control: tag -1 moreinfo

Hi,

On 2013-11-23 09:16, Petter Reinholdtsen wrote:
The following change solve the issue by detecting the X login screen 
for

KDE, Gnome and XFCE environments, and assuming the machine is unused if
the login screen can be seen.


Won't this cause problems if the user has switched to make way for 
someone else (perhaps it's a shared machine), the second user has logged 
out and the first user hasn't unlocked their session to carry on? If 
there is unsaved work in that first session, presumably it will still be 
lost when the shutdown occurs.


(I do agree your proposed patch is better than the current situation 
though.)


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

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

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


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



Bug#730367: ITP: php-apigen -- API documentation generator for php

2013-11-24 Thread David Prévot
Package: wnpp
Severity: wishlist
Owner: David Prévot taf...@debian.org
Control: affects -1 php-opencloud

* Package name: php-apigen
  Version : 2.8.0
  Upstream Author : Jaroslav Hanslík 
* URL : http://apigen.org/
* License : BSD-3-clause or GPL-2 or GPL-3
  Programming Lang: PHP
  Description : API documentation generator for PHP

 ApiGen is the tool for creating professional API documentation from PHP
 source code, similar to discontinued phpDocumentor/phpDoc. ApiGen has
 support for PHP 5.3 namespaces, packages, linking between documentation,
 cross referencing to PHP standard classes and general documentation,
 creation of highlighted source code and experimental support for PHP 5.4
 traits.


This is used by the upcoming php-opencloud version in order to generate
its documentation. It will pull four not yet packaged dependencies I’m
about to fill RFPs for.

Regards

David


signature.asc
Description: Digital signature


Bug#730368: New upstream version

2013-11-24 Thread Wouter Bolsterlee
Package: python-happybase

Hi,

HappyBase 0.7 is out; please update the package. More info:
https://happybase.readthedocs.org/en/latest/news.html

— Wouter




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


Bug#729868: ITP: enzyme -- Python module to parse video metadata

2013-11-24 Thread Etienne Millon
Pushed on alioth:

Vcs-Svn: svn://anonscm.debian.org/python-modules/packages/enzyme/trunk/
Vcs-Browser: 
http://anonscm.debian.org/viewvc/python-modules/packages/enzyme/trunk/

-- 
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#730370: live-manual: dh_compress -X for epub but not for html

2013-11-24 Thread Osamu Aoki
Source: live-manual
Version: 3.0.2-1
Severity: normal
Tags: patch

epub is basically zip compressed just like odt.  So there is no point
compressing again with gzip.  So please use dh_comress -X for it.

(A zip file contains files which are all compresses separately allowing
us to access each component file without decompressing the entire zip
file.)

Attached patch fix this problem.

Also, if dh_compress works as designed and stated in its manual page, it
should not compress html and copyright files anyway.  So I do not
understand why you have -X.html there.  (Of course, you may had reason
to do this.  So patch does not change this.)

Regards,

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

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

-- no debconf information
diff -Nru live-manual-3.0.2.orig/debian/rules live-manual-3.0.2/debian/rules
--- live-manual-3.0.2.orig/debian/rules	2013-04-30 13:59:03.0 +0900
+++ live-manual-3.0.2/debian/rules	2013-11-24 23:47:59.527793100 +0900
@@ -27,7 +27,7 @@
 	dh_builddeb -- -Zxz
 
 override_dh_compress:
-	dh_compress -X.html -X.odt
+	dh_compress -X.html -X.odt -X.epub
 
 override_dh_install:
 	dh_install --fail-missing


Bug#728797: ITP: python-mne -- Python modules for MEG and EEG data analysis

2013-11-24 Thread Alexandre Gramfort
hi,

 just builded successfully and pushed some slight polishing changes.

great thanks.

 Would you mind writing a man page for mne?  Moreover you did not yet
 commented my suggestion to drop the term python inside the software
 name.

the man page for the mne command should be generated automatcally
by the manpages target in debian/rules

it's using help2man.

Best,
Alex

 Kind regards

  Andreas.

 On Sat, Nov 23, 2013 at 10:46:07PM +0100, Alexandre Gramfort wrote:
 hi,

  I adapted packaging in Git to 0.7~rc3 and we are down to only one failed
  test:
 
  -
  TOTAL   20945   817361%
  --
  Ran 290 tests in 366.180s
 
  FAILED (SKIP=89, failures=1)
  make[2]: *** [test-no-sample] Error 1
 
  See full build log attached.  Seems it is either
 
  Test Yule-Walker against statsmodels ... SKIP: XFailed Test

 this was not a failure. I made the message more informative though.

  but more probably:
 
  Test file downloading ...

 this one is the failure. I tried something to make it work.

 and pushed tag v0.7rc4

 the test should pass without internet connection.

 see:

 https://github.com/mne-tools/mne-python/blob/master/mne/tests/test_utils.py#L202

   occures in the build log.  You need to know that the package build
   process needs to run on a computer without internet connection and you
   can/should easily simulate this by using pdebuild.  Since you are
   upstream you might be able to inject some option to the tests to ignore
   all those that need to download something.
 
  it's what test-no-sample should hopefully do.
 
  Tried this (see d/rules in Git).

 you commented:

 #MNE_SKIP_SAMPLE_DATASET_TESTS=true \
 #  xvfb-run --auto-servernum --server-num=20 -s -screen 0 1024x768x24
 -ac +extension GLX +render -noreset \
 #  $(NOSETESTS) mne

 which was supposed to do the job and also avoid failure when running
 tests requiring X such as tests relying on mayavi if present.

 the xvfb-run should not be in the Makefile.

 let me know if tests pass now. If not I'll comment the test.

 thanks again

 Alex


 --
 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#730350: ITP: libturpial -- Python library that handles multiple microblogging protocols

2013-11-24 Thread gregor herrmann
On Sun, 24 Nov 2013 09:49:39 -0300, Miguel Landaeta wrote:

 On Sun, Nov 24, 2013 at 01:36:32PM +0100, gregor herrmann wrote:
  Identi.ca has switched from StatusNet to pump.io some months ago;
  looking at https://github.com/Turpial/libturpial/issues/35 it seems
  that libturpial does not support pump.io yet; so it might be more
  correct to say that it supports StatusNet but not identi.ca.
  
  (In the code, libturpial/lib/protocols/identica should probably also
  be libturpial/lib/protocols/statusnet but well.)
 
 Thanks for the comments. I'll forward them to upstream and update the
 package description to indicate this.

Excellent, thank you!


Cheers,
gregor

-- 
 .''`.  Homepage: http://info.comodo.priv.at/ - OpenPGP key 0xBB3A68018649AA06
 : :' : Debian GNU/Linux user, admin, and developer  -  http://www.debian.org/
 `. `'  Member of VIBE!AT  SPI, fellow of the Free Software Foundation Europe
   `-   NP: Eric Clapton: Lay Down Sally


signature.asc
Description: Digital signature


Bug#718133: openmsx: FTBFS: build/entry.mk:22: *** Unknown action: test. Stop.

2013-11-24 Thread gregor herrmann
Control: tag -1 + confirmed patch

On Sun, 28 Jul 2013 19:28:27 +0200, Bas Wijnen wrote:

 The problem here seems to be that dh_auto_test tries to do make test,
 but there is no test target in the Makefile.  

Ack.

 According to
 dh_auto_test's manpage, it should detect this and exit successfully in
 that case.  It does so on my machine, and on the buildds according to
 their logs.  Are you using a newer version of debhelper where the check
 was changed?

I can reproduce the failure on sid (but not in wheezy), and I suspect
it's caused by one of the recent changes on debhelper's makefile
buildsystem (cf. eg. #728800, #718121 or some other related bugs;
might be commit f72595eb in debhelper's git ...).

I propose to disable the tests explictly; trivial patch attached.


Cheers,
gregor
 

-- 
 .''`.  Homepage: http://info.comodo.priv.at/ - OpenPGP key 0xBB3A68018649AA06
 : :' : Debian GNU/Linux user, admin, and developer  -  http://www.debian.org/
 `. `'  Member of VIBE!AT  SPI, fellow of the Free Software Foundation Europe
   `-   NP: Janis Joplin: Maybe
diff -Nru openmsx-0.9.1/debian/changelog openmsx-0.9.1/debian/changelog
--- openmsx-0.9.1/debian/changelog	2012-10-04 10:43:56.0 +0200
+++ openmsx-0.9.1/debian/changelog	2013-11-24 16:18:05.0 +0100
@@ -1,3 +1,13 @@
+openmsx (0.9.1-1.1) UNRELEASED; urgency=low
+
+  * Non-maintainer upload.
+  * Fix FTBFS: build/entry.mk:22: *** Unknown action: test.  Stop.:
+debian/rules: add empty override_dh_auto_test target to explicitly keep
+debhelper from trying to run the non-existent test suite.
+(Closes: #718133)
+
+ -- gregor herrmann gre...@debian.org  Sun, 24 Nov 2013 15:32:21 +0100
+
 openmsx (0.9.1-1) unstable; urgency=low
 
   * New upstream release. (Closes: #688935)
diff -Nru openmsx-0.9.1/debian/rules openmsx-0.9.1/debian/rules
--- openmsx-0.9.1/debian/rules	2012-02-25 23:33:21.0 +0100
+++ openmsx-0.9.1/debian/rules	2013-11-24 16:16:32.0 +0100
@@ -28,3 +28,6 @@
 	dh_installchangelogs -i doc/release-history.txt
 	dh_installman -a debian/openmsx.1
 	dh_link -a usr/share/doc/openmsx-data usr/share/doc/openmsx
+
+override_dh_auto_test:
+	# no testsuite available


signature.asc
Description: Digital signature


Bug#729624: [RFR] templates://nsd/{templates}

2013-11-24 Thread Christian PERRIER
Please find, for review, the debconf templates and packages descriptions for 
the nsd source package.

This review will last from Sunday, November 24, 2013 to Wednesday, December 04, 
2013.

Please send reviews as unified diffs (diff -u) against the original
files. Comments about your proposed changes will be appreciated.

Your review should be sent as an answer to this mail.

When appropriate, I will send intermediate requests for review, with
[RFRn] (n=2) as a subject tag.

When we will reach a consensus, I send a Last Chance For
Comments mail with [LCFC] as a subject tag.

Finally, a summary will be sent to the review bug report,
and a mail will be sent to this list with [BTS] as a subject tag.

Rationale:
--- nsd.old/debian/templates2013-11-15 07:18:39.544088911 +0100
+++ nsd/debian/templates2013-11-24 16:17:33.743228931 +0100
@@ -1,10 +1,10 @@
 Template: nsd3/old_confdir_exists
 Type: note
-_Description: Configuration directory for NSD has been changed
- WARNING: Your old NSD 3 configuration directory is not empty.
+_Description: Configuration directory for NSD changed
+ NSD configuration directory changed from /etc/nsd3 to
+ /etc/nsd, in NSD 4.  
  .
- Please note that configuration directory has changed from /etc/nsd3 to
- /etc/nsd in NSD 4.  The new nsd (= 4.0.0-1) package will automatically
- move your configuration file from /etc/nsd3/nsd.conf to /etc/nsd/nsd.conf,
- but it will not migrate everything under /etc/nsd3, so you need to check
- and move your configuration snippets and zone files by hand.
+ The old configuration file (/etc/nsd3/nsd.conf) will be moved to
+ /etc/nsd/nsd.conf. However, other configuration files in
+ /etc/nsd3 will not be moved, so you need to check
+ and move your configuration snippets and zone files yourself.

I completely revamped this template:

- the template title is shortened to make it more look like a title,
as recommended for notes templates
- we first mention the reason for the note to be displayed : changes
to configuration files locationand then the actions taken
automaticallyand then what remains to be donne manually



--- nsd.old/debian/control  2013-11-15 07:18:39.544088911 +0100
+++ nsd/debian/control  2013-11-24 16:18:39.597078127 +0100
@@ -27,19 +27,19 @@
  .
  NSD was primarily developed by NLnet Labs on request from and in close
  cooperation with RIPE NCC, as an alternative name server software to be
- run on the root name server RIPE NCC operates.
+ run on the root name server operated by RIPE NCC.

Is there only one root name server? Anyway let's use another form
which (imho) is better worded.

 
 Package: nsd3
 Architecture: all
 Section: oldlibs
 Priority: extra
 Depends: nsd (= 4.0.0-1~), ${misc:Depends}, debconf
-Description: authoritative domain name server [transitional package]
+Description: authoritative domain name server - transitional package

This is our common recommendation: separate the general and specific
parts by space, dash, sâce.

  NSD is a fast, authoritative only, high performance, simple
  and open source name server.
  .
  NSD was primarily developed by NLnet Labs on request from and in close
  cooperation with RIPE NCC, as an alternative name server software to be
- run on the root name server RIPE NCC operates.
+ run on the root name server operated by RIPE NCC.
  .
  This is a transitional dummy package. It can safely be removed.

-- 


Template: nsd3/old_confdir_exists
Type: note
_Description: Configuration directory for NSD changed
 NSD configuration directory changed from /etc/nsd3 to
 /etc/nsd, in NSD 4.  
 .
 The old configuration file (/etc/nsd3/nsd.conf) will be moved to
 /etc/nsd/nsd.conf. However, other configuration files in
 /etc/nsd3 will not be moved, so you need to check
 and move your configuration snippets and zone files yourself.
--- nsd.old/debian/templates2013-11-15 07:18:39.544088911 +0100
+++ nsd/debian/templates2013-11-24 16:17:33.743228931 +0100
@@ -1,10 +1,10 @@
 Template: nsd3/old_confdir_exists
 Type: note
-_Description: Configuration directory for NSD has been changed
- WARNING: Your old NSD 3 configuration directory is not empty.
+_Description: Configuration directory for NSD changed
+ NSD configuration directory changed from /etc/nsd3 to
+ /etc/nsd, in NSD 4.  
  .
- Please note that configuration directory has changed from /etc/nsd3 to
- /etc/nsd in NSD 4.  The new nsd (= 4.0.0-1) package will automatically
- move your configuration file from /etc/nsd3/nsd.conf to /etc/nsd/nsd.conf,
- but it will not migrate everything under /etc/nsd3, so you need to check
- and move your configuration snippets and zone files by hand.
+ The old configuration file (/etc/nsd3/nsd.conf) will be moved to
+ /etc/nsd/nsd.conf. However, other configuration files in
+ /etc/nsd3 will not be moved, so you need to check
+ and move your configuration snippets and zone files yourself.
--- nsd.old/debian/control  2013-11-15 07:18:39.544088911 +0100
+++ nsd/debian/control  

Bug#730384: RM: mountfloppy -- RoQA; renamed to mountmedia in 2008

2013-11-24 Thread Andreas Beckmann
Package: ftp.debian.org
Severity: normal

mountfloppy was renamed to mountmedia in 2008, it's time to cleanup this
forgotten package.


Andreas


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



Bug#729870: ITP: guessit -- Python library for guessing information from video filenames

2013-11-24 Thread Etienne Millon
Pushed to alioth:

Vcs-Svn: svn://anonscm.debian.org/python-modules/packages/guessit/trunk/
Vcs-Browser: 
http://anonscm.debian.org/viewvc/python-modules/packages/guessit/trunk/

-- 
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#724273: libopenmpi-dbg: not installable in sid

2013-11-24 Thread Philipp Kern
Control: severity -1 normal

On Sun, Nov 24, 2013 at 02:39:37PM +0100, Michael Banck wrote:
  libopenmpi-dbg is no longer installable in sid since it depends on 
  openmpi-bin (= 1.4.5-1). However, sid has now version 1.6.5-5 of
  openmpi-sid.
 It is also no longer built from the openmpi source, so should get
 removed instead I think. Reassigning to ftp.debian.org

It has just been removed.

Kind regards
Philipp Kern


signature.asc
Description: Digital signature


Bug#730011: Problem with debconf?

2013-11-24 Thread Jelmer Vernooij
This appears to be happening in the debconf frontend.

# /usr/share/debconf/frontend /var/lib/dpkg/info/heimdal-kdc.postinst install 
1.6~git20131117+dfsg-3
Floating point exception


signature.asc
Description: Digital signature


Bug#728470: python-novaclient: uses deprecated keyring.backend.$keyring

2013-11-24 Thread Dmitry Shachnev
Hi,

The code in question is a hack needed to catch exceptions raised
by python-gnomekeyring. However, modern python-keyring versions:

- Use GObject Introspection instead of python-gnomekeyring
  (since version 1.4, changeset e8e07ec);
- Handle such errors itself (since version 1.3, changeset 1e36608).

So I would recommend to just drop that hack as obsolete, or apply
it only for old python-keyring versions.

--
Dmitry Shachnev

signature.asc
Description: OpenPGP digital signature


Bug#730364: gpredict: ground track not displayed

2013-11-24 Thread Charles Suprin
Hello

Can you please provide the catalog numbers of the satellites you are
trying? There are some that have data that prohibits creating a ground
track.

Thanks
On Nov 24, 2013 8:45 AM, Yves-Alexis Perez cor...@debian.org wrote:

 Package: gpredict
 Version: 1.3-2
 Severity: normal

 Hi,

 it seems that ground tracks are not displayed on gpredict. I've tried to
 enable/disable them, changing the orbits numbers etc. I've restarted
 gpredict between each changes, tried to let it run for several ours, but
 nothing changes.

 Regards,
 --
 Yves-Alexis

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

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

 Versions of packages gpredict depends on:
 ii  libatk1.0-0 2.10.0-2
 ii  libc6   2.17-96
 ii  libcairo2   1.12.16-2
 ii  libcurl3-gnutls 7.33.0-1
 ii  libfontconfig1  2.11.0-2
 ii  libfreetype62.4.9-1.1
 ii  libgdk-pixbuf2.0-0  2.28.2-1
 ii  libglib2.0-02.38.1-2
 ii  libgoocanvas3   0.15-1.1
 ii  libgtk2.0-0 2.24.22-1
 ii  libpango1.0-0   1.36.0-1

 gpredict recommends no packages.

 gpredict suggests no packages.

 -- no debconf information




Bug#730385: ITP: libtest-version-perl -- module for checking the sanity of versions in modules

2013-11-24 Thread gregor herrmann
Package: wnpp
Owner: gregor herrmann gre...@debian.org
Severity: wishlist
X-Debbugs-CC: debian-de...@lists.debian.org,debian-p...@lists.debian.org

* Package name: libtest-version-perl
  Version : 1.002004
  Upstream Author : Caleb Cushing xenoterrac...@gmail.com
* URL : https://metacpan.org/release/Test-Version
* License : Artistic-2.0
  Programming Lang: Perl
  Description : module for checking the sanity of versions in modules

Test::Versions's goal is to be a one stop shop for checking to see that
the versions in the modules across a CPAN distribution are sane.

It has checks to ensure that all modules have a VERSION defined, and that the
VERSION is valid.


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



Bug#720858: New version available (4.0.2)

2013-11-24 Thread Ross Gammon
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi All,
I have successfully built Gramps 4.0.2 for Python 3 on my local
repository.
It needs some tidying up, a couple of minor errors fixed, testing of
all the optional dependencies, and then I will push it to the remote
repository and seek sponsorship.
Regards,
Ross
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.12 (GNU/Linux)
Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/

iQIcBAEBAgAGBQJSkh6eAAoJEFP+e72miRD8FQMP/2aiduDiE7knuzRlJPlp6PBJ
1GpZY/QQs93eS2vAq2kIxGg9nrDeHrC6eJBvvEjW2SemAxVwcUZ8i2QjPKF+wqNa
uxnMQjdOpcADOYvM2mM8Z3WfEtKRL2/KDYgE3h7NKrmFghZfvUm5LeYbXLr5+HG7
/y6Wzwe2tboe6YD3+UZ2ne3nE/j6nWo2nrX9jn2vEuA2uCTUOas0JcQBIBK6o72P
SWS0vwbGYPcf6FiKD30lFV0AUQSS57zmEmZXCUZOoskLiOzEWan9EPvjiZ93bGez
Zu0R67dnzaSOd7ueYVHwvDwuAOMZj8Xeur1xtIhQUGBI+EtzRVS0oNGU2C8z4CAH
1+pNvJUaq17QJWls26HfBQpx/1hfj60LL5cs0MA5V356EhD6Paxz2W5GsnOVfr7T
HBAsBFvK3+4w3X4VhkpnqwG1rPUYJOKdOkGq/SBMCRSO/gRKJfENHOfgJxeGdlpS
Er2FUbFYM/it0G7oDAI3AALAs35JRw1KvRRsBej5NtYTsPfHV/AIm4U6NwEJNZTU
VqtzC8b5DdVKUmlEFFwvbnvq0p+kjJZG8LGzH/3Nw2vk3lMYDXFJyXEAjG0IljKF
rC6sdEOLDDhAM/97ur4QBDTzTGynJolm+84xjYbw2cPB1MD1XcDJX/tLNj6Vz0ID
xH0kbKBDMskbfe5lC+fh
=gLsJ
-END PGP SIGNATURE-


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



Bug#718767: transition: ocaml 4.01.0

2013-11-24 Thread Ralf Treinen
On Sun, Nov 24, 2013 at 11:02:50AM +0100, Stéphane Glondu wrote:
 retitle 718767 transition: ocaml 4.01.0
 thanks
 
 Le 05/08/2013 10:43, Stéphane Glondu a écrit :
  I would like to start the transition to OCaml 4.00.1 (released last
  November) as soon as possible. It breaks some packages; most of them
  have been fixed in experimental. As usual, it involves a lot of binNMUs;
  I will take care of those.
 
 Now, I think we should start the transition to OCaml 4.01.0 in unstable.

Do we have any news from the release team ?

-Ralf.


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



Bug#730386: High CPU usage and many little freezes

2013-11-24 Thread dAgeCKo


Package: gnome-shell
Version: 3.8.4-5
Severity: important
Debian: Testing amd64
Regression: No

Upgrading gnome to 3.8.4-5 resulted in a high consuming gnome-shell (40 
- 100%) and many little freezes (from half a second up to 3  or 4 
seconds about every seconds).


It is very hard to write a text or to get the focus of a window.

Any information could be provided, if asked.


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



Bug#730364: gpredict: ground track not displayed

2013-11-24 Thread Yves-Alexis Perez
On dim., 2013-11-24 at 10:42 -0500, Charles Suprin wrote:
 Can you please provide the catalog numbers of the satellites you are
 trying? There are some that have data that prohibits creating a ground
 track.

Hi,

I've tried with ISS and Iridium satellites.

Regards,
-- 
Yves-Alexis


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


Bug#718767: transition: ocaml 4.01.0

2013-11-24 Thread Cyril Brulebois
Ralf Treinen trei...@free.fr (2013-11-24):
 On Sun, Nov 24, 2013 at 11:02:50AM +0100, Stéphane Glondu wrote:
  Now, I think we should start the transition to OCaml 4.01.0 in unstable.
 
 Do we have any news from the release team ?

I think Mehdi is going to look into this next week.

Mraw,
KiBi.


signature.asc
Description: Digital signature


  1   2   3   >