Bug#706051: lintian allowing VCS boilerplate

2013-04-23 Thread Niels Thykier
Control: tags -1 moreinfo

On 2013-04-24 02:03, Joao Eriberto Mota Filho wrote:
> Package: lintian
> Version: 2.5.10.5
> Severity: normal
> 
> Dear Maintainer,
> 
> lintian doesn't warn about default VCS lines in debian/control:
> 
> #Vcs-Git: git://git.debian.org/collab-maint/xyz.git
> #Vcs-Browser: http://git.debian.org/?p=collab-maint/xyz.git;a=summary
> 
> Thanks in advance.
> 
> Regards,
> 
> Eriberto - Brazil
> 
> 
> [...]
> 
> 

Hi,

This bug appears to be fixed in 2.5.12.  Could you please re-check with
that version and see if it works for you?

~Niels


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



Bug#702621: xorriso: Cannot use DVD+R DL (8.5 GB) media

2013-04-23 Thread Thomas Schmitt
Hi,

(you forgot to CC the Debian bug report 702...@bugs.debian.org)


> > Is the medium still reported as blank ?

> Yes, it is.

So we could do more experiments without media waste.


> >  xorriso -report_about ALL -scsi_log on \
> >  ...your.other.xorriso.arguments... \
> >  2>&1 | tee -i /tmp/xorriso.log

> RESERVE TRACK
> 53 00 00 00 00 00 3c 75 c0 00 
> xorriso : UPDATE : Thank you for being patient. Working since 0 seconds.
> ...
> xorriso : UPDATE : Thank you for being patient. Working since 161 seconds.
> +++ key=3  asc=0Ch  ascq=00h   (161696 ms)

The command lasts very long and finally fails with SCSI error 3,0C,00
which indicates a write error.

This is a problem between drive and medium (possibly between drive
and any DVD+R DL media).


You could try to hide the image size from xorriso and thus avoid the
RESERVE TRACK command.
But i expect a write error with the first WRITE command then:

  cat /home/axel/Videos/USA/Birth of a Nation.iso' | \
  xorriso -as cdrecord ...options.except.path.of.iso.image... -

The dash "-" lets xorriso read the image from standard input.
Do not use options --grow_overwriteable_iso or -isosize.
They would let xorriso inspect the beginning of the ISO image
in order to learn its size. If it knows the size, then it will
issue the RESERVE TRACK command.

(Less tricky would be to use a newer xorriso, which knows command
   -write_type "tao"
 resp. does not ignore -as cdrecord option -tao.
 But even the version 1.2.2 of Debian testing is too old for that.)


Have a nice day :)

Thomas


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



Bug#492603: bug #492603

2013-04-23 Thread Federico Bruni
This is a known issue:
http://lilypond.org/doc/v2.16/Documentation/notation/including-lilypond-files

Known issues and warnings

If an included file is given a name which is the same as one in LilyPond’s
installation files, LilyPond’s file from the installation files takes
precedence.


Bug#698064: patch for ARAnyM in Wheezy

2013-04-23 Thread Petr Stehlik
Good morning,

patch fixing the problem in ARAnyM 0.9.13 (as reported by Thorsten) is
attached. Also the misleading "documentation" (the ARAnyM proposal page
in ARAnyM wiki) has been corrected.

Thank you all,

Petr

Index: src/include/natfeats.h
===
RCS file: /var/repos/aranym/src/include/natfeats.h,v
retrieving revision 1.8
retrieving revision 1.13
diff -u -r1.8 -r1.13
--- src/include/natfeats.h	29 Nov 2007 18:00:21 -	1.8
+++ src/include/natfeats.h	14 Jan 2013 19:32:32 -	1.13
@@ -1,3 +1,26 @@
+/*
+ * natfeats.h - common functions for all NatFeats
+ *
+ * Copyright (c) 2001-2013 Petr Stehlik of ARAnyM dev team (see AUTHORS)
+ *
+ * This file is part of the ARAnyM project which builds a new and powerful
+ * TOS/FreeMiNT compatible virtual machine running on almost any hardware.
+ *
+ * ARAnyM is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * ARAnyM is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with ARAnyM; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ */
+
 #ifndef _NATFEATS_H
 #define _NATFEATS_H
 
@@ -14,6 +37,9 @@
 // should NatFeats work with physical (not MMU mapped) addresses
 #define NATFEAT_PHYS_ADDR	1
 
+// should NatFeats use direct memcpy() to/from guest provided pointer (fast but less safe)
+#define NATFEAT_LIBC_MEMCPY	1
+
 #if NATFEAT_PHYS_ADDR
 #  define ReadNFInt8	ReadAtariInt8
 #  define ReadNFInt16	ReadAtariInt16
@@ -30,53 +56,77 @@
 #  define WriteNFInt32	WriteInt32
 #endif
 
-static inline void Atari2Host_memcpy(void *dst, memptr src, size_t n)
+static inline void Atari2Host_memcpy(void *_dst, memptr src, size_t count)
 {
-#if NATFEAT_PHYS_ADDR
-	memcpy(dst, Atari2HostAddr(src), n);
+#if NATFEAT_LIBC_MEMCPY && NATFEAT_PHYS_ADDR
+	memptr src_end = src + count - 1;
+	if (! ValidAtariAddr(src, false, 1))
+		BUS_ERROR(src);
+	if (! ValidAtariAddr(src_end, false, 1))
+		BUS_ERROR(src_end);
+
+	memcpy(_dst, Atari2HostAddr(src), count);
 #else
-	uint8 *dest = (uint8 *)dst;
-	while ( n-- )
-		*dest++ = (char)ReadInt8( (uint32)src++ );
+	uint8 *dst = (uint8 *)_dst;
+	while ( count-- )
+		*dst++ = (char)ReadNFInt8( src++ );
 #endif
 }
 
-static inline void Host2Atari_memcpy(memptr dest, const void *src, size_t n)
+static inline void Host2Atari_memcpy(memptr dst, const void *_src, size_t count)
 {
-#if NATFEAT_PHYS_ADDR
-	memcpy(Atari2HostAddr(dest), src, n);
+#if NATFEAT_LIBC_MEMCPY && NATFEAT_PHYS_ADDR
+	memptr dst_end = dst + count - 1;
+	if (! ValidAtariAddr(dst, true, 1))
+		BUS_ERROR(dst);
+	if (! ValidAtariAddr(dst_end, true, 1))
+		BUS_ERROR(dst_end);
+
+	memcpy(Atari2HostAddr(dst), _src, count);
 #else
-	uint8 *source = (uint8 *)src;
-	while ( n-- )
-		WriteInt8( dest++, *source++ );
+	uint8 *src = (uint8 *)_src;
+	while ( count-- )
+		WriteNFInt8( dst++, *src++ );
 #endif
 }
 
-static inline void Atari2HostSafeStrncpy( char *dest, memptr source, size_t count )
+static inline void Atari2HostSafeStrncpy(char *dst, memptr src, size_t count)
 {
-#if NATFEAT_PHYS_ADDR
-	safe_strncpy(dest, (const char*)Atari2HostAddr(source), count);
+#if NATFEAT_LIBC_MEMCPY && NATFEAT_PHYS_ADDR
+	memptr src_end = src + count - 1;
+	if (! ValidAtariAddr(src, false, 1))
+		BUS_ERROR(src);
+	if (! ValidAtariAddr(src_end, false, 1))
+		BUS_ERROR(src_end);
+
+	safe_strncpy(dst, (const char*)Atari2HostAddr(src), count);
 #else
-	while ( count > 1 && (*dest = (char)ReadInt8( source++ )) != 0 ) {
+	while ( count > 1 && (*dst = (char)ReadNFInt8( src++ )) != 0 ) {
 		count--;
-		dest++;
+		dst++;
 	}
 	if (count > 0)
-		*dest = '\0';
+		*dst = '\0';
 #endif
 }
 
-static inline void Host2AtariSafeStrncpy( memptr dest, const char *source, size_t count )
+static inline void Host2AtariSafeStrncpy(memptr dst, const char *src, size_t count)
 {
-#if NATFEAT_PHYS_ADDR
-	safe_strncpy((char *)Atari2HostAddr(dest), source, count);
+#if NATFEAT_LIBC_MEMCPY && NATFEAT_PHYS_ADDR
+	memptr dst_end = dst + count - 1;
+	if (! ValidAtariAddr(dst, true, 1))
+		BUS_ERROR(dst);
+	if (! ValidAtariAddr(dst_end, true, 1))
+		BUS_ERROR(dst_end);
+
+	safe_strncpy((char *)Atari2HostAddr(dst), src, count);
 #else
-	while ( count > 1 && *source ) {
-		WriteInt8( dest++, (uint8)*source++ );
+	while ( count > 1 && *src ) {
+		WriteNFInt8( dst++, (uint8)*src++ );
 		count--;
 	}
 	if (count > 0)
-		WriteInt8( dest, 0 );
+		WriteNFInt8( dst, 0 );
 #endif
 }
 #endif /* _NATFEATS_H */


Bug#153782: bug #153782

2013-04-23 Thread Federico Bruni
Here's the link to the relevant part in the documentation for current
stable:
http://lilypond.org/doc/v2.16/Documentation/notation/special-rhythmic-concerns#index-grace_002dnote-synchronization

This bug is already recorded on the lilypond tracker:
https://code.google.com/p/lilypond/issues/detail?id=34


Bug#706049: RFS: nsnake/1.5-1 [ITP] -- classic snake game with textual interface

2013-04-23 Thread Anton Gladky
Hi Alexandre,

your package looks fine and I do not have any notes/question regarding
packaging.

But we have already snake-package in Archive [1], and it is actually orphaned.
Are there any advantages in your implementation.

Thank you,

[1] http://packages.qa.debian.org/s/snake4.html
[2] http://bugs.debian.org/581387

Anton

2013/4/24 Alexandre Dantas :
> Package: sponsorship-requests
> Severity: wishlist
>
>   Package: sponsorship-requests
>   Severity: wishlist
>
>   Dear mentors,
>
>   I am looking for a sponsor for my package "nsnake"
>
>  * Package name: nsnake
>Version : 1.5-1
>Upstream Author : Alexandre Dantas 
>  * URL : http://www.alexdantas.net/projects/nsnake/
>  * License : GPL3
>Section : games
>
>   It builds those binary packages:
>
> nsnake - classic snake game with textual interface
>
>   To access further information about this package, please visit the 
> following URL:
>
>   http://mentors.debian.net/package/nsnake
>
>
>   Alternatively, one can download the package with dget using this command:
>
> dget -x 
> http://mentors.debian.net/debian/pool/main/n/nsnake/nsnake_1.5-1.dsc
>
>   More information about nsnake can be obtained from 
> http://www.alexdantas.net/projects/nsnake/
>
>   There's also a Git repository:
>
> https://github.com/alexdantas/nsnake
>
>   Changes since the last upload:
>
>   [your most recent changelog entry]
>
>
>   Regards,
>Alexandre Dantas
>
>
> -- System Information:
> Debian Release: 6.0.7
>   APT prefers stable-updates
>   APT policy: (500, 'stable-updates'), (500, 'stable')
> Architecture: amd64 (x86_64)
>
> Kernel: Linux 3.5.0-27-generic (SMP w/2 CPU cores)
> Locale: LANG=en_US.iso-8859-1, LC_CTYPE=en_US.iso-8859-1 (charmap=ISO-8859-1)
> Shell: /bin/sh linked to /bin/dash
>
>
> --
> To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org
> with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
> Archive: http://lists.debian.org/20130423235332.13400.16747.reportbug@terminus
>


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



Bug#684192: bug #684192

2013-04-23 Thread Federico Bruni
I cannot reproduce this error.
lilypond -h prints the help in my locale correctly.

BTW, you must use UTF-8:
http://lilypond.org/doc/v2.17/Documentation/notation/special-characters#text-encoding

I'm on debian sid.
lilypond 2.14.2


Bug#706032: [Openstack-devel] Bug#706032: keystone: postinst replaces passwords in /etc/keystone/keystone.conf with sed

2013-04-23 Thread Salvatore Bonaccorso
Hi Thomas

Thank you for your quick reply.

On Wed, Apr 24, 2013 at 04:24:18AM +0800, Thomas Goirand wrote:
> On 04/24/2013 02:26 AM, Salvatore Bonaccorso wrote:
> > Package: keystone
> > Version: 2012.1.1-13
> > Severity: minor
> > 
> > Hi Thomas
> > 
> > 79 sed -i ${INIFILE_CNT}' s|.*|'${INIFILE_DIRECTIVE}' =
> '${INIFILE_NEW_VALUE}'|' ${INIFILE_MYCONFIG}
> > [...]
> > 586 pkgos_inifile set ${KEY_CONF} DEFAULT admin_token ${AUTH_TOKEN}
> > 
> > But this migth, for short time only, expose the password seen in the
> > process list, as the token is passed as command line argument world
> > readable.
> 
> Hi Salvatore,
> 
> Indeed, this is a problem. And it is more wide than you think, since in
> many openstack packages, I've been doing that to set the keystone
> service credentials in multiple places (eg: in Cinder, Glance, Heat,
> Nova and Quantum).

Jupp. I only looked at keystone right now.

> My Unix foo tells me that I could create a folder in /tmp, then use echo
> to write the sed parameters in it (since echo is built-in in most sh
> implementations), then finally use the -f parameter of sed. Though this
> seems a bit overkill, so I might want to do that only on some specific
> security concerned cases, which is problematic: it would easy to forget
> "--safe-replace-with-no-ps-aux" when calling pkgos_inifile.

Yes this should be ok. It will not expose the replacement. Only thing
which needs to be taken care is to not create predictable filenames.

> > The reason I originally to the postinst: keystone in wheezy/sid seems
> > to create a /etc/keystone/keystone.confe due to 
> > 
> > AUTH_TOKEN=${RET:-ADMIN}
> > sed -ie 's|^[ \t]*admin_token[ \t]*=.*|admin_token = 
> > '${AUTH_TOKEN}'|' ${KEY_CONF}
> > 
> > beeing used, so replacing the file creating a backupfile with ending
> > 'e'.
> 
> Oh. I stared at the code trying to find out why it was generating these
> files ending with "e", and didn't find out (I don't think that part was
> written by me). Thanks for finding it. If I understand well, it is
> because sed is called using:
> sed -ie  
> 
> instead of:
> sed -i -e  
> 
> then the "e" is used as backup character. Right? That's a pretty stupid
> bug... :)

Yes exactly, this is the reason the keystone.confe file is created :).

Don't know, might be worth adding some small cleanup part in next
keystone upload.

Regards,
Salvatore


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



Bug#706060: ITP: lxc-docker -- the Linux container runtime

2013-04-23 Thread Daniel Mizyrycki
Package: wnpp
Version: N/A; reported 2013-04-23
Severity: wishlist
Owner: Daniel Mizyrycki 
X-Debbugs-CC: debian-de...@lists.debian.org

* Package name : lxc-docker
Version : 0.1.8
Upstream Author : dotCloud Inc 
* URL : http://github.com/dotcloud/docker
* License : Apache-2.0
Description : Docker: the Linux container runtime

Docker complements LXC with a high-level API which operates at the
process level. It runs unix processes with strong guarantees of
isolation and repeatability across servers.
Docker is a great building block for automating distributed systems:
large-scale web deployments, database clusters, continuous deployment
systems, private PaaS, service-oriented architectures, etc.


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



Bug#706059: libvirt-bin: libvirt seems unable to connect to xen using unix sockets

2013-04-23 Thread Michael Deegan
Package: libvirt-bin
Version: 0.9.12-11
Severity: normal

Hello,

libvirt seems to default to attempting to connect to xen using the insecure 
port 8000
HTTP interface, despite documentation everywhere saying that the HTTP interface
is bad for security:

root@mordac:/home/michael# virsh connect
error: Failed to connect to the hypervisor
error: unable to connect to 'localhost:8000': Connection refused

So I've configured xend to use the unix socket interface instead:

root@mordac:/home/michael# grep ^[^#].*xend-unix /etc/xen/xend-config.sxp
(xend-unix-server yes)
(xend-unix-path /var/run/xend/xend.sock)

However, I am having difficulty convincing libvirt to use this interface. My
reading of http://libvirt.org/uri.html suggests that these *ought* to work:

root@mordac:/home/michael# virsh -c ///var/run/xend/xend.sock
error: no connection driver available for No connection for URI 
/var/run/xend/xend.sock
error: failed to connect to the hypervisor

root@mordac:/home/michael# virsh -c xen:///var/run/xend/xend.sock
error: internal error unexpected Xen URI path '/var/run/xend/xend.sock', 
try xen:///
error: failed to connect to the hypervisor

root@mordac:/home/michael# virsh -c xen+unix:///var/run/xend/xend.sock
error: internal error unexpected Xen URI path '/var/run/xend/xend.sock', 
try xen:///
error: failed to connect to the hypervisor

root@mordac:/home/michael# virsh -c xen+unix:///
error: unable to connect to 'localhost:8000': Connection refused
error: failed to connect to the hypervisor

root@mordac:/home/michael# virsh -c xen:///
error: unable to connect to 'localhost:8000': Connection refused
error: failed to connect to the hypervisor

I'm open to the possibility that it is simply a case of error messages being
incorrect or misleading.

-- System Information:
Debian Release: 6.0.7
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'stable'), (500, 'oldstable'), 
(489, 'testing')
Architecture: i386 (i686)

