Bug#632192: [PATCH] introduce environment variables for all qemu-user options

2011-08-05 Thread Johannes Schauer
Rework option parsing code for linux-user in a table-driven manner to allow
environment variables for all commandline options.

Also generate usage() output from option table.

Fix complains from checkpatch.pl, also have envlist global


Signed-off-by: Johannes Schauer 
---
 linux-user/main.c |  530 ++---
 1 files changed, 342 insertions(+), 188 deletions(-)

diff --git a/linux-user/main.c b/linux-user/main.c
index dbba8be..74c5198 100644
--- a/linux-user/main.c
+++ b/linux-user/main.c
@@ -40,6 +40,11 @@
 char *exec_path;
 
 int singlestep;
+const char *filename;
+const char *argv0;
+int gdbstub_port;
+envlist_t *envlist;
+const char *cpu_model;
 unsigned long mmap_min_addr;
 #if defined(CONFIG_USE_GUEST_BASE)
 unsigned long guest_base;
@@ -47,6 +52,8 @@ int have_guest_base;
 unsigned long reserved_va;
 #endif
 
+static void usage(void);
+
 static const char *interp_prefix = CONFIG_QEMU_INTERP_PREFIX;
 const char *qemu_uname_release = CONFIG_UNAME_RELEASE;
 
@@ -2624,50 +2631,6 @@ void cpu_loop (CPUState *env)
 }
 #endif /* TARGET_ALPHA */
 
-static void usage(void)
-{
-printf("qemu-" TARGET_ARCH " version " QEMU_VERSION QEMU_PKGVERSION ", 
Copyright (c) 2003-2008 Fabrice Bellard\n"
-   "usage: qemu-" TARGET_ARCH " [options] program [arguments...]\n"
-   "Linux CPU emulator (compiled for %s emulation)\n"
-   "\n"
-   "Standard options:\n"
-   "-hprint this help\n"
-   "-g port   wait gdb connection to port\n"
-   "-L path   set the elf interpreter prefix (default=%s)\n"
-   "-s size   set the stack size in bytes (default=%ld)\n"
-   "-cpu modelselect CPU (-cpu ? for list)\n"
-   "-drop-ld-preload  drop LD_PRELOAD for target process\n"
-   "-E var=value  sets/modifies targets environment variable(s)\n"
-   "-U varunsets targets environment variable(s)\n"
-   "-0 argv0  forces target process argv[0] to be argv0\n"
-#if defined(CONFIG_USE_GUEST_BASE)
-   "-B addressset guest_base address to address\n"
-   "-R size   reserve size bytes for guest virtual address 
space\n"
-#endif
-   "\n"
-   "Debug options:\n"
-   "-d options   activate log (logfile=%s)\n"
-   "-p pagesize  set the host page size to 'pagesize'\n"
-   "-singlestep  always run in singlestep mode\n"
-   "-strace  log system calls\n"
-   "\n"
-   "Environment variables:\n"
-   "QEMU_STRACE   Print system calls and arguments similar to 
the\n"
-   "  'strace' program.  Enable by setting to any 
value.\n"
-   "You can use -E and -U options to set/unset environment variables\n"
-   "for target process.  It is possible to provide several variables\n"
-   "by repeating the option.  For example:\n"
-   "-E var1=val2 -E var2=val2 -U LD_PRELOAD -U LD_DEBUG\n"
-   "Note that if you provide several changes to single variable\n"
-   "last change will stay in effect.\n"
-   ,
-   TARGET_ARCH,
-   interp_prefix,
-   guest_stack_size,
-   DEBUG_LOGFILE);
-exit(1);
-}
-
 THREAD CPUState *thread_env;
 
 void task_settid(TaskState *ts)
@@ -2703,24 +2666,351 @@ void init_task_state(TaskState *ts)
 }
 ts->sigqueue_table[i].next = NULL;
 }
- 
+
+static void handle_arg_help(const char *arg)
+{
+usage();
+}
+
+static void handle_arg_log(const char *arg)
+{
+int mask;
+const CPULogItem *item;
+
+mask = cpu_str_to_log_mask(arg);
+if (!mask) {
+printf("Log items (comma separated):\n");
+for (item = cpu_log_items; item->mask != 0; item++) {
+printf("%-10s %s\n", item->name, item->help);
+}
+exit(1);
+}
+cpu_set_log(mask);
+}
+
+static void handle_arg_set_env(const char *arg)
+{
+char *r, *p, *token;
+r = p = strdup(arg);
+while ((token = strsep(&p, ",")) != NULL) {
+if (envlist_setenv(envlist, token) != 0) {
+usage();
+}
+}
+free(r);
+}
+
+static void handle_arg_unset_env(const char *arg)
+{
+char *r, *p, *token;
+r = p = strdup(arg);
+while ((token = strsep(&p, ",")) != NULL) {
+if (envlist_unsetenv(envlist, token) != 0) {
+usage();
+}
+}
+free(r);
+}
+
+static void handle_arg_argv0(const char *arg)
+{
+argv0 = strdup(arg);
+}
+
+static void handle_arg_stack_size(const char *arg)
+{
+char *p;
+guest_stack_size = strtoul(arg, &p, 0);
+if (guest_stack_size == 0) {
+usage();
+}
+
+if (*p == 'M') {
+guest_stack_size *= 1024 * 1024;
+} else if (*p == 'k' || *p == 'K') {
+guest_stack_size *= 1024;
+}
+}
+
+static void handle_arg_ld_prefix(const char *arg)
+{
+interp_prefix = strdup(arg);
+}
+
+s

Bug#636821: libxnvctrl-dev uninstallable on Sid

2011-08-05 Thread Vincent Cheng
Package: libxnvctrl-dev
Severity: important
Tags: patch

I've just come across this bug while trying to build conky in an up-to-date Sid 
pbuilder chroot; at the moment, it seems that libxnvctrl-dev can't be installed 
(and causes conky to FTBFS as a side effect).

# aptitude install libxnvctrl-dev
The following NEW packages will be installed:
  libxnvctrl-dev{b} 
0 packages upgraded, 1 newly installed, 0 to remove and 1 not upgraded.
Need to get 90.7 kB of archives. After unpacking 459 kB will be used.
The following packages have unmet dependencies:
  libxnvctrl-dev: PreDepends: nvidia-common which is a virtual package.
The following actions will resolve these dependencies:

 Keep the following packages at their current version:
1) libxnvctrl-dev [Not Installed] 



Accept this solution? [Y/n/q/?] n

*** No more solutions available ***


The following patch should fix this bug:

diff -Nru a/debian/control b/debian/control
--- a/debian/control2011-07-06 12:33:37.0 -0700
+++ b/debian/control2011-08-05 23:37:52.169895686 -0700
@@ -35,7 +35,7 @@
 Package: libxnvctrl-dev
 Section: contrib/libdevel
 Architecture: i386 amd64
-Pre-Depends: nvidia-common
+Pre-Depends: nvidia-installer-cleanup
 Depends: ${shlibs:Depends}, ${misc:Depends}
 Breaks: nvidia-settings (<< 260.19.44)
 Replaces: nvidia-settings (<< 260.19.44)


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

Kernel: Linux 2.6.39-4.dmz.1-liquorix-amd64 (SMP w/2 CPU cores; PREEMPT)
Locale: LANG=en_CA.utf8, LC_CTYPE=en_CA.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash



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



Bug#636820: no longer uses preferred application to open http links

2011-08-05 Thread Michael Biebl
Package: icedove
Version: 5.0-1
Severity: normal

Hi,