Kernel: Linux 3.2.0-4-686-pae (SMP w/2 CPU cores)
Locale: LANG=en_AU, LC_CTYPE=en_AU (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/bash

Versions of packages libvirt-bin depends on:
ii  adduser 3.113+nmu3
ii  gettext-base0.18.1.1-9
ii  libavahi-client30.6.31-2
ii  libavahi-common30.6.31-2
ii  libblkid1   2.20.1-5.3
ii  libc6   2.13-38
ii  libcap-ng0  0.6.6-2
ii  libdbus-1-3 1.6.8-1
ii  libdevmapper1.02.1  2:1.02.74-7
ii  libgcrypt11 1.5.0-5
ii  libgnutls26 2.12.20-6
ii  libnetcf1   0.1.9-2
ii  libnl1  1.1-7
ii  libnuma12.0.8~rc4-1
ii  libparted0debian1   2.3-12
ii  libpcap0.8  1.3.0-1
ii  libpciaccess0   0.13.1-2
ii  libreadline66.2+dfsg-0.1
ii  libsasl2-2  2.1.25.dfsg1-6
ii  libudev0175-7.1
ii  libvirt00.9.12-11
ii  libxenstore3.0  4.1.4-3
ii  libxml2 2.8.0+dfsg1-7+nmu1
ii  libyajl22.0.4-2
ii  logrotate   3.8.1-4

Versions of packages libvirt-bin recommends:
ii  bridge-utils 1.5-6
ii  dmidecode2.11-9
ii  dnsmasq-base 2.62-3+deb7u1
pn  ebtables 
ii  gawk 1:4.0.1+dfsg-2.1
ii  iproute  20120521-3+b3
ii  iptables 1.4.14-3.1
ii  libxml2-utils2.8.0+dfsg1-7+nmu1
ii  netcat-openbsd   1.105-7
ii  parted   2.3-12
pn  qemu-kvm | qemu  

Versions of packages libvirt-bin suggests:
ii  policykit-1  0.105-3
pn  radvd

-- 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#706017: jigsawpuzzle activity does not start

2013-04-23 Thread Prach Pongpanich
Hi,

I think the jigsawpuzzle does not start because it can't import python-abiword.

$ python -c "import abiword"

(pyabiword:4533): Gtk-CRITICAL **: IA__gtk_clipboard_get_for_display:
assertion `display != NULL' failed

(pyabiword:4533): Gtk-CRITICAL **: IA__gtk_clipboard_get_for_display:
assertion `display != NULL' failed
/usr/lib/python2.7/dist-packages/abiword/__init__.py:1: Warning:
specified instance size for type `AbiWidget' is smaller than the
parent type's `GtkBin' instance size
  from abiword import *
/usr/lib/python2.7/dist-packages/abiword/__init__.py:1: Warning:
g_type_get_qdata: assertion `node != NULL' failed
  from abiword import *

Segmentation fault


Cheers,

 Prach


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



Bug#705236: npm doesn't work with node v0.10.1

2013-04-23 Thread Guido Günther
Package: npm
Followup-For: Bug #705236

I wonder if it would make sense to ship npm from nodejs itself? This
would make sure these are in sync. cc: the nodejs maintainers for that.

If not I'd be happy to NMU a new npm version.
Cheers,
 -- Guido


-- System Information:
Debian Release: 7.0
  APT prefers testing
  APT policy: (990, 'testing'), (50, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)

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


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



Bug#706058: auth2db: I shut down the computer while i thought it was froze and now i can't install or uninstall any software

2013-04-23 Thread alexander
Package: auth2db
Version: 0.2.5-2+dfsg-3
Severity: important

An error occurred:
The E: dpkg was interrupted and it said that I must manually run dpkg--
configure-a' to correct the problem.
E:_'cache->open()failed.

I do not know how to correct or configure this problem.  Please Help Me.



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

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

Versions of packages auth2db depends on:
ii  adduser 3.112+nmu2   add and remove users and groups
pn  auth2db-common (no description available)
pn  auth2db-filters(no description available)
ii  debconf [debconf-2.0]   1.5.36.1 Debian configuration management sy
ii  lsb-base3.2-23.2squeeze1 Linux Standard Base 3.2 init scrip
ii  python  2.6.6-3+squeeze7 interactive high-level object-orie
ii  python-configobj4.7.2+ds-1   simple but powerful config file re
ii  python-mysqldb  1.2.2-10+b1  A Python interface to MySQL
ii  rsyslog [system-log-dae 4.6.4-2  enhanced multi-threaded syslogd

Versions of packages auth2db recommends:
pn  mysql-server   (no description available)

auth2db suggests no packages.

-- debconf information:
* auth2db/activate_alerts: true


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



Bug#706057: [hpijs] Please clarify/simplify short description

2013-04-23 Thread Filipus Klutiero

Package: hpijs
Version: 3.12.6-3.1
Severity: wishlist

The short description reads:



HP Linux Printing and Imaging - gs IJS driver (hpijs)

While this may be a correct and precise description, a reader won't 
understand just from the short description that hpijs is a printer 
driver unless he knows IJS. I suggest to simplify :
HP Linux Printing and Imaging - printer driver (hpijs) 

or to clarify:

HP Linux Printing and Imaging - gs IJS printer driver (hpijs)




Bug#706056: liferea: Does not accept sapce key for skimming through article.

2013-04-23 Thread Sthu
Package: liferea
Version: 1.8.6-1.1
Severity: minor

Dear Maintainer,


the program does not accept space key for skimming through an article even when 
set so in

prefernces->headlines->reading headlines

instead it keeps opening the article in a browser.

Only Ctrl-Space works for me for skimming but that is annoying to press 
additional key
always.

Please fix it. And thank you for your work.


-- System Information:
Debian Release: 7.0
  APT prefers testing-updates
  APT policy: (700, 'testing-updates'), (700, 'testing'), (600, 
'stable-updates'), (600, 'stable')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

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

Versions of packages liferea depends on:
ii  gconf-service   3.2.5-1+build1
ii  gconf2  3.2.5-1+build1
ii  libatk1.0-0 2.4.0-2
ii  libc6   2.13-38
ii  libcairo2   1.12.2-3
ii  libgconf-2-43.2.5-1+build1
ii  libgdk-pixbuf2.0-0  2.26.1-1
ii  libglib2.0-02.33.12+really2.32.4-5
ii  libgtk2.0-0 2.24.10-2
ii  libice6 2:1.0.8-2
ii  libjson-glib-1.0-0  0.14.2-1
ii  libnotify4  0.7.5-1
ii  libpango1.0-0   1.30.0-1
ii  libsm6  2:1.2.1-2
ii  libsoup2.4-12.38.1-2
ii  libsqlite3-03.7.13-1
ii  libunique-1.0-0 1.1.6-4
ii  libwebkitgtk-1.0-0  1.8.1-3.4
ii  libxml2 2.8.0+dfsg1-7+nmu1
ii  libxslt1.1  1.1.26-14.1
ii  liferea-data1.8.6-1.1

Versions of packages liferea recommends:
ii  curl  7.26.0-1+wheezy2
ii  dbus  1.6.8-1
ii  dbus-x11  1.6.8-1
ii  wget  1.13.4-3

Versions of packages liferea suggests:
ii  network-manager  0.9.4.0-10

-- 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#706055: Unicode box art lines in git log --graph

2013-04-23 Thread Trent W. Buck
Package: git
Version: 1:1.8.2.1-1
Severity: wishlist
Tags: upstream

I like git log --graph.
I'd like it more if it could use Unicode lines.
A trivial example is mocked up below.

BEFORE

*   8f78c67 (origin/prisonpc-satellite) Merge branch 'wheezy' into 
prisonpc-satellite
|\
| * 0278e82 (origin/wheezy) Fix authorized_keys - curl was not following 
the 302.
* | 7c00a55 curl is not being used, nfs server will be.
|/
* d44ef57 Remove obsolete workaround for Ubuntu Precise issues.
* 8dc4129 Fix git describe.
| * 1f2abd4 (origin/understudy-generic) Remove need for curl.
| | * 8bebb40 (origin/prisonpc-gnome) Add notes on setting an appopriate 
pxelinux.cfg for Debian/NFSv3.
| | * 90dcc9e Add necessary packages for gnome and iscsi.
| |/
|/|
* | 3045bd0 Sid now has a fix for NFSv3 with newer kernels.

AFTER

•─┐ 8f78c67 (origin/prisonpc-satellite) Merge branch 'wheezy' into 
prisonpc-satellite
│ │
│ • 0278e82 (origin/wheezy) Fix authorized_keys - curl was not following 
the 302.
• │ 7c00a55 curl is not being used, nfs server will be.
├─┘
• d44ef57 Remove obsolete workaround for Ubuntu Precise issues.
• 8dc4129 Fix git describe.
│ • 1f2abd4 (origin/understudy-generic) Remove need for curl.
│ │ • 8bebb40 (origin/prisonpc-gnome) Add notes on setting an appopriate 
pxelinux.cfg for Debian/NFSv3.
│ │ • 90dcc9e Add necessary packages for gnome and iscsi.
│ │ │
├─│─┘
• │ 3045bd0 Sid now has a fix for NFSv3 with newer kernels.

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

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

Versions of packages git depends on:
ii  git-man  1:1.8.2.1-1
ii  libc62.13-38
ii  libcurl3-gnutls  7.26.0-1+wheezy2
ii  liberror-perl0.17-1
ii  libexpat12.1.0-1
ii  libpcre3 1:8.30-5
ii  perl-modules 5.14.2-20
ii  zlib1g   1:1.2.7.dfsg-13

Versions of packages git recommends:
ii  less 444-4
ii  openssh-client [ssh-client]  1:6.0p1-4
ii  patch2.6.1-3
ii  rsync3.0.9-4

Versions of packages git suggests:
ii  gettext-base  0.18.1.1-9
pn  git-arch  
pn  git-bzr   
pn  git-cvs   
pn  git-daemon-run | git-daemon-sysvinit  
pn  git-doc   
pn  git-el
pn  git-email 
pn  git-gui   
pn  git-svn   
pn  gitk  
pn  gitweb

-- 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#706054: obnam: daemon/fanotify/inotify mode

2013-04-23 Thread Paul Wise
Package: obnam
Severity: wishlist

obnam is currently a program that is run periodically which means that
backups only happen periodically. It would be nice to have a continuous
backup mode. This would basically mean a daemon running at low priority
listening to fanotify/inotify events and making backups as these changes
happen. In addition such a daemon could also improve the periodic backup
mode by not having to scan the whole filesystem for updates.

-- 
bye,
pabs

http://wiki.debian.org/PaulWise


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


Bug#706053: mumble: Register mumble:// URL handler mimetype

2013-04-23 Thread Luke Yelavich
Package: mumble
Version: 1.2.3-349-g315b5f5-2.2
Severity: wishlist
Tags: patch
User: ubuntu-de...@lists.ubuntu.com
Usertags: origin-ubuntu raring ubuntu-patch

Dear Maintainer,
In Ubuntu, we received a bug report from a user pointing out that the mumble:// 
URL handler did not work. Attached is a patch to allow the mumble:// URL schema 
to load Mumble.

Launchpad bug: https://bugs.launchpad.net/ubuntu/+source/mumble/+bug/934239

Thanks for considering the patch.


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

Kernel: Linux 3.8.0-19-generic (SMP w/4 CPU cores)
Locale: LANG=en_AU.UTF-8, LC_CTYPE=en_AU.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
diff -Nru mumble-1.2.3-349-g315b5f5/debian/changelog mumble-1.2.3-349-g315b5f5/debian/changelog
diff -Nru mumble-1.2.3-349-g315b5f5/debian/patches/35-mumble-url-handler mumble-1.2.3-349-g315b5f5/debian/patches/35-mumble-url-handler
--- mumble-1.2.3-349-g315b5f5/debian/patches/35-mumble-url-handler	1970-01-01 10:00:00.0 +1000
+++ mumble-1.2.3-349-g315b5f5/debian/patches/35-mumble-url-handler	2013-04-24 12:13:41.0 +1000
@@ -0,0 +1,17 @@
+Index: mumble/scripts/mumble.desktop
+===
+--- mumble.orig/scripts/mumble.desktop	2013-04-24 12:13:22.797585583 +1000
 mumble/scripts/mumble.desktop	2013-04-24 12:13:36.517585934 +1000
+@@ -8,10 +8,11 @@
+ Comment=A low-latency, high quality voice chat program for gaming
+ Comment[fr]=Un logiciel de chat vocal de haute qualité et de faible latence pour les jeux
+ Comment[tr]=Oyunlar için yüksek kaliteli ve düşük gecikmeli sesle sohbet programı
+-Exec=mumble
++Exec=mumble %u
+ Icon=mumble
+ Terminal=false
+ Type=Application
+ StartupNotify=false
++MimeType=x-scheme-handler/mumble
+ Categories=Network;Chat;Qt;
+ Version=1.0
diff -Nru mumble-1.2.3-349-g315b5f5/debian/patches/series mumble-1.2.3-349-g315b5f5/debian/patches/series
--- mumble-1.2.3-349-g315b5f5/debian/patches/series	2012-11-10 12:04:36.0 +1100
+++ mumble-1.2.3-349-g315b5f5/debian/patches/series	2013-04-24 12:13:30.0 +1000
@@ -1,3 +1,4 @@
+35-mumble-url-handler
 02-reject-with-ip-in-log.diff
 05-lsb-description.diff
 07-use-embedded-celt-baseline


Bug#705929: [pkg-wine-party] Bug#705929: /usr/bin/wine32: Wine breaks audio and (some) video playback

2013-04-23 Thread Michael Gilbert
On Tue, Apr 23, 2013 at 8:53 AM, Mislav Blazevic wrote:
> I am using pulseaudio.
>
> $ ps x | grep pulseaudio
>  4404 ?S

Bug#704258: [Pkg-chromium-maint] Bug#704258: Acknowledgement (chromium: Full Screen Mode doesn't inhibit screensaver etc. from darkening screen)

2013-04-23 Thread Michael Gilbert
On Tue, Apr 23, 2013 at 9:02 PM, Stephen Allen wrote:
> Sure it was an email/post to the Google group for Chromium in response
> to one of the CentOS packagers question. Copied below.
>
> It wasn't I that posted the question, but as a long time reader of the
> Chromium lists I've read the Google/Chromium developers saying what I
> regurgitated to you time and time again. They don't accept bugs for
> unofficial packages  Linux distros that package their own.

The bug was tagged "upstream" in your initial submission, which is
supposed to mean that upstream is affected irregardless of whatever is
in the debian package.  Did you check this?

> It's the packagers that should submit to upstream and communicate
> to upstream, not end users.

First of all, that is an imposition on others, which many would
consider quite impolite. The best people to work on an issue are the
ones with the interest and motivation in solving the problem.  So,
since this issue isn't of much concern to myself, it will be up to
those others that have found themselves with that itch to scratch to
take it on.

Best wishes,
Mike


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



Bug#705259: Only some EFI systems affected

2013-04-23 Thread Filipus Klutiero

It seems on the Lenovo (and all UEFI systems?) Windows is not anymore
booted through the nt loader but through an efi boot loader
residing in the efi partition.


I can assert that some EFI systems are not affected by this. My Windows 
8 install on an ASUS F2A85-M can be booted from the GRUB entry, which is 
similar to the one GRUB generated for Dieter.



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



Bug#701684: [Pkg-libvirt-maintainers] Bug#701684: virt-viewer no longer contains virt-viewer

2013-04-23 Thread Guido Günther
retitle 701648 Crashes when connecting to a vm
thanks

On Tue, Apr 23, 2013 at 03:00:54PM +0200, Luca Capello wrote:
> notfixed 701684 0.5.5+really0.5.4-1
> thanks
> 
> Hi there!
> 
> On Thu, 18 Apr 2013 08:22:39 +0200, Guido Günther wrote:
> > On Sun, Mar 03, 2013 at 06:46:04PM +0100, Luca Capello wrote:
> >> On Thu, 28 Feb 2013 08:31:22 +0100, Guido Günther wrote:
> >> > On Mon, Feb 25, 2013 at 10:54:41PM -0700, Bob Proulx wrote:
> >> >> After upgrading from yesterday's 0.5.4-1 to today's 0.5.5-3 the
> >> >> virt-viewer program has disappeared from the system.
> >> >> 
> >> >>   # dpkg -L virt-viewer | grep bin/virt-viewer
> >> >>   ...nothing...
> >> >> 
> >> >> Installing the previous 0.5.4-1 restored it and worked around the
> >> >> problem.
> >> > This is caused by a too old libvirt in sid. We're also lacking a newer
> >> > spice-gtk to fix this in a at least experimental (#700562 ). In case
> >> > this doesn't get uploaded soonish we'll need to revert the version in
> >> > sid.
> >> 
> >> I just got it by this bug as well and IMHO the current solution
> >> (upgrading to the versions in experimental) is not fine: virt-viewer in
> >> sid is still broken and, after having visited the bug report, there is
> >> no ETA for a fixed version in sid.
> >> 
> >> BTW, I know I am complaining without helping, but I am currently lacking
> >> time for my work as well :-(
> >
> > It's fixed now in sid. I'm sorry for the long delay.
> 
> No problem, and actually I am grateful to you for the notice.
> 
> Nevertheless, I now get a segfault and since restarting libvirt-bin does
> not change anything I removed the fixed tag:
> =
> $ dpkg-query -W \*virt\*
> java-virtual-machine
> libvirt-bin 0.9.12-11
> libvirt00.9.12-11
> python-libvirt  0.9.12-11
> python-virtualenv
> python2.6-libvirt
> python2.7-libvirt
> virt-viewer 0.5.5+really0.5.4-1
> virt-what   1.12-1
> virtinst0.600.3-3
> $ virsh -c qemu:///system list
>  IdName   State
> 
>  1 gismo-xp.pca.itrunning
> 
> $ virt-viewer --debug -c qemu:///system gismo-xp.pca.it
> (virt-viewer:5470): virt-viewer-DEBUG: Insert window 0 0xd19050
> (virt-viewer:5470): virt-viewer-DEBUG: fullscreen display 0: 0
> (virt-viewer:5470): virt-viewer-DEBUG: fullscreen display 0: 0
> (virt-viewer:5470): virt-viewer-DEBUG: Opening connection to libvirt with URI 
> qemu:///system
> n
> (virt-viewer:5470): virt-viewer-DEBUG: Add handle 7 1 0xde5780
> (virt-viewer:5470): virt-viewer-DEBUG: Add timeout 0xde5300 -1 0x7fccd2366590 
> 0xde55d0 1
> (virt-viewer:5470): virt-viewer-DEBUG: notebook show status 0xd1a010
> (virt-viewer:5470): virt-viewer-DEBUG: notebook show status 0xd1a010
> (virt-viewer:5470): virt-viewer-DEBUG: Guest gismo-xp.pca.it is running, 
> determining display
> 
> (virt-viewer:5470): virt-viewer-DEBUG: Set connect info: 
> (null),(null),(null),-1,(null),(null),(null),0
> (virt-viewer:5470): virt-viewer-DEBUG: Guest gismo-xp.pca.it has a vnc display
> 
> Segmentation fault
> 
> $ tail /var/log/libvirt/qemu/gismo-xp.pca.it.log 
> 2013-04-23 12:52:25.979+: starting up
> LC_ALL=C PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin 
> HOME=/ QEMU_AUDIO_DRV=none /usr/bin/kvm -S -M pc-0.12 -enable-kvm -m 512 -smp 
> 1,sockets=1,cores=1,threads=1 -name gismo-xp.pca.it -uuid 
> a26627e3-0a36-dc27-edd0-f9ccc57f7bc7 -no-user-config -nodefaults -chardev 
> socket,id=charmonitor,path=/var/lib/libvirt/qemu/gismo-xp.pca.it.monitor,server,nowait
>  -mon chardev=charmonitor,id=monitor,mode=control -rtc base=localtime 
> -no-shutdown -device piix3-usb-uhci,id=usb,bus=pci.0,addr=0x1.0x2 -drive 
> file=/var/lib/libvirt/images/gismo-xp.pca.it.img,if=none,id=drive-virtio-disk0,format=qcow2
>  -device 
> virtio-blk-pci,scsi=off,bus=pci.0,addr=0x5,drive=drive-virtio-disk0,id=virtio-disk0,bootindex=1
>  -drive if=none,id=drive-ide0-1-0,readonly=on,format=raw -device 
> ide-cd,bus=ide.1,unit=0,drive=drive-ide0-1-0,id=ide0-1-0 -netdev 
> tap,fd=20,id=hostnet0,vhost=on,vhostfd=21 -device 
> virtio-net-pci,netdev=hostnet0,id=net0,mac=52:54:00:74:ce:8b,bus=pci.0,addr=0x3
>  -chardev pty,id=charserial0 -device 
> isa-serial,chardev=charserial0,id=serial0 -device usb-tablet,id=input0 -vnc 
> 127.0.0.1:0 -vga std -device AC97,id=sound0,bus=pci.0,addr=0x4 -device 
> virtio-balloon-pci,id=balloon0,bus=pci.0,addr=0x6
> char device redirected to /dev/pts/6

Which is wired since it works here and the log lines before the crash
look the same. Could you attach a gdb backtrace?
 -- Guido

> 
> $ tail /var/log/libvirt/libvirtd.log
> 2013-04-18 15:08:18.988+: 2771: error : qemuMonitorIO:612 : internal 
> error End of file from monitor
> 2013-04-18 15:08:19.107+: 2771: error : virNetSocketReadWire:991 : Cannot 
> recv data: Connection reset by peer
> 2013-04-18 17:47:15.289+: 2771: error : qemuMonitorIO:612 : internal 
> error End of file from monitor
> 2013-

Bug#706034: [Pkg-mc-devel] Bug#706034: very slow copying using mc versus cp

2013-04-23 Thread Dmitry Smirnov
On Wed, 24 Apr 2013 05:06:26 Ubuntu6226 wrote:
> cp() in C is normally very fast.
> 
> I have to look to the code of mc for copying, why it does 300 kb instead of 
> regular bash with cp (900 kb)
> 
> Well, you really need to improve that into cp
> 

I think it might be already implemented in subshell-less mode.
Try to run MC without subshell: `mc -u`.
Do you feel the difference?

Cheers,
 Dmitry Smirnov
 GPG key : 4096R/53968D1B

---

Platitude: an idea (a) that is admitted to be true by everyone, and (b)
that is not true.
-- H. L. Mencken


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



Bug#706043: RFS: re-name/1.99.2-1 [ITP] -- mass rename tool using regular expression

2013-04-23 Thread Stuart Prescott


Hi!

> I am looking for a sponsor for my package "re-name".

This package provides a tool re-name that renames files based on regular 
expressions.

Perhaps you could compare it to the tool prename(1) (which is usually also 
/usr/bin/rename on Debian systems) and is part of the perl package hence 
widely installed. It's important for potential sponsors and reviewers to 
understand what each new package brings to Debian compared to the ones that 
are already available.

cheers
Stuart

(I do not intend to sponsor this package)

-- 
Stuart Prescotthttp://www.nanonanonano.net/   stu...@nanonanonano.net
Debian Developer   http://www.debian.org/ stu...@debian.org
GPG fingerprintBE65 FD1E F4EA 08F3 23D4 3C6D 9FE8 B8CD 71C5 D1A8


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



Bug#685979: dovecot: please provide lucene plugin for experimental (recent clucene available there)

2013-04-23 Thread duck

Coin,

This plugin is a lightweight alternative to SOLR. Moreover, FTS SQUAT 
is now deprecated (and does not seem to work very well). So please 
provide it in experimental or soon after Wheezy is released.


Regards.

--
Marc Dequènes


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



Bug#706051: lintian allowing VCS boilerplate

2013-04-23 Thread Joao Eriberto Mota Filho
Package: lintian
Version: 2.5.10.5
Severity: normal

Dear Maintainer,

lintian doesn't warn about default VCS lines in debian/control:

#Vcs-Git: git://git.debian.org/collab-maint/xyz.git
#Vcs-Browser: http://git.debian.org/?p=collab-maint/xyz.git;a=summary

Thanks in advance.

Regards,

Eriberto - Brazil


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

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

Versions of packages lintian depends on:
ii  binutils   2.22-8
ii  bzip2  1.0.6-4
ii  diffstat   1.55-3
ii  file   5.11-2
ii  gettext0.18.1.1-9
ii  hardening-includes 2.2
ii  intltool-debian0.35.0+20060710.1
ii  libapt-pkg-perl0.1.26+b1
ii  libarchive-zip-perl1.30-6
ii  libc-bin   2.13-38
ii  libclass-accessor-perl 0.34-1
ii  libclone-perl  0.31-1+b2
ii  libdpkg-perl   1.16.10
ii  libemail-valid-perl0.190-1
ii  libipc-run-perl0.92-1
ii  libparse-debianchangelog-perl  1.2.0-1
ii  libtimedate-perl   1.2000-1
ii  liburi-perl1.60-1
ii  locales2.13-38
ii  man-db 2.6.2-1
ii  patchutils 0.3.2-1.1
ii  perl [libdigest-sha-perl]  5.14.2-20

lintian recommends no packages.

Versions of packages lintian suggests:
pn  binutils-multiarch 
ii  dpkg-dev   1.16.10
ii  libhtml-parser-perl3.69-2
pn  libperlio-gzip-perl
ii  libtext-template-perl  1.45-2
ii  man-db 2.6.2-1
ii  xz-utils [lzma]5.1.1alpha+20120614-2

-- no debconf information


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



Bug#706050: logrotate: spurious "error: getting file ACL" messages

2013-04-23 Thread Dave Anglin
Package: logrotate
Version: 3.8.3-3
Severity: normal

Installed 3.8.3-3 on system with ext3 file systems without ACL support.
Now get mail with following with following content:

/etc/cron.daily/logrotate:
error: getting file ACL /var/log/mysql.log: Function not implemented
error: getting file ACL /var/log/syslog.1: Function not implemented
error: getting file ACL /var/log/mail.info.1: Function not implemented
error: getting file ACL /var/log/mail.warn.1: Function not implemented
error: getting file ACL /var/log/mail.log.1: Function not implemented
error: getting file ACL /var/log/daemon.log.1: Function not implemented
error: getting file ACL /var/log/kern.log.1: Function not implemented
error: getting file ACL /var/log/auth.log.1: Function not implemented
error: getting file ACL /var/log/user.log.1: Function not implemented
error: getting file ACL /var/log/debug.1: Function not implemented
error: getting file ACL /var/log/messages.1: Function not implemented
error: getting file ACL /var/log/samba/log.smbd: Function not implemented
error: getting file ACL /var/log/samba/log.nmbd: Function not implemented
error: getting file ACL /var/log/samba/log.winbindd: Function not implemented
run-parts: /etc/cron.daily/logrotate exited with return code 1

Shouldn't these be supressed?

-- Package-specific info:
Contents of /etc/logrotate.d
total 52
-rw-r--r-- 1 root root 326 Feb  8  2012 apache2
-rw-r--r-- 1 root root 173 Oct  4  2010 apt
-rw-r--r-- 1 root root  79 Dec  5  2008 aptitude
-rw-r--r-- 1 root root 135 Feb 26  2011 consolekit
-rw-r--r-- 1 root root  92 Oct  2  2011 ctdb
-rw-r--r-- 1 root root 232 Sep 13  2010 dpkg
-rw-r--r-- 1 root root 146 Sep 30  2008 exim4-base
-rw-r--r-- 1 root root 126 Sep 30  2008 exim4-paniclog
-rw-r--r-- 1 root root 880 Jan 12 16:28 mysql-server
-rw-r--r-- 1 root root 515 Dec 24  2011 rsyslog
-rw-r--r-- 1 root root 322 Oct 10  2010 samba
-rw-r--r-- 1 root root 298 Mar 25  2012 stunnel4
-rw-r--r-- 1 root root 191 Oct 10  2010 winbind


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

Kernel: Linux 3.9.0-rc7+ (SMP w/4 CPU cores)
Locale: LANG=en_CA.UTF-8, LC_CTYPE=en_CA.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages logrotate depends on:
ii  base-passwd 3.5.26
ii  cron [cron-daemon]  3.0pl1-124
ii  libacl1 2.2.51-8
ii  libc6   2.13-38
ii  libpopt01.16-7
ii  libselinux1 2.1.9-5

Versions of packages logrotate recommends:
ii  bsd-mailx [mailx]  8.1.2-0.2006cvs-1

logrotate 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#706049: RFS: nsnake/1.5-1 [ITP] -- classic snake game with textual interface

2013-04-23 Thread Alexandre Dantas
Package: sponsorship-requests
Severity: wishlist

  Package: sponsorship-requests
  Severity: wishlist

  Dear mentors,

  I am looking for a sponsor for my package "nsnake"

 * Package name: nsnake
   Version : 1.5-1
   Upstream Author : Alexandre Dantas 
 * URL : http://www.alexdantas.net/projects/nsnake/
 * License : GPL3
   Section : games

  It builds those binary packages:

nsnake - classic snake game with textual interface

  To access further information about this package, please visit the following 
URL:

  http://mentors.debian.net/package/nsnake


  Alternatively, one can download the package with dget using this command:

dget -x http://mentors.debian.net/debian/pool/main/n/nsnake/nsnake_1.5-1.dsc

  More information about nsnake can be obtained from 
http://www.alexdantas.net/projects/nsnake/

  There's also a Git repository:

https://github.com/alexdantas/nsnake

  Changes since the last upload:

  [your most recent changelog entry]


  Regards,
   Alexandre Dantas


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

Kernel: Linux 3.5.0-27-generic (SMP w/2 CPU cores)
Locale: LANG=en_US.iso-8859-1, LC_CTYPE=en_US.iso-8859-1 (charmap=ISO-8859-1)
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#705872: libwxbase2.8-0: no unicode support

2013-04-23 Thread Olly Betts
On Sun, Apr 21, 2013 at 06:50:09PM +0530, Rustom Mody wrote:
> xchm is showing boxes for unicode.
> The xchm faq  http://xchm.sourceforge.net/faq.html says its due to the wx
> library not providing unicode support

While that may be one explanation for the symptom you're seeing, it's not
the case here as the wx packages *are* built with --enable-unicode:

$ wx-config --list

Default config is gtk2-unicode-release-2.8

  Default config will be used for output

  Alternate matches:
base-unicode-release-2.8

Cheers,
Olly


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



Bug#705787: openjdk-7-jre: Java audio output sporadically fails with pulseaudio with Java sound lost

2013-04-23 Thread J.D.
Package: openjdk-7-jre
Version: 7u21-2.3.9-1
Followup-For: Bug #705787

Dear Maintainer,

This version of OpenJDK remains incompatible with pulseaudio with the
same broken behavior with Java sound on a system running Debian 7.0 RC1.

With openjdk-7-jre version 7u21-2.3.9-1 the exception report follows:

Unexpected error detected.
java.util.ConcurrentModificationException
null

java.util.ConcurrentModificationException
at java.util.ArrayList$Itr.checkForComodification(ArrayList.java:819)
at java.util.ArrayList$Itr.next(ArrayList.java:791)
at 
org.classpath.icedtea.pulseaudio.PulseAudioLine.fireLineEvent(PulseAudioLine.java:75)
at 
org.classpath.icedtea.pulseaudio.PulseAudioDataLine$2.update(PulseAudioDataLine.java:202)
at 
org.classpath.icedtea.pulseaudio.Stream.underflowCallback(Stream.java:675)
at org.classpath.icedtea.pulseaudio.EventLoop.native_iterate(Native 
Method)
at org.classpath.icedtea.pulseaudio.EventLoop.run(EventLoop.java:133)
at java.lang.Thread.run(Thread.java:722)

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

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

Versions of packages openjdk-7-jre depends on:
ii  libasound21.0.25-4
ii  libatk-wrapper-java-jni   0.30.4-3
ii  libatk1.0-0   2.4.0-2
ii  libc6 2.13-38
ii  libcairo2 1.12.2-3
ii  libcups2  1.5.3-5
ii  libfontconfig12.9.0-7.1
ii  libfreetype6  2.4.9-1.1
ii  libgdk-pixbuf2.0-02.26.1-1
ii  libgif4   4.1.6-10
ii  libgl1-mesa-glx [libgl1]  8.0.5-4
ii  libglib2.0-0  2.33.12+really2.32.4-5
ii  libgtk2.0-0   2.24.10-2
ii  libjpeg8  8d-1
ii  libpango1.0-0 1.30.0-1
ii  libpng12-01.2.49-1
ii  libpulse0 2.0-6
ii  libx11-6  2:1.5.0-1
ii  libxext6  2:1.3.1-2
ii  libxi62:1.6.1-1
ii  libxinerama1  2:1.1.2-1
ii  libxrandr22:1.3.2-2
ii  libxrender1   1:0.9.7-1
ii  libxtst6  2:1.2.1-1
ii  openjdk-7-jre-headless7u21-2.3.9-1
ii  zlib1g1:1.2.7.dfsg-13

Versions of packages openjdk-7-jre recommends:
ii  libgconf2-4   3.2.5-1+build1
ii  libgnome2-0   2.32.1-2
ii  libgnomevfs2-01:2.24.4-1
ii  ttf-dejavu-extra  2.33-3

Versions of packages openjdk-7-jre suggests:
pn  icedtea-7-plugin  

-- 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#706048: ITP: nsnake -- classic snake game with textual interface

2013-04-23 Thread Alexandre Dantas
Package: wnpp
Severity: wishlist
Owner: Alexandre Dantas 


* Package name: nsnake
  Version : 1.6
  Upstream Author : Alexandre Dantas 
* URL : http://www.alexdantas.net/projects/nsnake/
* License : GPL3
  Programming Lang: C
  Description : classic snake game with textual interface

 nsnake is an implementation of the classic snake game with textual
 interface. It is playable at command-line with ncurses-like graphics.
 .
 Features high-scores and two game modes - with and without borders.
 .
 Screenshot: http://alexdantas.net/nsnake-screenshot.png


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



Bug#705994: [pcp] Bug#705994: pcp: unowned files after purge (policy 6.8, 10.8): /var/log/pcp/install.log

2013-04-23 Thread Nathan Scott


- Original Message -
> 
> Hi,
> 
> during a test with piuparts I noticed your package left unowned files on
> ...

Thanks Andreas - this one is relatively straightforward to address, will
do so in the next PCP update.

cheers.

--
Nathan


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



Bug#706047: unblock bacula/5.2.6+dfsg-9

2013-04-23 Thread Alexander Golovko
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Hi!

Does all prepared changes acceptable for unblock?


debdiff between 5.2.6+dfsg-8 and prepared 5.2.6+dfsg-9 in attach.


1. Update info about upstream license changes.

Upstream change license since squeeze release, but this was not
properly described in debian/copyright.


2. Remove incorrect systemd service file for bacula-fd due to
unaccepted for freeze changes in fixes (Closes: #699943).

This changes is a continue of 5.2.6+dfsg-7. I incorrectly think, that
bacula-fd systemd service file workable and did not remove it, but
systemd maintainers prefer to remove this file too.



-- 
with best regards,
Alexander Golovko
email: alexan...@ankalagon.ru
xmpp: alexan...@ankalagon.ru
diffstat for bacula-5.2.6+dfsg bacula-5.2.6+dfsg

 bacula-fd.install |1 
 changelog |   10 
 copyright |  707 --
 3 files changed, 701 insertions(+), 17 deletions(-)

diff -Nru bacula-5.2.6+dfsg/debian/bacula-fd.install bacula-5.2.6+dfsg/debian/bacula-fd.install
--- bacula-5.2.6+dfsg/debian/bacula-fd.install	2013-01-29 16:42:27.0 +0400
+++ bacula-5.2.6+dfsg/debian/bacula-fd.install	2013-04-24 01:55:47.0 +0400
@@ -1,3 +1,2 @@
 usr/sbin/bacula-fd
 usr/lib/bacula/bpipe-fd.so
-platforms/systemd/bacula-fd.service	lib/systemd/system
diff -Nru bacula-5.2.6+dfsg/debian/changelog bacula-5.2.6+dfsg/debian/changelog
--- bacula-5.2.6+dfsg/debian/changelog	2013-01-29 18:47:28.0 +0400
+++ bacula-5.2.6+dfsg/debian/changelog	2013-04-24 01:56:14.0 +0400
@@ -1,3 +1,13 @@
+bacula (5.2.6+dfsg-9) unstable; urgency=low
+
+  * debian/copyright:
++ Update info about upstream license changes.
+  * debian/bacula-fd.install:
+- Remove incorrect systemd service file for bacula-fd due to unaccepted for
+  freeze changes in fixes (Closes: #699943).
+
+ -- Alexander Golovko   Wed, 24 Apr 2013 01:56:12 +0400
+
 bacula (5.2.6+dfsg-8) unstable; urgency=high
 
   * debian/additions/common-functions.dpkg:
diff -Nru bacula-5.2.6+dfsg/debian/copyright bacula-5.2.6+dfsg/debian/copyright
--- bacula-5.2.6+dfsg/debian/copyright	2013-01-29 16:42:27.0 +0400
+++ bacula-5.2.6+dfsg/debian/copyright	2013-04-24 01:55:20.0 +0400
@@ -3,6 +3,11 @@
  and now by the Debian Bacula Team
 .
 
+Debian-specific files distributed under terms of GPLv2, because:
+ * at moment of packaging upstream license was GPLv2
+ * files was created without explicit license info, that considered as the
+   same license, as upstream.
+
 It was downloaded from http://www.bacula.org
 
 Upstream Authors: Kern Sibbald  and John Walker.
@@ -11,7 +16,8 @@
 The original Bacula code was Copyright Kern Sibbald and John Walker.
 After November 2004, it became Copyright Kern Sibbald, and finally,
 the copyright was transferred to the Free Software Foundation Europe
-on 15 November 2006.
+on 15 November 2006. The license was changed from GPLv2 to AGPLv3
+on 24 July 2010.
 
 Trademark:
 The name Bacula is a registered trademark of Kern Sibbald.
@@ -19,31 +25,31 @@
 ===
 
 License:
-For the most part, Bacula is licensed under the GPL version 2. This
+For the most part, Bacula is licensed under the AGPL version 3. This
 code is listed under Copyright Free Software Foundation Europe e.V.
-What follows is the addition(s) to the GPL version 2 license, that
+What follows is the addition(s) to the AGPL version 3 license, that
 applies to code that is copyrighted by the Free Software Foundation
 Europe e.V.
 
 Linking: 
-As a special exception to the GPLv2, the Bacula Project gives
+As a special exception to the AGPLv3, the Bacula Project gives
 permission to link the code of its release of Bacula with the OpenSSL
 project's "OpenSSL" library (or with modified versions of it that use
 the same license as the "OpenSSL" library), and distribute the linked
-executables.  You must obey the GNU General Public License in all
+executables.  You must obey the GNU Affero General Public License in all
 respects for all of the code used other than "OpenSSL".
 
-As a special exception to the GPLv2, the Bacula Project gives
+As a special exception to the AGPLv3, the Bacula Project gives
 permission to link the code of its release of the Bacula Win32 File
 daemon with the Microsoft supplied Volume Shadow Copy (VSS) libraries
 and distribute the linked executables.  You must obey the GNU General
 Public License in all respects for all of the code used other than for
 the Microsoft VSS code, where you must obey their license terms.
 
-The Bacula Project gives permission for plugins with GPLv2 compatible
+The Bacula Project gives permission for plugins with AGPLv3 compatible
 licenses to be loaded and distributed with the Bacula executables as
 long as the combined work is distributed under the terms listed in the 
-Bacula LICENSE file.  A full list of GPLv2 compatible li

Bug#641857: zaptel/dahdi

2013-04-23 Thread Karl Schmidt

Still broken in wheezy with it going stable in just a few days.

Nothing in sid or experimental ?


add tag wheezy?


Karl Schmidt  EMail k...@xtronics.com
Transtronics, Inc.  WEB 
http://secure.transtronics.com
3209 West 9th Street Ph (785) 841-3089
Lawrence, KS 66049  FAX (785) 841-0434

Truth is mighty and will prevail.
There is nothing wrong with this,
except that it ain't so.
--Mark Twain




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



Bug#706045: [pkg-fetchmail-maint] Bug#706045: Fwd: fetchmail mimedecode option drops last message line

2013-04-23 Thread Matthias Andree
XREF Fedora: https://bugzilla.redhat.com/show_bug.cgi?id=955814


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



Bug#698064: Getting aranym 0.9.15-1 to wheezy

2013-04-23 Thread Antonin Kral
* Thorsten Glaser  [2013-04-24 00:29] wrote:
> Adam D. Barratt dixit:
>
> >What we could consider is a 0.9.13-3.1+deb7u1 upload via
>
> Petr might be able to quickly point out what precise
> upstream commits/changes are the minimum needed to
> get this fixed.

Exactly, I've already dropped him an email. He is not online on jabber,
so he is probably sleeping right now. I've asked him to comment here.

Antonin


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



Bug#698064: Getting aranym 0.9.15-1 to wheezy

2013-04-23 Thread Thorsten Glaser
Adam D. Barratt dixit:

>What we could consider is a 0.9.13-3.1+deb7u1 upload via

I think 0.9.13-4 would also work, as it’s larger than wheezy
and smaller than sid.

Thanks Antonin!

Petr might be able to quickly point out what precise
upstream commits/changes are the minimum needed to
get this fixed.

bye,
//mirabilos
-- 
 you introduced a merge commit│ % g rebase -i HEAD^^
 sorry, no idea and rebasing just fscked │ Segmentation
 should have cloned into a clean repo  │  fault (core dumped)
 if I rebase that now, it's really ugh │ wuahh


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



Bug#698064: Getting aranym 0.9.15-1 to wheezy

2013-04-23 Thread Adam D. Barratt
Hi,

On Wed, 2013-04-24 at 00:15 +0200, Antonin Kral wrote:
> * Adam D. Barratt  [2013-04-24 00:05] wrote:
> > The difference between 0.9.13 and 0.9.15 appears to be quite a bit more
> > than just the fix for the RC bug. It's also picked up a dependency on a
> > version of mpfr4 that isn't in wheezy, so couldn't migrate in any case.
> 
> mpfr4 version is not important from the Aranym perspective. Would you
> consider including 0.9.15 when compiled against the mpfr4 3.1.0-5?

That wouldn't help on the buildds - they'll build against the version
that's in unstable.

If we're going to fix this in wheezy before the release, then it'll need
to go via testing-proposed-updates with a targetted fix for the RC bug.
The alternatives are that we decide to fix it in wheezy after the
release (which also won't be by using 0.9.15) or that we shouldn't
include aranym in wheezy at all (which I imagine would be your least
favoured option, but is a possibility).

Regards,

Adam


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



Bug#706045: Fwd: fetchmail mimedecode option drops last message line

2013-04-23 Thread Matthias Andree
Package: fetchmail
Version: 6.3.18-2
Severity: grave
Tags: upstream confirmed fixed-upstream
Control: found 6.3.9~rc2-4+lenny2
Control: found 6.3.21-4
Control: found 6.3.22-2

The bug report included below was filed against Ubuntu, it is an
upstream bug that also affects Debian.

It was originally found by Lars Hecking in 2011.

 Original-Nachricht 
Betreff: [Bug 1171818] [NEW] fetchmail mimedecode option drops last
message line
Datum: Tue, 23 Apr 2013 11:14:30 -
Von: Axel G. Rossberg <1171...@bugs.launchpad.net>
Antwort an: Bug 1171818 <1171...@bugs.launchpad.net>

Public bug reported:

Over the last year or so (perhaps since update to fetchmail 6.3.21), I
had a problem that in messages sent from one particular mail server
(Microsoft Exchange) the messages I recieved had no text in the body at
all.

I then found that for plain text messages that are not terminated with a
newline (sent using the ms webmail interface) the last line of the
message gets lost. I assume that HTML messages are sent as a single,
unterminated line, and therefore get entirely lost.

The problem disappeared (at least that for plain text messages) when
turning the mimedecode option off under fetchmail.

Ubunutu release: 12.04

** Affects: fetchmail (Ubuntu)
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are subscribed to
fetchmail in Ubuntu.
https://bugs.launchpad.net/bugs/1171818

Title:
  fetchmail mimedecode option drops last message line


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



Bug#698064: Getting aranym 0.9.15-1 to wheezy

2013-04-23 Thread Antonin Kral
Hi Adam,

* Adam D. Barratt  [2013-04-24 00:05] wrote:
> The difference between 0.9.13 and 0.9.15 appears to be quite a bit more
> than just the fix for the RC bug. It's also picked up a dependency on a
> version of mpfr4 that isn't in wheezy, so couldn't migrate in any case.

mpfr4 version is not important from the Aranym perspective. Would you
consider including 0.9.15 when compiled against the mpfr4 3.1.0-5?

Regards,

Antonin


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



Bug#643595: snes9x review (current version from Debian Mentors)

2013-04-23 Thread John Paul Adrian Glaubitz

Hello Michael,

here my review of your snes9x package that is currently on Debian Mentors.

Going through the files in the debian directory and doing a lintian 
check with "lintian -i -I -E --pedantic snes9x_1.53-3_amd64.changes" on 
the freshly built package without modifications:


==

debian/changelog:

* Please change the following line:

"  * debian/watch: Fixing watch file."

to

"  * debian/watch: Fix watch file."

* There are trailing spaces at the end of the following lines:

181, 215, 225, 246, 254, 260, 337.

Please remove them. You can edit the changelog in emacs to spot these 
spaces easily.


* Please fix the following spelling mistake:

"  * debian/rules: Fix a bug that emptys snes9x-x target."

It's spelled "empties", not "emptys".

* Please fix the capitalization of the "Closes" directive for the 
entries where it is written lower case. It should always be "(Closes: 
#nn), not "(closes: #nn)". (Yes, I am nitpicky, but it's a 
matter of consistency and you also want your package to pass NEW quickly 
;)).


* Replace "New Upstream" or "New upstream version" always with "New 
upstream release." which is the canonical form for that entry.


If you see other obvious spelling, grammar mistakes, please correct them!

==

debian/compat:

Please bump the version of debhelper to version 9 (also adjust 
dependency in debian/control).


This should also enable automatic hardening and fix the lintian warnings 
mentioned further below.


==

debian/control:

* The standards version was bumped to 3.9.4, however this change was not 
documented in debian/changelog, please add that. Also, please make sure 
to include all changes that you are making now to the package (e.g. 
fixing the spelling in the changelog) to the Debian changelog :).


* There are no entries for Vcs-Git and Vcs-Browser. Is your source for 
the Debian packaging not somewhere available online?


* Capitalization: "Workstation" => "workstation"

==

debian/copyright:

* This should be updated to the new machine-readable copyright format, see:

> http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/

==

debian/patches/series and debian/patches/fix-typo.patch:

* Remove extra empty lines at the end of the files.

==

debian/rules:

* The rules file can probably further simplified taking advantage of the 
capabilities of recent versions of debhelper (version 9).


Many packages just require the following two lines:

%:
dh $@

But snes9x might need some extra overrides. Please refer to the 
debhelper manual for more. You may also ask for help in the 
#debian-mentors IRC channel on OFTC or other resources.


==

debian/snes9x-x.README.debian:

The instructions about adding users to the groups "audio" (users are in 
these groups when logging in locally anyway) and "kmem" (is this really 
still required, please check!) are probably obsolete. The former is 
definitely redundant, but I am not sure about the latter. Please check 
and if it's no longer required, please remove these lines.


What about this statement, is this still up-to-date?

"The new Upstream does not support any of these Versions anymore. At 
least the OpenGL version is expected to come back soon."


If yes, please fix the capitalization of "Upstream" and "Versions."

Or you may just drop/rewrite this file altogether.

==

There are lintian problems that should be addressed:

glaubitz@z6:..debian/snes9x-1.53> lintian -i -E -I --pedantic 
/var/cache/pbuilder/result//snes9x_1.53-3_amd64.changes

W: snes9x-gtk: hardening-no-relro usr/games/snes9x-gtk
N:
N:This package provides an ELF binary that lacks the "read-only
N:relocation" link flag. This package was likely not built with the
N:default Debian compiler flags defined by dpkg-buildflags. If built 
using

N:dpkg-buildflags directly, be sure to import LDFLAGS.
N:
N:Refer to http://wiki.debian.org/Hardening for details.
N:
N:Severity: normal, Certainty: certain
N:
N:Check: binaries, Type: binary, udeb
N:
W: snes9x-gtk: hardening-no-fortify-functions usr/games/snes9x-gtk
N:
N:This package provides an ELF binary that lacks the use of 
fortified libc
N:functions. Either there are no potentially unfortified functions 
called
N:by any routines, all unfortified calls have already been fully 
validated

N:at compile-time, or the package was not built with the default Debian
N:compiler flags defined by dpkg-buildflags. If built using
N:dpkg-buildflags direc

Bug#705137: [pkg-bacula-devel] Bug#705137: Bug#705137: bacula-console-qt: help->"bat help" fails to show. it shows index.html in pwd instead

2013-04-23 Thread Alexander Golovko
В Mon, 22 Apr 2013 18:01:39 +0400
Alexander Golovko  пишет:

> Hi!
> 
> Thank you very much for report.
> Yes, this files missed in package, we will fix this in next version.

But unfortunately this changes unacceptable for wheezy, so we fix this
later, when will do non-wheezy upload


> 
> 
> В Wed, 10 Apr 2013 16:19:50 +0200
> Alberto Á. Fuentes  пишет:
> 
> > Package: bacula-console-qt
> > Version: 5.2.6+dfsg-8
> > Severity: normal
> > 
> > Even with bacula-docs instaled,  if you press help->"bat help" in
> > the menu of bacula-console-qt it shows nothing.
> > 
> > We can see in console "missing index.html"
> > 
> > If you happen to have an index.html in the same directory we launch
> > bat from, it will show it instead of the help.
> > 
> > It took a long time to figure out what was going on with the help,
> > because i had a random index.html in the same directory from i was
> > launching bat
> > 
> > 
> > 
> > -- System Information:
> > Debian Release: 7.0
> >   APT prefers unstable
> >   APT policy: (990, 'unstable'), (500, 'testing'), (1,
> > 'experimental') Architecture: amd64 (x86_64)
> > 
> > Kernel: Linux 3.2.0-4-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 bacula-console-qt depends on:
> > ii  bacula-common  5.2.6+dfsg-8
> > ii  libc6  2.13-38
> > ii  libcap21:2.22-1.2
> > ii  libgcc11:4.7.2-5
> > ii  libqtcore4 4:4.8.2+dfsg-11
> > ii  libqtgui4  4:4.8.2+dfsg-11
> > ii  libssl1.0.01.0.1e-2
> > ii  libstdc++6 4.7.2-5
> > ii  libwrap0   7.6.q-24
> > ii  zlib1g 1:1.2.7.dfsg-13
> > 
> > bacula-console-qt recommends no packages.
> > 
> > bacula-console-qt suggests no packages.
> > 
> > -- no debconf information
> > 
> > ___
> > pkg-bacula-devel mailing list
> > pkg-bacula-de...@lists.alioth.debian.org
> > http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-bacula-devel
> > 
> 
> 


-- 
with best regards,
Alexander Golovko
email: alexan...@ankalagon.ru
xmpp: alexan...@ankalagon.ru


signature.asc
Description: PGP signature


Bug#698064: Getting aranym 0.9.15-1 to wheezy

2013-04-23 Thread Adam D. Barratt
On Thu, 2013-04-18 at 19:14 +0200, Antonin Kral wrote:
> first of all thanks a lot for your great work getting Debian release.
> I've recently uploaded new version of Aranym which fixed a severity
> grave problem in the previous version which is going to be included into
> wheezy - http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=698064
> 
> Could you please consider getting 0.9.15-1 instead?

Thanks for caring about getting this bug fixed in wheezy. At this point
in time, no, I'm afraid we couldn't accept 0.9.15-1.

The difference between 0.9.13 and 0.9.15 appears to be quite a bit more
than just the fix for the RC bug. It's also picked up a dependency on a
version of mpfr4 that isn't in wheezy, so couldn't migrate in any case.

What we could consider is a 0.9.13-3.1+deb7u1 upload via
testing-proposed-updates, containing just the RC fix on top of the
current wheezy package. In that case we'd like to see a debdiff to
confirm first though.

Regards,

Adam


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



Bug#705078: python2.7: adequate complains that python2.7 has many files which are py-file-not-bytecompiled

2013-04-23 Thread Jakub Wilk

Control: tags -1 - moreinfo

* Matthias Klose , 2013-04-11, 00:49:
Adequate reports that there are many files in the python2.7 package 
which are py-file-not-bytecompiled as given in python policy section 
2.6. Could you please fix them. Also feel free to change the severity 
if so desired.
nice for adequate, but I don't know, and I don't care about it. So 
please post the list of actions which lead to this situation, together 
with a log.


In a minimal chroot:

# apt-get install -qq python2.7/experimental
debconf: delaying package configuration, since apt-utils is not installed
Selecting previously unselected package libncursesw5:i386.
(Reading database ... 10875 files and directories currently installed.)
Unpacking libncursesw5:i386 (from .../libncursesw5_5.9-10_i386.deb) ...
Selecting previously unselected package libssl1.0.0:i386.
Unpacking libssl1.0.0:i386 (from .../libssl1.0.0_1.0.1e-2_i386.deb) ...
Selecting previously unselected package libsqlite3-0:i386.
Unpacking libsqlite3-0:i386 (from .../libsqlite3-0_3.7.16.2-1_i386.deb) ...
Selecting previously unselected package libexpat1:i386.
Unpacking libexpat1:i386 (from .../libexpat1_2.1.0-1_i386.deb) ...
Selecting previously unselected package mime-support.
Unpacking mime-support (from .../mime-support_3.52-2_all.deb) ...
Selecting previously unselected package libpython2.7-minimal:i386.
Unpacking libpython2.7-minimal:i386 (from 
.../libpython2.7-minimal_2.7.4-2_i386.deb) ...
Selecting previously unselected package python2.7-minimal.
Unpacking python2.7-minimal (from .../python2.7-minimal_2.7.4-2_i386.deb) ...
Selecting previously unselected package libpython2.7-stdlib:i386.
Unpacking libpython2.7-stdlib:i386 (from 
.../libpython2.7-stdlib_2.7.4-2_i386.deb) ...
Selecting previously unselected package python2.7.
Unpacking python2.7 (from .../python2.7_2.7.4-2_i386.deb) ...
Setting up libncursesw5:i386 (5.9-10) ...
Setting up libssl1.0.0:i386 (1.0.1e-2) ...
Setting up libsqlite3-0:i386 (3.7.16.2-1) ...
Setting up libexpat1:i386 (2.1.0-1) ...
Setting up mime-support (3.52-2) ...
update-alternatives: using /usr/bin/see to provide /usr/bin/view (view) in auto 
mode
Setting up libpython2.7-minimal:i386 (2.7.4-2) ...
Setting up python2.7-minimal (2.7.4-2) ...
Linking and byte-compiling packages for runtime python2.7...
Setting up libpython2.7-stdlib:i386 (2.7.4-2) ...
Setting up python2.7 (2.7.4-2) ...

# ls -l /usr/lib/python2.7/lib2to3/*.pyc
ls: cannot access /usr/lib/python2.7/lib2to3/*.pyc: No such file or directory

--
Jakub Wilk


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



Bug#706044: libhdf5-7: cannot compile C++ programs using hdf5 after upgrade to wheezy

2013-04-23 Thread Burkhard Bunk

Package: libhdf5-7
Version: 1.8.8-9
Severity: important

Dear Maintainer,

after updating to wheezy, the runtime lib libhdf5-serial-1.8.4_1.8.4-patch1-2
was missing. Programs compiled in squeeze didn't work anymore -- libhdf5.so.6:
cannot open. An attempt to recompile them (with C++) failed -- H5Cpp.h: No such
file or directory.

Analysis:
(1) libhdf5-7_1.8.8-9 (wheezy) conflicts with
libhdf5-serial-1.8.4_1.8.4-patch1-2.
This is a known problem, see #703340.
(2) libhdf5-dev_1.8.8-9 (wheezy) has broken C++ binding. This is also known,
see #660539 #660547 .

Bug (1) prevents downgrading to libhdf5-serial-dev_1.8.4-patch1-2 (squeeze),
as this removes the runtime lib from wheezy and prohibits updated versions of
several important applications (e.g. scilab, grace). This makes hdf5 in wheezy
unusable for C++ programmers, AFAIK. This is a serious regression, hence the
severity of the bug.

Workaround:
There is an updated version (1.8.8-9.1) of the hdf5 suite in unstable, which
addresses problem (1). After downloading the binary packages to a local
repository and putting a hold on libhdf5-serial-dev (in squeeze), the dist
upgrade had the dev packages at squeeze level and installed all runtime libs in
parallel.

Conclusion:
(a) Please allow hdf5_1.8.8-9.1 into the release of wheezy. It seems to improve
the situation in at least one important place.
If this cannot be done for some reason, I suggest to
(b) place hdf5_1.8.8-9.1 in wheezy-proposed-updates to make it easily available
for those who know what they need.


-- System Information:
Debian Release: 7.0
  APT prefers testing-updates
  APT policy: (500, 'testing-updates'), (500, 'testing')
Architecture: i386 (i686)

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

Versions of packages libhdf5-7 depends on:
ii  libc6 2.13-38
ii  libgcc1   1:4.7.2-5
ii  libgfortran3  4.7.2-5
ii  libquadmath0  4.7.2-5
ii  zlib1g1:1.2.7.dfsg-13

libhdf5-7 recommends no packages.

libhdf5-7 suggests no packages.

-- no debconf information

Regards,
Burkhard Bunk.
--
 b...@physik.hu-berlin.de  Physics Institute, Humboldt University
 fax:++49-30 2093 7628 Newtonstr. 15
 phone:  ++49-30 2093 7980 12489 Berlin, Germany
--


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



Bug#703112: enigmail 1.4.1-2 not decrypting mails/verifying sigs with Icedove 10.0.12-1

2013-04-23 Thread Robert Waldner

On Sun, 21 Apr 2013 21:05:34 +0200, Willi Mann writes:
>> On Thu, 11 Apr 2013 18:59:11 +0200, Willi Mann writes:
>>> thanks for the update. It would be interesting to know what
>>> happens if you remove the i386 versions of libnspr4{,-0d}.

>> This would also remove ia32-libs (and ia32-libs-i386), which, the
>> last time I tried, made the system disfunctional (froze and
>> wouldn't boot into userland anymore), and I had to rescue-boot and
>> reinstall those packages. I'm somewhat wary of trying that again.

>I can understand that.

I'll try and get a second disk to RAID-1 the box, then such tests are 
 gonna be rather easier to roll back instead of rescue-boot or 
 restore-from-backup. ETA at least 2 weeks, though.

>The alternative is that I try to reproduce the
>problem by installing the same set of package in a virtual
>environment. Can you please send me the output of
>
>dpkg --get-selections
>
>and
>
>dpkg -l
>
>? In case you feel uncomfortable sending this to the public bug
>report, you can send it to me only (encrypted if you like, my key is
>in the debian-keyring). I fear I will not have time immediately for
>that, though.

Incoming in direct mail.

>>> If that does not help, I would be interested in the contents of
>>> /etc/ld.so.conf and all the files in /etc/ld.so.conf.d/. I would
>>> then forward this bug to upstream again.

>> Attached.

>Thanks. I think I should only try this on a test system, but one of
>the first things I would try there is renaming i486-linux-gnu.conf to
>yy_i486-linux-gnu.conf, under the assumption that only the first
>matching library is tried to be loaded by mozilla applications,
>without ignoring libraries of the wrong architecture.

No difference (after renaming+ldconfig, from the Icedove error console):

Failed to load native module at path 
'/usr/lib/mozilla/extensions/{3550f703-e582-4d05-9a08-453d09bdfdc6}/{847b3a00-7ab1-11d4-8f02-006008948af5}/platform/Linux_x86_64-gcc3/components/libenigmime-x86_64-gcc3.so':
 (80004005) libplds4.so.0d: cannot open shared object file: No such file or 
directory
Failed to load native module at path 
'/usr/lib/mozilla/extensions/{3550f703-e582-4d05-9a08-453d09bdfdc6}/{847b3a00-7ab1-11d4-8f02-006008948af5}/platform/Linux_x86_64-gcc3/components/libipc-x86_64-gcc3.so':
 (80004005) libplds4.so.0d: cannot open shared object file: No such file or 
directory

Kind regards,
Robert Waldner
-- 
-- in the beginning was the word.
-- and the word was Content-Type: text/plain.
-- - unknown




signature.asc
Description: Digital Signature


Bug#698064: Getting aranym 0.9.15-1 to wheezy

2013-04-23 Thread Antonin Kral
Hello,

first of all thanks a lot for your great work getting Debian release.
I've recently uploaded new version of Aranym which fixed a severity
grave problem in the previous version which is going to be included into
wheezy - http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=698064

Could you please consider getting 0.9.15-1 instead?

Thank you,

Antonin


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



Bug#705926: sbuild: Add basic DEP-8 autopkgtest

2013-04-23 Thread James Hunt
An updated debdiff with the following changes:

  * debian/tests/build_procenv:
- Revert to using lsb-release: os-release is available by default, but
  does not provide release name in a portable format.
- Only install the built .deb if the release built for matches the
  running release.
- Perform checks on .deb since we might not be able to install it.
  * debian/tests/control:
- Removed breaks-testbed as this stops the test even running on
  Ubuntu.
- Added lsb-release dependency.


Kind regards,

James.
--
James Hunt

#upstart on freenode
http://upstart.ubuntu.com/cookbook
https://lists.ubuntu.com/mailman/listinfo/upstart-devel
diff -Nru sbuild-0.63.2/debian/changelog sbuild-0.63.2/debian/changelog
--- sbuild-0.63.2/debian/changelog  2013-01-17 14:00:53.0 +
+++ sbuild-0.63.2/debian/changelog  2013-04-23 22:30:44.0 +0100
@@ -1,3 +1,9 @@
+sbuild (0.63.2-1.1ubuntu2) UNRELEASED; urgency=low
+
+  * Added DEP-8 autopkgtest to build procenv.
+
+ -- James Hunt   Tue, 23 Apr 2013 22:30:35 +0100
+
 sbuild (0.63.2-1.1ubuntu1) raring; urgency=low
 
   * Merge from Debian unstable. Remaining changes:
diff -Nru sbuild-0.63.2/debian/control sbuild-0.63.2/debian/control
--- sbuild-0.63.2/debian/control2012-11-28 12:42:59.0 +
+++ sbuild-0.63.2/debian/control2013-04-22 11:00:27.0 +0100
@@ -8,6 +8,7 @@
 Standards-Version: 3.9.1
 Vcs-Browser: http://git.debian.org/?p=buildd-tools/sbuild.git
 Vcs-Git: git://git.debian.org/git/buildd-tools/sbuild
+XS-Testsuite: autopkgtest
 
 Package: libsbuild-perl
 Architecture: all
diff -Nru sbuild-0.63.2/debian/tests/build_procenv 
sbuild-0.63.2/debian/tests/build_procenv
--- sbuild-0.63.2/debian/tests/build_procenv1970-01-01 01:00:00.0 
+0100
+++ sbuild-0.63.2/debian/tests/build_procenv2013-04-23 22:01:46.0 
+0100
@@ -0,0 +1,170 @@
+#!/bin/sh -e
+#-
+# DEP-8 test for sbuild.
+#
+# Creates a sbuild chroot, builds a package, installs the resulting
+# .deb, then runs the command provided by the .deb.
+#-
+
+die()
+{
+msg="$*"
+echo "ERROR: $msg" >&2
+exit 1
+}
+
+# The package we'll ask sbuild to build (we know its buildable since
+# it's already in the archive :-)
+#
+# The advantage of choosing this particular package being that it runs
+# *itself* at the end of its build, which has the nice side-effect of
+# exposing the full sbuild environment to those perusing the autopkgtest
+# logs.
+pkg=procenv
+
+distro=$(lsb_release --id|cut -d: -f2-|awk '{print $1}'|tr '[A-Z]' '[a-z]')
+[ -z "$distro" ] && die "cannot establish distribution"
+
+host_release=$(lsb_release --codename|cut -d: -f2-|awk '{print $1}')
+[ -z "$host_release" ] && die "cannot establish release running on host"
+
+if [ "$distro" = ubuntu ]
+then
+# Build chroot for latest release.
+release=$(distro-info --devel)
+
+url=http://archive.ubuntu.com/ubuntu
+elif [ "$distro" = debian ]
+then
+# Build chroot for latest stable release since
+# sid may not be buildable on a particular day.
+release=$(distro-info --stable)
+
+url=http://archive.debian.org/debian
+else
+die "need to know where archive is for distro '$distro'"
+fi
+
+arch=$(dpkg --print-architecture 2>/dev/null)
+[ -z "$arch" ] && die "cannot establish architecture"
+
+[ -z "$ADTTMP" ] && die "ADTTMP not set"
+dir="$ADTTMP/schroot-$release"
+
+# The expected name of the schroot that sbuild-createchroot will create
+chroot="${release}-${arch}-sbuild"
+
+# schroot does not allow a chroot name to be specified at creation time.
+# As such, we must take care to avoid stomping on a developers chroots.
+# If we find any that match the chroot we're about to try and make, exit
+# with a message.
+#
+# Note that we are very cautious in the grep check below; we purposely
+# don't match on the _type_ of schroot in case new schroot types are
+# added and this test is not updated to take account of the new types.
+
+schroots=$(schroot -l 2>/dev/null)
+
+if [ -n "$schroots" ] && echo "$schroots"|grep -q ":${release}-${arch}"
+then
+echo "INFO:"
+echo "INFO: Existing schroots detected for current release ($release)"
+echo "INFO: and architecture ($arch)"
+echo "INFO:"
+echo "INFO: Not continuing."
+echo "INFO:"
+
+# exit successfully
+exit 0
+fi
+
+# Use '--download-only' to avoid unpack which generates a
+# signature warning to stderr, causing this test to fail.
+# Take care to download the package version for the release we will
+# create the chroot for. 
+echo "INFO: Downloading source for package '$pkg' from release '$release'"
+apt-get source --download-only "$pkg/$release"
+
+dsc=$(ls ${pkg}*.dsc)
+
+echo "INFO: Creating sbuild chroot '$chroot' for release '$release' in 
directory '$dir' from url '$url'"
+sbuild-c

Bug#705961: installation-reports: debian-installer does not create an EFI partition by default

2013-04-23 Thread Jorge Sanz Forcada

Hi Steve,

I am afraid I can not repeat the whole installation. I have copied 
already all teh files I had in my old computer to the new one, so it 
would be a mess to repeat the whole process again. I have made an 
exercise, but I don't think it is very useful. I just repeated the first 
steps of the installation (with cdnetinst of 20130423) until the step of 
the partition:


- I started the Linux CD through the UEFI loader
- I got the weird error message of the "prefix" while loading the 
installer grub (I remember to see this one also during a former 
installation)
- In the partitions step, I deleted my current Linux partitions and 
asked the guided partition to propose new partitions. It made just one 
partition for Linux and one for swap. Then I did not want to commit the 
changes proposed, so I just left. But I think to remember that in my 
former installation the program issues a warning after that saying that 
I have no EFI partitions defined (while actually there is one of ~300 MB 
in fat32, the Windows one).


I am sorry I can not go beyond this point. I have the suspicion that the 
problem may have to do with an HP loader that is what actually use to 
boot Windows if I do not pass through Linux GRUB. Anyway, if nobody else 
complains it mens that this was an effect of the failed installation I 
made with Squeeze before.   You can close the bug, at least from my side.


Thanks a lot for your help.

Cheers,

Jorge


I believe so. I certainly had that intention, and I don't think the
d-i would have seen the former partitions as EFI if booting in legacy
mode, right?I remember to see that weird message "prefix not found",
but I do not remember in which boot. I am sorry I could nto send this
report before, I would have this information more fresh in my mind.
I hope it helps, but if you do not receive any similar report it may
have to do with the two trials of installation before the succesful
one.

Yes, I think so. If you're prepared to delete your existing Debian
installation and try again from scratch using Wheezy, that's more
likely to work. But I understand if you don't want to spend the time
on that now...!





Bug#705971: debian-installer hangs when tty console in use (console-setup)

2013-04-23 Thread Samuel Thibault
John D. Hendrickson and Sara Darnell, le Tue 23 Apr 2013 17:11:01 -0400, a 
écrit :
> > 
> > What do you mean by "a TTY console  during the installation"?
> >Lowering the severity anyway as I don't think this is a bug (if one)
> >that affects all installs.
> 
> With all the install problems reports?  I would certainly expect having to
> open up a shell to fix things to install MORE THAN EVER.
> One usually one tries to provide more tools to work with
> for a boot / root install kit not less.

I have often used it, yes.

> but i'm not upgrading the bug report.  I have no idea if anyone
> else can confirm or deny it it ever happened.

As I said in another mail, I was unable to reproduce it (and never seen
this kind of issue). Thus keeping the priority low.

Samuel


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



Bug#705971: debian-installer hangs when tty console in use (console-setup)

2013-04-23 Thread John D. Hendrickson and Sara Darnell


> 

 What do you mean by "a TTY console  during the installation"?
Lowering the severity anyway as I don't think this is a bug (if one)
that affects all installs.


With all the install problems reports?  I would certainly expect 
having to open up a shell to fix things to install MORE THAN EVER.

One usually one tries to provide more tools to work with
for a boot / root install kit not less.

but i'm not upgrading the bug report.  I have no idea if anyone
else can confirm or deny it it ever happened.


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



Bug#697619: Processed: found 697619 in 0.110

2013-04-23 Thread Josh Triplett
On Tue, Apr 23, 2013 at 10:48:46PM +0200, Michael Prokop wrote:
> * Adam D. Barratt [Tue Apr 23, 2013 at 09:20:04PM +0100]:
> > On Tue, 2013-04-23 at 22:17 +0200, Michael Prokop wrote:
> > > * Adam D. Barratt [Tue Apr 23, 2013 at 09:03:26PM +0100]:
> > > > What's the issue with the fix? If we need another upload for i-t for r0
> > > > then it'll need to be soon. :-|
> 
> > > We've 0.109.1 which fixes that in wheezy and unstable, shouldn't
> > > this be enough? Is experimental's 0.110 of i-t an issue WRT to r0?
> > > I'd push a 0.111 release to experimental immediately then.
> 
> > Bah, I misread the versions and thought it was affecting the recent
> > upload to sid; sorry for the noise.
> 
> No worries, I've just released and uploaded i-t v0.111 which
> includes the fixes which went into wheezy (thanks for that, Ben) to
> avoid further confusion.

Thanks!

If you have time, could I talk you into uploading an updated backport
for squeeze-backports, as well, to address this issue and 689830?

- Josh Triplett


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



Bug#705971: debian-installer hangs when tty console in use (console-setup)

2013-04-23 Thread Samuel Thibault
Control: tags -1 + unreproducible

Hello,


Stefano Forli, le Mon 22 Apr 2013 15:02:31 -0700, a écrit :
> It seems that if a TTY console is in use during the installation, the
> whole installation process hangs and can't be recovered (see below).
> It is possible to switch to different tty's, but It is not possible to
> activate other consoles nor kill the one still active (blinking
> cursor, unresponsive).

I couldn't reproduce it. I've tried opening the shell on VT2 and VT3,
then came back to the main menu to answer until base gets installed,
console-setup configured fine. I've also tried to come back to VT2
before console-setup configures, and didn't get a hang. I've tried both
with the graphical installer and the text installer.

> I'm using the Wheezy netinstaller amd64 downloaded on 4/22/2013

I've done my tests using the rc1 netinst image.

How much memory do you have, btw? I've used 1G.

Samuel


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



Bug#697619: Processed: found 697619 in 0.110

2013-04-23 Thread Michael Prokop
* Adam D. Barratt [Tue Apr 23, 2013 at 09:20:04PM +0100]:
> On Tue, 2013-04-23 at 22:17 +0200, Michael Prokop wrote:
> > * Adam D. Barratt [Tue Apr 23, 2013 at 09:03:26PM +0100]:
> > > What's the issue with the fix? If we need another upload for i-t for r0
> > > then it'll need to be soon. :-|

> > We've 0.109.1 which fixes that in wheezy and unstable, shouldn't
> > this be enough? Is experimental's 0.110 of i-t an issue WRT to r0?
> > I'd push a 0.111 release to experimental immediately then.

> Bah, I misread the versions and thought it was affecting the recent
> upload to sid; sorry for the noise.

No worries, I've just released and uploaded i-t v0.111 which
includes the fixes which went into wheezy (thanks for that, Ben) to
avoid further confusion.

regards,
-mika-


signature.asc
Description: Digital signature


Bug#706043: RFS: re-name/1.99.2-1 [ITP] -- mass rename tool using regular expression

2013-04-23 Thread Joao Eriberto Mota Filho
Package: sponsorship-requests
Severity: wishlist

Dear mentors,

I am looking for a sponsor for my package "re-name".

 * Package name: re-name
   Version : 1.99.2-1
   Upstream Author : Andy Xuming 
 * URL : http://rename.sf.net
 * License : GPL3
   Section : utils

It builds those binary packages:

re-name- mass rename tool using regular expression

To access further information about this package, please visit the following 
URL:

  http://mentors.debian.net/package/re-name

Alternatively, one can download the package with dget using this command:

dget -x 
http://mentors.debian.net/debian/pool/main/r/re-name/re-name_1.99.2-1.dsc

There are a SVN too:

  http://anonscm.debian.org/viewvc/debian-br-team/packages/re-name/trunk/debian

Regards,
   Joao Eriberto Mota Filho

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

Kernel: Linux 3.2.0-4-amd64 (SMP w/4 CPU cores)
Locale: LANG=pt_BR.UTF-8, LC_CTYPE=pt_BR.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#698064: aranym: crashes from guest userspace when NatFeat is queried

2013-04-23 Thread Thorsten Glaser
Adam D. Barratt dixit:

>Any news?

I didn’t hear anything. If needed, I’ll try to pick the fix
from upstream and NMU to t-p-u, although I’m not too sure
about the procedure (I know there’s mails to the bug and to
d-release involved, and an upload (with testing or t-p-u in
the changelog entry?), but not in what order; NMUing would
complicate this so I had hoped for Antonin to do it).

bye,
//mirabilos
-- 
  “Having a smoking section in a restaurant is like having
  a peeing section in a swimming pool.”
-- Edward Burr


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



Bug#705086: (python-gtk2: segmentation fault when gtk.FileChooser browses certain folders)

2013-04-23 Thread Rob
I found a command which solves my problem:

su -c update-mime-database /usr/share/mime && rm ~/.local/share/mime/mime.cache


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



Bug#706032: [Openstack-devel] Bug#706032: keystone: postinst replaces passwords in /etc/keystone/keystone.conf with sed

2013-04-23 Thread Thomas Goirand
On 04/24/2013 02:26 AM, Salvatore Bonaccorso wrote:
> Package: keystone
> Version: 2012.1.1-13
> Severity: minor
> 
> Hi Thomas
> 
> 79 sed -i ${INIFILE_CNT}' s|.*|'${INIFILE_DIRECTIVE}' =
'${INIFILE_NEW_VALUE}'|' ${INIFILE_MYCONFIG}
> [...]
> 586 pkgos_inifile set ${KEY_CONF} DEFAULT admin_token ${AUTH_TOKEN}
> 
> But this migth, for short time only, expose the password seen in the
> process list, as the token is passed as command line argument world
> readable.

Hi Salvatore,

Indeed, this is a problem. And it is more wide than you think, since in
many openstack packages, I've been doing that to set the keystone
service credentials in multiple places (eg: in Cinder, Glance, Heat,
Nova and Quantum).

My Unix foo tells me that I could create a folder in /tmp, then use echo
to write the sed parameters in it (since echo is built-in in most sh
implementations), then finally use the -f parameter of sed. Though this
seems a bit overkill, so I might want to do that only on some specific
security concerned cases, which is problematic: it would easy to forget
"--safe-replace-with-no-ps-aux" when calling pkgos_inifile.

Do you have an idea what is the best way to fix this?
Thoughts?

In case you don't add comments, I'll use the above, always. I'd rather
be safe than fast.

> The reason I originally to the postinst: keystone in wheezy/sid seems
> to create a /etc/keystone/keystone.confe due to 
> 
> AUTH_TOKEN=${RET:-ADMIN}
> sed -ie 's|^[ \t]*admin_token[ \t]*=.*|admin_token = 
> '${AUTH_TOKEN}'|' ${KEY_CONF}
> 
> beeing used, so replacing the file creating a backupfile with ending
> 'e'.

Oh. I stared at the code trying to find out why it was generating these
files ending with "e", and didn't find out (I don't think that part was
written by me). Thanks for finding it. If I understand well, it is
because sed is called using:
sed -ie  

instead of:
sed -i -e  

then the "e" is used as backup character. Right? That's a pretty stupid
bug... :)

Thomas


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



Bug#697619: Processed: found 697619 in 0.110

2013-04-23 Thread Adam D. Barratt
On Tue, 2013-04-23 at 21:23 +0100, Ben Hutchings wrote:
> On Tue, Apr 23, 2013 at 09:03:26PM +0100, Adam D. Barratt wrote:
> > What's the issue with the fix? If we need another upload for i-t for r0
> > then it'll need to be soon. :-|
>  
> The fix hasn't gone into a 'mainline' release yet, so this still
> affects experimental.

Yeah, I should have checked the version more closely... *sigh*

Regards,

Adam


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



Bug#697619: Processed: found 697619 in 0.110

2013-04-23 Thread Ben Hutchings
On Tue, Apr 23, 2013 at 09:03:26PM +0100, Adam D. Barratt wrote:
> On Mon, 2013-04-22 at 21:36 +, Debian Bug Tracking System wrote:
> > Processing commands for cont...@bugs.debian.org:
> > 
> > > found 697619 0.110
> > Bug #697619 {Done: Ben Hutchings } [initramfs-tools] 
> > Many HID drivers not included in initramfs
> > Marked as found in versions initramfs-tools/0.110 and reopened.
> 
> What's the issue with the fix? If we need another upload for i-t for r0
> then it'll need to be soon. :-|
 
The fix hasn't gone into a 'mainline' release yet, so this still
affects experimental.

Ben.

-- 
Ben Hutchings
We get into the habit of living before acquiring the habit of thinking.
  - Albert Camus


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



Bug#706042: ITP: grapefruit -- Python module to manipulate color information easily

2013-04-23 Thread Simon Chopin
Package: wnpp
Severity: wishlist
Owner: Simon Chopin 
Control: block 705947 by -1

* Package name: grapefruit
  Version : 0.1~a3
  Upstream Author : Xavier Basty
* URL : https://github.com/xav/Grapefruit
* License : Apache 2.0
  Programming Lang: Python
  Description : Python module to manipulate color information easily

GrapeFruit is a pure Python module that let you easily manipulate and
convert color information. Its Primary goal is to be natural and
flexible.

It is one of the multiple dependencies of fedmsg, and will be packaged
inside the DPMT.


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



Bug#697619: Processed: found 697619 in 0.110

2013-04-23 Thread Adam D. Barratt
On Tue, 2013-04-23 at 22:17 +0200, Michael Prokop wrote:
> * Adam D. Barratt [Tue Apr 23, 2013 at 09:03:26PM +0100]:
> > What's the issue with the fix? If we need another upload for i-t for r0
> > then it'll need to be soon. :-|
> 
> We've 0.109.1 which fixes that in wheezy and unstable, shouldn't
> this be enough? Is experimental's 0.110 of i-t an issue WRT to r0?
> I'd push a 0.111 release to experimental immediately then.

Bah, I misread the versions and thought it was affecting the recent
upload to sid; sorry for the noise.

Regards,

Adam


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



Bug#697619: Processed: found 697619 in 0.110

2013-04-23 Thread Michael Prokop
* Adam D. Barratt [Tue Apr 23, 2013 at 09:03:26PM +0100]:
> On Mon, 2013-04-22 at 21:36 +, Debian Bug Tracking System wrote:
> > Processing commands for cont...@bugs.debian.org:

> > > found 697619 0.110
> > Bug #697619 {Done: Ben Hutchings } [initramfs-tools] 
> > Many HID drivers not included in initramfs
> > Marked as found in versions initramfs-tools/0.110 and reopened.

> What's the issue with the fix? If we need another upload for i-t for r0
> then it'll need to be soon. :-|

We've 0.109.1 which fixes that in wheezy and unstable, shouldn't
this be enough? Is experimental's 0.110 of i-t an issue WRT to r0?
I'd push a 0.111 release to experimental immediately then.

regards,
-mika-


signature.asc
Description: Digital signature


Bug#706041: O: tpp -- text presentation program

2013-04-23 Thread Nico Golde
Package: wnpp
Severity: normal

I intend to orphan the tpp package.

The package description is:
 Tpp stands for text presentation program and is an ncurses-based presentation
 tool. The presentation can be written with your favorite editor in a simple
 description format and then shown on any text terminal that is supported by
 ncurses - ranging from an old VT100 to the Linux framebuffer to an xterm.
 .
 It supports color, LaTeX output of presentation, sliding in text,
 a command prompt and additional cool features.

As I'm not using this anymore and my ruby is pretty rusty by now, I have no 
interest in maintaining this further.
There is one pending change being merged from a contributor that would address 
the ncurses
problems mentioned in the BTS.

https://github.com/akrennmair/tpp

Feel free to contribute here, Andreas is also happily merging pull requests.
But other than that, the project is not further developed.

Thanks
Nico


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



Bug#706023: parted: mkpart screws up value if start is 1 plus a unit

2013-04-23 Thread Phillip Susi
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On 4/23/2013 11:11 AM, Len Sorensen wrote:
> Package: parted Version: 2.3-12 Severity: normal Tags: upstream
> 
> If you try to create a partition starting at 1MiB and ending at the
> end of the disk by doing:
> 
> mkpart primary 1MiB -1s
> 
> You can a warning about alignment (which is obviously wrong given
> 1MiB is perfectly aligned), and the start is instead 63s.

It looks like this was fixed upstream in commit 18e727d4 - libparted:
fix snap radius so that it is using half, which is a simple one line
change:

diff --git a/libparted/unit.c b/libparted/unit.c
index dc4205b..c2921e3 100644
- --- a/libparted/unit.c
+++ b/libparted/unit.c
@@ -533,7 +533,7 @@ ped_unit_parse_custom (const char* str, const
PedDevice* dev, PedUnit unit,
}

unit_size = ped_unit_get_size (dev, unit);
- -   radius = ped_div_round_up (unit_size, dev->sector_size) - 1;
+   radius = (ped_div_round_up (unit_size, dev->sector_size) / 2) - 1;
if (radius < 0)
radius = 0;
/* If the user specifies units in a power of 2, e.g., 4MiB, as in


-BEGIN PGP SIGNATURE-
Version: GnuPG v2.0.17 (MingW32)
Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/

iQEcBAEBAgAGBQJRduvqAAoJEJrBOlT6nu75D78IANWiNm4jz4CnijILuAKO3wxD
ZtNhTQy8YZk1JzJ9I7L/TDtxp9tg8H591VyB7j23Q7svPwZoiFqa+RkVpH1lBoMS
I6ks8SAipiq7AkgzHBaJKHmpXscgez38ujYdHXArywLaCalrY5CnCs3Nwb1DT6Oc
E7G9N28y4cX6ifmyptCdav0dRAs1l2dVZRehhJKy6AQpc8Ggg4H40/2Bc+wXHtp3
OrAXH/Jsw65/jFVHyVtGhYnRcazazcN+9oQbV6G3GCNzNAbihQTKPnuwyICmnnrt
EWZJw8YVZu3kx2UbQrm7eC1pg/CkTUi7522MNO57HKQm2Upwbi+eh7fbPPLOx2I=
=oleD
-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#698064: aranym: crashes from guest userspace when NatFeat is queried

2013-04-23 Thread Adam D. Barratt
On Mon, 2013-04-22 at 11:01 +, Thorsten Glaser wrote:
> Adam D. Barratt dixit:
> 
> > Apparently it never reached the list. At least it's not in my -release mail
> 
> I’ve searched for it too, and could not find it in either
> archive I tried (l.d.o and GMane).
> 
> Can you please just resend the mail, and put the bug on Cc?

Any news?

Regards,

Adam


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



Bug#697619: Processed: found 697619 in 0.110

2013-04-23 Thread Adam D. Barratt
On Mon, 2013-04-22 at 21:36 +, Debian Bug Tracking System wrote:
> Processing commands for cont...@bugs.debian.org:
> 
> > found 697619 0.110
> Bug #697619 {Done: Ben Hutchings } [initramfs-tools] 
> Many HID drivers not included in initramfs
> Marked as found in versions initramfs-tools/0.110 and reopened.

What's the issue with the fix? If we need another upload for i-t for r0
then it'll need to be soon. :-|

Regards,

Adam


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



Bug#706040: unblock: sugar-record-activity/82-1.1

2013-04-23 Thread Gaudenz Steinlin
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock package sugar-record-activity

This is a "leaf" package and without this fix the package currently in
wheezy is not usable. The fix is a small one-liner. This bug and all the
others concerning sugar activites are because the sugar activity
packages are quite old, but the sugar shell has been updated to sucrose
0.96. 

Debdiff attached.

Thanks for considering this for wheezy or a wheezy point release.

Gaudenz

unblock sugar-record-activity/82-1.1

-- System Information:
Debian Release: 7.0
  APT prefers testing
  APT policy: (800, 'testing'), (700, 'unstable'), (50, 'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 3.8-trunk-amd64 (SMP w/2 CPU cores)
Locale: LANG=de_CH.UTF-8, LC_CTYPE=de_CH.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
diff -Nru sugar-record-activity-82/debian/changelog sugar-record-activity-82/debian/changelog
--- sugar-record-activity-82/debian/changelog	2010-08-11 18:31:41.0 +0200
+++ sugar-record-activity-82/debian/changelog	2013-04-23 18:26:54.0 +0200
@@ -1,3 +1,10 @@
+sugar-record-activity (82-1.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Fix activity.info file (Closes: #706018)
+
+ -- Gaudenz Steinlin   Tue, 23 Apr 2013 18:21:43 +0200
+
 sugar-record-activity (82-1) unstable; urgency=low
 
   * Initial release. (Closes: #588993)
diff -Nru sugar-record-activity-82/debian/patches/activity-info.patch sugar-record-activity-82/debian/patches/activity-info.patch
--- sugar-record-activity-82/debian/patches/activity-info.patch	1970-01-01 01:00:00.0 +0100
+++ sugar-record-activity-82/debian/patches/activity-info.patch	2013-04-23 18:19:55.0 +0200
@@ -0,0 +1,11 @@
+--- a/activity/activity.info
 b/activity/activity.info
+@@ -1,7 +1,7 @@
+ [Activity]
+ name = Record
+ bundle_id = org.laptop.RecordActivity
+-class = record.Record
++exec = sugar-activity record.Record
+ icon = activity-record
+ activity_version = 82
+ show_launcher = yes
diff -Nru sugar-record-activity-82/debian/patches/series sugar-record-activity-82/debian/patches/series
--- sugar-record-activity-82/debian/patches/series	1970-01-01 01:00:00.0 +0100
+++ sugar-record-activity-82/debian/patches/series	2013-04-23 18:19:10.0 +0200
@@ -0,0 +1 @@
+activity-info.patch


Bug#706039: unblock: sugar-physics-activity/7+dfsg-1.1

2013-04-23 Thread Gaudenz Steinlin
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock package sugar-physics-activity

This is a "leaf" package and without this fix the package currently in
wheezy is not usable. The fix is a small one-liner. This bug and all the
others concerning sugar activites are because the sugar activity
packages are quite old, but the sugar shell has been updated to sucrose
0.96. 

Debdiff attached.

Thanks for considering this for wheezy or a wheezy point release.

Gaudenz

unblock sugar-physics-activity/7+dfsg-1.1

-- System Information:
Debian Release: 7.0
  APT prefers testing
  APT policy: (800, 'testing'), (700, 'unstable'), (50, 'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 3.8-trunk-amd64 (SMP w/2 CPU cores)
Locale: LANG=de_CH.UTF-8, LC_CTYPE=de_CH.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
diff -Nru sugar-physics-activity-7+dfsg/debian/changelog sugar-physics-activity-7+dfsg/debian/changelog
--- sugar-physics-activity-7+dfsg/debian/changelog	2010-10-21 15:00:19.0 +0200
+++ sugar-physics-activity-7+dfsg/debian/changelog	2013-04-23 18:30:44.0 +0200
@@ -1,3 +1,10 @@
+sugar-physics-activity (7+dfsg-1.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Fix activity.info file (Closes: #706019)
+
+ -- Gaudenz Steinlin   Tue, 23 Apr 2013 18:30:28 +0200
+
 sugar-physics-activity (7+dfsg-1) unstable; urgency=low
 
   * New upstream version
diff -Nru sugar-physics-activity-7+dfsg/debian/patches/activity-info.patch sugar-physics-activity-7+dfsg/debian/patches/activity-info.patch
--- sugar-physics-activity-7+dfsg/debian/patches/activity-info.patch	1970-01-01 01:00:00.0 +0100
+++ sugar-physics-activity-7+dfsg/debian/patches/activity-info.patch	2013-04-23 18:29:16.0 +0200
@@ -0,0 +1,10 @@
+--- a/activity/activity.info
 b/activity/activity.info
+@@ -1,6 +1,6 @@
+ [Activity]
+ name = Physics
+-service_name = org.laptop.physics
++bundle_id = org.laptop.physics
+ exec = sugar-activity activity.PhysicsActivity
+ icon = activity-physics
+ activity_version = 7
diff -Nru sugar-physics-activity-7+dfsg/debian/patches/series sugar-physics-activity-7+dfsg/debian/patches/series
--- sugar-physics-activity-7+dfsg/debian/patches/series	1970-01-01 01:00:00.0 +0100
+++ sugar-physics-activity-7+dfsg/debian/patches/series	2013-04-23 18:28:26.0 +0200
@@ -0,0 +1 @@
+activity-info.patch


Bug#706038: unblock: sugar-connect-activity/22-1.1

2013-04-23 Thread Gaudenz Steinlin
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock package sugar-connect-activity

This is a "leaf" package and without this fix the package currently in
wheezy is not usable. The fix is a small one-liner. This bug and all the
others concerning sugar activites are because the sugar activity
packages are quite old, but the sugar shell has been updated to sucrose
0.96. 

Debdiff attached.

Thanks for considering this for wheezy or a wheezy point release.

Gaudenz

unblock sugar-connect-activity/22-1.1

-- System Information:
Debian Release: 7.0
  APT prefers testing
  APT policy: (800, 'testing'), (700, 'unstable'), (50, 'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 3.8-trunk-amd64 (SMP w/2 CPU cores)
Locale: LANG=de_CH.UTF-8, LC_CTYPE=de_CH.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
diff -Nru sugar-connect-activity-22/debian/changelog sugar-connect-activity-22/debian/changelog
--- sugar-connect-activity-22/debian/changelog	2010-07-27 20:13:50.0 +0200
+++ sugar-connect-activity-22/debian/changelog	2013-04-23 18:37:11.0 +0200
@@ -1,3 +1,10 @@
+sugar-connect-activity (22-1.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Fix activity.info file (Closes: #706020)
+
+ -- Gaudenz Steinlin   Tue, 23 Apr 2013 18:37:01 +0200
+
 sugar-connect-activity (22-1) unstable; urgency=low
 
   [ Kandarp Kaushik ]
diff -Nru sugar-connect-activity-22/debian/patches/activity-info.patch sugar-connect-activity-22/debian/patches/activity-info.patch
--- sugar-connect-activity-22/debian/patches/activity-info.patch	1970-01-01 01:00:00.0 +0100
+++ sugar-connect-activity-22/debian/patches/activity-info.patch	2013-04-23 18:35:25.0 +0200
@@ -0,0 +1,11 @@
+--- a/activity/activity.info
 b/activity/activity.info
+@@ -1,7 +1,7 @@
+ [Activity]
+ name = Connect
+ bundle_id = org.laptop.Connect
+-class = activity.ConnectActivity
++exec = sugar-activity activity.ConnectActivity
+ icon = activity-connect
+ activity_version = 22
+ show_launcher = yes
diff -Nru sugar-connect-activity-22/debian/patches/series sugar-connect-activity-22/debian/patches/series
--- sugar-connect-activity-22/debian/patches/series	1970-01-01 01:00:00.0 +0100
+++ sugar-connect-activity-22/debian/patches/series	2013-04-23 18:34:18.0 +0200
@@ -0,0 +1 @@
+activity-info.patch


Bug#706037: unblock: sugar-irc-activity/8-1.1

2013-04-23 Thread Gaudenz Steinlin
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock package sugar-irc-activity

This is a "leaf" package and without this fix the package currently in
wheezy is not usable. The fix is a small one-liner. This bug and all the
others concerning sugar activites are because the sugar activity
packages are quite old, but the sugar shell has been updated to sucrose
0.96. 

Debdiff attached.

Thanks for considering this for wheezy or a wheezy point release.

unblock sugar-irc-activity/8-1.1

-- System Information:
Debian Release: 7.0
  APT prefers testing
  APT policy: (800, 'testing'), (700, 'unstable'), (50, 'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 3.8-trunk-amd64 (SMP w/2 CPU cores)
Locale: LANG=de_CH.UTF-8, LC_CTYPE=de_CH.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
diff -Nru sugar-irc-activity-8/debian/changelog sugar-irc-activity-8/debian/changelog
--- sugar-irc-activity-8/debian/changelog	2010-12-27 20:30:16.0 +0100
+++ sugar-irc-activity-8/debian/changelog	2013-04-23 18:15:31.0 +0200
@@ -1,3 +1,10 @@
+sugar-irc-activity (8-1.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Fix activity.info file (Closes: #706021)
+
+ -- Gaudenz Steinlin   Tue, 23 Apr 2013 18:15:20 +0200
+
 sugar-irc-activity (8-1) unstable; urgency=low
 
   * New upstream version.
diff -Nru sugar-irc-activity-8/debian/patches/activity-info.patch sugar-irc-activity-8/debian/patches/activity-info.patch
--- sugar-irc-activity-8/debian/patches/activity-info.patch	1970-01-01 01:00:00.0 +0100
+++ sugar-irc-activity-8/debian/patches/activity-info.patch	2013-04-23 18:13:54.0 +0200
@@ -0,0 +1,10 @@
+--- a/activity/activity.info
 b/activity/activity.info
+@@ -1,6 +1,6 @@
+ [Activity]
+ name = IRC
+ activity_version = 8
+-service_name = org.sugarlabs.IRC
++bundle_id = org.sugarlabs.IRC
+ icon = activity-ircchat
+ exec = sugar-activity ircactivity.IRCActivity 
diff -Nru sugar-irc-activity-8/debian/patches/series sugar-irc-activity-8/debian/patches/series
--- sugar-irc-activity-8/debian/patches/series	1970-01-01 01:00:00.0 +0100
+++ sugar-irc-activity-8/debian/patches/series	2013-04-23 18:12:50.0 +0200
@@ -0,0 +1 @@
+activity-info.patch


Bug#706036: unblock: sugar-terminal-activity/28-1.1

2013-04-23 Thread Gaudenz Steinlin
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock package sugar-terminal-activity

This is a "leaf" package and without this fix the package currently in
wheezy is not usable. The fix is a small one-liner. This bug and all the
others concerning sugar activites are because the sugar activity
packages are quite old, but the sugar shell has been updated to sucrose
0.96. 

Debdiff attached.

Thanks for considering this for wheezy or a wheezy point release.

unblock sugar-terminal-activity/28-1.1

-- System Information:
Debian Release: 7.0
  APT prefers testing
  APT policy: (800, 'testing'), (700, 'unstable'), (50, 'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 3.8-trunk-amd64 (SMP w/2 CPU cores)
Locale: LANG=de_CH.UTF-8, LC_CTYPE=de_CH.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
diff -Nru sugar-terminal-activity-28/debian/changelog sugar-terminal-activity-28/debian/changelog
--- sugar-terminal-activity-28/debian/changelog	2010-08-06 03:53:21.0 +0200
+++ sugar-terminal-activity-28/debian/changelog	2013-04-23 17:56:16.0 +0200
@@ -1,3 +1,10 @@
+sugar-terminal-activity (28-1.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Fix activity.info file (Closes: #706012)
+
+ -- Gaudenz Steinlin   Tue, 23 Apr 2013 17:55:41 +0200
+
 sugar-terminal-activity (28-1) unstable; urgency=low
 
   * Imported Upstream version 28
diff -Nru sugar-terminal-activity-28/debian/patches/activity-info.patch sugar-terminal-activity-28/debian/patches/activity-info.patch
--- sugar-terminal-activity-28/debian/patches/activity-info.patch	1970-01-01 01:00:00.0 +0100
+++ sugar-terminal-activity-28/debian/patches/activity-info.patch	2013-04-23 17:41:34.0 +0200
@@ -0,0 +1,12 @@
+Fix for bug #706012
+--- a/activity/activity.info
 b/activity/activity.info
+@@ -1,7 +1,7 @@
+ [Activity]
+ name = Terminal
+ activity_version = 28
+-service_name = org.laptop.Terminal
++bundle_id = org.laptop.Terminal
+ exec = sugar-activity terminal.TerminalActivity
+ icon = activity-terminal
+ mime_types =
diff -Nru sugar-terminal-activity-28/debian/patches/series sugar-terminal-activity-28/debian/patches/series
--- sugar-terminal-activity-28/debian/patches/series	1970-01-01 01:00:00.0 +0100
+++ sugar-terminal-activity-28/debian/patches/series	2013-04-23 17:40:27.0 +0200
@@ -0,0 +1 @@
+activity-info.patch


Bug#706035: ax25-apps: ax25rtd requires /var/ax25/ax25rtd directory

2013-04-23 Thread Andreas Stempfhuber
Package: ax25-apps
Version: 0.0.6-16.2
Severity: normal

Hi,

ax25rtd requires the directory /var/ax25/ax25rtd which is not part of
the package. ax25rtd cannot be started without this directory.
The directory should be created during package installation.

Thanks

Andi

-- System Information:
Debian Release: 6.0.7
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'stable')
Architecture: i386 (i686)

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

Versions of packages ax25-apps depends on:
ii  debconf [debconf-2.0] 1.5.36.1   Debian configuration management sy
ii  libax25   0.0.11-6.1 ax25 library for hamradio applicat
ii  libc6 2.11.3-4   Embedded GNU C Library: Shared lib
ii  libncurses5   5.7+20100313-5 shared libraries for terminal hand

ax25-apps recommends no packages.

Versions of packages ax25-apps suggests:
ii  ax25-t 0.0.9~cvs20081121-1.afulinux.de.1 tools for AX.25 interface configur

-- debconf information:
  ax25-apps/suid_listen: false


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



Bug#670711: ucf: should be tagged Multi-Arch: foreign

2013-04-23 Thread Sven Hartge
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On 23.04.2013 18:47, Christian PERRIER wrote:
> Quoting Sven Hartge (s...@svenhartge.de):

>> (I CC'ed Christian Perrier, because he seems to be the de facto 
>> maintainer of ucf these days.)
> 
> I'm afraid I have to decline this: I just did the last 3 NMUs with
>  only one purpose: include translations contributed by the Debian 
> localization teams.

I expected this.

I at least wanted to document that I tried an Multi-Arch aware ucf and
found no bugs in the last 4 month I have been doing so. Hopefully this
helps any future maintainer in his decision of what to do.

It is just a shame that a integral configuration management tool of
Debian seems to have been orphaned since 2009.

Grüße,
Sven.
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.12 (GNU/Linux)

iEYEARECAAYFAlF25AkACgkQaYZAEZGyFku6wgCePjWqXk5I89eyAUkCJqMDnDNb
B+gAn2SuMEF+veaQ9nx8uWniCEPBRF6T
=+nqQ
-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#611554: Ark no longer allows to "Open with" a suitable application

2013-04-23 Thread Ldten K
Package: ark 
Version: 4:4.8.4-2

I can confirm that the bug still exists in wheezy. It also appears that a patch 
has been suggested to Ark/KDE developers by one of the users but KDE developers 
are not responsive.

This bug has been open for five(!) years and it doesn't look like it's going to 
be fixed any time soon by KDE. Maybe Debian could apply the path to its 
internal sources without waiting for KDE? Thanks



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



Bug#680884: [p0f] Please update to v3 [use case]

2013-04-23 Thread Axel Beckert
Hi Chris,

Chris Knadle wrote:
> > > I would be really happy if I would be able to use p0f in Debian to
> > > inform XP users that their OS will be EoL soon. :-)
> > 
> > For that I needed a package of p0f v3 anyway, so I built one. :-)
> 
> I've been doing the same elsewhere.  ;-)

Sounds as if there is some demand. ;-)

> > I've put a source package and an amd64 package online here:
> > 
> >   http://noone.org/debian/p0f_3.06b-1.dsc (signed)
> >   http://noone.org/debian/p0f_3.06b-1_amd64.deb
> >   http://noone.org/debian/p0f_3.06b-1_amd64.changes (signed and
> >   contains hash sums of p0f_3.06b-1_amd64.deb)
> > 
> > The .dsc and .changes are signed with my key in the Debian keyring.
> 
> Just a quick note about the above: the source package conists of the .dsc, 
> the 
> .orig tarball, and the .debian diff tarball.  I was able to get those from 
> your website and extract them via 'dpkg-source -x'.

The program dget from the devscripts package fetches all three files
if you give it the .dsc URL as parameter and by default automatically
runs "dpkg-source -x" if the signature is ok. (Cc to the bug report
for that hint.)

> You might consider making yourself your own private Debian repository with 
> these packages BTW, which would help both you and others use them.

I've got such a repo (it's on http://noone.org/apt/), but I didn't put
it in there on purpose. The version number is already the one which
will likely be used in the next Debian upload (independent of who will
upload the package), but the package itself is not yet that package:
The distribution is set to UNRELEASED on purpose, too. People who install
this may need to have a look at it when the official package arrives
via APT. Usually that works fine if one package is not from an APT
archive but installed via dpkg -i only.

> I recently did this; the three main options I considered were
> reprepro, DAK, and mini- buildd, and I ended up using reprerpo

As do I and most others, too. Even apt.postgresql.org runs reprepro
IIRC. :-)

> > Cc'ing the original reporter in case the package helps him for his v3
> > use case.
> 
> Thanks much.
> Builds clean in cowbuilder.  Very nice job with the debian/rules file.  
> Likewise with the DEP-3 formatted patches.  ;-)

Thanks for the nice review!

> Just one hint I was given that I'll pass on:
> 
>   - The debian/copyright file could be upgraded to the 1.0 format.  See:
> http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/

Yeah, in comparison to DEP-3 patches, I don't yet know DEP-5 by mind
and lintian doesn't yet complain about non-DEP-5 copyright files, so
the urge to move to DEP-5 is low, at least if I don't have to change
much in in there.

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


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



Bug#706034: very slow copying using mc versus cp

2013-04-23 Thread Ubuntu6226
Package: mc
Version: 3:4.7.0.9-1
Severity: normal



cp() in C is normally very fast.

I have to look to the code of mc for copying, why it does 300 kb instead of 
regular bash with cp (900 kb)

Well, you really need to improve that into cp

Kind rgards

PS. please also implement an real file move such as mv





-- System Information:
Debian Release: 6.0
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: armel (armv5tel)

Kernel: Linux 2.6.36 (PREEMPT)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=locale: Cannot set 
LC_CTYPE to default locale: No such file or directory
locale: Cannot set LC_MESSAGES to default locale: No such file or directory
locale: Cannot set LC_ALL to default locale: No such file or directory
ANSI_X3.4-1968)
Shell: /bin/sh linked to /bin/dash

Versions of packages mc depends on:
ii  e2fslibs  1.41.12-2  ext2/ext3/ext4 file system librari
ii  libc6 2.11.3-4   Embedded GNU C Library: Shared lib
ii  libcomerr21.41.12-2  common error description library
ii  libgcc1   1:4.4.5-8  GCC support library
ii  libglib2.0-0  2.24.2-1   The GLib library of C routines
ii  libgpm2   1.20.4-3.3 General Purpose Mouse - shared lib
ii  libslang2 2.2.2-4The S-Lang programming library - r

Versions of packages mc recommends:
ii  mime-support  3.48-1 MIME files 'mime.types' & 'mailcap

Versions of packages mc suggests:
pn  arj(no description available)
ii  bzip2   1.0.5-6  high-quality block-sorting file co
pn  catdvi (no description available)
pn  dbview (no description available)
pn  djvulibre-bin  (no description available)
ii  file5.04-5+squeeze1  Determines file type using "magic"
pn  gv (no description available)
ii  imagemagick 8:6.6.0.4-3+squeeze1 image manipulation programs
pn  links | w3m | lynx (no description available)
pn  odt2txt(no description available)
ii  perl5.10.1-17squeeze3Larry Wall's Practical Extraction 
ii  python  2.6.6-3+squeeze6 interactive high-level object-orie
pn  python-boto(no description available)
pn  python-tz  (no description available)
ii  unzip   6.0-4De-archiver for .zip files
pn  xpdf-reader | pdf-v(no description available)
pn  zip(no description available)

-- debconf information:
perl: warning: Setting locale failed.
perl: warning: Please check that your locale settings:
LANGUAGE = (unset),
LC_ALL = (unset),
LANG = "en_US.UTF-8"
are supported and installed on your system.
perl: warning: Falling back to the standard locale ("C").
locale: Cannot set LC_CTYPE to default locale: No such file or directory
locale: Cannot set LC_MESSAGES to default locale: No such file or directory
locale: Cannot set LC_ALL to default locale: No such file or directory


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



Bug#705964: xserver-xorg-input-synaptics: Thinkpad T430 Touchpad turns off for no reason

2013-04-23 Thread Julien Cristau
On Tue, Apr 23, 2013 at 21:13:06 +0200, Daniel Koch wrote:

> On Xorg.log there is:
> 
> >(--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found
> 
> many times. I think that could be driver/xserver/kernel-related somehow. 
> I would guess that the touchpad gets reinitialized by xorg and it does not 
> apply its config which is provided by the desktop environment.
> Can you tell me how to produce a better traceback for that issue ?
> 
If the kernel tells us the device goes away then there's two
possibilities:
- it's a kernel bug
- the device actually does go away from the kernel's perspective, and
  there's possibly a bug in your environment that should re-apply
  device settings on hotplug

Cheers,
Julien


signature.asc
Description: Digital signature


Bug#670711: ucf: should be tagged Multi-Arch: foreign

2013-04-23 Thread Christian PERRIER
Quoting Sven Hartge (s...@svenhartge.de):
> Hi!
> 
> (I CC'ed Christian Perrier, because he seems to be the de facto
> maintainer of ucf these days.)

I'm afraid I have to decline this: I just did the last 3 NMUs with
only one purpose: include translations contributed by the Debian
localization teams.

That doesn't really turn me into the maintainer of the package.

I guess that including Multi-Arch support in ucf is wished for the
future...but that has to be done by a "real" maintaineror an NMUer
who would be sure of what (s)he does.




signature.asc
Description: Digital signature


Bug#705964: xserver-xorg-input-synaptics: Thinkpad T430 Touchpad turns off for no reason

2013-04-23 Thread Julien Cristau
Control: tags -1 = moreinfo

On Mon, Apr 22, 2013 at 22:23:10 +0200, Daniel Koch wrote:

> Package: xserver-xorg-input-synaptics
> Version: 1.6.2-2
> Severity: normal
> Tags: lfs
> 
> I am facing a problem that my touchpad turns off for no reason on my T430
> (Lenovo Thinkpad).
> Logs do not provide any useful information when it just happened.
> I am using KDE and there are no options enabled that could be related to the
> problem (e.g turning off while typing or when a USB mouse is plugged)
> 
> 
> Workaround is to run 'synclient TouchpadOff=0' because the value changes from > 0
> to 1.
> 
I don't think the driver itself touches that, so I'd expect this change
to be triggered by a client as part of your session.  You'll get to
figure out which...

Cheers,
Julien


signature.asc
Description: Digital signature


Bug#706033: uninstallable, missing dependencies

2013-04-23 Thread Stefan Potyra
Package: fglrx-legacy-driver
Version: 8.97.100.7-1
Severity: normal

Hi,

thanks for maintaining the package!

Unfortunately, I cannot install the package due to unmet dependencies:

:>> LANG=C sudo apt-get install fglrx-legacy-driver
:Reading package lists... Done
:Building dependency tree   
:Reading state information... Done
:Some packages could not be installed. This may mean that you have
:requested an impossible situation or if you are using the unstable
:distribution that some required packages have not yet been created
:or been moved out of Incoming.
:The following information may help to resolve the situation:
:
:The following packages have unmet dependencies:
: fglrx-legacy-driver : Depends: glx-alternative-fglrx (>= 0.2.90)
:   Recommends: fglrx-legacy-modules-dkms (= 8.97.100.7-1) 
but it is not going to be installed or
:   fglrx-kernel-8.97.100.7
:   Recommends: libgl1-fglrx-legacy-glx (= 8.97.100.7-1) 
but it is not going to be installed
:   Recommends: libgl1-fglrx-legacy-glx-i386 but it is not 
installable
:   Recommends: fglrx-legacy-glx-ia32 but it is not 
installable
:   Recommends: fglrx-legacy-atieventsd but it is not going 
to be installed
:E: Unable to correct problems, you have held broken packages.
:zsh: exit 100   LANG=C sudo apt-get install fglrx-legacy-driver

(it doesn't work with --ignore-hold either)

Cheers,
  Stefan.

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

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


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



Bug#680884: [p0f] Please update to v3 [use case]

2013-04-23 Thread Chris Knadle
Hello Axel.

On Tuesday, April 23, 2013 11:23:44, Axel Beckert wrote:
...
> > I would be really happy if I would be able to use p0f in Debian to
> > inform XP users that their OS will be EoL soon. :-)
> 
> For that I needed a package of p0f v3 anyway, so I built one. :-)

I've been doing the same elsewhere.  ;-)

> I've put a source package and an amd64 package online here:
> 
>   http://noone.org/debian/p0f_3.06b-1.dsc (signed)
>   http://noone.org/debian/p0f_3.06b-1_amd64.deb
>   http://noone.org/debian/p0f_3.06b-1_amd64.changes (signed and
>   contains hash sums of p0f_3.06b-1_amd64.deb)
> 
> The .dsc and .changes are signed with my key in the Debian keyring.

Just a quick note about the above: the source package conists of the .dsc, the 
.orig tarball, and the .debian diff tarball.  I was able to get those from 
your website and extract them via 'dpkg-source -x'.

You might consider making yourself your own private Debian repository with 
these packages BTW, which would help both you and others use them.  I recently 
did this; the three main options I considered were reprepro, DAK, and mini-
buildd, and I ended up using reprerpo -- it works well for several thousand 
packages, is packaged for Debian, and has a simple dependency list that 
doesn't require a web server.

The main you'll need is to create a keyring package which drops a .gpg file 
containing the public signing key(s) into /etc/apt/trusted.gpg.d/.  reprepro 
also needs a gpg key to sign the package list file, so my keyring ended up 
having two GPG keys becuase I didn't want the secret key for my private GPG 
key on my server.  If the server's GPG key contains a password, you'll also 
need to run gpg-agent on the server, and configure gnupg for pinentry and 
install a pinentry package.

If you're interested in discussing this more, please contact me.  :-)

> Cc'ing the original reporter in case the package helps him for his v3
> use case.

Thanks much.
Builds clean in cowbuilder.  Very nice job with the debian/rules file.  
Likewise with the DEP-3 formatted patches.  ;-)

Just one hint I was given that I'll pass on:

  - The debian/copyright file could be upgraded to the 1.0 format.  See:
http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/

Thanks for your work!  :-)

  -- Chris

--
Chris Knadle
chris.kna...@coredump.us


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


Bug#474018: festvox-suopuhe-* (Finnish speakers for festival) are going away

2013-04-23 Thread Niko Tyni
retitle 474018 O: festvox-suopuhe-lj -- Finnish female speaker for Festival
retitle 474019 O: festvox-suopuhe-mv -- Finnish male speaker for festival
thanks

I haven't used these packages in a long time.

They are dead upstream and have had bug reports from exactly one user
in the seven years they've been in Debian.

The packages should be removed from Debian after the wheezy release
unless a new maintainer somehow materializes. I'm marking them as orphaned
for now.

Cc'ing the festival package maintainers and the Debian Finnish
l10n list in case someone is interested.
-- 
Niko Tyni   nt...@debian.org


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



Bug#693216: preapproval of firebird2.5/2.5.2.26539.ds4-1

2013-04-23 Thread Julien Cristau
On Tue, Apr 23, 2013 at 15:39:28 +0300, Damyan Ivanov wrote:

> -=| Adam D. Barratt, 23.04.2013 12:54:47 +0100 |=-
> > On 23.04.2013 12:17, Damyan Ivanov wrote:
> > >Just a tiny note that ma have been missed: firebird2.5 is the same
> > >version in sid and wheezy so uploading wheezy-targeted versions
> > >can be
> > >done via unstable (if acceptable at all this close to the release).
> > 
> > Yes, I know. :-) My point was that the new version would have to get
> > some testing in unstable first, before migrating; as per my original
> > mail, I'm not comfortable there's enough time to do that before the
> > release.
> 
> Ah, I see. Sorry for the confusion on my side.
> 
> So does the following sound like a good plan:
> 
>  1. Wait for wheezy release
>  2. Upload to unstable
>  3. Wait some time (a week? a month? migration to testing?)
>  4. (if no showstoppers emerge) Ping this bug and ask for a stable
>  update
> 
I'm not sure 1 is necessary, but the rest seems fine.

Cheers,
Julien


signature.asc
Description: Digital signature


Bug#568743: speedy-cgi-perl is going away

2013-04-23 Thread Niko Tyni
retitle 568743 O: speedy-cgi-perl -- speed up perl scripts by making them 
persistent

This is just a note so that nobody wastes time on speedy-cgi-perl bugs
#666853 (Apache 2.4 transition) or #676277 (Perl 5.16 transition) unless
they are planning to adopt the package.

I intend to request removal of speedy-cgi-perl once wheezy has been
released, for reasons described in #568743 (mainly: dead upstream.)
I believe reverse dependencies have since been removed, with the exception
of a Suggestion in libhtml-mason-perl.

Marking the package as orphaned for now.
-- 
Niko Tyni   nt...@debian.org


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



Bug#706032: keystone: postinst replaces passwords in /etc/keystone/keystone.conf with sed

2013-04-23 Thread Salvatore Bonaccorso
Package: keystone
Version: 2012.1.1-13
Severity: minor

Hi Thomas

Looking at the keystone postinst and rembering some comments on
#debian-security, noticed that the keystone postinst does replacements
with sed as follows:

 74 if [ "x${INIFILE_ACCESS_MODE}" = "xset" ] ; 
then
 75 if [ "${DIRECTIVE_TYPE}" = "equal" 
] ; then
 76 if [ 
"${INIFILE_SHELL_INCLUDE}" = "yes" ] ; then
 77 sed -i 
${INIFILE_CNT}' s|.*|'${INIFILE_DIRECTIVE}'='${INIFILE_NEW_VALUE}'|' 
${INIFILE_MYCONFIG}
 78 else
 79 sed -i 
${INIFILE_CNT}' s|.*|'${INIFILE_DIRECTIVE}' = '${INIFILE_NEW_VALUE}'|' 
${INIFILE_MYCONFIG}
 80 fi
 81 else
 82 sed -i ${INIFILE_CNT}' 
s|.*|'${INIFILE_DIRECTIVE}': '${INIFILE_NEW_VALUE}'|' ${INIFILE_MYCONFIG}
 83 fi
 84 fi
[...]
578 # Create keystone.conf if it's not there
579 pkgos_write_new_conf keystone keystone.conf
580 # Set the auth_token directive in in keystone.conf
581 db_get keystone/auth-token
582 AUTH_TOKEN=${RET}
583 if [ -z "${AUTH_TOKEN}" ] ; then
584 AUTH_TOKEN=`pkgos_gen_pass`
585 fi
586 pkgos_inifile set ${KEY_CONF} DEFAULT admin_token ${AUTH_TOKEN}

But this migth, for short time only, expose the password seen in the
process list, as the token is passed as command line argument world
readable.

The reason I originally to the postinst: keystone in wheezy/sid seems
to create a /etc/keystone/keystone.confe due to 

AUTH_TOKEN=${RET:-ADMIN}
sed -ie 's|^[ \t]*admin_token[ \t]*=.*|admin_token = '${AUTH_TOKEN}'|' 
${KEY_CONF}

beeing used, so replacing the file creating a backupfile with ending
'e'.

Thank you for your work on the openstack packages!

Regards,
Salvatore


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



Bug#706031: linux-image-3.2.0-4-amd64: WARNING at include/net/mac80211.h:3575 rate_control_send_low+0xa3/0x16c [mac80211]

2013-04-23 Thread Julien Cristau
Package: src:linux
Version: 3.2.41-2
Severity: important

I have several warnings from mac80211 in dmesg.  It seems that the
machine is sometimes able to recover, sometimes I'm not so sure.

Cheers,
Julien

Apr 22 09:47:39 luzerne kernel: [ 2905.482200] [ cut here 
]
Apr 22 09:47:39 luzerne kernel: [ 2905.482253] WARNING: at 
/build/buildd-linux_3.2.41-2-amd64-Wvc92F/linux-3.2.41/include/net/mac80211.h:3575
 rate_control_send_low+0xa3/0x16c [mac80211]()
Apr 22 09:47:39 luzerne kernel: [ 2905.482262] Hardware name: Latitude E4200
  
Apr 22 09:47:39 luzerne kernel: [ 2905.482267] Modules linked in: cryptd 
aes_x86_64 aes_generic parport_pc ppdev lp parport rfcomm bnep 
cpufreq_powersave cpufreq_conservative cpufreq_userspace cpufreq_stats binfm
t_misc uinput fuse nfsd nfs nfs_acl auth_rpcgss fscache lockd sunrpc ext2 loop 
firewire_sbp2 snd_hda_codec_hdmi snd_hda_codec_idt btusb bluetooth crc16 joydev 
arc4 uvcvideo videodev v4l2_compat_ioctl32 media dell
_wmi sparse_keymap snd_hda_intel snd_hda_codec snd_hwdep snd_pcm snd_page_alloc 
snd_seq snd_seq_device snd_timer evdev psmouse coretemp dell_laptop dcdbas 
iwlwifi i915 serio_raw i2c_i801 iTCO_wdt snd iTCO_vendor_
support pcspkr mac80211 cfg80211 drm_kms_helper drm rfkill i2c_algo_bit 
soundcore i2c_core battery wmi ac video button power_supply acpi_cpufreq mperf 
processor usbhid hid ext3 mbcache jbd dm_mod sg sd_mod crc_t1
0dif thermal thermal_sys uhci_hcd ahci libahci firewire_ohci sdhci_pci sdhci 
libata mmc_core firewire_core crc_itu_t ehci_hcd scsi_mod e1000e usbcore 
usb_common [last unloaded: scs
Apr 22 09:47:39 luzerne kernel: i_wait_scan]
Apr 22 09:47:39 luzerne kernel: [ 2905.482451] Pid: 2754, comm: NetworkManager 
Not tainted 3.2.0-4-amd64 #1 Debian 3.2.41-2
Apr 22 09:47:39 luzerne kernel: [ 2905.482457] Call Trace:
Apr 22 09:47:39 luzerne kernel: [ 2905.482462][] ? 
warn_slowpath_common+0x78/0x8c
Apr 22 09:47:39 luzerne kernel: [ 2905.482503]  [] ? 
rate_control_send_low+0xa3/0x16c [mac80211]
Apr 22 09:47:39 luzerne kernel: [ 2905.482523]  [] ? 
rs_get_rate+0x51/0x142 [iwlwifi]
Apr 22 09:47:39 luzerne kernel: [ 2905.482551]  [] ? 
rate_control_get_rate+0x7c/0x139 [mac80211]
Apr 22 09:47:39 luzerne kernel: [ 2905.482580]  [] ? 
invoke_tx_handlers+0x76b/0xded [mac80211]
Apr 22 09:47:39 luzerne kernel: [ 2905.482609]  [] ? 
ieee80211_tx+0x5c/0x87 [mac80211]
Apr 22 09:47:39 luzerne kernel: [ 2905.482638]  [] ? 
ieee80211_tx_pending+0xd5/0x1a3 [mac80211]
Apr 22 09:47:39 luzerne kernel: [ 2905.482650]  [] ? 
add_interrupt_randomness+0x38/0x155
Apr 22 09:47:39 luzerne kernel: [ 2905.482660]  [] ? 
tasklet_action+0x73/0xc2
Apr 22 09:47:39 luzerne kernel: [ 2905.482668]  [] ? 
__do_softirq+0xb9/0x177
Apr 22 09:47:39 luzerne kernel: [ 2905.482678]  [] ? 
call_softirq+0x1c/0x30
Apr 22 09:47:39 luzerne kernel: [ 2905.482689]  [] ? 
do_softirq+0x3c/0x7b
Apr 22 09:47:39 luzerne kernel: [ 2905.482697]  [] ? 
irq_exit+0x3c/0x9a
Apr 22 09:47:39 luzerne kernel: [ 2905.482705]  [] ? 
do_IRQ+0x82/0x98
Apr 22 09:47:39 luzerne kernel: [ 2905.482715]  [] ? 
common_interrupt+0x6e/0x6e
Apr 22 09:47:39 luzerne kernel: [ 2905.482720]   
Apr 22 09:47:39 luzerne kernel: [ 2905.482726] ---[ end trace fe68ccadcfd21f8c 
]---

Apr 23 09:07:25 luzerne kernel: [  168.088608] [ cut here 
]
Apr 23 09:07:25 luzerne kernel: [  168.088634] WARNING: at 
/build/buildd-linux_3.2.41-2-amd64-Wvc92F/linux-3.2.41/include/net/mac80211.h:3575
 rate_control_send_low+0xa3/0x16c [mac80211]()
Apr 23 09:07:25 luzerne kernel: [  168.088638] Hardware name: Latitude E4200
  
Apr 23 09:07:25 luzerne kernel: [  168.088641] Modules linked in: cryptd 
aes_x86_64 aes_generic parport_pc ppdev lp parport bnep rfcomm 
cpufreq_powersave cpufreq_conservative cpufreq_userspace cpufreq_stats 
binfmt_misc uinput fuse nfsd nfs nfs_acl auth_rpcgss fscache lockd sunrpc ext2 
loop firewire_sbp2 snd_hda_codec_hdmi snd_hda_codec_idt btusb bluetooth crc16 
joydev uvcvideo videodev v4l2_compat_ioctl32 media arc4 snd_hda_intel 
snd_hda_codec dell_wmi sparse_keymap snd_hwdep snd_pcm snd_page_alloc snd_seq 
iwlwifi snd_seq_device evdev snd_timer psmouse pcspkr serio_raw dell_laptop 
coretemp dcdbas i915 snd mac80211 iTCO_wdt iTCO_vendor_support i2c_i801 
cfg80211 drm_kms_helper rfkill drm i2c_algo_bit wmi i2c_core soundcore video ac 
button battery acpi_cpufreq mperf power_supply processor usbhid hid ext3 
mbcache jbd dm_mod sg sd_mod crc_t10dif firewire_ohci uhci_hcd thermal 
thermal_sys sdhci_pci sdhci firewire_core crc_itu_t ahci libahci ehci_hcd 
mmc_core libata scsi_mod usbcore e1000e usb_common [last unloaded: scs
Apr 23 09:07:25 luzerne kernel: i_wait_scan]
Apr 23 09:07:25 luzerne kernel: [  168.088734] Pid: 172, comm: kworker/u:4 Not 
tainted 3.2.0-4-amd64 #1 Debian 3.2.41-2
Apr 23 09:07:25 luzerne kernel: [  168.088737] Call Trace:
Apr 23 09:07:25 luzerne kernel: [  168.088745]  [] ? 
warn_slowpath_common+0x78/0x8c
Apr 23 09:07:25

Bug#643595: ITP: snes9x -- Cross-platform SNES emulator

2013-04-23 Thread John Paul Adrian Glaubitz

On 04/23/2013 07:27 PM, Neutron Soutmun wrote:

I'm not thoroughly review your package but it seems that you bump the
standard-versions in this upload to mentors.d.n without any logging in
debian/changelog.
Hopefully, you already consult
/usr/share/doc/debian-policy/upgrading-checklist.txt.gz and no changes
needed.


I'll review the package later and suggest further changes. There are 
some spelling errors in the debian/control file, the debhelper version 
should be bumped to 9 and so on.


Cheers,

Adrian

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


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



Bug#706030: ITP: libstring-diff-perl -- simple diff for strings

2013-04-23 Thread Jonas Smedegaard
Package: wnpp
Severity: wishlist
Owner: Jonas Smedegaard 

* Package name: libstring-diff-perl
  Version : 0.06
  Upstream Author : Kazuhiro Osawa 
* URL : https://github.com/yappo/p5-String-Diff/tree
* License : Artistic or GPL-1+
  Programming Lang: Perl
  Description : simple diff for strings

 String::Diff compares two strings, and emphasizes changed hunks within
 the resulting diff.
 .
 The markup of the addition and the deletion can be freely changed, e.g.
 coloring for the terminal with ANSI, or using HTML for web usage.


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



Bug#703715: workaround makes it worse

2013-04-23 Thread Daniel Pocock

I tried the workaround from the Ubuntu bug:

i915.i915_enable_rc6=0

After rebooting, I notice that the screen flashes at me from time to
time, and the errors are regularly appearing in dmesg, gdm login screen
broken, etc

[  164.522266] [drm:i915_hangcheck_elapsed] *ERROR* Hangcheck timer
elapsed... GPU hung
[  164.522272] [drm] capturing error event; look for more information in
/debug/dri/0/i915_error_state


I've now removed the workaround as it appears to make the problems worse


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



Bug#706029: ITP: libxxx-perl -- debug viewer for Perl data structure

2013-04-23 Thread Dominique Dumont

Package: wnpp
Owner: Dominique Dumont 
Severity: wishlist
X-Debbugs-CC: debian-de...@lists.debian.org,debian-p...@lists.debian.org

* Package name: libxxx-perl
  Version : 0.18
  Upstream Author : Ingy d�t Net 
* URL : http://search.cpan.org/dist/XXX/
* License : Artistic or GPL-1+
  Programming Lang: Perl
  Description : debug viewer for Perl data structure

XXX.pm exports a function called XXX that you can put just about anywhere in
your Perl code to make it die with a YAML dump of the arguments to its right.

The charm of XXX-debugging is that it is easy to type, rarely requires parens
and stands out visually so that you remember to remove it.

XXX.pm also exports WWW, YYY and ZZZ which do similar debugging things.


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


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



Bug#703715: me too, more details

2013-04-23 Thread Daniel Pocock

Since upgrading my laptop to wheezy, I experience several freezes per day

This time, I've been able to connect to it remotely and find the dmesg
output matches this bug report:

[ 5449.676827] [drm:i915_hangcheck_elapsed] *ERROR* Hangcheck timer
elapsed... GPU hung
[ 5449.676833] [drm] capturing error event; look for more information in
/debug/dri/0/i915_error_state

In my case, it happened just after waking the machine up from sleep.
The backlight is on, the time and username appear at the top of the
screen, but the login box does not appear.  I was able to connect to the
system over the network (wifi) to check the logs.  I've tried killing gdm3

I found a long discussion about similar errors on the Ubuntu bug:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/946899

They mention a couple of things:

cat /sys/kernel/debug/dri/0/i915_error_state

doesn't seem to work on Debian

and they suggest a workaround to go in /etc/default/grub:

GRUB_CMDLINE_LINUX_DEFAULT="i915.i915_enable_rc6=0 quiet splash"

My laptop is a Thinkpad X220t

lspci output:

00:02.0 VGA compatible controller: Intel Corporation 2nd Generation Core
Processor Family Integrated Graphics Controller (rev 09)
 8086:0126 (rev 09)

I was able to kill the X server and the screen changes, but no matter
what I do (e.g. ctrl-alt-f1, start X again, kill X again) I just can't
interact with the machine any more, I have to reboot it from ssh.


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



Bug#643595: ITP: snes9x -- Cross-platform SNES emulator

2013-04-23 Thread Neutron Soutmun
On Tue, Apr 23, 2013 at 11:33 PM, Michael Moorman wrote:

> Ah, thank you, that watch line you listed seems to work properly. I
> uploaded this change to mentors now, and it seems to pass without any
> warnings.
>

You're welcome. :)

I'm not thoroughly review your package but it seems that you bump the
standard-versions in this upload to mentors.d.n without any logging in
debian/changelog.
Hopefully, you already consult
/usr/share/doc/debian-policy/upgrading-checklist.txt.gz and no changes
needed.

Best regards,
Neutron Soutmun


Bug#706028: ITP: libwcat -- Process monitoring library

2013-04-23 Thread Cyril Bouthors
Package: wnpp
Severity: wishlist

* Package name: libwcat
  Version : 1.1
  Upstream Author : Michel Machado 
* URL or Web page : http://oss.digirati.com.br/watchcatd/
* License : GNU LGPL
  Description : Process monitoring library

 A bug or malicious attacks to machine can lock up a process, leading to a
 deadlock or an unexpected condition. For example: an Apache httpd with
 mod_(php|perl|lua|your_preferred_script_language) running a bad script. When
 the monitored process locks up, the watchcat helps killing him. It is the best
 thing to do.
-- 
 ,''`.
: :' :  Cyril Bouthors
`. `' Debian.org
  `-


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



Bug#680884: [p0f] Please update to v3 [use case]

2013-04-23 Thread Axel Beckert
Hi Pierre,

thanks for the prompt reply.

Pierre Chifflier wrote:
> Please give me some time to look at the your package, I have currently
> only few time because of my work.

Will do.

> I may also need to merge your work, as I previously had a git repository
> with v3, but the packages were never published.

Oh, ok. Didn't expect that... :-)

I hadn't published my git repo yet, but I've just published it at
http://git.noone.org/?p=debian-p0f.git, so you can have a look at the
single commits, which may be good for cherry-picking.

> That said, I would gladly add you as a co-maintainer if you want to, as
> I am still interested in the maintenance.

If you think a co-maintainer could improve the package maintenance,
I'd join in.

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


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



Bug#680884: [p0f] Please update to v3 [use case]

2013-04-23 Thread Pierre Chifflier
On Tue, Apr 23, 2013 at 05:23:44PM +0200, Axel Beckert wrote:
> Control: tag -1 + patch
> 
> Hi Pierre,

Hi Axel,

Please give me some time to look at the your package, I have currently
only few time because of my work.
I may also need to merge your work, as I previously had a git repository
with v3, but the packages were never published.
That said, I would gladly add you as a co-maintainer if you want to, as
I am still interested in the maintenance.

Cheers,
Pierre

> 
> Axel Beckert wrote on 18-Apr-2013:
> > any news on a 3.x p0f version in Debian? The last upload was from
> > 2008 and that version doesn't seem to be able to distinguish any
> > Windows newer than XP from XP.
> 
> In the meanwhile I could verify that the v3 version can distinguish
> between Windows XP and Windows 7/8. :-) Unfortunately the output is
> much worse to handle with grep and friends than from v2. :-/
> 
> > I would be really happy if I would be able to use p0f in Debian to
> > inform XP users that their OS will be EoL soon. :-)
> 
> For that I needed a package of p0f v3 anyway, so I built one. :-)
> 
> It's based on the official package as in Debian Unstable, but
> completely revamped (e.g. I rewrote debian/rules with debhelper) and
> more or less free of lintian-warnings, even with --pedantic. The only
> thing lintian (correctly) argues about is, that upstream no more
> provides any man-pages. :-(
> 
> I've put a source package and an amd64 package online here:
> 
>   http://noone.org/debian/p0f_3.06b-1.dsc (signed)
>   http://noone.org/debian/p0f_3.06b-1_amd64.deb
>   http://noone.org/debian/p0f_3.06b-1_amd64.changes (signed and
>   contains hash sums of p0f_3.06b-1_amd64.deb)
> 
> The .dsc and .changes are signed with my key in the Debian keyring.
> 
> Despite being built in a Sid pbuilder, it works fine on Debian Squeeze
> (which is where I need it currently), too.
> 
> Cc'ing the original reporter in case the package helps him for his v3
> use case.
> 
> > P.S.: Please mention if you need or want a co-maintainer for p0f.
> 
> The package mentioned above currently lists you as maintainer and me
> as co-maintainer.
> 
> If you're fine with that, I would upload that package to Debian
> Experimental -- possibly with some further minor changes.
> 
> For the ease of coordinating joint work on the package, I would
> propose a git repository under collab-maint on alioth. (I actually
> already have a local git repository for my work on the package so far.
> I'd just have to push that somewhere and add Vcs-* headers to the
> package.)
> 
> In case you have no more interest in this package, it also would be ok
> for me to take over maintenance of the package alone.
> 
>   Regards, Axel
> -- 
>  ,''`.  |  Axel Beckert , http://people.debian.org/~abe/
> : :' :  |  Debian Developer, ftp.ch.debian.org Admin
> `. `'   |  1024D: F067 EA27 26B9 C3FC 1486  202E C09E 1D89 9593 0EDE
>   `-|  4096R: 2517 B724 C5F6 CA99 5329  6E61 2FF9 CD59 6126 16B5
> 


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



Bug#643595: ITP: snes9x -- Cross-platform SNES emulator

2013-04-23 Thread Michael Moorman

On 04/23/2013 10:28 AM, Neutron Soutmun wrote:

On 04/08/2013 07:31 PM, Michael Moorman wrote:

It says that the watch file doesn't work, but the URLs listed checked
out, so I'm not sure what the issue with that is.


FYI: http://wiki.debian.org/debian/watch/

You could find the example watch file for google code site.
The watch file could be written like this,

version=3
http://code.google.com/p/snes9x-gtk/downloads/list?can=1 \
   .*/snes9x-(\d[\d.]*)-src\.tar\.bz2

Then, you could test the watch file with uscan,

$ uscan --report-status

Best regards,
Neutron Soutmun


Ah, thank you, that watch line you listed seems to work properly. I 
uploaded this change to mentors now, and it seems to pass without any 
warnings.


Thanks,
Michael


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



Bug#705973: [Pkg-utopia-maintainers] Bug#705973: Need IPv6 support

2013-04-23 Thread Erwan David

Le 23/04/2013 01:32, Michael Biebl a écrit :

Can you try network manager  0.9.8 from experimental?



Same problem.

On server I get following log:
Apr 23 18:08:24 tee ovpn-00-portable[3022]: 82.246.33.230:40874 WARNING: 
'tun-ipv6' is present in local config but missing in remote config, 
local='tun-ipv6'


It seems that import of an openvpn config file discards parts of the config.


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



Bug#705878: Change default Debian web browser to Chromium

2013-04-23 Thread Bob Bib
control: retitle -1 Change default Debian web browser to Chromium
control: reassign -1 task-desktop 3.14+nmu2
control: affects -1 task-gnome-desktop task-kde-desktop task-lxde-desktop 
task-xfce-desktop

Sun, 21 Apr 2013 17:14:27 +0200 from pietia:
> If possible please instead of using iceweasel use a better chromium or (two
> standard ones if possible )

It's not a bug in iceweasel package, so reassigning.



Best wishes, Bob

Bug#675345: merge with #694962

2013-04-23 Thread Katsuhiko Nishimra
forcemerge 694962 675345

Sorry, I failed to merge bugs. I hope this mail will work.


  1   2   3   >