after the upgrade from 3.1.11-1 to 5.0-1, icedove no longer opens http
links in my web browser, but opens a dialog (called "Launch
Application") telling me to choose an application. No application is
registered in this dialog, so I have to pick one via the file chooser.

Michael


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

Kernel: Linux 3.0.0-1-486
Locale: LANG=de_DE.utf8, LC_CTYPE=de_DE.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages icedove depends on:
ii  debianutils 4.0.2Miscellaneous utilities specific t
ii  fontconfig  2.8.0-3  generic font configuration library
ii  libasound2  1.0.24.1-2   shared library for ALSA applicatio
ii  libatk1.0-0 2.0.1-2  ATK accessibility toolkit
ii  libc6   2.13-13  Embedded GNU C Library: Shared lib
ii  libcairo2   1.10.2-6.1   The Cairo 2D vector graphics libra
ii  libdbus-1-3 1.4.14-1 simple interprocess messaging syst
ii  libevent-1.4-2  1.4.13-stable-1  An asynchronous event notification
ii  libffi5 3.0.9-7  Foreign Function Interface library
ii  libfontconfig1  2.8.0-3  generic font configuration library
ii  libfreetype62.4.6-1  FreeType 2 font engine, shared lib
ii  libgcc1 1:4.6.1-5GCC support library
ii  libgdk-pixbuf2.0-0  2.23.5-3 GDK Pixbuf library
ii  libglib2.0-02.28.6-1 The GLib library of C routines
ii  libgtk2.0-0 2.24.5-4 GTK+ graphical user interface libr
ii  libhunspell-1.2-0   1.2.14-4 spell checker and morphological an
ii  libjpeg62   6b1-2Independent JPEG Group's JPEG runt
ii  libnspr4-0d 4.8.8-2  NetScape Portable Runtime Library
ii  libnss3-1d  3.12.10-3Network Security Service libraries
ii  libpango1.0-0   1.28.4-2 Layout and rendering of internatio
ii  libpixman-1-0   0.22.2-1 pixel-manipulation library for X a
ii  libsqlite3-03.7.7-2  SQLite 3 shared library
ii  libstartup-notification 0.12-1   library for program launch feedbac
ii  libstdc++6  4.6.1-5  GNU Standard C++ Library v3
ii  libvpx0 0.9.6-1  VP8 video codec (shared library)
ii  libx11-62:1.4.4-1X11 client-side library
ii  libxext62:1.3.0-3X11 miscellaneous extension librar
ii  libxrender1 1:0.9.6-2X Rendering Extension client libra
ii  libxt6  1:1.1.1-2X11 toolkit intrinsics library
ii  psmisc  22.14-1  utilities that use the proc file s
ii  zlib1g  1:1.2.3.4.dfsg-3 compression library - runtime

Versions of packages icedove recommends:
ii  myspell-de-at [myspell-dictio 20110609-1 Austrian (German) dictionary for m
ii  myspell-de-ch [myspell-dictio 20110609-1 Swiss (German) dictionary for mysp
ii  myspell-de-de [myspell-dictio 20110609-1 German dictionary for myspell
ii  myspell-en-us [myspell-dictio 1:3.3.0-3  English_american dictionary for my

Versions of packages icedove suggests:
ii  libdbus-glib-1-20.94-4   simple interprocess messaging syst
ii  libgconf2-4 2.32.4-1 GNOME configuration database syste
ii  libgnomevfs2-0  1:2.24.4-1   GNOME Virtual File System (runtime
ii  libgssapi-krb5-21.9.1+dfsg-1 MIT Kerberos runtime libraries - k
ii  libnotify4  0.7.3-2  sends desktop notifications to a n
ii  ttf-lyx 2.0.0-1  TrueType versions of some TeX font

-- 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#599402: netatalk: afpd segfaults randomly (often when rename files)

2011-08-05 Thread Andreas Biessmann
Package: netatalk
Version: 2.1.2-2
Severity: normal

The segfault like this

---8<---
Aug  6 07:40:07 server kernel: [1800972.330157] afpd[32583]: segfault at 0 ip 
b75cde3a sp bf961cac error 4 in libc-2.11.2.so[b755b000+14]
Aug  6 07:40:07 server afpd[32557]: server_child[1] 32583 killed by signal 11
--->8--

often happens when setting complex filenames, but this can not be reproduced in 
any case.

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

Kernel: Linux 2.6.32-5-686 (SMP w/1 CPU core)
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8) (ignored: LC_ALL 
set to de_DE.UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages netatalk depends on:
ii  libc6   2.11.2-10Embedded GNU C Library: Shared lib
ii  libcomerr2  1.41.12-4stable1 common error description library
ii  libcrack2   2.8.16-4 pro-active password checker librar
ii  libcups21.4.4-7  Common UNIX Printing System(tm) - 
ii  libdb4.84.8.30-2 Berkeley v4.8 Database Libraries [
ii  libgcrypt11 1.4.5-2  LGPL Crypto library - runtime libr
ii  libgnutls26 2.8.6-1  the GNU TLS library - runtime libr
ii  libgssapi-krb5-21.8.3+dfsg-4squeeze1 MIT Kerberos runtime libraries - k
ii  libk5crypto31.8.3+dfsg-4squeeze1 MIT Kerberos runtime libraries - C
ii  libkrb5-3   1.8.3+dfsg-4squeeze1 MIT Kerberos runtime libraries
ii  libpam-modules  1.1.1-6.1Pluggable Authentication Modules f
ii  libpam0g1.1.1-6.1Pluggable Authentication Modules l
ii  libwrap07.6.q-19 Wietse Venema's TCP wrappers libra
ii  netbase 4.45 Basic TCP/IP networking system
ii  perl5.10.1-17squeeze2Larry Wall's Practical Extraction 
ii  zlib1g  1:1.2.3.4.dfsg-3 compression library - runtime

Versions of packages netatalk recommends:
ii  cracklib-runtime   2.8.16-4  runtime support for password check
ii  db4.8-util 4.8.30-2  Berkeley v4.8 Database Utilities
ii  libpam-cracklib1.1.1-6.1 PAM module to enable cracklib supp
ii  lsof   4.81.dfsg.1-1 List open files
ii  procps 1:3.2.8-9 /proc file system utilities
pn  rc (no description available)

Versions of packages netatalk suggests:
ii  db4.2-util 4.2.52+dfsg-5 Berkeley v4.2 Database Utilities
pn  db4.7-util (no description available)
ii  groff  1.20.1-10 GNU troff text-formatting system
pn  quota  (no description available)
ii  texlive-binaries [texlive- 2009-8Binaries for TeX Live

-- Configuration Files:
/etc/default/netatalk changed:
AFPD_MAX_CLIENTS=20
ATALK_NAME=`/bin/hostname --short`
ATALK_MAC_CHARSET='MAC_ROMAN'
ATALK_UNIX_CHARSET='LOCALE'
AFPD_UAMLIST="-U uams_dhx.so,uams_dhx2.so"
AFPD_GUEST=nobody
ATALKD_RUN=no
PAPD_RUN=no
TIMELORD_RUN=no
A2BOOT_RUN=no
CNID_METAD_RUN=yes
AFPD_RUN=yes
ATALK_BGROUND=no
export ATALK_MAC_CHARSET
export ATALK_UNIX_CHARSET
CNID_CONFIG="-l log_note"

/etc/netatalk/AppleVolumes.default changed:
:DEFAULT: options:upriv,noadouble,ea:ad veto:/lost+found/ cnidscheme:dbd
# private shares cut off, no other options
~/  "$u's home" allow:

/etc/netatalk/afpd.conf changed:
- -tcp -noddp -uamlist uams_dhx.so,uams_dhx2.so -unixcodepage UTF8 -maccodepage 
MAC_ROMAN -cnidserver localhost:4700 -nosavepassword

/etc/netatalk/atalkd.conf changed:
eth0 -phase 2 -net 0-65534 -addr 65280.61

/etc/netatalk/papd.conf changed:
cupsautoadd


-- 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#634015: Proposition to team-maintain m2crypto.

2011-08-05 Thread Charles Plessy
Dear Dima, and everybody,

in order to update the package euca2ools, that is used to operate virtual
machines on cloud systems such as the Amazon EC2, Eucalyptus, or OpenStack, I
would need an update of the m2crypto package.

Dima, I hope that everything is going well for you, as I have not had any answer
from you for three weeks, and as the m2crypto package is not actively maintained
(unanswered bug reports, unacknowledged NMU,…).

I would like to ask you and the developer community about the possiblity to
transfer m2crypto in a packaging team, such as the Debian Python Modules Team,
where it would be easier to join forces to keep the package up to date.
euca2ools frequently makes use of the latest functions of m2crypto, so it is
not the first time that we need to wait for an update of m2crypto in Debian in
order to move forward for euca2ools.

I am currently using a locally updated m2crypto package, and could take the
opportunity of an update to upload a package with an extended maintainer list.
Would you agree, and would there be other developers interested in maintaining
m2crypto ?

Have a nice week-end,

-- 
Charles Plessy
Debian Med packaging team,
http://www.debian.org/devel/debian-med
Tsurumi, Kanagawa, Japan



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



Bug#627711: the connect window doesn't provide list of servers

2011-08-05 Thread Theppitak Karoonboonyanan
On Sat, Aug 6, 2011 at 12:42 PM, Theppitak Karoonboonyanan
 wrote:

> But, yes, as you request this, I can forward it upstream (probably with
> different patch) soon.

GNOME #656069 filed:

  https://bugzilla.gnome.org/show_bug.cgi?id=656069

Regards,
-- 
Theppitak Karoonboonyanan
http://linux.thai.net/~thep/



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



Bug#587956: Call for vote on "cleanup bindv6only"

2011-08-05 Thread Manoj Srivastava
On Fri, Aug 05 2011, Andreas Barth wrote:

> * Andreas Barth (a...@not.so.argh.org) [110730 17:15]:
>> as I think after release of squeeze it is just to late to cleanup
>> bindv6only, so I intend to call for vote with the following options:
>> 
>> 1. We don't override the maintainers decision.
>> 2. Further discussion.
>
>
> As there was no additional option requested, I'm now calling for vote
> on these two options.
>

I vote 12

manoj
-- 
May's Law: The quality of correlation is inversly proportional to the
density of control.  (The fewer the data points, the smoother the curves.)
Manoj Srivastava    
4096R/C5779A1C E37E 5EC5 2A01 DA25 AD20  05B6 CF48 9438 C577 9A1C


pgpvEj2k09Gj7.pgp
Description: PGP signature


Bug#636819: fails to remove obsolete conffiles from /etc/icedove/profile on upgrades

2011-08-05 Thread Michael Biebl
Package: icedove
Version: 5.0-1
Severity: normal

Hi,

after upgrading icedove 3.1.11-1 to 5.0-1 the following conffiles were
marked as obsolete:

 /etc/icedove/profile/US/localstore.rdf ea03cc19c2a3f622fa557cd8ea9da6eb 
obsolete
 /etc/icedove/profile/US/mimeTypes.rdf d33f07ffab00dbea75d86f218064b16d obsolete
 /etc/icedove/profile/prefs.js 99940ecd258d83b3355ab06fca0ffddb obsolete
 /etc/icedove/profile/mimeTypes.rdf 1032acfe13041062e774a1e886918d9d obsolete
 /etc/icedove/profile/localstore.rdf ea03cc19c2a3f622fa557cd8ea9da6eb obsolete

Please remove those conffiles on upgrades, if they are no longer used.


Thanks,
Michael

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

Kernel: Linux 3.0.0-1-486
Locale: LANG=de_DE.utf8, LC_CTYPE=de_DE.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages icedove depends on:
ii  debianutils 4.0.2Miscellaneous utilities specific t
ii  fontconfig  2.8.0-3  generic font configuration library
ii  libasound2  1.0.24.1-2   shared library for ALSA applicatio
ii  libatk1.0-0 2.0.1-2  ATK accessibility toolkit
ii  libc6   2.13-13  Embedded GNU C Library: Shared lib
ii  libcairo2   1.10.2-6.1   The Cairo 2D vector graphics libra
ii  libdbus-1-3 1.4.14-1 simple interprocess messaging syst
ii  libevent-1.4-2  1.4.13-stable-1  An asynchronous event notification
ii  libffi5 3.0.9-7  Foreign Function Interface library
ii  libfontconfig1  2.8.0-3  generic font configuration library
ii  libfreetype62.4.6-1  FreeType 2 font engine, shared lib
ii  libgcc1 1:4.6.1-5GCC support library
ii  libgdk-pixbuf2.0-0  2.23.5-3 GDK Pixbuf library
ii  libglib2.0-02.28.6-1 The GLib library of C routines
ii  libgtk2.0-0 2.24.5-4 GTK+ graphical user interface libr
ii  libhunspell-1.2-0   1.2.14-4 spell checker and morphological an
ii  libjpeg62   6b1-2Independent JPEG Group's JPEG runt
ii  libnspr4-0d 4.8.8-2  NetScape Portable Runtime Library
ii  libnss3-1d  3.12.10-3Network Security Service libraries
ii  libpango1.0-0   1.28.4-2 Layout and rendering of internatio
ii  libpixman-1-0   0.22.2-1 pixel-manipulation library for X a
ii  libsqlite3-03.7.7-2  SQLite 3 shared library
ii  libstartup-notification 0.12-1   library for program launch feedbac
ii  libstdc++6  4.6.1-5  GNU Standard C++ Library v3
ii  libvpx0 0.9.6-1  VP8 video codec (shared library)
ii  libx11-62:1.4.4-1X11 client-side library
ii  libxext62:1.3.0-3X11 miscellaneous extension librar
ii  libxrender1 1:0.9.6-2X Rendering Extension client libra
ii  libxt6  1:1.1.1-2X11 toolkit intrinsics library
ii  psmisc  22.14-1  utilities that use the proc file s
ii  zlib1g  1:1.2.3.4.dfsg-3 compression library - runtime

Versions of packages icedove recommends:
ii  myspell-de-at [myspell-dictio 20110609-1 Austrian (German) dictionary for m
ii  myspell-de-ch [myspell-dictio 20110609-1 Swiss (German) dictionary for mysp
ii  myspell-de-de [myspell-dictio 20110609-1 German dictionary for myspell
ii  myspell-en-us [myspell-dictio 1:3.3.0-3  English_american dictionary for my

Versions of packages icedove suggests:
ii  libdbus-glib-1-20.94-4   simple interprocess messaging syst
ii  libgconf2-4 2.32.4-1 GNOME configuration database syste
ii  libgnomevfs2-0  1:2.24.4-1   GNOME Virtual File System (runtime
ii  libgssapi-krb5-21.9.1+dfsg-1 MIT Kerberos runtime libraries - k
ii  libnotify4  0.7.3-2  sends desktop notifications to a n
ii  ttf-lyx 2.0.0-1  TrueType versions of some TeX font

-- 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#636818: Please transition to libnotify 0.7

2011-08-05 Thread Michael Biebl
Source: collectd
Version: 4.10.1-2.1
Severity: serious
User: pkg-gnome-maintain...@lists.alioth.debian.org
Usertags: libnotify0.7-transition

Hi,

the libnotify 0.7 transition is currently ongoing [0].
Even if your package currently FTBFS for other reasons, it will also
fail to build due the API changes in libnotify and needs to be updated
accordingly.

API changes (shamelessly taken from[1]):
notify_notification_new_with_status_icon is gone
notify_notification_attach_to_status_icon is gone
notify_notification_attach_to_widget is gone
notify_notification_set_geometry_hints is gone
notify_notification_new has lost its widget argument


Cheers,
Michael

[0] http://release.debian.org/transitions/html/libnotify.html
[1] http://lists.fedoraproject.org/pipermail/devel/2010-November/144914.html


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

Kernel: Linux 3.0.0-1-486
Locale: LANG=de_DE.utf8, LC_CTYPE=de_DE.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash



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



Bug#630772: RE dkms: "Use of uninitialized value" perl warning when removing a, kernel with virtualbox modules

2011-08-05 Thread dj_palindrome

Dear Mr. Hertzog,

I don't know the source of the issue either, but I'm pretty sure it 
isn't confined in scope to VirtualBox, since I get an even longer, more 
annoying, and more time-consuming cascade of such messages when dkms 
removes other modules (in this case, xtables-addons), also while purging 
old kernels:



Removing linux-image-3.0-1.slh.1-aptosid-amd64 ...
Examining /etc/kernel/prerm.d.
run-parts: executing /etc/kernel/prerm.d/dkms 3.0-1.slh.1-aptosid-amd64 
/boot/vmlinuz-3.0-1.slh.1-aptosid-amd64


dkms: removing: vboxguest 4.1.0 (3.0-1.slh.1-aptosid-amd64) (x86_64)

Use of uninitialized value $command in lc at 
/usr/share/perl5/Debconf/ConfModule.pm line 123,  line 3.
Use of uninitialized value $command in lc at 
/usr/share/perl5/Debconf/ConfModule.pm line 123,  line 9.
Use of uninitialized value $command in lc at 
/usr/share/perl5/Debconf/ConfModule.pm line 123,  line 11.

/usr/sbin/dkms: line 1824: echo: write error: Broken pipe
/usr/sbin/dkms: line 1882: echo: write error: Broken pipe
/usr/sbin/dkms: line 1880: echo: write error: Broken pipe
/usr/sbin/dkms: line 1882: echo: write error: Broken pipe
Use of uninitialized value $command in lc at 
/usr/share/perl5/Debconf/ConfModule.pm line 123,  line 18.
Use of uninitialized value $command in lc at 
/usr/share/perl5/Debconf/ConfModule.pm line 123,  line 19.

/usr/sbin/dkms: line 1824: echo: write error: Broken pipe
/usr/sbin/dkms: line 1824: echo: write error: Broken pipe
/usr/sbin/dkms: line 1882: echo: write error: Broken pipe
/usr/sbin/dkms: line 1880: echo: write error: Broken pipe
/usr/sbin/dkms: line 1882: echo: write error: Broken pipe
Use of uninitialized value $command in lc at 
/usr/share/perl5/Debconf/ConfModule.pm line 123,  line 26.
Use of uninitialized value $command in lc at 
/usr/share/perl5/Debconf/ConfModule.pm line 123,  line 27.

/usr/sbin/dkms: line 1824: echo: write error: Broken pipe
/usr/sbin/dkms: line 1824: echo: write error: Broken pipe
/usr/sbin/dkms: line 1824: echo: write error: Broken pipe
/usr/sbin/dkms: line 1882: echo: write error: Broken pipe
/usr/sbin/dkms: line 1880: echo: write error: Broken pipe
/usr/sbin/dkms: line 1882: echo: write error: Broken pipe
Use of uninitialized value $command in lc at 
/usr/share/perl5/Debconf/ConfModule.pm line 123,  line 34.
Use of uninitialized value $command in lc at 
/usr/share/perl5/Debconf/ConfModule.pm line 123,  line 36.


dkms: removing: xtables-addons 1.35 (3.0-1.slh.1-aptosid-amd64) (x86_64)

Use of uninitialized value $command in lc at 
/usr/share/perl5/Debconf/ConfModule.pm line 123,  line 38.
Use of uninitialized value $command in lc at 
/usr/share/perl5/Debconf/ConfModule.pm line 123,  line 44.
Use of uninitialized value $command in lc at 
/usr/share/perl5/Debconf/ConfModule.pm line 123,  line 46.

/usr/sbin/dkms: line 1882: echo: write error: Broken pipe
/usr/sbin/dkms: line 1880: echo: write error: Broken pipe
/usr/sbin/dkms: line 1824: echo: write error: Broken pipe
/usr/sbin/dkms: line 1882: echo: write error: Broken pipe
/usr/sbin/dkms: line 1880: echo: write error: Broken pipe
/usr/sbin/dkms: line 1882: echo: write error: Broken pipe
Use of uninitialized value $command in lc at 
/usr/share/perl5/Debconf/ConfModule.pm line 123,  line 53.
Use of uninitialized value $command in lc at 
/usr/share/perl5/Debconf/ConfModule.pm line 123,  line 54.

/usr/sbin/dkms: line 1882: echo: write error: Broken pipe
/usr/sbin/dkms: line 1880: echo: write error: Broken pipe
/usr/sbin/dkms: line 1824: echo: write error: Broken pipe
/usr/sbin/dkms: line 1824: echo: write error: Broken pipe
/usr/sbin/dkms: line 1882: echo: write error: Broken pipe
/usr/sbin/dkms: line 1880: echo: write error: Broken pipe
/usr/sbin/dkms: line 1882: echo: write error: Broken pipe
Use of uninitialized value $command in lc at 
/usr/share/perl5/Debconf/ConfModule.pm line 123,  line 61.
Use of uninitialized value $command in lc at 
/usr/share/perl5/Debconf/ConfModule.pm line 123,  line 62.


[I've spared you the rest]



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



Bug#636783: proposed constitution fix for super-majority within the tech ctte

2011-08-05 Thread Anthony Towns
On Sat, Aug 6, 2011 at 07:48, Andreas Barth  wrote:
> Therefor, I propose to replace this by:
>
> A.6.3.2:
> | An option A defeats the default option D by a majority ratio of 1,
> | if V(A,D) is strictly greater than V(D,A). An option A defeats the
> | default option D by a majority ratio of N, if V(A,D) is equals or
> | greater than N * V(D,A).
> (I don't like the ways it's written - better ideas?)

I don't think it makes sense to have different rules for when M=1 to
when M=!1; so I'd suggest having a separate "supermajority ratio" that
does the >= thing, and is never =1.
Here's a possible patch (fingers crossed that gmail doesn't screw it
up too badly)

 --- /usr/share/doc/debian/constitution.txt 2010-01-12 07:14:08.0 
+1000
+++ supercons.txt   2011-08-06 15:56:35.593975118 +1000
@@ -81,11 +81,11 @@

Together, the Developers may:
 1. Appoint or recall the Project Leader.
-2. Amend this constitution, provided they agree with a 3:1 majority.
+2. Amend this constitution, provided they agree with a 3:1 supermajority.
 3. Make or override any decision authorised by the powers of the
Project Leader or a Delegate.
 4. Make or override any decision authorised by the powers of the
-   Technical Committee, provided they agree with a 2:1 majority.
+   Technical Committee, provided they agree with a 2:1 supermajority.
 5. Issue, supersede and withdraw nontechnical policy documents and
statements.
These include documents describing the goals of the project, its
@@ -97,7 +97,7 @@
 critical to the Project's mission and purposes.
  2. The Foundation Documents are the works entitled "Debian Social
 Contract" and "Debian Free Software Guidelines".
- 3. A Foundation Document requires a 3:1 majority for its
+ 3. A Foundation Document requires a 3:1 supermajority for its
 supersession. New Foundation Documents are issued and existing
 ones withdrawn by amending the list of Foundation Documents in
 this constitution.
@@ -256,10 +256,10 @@
 3. Make a decision when asked to do so.
Any person or body may delegate a decision of their own to the
Technical Committee, or seek advice from it.
-4. Overrule a Developer (requires a 3:1 majority).
+4. Overrule a Developer (requires a 3:1 supermajority).
The Technical Committee may ask a Developer to take a particular
technical course of action even if the Developer does not wish to;
-   this requires a 3:1 majority. For example, the Committee may
+   this requires a 3:1 supermajority. For example, the Committee may
determine that a complaint made by the submitter of a bug is
justified and that the submitter's proposed solution should be
implemented.
@@ -518,8 +518,6 @@
ballot that includes an option for the original resolution, each
amendment, and the default option (where applicable).
 2. The default option must not have any supermajority requirements.
-   Options which do not have an explicit supermajority requirement
-   have a 1:1 majority requirement.
 3. The votes are counted according to the rules in A.6. The default
option is "Further Discussion", unless specified otherwise.
 4. In cases of doubt the Project Secretary shall decide on matters of
@@ -561,13 +559,13 @@
default option which do not receive at least R votes ranking that
option above the default option are dropped from consideration.
 3. Any (non-default) option which does not defeat the default option
-   by its required majority ratio is dropped from consideration.
+   is dropped from consideration.
  1. Given two options A and B, V(A,B) is the number of voters who
 prefer option A over option B.
- 2. An option A defeats the default option D by a majority ratio
-N, if V(A,D) is strictly greater than N * V(D,A).
- 3. If a supermajority of S:1 is required for A, its majority
-ratio is S; otherwise, its majority ratio is 1.
+ 2. An option A defeats the default option D provided that:
+  (a) V(A,D) is strictly greater than V(D,A); and
+  (b) if a supermajority of N:1 is required, then V(A,D)
+  is greater than or equal to N * V(D/A).
 4. From the list of undropped options, we generate a list of pairwise
defeats.
  1. An option A defeats an option B, if V(A,B) is strictly greater
@@ -601,8 +599,8 @@
When the Standard Resolution Procedure is to be used, the text which
refers to it must specify what is sufficient to have a draft resolution
proposed and/or sponsored, what the minimum discussion period is, and
-   what the voting period is. It must also specify any supermajority
-   and/or the quorum (and default option) to be used.
+   what the voting period is. It must also specify the

Bug#604504: Preparations for the removal of the KDE3 and Qt3 libraries

2011-08-05 Thread Philipp Huebner
Package: qtodo
Version: 0.1.2-7
Followup-For: Bug #604504


QToDo has long been abandoned upstream and I do not intend to take over 
maintenance for KDE4/QT4.
Whenever the libraries are being removed it is okay to have qtodo removed as 
well.



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



Bug#636817: /usr/share/luakit/lib/userscripts.lua:18: module 'lfs' not found:

2011-08-05 Thread Jameson Graef Rollins
Package: luakit
Version: 2011.05.06+unique-1
Severity: normal

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Hello.  After a recent upgrade, luakit started failing to start, producing the 
following error:

servo:~ 0$ luakit 
/usr/share/luakit/lib/userscripts.lua:18: module 'lfs' not found:
  no field package.preload['lfs']
  no file './lfs.lua'
  no file 
'/usr/local/share/lua/5.1/lfs.lua'
  no file 
'/usr/local/share/lua/5.1/lfs/init.lua'
  no file 
'/usr/local/lib/lua/5.1/lfs.lua'
  no file 
'/usr/local/lib/lua/5.1/lfs/init.lua'
  no file '/usr/share/lua/5.1/lfs.lua'
  no file 
'/usr/share/lua/5.1/lfs/init.lua'
  no file 
'/home/jrollins/.config/luakit/lfs.lua'
  no file 
'/home/jrollins/.config/luakit/lfs/init.lua'
  no file '/etc/xdg/luakit/lfs.lua'
  no file '/etc/xdg/luakit/lfs/init.lua'
  no file 
'/usr/share/luakit/lib/lfs.lua'
  no file 
'/usr/share/luakit/lib/lfs/init.lua'
  no file './lfs.so'
  no file 
'/usr/local/lib/lua/5.1/lfs.so'
  no file '/usr/lib/lua/5.1/lfs.so'
  no file 
'/usr/local/lib/lua/5.1/loadall.so'
E: luakit: main:183: no windows spawned by rc file, exiting
servo:~ 1$

I haven't (to my knowledge) touched any of the config files in a long
time.  I have been using luakit fairly consistently, if not
frequently.

Please let me know if I can run any further tests to help debug.

jamie.

PS. I just noticed this option in the "add tags" section of reportbug
that also happens to mention the term "lfs":

 6 lfs   This bug affects support for large files (over 2 gigabytes).

I doubt they're related, but I'm just throwing it out there.

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

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

Versions of packages luakit depends on:
ii  libatk1.0-0   2.0.1-2ATK accessibility toolkit
ii  libc6 2.13-10Embedded GNU C Library: Shared lib
ii  libcairo2 1.10.2-6   The Cairo 2D vector graphics libra
ii  libfontconfig12.8.0-3generic font configuration library
ii  libfreetype6  2.4.4-2FreeType 2 font engine, shared lib
ii  libgdk-pixbuf2.0-02.23.5-2   GDK Pixbuf library
ii  libglib2.0-0  2.28.6-1   The GLib library of C routines
ii  libgtk2.0-0   2.24.4-3   The GTK+ graphical user interface 
ii  liblua5.1-0   5.1.4-5Simple, extensible, embeddable pro
ii  liblua5.1-filesystem0 1.5.0-2luafilesystem library for the Lua 
ii  libpango1.0-0 1.28.4-1   Layout and rendering of internatio
ii  libsoup2.4-1  2.34.2-1   HTTP library implementation in C -
ii  libsqlite3-0  3.7.7-2SQLite 3 shared library
ii  libunique-1.0-0   1.1.6-2Library for writing single instanc
ii  libwebkit-1.0-2   1.2.7-3Web content engine library for Gtk

luakit recommends no packages.

luakit suggests no packages.

- -- no debconf information

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

iQIcBAEBCAAGBQJOPNVjAAoJEO00zqvie6q8YygP/3rIb/KQtNtJef+p/UmsZUtY
t7RyRNfp0Nqlm8L+jUjk6Bn9Cic4gHB+KE6mqITHxP3AizI7ejhYG4NWCLCqi0wh
ZXuinz6igoYAIqmAZIr6meQVBaGLIFTcHpR8sn5VcCmQN8pFNcmYnrzSC17U0c82
KvpXYJ3GDp/5PPAKeAKWsM559YXYae54XuDO0LjQGyFvGjyHxWko4DMawZEfkMix
P6Kgm+jCkuuxGiaYPEvOTMzSbopcO3C2m5Y4iTsSAbflRn6SYC8TklqjjQUK5a9b
BTia57DkiryWAmQWh9DQc+4g2kioB4NkqJYS5tt0UxJfnlg7kUSVs60NYBr6X+Ry
z+oK5iqgkFjppwcnZNCcv1T3BUeePq9grscSsjSbyAIJPBN4pvAmZm/ANafpPQZx
iMgHuigrgaGgwIDprZN+4b1G7q9J1e45obE9IsfVNELPOl2vUZQ6Q4ZFRscmkCVp
MrZ9E10hyYUzQN2pedv0FXY4hbn0jRjU+K3NrrNn1Y1BAluhEaKa5n+dogwx1vlW
B32HkA26+BWlACIsICExqWKfQDESzZxsSCJ0fyOOFvY3CJIg1nGZhUVaF1o868dr
ZImRMmFK3u0lb4SEyXKugHF0EnHwJDBxxZhD3FVatUOYBo/V8zlGw78c/Igha2qJ
5gr+aCUxS3lv4IaR9CcC
=U2n3
-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#633461: Still needs fixing

2011-08-05 Thread Scott Kitterman
I misunderstood the bug when I was trying to replicate it.  This should still 
be fixed, but if needed, we can work around it with a quick binNMU after 2.7 is 
default in Sid.


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


Bug#630288: NMU for liferea (libnotify 0.7 transition)

2011-08-05 Thread Michael Biebl
Hi,

I've just uploaded an NMU for liferea to build against libnotify 0.7.

debdiff is attached.

Cheers,
Michael
-- 
Why is it that all of the instruments seeking intelligent life in the
universe are pointed away from Earth?
diff -Nru liferea-1.6.5/debian/changelog liferea-1.6.5/debian/changelog
--- liferea-1.6.5/debian/changelog  2011-06-25 19:37:28.0 +0200
+++ liferea-1.6.5/debian/changelog  2011-08-06 07:33:59.0 +0200
@@ -1,3 +1,12 @@
+liferea (1.6.5-1.2) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Transition to libnotiy 0.7. Closes: #630288
+- Enable libnotify0.7 patch.
+- Bump Build-Depends on libnotify-dev to (>= 0.7.0).
+
+ -- Michael Biebl   Sat, 06 Aug 2011 07:31:12 +0200
+
 liferea (1.6.5-1.1) unstable; urgency=low
 
   * Non-maintainer upload.
diff -Nru liferea-1.6.5/debian/control liferea-1.6.5/debian/control
--- liferea-1.6.5/debian/control2011-03-20 00:40:02.0 +0100
+++ liferea-1.6.5/debian/control2011-08-06 07:32:52.0 +0200
@@ -11,7 +11,7 @@
libsm-dev,
libsoup2.4-dev (>= 2.26.1),
liblua5.1-0-dev,
-   libnotify-dev,
+   libnotify-dev (>= 0.7.0),
libxml-parser-perl,
libxslt1-dev,
libsqlite3-dev (>= 3.6.10),
diff -Nru liferea-1.6.5/debian/patches/series 
liferea-1.6.5/debian/patches/series
--- liferea-1.6.5/debian/patches/series 2011-06-25 19:35:31.0 +0200
+++ liferea-1.6.5/debian/patches/series 2011-08-06 07:30:51.0 +0200
@@ -1,3 +1,4 @@
 www-browser
 debian-example-feeds
 libtool-dont-rearange-as-needed
+libnotify0.7


signature.asc
Description: OpenPGP digital signature


Bug#627711: the connect window doesn't provide list of servers

2011-08-05 Thread Theppitak Karoonboonyanan
On Sat, Aug 6, 2011 at 11:19 AM, Michael Biebl  wrote:

> Could you forward this issue upstream and get a review of the patch from the
> upstream maintainer.
> Looks like an upstream bug, so it should be fixed there.

Sure. I didn't do this before for some reasons: I was not familiar with upstream
code well enough, and latest upstream git seems to have other changes to
the code, and different patch is required. xchat-gnome has been broken in
testing for a long time (my user saw this when I distributed a customized
CD image derived from testing, so I replaced it with xchat (without -gnome)
as a workaround). So, I liked to have it fixed in testing first, and might
work upstream later as needed.

But, yes, as you request this, I can forward it upstream (probably with
different patch) soon.

Regards,
-- 
Theppitak Karoonboonyanan
http://linux.thai.net/~thep/



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



Bug#634478: anyremote: debian/control uses hardcoded list of non-Linux architectures

2011-08-05 Thread Philipp Huebner
Package: anyremote
Followup-For: Bug #634478

Thanks, will add this change with the next upload.



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



Bug#515864: please clarify -release is a special kind of list

2011-08-05 Thread Alexander Wirt
Adeodato Simó schrieb am Tuesday, den 03. March 2009:

Hi,
> > > This will be done on a best-effort basis. We tend to always CC people on
> > > -release because it's a role address list, where people who may not be
> > > subscribed send requests (unblock requests during freezes, coordination
> > > for library uploads eg. now), and we should make sure they get a copy of
> > > the answer, exactly the same way they get a copy if the mail to a
> > > private alias, or to the BTS.
> 
> > > If you set a M-F-T header, it'll be honoured by at least some of us.
> 
> > > In this case in particular, another possible way to have done it would
> > > be avoiding cross-posting altogether, send the initial message to the
> > > appropriate list (-qa), Bcc'ing -release on it.
> 
> > > Hope this makes sense to you,
> 
> > It does, and I appreciate the openness you handle your role-address with! 
> 
> > :-)
> 
> > But this is not clear from reading http://lists.debian.org/debian-release/ 
> > - 
> > so I would also appreciate if this gets clarified there.
> 
> > (e.g. I'd assume the code of conduct of lists.d.o is valid for this mailing 
> > list as well and not to send cc:s is part of this code.)
> 
> Ah, sorry for the late follow-up to this bug, but unfortunately the
> X-Debbugs-Cc in your report had a typo which prevented me from noticing
> it.
> 
> To the listmasters: I'll try to provide an updated description for this
> list at some point in the future, to ease your work.
I am currently working on some old lists.d.o bugs, could somebody please tell
me if this request is still valid - and if this is true - could provide me
with an updated description? Otherwise feel free to close this bug.

Thanks

Alex - Debian Listmaster
 



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



Bug#413831: can we get this fixed, please?

2011-08-05 Thread Alexander Wirt
Bdale Garbee schrieb am Monday, den 09. April 2007:

> I agree that we should fix this if possible, and in any case ensure that our
> documentation on the tech-ctte web page matches reality.
I'm currently wading through old bug reports and stumbled about this one. As
I am not familiar with the ctte list setup, could you please tell me how the
setup of this list should look like? So I can either adapt reality or the
descriptions?

Thanks in advance

Alex




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



Bug#237723: Please fix the gateway between debian-chinese-* lists.

2011-08-05 Thread Alexander Wirt
Andrew Lee schrieb am Wednesday, den 26. January 2005:

> Hi guys,
> 
> I am so sorry to remind this again, but this outstanding bug has been
> listed *319 days*.
> 
> Does anyone can give me some hits that how can we do for solving this
> problem?
I am currently wading through some old lists.d.o bugreports. Is this problem
still relevant? And if yes, would you care to explain what is the problem? (I
am currently don't having a clue about what the report is and how this
"gateway" should work).

Alex - Debian Listmaster




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



Bug#636092: linux-image-2.6.32-5-amd64: Debian squeeze will not boot with drives on two Sil 3132 SATA cards

2011-08-05 Thread Chuck Cox
Any ideas? I'm actually wondering now if Grub is even getting to the point of 
loading the kernel. Is there a way to enable debugging output from Grub itself?




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



Bug#635882: pbuilder: cannot create base.tgz on Sid

2011-08-05 Thread Philipp Huebner
Package: pbuilder
Version: 0.201
Followup-For: Bug #635882

I stumbled upon the same problem and tracked it down to the same result that is
already said in http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=631087#30 .

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

Kernel: Linux 3.0.0-1-amd64 (SMP w/2 CPU cores)
Locale: LANG=en_AU.UTF-8, LC_CTYPE=en_AU.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#636296: NMU for boinc (libnotify 0.7 transition)

2011-08-05 Thread Michael Biebl
Hi,

I've prepared an NMU for boinc and uploaded it to DELAYED/2.

debdiff is attached.

Cheers,
Michael
-- 
Why is it that all of the instruments seeking intelligent life in the
universe are pointed away from Earth?
diff -Nru boinc-6.12.33+dfsg/debian/changelog 
boinc-6.12.33+dfsg/debian/changelog
--- boinc-6.12.33+dfsg/debian/changelog 2011-06-20 20:47:42.0 +0200
+++ boinc-6.12.33+dfsg/debian/changelog 2011-08-06 05:58:21.0 +0200
@@ -1,3 +1,15 @@
+boinc (6.12.33+dfsg-1.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Port to libnotify 0.7. (Closes: #636296)
+- Bump Build-Depends on libnotify to (>= 0.7.0).
+- Add debian/patches/libnotify-0.7.patch.
+- Update build system to properly set gtk+-2.0 cflags/ldflags for the
+  boincmgr GUI application.
+- Update to the new libnotify 0.7 API.
+
+ -- Michael Biebl   Sat, 06 Aug 2011 05:50:23 +0200
+
 boinc (6.12.33+dfsg-1) unstable; urgency=low
 
   [Steffen]
diff -Nru boinc-6.12.33+dfsg/debian/control boinc-6.12.33+dfsg/debian/control
--- boinc-6.12.33+dfsg/debian/control   2011-06-19 16:47:28.0 +0200
+++ boinc-6.12.33+dfsg/debian/control   2011-08-06 05:49:11.0 +0200
@@ -12,7 +12,7 @@
  libtool, autoconf (>= 2.59), autotools-dev, automake1.9 (>= 1.9.3), gettext,
  docbook2x, docbook-xml, libxml2-utils,
  zlib1g-dev, libssl-dev, libcurl4-openssl-dev (>= 7.17.1),
- libsm-dev, libice-dev, libxmu-dev, libxi-dev, libx11-dev, libnotify-dev,
+ libsm-dev, libice-dev, libxmu-dev, libxi-dev, libx11-dev, libnotify-dev (>= 
0.7.0),
  freeglut3-dev, libwxgtk2.8-dev, libgtk2.0-dev,
  libsqlite3-dev, libmysqlclient-dev, python, libfcgi-dev, libjpeg62-dev,
 Homepage: http://boinc.berkeley.edu/
diff -Nru boinc-6.12.33+dfsg/debian/patches/libnotify-0.7.patch 
boinc-6.12.33+dfsg/debian/patches/libnotify-0.7.patch
--- boinc-6.12.33+dfsg/debian/patches/libnotify-0.7.patch   1970-01-01 
01:00:00.0 +0100
+++ boinc-6.12.33+dfsg/debian/patches/libnotify-0.7.patch   2011-08-06 
05:55:34.0 +0200
@@ -0,0 +1,68 @@
+Index: boinc-6.12.33+dfsg/clientgui/Makefile.am
+===
+--- boinc-6.12.33+dfsg.orig/clientgui/Makefile.am  2011-08-06 
05:52:53.953762602 +0200
 boinc-6.12.33+dfsg/clientgui/Makefile.am   2011-08-06 05:52:54.169759886 
+0200
+@@ -118,9 +118,9 @@
+   ../lib/error_numbers.h \
+   locale $(mac_headers)
+ 
+-boincmgr_CPPFLAGS = $(AM_CPPFLAGS) $(WX_CPPFLAGS) $(SQLITE3_CPPFLAGS) 
$(LIBNOTIFY_CFLAGS) $(CLIENTGUIFLAGS)
+-boincmgr_CXXFLAGS = $(AM_CXXFLAGS) $(WX_CXXFLAGS) $(SQLITE3_CPPFLAGS) 
$(LIBNOTIFY_CFLAGS) $(CLIENTGUIFLAGS)
+-boincmgr_LDADD = $(LIBBOINC) $(SQLITE3_LIBS) $(LIBNOTIFY_LIBS) 
$(CLIENTGUILIBS) $(BOINC_EXTRA_LIBS) $(CLIENTLIBS)
++boincmgr_CPPFLAGS = $(AM_CPPFLAGS) $(WX_CPPFLAGS) $(SQLITE3_CPPFLAGS) 
$(LIBNOTIFY_CFLAGS) $(CLIENTGUIFLAGS) $(GTK_CLFAGS)
++boincmgr_CXXFLAGS = $(AM_CXXFLAGS) $(WX_CXXFLAGS) $(SQLITE3_CPPFLAGS) 
$(LIBNOTIFY_CFLAGS) $(CLIENTGUIFLAGS) $(GTK_CFLAGS)
++boincmgr_LDADD = $(LIBBOINC) $(SQLITE3_LIBS) $(LIBNOTIFY_LIBS) 
$(CLIENTGUILIBS) $(BOINC_EXTRA_LIBS) $(CLIENTLIBS) $(GTK_LIBS)
+ 
+ win_config.h: $(top_srcdir)/config.h
+   grep '#define.*BOINC.*VERSION' $^ > $@
+Index: boinc-6.12.33+dfsg/configure.ac
+===
+--- boinc-6.12.33+dfsg.orig/configure.ac   2011-08-06 05:52:53.929762904 
+0200
 boinc-6.12.33+dfsg/configure.ac2011-08-06 05:55:32.043775140 +0200
+@@ -702,14 +702,12 @@
+ 
+ dnl -- libNotify --
+ if test "${enable_manager}" = yes ; then
+-  pkg_config_args=libnotify
+-  AC_PATH_PROG(PKG_CONFIG, pkg-config, no)
+-
+-  LIBNOTIFY_CFLAGS=`$PKG_CONFIG libnotify --cflags`
+-  LIBNOTIFY_LIBS=`$PKG_CONFIG libnotify --libs`
++  PKG_CHECK_MODULES(LIBNOTIFY, [libnotify >= 0.7.0])
++fi
+ 
+-  AC_SUBST(LIBNOTIFY_CFLAGS)
+-  AC_SUBST(LIBNOTIFY_LIBS)
++dnl -- GTK2 ---
++if test "${enable_manager}" = yes ; then
++  PKG_CHECK_MODULES(GTK, [gtk+-2.0])
+ fi
+ 
+ dnl -- Sqlite3 
+@@ -846,7 +844,7 @@
+],
+   [enable_wx_debug="no"])
+ 
+-CLIENTGUILIBS="${WX_LIBS} ${SQLITE3_LIBS} ${GTK_LIBS}"
++CLIENTGUILIBS="${WX_LIBS} ${SQLITE3_LIBS}"
+ 
+ if test "${enable_client_release}" = "yes" ; then
+if test "x${WX_LIBS_STATIC}" = "x" ; then
+Index: boinc-6.12.33+dfsg/clientgui/gtk/taskbarex.cpp
+===
+--- boinc-6.12.33+dfsg.orig/clientgui/gtk/taskbarex.cpp2011-08-06 
05:52:34.806003323 +0200
 boinc-6.12.33+dfsg/clientgui/gtk/taskbarex.cpp 2011-08-06 
05:52:54.173759836 +0200
+@@ -227,11 +227,10 @@
+ if (!g_pNotification)
+ {
+ g_pNotification = 
+-notify_notification_new_with_status_icon(
++notify_notification_new(
+ title

Bug#635875: lists.debian.org: Please create new mailing list debian-experimental-changes

2011-08-05 Thread Alexander Wirt
Neil McGovern schrieb am Friday, den 29. July 2011:

Hi,
> As we (the release team) are trying to improve the visibility of 
> experimental, could you please create a debian-experimental-changes 
> mailing list?
I created the list. Unfortunatly I don't have my own DAK instance for testing
the filter. I created the filters according to the other -changes
mailinglist, please tell me when DAK mails should arrive on the list so I can
check the logs.

Alex - Debian Listmaster




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



Bug#627711: the connect window doesn't provide list of servers

2011-08-05 Thread Michael Biebl
Hi,

Am 06.08.2011 06:09, schrieb Theppitak Karoonboonyanan:
> On Sat, Jul 30, 2011 at 4:41 AM, Theppitak Karoonboonyanan
>  wrote:
> 
>> I think I've found a more correct patch: the "toplevel" scrolled box
>> should be re-parented from the Glade design to the actual dialog's
>> vbox.
>>
>> With this, I also fix the dcc-dialog (file transfer) in the same manner.
> 
> Any progress on this? Is it OK for NMU?

Could you forward this issue upstream and get a review of the patch from the
upstream maintainer.
Looks like an upstream bug, so it should be fixed there.

Cheers,
Michael

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



signature.asc
Description: OpenPGP digital signature


Bug#631314: pbuilder/cowbuilder --create

2011-08-05 Thread Philipp Huebner
Package: cowbuilder
Version: 0.64
Followup-For: Bug #631314

The workaround mentioned before is not really working. The problem is that
debootstrap fails to unmout proc inside the chroot. When pbuilder tries to
mount proc it already is mounted, thus it fails. The described workaround
uses a bind mount of /proc into the changeroot - it mounts /proc over the
already mounted instance of proc.
That works for the moment, but when the bind mound is removed the other
instance of proc is still there and will go into the tgz. In my case this
is taking ages, don't know yet if it will ever succeed.

That said, the original problem is already adressed in #631087, which is
assigned to debootstrap.



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

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

Versions of packages cowbuilder depends on:
ii  cowdancer 0.64   Copy-on-write directory tree utili
ii  libc6 2.13-14Embedded GNU C Library: Shared lib
ii  pbuilder  0.201  personal package builder for Debia

cowbuilder recommends no packages.

cowbuilder 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#627711: the connect window doesn't provide list of servers

2011-08-05 Thread Theppitak Karoonboonyanan
On Sat, Jul 30, 2011 at 4:41 AM, Theppitak Karoonboonyanan
 wrote:

> I think I've found a more correct patch: the "toplevel" scrolled box
> should be re-parented from the Glade design to the actual dialog's
> vbox.
>
> With this, I also fix the dcc-dialog (file transfer) in the same manner.

Any progress on this? Is it OK for NMU?

Regards,
-- 
Theppitak Karoonboonyanan
http://linux.thai.net/~thep/



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



Bug#636816: ovsdbmonitor and openvswitch-switch: error when trying to install together

2011-08-05 Thread Ralf Treinen
Package: openvswitch-switch,ovsdbmonitor
Version: openvswitch-switch/1.2.0-1
Version: ovsdbmonitor/1.2.0-1
Severity: serious
User: trei...@debian.org
Usertags: edos-file-overwrite

Date: 2011-08-06
Architecture: amd64
Distribution: sid

Hi,

automatic installation tests of packages that share a file and at the
same time do not conflict by their package dependency relationships has
detected the following problem:


WARNING: The following packages cannot be authenticated!
  multiarch-support libdb4.8 mime-support python2.6-minimal libexpat1
  python2.6 python-minimal python python-support openssl uuid-runtime
  openvswitch-common openvswitch-switch python-openvswitch ovsdbmonitor
Authentication warning overridden.
Can not write log, openpty() failed (/dev/pts not mounted?)
Selecting previously deselected package multiarch-support.
(Reading database ... 9212 files and directories currently installed.)
Unpacking multiarch-support (from .../multiarch-support_2.13-14_amd64.deb) ...
Can not write log, openpty() failed (/dev/pts not mounted?)
Setting up multiarch-support (2.13-14) ...
Can not write log, openpty() failed (/dev/pts not mounted?)
Selecting previously deselected package libdb4.8.
(Reading database ... 9216 files and directories currently installed.)
Unpacking libdb4.8 (from .../libdb4.8_4.8.30-9_amd64.deb) ...
Selecting previously deselected package mime-support.
Unpacking mime-support (from .../mime-support_3.51-1_all.deb) ...
Selecting previously deselected package python2.6-minimal.
Unpacking python2.6-minimal (from .../python2.6-minimal_2.6.7-4_amd64.deb) ...
Selecting previously deselected package libexpat1.
Unpacking libexpat1 (from .../libexpat1_2.0.1-7_amd64.deb) ...
Selecting previously deselected package python2.6.
Unpacking python2.6 (from .../python2.6_2.6.7-4_amd64.deb) ...
Selecting previously deselected package python-minimal.
Unpacking python-minimal (from .../python-minimal_2.6.7-2_all.deb) ...
Selecting previously deselected package python.
Unpacking python (from .../python_2.6.7-2_all.deb) ...
Selecting previously deselected package python-support.
Unpacking python-support (from .../python-support_1.0.14_all.deb) ...
Selecting previously deselected package openssl.
Unpacking openssl (from .../openssl_1.0.0d-3_amd64.deb) ...
Selecting previously deselected package uuid-runtime.
Unpacking uuid-runtime (from .../uuid-runtime_2.19.1-5_amd64.deb) ...
Selecting previously deselected package openvswitch-common.
Unpacking openvswitch-common (from .../openvswitch-common_1.2.0-1_amd64.deb) ...
Selecting previously deselected package openvswitch-switch.
Unpacking openvswitch-switch (from .../openvswitch-switch_1.2.0-1_amd64.deb) ...
Selecting previously deselected package python-openvswitch.
Unpacking python-openvswitch (from .../python-openvswitch_1.2.0-1_all.deb) ...
Selecting previously deselected package ovsdbmonitor.
Unpacking ovsdbmonitor (from .../ovsdbmonitor_1.2.0-1_all.deb) ...
dpkg: error processing /var/cache/apt/archives/ovsdbmonitor_1.2.0-1_all.deb 
(--unpack):
 trying to overwrite '/usr/share/openvswitch/vswitch.ovsschema', which is also 
in package openvswitch-switch 1.2.0-1
configured to not write apport reports
Processing triggers for man-db ...
Errors were encountered while processing:
 /var/cache/apt/archives/ovsdbmonitor_1.2.0-1_all.deb
E: Sub-process /usr/bin/dpkg returned an error code (1)


This is a serious bug as it makes installation fail, and violates
sections 7.6.1 and 10.1 of the policy. An optimal solution would
consist in only one of the packages installing that file, and renaming
or removing the file in the other package. Depending on the
circumstances you might also consider Replace relations or file
diversions. If the conflicting situation cannot be resolved then, as a
last resort, the two packages have to declare a mutual
Conflict. Please take into account that Replaces, Conflicts and
diversions should only be used when packages provide different
implementations for the same functionality.

Here is a list of files that are known to be shared by both packages
(according to the Contents file for sid/amd64, which may be
slightly out of sync):

  /usr/share/openvswitch/scripts/ovs-ctl
  /usr/share/openvswitch/scripts/ovs-lib.sh
  /usr/share/openvswitch/scripts/ovs-save
  /usr/share/openvswitch/vswitch.ovsschema

This bug is assigned to both packages. If you, the maintainers of
the two packages in question, have agreed on which of the packages will
resolve the problem please reassign the bug to that package. You may
also register in the BTS that the other package is affected by the bug.

-Ralf.

PS: for more information about the detection of file overwrite errors
of this kind see http://edos.debian.net/file-overwrites/.



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



Bug#636815: ovsdbmonitor and openvswitch-common: error when trying to install together

2011-08-05 Thread Ralf Treinen
Package: openvswitch-common,ovsdbmonitor
Version: openvswitch-common/1.2.0-1
Version: ovsdbmonitor/1.2.0-1
Severity: serious
User: trei...@debian.org
Usertags: edos-file-overwrite

Date: 2011-08-06
Architecture: amd64
Distribution: sid

Hi,

automatic installation tests of packages that share a file and at the
same time do not conflict by their package dependency relationships has
detected the following problem:


WARNING: The following packages cannot be authenticated!
  multiarch-support libdb4.8 mime-support python2.6-minimal libexpat1
  python2.6 python-minimal python python-support openssl openvswitch-common
  python-openvswitch ovsdbmonitor
Authentication warning overridden.
Can not write log, openpty() failed (/dev/pts not mounted?)
Selecting previously deselected package multiarch-support.
(Reading database ... 9212 files and directories currently installed.)
Unpacking multiarch-support (from .../multiarch-support_2.13-14_amd64.deb) ...
Can not write log, openpty() failed (/dev/pts not mounted?)
Setting up multiarch-support (2.13-14) ...
Can not write log, openpty() failed (/dev/pts not mounted?)
Selecting previously deselected package libdb4.8.
(Reading database ... 9216 files and directories currently installed.)
Unpacking libdb4.8 (from .../libdb4.8_4.8.30-9_amd64.deb) ...
Selecting previously deselected package mime-support.
Unpacking mime-support (from .../mime-support_3.51-1_all.deb) ...
Selecting previously deselected package python2.6-minimal.
Unpacking python2.6-minimal (from .../python2.6-minimal_2.6.7-4_amd64.deb) ...
Selecting previously deselected package libexpat1.
Unpacking libexpat1 (from .../libexpat1_2.0.1-7_amd64.deb) ...
Selecting previously deselected package python2.6.
Unpacking python2.6 (from .../python2.6_2.6.7-4_amd64.deb) ...
Selecting previously deselected package python-minimal.
Unpacking python-minimal (from .../python-minimal_2.6.7-2_all.deb) ...
Selecting previously deselected package python.
Unpacking python (from .../python_2.6.7-2_all.deb) ...
Selecting previously deselected package python-support.
Unpacking python-support (from .../python-support_1.0.14_all.deb) ...
Selecting previously deselected package openssl.
Unpacking openssl (from .../openssl_1.0.0d-3_amd64.deb) ...
Selecting previously deselected package openvswitch-common.
Unpacking openvswitch-common (from .../openvswitch-common_1.2.0-1_amd64.deb) ...
Selecting previously deselected package python-openvswitch.
Unpacking python-openvswitch (from .../python-openvswitch_1.2.0-1_all.deb) ...
Selecting previously deselected package ovsdbmonitor.
Unpacking ovsdbmonitor (from .../ovsdbmonitor_1.2.0-1_all.deb) ...
dpkg: error processing /var/cache/apt/archives/ovsdbmonitor_1.2.0-1_all.deb 
(--unpack):
 trying to overwrite 
'/usr/share/openvswitch/scripts/ovs-bugtool-tc-class-show', which is also in 
package openvswitch-common 1.2.0-1
configured to not write apport reports
Processing triggers for man-db ...
Errors were encountered while processing:
 /var/cache/apt/archives/ovsdbmonitor_1.2.0-1_all.deb
E: Sub-process /usr/bin/dpkg returned an error code (1)


This is a serious bug as it makes installation fail, and violates
sections 7.6.1 and 10.1 of the policy. An optimal solution would
consist in only one of the packages installing that file, and renaming
or removing the file in the other package. Depending on the
circumstances you might also consider Replace relations or file
diversions. If the conflicting situation cannot be resolved then, as a
last resort, the two packages have to declare a mutual
Conflict. Please take into account that Replaces, Conflicts and
diversions should only be used when packages provide different
implementations for the same functionality.

Here is a list of files that are known to be shared by both packages
(according to the Contents file for sid/amd64, which may be
slightly out of sync):

  /usr/share/openvswitch/scripts/ovs-bugtool-tc-class-show

This bug is assigned to both packages. If you, the maintainers of
the two packages in question, have agreed on which of the packages will
resolve the problem please reassign the bug to that package. You may
also register in the BTS that the other package is affected by the bug.

-Ralf.

PS: for more information about the detection of file overwrite errors
of this kind see http://edos.debian.net/file-overwrites/.



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



Bug#611062: O: pysvn -- A(nother) Python interface to Subversion

2011-08-05 Thread Henry velez
Wojciech,

That help me a lot.

Kilian Krause checked the package and told me some issues to fix. Have you
checked the package?.
The package can be found on mentors.debian.net:
- URL: http://mentors.debian.net/debian/pool/main/p/pysvn
- Source repository: deb-src http://mentors.debian.net/debian unstable main
contrib non-free
- dget http://mentors.debian.net/debian/pool/main/p/pysvn/pysvn_1.7.5-1.dsc

But I have been very busy and now I am back to work on the package. I will
let you know about my progress.

Thank you again for helping.

Best regards.

On Fri, Aug 5, 2011 at 9:53 AM, Wojciech Szaranski  wrote:

> Henry,
>
> If you would like to adopt this package you must retitle this bug to ITA
> using "retitle" command and send it to cont...@bugs.debian.org.
>
> More about commands you can find on
> http://www.debian.org/Bugs/server-control.
>
>
> What's your progress of work on this package?
>
>


-- 
Henry Vélez


Bug#587956: Call for vote on "cleanup bindv6only"

2011-08-05 Thread Don Armstrong
On Fri, 05 Aug 2011, Andreas Barth wrote:

> * Andreas Barth (a...@not.so.argh.org) [110730 17:15]:
> > as I think after release of squeeze it is just to late to cleanup
> > bindv6only, so I intend to call for vote with the following options:
> > 
> > 1. We don't override the maintainers decision.
> > 2. Further discussion.
> 
> 
> As there was no additional option requested, I'm now calling for vote
> on these two options.

I vote 12.


Don Armstrong

-- 
I have no use for "before and after" pictures.
I can't remember starting, and I'm never done.
 -- a softer world #221
http://www.asofterworld.com/index.php?id=221

http://www.donarmstrong.com  http://rzlab.ucr.edu


signature.asc
Description: Digital signature


Bug#595106: Hello, is anyone still here ?

2011-08-05 Thread Jeff Crissman
Faenza is a beautiful icon theme, why isn't it in Debian yet ?


Bug#636814: gpart: FTBFS on !linux-any

2011-08-05 Thread Samuel Thibault
Package: gpart
Version: 0.1h-11
Severity: important
Tags: patch

Hello,

gpart currently FTBFS on !linux-any because it uses linux-specific
endian functions and does not use -ldl. The attached patch fixes hurd
and kfreebsd, both also based on glibc which provides standard endian
functions.

Samuel

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

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

-- 
Samuel Thibault 
Fatal Error: Found [MS-Windows] System -> Repartitioning Disk for Linux...
(By cbbr...@io.org, Christopher Browne)
--- debian/patches/01-conglomeration.patch.orig 2011-08-06 02:09:55.0 
+
+++ debian/patches/01-conglomeration.patch  2011-08-06 02:16:04.0 
+
@@ -121,9 +121,12 @@
 diff -Naurp gpart.orig/src/Makefile gpart/src/Makefile
 --- gpart.orig/src/Makefile2001-01-30 17:01:08.0 +
 +++ gpart/src/Makefile 2008-09-19 06:13:18.0 +
-@@ -7,6 +7,8 @@ include ../make.defs
+@@ -7,8 +7,10 @@ include ../make.defs
+ include ../make.defs
+ 
  CFLAGS+=-DVERSION=\"$(version)\"
- ifeq ($(shell uname),Linux)
+-ifeq ($(shell uname),Linux)
++ifneq ($(findstring $(shell uname),Linux GNU GNU/kFreeBSD),)
  LIBS=-ldl
 +CFLAGS += -D__USE_FILE_OFFSET64 -D__USE_LARGEFILE64
 +CFLAGS += -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64
@@ -189,7 +192,7 @@
   */
  
 +#include 
-+#include 
++#include 
 +
  #ifndef _GM_NTFS_H
  #define _GM_NTFS_H
@@ -231,13 +234,13 @@
 -#define NTFS_GETS24(p)(NTFS_GETU24(p) < 0x80 ? 
(int)NTFS_GETU24(p) :
 -
  
-+#define CPU_TO_LE16(a) __cpu_to_le16(a)
-+#define CPU_TO_LE32(a) __cpu_to_le32(a)
-+#define CPU_TO_LE64(a) __cpu_to_le64(a)
++#define CPU_TO_LE16(a) htole16(a)
++#define CPU_TO_LE32(a) htole32(a)
++#define CPU_TO_LE64(a) htole64(a)
 +
-+#define LE16_TO_CPU(a) __cpu_to_le16(a)
-+#define LE32_TO_CPU(a) __cpu_to_le32(a)
-+#define LE64_TO_CPU(a) __cpu_to_le64(a)
++#define LE16_TO_CPU(a) le16toh(a)
++#define LE32_TO_CPU(a) le32toh(a)
++#define LE64_TO_CPU(a) le64toh(a)
 +
 +/* Macros reading unsigned integers */
 +#define NTFS_GETU8(p)  (*(ntfs_u8*)(p))


Bug#636813: gtick: FTBFS on !linux-any

2011-08-05 Thread Samuel Thibault
Package: gtick
Version: 0.4.2-2
Severity: important
Tags: patch

Hello,

gtick currently FTBFS on !linux-any because it includes
linux/soundcard.h. The attached patch fixes this by including
sys/soundcard.h instead, which is also available on Linux and does the
same thing.

Samuel

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

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

-- 
Samuel Thibault 
 cool, j'ai un rapport a rendre pour le 31 decembre a minuit...
 -+- #ens-mim - bonne année ! -+-
--- src/dsp.c.orig  2011-08-06 01:41:51.0 +
+++ src/dsp.c   2011-08-06 01:41:53.0 +
@@ -41,11 +41,7 @@
 #endif
 
 /* OSS headers */
-#if defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
 #include 
-#else
-#include 
-#endif
 
 /* GTK+ headers */
 #include 


Bug#636787: NMU for transmission

2011-08-05 Thread Michael Biebl
Hi,

I've uploaded an NMU for transmission to fix this FTBFS as part of the ongoing
libnotify transmission.

Please find the debdiff attached.

Cheers,
Michael
-- 
Why is it that all of the instruments seeking intelligent life in the
universe are pointed away from Earth?
diff -Nru transmission-2.03/debian/changelog transmission-2.03/debian/changelog
--- transmission-2.03/debian/changelog	2011-08-02 19:33:38.0 +0200
+++ transmission-2.03/debian/changelog	2011-08-06 03:29:26.0 +0200
@@ -1,3 +1,12 @@
+transmission (2.03-2.2) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Change Build-Depends on libcurl4-dev | libcurl-dev to libcurl4-gnutls-dev
+as libcurl4-dev and libcurl-dev are both virtual and provided by multiple
+packages. (Closes: #636787)
+
+ -- Michael Biebl   Sat, 06 Aug 2011 03:22:36 +0200
+
 transmission (2.03-2.1) unstable; urgency=low
 
   * Non-maintainer upload.
diff -Nru transmission-2.03/debian/control transmission-2.03/debian/control
--- transmission-2.03/debian/control	2011-08-02 19:19:26.0 +0200
+++ transmission-2.03/debian/control	2011-08-06 03:27:00.0 +0200
@@ -4,9 +4,9 @@
 Maintainer: Leo Costela 
 Uploaders: Philipp Benner 
 DM-Upload-Allowed: yes
-Build-Depends: debhelper (>= 7), autotools-dev, libgtk2.0-dev, libevent-dev 
- (>= 1.4), libglib2.0-dev, libnotify-dev (>= 0.7), libssl-dev, libcurl4-dev | 
- libcurl-dev, chrpath, intltool (>= 0.40), qt4-qmake, libqt4-dev, zlib1g-dev
+Build-Depends: debhelper (>= 7), autotools-dev, libgtk2.0-dev, libevent-dev
+ (>= 1.4), libglib2.0-dev, libnotify-dev (>= 0.7), libssl-dev, libcurl4-gnutls-dev,
+ chrpath, intltool (>= 0.40), qt4-qmake, libqt4-dev, zlib1g-dev
 # libcanberra-gtk-dev, libgconf2-dev
 Standards-Version: 3.9.0
 Vcs-Browser: http://svn.debian.org/wsvn/collab-maint/deb-maint/transmission/


signature.asc
Description: OpenPGP digital signature


Bug#636812: debian-installer: wrong keyboard layout for Serbian language

2011-08-05 Thread Karolina Kalic
Package: debian-installer
Severity: normal
Tags: l10n d-i

In the installation step "Select a keyboard layout" there is an option for
Serbian (Cyrillic) layout, but after the installation you end up with Serbian
(Latin) layout as default. Serbian (Cyrillic) should be changed to Serbian
(Latin) because there is no hardware layout with Cyrillic letters with Serbian
alphabet, at least not that I know. The other reason for Latin keyboard layout
is that if you install only base system, without graphical environment,
Cyrillic layout is mostly useless.

Thanks,
Karolina



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

Kernel: Linux 2.6.39-2-amd64 (SMP w/2 CPU cores)
Locale: LANG=en_US.utf8, LC_CTYPE=sr_RS.UTF-8@latin (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#636292: MD5Sum mismatch is due to multiple DNS queries!

2011-08-05 Thread jidanni
> "H" == Henrique de Moraes Holschuh  writes:
H> Maybe using rsync or ftp can help, if it enforces the "get everything
H> using the same connection" that http might or might not allow apt to do.
H> But that does NOT scale well at the mirror server side, at all.

Well whatever you do, remember a+b+c+a+b+c=a+a+b+b+c+c, so please be
sure no round robin switching is occurring when it shouldn't. No matter
during user operations or mirror operations. In the big picture the load all
evens out anyway, so no savings are had, and instead errors are introduced.



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



Bug#636231: Does set_period_size() really need to be called from driver_initalise()?

2011-08-05 Thread Steven McDonald
Hi again,

I've tried compiling jackd1 after simply removing the call to
set_period_size() that causes the segfault, rather than modifying
set_period_size() so that it works if driver->engine hasn't been
initialised. For clarity, I did this (with my previous patch NOT
applied):

--- a/drivers/oss/oss_driver.c
+++ b/drivers/oss/oss_driver.c
@@ -1241,8 +1241,6 @@
driver->sys_in_latency = in_latency;
driver->sys_out_latency = out_latency;

-   set_period_size(driver, period_size);
-   
driver->finish = driver_finish;

if (driver->indev == NULL)

jackd1 still starts without any problems and audio playback is fine. I
haven't tested recording, but I would expect that this logic would have
the same effect (i.e., none) on recording as on playback.

The reported buffer size is still doubled as a result of doubling the
period size:

---
$ /usr/bin/jackd -r -doss -r176400 -p1024 -n2 -w16 -i0
jackd 0.121.0
Copyright 2001-2009 Paul Davis, Stephane Letz, Jack O'Quinn, Torben
Hohn and others.
jackd comes with ABSOLUTELY NO WARRANTY
This is free software, and you are welcome to redistribute it
under certain conditions; see the file COPYING for details

JACK compiled with System V SHM support.
loading driver ..
oss_driver: /dev/dsp : 0x10/2/176400 (4096)
oss_driver: indevbuf 0 B, outdevbuf 4096 B
oss_driver: using barrier mode, (dual thread)
---
$ /usr/bin/jackd -r -doss -r176400 -p2048 -n2 -w16 -i0
jackd 0.121.0
Copyright 2001-2009 Paul Davis, Stephane Letz, Jack O'Quinn, Torben
Hohn and others.
jackd comes with ABSOLUTELY NO WARRANTY
This is free software, and you are welcome to redistribute it
under certain conditions; see the file COPYING for details

JACK compiled with System V SHM support.
loading driver ..
oss_driver: /dev/dsp : 0x10/2/176400 (8192)
oss_driver: indevbuf 0 B, outdevbuf 8192 B
oss_driver: using barrier mode, (dual thread)
---

In fact, reading through oss_driver.c, the set_period_size() function
seems to be mostly a reimplementation of logic that is provided
elsewhere in the driver. Furthermore, if I remove this call to
set_period_size() and then explicitly set driver->engine to NULL in
set_period_size() before using it, I don't get a segfault. The OSS
driver seems to be working without needing to call set_period_size()
from *anywhere*. (There is one other function which calls it, which
seems to only be invoked if one changes the period size during
operation.)

Can anyone more knowledgeable comment on whether it is necessary to
call set_period_size() here, and if not can we simply use the trivial
patch above instead of the original fix I submitted?

Thanks,
Steven.



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



Bug#636811: xboing: FTBFS on !linux-any

2011-08-05 Thread Samuel Thibault
Package: xboing
Version: 2.4-31
Severity: important
Tags: patch

Hello,

xboing currently FTBFS on !linux-any, because it includes
linux/soundcard.h. The attached patch fixes it by including
sys/soundcard.h instead (which is also available on Linux and does the
same thing).

Samuel

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

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

-- 
Samuel Thibault 
"I once witnessed a long-winded, month-long flamewar over the use of
mice vs. trackballs...It was very silly."
(By Matt Welsh)
--- debian/patches/010_initial_patches.diff.orig2011-08-06 
01:43:29.0 +
+++ debian/patches/010_initial_patches.diff 2011-08-06 01:43:32.0 
+
@@ -21,7 +21,7 @@
 +#include 
 +#include 
 +#include 
-+#include 
++#include 
 +#include 
 +#include 
 +


Bug#636810: logcheck: Should concatenate pattern files before execution

2011-08-05 Thread Witold Baryluk
Package: logcheck
Version: 1.3.13
Severity: normal

Hi!

I have logcheck running and running, for very long time now.
This is mostly because I have very big logfiles currently
due bug in one of deamons. It take so long that
it take few hours to process (and logcheck is started every 2 hours,
no enough to process this). I often need to killall -9 -u logcheck,
as it starts to be eating lots of CPU and making my laptop really hot. :/

So, I looked why actually it take so long for logcheck
and ways of improving.

One of things I immediately see, was that in top I see things
like this:


 egrep --text -v -f /tmp/logcheck.SVwK21/ignore/dovecot
/tmp/logcheck.SVwK21/checked


In this particular moment it runs (already for 10 minutes) negative matching
using grep -E, with preprocessed dovecot pattern files
(probably removing empty lines and lines beging with # - comments - I guess).
On a file /tmp/logcheck.SVwK21/checked, and this files have about 310k lines
and 61MB.

Immediately I asked myself, why logcheck doesn't actually create one pattern
file
from all files in ignore.d, and pass it to egrep ? (Similar for positive
matches).

So, finding no excuse I filling this report.

Merging all pattern files (both for positive and negative match passes), will
greatly
improve performance by doing only single pass over log file. It will also
in principle allow egrep to optimize regular expressions better (because
there is lots of commonality beetwen patterns), make it even
slightly faster overally.

Please implement it, it is very simple change. Do not have particular
benchmark numbers, but if you want I can perform some.

Thanks.




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

Kernel: Linux 3.0.0-t43-prod-03124-g81d6743-dirty
Locale: LANG=pl_PL.utf8, LC_CTYPE=pl_PL.utf8 (charmap=UTF-8) (ignored: LC_ALL 
set to pl_PL.utf8)
Shell: /bin/sh linked to /bin/dash

Versions of packages logcheck depends on:
ii  adduser   3.113  add and remove users and groups
ii  cron  3.0pl1-118 process scheduling daemon
ii  exim4-daemon-light [mail-tran 4.76-2 lightweight Exim MTA (v4) daemon
ii  lockfile-progs0.1.15 Programs for locking and unlocking
ii  logtail   1.3.13 Print log file lines that have not
ii  mime-construct1.11   construct/send MIME messages from 
ii  rsyslog [system-log-daemon]   5.8.3-1reliable system and kernel logging

Versions of packages logcheck recommends:
ii  logcheck-database 1.3.13 database of system log rules for t

Versions of packages logcheck suggests:
ii  syslog-summary1.14-2 summarize the contents of a syslog

-- Configuration Files:
/etc/cron.d/logcheck changed [not included]
/etc/logcheck/logcheck.conf [Errno 13] Brak dostępu: 
u'/etc/logcheck/logcheck.conf'
/etc/logcheck/logcheck.logfiles [Errno 13] Brak dostępu: 
u'/etc/logcheck/logcheck.logfiles'

-- 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#636809: siggen: FTBFS on !linux-any

2011-08-05 Thread Samuel Thibault
Package: siggen
Version: 2.3.10-2
Severity: important
Tags: patch

Hello,

siggen currently FTBFS on !linux-any because it includes
linux/soundcard.h. The attached patch fixes this by including
sys/soundcard.h instead (which is also available on Linux).

Samuel

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

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

-- 
Samuel Thibault 
> Allez, soyez sympa ... traduisez-lui "linux"
Linux, c'est comme le miel : c'est vachement bon mais ça attire les
mouches. En plus, ça colle aux doigts et on a du mal à s'en défaire.
-+- TP in: Guide du linuxien pervers - "Barrez vous les mouches !"
--- soundinfo.c.orig2011-08-06 01:36:41.0 +
+++ soundinfo.c 2011-08-06 01:36:43.0 +
@@ -79,11 +79,7 @@
 #include 
 #include 
 #include 
-#ifdef __FreeBSD__
 #include 
-#else
-#include 
-#endif
 
 /***DEFINES***/
 /* defines
--- mixer.h.orig2011-08-06 01:36:49.0 +
+++ mixer.h 2011-08-06 01:36:52.0 +
@@ -26,11 +26,7 @@
 #ifndef _mixer__h
 #define _mixer__h
 
-#ifdef __FreeBSD__
 #include 
-#else
-#include 
-#endif
 
 /* Define some functions.
  */


Bug#636292: MD5Sum mismatch is due to multiple DNS queries!

2011-08-05 Thread jidanni
> $ wget a b && mv a b staging_area
With a and b and staging_area all being on the same disk partition, for
almost an atomic operation...
OK this is probably not the culprit today, but it is just good practice.



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



Bug#636292: MD5Sum mismatch is due to multiple DNS queries!

2011-08-05 Thread jidanni
> "KR" == Kurt Roeckx  writes:
KR> - There is always a delay between updating the Release file and
KR>   the Packages and Sources file, and the error should go away
KR>   after a short time.

NOT acceptable.
I hope on the mirrors they are not doing something like
$ cd staging_area && wget a b
when they should be doing
$ wget a b && mv a b staging_area



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



Bug#636808: xsoldier: FTBFS on !linux-any

2011-08-05 Thread Samuel Thibault
Package: xsoldier
Version: 1:1.5-2
Severity: normal

Hello,

xsoldier currently FTBFS on !linux-any because of the use of joystick.
Since README even says that support for it is not maintained, it should
be made optional so that it can be disabled on non-Linux ports.

Samuel

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

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

-- 
Samuel Thibault 
"...[Linux's] capacity to talk via any medium except smoke signals."
(By Dr. Greg Wettstein, Roger Maris Cancer Center)



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



Bug#636807: upstream releases xxxterm 1.479 release

2011-08-05 Thread shirish शिरीष
Package: xxxterm
Version: 1.471-1
Severity: wishlist

*** Please type your report below this line ***
Hi all,
upstream released xxxterm 1.479 . Here's the short changelog :-

* fix spurious "Start TLS failed" messages
* make certificate retrievals use a thread for better browser responsiveness
* fix gtk warnings when tab was disabled
* plug a file descriptor leak

As always one can find the upstream release at
http://opensource.conformal.com/snapshots/xxxterm/xxxterm-1.479.tgz

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

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

Versions of packages xxxterm depends on:
ii  libatk1.0-0   2.0.1-2ATK accessibility toolkit
ii  libbsd0   0.3.0-1utility functions from BSD systems
ii  libc6 2.13-14Embedded GNU C Library: Shared lib
ii  libcairo2 1.10.2-6.1 The Cairo 2D vector graphics libra
ii  libfontconfig12.8.0-3generic font configuration library
ii  libfreetype6  2.4.6-1FreeType 2 font engine, shared lib
ii  libgdk-pixbuf2.0-02.23.5-3   GDK Pixbuf library
ii  libglib2.0-0  2.28.6-1   The GLib library of C routines
ii  libgnutls26   2.10.5-3   the GNU TLS library - runtime libr
ii  libgtk2.0-0   2.24.5-4   GTK+ graphical user interface libr
ii  libpango1.0-0 1.28.4-2   Layout and rendering of internatio
ii  libsoup2.4-1  2.34.3-1   HTTP library implementation in C -
ii  libwebkitgtk-1.0-01.4.2-2Web content engine library for GTK

xxxterm recommends no packages.

xxxterm suggests no packages.

-- no debconf information

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



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



Bug#614509: Please integrate this package asap

2011-08-05 Thread Neil Mayhew
The current version of viewvc, 1.1.5, is now quite outdated and has some 
significant bugs. In particular, bug #636805 is quite severe and was 
making viewvc unusable on my server until I discovered the workaround.


John, thanks for doing the work to get 1.1.19 packaged.




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



Bug#621015: Capt. Tom Williams

2011-08-05 Thread US MARINE


I am in the military unit here in Ba'qubah in 
Iraq, we have some 
amount of funds that we want to move out of 
the country. My 
partners 
and I need a good partner some one we can 
trust. It is risk free 
and 
legal. You will be entitled to 30% of the deal. 
Please do respond if 
you 
are interested. Sincerely Capt. Tom Williams



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



Bug#594592: emacs23: Segmentation fault in getenv.c from /usr/lib/libgtk-x11-2.0.so.0 / dcigettext.c

2011-08-05 Thread Vincent Lefevre
On 2011-05-20 10:35:32 +0200, Vincent Lefevre wrote:
> Emacs 23.3+1-1 has crashed for the first time. It was started
> via svn (and a wrapper) to write a log message. As usual, it
> crashed immediately.

I've got another crash when starting emacs manually. On this machine,
this is Debian's emacs from the emacs23 package. Note that on another
machine, where I rebuilt upstream Emacs 23.3.1 on May 20 and use it
very often, I didn't have a single crash.

Core was generated by `emacs credits'.
Program terminated with signal 11, Segmentation fault.
#0  0x7f8c830116e7 in kill () at ../sysdeps/unix/syscall-template.S:82
82  ../sysdeps/unix/syscall-template.S: No such file or directory.
in ../sysdeps/unix/syscall-template.S
(gdb) bt full
#0  0x7f8c830116e7 in kill () at ../sysdeps/unix/syscall-template.S:82
No locals.
#1  0x004e4a5f in ?? ()
No symbol table info available.
#2  
No symbol table info available.
#3  getenv (name=0x7f8c831242d7 "NGUAGE") at getenv.c:84
len = 6
ep = 0x7fffd7122240
name_start = 16716
#4  0x7f8c8300c37e in guess_category_value (
domainname=0x7f8c88b07636 "gtk20-properties", 
msgid1=, msgid2=, 
plural=, n=, 
category=) at dcigettext.c:1359
No locals.
#5  __dcigettext (domainname=0x7f8c88b07636 "gtk20-properties", 
msgid1=, msgid2=, 
plural=, n=, 
category=) at dcigettext.c:575
domain = 
binding = 0xc92c80
categoryname = 0x7f8c83110733 "LC_MESSAGES"
categoryvalue = 
dirname = 0x2 
single_locale = 
retval = 
retlen = 
saved_errno = 11
search = {domainname = 0x7f8c88b07636 "gtk20-properties", 
  category = 5, localename = 0x7fffd71218a0 "C", 
  counter = -2044361011, domain = 0x0, 
  translation = 0x7f8c86286d41 
"H\211\303H\205\333\017\205\266\376\377\377H\203=3\326(", translation_length = 
13739424, msgid = {
appended = 0x7fffd7121940 "6v\260\210\214\177", 
ptr = 0x7f8c88b0b0c0 "Horizontal position of child in available 
space. 0.0 is left aligned, 1.0 is right aligned"}}
foundp = 
localename = 
tree_lock = {__data = {__lock = 0, __nr_readers = 0, 
__readers_wakeup = 0, __writer_wakeup = 0, 
__nr_readers_queued = 0, __nr_writers_queued = 0, __writer = 0, 
__shared = 0, __pad1 = 0, __pad2 = 0, __flags = 0}, 
  __size = '\000' , __align = 0}
#6  0x7f8c888b6a7a in gtk_alignment_class_init (klass=0x291f840)
at 
/build/buildd-gtk+2.0_2.24.5-4-amd64-yD32V5/gtk+2.0-2.24.5/gtk/gtkalignment.c:106
gobject_class = 0x291f840
widget_class = 0x291f840
#7  gtk_alignment_class_intern_init (klass=0x291f840)
at 
/build/buildd-gtk+2.0_2.24.5-4-amd64-yD32V5/gtk+2.0-2.24.5/gtk/gtkalignment.c:89
No locals.
#8  0x7f8c86b559e5 in type_class_init_Wm (type=)
at /tmp/buildd/glib2.0-2.28.6/./gobject/gtype.c:2216
slist = 
init_slist = 
i = 2
class = 0x291f840
entries = 
entry = 
bnode = 
pnode = 0x15
#9  g_type_class_ref (type=)
at /tmp/buildd/glib2.0-2.28.6/./gobject/gtype.c:2916
ptype = 
holds_ref = 
pclass = 0xbab1c0
#10 0x7f8c86b3959e in g_object_newv (object_type=44273920, n_parameters=0, 
parameters=0x0) at /tmp/buildd/glib2.0-2.28.6/./gobject/gobject.c:1384
cparams = 0x0
oparams = 
nqueue = 0x0
object = 
class = 0x0
unref_class = 0x0
slist = 
n_total_cparams = 0
n_cparams = 0
n_oparams = 0
n_cvalues = 
cvalues = 
clist = 0x0
newly_constructed = 
i = 
__PRETTY_FUNCTION__ = "g_object_newv"
#11 0x7f8c86b39e1c in g_object_new (object_type=44273920, 
first_property_name=0x0)
at /tmp/buildd/glib2.0-2.28.6/./gobject/gobject.c:1308
var_args = {{gp_offset = 0, fp_offset = 0, 
overflow_arg_area = 0x7f8c86292b5d, reg_save_area = 0x2a39100}}
__PRETTY_FUNCTION__ = "g_object_new"
#12 0x7f8c888b72fc in IA__gtk_alignment_new (xalign=, 
yalign=, xscale=, 
yscale=)
at 
/build/buildd-gtk+2.0_2.24.5-4-amd64-yD32V5/gtk+2.0-2.24.5/gtk/gtkalignment.c:263
alignment = 0xab4f48
#13 0x7f8c88a49a7e in gtk_tooltip_init (tooltip=0x274c6f0)
at 
/build/buildd-gtk+2.0_2.24.5-4-amd64-yD32V5/gtk+2.0-2.24.5/gtk/gtktooltip.c:140
No locals.
#14 0x7f8c86b58443 in g_type_create_instance (type=)
at /tmp/buildd/glib2.0-2.28.6/./gobject/gtype.c:1889
node = 0xe0e9e0
instance = 0x274c6f0
class = 
i = 
total_size = 
#15 0x7f8c86b35dfc in g_object_constructor (type=, 
n_construct_properties=0, construct_params=0x0)
at /tmp/buildd/glib2.0-2.28.6/./gobject/gobject.c:1615
object = 
#16 0x7f8c86b39121 in g_object_newv (object_type=14739936, n_parameters=0, 
parameters=0x0) at /tmp/bu

Bug#636806: Please put tcpdump 4.2.0 in experimental

2011-08-05 Thread Juliusz Chroboczek
Package: tcpdump
Version: 4.1.1-2+b1
Severity: wishlist

Hi Romain,

A 4.2.0 beta is available from the tcpdump website.  It would be very
helpful for me if you could put it in experimental.

Thanks,

-- Juliusz



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



Bug#636805: viewvc runs extremely slowly (~15s per page)

2011-08-05 Thread Neil Mayhew
Package: viewvc
Version: 1.1.5-1.1
Severity: important


As reported in the upstream bug tracker (#467) viewvc sends the wrong content 
length
when compression is enabled, causing browsers to hang until a timeout is reached
(typically 15s). This is fixed upstream in svn (r2471) and was merged into 
version
1.1.8. See http://viewvc.tigris.org/issues/show_bug.cgi?id=467

This bug makes viewvc virtually unusable, so please merge this fix into stable.
I'm attaching a patch based on svn change 2471 but massaged for 1.1.5.

For unstable, use the packaged 1.1.9 offered in bug #614509.

A workaround is to ensure allow_compress = 0 in the configuration.

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

Kernel: Linux 2.6.32-5-686 (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 viewvc depends on:
ii  cvs 1:1.12.13-12 Concurrent Versions System
ii  python  2.6.6-3+squeeze6 interactive high-level object-orie
ii  python-subversion   1.6.12dfsg-6 Python bindings for Subversion
ii  python-support  1.0.10   automated rebuilding support for P
ii  rcs 5.7-25   The GNU Revision Control System
ii  subversion  1.6.12dfsg-6 Advanced version control system

Versions of packages viewvc recommends:
ii  apache22.2.16-6+squeeze1 Apache HTTP Server metapackage
ii  apache2-mpm-prefork [h 2.2.16-6+squeeze1 Apache HTTP Server - traditional n
pn  python-pygments(no description available)

Versions of packages viewvc suggests:
pn  cvsgraph   (no description available)
pn  libapache2-mod-python  (no description available)
ii  mime-support  3.48-1 MIME files 'mime.types' & 'mailcap
pn  python-tk  (no description available)
pn  viewvc-query   (no description available)

-- Configuration Files:
/etc/viewvc/viewvc.conf changed [not included]

-- debconf information excluded



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



Bug#636804: aewm++: Broken link to homepage

2011-08-05 Thread Luis Henriques
Package: aewm++
Severity: important

It looks like the link to the project homepage is broken:

http://code.google.com/p/aewmpp

And I was not able to actually find a new one.  Is the upstream project dead?

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

Kernel: Linux 3.0.0 (SMP w/2 CPU cores; PREEMPT)
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.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#632881: Cannot reproduce

2011-08-05 Thread Christoph Haas
Sorry, I cannot reproduce this issue in version 1.8.5. If the current
package still has this problem then please add to this bug report a
complete protocol of what you did in the shell and I'll try that. Thank you.

 Christoph



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



Bug#636803: zabbix: Update config file templates

2011-08-05 Thread Christoph Haas
Package: zabbix
Severity: normal

This is merely a "note to self". The configuration file templates are
outdated and do not reflect the configuration options available in
recent 1.8.x versions.

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

Kernel: Linux 2.6.39-2-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#626224: (no subject)

2011-08-05 Thread Christophe TROESTLER
Here is my log (produced with “xfce4-power-manager --no-daemon --debu 
g > xfpm.log”) across a suspend.


Hope it will help.
** (xfce4-power-manager:7346): DEBUG: executed 
/usr/sbin/xfpm-power-backlight-helper --get-max-brightness; retval: 0
** (xfce4-power-manager:7346): DEBUG: xfpm_brightness_setup_helper: 
get-max-brightness returned 15
** (xfce4-power-manager:7346): DEBUG: xrandr not available, 
brightness controlled by sysfs helper; min_level=0 max_level=15
** (xfce4-power-manager:7346): DEBUG: executed 
/usr/sbin/xfpm-power-backlight-helper --get-brightness; retval: 0
** (xfce4-power-manager:7346): DEBUG: 
xfpm_brightness_helper_get_level: get-brightness returned 12

TRACE[xfpm-main.c:200] xfpm_start(): Starting the power manager
TRACE[xfpm-xfconf.c:156] xfpm_xfconf_load(): Using default 
configuration for lock-screen-suspend-hibernate
TRACE[xfpm-xfconf.c:156] xfpm_xfconf_load(): Using default 
configuration for power-save-on-battery
TRACE[xfpm-xfconf.c:156] xfpm_xfconf_load(): Using default 
configuration for show-brightness-popup
TRACE[xfpm-xfconf.c:156] xfpm_xfconf_load(): Using default 
configuration for hibernate-button-action
TRACE[xfpm-xfconf.c:156] xfpm_xfconf_load(): Using default 
configuration for brightness-level-on-ac
TRACE[xfpm-xfconf.c:156] xfpm_xfconf_load(): Using default 
configuration for dpms-on-ac-sleep
TRACE[xfpm-xfconf.c:156] xfpm_xfconf_load(): Using default 
configuration for dpms-on-ac-off
TRACE[xfpm-xfconf.c:156] xfpm_xfconf_load(): Using default 
configuration for dpms-sleep-mode
TRACE[xfpm-xfconf.c:156] xfpm_xfconf_load(): Using default 
configuration for inactivity-sleep-mode
TRACE[xfpm-xfconf.c:156] xfpm_xfconf_load(): Using default 
configuration for spin-down-on-ac
TRACE[xfpm-xfconf.c:156] xfpm_xfconf_load(): Using default 
configuration for spin-down-on-ac-timeout
TRACE[xfpm-xfconf.c:156] xfpm_xfconf_load(): Using default 
configuration for spin-down-on-battery-timeout
TRACE[xfpm-power.c:1053] xfpm_power_get_power_devices(): Power device 
detected at : /org/freedesktop/UPower/devices/line_power_AC
TRACE[xfpm-power.c:1053] xfpm_power_get_power_devices(): Power device 
detected at : /org/freedesktop/UPower/devices/battery_BAT0
TRACE[xfpm-power.c:1011] xfpm_power_add_device(): Battery device 
detected at : /org/freedesktop/UPower/devices/battery_BAT0: 
((XfpmDeviceType) XFPM_DEVICE_TYPE_BATTERY)
TRACE[xfpm-button.c:179] xfpm_button_xevent_key(): Grabbed key 124 : 
((XfpmButtonKey) BUTTON_POWER_OFF)
TRACE[xfpm-button.c:179] xfpm_button_xevent_key(): Grabbed key 213 : 
((XfpmButtonKey) BUTTON_HIBERNATE)
TRACE[xfpm-button.c:179] xfpm_button_xevent_key(): Grabbed key 150 : 
((XfpmButtonKey) BUTTON_SLEEP)
TRACE[xfpm-button.c:179] xfpm_button_xevent_key(): Grabbed key 233 : 
((XfpmButtonKey) BUTTON_MON_BRIGHTNESS_UP)
TRACE[xfpm-button.c:179] xfpm_button_xevent_key(): Grabbed key 232 : 
((XfpmButtonKey) BUTTON_MON_BRIGHTNESS_DOWN)
TRACE[xfpm-button.c:179] xfpm_button_xevent_key(): Grabbed key 244 : 
((XfpmButtonKey) BUTTON_BATTERY)
TRACE[xfpm-battery.c:148] xfpm_battery_refresh_visible(): 
visible=TRUE: ((XfpmShowIcon) 
SHOW_ICON_WHEN_BATTERY_CHARGING_DISCHARGING)

TRACE[xfpm-battery.c:284] xfpm_battery_refresh_icon(): Battery state 1
TRACE[xfpm-power.c:1152] xfpm_power_refresh_adaptor_visible(): Tray 
icon configuration: : ((XfpmShowIcon) 
SHOW_ICON_WHEN_BATTERY_CHARGING_DISCHARGING)
TRACE[xfpm-power.c:1117] xfpm_power_hide_adapter_icon(): Hide adaptor 
icon
TRACE[xfpm-polkit.c:369] xfpm_polkit_init_data(): Using unix session 
polkit subject
TRACE[xfpm-polkit.c:456] xfpm_polkit_check_auth_intern(): 
Action=org.freedesktop.upower.suspend is authorized=TRUE
TRACE[xfpm-polkit.c:456] xfpm_polkit_check_auth_intern(): 
Action=org.freedesktop.upower.hibernate is authorized=TRUE
TRACE[xfpm-power.c:1152] xfpm_power_refresh_adaptor_visible(): Tray 
icon configuration: : ((XfpmShowIcon) 
SHOW_ICON_WHEN_BATTERY_CHARGING_DISCHARGING)
TRACE[xfpm-power.c:1117] xfpm_power_hide_adapter_icon(): Hide adaptor 
icon
TRACE[xfpm-polkit.c:456] xfpm_polkit_check_auth_intern(): 
Action=org.freedesktop.udisks.drive-set-spindown is authorized=TRUE
TRACE[xfpm-disks.c:170] xfpm_disks_get_is_auth_to_spin(): Is auth to 
spin down disks : 1
TRACE[xfpm-disks.c:147] xfpm_disks_set_spin_timeouts(): On Battery=0 
spin_down_enabled=0 timeout=800


TRACE[xfpm-backlight.c:318] 
xfpm_backlight_brightness_on_ac_settings_changed(): Alarm on ac 
timeout changed 9
TRACE[xfpm-backlight.c:339] 
xfpm_backlight_brightness_on_battery_settings_changed(): Alarm on 
battery timeout changed 50
TRACE[xfpm-dpms.c:74] xfpm_dpms_set_timeouts(): Settings dpms: 
standby=600 suspend=0 off=900


TRACE[xfpm-battery.c:284] xfpm_battery_refresh_icon(): Battery state 1
TRACE[xfpm-battery.c:284] xfpm_battery_refresh_icon(): Battery state 1
TRACE[xfpm-polkit.c:239] xfpm_polkit_free_data(): Destroying Polkit 
data

TRACE[xfpm-battery.c:284] xfpm_battery_refresh_icon(): Battery state 1
TRACE[xfpm-battery.c:284] xfpm_battery_refresh_icon(): Bat

Bug#602804: Templates?

2011-08-05 Thread Christoph Haas
I just tried to reproduce it but can't. What I wonder is that you see an
actual monitored host in the dropdown when you instead clicked on a
template. Could it be that you accidentally put a host in your Templates
group or vice versa?

 Christoph



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



Bug#636802: Lazarus FTBFS on armel, sparc and powerpc with link failures of lazbuild

2011-08-05 Thread peter green

Package: lazarus
Version: 0.9.30-3
Severity: serious

/usr/bin/ppcppc -gl -dlclnogui -Fu../lcl/units/powerpc-linux 
-Fu../lcl/units/powerpc-linux/nogui 
-Fu../components/codetools/units/powerpc-linux 
-Fu../components/synedit/units/powerpc-linux 
-Fu../components/lazcontrols/lib/powerpc-linux -Fu../components/custom 
-Fu../components/mpaslex -Fu../ideintf/units/powerpc-linux -Fu../designer 
-Fu../debugger -Fu../debugger/frames -Fu../converter -Fu../packager 
-Fu../packager/frames -Fu../packager/units/powerpc-linux 
-Fu../units/powerpc-linux -Fuframes -Fu. -Fu/usr/share/fpcsrc/2.4.4/rtl 
-Fu/usr/share/fpcsrc/2.4.4/packages/regexpr -Fiinclude -Fiinclude/linux 
-Fi../images -FE.. -FU../units/powerpc-linux 
-Fl/usr/lib/powerpc-linux-gnu/gcc/powerpc-linux-gnu/4.6.1 -Flinclude 
-Fl/etc/ld.so.conf.d/*.conf -dpowerpc lazbuild.lpr
Free Pascal Compiler version 2.4.4-2 [2011/07/11] for powerpc
Copyright (c) 1993-2010 by Florian Klaempfl
Target OS: Linux for PowerPC
Compiling lazbuild.lpr
Assembling lazbuild
Compiling resource ../units/powerpc-linux/lazbuild.or
Linking ../lazbuild
/usr/bin/ld: warning: ../link.res contains output sections; did you forget -T?
/usr/lib/powerpc-linux-gnu/libc_nonshared.a(elf-init.oS): In function 
`__libc_csu_init':
(.text+0x54): undefined reference to `_init'
lazbuild.lpr(1278) Error: Error while linking
lazbuild.lpr(1278) Fatal: There were 1 errors compiling module, stopping
Fatal: Compilation aborted
make[3]: *** [lazbuild] Error 1

/usr/bin/ppcsparc -gl -dlclnogui -Fu../lcl/units/sparc-linux 
-Fu../lcl/units/sparc-linux/nogui -Fu../components/codetools/units/sparc-linux 
-Fu../components/synedit/units/sparc-linux 
-Fu../components/lazcontrols/lib/sparc-linux -Fu../components/custom 
-Fu../components/mpaslex -Fu../ideintf/units/sparc-linux -Fu../designer 
-Fu../debugger -Fu../debugger/frames -Fu../converter -Fu../packager 
-Fu../packager/frames -Fu../packager/units/sparc-linux -Fu../units/sparc-linux 
-Fuframes -Fu. -Fu/usr/share/fpcsrc/2.4.4/rtl 
-Fu/usr/share/fpcsrc/2.4.4/packages/regexpr -Fiinclude -Fiinclude/linux 
-Fi../images -FE.. -FU../units/sparc-linux 
-Fl/usr/lib/sparc-linux-gnu/gcc/sparc-linux-gnu/4.6.1 -Flinclude 
-Fl/etc/ld.so.conf.d/*.conf -dsparc lazbuild.lpr
Free Pascal Compiler version 2.4.4-2 [2011/07/12] for sparc
Copyright (c) 1993-2010 by Florian Klaempfl
Target OS: Linux for SPARC
Compiling lazbuild.lpr
Assembling lazbuild
Compiling resource ../units/sparc-linux/lazbuild.or
Linking ../lazbuild
/usr/bin/ld: warning: ../link.res contains output sections; did you forget -T?
/usr/lib/fpc/2.4.4/units/sparc-linux/rtl/cprt0.o: In function `_start':
(.text+0x58): undefined reference to `_init'
/usr/lib/fpc/2.4.4/units/sparc-linux/rtl/cprt0.o: In function `_start':
(.text+0x5c): undefined reference to `_fini'
/usr/lib/fpc/2.4.4/units/sparc-linux/rtl/cprt0.o: In function `_start':
(.text+0x64): undefined reference to `_init'
/usr/lib/fpc/2.4.4/units/sparc-linux/rtl/cprt0.o: In function `_start':
(.text+0x68): undefined reference to `_fini'
lazbuild.lpr(1278) Error: Error while linking
lazbuild.lpr(1278) Fatal: There were 1 errors compiling module, stopping
Fatal: Compilation aborted
make[3]: *** [lazbuild] Error 1

/usr/bin/ppcarm -gl -dlclnogui -Fu../lcl/units/arm-linux 
-Fu../lcl/units/arm-linux/nogui -Fu../components/codetools/units/arm-linux 
-Fu../components/synedit/units/arm-linux 
-Fu../components/lazcontrols/lib/arm-linux -Fu../components/custom 
-Fu../components/mpaslex -Fu../ideintf/units/arm-linux -Fu../designer 
-Fu../debugger -Fu../debugger/frames -Fu../converter -Fu../packager 
-Fu../packager/frames -Fu../packager/units/arm-linux -Fu../units/arm-linux 
-Fuframes -Fu. -Fu/usr/share/fpcsrc/2.4.4/rtl 
-Fu/usr/share/fpcsrc/2.4.4/packages/regexpr -Fiinclude -Fiinclude/linux 
-Fi../images -FE.. -FU../units/arm-linux 
-Fl/usr/lib/arm-linux-gnueabi/gcc/arm-linux-gnueabi/4.6.1 -Flinclude 
-Fl/etc/ld.so.conf.d/*.conf -darm lazbuild.lpr
Free Pascal Compiler version 2.4.4-1 [2011/06/30] for arm
Copyright (c) 1993-2010 by Florian Klaempfl
Target OS: Linux for ARMEL
Compiling lazbuild.lpr
Assembling lazbuild
Compiling resource ../units/arm-linux/lazbuild.or
Linking ../lazbuild
/usr/bin/ld: warning: ../link.res contains output sections; did you forget -T?
/usr/lib/fpc/2.4.4/units/arm-linux/rtl/cprt0.o: In function `_haltproc_eabi':
(.text+0x88): undefined reference to `_fini'
/usr/lib/fpc/2.4.4/units/arm-linux/rtl/cprt0.o: In function `_haltproc_eabi':
(.text+0x90): undefined reference to `_init'
lazbuild.lpr(1278) Error: Error while linking
lazbuild.lpr(1278) Fatal: There were 1 errors compiling module, stopping
Fatal: Compilation aborted
make[3]: *** [lazbuild] Error 1


The armel and sparc issues are blocking the migration of the new version 
of freepascal to testing (the armel failure isn't because there are no 
old lazarus binaries on that platform).





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

Bug#607250: Default

2011-08-05 Thread Christoph Haas
I see your point. The problem I have with this feature request is that
there is no official default location. Defaulting to a certain server
name would be Debian specific and not very intuitive.

Any third opinion on this?

 Christoph



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



Bug#408523: Reproduce?

2011-08-05 Thread Christoph Haas
Weird issue. Honestly I haven't seen that in 1.6 and 1.8. Could you
check if the problem still exists in current versions, please?

 Christoph



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



Bug#408523: IRC?

2011-08-05 Thread Christoph Haas
Bear with me but I was not present at the IRC discussion. Could you
elaborate on how that saves a ucf call? From what I understand, your
patch file determines the Zabbix server's name from the agent conf file.
I don't see how that is connected to ucf though. Help please. :)

 Christoph



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



Bug#636801: argyll and libicc2 packages are based on same tarball, they should get merged

2011-08-05 Thread Till Kamppeter

Package: argyll
Version: 1.3.0-3

The packages argyll and libicc2 are both taking their source code from 
the upstream source tarball of Argyll. Having two (or more) different 
packages based on the same source code tarball one will easily get into 
a maintenance nightmare. If a security vulnerability shows up in the 
upstream code, all packages based on it need their upstream tarball be 
updated and rebuilt. One can easily forget one package and so the 
vulnerability stays in the forgotten package.


I am introducing Color Management in Ubuntu and therefore I have updated 
the Argyll package to version 1.3.3 and also created a merged package 
(but not uploaded to Ubuntu). You can download it here:


http://www.openprinting.org/download/tmp/argyll_1.3.3.orig.tar.gz
http://www.openprinting.org/download/tmp/argyll_1.3.3-0ubuntu2.dsc
http://www.openprinting.org/download/tmp/argyll_1.3.3-0ubuntu2.debian.tar.gz

Problem is that the version number used for libicc is the API/ABI 
version number 2.12 which is much higher than the 1.3.3 of the upstream 
tarball. Ho should I proceed to make the resulting package being well 
accepted by Debian? Should I introduce an epoch? Or can a binary package 
have another version number than its source package?


The mentioned package uses an epoch, but please tell me how to do it 
correctly.


the merged package builds Argyll using the upstream Jam architecture, 
this makes maintenance much easier than with a packager-supplied 
autoconf/automake environment. Only libicc is built in a separate 
directory using the very simple autoconf/automake files from the former 
libicc2 package. This is done because the Jam environment has no 
functionality to create shared libraries.


The package is a merger of Ubuntu packages, therefore it has Ubuntu 
release numbers, change them if you want to use this package in Debian.


   Till



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



Bug#636800: gecko-mediaplayer: files installed into wrong directory

2011-08-05 Thread Sebastian Ramacher
Package: gecko-mediaplayer
Version: 1.0.4-1
Severity: grave

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

1.0.4-1 installs the *.so files into /usr/lib/x86_64-linux-gnu/mozilla/plugins.
But iceweasel doesn't look there for plugins and hence gecko-mediaplayer can't
be used.

I was able to fix this issue by passing --plugindir=/usr/lib/mozilla/plugins to
configure. The issue is probably due to gecko-mediaplayer's configure script. It
takes libdir from libnspr4-dev (thus overwriting --libdir passed to configure)
which is /usr/lib/x86_64-linux-gnu here. And then the *.so files get installed
to $(libdir)/mozilla/plugins.

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

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

Versions of packages gecko-mediaplayer depends on:
ii  gconf22.32.4-1   GNOME configuration database syste
ii  gnome-mplayer 1.0.4-1+b1 A GTK+ interface for MPlayer
ii  iceweasel 5.0-6  Web browser based on Firefox
ii  konqueror 4:4.6.5-1  advanced file manager, web browser
ii  libc6 2.13-14Embedded GNU C Library: Shared lib
ii  libcurl3-gnutls   7.21.7-1   Multi-protocol file transfer libra
ii  libdbus-1-3   1.4.14-1   simple interprocess messaging syst
ii  libdbus-glib-1-2  0.94-4 simple interprocess messaging syst
ii  libgcc1   1:4.6.1-5  GCC support library
ii  libglib2.0-0  2.28.6-1   The GLib library of C routines
ii  libstdc++64.6.1-5GNU Standard C++ Library v3
ii  xulrunner-1.9.1   1.9.1.19-3 XUL + XPCOM application runner

gecko-mediaplayer recommends no packages.

gecko-mediaplayer suggests no packages.

- -- no debconf information

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

iQIcBAEBCAAGBQJOPHdwAAoJEGny/FFupxmTMVEP/278a57xRjj4ivwsWzOlg1w2
99ElPrH5UmY1KfxdRJCBpxdfBdSv+65uasKp9mU4byAxpLTVVWU/PSCr2xvMzwHI
GnjpFbdYNgJN5qmcpRii5XZ84l5TWtrBc/HzQWXGAK6lrSJ+zJsPs01qEg93QcvP
mopF8T/rGuDa5SpjrEcvrpkAyClaXSZlapyHwLYhvdTpazyWFfoneTzh2ce0lZVM
2P7K8i/0IpmnRfFk1EII/aP3pfzVCG6BYetZRcaz174G3SUSf73bFW61zTVSMde8
ICldtCV440xXQaMD8ww4v4TVhXrlmG1jp/I/Z7y1EEvW6nMlcJKlLYV51Nt4TX/h
wQE+Bd++Y0BqTFCnA0ChrgMLSf+ztwimJq4bBguR30WY5/aEc7LatFtLayL6Yr+P
bHQQuznFLJ3HCo9zaVbhy65+BI2r/SK1JuisDsfY4lsx8j/Y3QTu0s9JXFoUrzLV
22eN6yiPSMvfmB8/5+tHhMlY6jntDebNsuspUSsjniHNVE5K2Fr62Q7WLAkkDyH6
enqE1s1uZ9uGN3Nvjh2hOPPKRYq+yqw75Dqhzs9O3f7WzYVG1pNaoodESO4L7Ys1
GkewFu79LB+ug+4GnW5qcRK1vL3r7S0zRAqTto3L+NVFOkqkxzVagMLOGZVCWtCW
MWLja9wBEjRIOFH3Mc0v
=pW3o
-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#636705: interrupting live-build may leave chroot/dev/pts mounted

2011-08-05 Thread Daniel Baumann
tag 636705 moreinfo
thanks

On 08/05/2011 04:16 PM, Michal Suchanek wrote:
> Interrupting the build with ^C may leave chroot/dev/pts mounted.

hmm? Exit() in exit.sh does unmount it. please elaborate why you think
it's not doing what it is supposed to do.

> The only problem that results is inability to run lb clean without
> manually unmounting.

hmm? lb_clean does unmount the pseudo-fs properly. please elaborate why
you think that manual unmounting is required before calling lb_clean.

-- 
Address:Daniel Baumann, Donnerbuehlweg 3, CH-3012 Bern
Email:  daniel.baum...@progress-technologies.net
Internet:   http://people.progress-technologies.net/~daniel.baumann/



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



Bug#636799: gwhois: [INTL:sk] Slovak po-debconf translation

2011-08-05 Thread Slavko
Package: gwhois
Severity: wishlist
Tags: l10n patch
Version: 20100728

sk.po attached

regards

-- 
Slavko
http://slavino.sk
# Slovak translations for gwhois package
# Slovenské preklady pre balík gwhois.
# Copyright (C) 2011 THE gwhois'S COPYRIGHT HOLDER
# This file is distributed under the same license as the gwhois package.
# Slavko , 2011.
#
msgid ""
msgstr ""
"Project-Id-Version: gwhois 20100728\n"
"Report-Msgid-Bugs-To: gwh...@packages.debian.org\n"
"POT-Creation-Date: 2010-05-15 23:41+0200\n"
"PO-Revision-Date: 2011-08-06 00:56+0200\n"
"Last-Translator: Slavko \n"
"Language-Team: Slovak \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: sk\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"

#. Type: boolean
#. Description
#: ../templates:1001
msgid "Install gwhois as a whois proxy server?"
msgstr "Nainštalovať gwhois ako proxy server whois?"

#. Type: boolean
#. Description
#: ../templates:1001
msgid ""
"If gwhois is installed as a whois proxy server (using inetd) it will listen "
"on the standard whois port (43) allowing normal whois clients to query it."
msgstr ""
"Ak je gwhois nainštalovaný ako proxy server whois (pomocou inetd), bude "
"načúvať na štandardnom porte whois (43), aby mohli posielať požiadavky bežné "
"klienty whois."

#. Type: boolean
#. Description
#: ../templates:1001
msgid ""
"This can be interesting for example if you want to setup a generic whois "
"server for your company or coworkers which can then use their standard whois-"
"client (e.g. a windows client) and still make use of the intelligent "
"features of gwhois."
msgstr ""
"Toto môže byť zaujímavé, napríklad, ak chcete nastaviť všeobecný server "
"whois pre svoju spoločnosť alebo spolupracovníkov, ktorí potom môžu používať "
"štandardné klienty whois (napr. klient Windows) a pritom stále využívať "
"inteligentné vlastnosti gwhois."

#. Type: error
#. Description
#: ../templates:2001
msgid "Inetd or compatible replacement not installed."
msgstr "Inetd ani kompatibilná náhrada nie sú nainštalované."

#. Type: error
#. Description
#: ../templates:2001
msgid ""
"You configured gwhois to act as a whois proxy server. This requires inetd or "
"a compatible replacement (in particular the 'update-inetd' binary) which was "
"not found."
msgstr ""
"Nastavili ste gwhois tak, aby vystupoval ako proxy server whois. Tento "
"spôsob vyžaduje inetd alebo kompatibilnú náhradu (konkrétne program „update-"
"inetd”), ktoré neboli nájdené."

#. Type: error
#. Description
#: ../templates:2001
msgid ""
"Please install a package providing inet-superserver and reconfigure gwhois "
"or disable proxy operation."
msgstr ""
"Prosím nainštalujte balík, ktorý poskytuje inet-superserver a znova nastavte "
"gwhois alebo zakážte operácie proxy."


signature.asc
Description: PGP signature


Bug#631585: munin-common: has issues with .gvfs mountpoints

2011-08-05 Thread Holger Levsen
On Freitag, 5. August 2011, Daniel Dickinson wrote:
> Er, sorry, yes, closing the bug.

np & thanks for following up on this bug! (and reporting and caring! :)


cheers,
Holger



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



Bug#636798: [dnet-common] "ethernet" not capitalized in extended description

2011-08-05 Thread Filipus Klutiero

Package: dnet-common
Version: 2.56
Severity: minor

The extended description contains:

It contains the necessary
configuration files and a script to set up the MAC address of your
ethernet card(s) at boot-up.

"Ethernet" is a proper noun and should be capitalized.



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



Bug#607100: Present in Squeeze?

2011-08-05 Thread Christoph Haas
Could you do me a favor and report whether the Squeeze release (1.8)
fixes the issue? Thank you.

 Christoph



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



Bug#636766: Actually a bug in libgtk-3-0

2011-08-05 Thread Michael Biebl
found 636766 3.0.12-1
thanks

Am 05.08.2011 21:28, schrieb brian m. carlson:
> reassign 636766 libgtk-3-0
> severity 636766 serious
> affects 636766 gnome-terminal
> kthxbye
> 
> Okay.  If libgtk-3-0 is version 3.0.12 and libgtk-3-common is version
> 3.0.10, this bug occurs.  If both are version 3.0.12, this bug does not
> occur.  This means that libgtk-3-0 is missing an appropriate dependency
> on libgtk-3-common so that the two are both installed in the correct
> version, which is a serious bug.

This particular key was added in the 3.0.12 release. As gsettings schemas are to
be considered as part of the ABI contract [2], we need to tighten the dependency
on libgtk-3-common in libgtk-3.0 by either bumping the minimum lower version
whenever a new key is added, or use a strict (= ${source:Version}) dependency.

Cheers,
Michael

[1]
http://git.gnome.org/browse/gtk+/commit/?id=7d8e4586770dab1aa7a7910a4a169474f11a24e7
[2]
http://git.gnome.org/browse/gtk+/commit/?id=46cd6316cb1b4bf599700e7db67838a3d5b93ab7
-- 
Why is it that all of the instruments seeking intelligent life in the
universe are pointed away from Earth?



signature.asc
Description: OpenPGP digital signature


Bug#628437: Antw.: Bug#628437: Display freezes after ksplash screen is finished

2011-08-05 Thread Andreas Feldner
What I did is to delete /etc/X11 and re-install the X packages. After that I 
installed the 280.13-1 versions of nvidia packages. The symptoms remain 
absolutely the same, so I assume there will be little value in testing the 
other versions you were referring to, either.

Andreas.

Am Montag 01. August 2011, 23:22:29 schrieb Andreas Beckmann:
> The following new driver versions are available:
>   * 275.09.07-5 (release) in testing
>   * 275.21-1 (release) in unstable
>   * 280.11-1 (beta) in experimental
> Please test them.
> 
> 
> Andreas




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



Bug#602552: Amazon EC2?

2011-08-05 Thread Christoph Haas
I recently found the same issue on 32-bit Amazon EC2 instances.
Compiling the Zabbix package without IPv6 support worked there. The
actual reason is not yet clear to me. If anyone has an idea about the
cause I welcome it.

 Christoph



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



Bug#635685: closed by Aurelien Jarno (Bug#635685: fixed in eglibc 2.13-14)

2011-08-05 Thread François Revol

I can now successfully build Haiku images on sid, so it's fixed for me.
Thanks.

François.



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



Bug#536860: linux-image-2.6.26-2-sparc64: Kernel unaligned access at TPC[48bf10] __delayacct_add_tsk+0x48/0x15c

2011-08-05 Thread Jonathan Nieder
Jonathan Nieder wrote:

> Could you test a recent kernel
> from sid or experimental, or try the following patch?
[...]
> taskstats: use better ifdef for alignment

The following changes would need to be applied first for it to work,
of course.

commit 85893120
Author: Jeff Mahoney 
Date:   Wed Oct 27 15:34:43 2010 -0700

delayacct: align to 8 byte boundary on 64-bit systems

prepare_reply() sets up an skb for the response.  The payload contains:

 ++
 | genlmsghdr - 4 bytes   |
 ++
 | NLA header - 4 bytes   | /* Aggregate header */
 +-+--+
 | | NLA header - 4 bytes | /* PID header */
 | +--+
 | | pid/tgid   - 4 bytes |
 | +--+
 | | NLA header - 4 bytes | /* stats header */
 | + -+ <- oops. aligned on 4 byte boundary
 | | struct taskstats - 328 bytes |
 +-+--+

The start of the taskstats struct must be 8 byte aligned on IA64 (and
other systems with 8 byte alignment rules for 64-bit types) or runtime
alignment warnings will be issued.

This patch pads the pid/tgid field out to sizeof(long), which forces the
alignment of taskstats.  The getdelays userspace code is ok with this
since it assumes 32-bit pid/tgid and then honors that header's length
field.

An array is used to avoid exposing kernel memory contents to userspace in
the response.

Signed-off-by: Jeff Mahoney 
Cc: Balbir Singh 
Signed-off-by: Andrew Morton 
Signed-off-by: Linus Torvalds 

diff --git a/kernel/taskstats.c b/kernel/taskstats.c
index 11281d57..5a651aa6 100644
--- a/kernel/taskstats.c
+++ b/kernel/taskstats.c
@@ -360,6 +360,12 @@ static struct taskstats *mk_reply(struct sk_buff *skb, int 
type, u32 pid)
struct nlattr *na, *ret;
int aggr;
 
+   /* If we don't pad, we end up with alignment on a 4 byte boundary.
+* This causes lots of runtime warnings on systems requiring 8 byte
+* alignment */
+   u32 pids[2] = { pid, 0 };
+   int pid_size = ALIGN(sizeof(pid), sizeof(long));
+
aggr = (type == TASKSTATS_TYPE_PID)
? TASKSTATS_TYPE_AGGR_PID
: TASKSTATS_TYPE_AGGR_TGID;
@@ -367,7 +373,7 @@ static struct taskstats *mk_reply(struct sk_buff *skb, int 
type, u32 pid)
na = nla_nest_start(skb, aggr);
if (!na)
goto err;
-   if (nla_put(skb, type, sizeof(pid), &pid) < 0)
+   if (nla_put(skb, type, pid_size, pids) < 0)
goto err;
ret = nla_reserve(skb, TASKSTATS_TYPE_STATS, sizeof(struct taskstats));
if (!ret)
commit 4be2c95d
Author: Jeff Mahoney 
Date:   Tue Dec 21 17:24:30 2010 -0800

taskstats: pad taskstats netlink response for aligment issues on ia64

The taskstats structure is internally aligned on 8 byte boundaries but the
layout of the aggregrate reply, with two NLA headers and the pid (each 4
bytes), actually force the entire structure to be unaligned.  This causes
the kernel to issue unaligned access warnings on some architectures like
ia64.  Unfortunately, some software out there doesn't properly unroll the
NLA packet and assumes that the start of the taskstats structure will
always be 20 bytes from the start of the netlink payload.  Aligning the
start of the taskstats structure breaks this software, which we don't
want.  So, for now the alignment only happens on architectures that
require it and those users will have to update to fixed versions of those
packages.  Space is reserved in the packet only when needed.  This ifdef
should be removed in several years e.g.  2012 once we can be confident
that fixed versions are installed on most systems.  We add the padding
before the aggregate since the aggregate is already a defined type.

Commit 85893120 ("delayacct: align to 8 byte boundary on 64-bit systems")
previously addressed the alignment issues by padding out the pid field.
This was supposed to be a compatible change but the circumstances
described above mean that it wasn't.  This patch backs out that change,
since it was a hack, and introduces a new NULL attribute type to provide
the padding.  Padding the response with 4 bytes avoids allocating an
aligned taskstats structure and copying it back.  Since the structure
weighs in at 328 bytes, it's too big to do it on the stack.

Signed-off-by: Jeff Mahoney 
Reported-by: Brian Rogers 
Cc: Jeff Mahoney 
Cc: Guillaume Chazarain 
Cc: Balbir Singh 
Signed-off-by: Andrew Morton 
Signed-off-by: Linus Torvalds 

diff --git a/Documentation/accounting/getdelays.c 
b/Documentation/accounting/getdelays.c
index a2976a6d..e9c77788 10

Bug#536860: linux-image-2.6.26-2-sparc64: Kernel unaligned access at TPC[48bf10] __delayacct_add_tsk+0x48/0x15c

2011-08-05 Thread Jonathan Nieder
tags 536860 = upstream fixed-upstream
quit

Hi,

Gabriel VLASIU wrote:

> Running iotop I get lots of:
>
> Kernel unaligned access at TPC[48bef4] __delayacct_add_tsk+0x2c/0x15c

I suspect this was fixed by v2.6.38-rc1~296 (taskstats: use better
ifdef for alignment, 2011-01-12).  Could you test a recent kernel
from sid or experimental, or try the following patch?

Thanks,
Jonathan

commit 9ab020cf
Author: Jeff Mahoney 
Date:   Wed Jan 12 17:00:48 2011 -0800

taskstats: use better ifdef for alignment

Commit 4be2c95d ("taskstats: pad taskstats netlink response for aligment
issues on ia64") added a null field to align the taskstats structure but
the discussion centered around ia64.  The issue exists on other platforms
with inefficient unaligned access and adding them piecemeal would be an
unmaintainable mess.

This patch uses Dave Miller's suggestion of using a combination of
CONFIG_64BIT && !CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS to determine
whether alignment is needed.

Note that this will cause breakage on those platforms with applications
like iotop which had hard-coded offsets into the packet to access the
taskstats structure.

The message seen on systems without the alignment fixes looks like: kernel
unaligned access to 0xe23879dca9bc, ip=0xa00100133d10

The addresses may vary but resolve to locations inside __delayacct_add_tsk.

iotop makes what I'd call unreasonable assumptions about the contents of a
netlink genetlink packet containing generic attributes.  They're typed and
have headers that specify value lengths, so the client can (should)
identify and skip the ones the client doesn't understand.

The kernel, as of version 2.6.36, presented a packet like so:
++
| genlmsghdr - 4 bytes   |
++
| NLA header - 4 bytes   | /* Aggregate header */
+-+--+
| | NLA header - 4 bytes | /* PID header */
| +--+
| | pid/tgid   - 4 bytes |
| +--+
| | NLA header - 4 bytes | /* stats header */
| + -+ <- oops. aligned on 4 byte boundary
| | struct taskstats - 328 bytes |
+-+--+

The iotop code expects that the kernel will behave as it did then,
assuming that the packet format is set in stone.  The format is set in
stone, but the packet offsets are not.  There's nothing in the packet
format that guarantees that the packet will be sent in exactly the same
way.  The attribute contents are set (or versioned) and the aggregate
contents are set but they can be anywhere in the packet.

The issue here isn't that an unaligned structure gets passed to userspace,
it's that the NLA infrastructure has something of a weakness: The 4 byte
attribute header may force the payload to be unaligned.  The taskstats
structure is created at an unaligned location and then 64-bit values are
operated on inside the kernel, so the unaligned access warnings gets
spewed everywhere.

It's possible to use the unaligned access API to operate on the structure
in the kernel but it seems like a wasted effort to work around userspace
code that isn't following the packet format.  Any new additions would also
need the be worked around.  It's a maintenance nightmare.

The conclusion of the earlier discussion seemed to be "ok fine, if we have
to break it, don't break it on arches that don't have the problem." Dave
pointed out that the unaligned access problem doesn't only exist on ia64,
but also on other 64-bit arches that don't have efficient unaligned access
and it should be fixed there as well.  The committed version of the patch
and this addition keep with the conclusion of that discussion not to break
it unnecessarily, which the pid padding and the packet padding fixes did
do.  x86_64 and powerpc don't suffer this problem so they shouldn't suffer
the solution.  Other 64-bit architectures do and will, though.

Signed-off-by: Jeff Mahoney 
Reported-by: David S. Miller 
Acked-by: David S. Miller 
Cc: Dan Carpenter 
Cc: Balbir Singh 
Cc: Florian Mickler 
Cc: Guillaume Chazarain 
Signed-off-by: Andrew Morton 
Signed-off-by: Linus Torvalds 

diff --git a/kernel/taskstats.c b/kernel/taskstats.c
index 69691eb4..3971c6b9 100644
--- a/kernel/taskstats.c
+++ b/kernel/taskstats.c
@@ -348,7 +348,7 @@ static int parse(struct nlattr *na, struct cpumask *mask)
return ret;
 }
 
-#ifdef CONFIG_IA64
+#if defined(CONFIG_64BIT) && !defined(CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS)
 #define TASKSTATS_NEEDS_PADDING 1
 #endif
 



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject

Bug#636797: linux-image-2.6.32-5-amd64: avoid divide-by-zero ("divide error: 0000") in scheduler

2011-08-05 Thread Daniel Kahn Gillmor
Package: linux-2.6
Version: 2.6.32-35
Tags: patch

We've now seen multiple crashes during periods of heavy IO on amd64
architecture machines running 2.6.32-5-amd64 from stock squeeze
installs.

An example crash [0] yields a backtrace like this:

2011-06-26_12:46:14.63097 [62478.818625] divide error:  [#1] SMP 
2011-06-26_12:46:14.68003 [62478.822564] last sysfs file: 
/sys/devices/pci:00/:00:1e.0/:04:03.0/class
2011-06-26_12:46:14.68004 [62478.830287] CPU 0 
2011-06-26_12:46:14.68005 [62478.832304] Modules linked in: rng_core btrfs 
zlib_deflate crc32c libcrc32c ufs qnx4 hfsplus hfs minix ntfs vfat msdos fat 
jfs xfs exportfs reiserfs ext4 
jbd2 crc16 ext2 bridge stp kvm_intel kvm tun loop snd_pcm snd_timer snd 
soundcore snd_page_alloc dcdbas pcspkr psmouse serio_raw evdev button 
power_meter processor ext3 jbd mbcache sh
a256_generic aes_x86_64 aes_generic cbc dm_crypt dm_mod raid1 md_mod sd_mod 
crc_t10dif sg sr_mod cdrom ata_generic uhci_hcd mpt2sas ehci_hcd thermal 
ata_piix thermal_sys usbcore nls_b
ase scsi_transport_sas libata scsi_mod bnx2 [last unloaded: scsi_wait_scan]
2011-06-26_12:46:14.68007 [62478.885126] Pid: 32653, comm: kvm Tainted: G   
 W  2.6.32-5-amd64 #1 PowerEdge R410
2011-06-26_12:46:14.68008 [62478.893108] RIP: 0010:[]  
[] find_busiest_group+0x3d0/0x876
2011-06-26_12:46:14.68009 [62478.901803] RSP: 0018:8804c5a8ba68  EFLAGS: 
00010046
2011-06-26_12:46:14.68010 [62478.907101] RAX:  RBX: 
 RCX: 8103a601
2011-06-26_12:46:14.68012 [62478.914219] RDX:  RSI: 
 RDI: 0200
2011-06-26_12:46:14.68013 [62478.921334] RBP: 88044e40fd50 R08: 
 R09: 88083e4400b0
2011-06-26_12:46:14.68014 [62478.928449] R10: 880298c3a8b8 R11: 
a0253fb7 R12: 00015780
2011-06-26_12:46:14.68014 [62478.935565] R13:  R14: 
0001 R15: 88083e440060
2011-06-26_12:46:14.68015 [62478.942683] FS:  7f995a599700() 
GS:88044e40() knlGS:
2011-06-26_12:46:14.68016 [62478.950753] CS:  0010 DS: 002b ES: 002b CR0: 
80050033
2011-06-26_12:46:14.68017 [62478.956483] CR2: 7f80157a6000 CR3: 
000393285000 CR4: 26e0
2011-06-26_12:46:14.68018 [62478.963601] DR0:  DR1: 
 DR2: 
2011-06-26_12:46:14.68019 [62478.970716] DR3:  DR6: 
0ff0 DR7: 0400
2011-06-26_12:46:14.68020 [62478.977833] Process kvm (pid: 32653, threadinfo 
8804c5a8a000, task 88083e67a350)
2011-06-26_12:46:14.68021 [62478.985901] Stack:
2011-06-26_12:46:14.68021 [62478.987907]  00015788 00015780 
0008 00015780
2011-06-26_12:46:14.68022 [62478.995142] <0> 00015780 00015780 
813cd8a8 8106fde3
2011-06-26_12:46:14.68027 [62479.002834] <0>  88001d1e8e10 
88044e410108 88044e40f9e0
2011-06-26_12:46:14.68027 [62479.010711] Call Trace:
2011-06-26_12:46:14.68028 [62479.013157]  [] ? 
tick_dev_program_event+0x2d/0x95
2011-06-26_12:46:14.68029 [62479.019496]  [] ? 
__hrtimer_start_range_ns+0x22f/0x242
2011-06-26_12:46:14.68030 [62479.026183]  [] ? 
schedule+0x2bd/0x7cb
2011-06-26_12:46:14.68030 [62479.031491]  [] ? 
x86_emulate_insn+0x1f08/0x2fc4 [kvm]
2011-06-26_12:46:14.68031 [62479.038184]  [] ? 
kvm_vcpu_block+0x94/0xb4 [kvm]
2011-06-26_12:46:14.68032 [62479.044349]  [] ? 
autoremove_wake_function+0x0/0x2e
2011-06-26_12:46:14.68033 [62479.050781]  [] ? 
kvm_arch_vcpu_ioctl_run+0x80b/0xa44 [kvm]
2011-06-26_12:46:14.68033 [62479.057901]  [] ? 
try_to_wake_up+0x2a7/0x2b9
2011-06-26_12:46:14.68034 [62479.063719]  [] ? 
wake_futex+0x31/0x4e
2011-06-26_12:46:14.68035 [62479.069024]  [] ? 
kvm_vcpu_ioctl+0xf1/0x4e6 [kvm]
2011-06-26_12:46:14.68035 [62479.075275]  [] ? 
__hrtimer_start_range_ns+0x22f/0x242
2011-06-26_12:46:14.68036 [62479.081964]  [] ? 
vfs_ioctl+0x21/0x6c
2011-06-26_12:46:14.68038 [62479.087176]  [] ? 
do_vfs_ioctl+0x48d/0x4cb
2011-06-26_12:46:14.68039 [62479.092822]  [] ? 
sys_futex+0x113/0x131
2011-06-26_12:46:14.68039 [62479.098210]  [] ? 
block_llseek+0x75/0x81
2011-06-26_12:46:14.68040 [62479.103681]  [] ? 
sys_ioctl+0x51/0x70
2011-06-26_12:46:14.68041 [62479.108894]  [] ? 
system_call_fastpath+0x16/0x1b
2011-06-26_12:46:14.68042 [62479.115056] Code: bc 24 a0 01 00 00 00 74 10 48 8b 
94 24 a0 01 00 00 c7 02 00 00 00 00 eb 65 41 8b 77 08 48 8b 84 24 38 01 00 00 
31 d2 48 c1 e0 0a <48> f7 f6 48 8b b4 24 40 01 00 00 48 89 84 24 30 01 00 00 31 
c0 
2011-06-26_12:46:14.68042 [62479.134577] RIP  [] 
find_busiest_group+0x3d0/0x876
2011-06-26_12:46:14.68043 [62479.140927]  RSP 
2011-06-26_12:46:14.68044 [62479.144752] ---[ end trace 62d8c362642de471 ]---
2011-06-26_12:46:14.68045 [62479.154150] divide error:  [#2] SMP 
2011-06-26_12:46:14.68045 [62479.158090] last sysfs file: 
/sys/devices/pci:00/:00:1e.0/:04:03.0/class
2011-06-26_1

Bug#636796: use compression on first part of update transaction too

2011-08-05 Thread jidanni
Package: apt
Version: 0.8.15.5
Severity: wishlist

Gentlemen, it turns out the initial part of an apt-get update,
the part which sends

GET /debian/dists/unstable/InRelease HTTP/1.1
Host: ...
Connection: keep-alive
Cache-Control: no-cache
Pragma: no-cache
User-Agent: Debian APT-HTTP/1.3 (0.8.15.5)

(as seen in tcpflow(1)), does not get a compressed result. Even though
it is only a 150 KB reply, but why not enable compression and just send
a third of that?



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



Bug#624675: [bug #33831] wget --backup-converted does not work

2011-08-05 Thread Giuseppe Scrivano
Update of bug #33831 (project wget):

  Status:None => Cannot Reproduce   
 Assigned to:None => gscrivano  

___

Follow-up Comment #1:

I couldn't reproduce the problem, if I launch the command I get backup-ed
files and having a bunch of .orig and .html files.


Can you please give more information?  Why is not it following the
documentation?


___

Reply to this item at:

  

___
  Messaggio inviato con/da Savannah
  http://savannah.gnu.org/




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



Bug#636795: getfem++: FTBFS(kfreebsd/mips): cp: cannot stat `debian/tmp/usr/lib/scilab-getfem++/': No such file or directory

2011-08-05 Thread Christoph Egger
Package: src:getfem++
Version: 4.1.1-3
Severity: serious
Tags: sid wheezy
Justification: fails to build from source (but built successfully in the past)

Hi!

Your package failed to build on the kfreebsd-* buildds:

dh_testroot
dh_installchangelogs -a ChangeLog
dh_installdocs -a
dh_installexamples -a #not really needed
dh_install -a --list-missing --sourcedir=debian/tmp
cp: cannot stat `debian/tmp/usr/lib/scilab-getfem++/': No such file or directory
dh_install: cp -a debian/tmp/usr/lib/scilab-getfem++/ 
debian/scilab-getfem++//usr/lib/ returned exit code 1
make: *** [binary-arch] Error 2

Full build log at
https://buildd.debian.org/status/fetch.php?pkg=getfem%2B%2B&arch=kfreebsd-i386&ver=4.1.1-3&stamp=1312563785

Regards

Christoph

If you have further questions please mail debian-...@lists.debian.org

-- 
9FED 5C6C E206 B70A 5857  70CA 9655 22B9 D49A E731
Debian Developer | Lisp Hacker | CaCert Assurer



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



Bug#636794: doesn't escape '+' properly for buildd webjump

2011-08-05 Thread Christoph Egger
Package: conkeror
Version: 0.9.3+git110719-1
Severity: minor

Hi!

using the buildd webjump e.g. for `buildd getfem++` will fail
because the '+' sign is not properly escaped as %2b

Regards

Christoph

-- Package-specific info:

-- Extensions information
-- Plugins information
Name: Shockwave Flash
Location: /usr/lib/flashplugin-nonfree/libflashplayer.so
Status: enabled

Name: Skype Buttons for Kopete
Location: /usr/lib/mozilla/plugins/skypebuttons.so
Package: kopete
Status: enabled

Name: VLC Multimedia Plug-in
Location: /usr/lib/mozilla/plugins/libvlcplugin.so
Package: mozilla-plugin-vlc
Status: enabled


-- Addons package information
ii  kopete 4:4.6.5-2  instant messaging and chat application
ii  mozilla-plugin 1.1.10-1+b1multimedia plugin for web browsers based on 

-- Extensions information
-- Plugins information
Name: Shockwave Flash
Location: /usr/lib/flashplugin-nonfree/libflashplayer.so
Status: enabled

Name: Skype Buttons for Kopete
Location: /usr/lib/mozilla/plugins/skypebuttons.so
Package: kopete
Status: enabled

Name: VLC Multimedia Plug-in
Location: /usr/lib/mozilla/plugins/libvlcplugin.so
Package: mozilla-plugin-vlc
Status: enabled


-- Addons package information
ii  kopete 4:4.6.5-2  instant messaging and chat application
ii  mozilla-plugin 1.1.10-1+b1multimedia plugin for web browsers based on 

-- Extensions information
-- Plugins information
Name: Shockwave Flash
Location: /usr/lib/flashplugin-nonfree/libflashplayer.so
Status: enabled

Name: Skype Buttons for Kopete
Location: /usr/lib/mozilla/plugins/skypebuttons.so
Package: kopete
Status: enabled

Name: VLC Multimedia Plug-in
Location: /usr/lib/mozilla/plugins/libvlcplugin.so
Package: mozilla-plugin-vlc
Status: enabled


-- Addons package information
ii  kopete 4:4.6.5-2  instant messaging and chat application
ii  mozilla-plugin 1.1.10-1+b1multimedia plugin for web browsers based on 

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

Kernel: Linux 2.6.39-2-amd64 (SMP w/6 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 conkeror depends on:
ii  xulrunner-1.9.1   1.9.1.19-3 XUL + XPCOM application runner
ii  xulrunner-2.0 2.0.1-2XUL + XPCOM application runner
ii  xulrunner-5.0 5.0-6  XUL + XPCOM application runner

Versions of packages conkeror recommends:
ii  conkeror-spawn-process 0.9.3+git110719-1 spawn external processes in Conker

Versions of packages conkeror suggests:
ii  emacs-snapshot [emacsen]1:20110801-1 The GNU Emacs editor (development 
ii  emacs23 [emacsen]   23.3+1-1 The GNU Emacs editor (with GTK+ us

-- 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#636790: libmath-bigint-gmp-perl: FTBFS with perl 5.14: needs alternate dependency on perl 5.14 to satisfy libmath-bigint-perl

2011-08-05 Thread Dominic Hargreaves
On Fri, Aug 05, 2011 at 11:18:14PM +0100, Dominic Hargreaves wrote:

> The solution is to add an alternative dependency on perl 5.14:
> 
> libmath-bigint-perl (>= 1.993) | perl (>= 5.14)

Note: this change should be made in Depends too.

-- 
Dominic Hargreaves | http://www.larted.org.uk/~dom/
PGP key 5178E2A5 from the.earth.li (keyserver,web,email)



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



Bug#636770: libextutils-xspp-perl: FTBFS with perl 5.14: needs alternate dependency on perl 5.14 to satisfy libextutils-parsexs-perl

2011-08-05 Thread Dominic Hargreaves
On Fri, Aug 05, 2011 at 08:39:01PM +0100, Dominic Hargreaves wrote:

> The solution is to add an alternative dependency on perl 5.14:
> 
> libextutils-parsexs-perl (>= 2.220200) | perl (>= 5.14)

Note: this change should be made in Depends, too.

-- 
Dominic Hargreaves | http://www.larted.org.uk/~dom/
PGP key 5178E2A5 from the.earth.li (keyserver,web,email)



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



Bug#636793: libobject-insideout-perl: FTBFS with perl 5.14: needs alternate dependency on perl 5.14 to satisfy libthreads-shared-perl

2011-08-05 Thread Dominic Hargreaves
Source: libobject-insideout-perl
Version: 3.81-1
Severity: important
User: debian-p...@lists.debian.org
Usertags: perl-5.14-transition

This package cannot be built with perl 5.14, since perl 5.14 provides
and breaks libthreads-shared-perl, and this package has a versioned
Build-Dep on libthreads-shared-perl (>= 1.33).

The solution is to add an alternative dependency on perl 5.14:

libthreads-shared-perl (>= 1.33) | perl (>= 5.14)

This package also has a run-time dependency on libthreads-shared-perl
so the same change should be made there too.

-- 
Dominic Hargreaves | http://www.larted.org.uk/~dom/
PGP key 5178E2A5 from the.earth.li (keyserver,web,email)



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



Bug#636792: ITP: cucumber -- acceptance testing tool

2011-08-05 Thread Antonio Terceiro
Package: wnpp
Severity: wishlist
Owner: Antonio Terceiro 

* Package name: cucumber
  Version : 1.0.2
  Upstream Author : Aslak Hellesøy
* URL : http://cukes.info/
* License : MIT
  Programming Lang: Ruby
  Description : acceptance testing tool

Cucumber lets software development teams describe how software should
behave in plain text. The text is written in a business-readable
domain-specific language and serves as documentation, automated tests
and development-aid - all rolled into one format.

-- 
Antonio Terceiro 


signature.asc
Description: Digital signature


Bug#636791: libmodule-install-xsutil-perl: FTBFS with perl 5.14: needs alternate dependency on perl 5.14 to satisfy libextutils-parsexs-perl

2011-08-05 Thread Dominic Hargreaves
Source: libmodule-install-xsutil-perl
Version: 0.38-1
Severity: important
User: debian-p...@lists.debian.org
Usertags: perl-5.14-transition

This package cannot be built with perl 5.14, since perl 5.14 provides
and breaks libextutils-parsexs-perl, and this package has a versioned
Build-Dep on libextutils-parsexs-perl (>= 2.21).

The solution is to add an alternative dependency on perl 5.14:

libextutils-parsexs-perl (>= 2.21) | perl (>= 5.14)

-- 
Dominic Hargreaves | http://www.larted.org.uk/~dom/
PGP key 5178E2A5 from the.earth.li (keyserver,web,email)



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



Bug#636790: libmath-bigint-gmp-perl: FTBFS with perl 5.14: needs alternate dependency on perl 5.14 to satisfy libmath-bigint-perl

2011-08-05 Thread Dominic Hargreaves
Source: libmath-bigint-gmp-perl
Version: 1.36-1
Severity: important
User: debian-p...@lists.debian.org
Usertags: perl-5.14-transition

This package cannot be built with perl 5.14, since perl 5.14 provides
and breaks libmath-bigint-perl, and this package has a versioned
Build-Dep on libmath-bigint-perl (>= 1.993).

The solution is to add an alternative dependency on perl 5.14:

libmath-bigint-perl (>= 1.993) | perl (>= 5.14)

-- 
Dominic Hargreaves | http://www.larted.org.uk/~dom/
PGP key 5178E2A5 from the.earth.li (keyserver,web,email)



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



Bug#636789: prints stats to syslog even though I removed --summary=600 from config

2011-08-05 Thread martin f krafft
Package: postfwd
Version: 1.20-1~bpo60+1
Severity: minor

I removed --summary=600 from /etc/default/postfwd's $ARGS variable,
and this made postfwd 1.18 stop spamming syslog. Since I upgraded to
1.20 (postfwd2), the stats are back.

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

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

-- 
 .''`.   martin f. krafft   Related projects:
: :'  :  proud Debian developer   http://debiansystem.info
`. `'`   http://people.debian.org/~madduckhttp://vcs-pkg.org
  `-  Debian - when you have better things to do than fixing systems


digital_signature_gpg.asc
Description: Digital signature (see http://martin-krafft.net/gpg/sig-policy/999bbcc4/current)


Bug#535460: nfs-kernel-server: Consumes memory indefinitely and results in kernel panic eventually

2011-08-05 Thread Jonathan Nieder
Hi Youssef,

Youssef Eldakar wrote:

> I am using nfs-kernel-server with Kerberos authentication to export 
> /home to a cluster of over a thousand nodes. While nfs-kernel-server is 
> running, memory usage goes up indefinitely on the NFS server. After 
> several days, the system crashes with a kernel panic due to being out of 
> memory. If I stop nfs-kernel-server, memory usage appears to go down 
> slowly.

Hm, that's no good.  Sorry for the long silence.  I have no better
advice than

 - try as recent a kernel as possible

 - try a custom kernel with CONFIG_DEBUG_KMEMLEAK enabled to make
   the problem easier to track down.

Is this a regression (i.e., did previous kernel versions work okay)?

Thanks for a clear report,
Jonathan



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



Bug#636788: ITP: ruby-gherkin -- lexer and parser for the Gherkin language in Ruby

2011-08-05 Thread Antonio Terceiro
Package: wnpp
Severity: wishlist
Owner: Antonio Terceiro 

* Package name: ruby-gherkin
  Version : 2.4.5
  Upstream Author : Mike Sassak, Gregory Hnatiuk, Aslak Hellesøy
* URL : https://github.com/cucumber/gherkin
* License : MIT
  Programming Lang: Ruby
  Description : lexer and parser for the Gherkin language in Ruby

Gherkin is a language for writing software acceptance tests in an
executable scripting language that looks like structured natural
language. It was created in the context of the cucumber project.

-- 
Antonio Terceiro 


signature.asc
Description: Digital signature


Bug#636787: transmission: FTBFS: build-depends on libcurl4-dev which has multiple providers

2011-08-05 Thread Christoph Egger
Package: src:transmission
Version: 2.03-2.1
Severity: serious
Tags: sid wheezy
Justification: fails to build from source (but built successfully in the past)

Hi!

Your package failed to build on the buildds as it build-depends on
libcurl4-dev which is provided by libcurl4-gnutls-dev and
libcurl4-nss-dev and buildds don't allow dependencies on packages
provided by more than one package

Regards

Christoph

-- 
9FED 5C6C E206 B70A 5857  70CA 9655 22B9 D49A E731
Debian Developer | Lisp Hacker | CaCert Assurer



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



Bug#635519: php-zeroc-ice: missing several php-files of source like Ice.PHP and generated PHPs of ICEs

2011-08-05 Thread Cleto Martín Angelina
tags 635519 + pending
thanks.

Hi,

thanks a lot for your bug report.

> WebInterfaces for mumble-server like phpMumbleAdmin 0.3.8 can use ICE
> 3.4 to communicate. These need the Ice.PHP file and others.
> The missing files would be unter /usr/share/Ice-3.4.2/php/lib:
> Glacier2.php  IceGrid.php  IcePatch2.php  IceStorm.php
> IceBox.phpIce_ns.php   Ice.php
> These files are in the source of Zeroc.

Yeah, you are right. Next package version will include these php files
at /usr/share/Ice-3.4.2/php/lib directory.

> 
> Furthermore the new generated / translate files from ice to php format
> directly unter /usr/share/Ice-3.4.2/ are missed, i.e.:
> BuiltinSequences.php
> Endpoint.php
> EndpointTypes.php
> LocalException.php
> Locator.php
> ObjectFactory.php
> Process.php
> Router.php
> These files are generated by the makefile of Zeroc sources
> (Ice-3.4.2.zip/php/lib/Makefile).

These files will be included at /usr/share/Ice-3.4.2/php/lib/Ice.

Cheers.

-- 
Cleto Martín Angelina
GPG Key: 00EF5DFB



signature.asc
Description: OpenPGP digital signature


Bug#636779: gtk2-engines-xfce - please reconsider package description

2011-08-05 Thread Justin B Rye
Martin Eberhard Schauer wrote [incorporating the PS]:
> updating the German package description I thought about a way to
> make the description more concise and better to comprehend.
> 
> The existing description:
> 
> Description: GTK+-2.0 theme engine for Xfce
>  This package contains an Xfce engine for GTK2.0 which makes you able
>  to use various GTK2.0 themes with Xfce. It also contains some ready
>  themes, but you are of course free to design your own.

Hmm, yes, "makes you able to use" is fairly horrible.

> Description: GTK+-2.0 themes for Xfce
>   This package contains an Xfce program which can use various GTK2.0
>   themes. It also contains some ready themes, but of course you are free
>   to design your own.

No, that doesn't say the same thing - gtk2-engines-xfce doesn't
contain an executable that happens to use a particular theme, it
contains some sort of plugin library thing... "theme engine" is rather
a developer-centric label for it, but as long as the text goes on to
describe what good it is that should be okay.  So maybe:

  Description: GTK+-2.0 theme engine for Xfce
   This package contains a theme engine allowing users to apply
   various GTK2.0 themes to Xfce. It also contains some ready
   themes, but users are of course free to design their own.

(Eliminating a couple of second person pronouns on the grounds that it
works for every other user on the system too.)

> I should not file bugs at this time of the day :-(.

I do most of my best work at this time of day, though admittedly it's
not usually not after this much wine.
-- 
JBR with qualifications in linguistics, experience as a Debian
sysadmin, and probably no clue about this particular package



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



Bug#636786: libnatpmp: patch to fix building on kfreebsd

2011-08-05 Thread Christoph Egger
Package: src:libnatpmp
Version: 20110730-1
Severity: normal
Tags: patch
User: debian-...@lists.debian.org
Usertags: kfreebsd
X-Debbugs-Cc: debian-...@lists.debian.org

Hi!

Your package failed to build on kFreeBSD. Ive written and attached a
patch that does fix this problem. Please consider applying.

If you have further questions please mail debian-...@lists.debian.org

Regards

Christoph

--- libnatpmp-20101211/getgateway.c
+++ libnatpmp-20101211.orig/getgateway.c
@@ -35,7 +35,7 @@
 #undef USE_SYSCTL_NET_ROUTE
 #endif
 
-#ifdef BSD
+#if defined(BSD) || defined(__FreeBSD_kernel__)
 #undef USE_PROC_NET_ROUTE
 #define USE_SOCKET_ROUTE
 #undef USE_SYSCTL_NET_ROUTE

-- 
9FED 5C6C E206 B70A 5857  70CA 9655 22B9 D49A E731
Debian Developer | Lisp Hacker | CaCert Assurer



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



Bug#636292: MD5Sum mismatch is due to multiple DNS queries!

2011-08-05 Thread jidanni
Ha ha ha, it really does split a single apt-get update into two
different places completely across the Internet.

Any maybe even for singular servers like rocky-mountain... maybe
upstream from it is the same splitting problem somewhere.

Anyway here we go:
# cat /etc/apt/sources.list.d/*
deb http://ftp.us.debian.org/debian unstable contrib
# tcpflow -i ppp0 &
# apt-get update
# ls -og /tmp/m
-rw-r--r-- 1 146150 Aug  6 05:54 064.050.233.100.00080-218.163.001.135.45826
-rw-r--r-- 1  68985 Aug  6 05:54 199.006.012.070.00080-218.163.001.135.56243
-rw-r--r-- 1185 Aug  6 05:54 218.163.001.135.45826-064.050.233.100.00080
-rw-r--r-- 1   1432 Aug  6 05:54 218.163.001.135.56243-199.006.012.070.00080
$ host ftp.us.debian.org
ftp.us.debian.org has address 128.30.2.36
ftp.us.debian.org has address 199.6.12.70
ftp.us.debian.org has address 35.9.37.225
ftp.us.debian.org has address 64.50.233.100
ftp.us.debian.org has address 64.50.236.52
ftp.us.debian.org has IPv6 address 2001:500:61:28::70



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



Bug#635527: php-zeroc-ice: IcePHP.so in wrong directory

2011-08-05 Thread Cleto Martín Angelina
tags 635527 + pending
thanks.


> The package put IcePHP.so to /usr/lib/php5/20090626 directory. But ice
> extension works only when I created a symbolic link into the
> /usr/lib/php5/20090626+lfs directory.

I have moved IcePHP.so to /usr/lib/php5/20090626+lfs as previous version
was.

Thanks a lot for your bug report.


-- 
Cleto Martín Angelina
GPG Key: 00EF5DFB



signature.asc
Description: OpenPGP digital signature


Bug#532750: linux-image-2.6.26-2-amd64: kernel BUG at mm/slab.c:3008!

2011-08-05 Thread Jonathan Nieder
Hi Axel,

Axel Beckert wrote, last year:
> On Sun, Feb 14, 2010 at 11:08:14PM +0100, Moritz Muehlenhoff wrote:

>> What's the status of this bug? Did you upgrade this to a more
>> recent kernel and if so, did it fix the problems you were seeing?
>
> It vanished since we disabled the NFS tests. Haven't reenabled them
> yet, so I can't tell you know. But I just talked to the coworker who
> was running those tests and he agreed in reenabling them to see if it
> still crashes the box.

So, what was the result? :)

Thanks and sorry I have no better ideas.
Jonathan



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



Bug#636785: updates to http://www.debian.org/devel/join/nm-advocate to welcome non-packaging contributors

2011-08-05 Thread Daniel Kahn Gillmor
Package: www.debian.org
Tags: patch

On 08/05/2011 12:34 PM, Paul Wise wrote:
> On Mon, Aug 1, 2011 at 12:20 AM, Daniel Kahn Gillmor wrote:
> 
>> Any thoughts on how it should be updated to reflect last year's GR?
> 
> Once you have better wording, checkout the webwml CVS and submit a
> bug/patch against www.debian.org.
> 
> http://www.debian.org/devel/website/using_cvs

Proposed patch attached for the english version below.  Thanks for
pointing me in the right direction, pabs.

--dkg
Index: nm-advocate.wml
===
RCS file: /cvs/webwml/webwml/english/devel/join/nm-advocate.wml,v
retrieving revision 1.9
diff -u -r1.9 nm-advocate.wml
--- nm-advocate.wml	13 Jun 2010 10:42:44 -	1.9
+++ nm-advocate.wml	5 Aug 2011 22:01:58 -
@@ -7,12 +7,37 @@
 You should only advocate someone if you think that they are
 ready to be a developer. This means that you should have known them for
 some time and can judge their work. It is important that prospective
-developers have been working in the project for some time, by maintaining
-a package, helping users and sending patches. They should be familiar
-with Debian's special ways of doing things and have contributed some
-work to the project. Just ask yourself if you want to see them in Debian
-– if you think they should be a Debian developer then go ahead and 
-recommend them.
+developers have been working in the project for some time.  Some ways
+prospective developers might be contributing include:
+
+
+maintaining a package (or several),
+helping users,
+publicity work,
+translations,
+organizing work for debconf,
+sending patches,
+contributing bug reports,
+... and much more!
+
+
+These ways of helping are not mutually exclusive, of course!  Many
+prospective developers will have done work in several areas of the
+project, and not everyone must be a packager.  Remember, http://www.debian.org/vote/2010/vote_002";>Debian welcomes
+non-packaging contributors as project members.  For a wider
+overview of a given contributor, you may be interested in http://ddportfolio.debian.net/";>tools which aggregate some
+publicly-visible parts of the project.  Your personal knowledge of
+the applicant is also important here.
+
+
+The prospective developer should be familiar with Debian's special
+ways of doing things and should have already contributed actively and
+effectively to the project.  Most importantly, they should be
+committed to the ideals and structure of the Debian project.  Ask
+yourself if you want to see them in Debian – if you think they
+should be a Debian developer then go ahead and recommend them.
 
 
 Next carry out the following steps: Agree with the prospective developer


signature.asc
Description: OpenPGP digital signature


Bug#573850: kernel BUG at fs/buffer.c:3190

2011-08-05 Thread Jonathan Nieder
Hi Peter,

Peter Weiß wrote:

> Subject: kernel BUG at fs/buffer.c:3190
[...]
> Please find additional error information in the attached screenshots and
> dmesg output.
[...]
> [0.00] Linux version 2.6.26-2-486 (Debian 2.6.26-21lenny3) 
> (da...@debian.org) (gcc version 4.1.3 20080704 (prerelease) (Debian 
> 4.1.2-25)) #1 Wed Feb 10 08:34:42 UTC 2010

Thanks for reporting it, and sorry for the slow response.  Basic questions:

 - is this reproducible?

 - how are you able to boot?  Is there a workaround?

 - any kernel versions known to work?  Have you tried a recent kernel from
   sid or experimental?

 - anything else weird you remember from the time of failure (or weird
   symptoms from other times, for that matter)?



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



Bug#636617: [Secure-testing-team] Bug#636617: procps: sysctl raises an error at boot, possibly due to system V ordering problems with loading IPv6 modules

2011-08-05 Thread Yves-Alexis Perez
On jeu., 2011-08-04 at 17:58 +0200, Vincent Deffontaines wrote:
> IPv6 module is not loaded at that time, and any IPv6 option will be
> refused.

Note that Debian kernels have ipv6 builtin.

Regards,
-- 
Yves-Alexis


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


Bug#636784: Please include MAX-SAT solver

2011-08-05 Thread Joachim Breitner
Package: sat4j
Version: 2.3.0-1
Severity: wishlist

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi,

for the SAT-Britney tool I am working on right now I need good, reliable
and free MAX-SAT solvers in Debian. I managed to get the maxsat
extension on
http://forge.ow2.org/project/showfiles.php?group_id=228&release_id=4551
working and would like to see this packaged. Especally as DSA prefers to
install packaged software on the debian machines.

Thanks,
Joachim

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

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

Versions of packages sat4j depends on:
ii  default-jre [java6-runtime] 1:1.6-40 Standard Java or Java compatible R
ii  jarwrapper  0.37 Run executable Java .jar files
ii  openjdk-6-jre [java6-runtim 6b18-1.8.7-5 OpenJDK Java runtime, using Hotspo
ii  sun-java5-jre [java5-runtim 1.5.0-17-0.1 Sun Java(TM) Runtime Environment (
ii  sun-java6-jre [java6-runtim 6.26-1   Sun Java(TM) Runtime Environment (

sat4j recommends no packages.

sat4j suggests no packages.

- -- no debconf information

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

iEYEARECAAYFAk48Zd0ACgkQ9ijrk0dDIGytjACghrlgiKdwhgTwOPFBSClxpc40
RJoAnRN/Y/2HYD0VvZRRuL8/Ot89cEoQ
=sb4v
-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#636783: proposed constitution fix for super-majority within the tech ctte

2011-08-05 Thread Andreas Barth
Package: tech-ctte

Hi,

I'm asking the tech ctte to propose the following GR. Reason for going
via the tech ctte is that this is really only relevant for the tech
ctte.

A.6.3.2 currently says:
| An option A defeats the default option D by a majority ratio N, if
| V(A,D) is strictly greater than N * V(D,A). 

This means that if we need 3:1 majority, we still need more than 3:1
majority, which is with only at maximum 7 people voting relevant. (The
same applies for normal GRs, but with the number of developers, it's
way less relevant.) (If we are 8 people, this statement means that if
6 people vote in favor, and 2 against, we haven't reached
3:1-majority. Which is of course wrong.)


Therefor, I propose to replace this by:
A.6.3.2:
| An option A defeats the default option D by a majority ratio of 1,
| if V(A,D) is strictly greater than V(D,A). An option A defeats the
| default option D by a majority ratio of N, if V(A,D) is equals or
| greater than N * V(D,A).

(I don't like the ways it's written - better ideas?)




Andi



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



Bug#636782: unclean init.d restart output

2011-08-05 Thread martin f krafft
Package: postfwd
Version: 1.20-1~bpo60+1
Severity: wishlist

This could probably be improved (by hiding the output from
start/stop):

# /etc/init.d/postfwd restart
Restarting postfwd (incl. cache): Stopping postfwd: postfwd.
Starting postfwd: postfwd.
postfwd.

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

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


-- 
 .''`.   martin f. krafft   Related projects:
: :'  :  proud Debian developer   http://debiansystem.info
`. `'`   http://people.debian.org/~madduckhttp://vcs-pkg.org
  `-  Debian - when you have better things to do than fixing systems


digital_signature_gpg.asc
Description: Digital signature (see http://martin-krafft.net/gpg/sig-policy/999bbcc4/current)


Bug#524876: sata_mv: frozen/hard reset on 4-port 5041 chip

2011-08-05 Thread Jonathan Nieder
Hi Dave,

Dave Alitz wrote:

> After upgrading a SuperMicro SuperServer 5013-MT server from etch to
> lenny I started getting numerous hard resets on all of the sata
> ports. The 4-port sata controller is a Marvell MV88SX5041.  Looking
> around a bit it seems that the error reported is a timeout error.  A
> very similar bug was filed under number 514155 for the 508x/6081
> 8-port controller chips.
>
> I am using LVM2 on MD raid 1 and raid 5. Disabling write caching
> significantly reduced the number of resets; but didn't eliminate
> them.
>
> I'm using all four ports.  Two of each of the following drives:
[...]
> [577365.394906] EXT3-fs: mounted filesystem with ordered data mode.
> [593245.683756] ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x6 
> frozen
> [593245.683793] ata2.00: cmd ca/00:08:9b:d6:3b/00:00:00:00:00/e0 tag 0 dma 
> 4096 out
> [593245.683797]  res 40/00:00:00:00:00/00:00:00:00:00/40 Emask 0x4 
> (timeout)
> [593245.683862] ata2.00: status: { DRDY }
> [593245.683893] ata2: hard resetting link

Thanks for reporting it, and sorry for the slow response.  Basic
questions:

 - Does downgrading the kernel again to the version from etch help?
   It should be possible to test this by testing in the installer
   environments for etch and lenny separately, for example.

 - Do more current kernels behave better?  (I doubt they would, but
   it's always worth a try.)

 - Could you attach full dmesg output from bootup of the last working
   and first non-working kernel you have tried?  http://snapshot.debian.org/ 
   has many kernels if you'd like to narrow the regression range.

 - Any other weird symptoms?  Do you have any ideas about what could
   be causing this?



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



  1   2   3   4   >