Bug#850033: libepoxy: diff for NMU version 1.3.1-1.1

2017-01-18 Thread Jeremy Lal
Control: tags 850033 + patch
Control: tags 850033 + pending

Dear maintainer,

I've prepared an NMU for libepoxy (versioned as 1.3.1-1.1) and
uploaded it to DELAYED/5. Please feel free to tell me if I
should delay it longer.

Regards.
diff -Nru libepoxy-1.3.1/debian/changelog libepoxy-1.3.1/debian/changelog
--- libepoxy-1.3.1/debian/changelog 2015-08-29 16:10:12.0 +0200
+++ libepoxy-1.3.1/debian/changelog 2017-01-19 01:19:17.0 +0100
@@ -1,3 +1,10 @@
+libepoxy (1.3.1-1.1) unstable; urgency=medium
+
+  * Non-maintainer upload.
+  * Backport three upstream commits. (Closes: #850033) 
+
+ -- Jérémy Lal   Thu, 19 Jan 2017 01:19:17 +0100
+
 libepoxy (1.3.1-1) unstable; urgency=low
 
   * Upgrade to upstream v1.3.1 release and make the -dev package multi-arch.
diff -Nru libepoxy-1.3.1/debian/patches/series 
libepoxy-1.3.1/debian/patches/series
--- libepoxy-1.3.1/debian/patches/series1970-01-01 01:00:00.0 
+0100
+++ libepoxy-1.3.1/debian/patches/series2017-01-19 00:40:06.0 
+0100
@@ -0,0 +1,3 @@
+upstream/b3b8bd9af7bf1fcfe544fd131f4d4f0d117ae7bc.patch
+upstream/8d58c890646fc1f43bcab702bb9ed6bae94daefe.patch
+upstream/b8d609e8f9fc1f9c4ff359adb2c1c44619a9e7cf.patch
diff -Nru 
libepoxy-1.3.1/debian/patches/upstream/8d58c890646fc1f43bcab702bb9ed6bae94daefe.patch
 
libepoxy-1.3.1/debian/patches/upstream/8d58c890646fc1f43bcab702bb9ed6bae94daefe.patch
--- 
libepoxy-1.3.1/debian/patches/upstream/8d58c890646fc1f43bcab702bb9ed6bae94daefe.patch
   1970-01-01 01:00:00.0 +0100
+++ 
libepoxy-1.3.1/debian/patches/upstream/8d58c890646fc1f43bcab702bb9ed6bae94daefe.patch
   2017-01-19 00:41:22.0 +0100
@@ -0,0 +1,50 @@
+From: Yaron Cohen-Tal 
+Date: Mon, 21 Sep 2015 19:58:03 +0300
+Subject: [PATCH] Fix "epoxy_egl_get_current_gl_context_api" to use
+ "eglQueryContext" with "EGL_CONTEXT_CLIENT_TYPE" as "attribute".
+
+---
+ src/dispatch_common.c | 32 +++-
+ 1 file changed, 7 insertions(+), 25 deletions(-)
+
+--- a/src/dispatch_common.c
 b/src/dispatch_common.c
+@@ -569,31 +569,13 @@
+ static EGLenum
+ epoxy_egl_get_current_gl_context_api(void)
+ {
+-EGLenum save_api = eglQueryAPI();
+-EGLContext ctx;
+-
+-if (eglBindAPI(EGL_OPENGL_API)) {
+-ctx = eglGetCurrentContext();
+-if (ctx) {
+-eglBindAPI(save_api);
+-return EGL_OPENGL_API;
+-}
+-} else {
+-(void)eglGetError();
+-}
+-
+-if (eglBindAPI(EGL_OPENGL_ES_API)) {
+-ctx = eglGetCurrentContext();
+-eglBindAPI(save_api);
+-if (ctx) {
+-eglBindAPI(save_api);
+-return EGL_OPENGL_ES_API;
+-}
+-} else {
+-(void)eglGetError();
+-}
+-
+-return EGL_NONE;
++EGLDisplay eglDisplay = eglGetCurrentDisplay();
++EGLContext eglContext = eglGetCurrentContext();
++EGLint eglContextClientType = EGL_NONE;
++return  eglQueryContext(eglDisplay, eglContext, 
EGL_CONTEXT_CLIENT_TYPE,
++) == EGL_TRUE
++   ?(EGLenum)eglContextClientType
++   :EGL_NONE;
+ }
+ #endif /* PLATFORM_HAS_EGL */
+ 
diff -Nru 
libepoxy-1.3.1/debian/patches/upstream/b3b8bd9af7bf1fcfe544fd131f4d4f0d117ae7bc.patch
 
libepoxy-1.3.1/debian/patches/upstream/b3b8bd9af7bf1fcfe544fd131f4d4f0d117ae7bc.patch
--- 
libepoxy-1.3.1/debian/patches/upstream/b3b8bd9af7bf1fcfe544fd131f4d4f0d117ae7bc.patch
   1970-01-01 01:00:00.0 +0100
+++ 
libepoxy-1.3.1/debian/patches/upstream/b3b8bd9af7bf1fcfe544fd131f4d4f0d117ae7bc.patch
   2017-01-19 00:41:15.0 +0100
@@ -0,0 +1,51 @@
+From: Yaron Cohen-Tal 
+Date: Tue, 29 Sep 2015 11:57:55 +0300
+Subject: [PATCH] Fix "epoxy_glx_version" to handle the case when GLX is not
+ active on the display.
+
+---
+ src/dispatch_glx.c | 29 +++--
+ 1 file changed, 15 insertions(+), 14 deletions(-)
+
+diff --git a/src/dispatch_glx.c b/src/dispatch_glx.c
+index f1ff447..36d513a 100644
+--- a/src/dispatch_glx.c
 b/src/dispatch_glx.c
+@@ -54,22 +54,23 @@ epoxy_glx_version(Display *dpy, int screen)
+ int client_major, client_minor;
+ int server, client;
+ const char *version_string;
+-int ret;
++int ret=0, sscanf_ret;
+ 
+-version_string = glXQueryServerString(dpy, screen, GLX_VERSION);
+-ret = sscanf(version_string, "%d.%d", _major, _minor);
+-assert(ret == 2);
+-server = server_major * 10 + server_minor;
++if ((version_string = glXQueryServerString(dpy, screen, GLX_VERSION)))
++{
++sscanf_ret = sscanf(version_string, "%d.%d", _major, 
_minor);
++assert(sscanf_ret == 2);
++server = server_major * 10 + server_minor;
++if ((version_string = glXGetClientString(dpy, GLX_VERSION)))
++{
++sscanf_ret = sscanf(version_string, "%d.%d", _major, 
_minor);
++assert(sscanf_ret == 2);
++ 

Bug#624663: cdbs: scons-vars.mk : unfit use of --directory=$(DEB_BUILDDIR)

2011-04-30 Thread Jeremy Lal
Package: cdbs
Version: 0.4.93
Severity: minor

Hi,
I understand setting DEB_BUILDDIR indicates
one wants built files to go in that directory.
However, scons --directory option does not do this :
  This option  is  nearly equivalent  to  -f  directory/SConstruct,
  except  that  it will search for SConstruct, Sconstruct, or sconstruct in
  the  specified directory.

So the proper variable for --directory should be instead DEB_SRCDIR, since
this is where one expects the SConstruct file to be.

A way to tell scons to put built files in a given directory is with
the variant_dir option, for which i'll propose a patch later.

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

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

Versions of packages cdbs depends on:
ii  debhelper 8.1.6  helper programs for debian/rules

Versions of packages cdbs recommends:
ii  autotools-dev 20100122.1 Update infrastructure for config.{

Versions of packages cdbs suggests:
ii  devscripts2.10.72scripts to make the life of a Debi

-- 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#623883: cdbs: typo suspected in makefile.mk for multiflavors version dependency

2011-04-23 Thread Jeremy Lal
Package: cdbs
Version: 0.4.93
Severity: minor

Hi,
reading the code for multiflavors in /usr/share/cdbs/1/class/makefile.mk :
CDBS_BUILD_DEPENDS_class_autotools_flavors ?= cdbs (= 0.4.72~)
CDBS_BUILD_DEPENDS += $(if $(cdbs_make_flavors),$(comma) 
$(CDBS_BUILD_DEPENDS_class_autotools-flavors))

notice the difference :
CDBS_BUILD_DEPENDS_class_autotools_flavors
CDBS_BUILD_DEPENDS_class_autotools-flavors

Regards,
Jérémy.

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

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

Versions of packages cdbs depends on:
ii  debhelper 8.1.4  helper programs for debian/rules

Versions of packages cdbs recommends:
ii  autotools-dev 20100122.1 Update infrastructure for config.{

Versions of packages cdbs suggests:
ii  devscripts2.10.72scripts to make the life of a Debi

-- 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#621922: telepathy-gabble: using multiple xmpp accounts with empathy prevents some of them to send messages

2011-04-09 Thread Jeremy Lal
Package: telepathy-gabble
Version: 0.9.15-2
Severity: normal

Hi,

this bug *might* be a duplicate of #588637.

i hope you can reproduce the bug doing this :
* setup multiple gabble (xmpp) accounts in empathy, e.g. gmail, facebook, and
  in my case another gmail hosted domain.
* send messages to these accounts : they are properly received
* try to reply to the messages in empathy : at least one of the account does
  not send the reply. (i used another client to test).

Disabling all gabble accounts but one restores normal behaviour. I noticed this 
bug after squeeze release, and now reproduce it with squeeze or testing or 
unstable versions of telepathy/empathy and dependencies.

See this part of the log when i reply from the gmail hosted domain, the reply 
(parts_to_text) is immediately followed by an xmpp:ping request issued from the 
facebook account, which seems quite strange since it has nothing to do with the 
account i reply to or from (and disabling the facebook account suppresses the 
ping), but maybe it's not related.

(telepathy-gabble:7477): tp-glib/im-DEBUG: parts_to_text: Parsing part 1, type \
text/plain, alternative (null)
(telepathy-gabble:7477): tp-glib/im-DEBUG: parts_to_text: ... is text/plain
(telepathy-gabble:7477): tp-glib/im-DEBUG: parts_to_text: ... using its text
(telepathy-gabble:7477): wocky-DEBUG: _write_node_tree: Serializing tree:
* iq xmlns='jabber:client' type='get' id='827776088'
* ping xmlns='urn:xmpp:ping'
(telepathy-gabble:7477): wocky-DEBUG: _end_element_ns: Received stanza
* iq xmlns='jabber:client' from='xxx...@chat.facebook.com' to='xx@c\
hat.facebook.com/99b47da0_9bc92132_4A07CC275D536' type='error' id='827776088'
* ping xmlns='urn:xmpp:ping'
* error code='503' type='cancel'
* service-unavailable xmlns='urn:ietf:params:xml:ns:xmpp-stanzas'
(telepathy-gabble:7477): wocky-DEBUG: _write_node_tree: Serializing tree:
* iq xmlns='jabber:client' type='get' id='5498577'
* ping xmlns='urn:xmpp:ping'
(telepathy-gabble:7477): wocky-DEBUG: _end_element_ns: Received stanza
* iq xmlns='jabber:client' from='...@chat.facebook.com' to='xxx@c\
hat.facebook.com/99b47da0_9bc92132_4A07CC275D536' type='error' id='5498577'
* ping xmlns='urn:xmpp:ping'
* error code='503' type='cancel'
* service-unavailable xmlns='urn:ietf:params:xml:ns:xmpp-stanzas'


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

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

Versions of packages telepathy-gabble depends on:
ii  libc6   2.11.2-11Embedded GNU C Library: Shared lib
ii  libdbus-1-3 1.4.6-1  simple interprocess messaging syst
ii  libdbus-glib-1-20.92-1   simple interprocess messaging syst
ii  libglib2.0-02.28.4-1 The GLib library of C routines
ii  libgnutls26 2.12.2-1 GNU TLS library - runtime library
ii  libnice10   0.1.0-2  ICE library (shared library)
ii  libsoup2.4-12.33.92-1an HTTP library implementation in 
ii  libsqlite3-03.7.5-1  SQLite 3 shared library
ii  libtelepathy-glib0  0.11.11-2Telepathy framework - GLib library
ii  libuuid12.17.2-9.1   Universally Unique ID library
ii  libxml2 2.7.8.dfsg-2 GNOME XML library

telepathy-gabble recommends no packages.

telepathy-gabble 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#620065: libimobiledevice2: file conflict with libimobiledevice1

2011-03-29 Thread Jeremy Lal
Package: libimobiledevice2
Version: 1.1.0-2
Severity: important

Preparing to replace libimobiledevice2 1.1.0-1 (using 
.../libimobiledevice2_1.1.0-2_i386.deb) ...
Unpacking replacement libimobiledevice2 ...
dpkg: error processing 
/var/cache/apt/archives/libimobiledevice2_1.1.0-2_i386.deb (--unpack):
 trying to overwrite 
'/usr/share/hal/fdi/information/20thirdparty/31-apple-mobile-device.fdi', which 
is also in package libimobiledevice1 1.0.6-1


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

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

Versions of packages libimobiledevice2 depends on:
ii  libc6 2.11.2-11  Embedded GNU C Library: Shared lib
ii  libgcrypt11   1.4.6-5LGPL Crypto library - runtime libr
ii  libglib2.0-0  2.28.4-1   The GLib library of C routines
ii  libgnutls26   2.12.0-1   the GNU TLS library - runtime libr
ii  libplist1 1.4-1  Library for handling Apple binary 
ii  libtasn1-32.9-2  Manage ASN.1 structures (runtime)
ii  libusbmuxd1   1.0.7-1USB multiplexor daemon for iPhone 
ii  usbmuxd   1.0.7-1USB multiplexor daemon for iPhone 

libimobiledevice2 recommends no packages.

libimobiledevice2 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#615082: network-manager: dnsmasq exited with error: Configuration problem

2011-02-25 Thread Jeremy Lal
Package: network-manager
Version: 0.8.2-5
Severity: normal

This happens when trying to create a shared adhoc network :

dnsmasq: junk found in command line
NetworkManager[8394]: warn dnsmasq exited with error: Configuration problem 
(1)

This makes nm-applet loop forever.

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

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

Versions of packages network-manager depends on:
ii  adduser  3.112+nmu2  add and remove users and groups
ii  dbus 1.4.6-1 simple interprocess messaging syst
ii  isc-dhcp-client  4.1.1-P1-16 ISC DHCP client
ii  libc62.11.2-11   Embedded GNU C Library: Shared lib
ii  libdbus-1-3  1.4.6-1 simple interprocess messaging syst
ii  libdbus-glib-1-2 0.88-2.1simple interprocess messaging syst
ii  libgcrypt11  1.4.6-5 LGPL Crypto library - runtime libr
ii  libglib2.0-0 2.28.1-1+b1 The GLib library of C routines
ii  libgnutls26  2.10.4-2the GNU TLS library - runtime libr
ii  libgudev-1.0-0   166-1   GObject-based wrapper library for 
ii  libnl1   1.1-6   library for dealing with netlink s
ii  libnm-glib2  0.8.2-5 network management framework (GLib
ii  libnm-util1  0.8.2-5 network management framework (shar
ii  libpolkit-gobject-1-00.99-3  PolicyKit Authorization API
ii  libuuid1 2.17.2-9.1  Universally Unique ID library
ii  lsb-base 3.2-27  Linux Standard Base 3.2 init scrip
ii  udev 166-1   /dev/ and hotplug management daemo
ii  wpasupplicant0.6.10-2.1  client support for WPA and WPA2 (I

Versions of packages network-manager recommends:
ii  dnsmas 2.57-1A small caching DNS proxy and DHCP
ii  iptabl 1.4.10-1  administration tools for packet fi
ii  modemm 0.4+git.20110124t203624.00b6cce-2 D-Bus service for managing modems
ii  policy 0.99-3framework for managing administrat
ii  ppp2.4.5-5   Point-to-Point Protocol (PPP) - da

Versions of packages network-manager suggests:
ii  avahi-autoipd 0.6.28-4   Avahi IPv4LL network address confi

-- Configuration Files:
/etc/NetworkManager/NetworkManager.conf [Errno 2] Aucun fichier ou dossier de 
ce type: u'/etc/NetworkManager/NetworkManager.conf'

-- 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#613449: openshot: vimeo convenience.py syntax error(s)

2011-02-14 Thread Jeremy Lal
Package: openshot
Version: 1.3.0-1
Severity: normal

Traitement des actions différées (« triggers ») pour « python-support »...
/usr/lib/pymodules/python2.5/openshot/uploads/vimeo/convenience.py:84: Warning: 
'with' will become a reserved keyword in Python 2.6
Compiling /usr/lib/pymodules/python2.5/openshot/uploads/vimeo/convenience.py ...
  File /usr/lib/pymodules/python2.5/openshot/uploads/vimeo/convenience.py, 
line 84
with open(file_path) as video:
^
SyntaxError: invalid syntax


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

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

Versions of packages openshot depends on:
ii  fontconfig   2.8.0-2.1   generic font configuration library
ii  librsvg2-common  2.32.0-1SAX-based renderer library for SVG
ii  melt 1:0.5.4-0.1 command line media player and vide
ii  python   2.6.6-3+squeeze5interactive high-level object-orie
ii  python-glade22.17.0-4GTK+ bindings: Glade support
ii  python-gtk2  2.17.0-4Python bindings for the GTK+ widge
ii  python-imaging   1.1.7-2 Python Imaging Library
ii  python-mlt2  0.5.6+git20100727-1 multimedia framework (python bindi
ii  python-pygoocanvas   0.14.1-1+b1 GooCanvas Python bindings
ii  python-support   1.0.11  automated rebuilding support for P
ii  python-xdg   0.19-2  Python library to access freedeskt

Versions of packages openshot recommends:
ii  frei0r-plugins 1.1.22git20091109-1.1 minimalistic plugin API for video 
ii  openshot-doc   1.3.0-1   Help manual for OpenShot Video Edi

openshot 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#612517: plymouth: please update dependency on libdrm-nouveau1 to libdrm-nouveau1a

2011-02-08 Thread Jeremy Lal
Package: plymouth
Version: 0.8.3-18
Severity: important

It renders the package impossible to install if one has installed
latest libdrm-dev, which is needed by e.g. libgtk2.0-dev.

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

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

Versions of packages plymouth depends on:
ii  initramfs-tools   0.98.8 tools for generating an initramfs
ii  libc6 2.11.2-11  Embedded GNU C Library: Shared lib

plymouth recommends no packages.

plymouth suggests no packages.

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

-- 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#611657: executable name is confusing, software already outdated

2011-01-31 Thread Jeremy Lal
Package: nodejs
Version: 0.2.0-1
Severity: serious
Tags: squeeze

nodejs version 0.2.0 has its executable renamed to /usr/bin/nodejs [1],
and while it was all right for testing purposes, it is now not
acceptable :
 * it will confuse users, and force them to add /usr/local/bin/node link
 * nodejs is only useful with external modules, they won't work unless
   that link is added.

Moreover, most external modules depend on version 0.2.6 (upstream stable
branch version), for that reason users will more likely use nodejs package
from testing or backports (actually experimental [2]).
Hence it is much more preferable to remove nodejs 0.2.0 from squeeze, instead
of having an unusable and confusing version.

Concerned source packages are nodejs 0.2.0-1 and coffeescript 0.7.0-1.
The maintainer Geza Kovacs of the latter has agreed upon removal of its
package from squeeze.

Regards,
Jérémy Lal

[1]
http://bugs.debian.org/597571
[2]
http://packages.debian.org/changelogs/pool/main/n/nodejs/current/changelog




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



Bug#608685: pidgin-data: facebook.png also in package pidgin-facebookchat

2011-01-02 Thread Jeremy Lal
Package: pidgin-data
Version: 2.7.7-1
Severity: important

Preparing to replace pidgin-data 2.7.7-1 (using 
.../pidgin-data_2.7.9-1_all.deb) ...
Unpacking replacement pidgin-data ...
dpkg: error processing /var/cache/apt/archives/pidgin-data_2.7.9-1_all.deb 
(--unpack):
 trying to overwrite '/usr/share/pixmaps/pidgin/protocols/22/facebook.png', 
which is also in package pidgin-facebookchat 1.69-1

Cheers,
Jérémy.


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

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

-- 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#602077: thin1.8: servers option make thin parse YAML options if they were given on cli

2010-11-01 Thread Jeremy Lal
Package: thin1.8
Version: 1.2.4-1
Severity: normal

To reproduce :
add a custom option in /etc/thin1.8/myconf.yml, like this :

environment: production
chdir: /usr/share/redmine/
user: www-data
group: www-data
daemonize: true
mycustomoption: test

Thin starts this config file nicely.
Now add the servers option, to any value (even 1):
servers: 2

Thin will feed itself the yaml options to its command line parser :
/usr/lib/ruby/1.8/optparse.rb:1450:in `complete': invalid option: 
--mycustomoption=test (OptionParser::InvalidOption)
from /usr/lib/ruby/1.8/optparse.rb:1448:in `catch'
from /usr/lib/ruby/1.8/optparse.rb:1448:in `complete'
from /usr/lib/ruby/1.8/optparse.rb:1261:in `parse_in_order'
from /usr/lib/ruby/1.8/optparse.rb:1254:in `catch'
from /usr/lib/ruby/1.8/optparse.rb:1254:in `parse_in_order'
from /usr/lib/ruby/1.8/optparse.rb:1248:in `order!'
from /usr/lib/ruby/1.8/optparse.rb:1339:in `permute!'
from /usr/lib/ruby/1.8/optparse.rb:1360:in `parse!'
from /usr/lib/ruby/1.8/thin/runner.rb:131:in `parse!'
from /usr/lib/ruby/1.8/thin/runner.rb:47:in `initialize'
from /usr/bin/thin1.8:6:in `new'
from /usr/bin/thin1.8:6

It should instead pass only the current config file path.

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

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

Versions of packages thin1.8 depends on:
ii  libc62.11.2-7Embedded GNU C Library: Shared lib
ii  libdaemons-ruby1.8   1.0.10-2Ruby daemons library
ii  libeventmachine-ruby1.8  0.12.10-1   Event-driven I/O library for high-
ii  librack-ruby1.8  1.1.0-4 A modular Ruby webserver interface
ii  libruby1.8 [libopenssl-ruby1 1.8.7.302-2 Libraries necessary to run Ruby 1.
ii  ruby1.8  1.8.7.302-2 Interpreter of object-oriented scr

thin1.8 recommends no packages.

Versions of packages thin1.8 suggests:
pn  nginx none (no description available)
ii  rails 2.3.5-1.1  MVC ruby based framework geared fo

-- 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#600093: webkit-image-gtk: Binary without man page, nor any doc

2010-10-13 Thread Jeremy Lal
Package: webkit-image-gtk
Version: 0.0.svn23479-1
Severity: normal

Hi,
i tried to use webkit-image-gtk,
but there are no docs at all !
Even -h does not output help, please correct this.

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

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

Versions of packages webkit-image-gtk depends on:
ii  libatk1.0-0  1.30.0-1The ATK accessibility toolkit
ii  libc62.11.2-6Embedded GNU C Library: Shared lib
ii  libcairo21.9.6-6 The Cairo 2D vector graphics libra
ii  libfontconfig1   2.8.0-2.1   generic font configuration library
ii  libfreetype6 2.4.2-2 FreeType 2 font engine, shared lib
ii  libglib2.0-0 2.24.2-1The GLib library of C routines
ii  libgtk2.0-0  2.20.1-1+b1 The GTK+ graphical user interface 
ii  libpango1.0-01.28.1-1Layout and rendering of internatio
ii  libsoup2.4-1 2.30.2-1an HTTP library implementation in 
ii  libwebkit-1.0-2  1.2.4-1 Web content engine library for Gtk

webkit-image-gtk recommends no packages.

webkit-image-gtk 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#599713: libv8: FTBFS on armel NULL used in arithmetic

2010-10-10 Thread Jeremy Lal
Package: libv8
Version: 2.4.7-2
Severity: important

Forwarded upstream :
http://code.google.com/p/v8/issues/detail?id=894


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

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




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



Bug#599603: libv8: FTBFS on armel, new warning prevents compilation

2010-10-09 Thread Jeremy Lal
Package: libv8
Version: 2.2.24-6
Severity: important

See
warnings about 'mangling of 'va_list' has changed in GCC 4.4' not suppressed in 
sytem headers :
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=42748


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

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




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



Bug#599374: dbconfig-common: dbc_mysql_createdb_encoding is missing

2010-10-06 Thread Jeremy Lal
Package: dbconfig-common
Version: 1.8.46
Severity: important

There is a dbc_pgsql_createdb_encoding option, but no corresponding
option for mysql database creation.
I don't know if sqlite supports this, but mysql does.
It breaks redmine encodings for servers with mysql configured by
default with e.g. Latin-1...
I set this as important since someone installing redmine with mysql
have to manually configure the database to work around that problem,
which is painful.

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

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

Versions of packages dbconfig-common depends on:
ii  debconf [debconf-2.0]1.5.36  Debian configuration management sy
ii  ucf  3.0025+nmu1 Update Configuration File: preserv

dbconfig-common recommends no packages.

Versions of packages dbconfig-common suggests:
ii  postgresql-client-8.4 [postgr 8.4.5-1front-end programs for PostgreSQL 
ii  postgresql-client-9.0 [postgr 9.0.1-1front-end programs for PostgreSQL 

-- 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#598709: lighttpd: workaround for acrobat + msie pdf download bug

2010-10-01 Thread Jeremy Lal
Package: lighttpd
Version: 1.4.28-1
Severity: normal

Hi,
downloading a pdf served by lighttpd stalls when client is IE+acrobat.
It would be nice to include the workaround given at the bottom of :
http://redmine.lighttpd.net/issues/171

Which is :
$HTTP[url] =~ \.pdf$ {
  $HTTP[useragent] =~ MSIE {
server.range-requests = disable 
  }
}

This works with latest lighttpd, and is supposed to since 1.4.6.

Regards,
Jérémy.

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

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

Versions of packages lighttpd depends on:
ii  libattr11:2.4.44-2   Extended attribute shared library
ii  libbz2-1.0  1.0.5-6  high-quality block-sorting file co
ii  libc6   2.11.2-6 Embedded GNU C Library: Shared lib
ii  libgamin0 [libfam0] 0.1.10-2+b1  Client library for the gamin file 
ii  libldap-2.4-2   2.4.23-6 OpenLDAP libraries
ii  libpcre38.02-1.1 Perl 5 Compatible Regular Expressi
ii  libssl0.9.8 0.9.8o-2 SSL shared libraries
ii  libterm-readline-perl-p 1.0303-1 Perl implementation of Readline li
ii  lsb-base3.2-25   Linux Standard Base 3.2 init scrip
ii  mime-support3.48-1   MIME files 'mime.types'  'mailcap
ii  zlib1g  1:1.2.3.4.dfsg-3 compression library - runtime

Versions of packages lighttpd recommends:
ii  spawn-fcgi1.6.3-1A fastcgi process spawner

Versions of packages lighttpd suggests:
ii  apache2-utils 2.2.16-2   utility programs for webservers
ii  openssl   0.9.8o-2   Secure Socket Layer (SSL) binary a
pn  rrdtool   none (no description available)

-- 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#596680: plymouth: watch_for_input assertion fails when init is systemd

2010-09-13 Thread Jeremy Lal
Package: plymouth
Version: 0.8.3-9
Severity: normal

Hi, using systemd 8-2 from experimental, with init=/bin/systemd at boot,
plymouth fails to start :

plymouthd: ply_keyboard.c: 384:
ply_keyboard_watch_for_input:
Assertion `keyboard` != ((void*)0) fails

(copied by hand).

I'm using text theme, which works quite well with traditional sysvinit.



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

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

Versions of packages plymouth depends on:
ii  initramfs-tools0.98.3tools for generating an initramfs
ii  libc6  2.11.2-5  Embedded GNU C Library: Shared lib
ii  libcairo2  1.9.6-6   The Cairo 2D vector graphics libra
ii  libdrm-intel1  2.4.21-1~squeeze2 Userspace interface to intel-speci
ii  libdrm-nouveau12.4.21-1~squeeze2 Userspace interface to nouveau-spe
ii  libdrm-radeon1 2.4.21-1~squeeze2 Userspace interface to radeon-spec
ii  libdrm22.4.21-1~squeeze2 Userspace interface to kernel DRM 
ii  libglib2.0-0   2.24.2-1  The GLib library of C routines
ii  libpango1.0-0  1.28.1-1  Layout and rendering of internatio
ii  libpng12-0 1.2.44-1  PNG library - runtime

Versions of packages plymouth recommends:
ii  fontconfig-config 2.8.0-2.1  generic font configuration library
ii  plymouth-themes-all   0.8.3-9Graphical Boot Animation and Logge
ii  ttf-dejavu-core   2.31-1 Vera font family derivate with add

Versions of packages plymouth suggests:
pn  gdm   none (no description available)

-- 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#596682: ufw fails to start with kernel 2.6.35

2010-09-13 Thread Jeremy Lal
Package: ufw
Version: 0.30.0-2
Severity: normal

ufw fails to load /etc/ufw/before.rules at boot time,
with kernel 2.6.35. It works with kernel 2.6.32.

invoke-rc.d ufw restart
works after boot.


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

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

Versions of packages ufw depends on:
ii  debconf [debconf-2.0]1.5.35  Debian configuration management sy
ii  iptables 1.4.9-1 administration tools for packet fi
ii  python   2.6.6-1 interactive high-level object-orie
ii  python-central   0.6.16  register and build utility for Pyt
ii  ucf  3.0025+nmu1 Update Configuration File: preserv

ufw recommends no packages.

Versions of packages ufw suggests:
ii  rsyslog   4.6.4-1enhanced multi-threaded syslogd

-- debconf information:
* ufw/enable: true
* ufw/existing_configuration:
  ufw/oldrules:
  ufw/allow_known_ports:
  ufw/allow_custom_ports:




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



Bug#594724: rabbitmq-server: missing /usr/lib/rabbitmq/bin/rabbitmq-activate-plugins al

2010-08-28 Thread Jeremy Lal
Package: rabbitmq-server
Version: 2.0.0-1
Severity: important

put simply :

/usr/sbin/rabbitmq-activate-plugins: line 48: 
/usr/lib/rabbitmq/bin/rabbitmq-activate-plugins: No such file or directory

Cheers,
Jérémy.

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

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

Versions of packages rabbitmq-server depends on:
ii  adduser3.112 add and remove users and groups
ii  erlang-base1:14.a-dfsg-2 Erlang/OTP virtual machine and bas
ii  erlang-mnesia  1:14.a-dfsg-2 Erlang/OTP distributed relational/
ii  erlang-os-mon  1:14.a-dfsg-2 Erlang/OTP operating system monito
ii  erlang-ssl 1:14.a-dfsg-2 Erlang/OTP implementation of SSL
ii  logrotate  3.7.8-6   Log rotation utility

rabbitmq-server recommends no packages.

rabbitmq-server 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#593190: vim-common: /usr/share/vim/vimcurrent is also in package llvm-dev 2.6-9

2010-08-15 Thread Jeremy Lal
Package: vim-common
Version: 2:7.2.445+hg~cb94c42c0e1a-1
Severity: important

aptitude output :
Preparing to replace vim-common 2:7.2.445+hg~cb94c42c0e1a-1 (using 
.../vim-common_2%3a7.3.000+hg~ee53a39d5896-1_i386.deb) ...
Unpacking replacement vim-common ...
dpkg: error processing 
/var/cache/apt/archives/vim-common_2%3a7.3.000+hg~ee53a39d5896-1_i386.deb 
(--unpack):
 trying to overwrite '/usr/share/vim/vimcurrent', which is also in package 
llvm-dev 2.6-9


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

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

Versions of packages vim-common depends on:
ii  libc6 2.11.2-2   Embedded GNU C Library: Shared lib

Versions of packages vim-common recommends:
pn  vim | vim-gnome | vim-gtk | v none (no description available)

vim-common suggests no packages.

-- Configuration Files:
/etc/vim/vimrc changed [not included]

-- 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#592844: override: libv8-2.2.24:libs/optional, libv8-dev:libdevel/optional

2010-08-13 Thread Jeremy Lal
Package: ftp.debian.org
Severity: normal

chromium-browser has priority optional and depends on libv8,
which had priority extra (see bug #591148).

I uploaded libv8-2.2.24-5, with source package priority optional,
libv8-dbg keeping its extra priority :
libv8-2.2.24_2.2.24-5_i386.deb - optional libs
libv8-dbg_2.2.24-5_i386.deb - extra debug
libv8-dev_2.2.24-5_i386.deb - optional libdevel

With kind regards,
Jérémy Lal




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



Bug#589393: ITP: npm -- package manager for nodejs

2010-07-17 Thread Jeremy Lal
Package: wnpp
Severity: wishlist
Owner: Jeremy Lal kapo...@melix.org


* Package name: npm
  Version : 0.1.19
  Upstream Author : Isaac Zimmitti Schlueter i...@izs.me
* URL : http://github.com/isaacs/npm
* License : MIT
  Programming Lang: Javascript
  Description : package manager for nodejs

npm provides management of nodejs JavaScript libraries and
applications: it allows to publish, tag, and install and handle
dependencies of nodejs modules using common.js packaging spec.




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



Bug#589470: ITP: eot-utils -- Converter from OpenType or TrueType to Embedded OpenType (EOT) font format

2010-07-17 Thread Jeremy Lal
Package: wnpp
Severity: wishlist
Owner: Jeremy Lal kapo...@melix.org


* Package name: eot-utils
  Version : 1.0
  Upstream Author : Bert Bos b...@w3.org
* URL : http://www.w3.org/Tools/eot-utils/
* License : W3C SOFTWARE NOTICE AND LICENSE
  Programming Lang: C
  Description : Tools to convert from OTF or TTF to EOT font format

The eot-utils are the two programs mkeot and eotinfo.
The former creates an EOT (Embedded OpenType) file from an OpenType
or TrueType font and the URLs of one or more Web pages.
mkeot respects the TrueType embedding bits.
The eotinfo program displays the contents of an EOT header in a
human-readable way.




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



Bug#585489: initscripts: There is a loop between service bootlogs and mountnfs

2010-06-10 Thread Jeremy Lal
Package: initscripts
Version: 2.88dsf-8
Severity: important

insserv complains :

Préparation du remplacement de initscripts 2.88dsf-7 (en utilisant 
.../initscripts_2.88dsf-8_i386.deb) ...
Dépaquetage de la mise à jour de initscripts ...
Traitement des actions différées (« triggers ») pour « man-db »...
Paramétrage de initscripts (2.88dsf-8) ...
Installation de la nouvelle version du fichier de configuration 
/etc/init.d/bootlogs ...
Installation de la nouvelle version du fichier de configuration 
/etc/init.d/bootmisc.sh ...
Installation de la nouvelle version du fichier de configuration 
/etc/init.d/checkroot.sh ...
Installation de la nouvelle version du fichier de configuration 
/etc/init.d/mountdevsubfs.sh ...
Installation de la nouvelle version du fichier de configuration 
/etc/init.d/umountfs ...
Installation de la nouvelle version du fichier de configuration 
/etc/init.d/umountnfs.sh ...
insserv: There is a loop between service bootlogs and mountnfs if started
insserv:  loop involving service mountnfs at depth 8
insserv:  loop involving service portmap at depth 7
insserv:  loop involving service alsa-utils at depth 11
insserv: There is a loop between service bootlogs and mountnfs-bootclean if 
started
insserv:  loop involving service mountnfs-bootclean at depth 9
insserv:  loop involving service mountoverflowtmp at depth 8
insserv: There is a loop between service bootlogs and mountoverflowtmp if 
started
insserv:  loop involving service mountall-bootclean at depth 9
insserv: There is a loop between service gdm3 and bootlogd if started
insserv:  loop involving service bootlogd at depth 3
insserv:  loop involving service mountdevsubfs at depth 2
insserv: There is a loop at service bootlogs if started
insserv: There is a loop between service bootlogs and gdm3 if started
insserv:  loop involving service gdm3 at depth 4
insserv:  loop involving service bootlogs at depth 2
insserv:  loop involving service hddtemp at depth 16
insserv:  loop involving service mountall at depth 10
insserv:  loop involving service keymap at depth 5
insserv: exiting now without changing boot order!
update-rc.d: error: insserv rejected the script header
dpkg : erreur de traitement de initscripts (--configure) :
 le sous-processus script post-installation installé a retourné une erreur de 
sortie d'état 1

Regards,
Jérémy.

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

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

Versions of packages initscripts depends on:
ii  coreutils 8.5-1  GNU core utilities
ii  debianutils   3.2.3  Miscellaneous utilities specific t
ii  libc6 2.11.1-3   Embedded GNU C Library: Shared lib
ii  lsb-base  3.2-23.1   Linux Standard Base 3.2 init scrip
ii  mount 2.17.2-3   Tools for mounting and manipulatin
ii  sysv-rc   2.88dsf-8  System-V-like runlevel change mech
ii  sysvinit-utils2.88dsf-8  System-V-like utilities

Versions of packages initscripts recommends:
ii  e2fsprogs 1.41.12-2  ext2/ext3/ext4 file system utiliti
ii  psmisc22.11-1utilities that use the proc file s

initscripts 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#583553: unversionned dependency on librack-ruby1.8 breaks packages depending on librack-ruby (= 1.1.0)

2010-05-28 Thread Jeremy Lal
Package: librack-ruby
Version: 1.1.0-3
Severity: important

When installing rails 2.3.5 on debian/stable using unstable packages,
librack-ruby 1.1.0 gets installed and the unversionned dependency
causes librack-ruby1.8 0.3.0 to be installed.
This breaks libactivesupport-ruby 2.3.5

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

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

Versions of packages librack-ruby depends on:
ii  libjs-jquery  1.4.2-2JavaScript library for dynamic web
ii  librack-ruby1.8   1.1.0-3A modular Ruby webserver interface

librack-ruby recommends no packages.

librack-ruby 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#583107: redmine: conflicts with rails 2.3.5

2010-05-25 Thread Jeremy Lal
Package: redmine
Version: 0.9.4-2
Severity: important

rails has been upgraded to 2.3.5, so redmine is going to
be upgraded soon.

Jérémy :)


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

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

Versions of packages redmine depends on:
ii  dbconfig-common  1.8.46  common framework for packaging dat
ii  debconf [debconf-2.0]1.5.32  Debian configuration management sy
ii  libjs-prototype  1.6.1-1 JavaScript Framework for dynamic w
ii  libjs-scriptaculous  1.8.3-1 JavaScript library for dynamic web
ii  rails2.2.3-2 MVC ruby based framework geared fo
ii  rake 0.8.7-2 a ruby build program
ii  redmine-pgsql0.9.4-2 metapackage providing PostgreSQL d
ii  redmine-sqlite   0.9.4-2 metapackage providing sqlite depen
ii  ruby 4.4 An interpreter of object-oriented 
ii  ruby1.8  1.8.7.249-3 Interpreter of object-oriented scr

Versions of packages redmine recommends:
pn  libapache2-mod-passenger | li none (no description available)
ii  libfcgi-ruby1.8 [libfcgi-ruby 0.8.8-1FastCGI library for Ruby

Versions of packages redmine suggests:
ii  libopenid-ruby 2.1.8debian-1 Ruby library for verifying and ser
ii  librmagick-ruby2.13.0-2  ImageMagick API for Ruby
pn  libsvn-rubynone(no description available)
ii  lighttpd [httpd-cgi]   1.4.26-1.1A fast webserver with minimal memo

-- 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#581048: gdm3: README.Debian gives wrong path for gdm.schemas

2010-05-10 Thread Jeremy Lal
Package: gdm3
Version: 2.30.2-3
Severity: minor

in README.Debian :
/etc/gdm3/gdm.schemas
the right path being
/usr/share/gdm/gdm.schemas
?

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

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

Versions of packages gdm3 depends on:
ii  adduser 3.112add and remove users and groups
ii  debconf [debconf-2.0]   1.5.32   Debian configuration management sy
ii  gconf2  2.28.1-3 GNOME configuration database syste
ii  gnome-session   2.99-1   Dummy gnome-session package.
ii  gnome-session-bin   2.30.0-1 The GNOME Session Manager - Minima
ii  gnome-terminal [x-termi 2.30.1-1 The GNOME terminal emulator applic
ii  libart-2.0-22.3.21-1 Library of functions for 2D graphi
ii  libatk1.0-0 1.30.0-1 The ATK accessibility toolkit
ii  libattr11:2.4.44-1   Extended attribute shared library
ii  libaudit0   1.7.13-1+b1  Dynamic library for security audit
ii  libbonobo2-02.24.3-1 Bonobo CORBA interfaces library
ii  libbonoboui2-0  2.24.3-1 The Bonobo UI library
ii  libc6   2.11-0exp4   Embedded GNU C Library: Shared lib
ii  libcairo2   1.9.6-6  The Cairo 2D vector graphics libra
ii  libcanberra-gtk00.24-1   Gtk+ helper for playing widget eve
ii  libcanberra00.24-1   a simple abstract interface for pl
ii  libdbus-1-3 1.2.24-1 simple interprocess messaging syst
ii  libdbus-glib-1-20.86-1   simple interprocess messaging syst
ii  libdevkit-power-gobject 1:0.9.3-1abstraction for power management -
ii  libfontconfig1  2.8.0-2.1generic font configuration library
ii  libfreetype62.3.11-1 FreeType 2 font engine, shared lib
ii  libgconf2-4 2.28.1-3 GNOME configuration database syste
ii  libglib2.0-02.24.1-1 The GLib library of C routines
ii  libgnome2-0 2.30.0-1 The GNOME library - runtime files
ii  libgnomecanvas2-0   2.30.1-1 A powerful object-oriented display
ii  libgtk2.0-0 2.20.1-1 The GTK+ graphical user interface 
ii  liborbit2   1:2.14.18-0.1libraries for ORBit2 - a CORBA ORB
ii  libpam-modules  1.1.1-3  Pluggable Authentication Modules f
ii  libpam-runtime  1.1.1-3  Runtime support for the PAM librar
ii  libpam0g1.1.1-3  Pluggable Authentication Modules l
ii  libpanel-applet2-0  2.30.0-1 library for GNOME Panel applets
ii  libpango1.0-0   1.28.0-1 Layout and rendering of internatio
ii  libpolkit-gobject-1-0   0.96-2   PolicyKit Authorization API
ii  libpolkit-gtk-1-0   0.96-2   PolicyKit GTK+ API
ii  libpopt01.15-1   lib for parsing cmdline parameters
ii  librsvg2-common 2.26.3-1 SAX-based renderer library for SVG
ii  libselinux1 2.0.94-1 SELinux runtime shared libraries
ii  libwrap07.6.q-18 Wietse Venema's TCP wrappers libra
ii  libx11-62:1.3.3-3X11 client-side library
ii  libxau6 1:1.0.5-2X11 authorisation library
ii  libxdmcp6   1:1.0.3-2X11 Display Manager Control Protoc
ii  libxklavier16   5.0-2X Keyboard Extension high-level AP
ii  libxml2 2.7.7.dfsg-2 GNOME XML library
ii  lsb-base3.2-23.1 Linux Standard Base 3.2 init scrip
ii  policykit-1-gnome   0.96-2   GNOME authentication agent for Pol
ii  upower  0.9.3-1  abstraction for power management
ii  xfce4-session [x-sessio 4.6.1-1  Xfce4 Session Manager
ii  xfce4-terminal [x-termi 0.4.3-1  Xfce terminal emulator
ii  xfwm4 [x-window-manager 4.6.1-1  window manager of the Xfce project
ii  xterm [x-terminal-emula 258-1X terminal emulator
ii  zlib1g  1:1.2.3.4.dfsg-3 compression library - runtime

Versions of packages gdm3 recommends:
ii  at-spi1.30.1-2   Assistive Technology Service Provi
ii  gnome-icon-theme  2.30.2.1-1 GNOME Desktop icon theme
pn  gnome-power-manager   none (no description available)
ii  gnome-settings-daemon 2.30.1-1   daemon handling the GNOME session 
ii  xserver-xephyr2:1.7.7-1  nested X server
ii  xserver-xorg  1:7.5+6the X.Org X server
ii  zenity2.30.0-1   Display graphical dialog boxes fro


Bug#581049: grub-pc: Use desktop-grub alternative in 05_debian_theme

2010-05-10 Thread Jeremy Lal
Package: grub-pc
Version: 1.98-1
Severity: wishlist

Replacing the hard-coded WALLPAPER in 05_debian_theme is quite easy,
WALLPAPER=$(readlink -f /usr/share/images/desktop-base/desktop-grub)

However grub's postinst and prerm should install alternative,
if that's not already the case.

Cheers,
Jérémy.

-- Package-specific info:

*** BEGIN /proc/mounts
/dev/disk/by-uuid/bfbf4c80-8728-4b69-87f4-34ad80ffb45d / ext4 
rw,noatime,nodiratime,errors=remount-ro,barrier=1,data=ordered 0 0
*** END /proc/mounts

*** BEGIN /boot/grub/device.map
(hd0)   /dev/sda
(hd1)   /dev/sdb
*** END /boot/grub/device.map

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

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

function savedefault {
  if [ -z ${boot_once} ]; then
saved_entry=${chosen}
save_env saved_entry
  fi
}
insmod ext2
set root='(hd0,1)'
search --no-floppy --fs-uuid --set bfbf4c80-8728-4b69-87f4-34ad80ffb45d
if loadfont /usr/share/grub/unicode.pf2 ; then
  set gfxmode=640x480
  insmod gfxterm
  insmod vbe
  if terminal_output gfxterm ; then true ; else
# For backward compatibility with versions of terminal.mod that don't
# understand terminal_output
terminal gfxterm
  fi
fi
insmod ext2
set root='(hd0,1)'
search --no-floppy --fs-uuid --set bfbf4c80-8728-4b69-87f4-34ad80ffb45d
set locale_dir=($root)/boot/grub/locale
set lang=fr
insmod gettext
if sleep --verbose --interruptible 1 ; then
  set timeout=0
fi
### END /etc/grub.d/00_header ###

### BEGIN /etc/grub.d/05_debian_theme ###
insmod ext2
set root='(hd0,1)'
search --no-floppy --fs-uuid --set bfbf4c80-8728-4b69-87f4-34ad80ffb45d
insmod png
if background_image /usr/share/images/desktop-base/bluesun-grub.png ; then
  set color_normal=white/black
  set color_highlight=yellow/black
else
  set menu_color_normal=cyan/blue
  set menu_color_highlight=white/blue
fi
### END /etc/grub.d/05_debian_theme ###

### BEGIN /etc/grub.d/10_linux ###
menuentry Debian GNU/Linux, with Linux 2.6.33-2-686 --class debian --class 
gnu-linux --class gnu --class os {
insmod ext2
set root='(hd0,1)'
search --no-floppy --fs-uuid --set bfbf4c80-8728-4b69-87f4-34ad80ffb45d
echoLoading Linux 2.6.33-2-686 ...
linux   /boot/vmlinuz-2.6.33-2-686 
root=UUID=bfbf4c80-8728-4b69-87f4-34ad80ffb45d ro video=i915:modeset=1 quiet 
splash
echoLoading initial ramdisk ...
initrd  /boot/initrd.img-2.6.33-2-686
}
menuentry Debian GNU/Linux, with Linux 2.6.33-2-686 (recovery mode) --class 
debian --class gnu-linux --class gnu --class os {
insmod ext2
set root='(hd0,1)'
search --no-floppy --fs-uuid --set bfbf4c80-8728-4b69-87f4-34ad80ffb45d
echoLoading Linux 2.6.33-2-686 ...
linux   /boot/vmlinuz-2.6.33-2-686 
root=UUID=bfbf4c80-8728-4b69-87f4-34ad80ffb45d ro single video=i915:modeset=1
echoLoading initial ramdisk ...
initrd  /boot/initrd.img-2.6.33-2-686
}
menuentry Debian GNU/Linux, with Linux 2.6.32-4-686 --class debian --class 
gnu-linux --class gnu --class os {
insmod ext2
set root='(hd0,1)'
search --no-floppy --fs-uuid --set bfbf4c80-8728-4b69-87f4-34ad80ffb45d
echoLoading Linux 2.6.32-4-686 ...
linux   /boot/vmlinuz-2.6.32-4-686 
root=UUID=bfbf4c80-8728-4b69-87f4-34ad80ffb45d ro video=i915:modeset=1 quiet 
splash
echoLoading initial ramdisk ...
initrd  /boot/initrd.img-2.6.32-4-686
}
menuentry Debian GNU/Linux, with Linux 2.6.32-4-686 (recovery mode) --class 
debian --class gnu-linux --class gnu --class os {
insmod ext2
set root='(hd0,1)'
search --no-floppy --fs-uuid --set bfbf4c80-8728-4b69-87f4-34ad80ffb45d
echoLoading Linux 2.6.32-4-686 ...
linux   /boot/vmlinuz-2.6.32-4-686 
root=UUID=bfbf4c80-8728-4b69-87f4-34ad80ffb45d ro single video=i915:modeset=1
echoLoading initial ramdisk ...
initrd  /boot/initrd.img-2.6.32-4-686
}
### END /etc/grub.d/10_linux ###

### BEGIN /etc/grub.d/30_os-prober ###
### END /etc/grub.d/30_os-prober ###

### BEGIN /etc/grub.d/40_custom ###
# This file provides an easy way to add custom menu entries.  Simply type the
# menu entries you want to add after this comment.  Be careful not to change
# the 'exec tail' line above.
### END /etc/grub.d/40_custom ###
*** END /boot/grub/grub.cfg

-- System Information:
Debian Release: squeeze/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'testing'), (500, 'stable'), (1, 

Bug#581050: gdm3 does not follow greeter.gconf-defaults settings ?

2010-05-10 Thread Jeremy Lal
Package: gdm3
Version: 2.30.2-3
Severity: minor

I don't manage to get gdm3 respect the gconf settings i've set in
the documented /etc/gdm3/greeter.gconf-defaults file, as written
in the README.Debian.
I also tried setting these using directly gconftool, without any success.

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

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

Versions of packages gdm3 depends on:
ii  adduser 3.112add and remove users and groups
ii  debconf [debconf-2.0]   1.5.32   Debian configuration management sy
ii  gconf2  2.28.1-3 GNOME configuration database syste
ii  gnome-session   2.99-1   Dummy gnome-session package.
ii  gnome-session-bin   2.30.0-1 The GNOME Session Manager - Minima
ii  gnome-terminal [x-termi 2.30.1-1 The GNOME terminal emulator applic
ii  libart-2.0-22.3.21-1 Library of functions for 2D graphi
ii  libatk1.0-0 1.30.0-1 The ATK accessibility toolkit
ii  libattr11:2.4.44-1   Extended attribute shared library
ii  libaudit0   1.7.13-1+b1  Dynamic library for security audit
ii  libbonobo2-02.24.3-1 Bonobo CORBA interfaces library
ii  libbonoboui2-0  2.24.3-1 The Bonobo UI library
ii  libc6   2.11-0exp4   Embedded GNU C Library: Shared lib
ii  libcairo2   1.9.6-6  The Cairo 2D vector graphics libra
ii  libcanberra-gtk00.24-1   Gtk+ helper for playing widget eve
ii  libcanberra00.24-1   a simple abstract interface for pl
ii  libdbus-1-3 1.2.24-1 simple interprocess messaging syst
ii  libdbus-glib-1-20.86-1   simple interprocess messaging syst
ii  libdevkit-power-gobject 1:0.9.3-1abstraction for power management -
ii  libfontconfig1  2.8.0-2.1generic font configuration library
ii  libfreetype62.3.11-1 FreeType 2 font engine, shared lib
ii  libgconf2-4 2.28.1-3 GNOME configuration database syste
ii  libglib2.0-02.24.1-1 The GLib library of C routines
ii  libgnome2-0 2.30.0-1 The GNOME library - runtime files
ii  libgnomecanvas2-0   2.30.1-1 A powerful object-oriented display
ii  libgtk2.0-0 2.20.1-1 The GTK+ graphical user interface 
ii  liborbit2   1:2.14.18-0.1libraries for ORBit2 - a CORBA ORB
ii  libpam-modules  1.1.1-3  Pluggable Authentication Modules f
ii  libpam-runtime  1.1.1-3  Runtime support for the PAM librar
ii  libpam0g1.1.1-3  Pluggable Authentication Modules l
ii  libpanel-applet2-0  2.30.0-1 library for GNOME Panel applets
ii  libpango1.0-0   1.28.0-1 Layout and rendering of internatio
ii  libpolkit-gobject-1-0   0.96-2   PolicyKit Authorization API
ii  libpolkit-gtk-1-0   0.96-2   PolicyKit GTK+ API
ii  libpopt01.15-1   lib for parsing cmdline parameters
ii  librsvg2-common 2.26.3-1 SAX-based renderer library for SVG
ii  libselinux1 2.0.94-1 SELinux runtime shared libraries
ii  libwrap07.6.q-18 Wietse Venema's TCP wrappers libra
ii  libx11-62:1.3.3-3X11 client-side library
ii  libxau6 1:1.0.5-2X11 authorisation library
ii  libxdmcp6   1:1.0.3-2X11 Display Manager Control Protoc
ii  libxklavier16   5.0-2X Keyboard Extension high-level AP
ii  libxml2 2.7.7.dfsg-2 GNOME XML library
ii  lsb-base3.2-23.1 Linux Standard Base 3.2 init scrip
ii  policykit-1-gnome   0.96-2   GNOME authentication agent for Pol
ii  upower  0.9.3-1  abstraction for power management
ii  xfce4-session [x-sessio 4.6.1-1  Xfce4 Session Manager
ii  xfce4-terminal [x-termi 0.4.3-1  Xfce terminal emulator
ii  xfwm4 [x-window-manager 4.6.1-1  window manager of the Xfce project
ii  xterm [x-terminal-emula 258-1X terminal emulator
ii  zlib1g  1:1.2.3.4.dfsg-3 compression library - runtime

Versions of packages gdm3 recommends:
ii  at-spi1.30.1-2   Assistive Technology Service Provi
ii  gnome-icon-theme  2.30.2.1-1 GNOME Desktop icon theme
pn  gnome-power-manager   none (no description available)
ii  gnome-settings-daemon 2.30.1-1   daemon handling the GNOME session 
ii  xserver-xephyr2:1.7.7-1  nested X server
ii  

Bug#579090: debian-maintainers: Please add Jérémy Lal to Debian Maintainers keyring

2010-04-25 Thread Jeremy Lal
Package: debian-maintainers
Severity: normal

Please add Jérémy Lal kapo...@melix.org to Debian Maintainers keyring.
Attached jetring changeset adds new key id 0x074141DC.

Regards,
Jérémy Lal
Comment: Add Jérémy Lal kapo...@melix.org as a Debian Maintainer
Date: Sun, 25 Apr 2010 10:57:44 +0200
Action: import
Recommended-By: 
  Lucas Nussbaum lu...@lucas-nussbaum.net
Agreement: 
  http://lists.debian.org/debian-newmaint/2010/04/msg00018.html
Advocates: 
  http://lists.debian.org/debian-newmaint/2010/04/msg00021.html
Data: 
  -BEGIN PGP PUBLIC KEY BLOCK-
  Version: GnuPG v1.4.10 (GNU/Linux)
  
  mQGiBEVSPkoRBACMgjF+Racg2NhZSingTfdznYAJnMul1UeYPOb+TIlv5J8AiVbf
  AEgWPkd6YnIyvpFl6kPiFcaHMQHC3neQIDm71F7AIXsbR2cgZIr+0YJIuy61729x
  LugiOjGBStsp0e77WV6/DhfzdEmC8NVw9JvMxvlDl6IEkWQHTFU1DKrDwwCg8YXw
  j1aH0GxGfeoWAGEAKU3cM6ED/jNFmXDqu89nhZCbbe5otD9tc5I8JCSoW6cUmZi5
  XMLLi67EeUr2aMyuFrDi5m8ngr9Wh0UC0pu4AgOhhORQ5F/NaFgxTc0TXuin9aPc
  OnKA8RFDbWHGaShXPcxM/XTXdkB1U8wlWSnTxGy+yXmPJk8dtcMlI0KA8RS6FDuz
  YDg5A/9tfku9JEcN+s/H6aNqEwPs1dWMy6/b5f9LibA88wU3w6ZNid/lYi3Gi5IF
  ibCQkAQ/BAVpi7XUNkN8njcj2wS+nutKZXHc1A6udR0gg6rN5PjsLmMDEhtD8fJI
  02KgJFHW3bvMrqDgCCRcKW3b9e0Vkbb9khv3ZVYS5o4m4OXBfLQhSsOpcsOpbXkg
  TGFsIDxqZXJyeUBlZGFnYW1lcy5jb20+iGgEExECACgCGyMGCwkIBwMCBhUIAgkK
  CwQWAgMBAh4BAheABQJLJ20ZBQkJl5W/AAoJEAzESBEHQUHcWOAAoKA5eOaAqElE
  3fWnqV2bqjcHCNt7AKDBw6a9OmeHYIWHmYQ7upDJv0EDW4hGBBARAgAGBQJLv7o9
  AAoJENRTVtSw3a9CQmMAn2NRVzkLuW1bojFOEOh2yJ+4q3KiAJ4wTx2LgdMG788E
  xcljJqO74lwoFIkCHAQQAQIABgUCS7/HygAKCRBQmAIccFGAeEhuEACZjYLbKLu1
  8+PKsorUhII9ps4JLBS1AHAe/A40O883nJxFeuGj19Ab5nStYbYzr68ZxHW493uc
  b1c7oCqdepS2AOTySnCMAKR5h8N9j+Q8uUQjcetAvWn6E3wi40tvs51hW8tRAs9b
  MOgLOrz6wYt0BM3FfUCgvanCtuMaTs1dZ40UonxuAakZfWa7H9bKVBt4sIZdKFil
  5alnQS9F78xbDxZxXL7mOGFxyx37vepHKVSejK10yias6qZDpEDatnuBH/VrjqrK
  cE2m6L/3Wjrt1HX4sn7E451f3HaQzGbowUAQv8afAimJSf+lpE90UgSl6/mVWhMo
  wPpCFaVSidYzq21pSe6ovCfOvYLk8mhOom7S2LXmOfAI2heKmyKkuNWYh5cnIE/N
  UcImVEKJ5qE/3ZGkKmZ5gxXI/D3DKBGm/mgVnPvPNS+7p4NJe9LU1/82xaDoROly
  qbDc4QaUufozt77eJrMVqHKUk1nYSMSM1qsaob3nfAyb3lXvLQYgvKKW8zpm0cYz
  nwmKROu1nAb83pMs2iw6RRqzzCu4rBc+lrAoAooimXnCFNK2P4ZpG5O6UvkhglLv
  b7lJdtVMKmcQgsTBfJJSMAC4Y30QTLzyi9PfuHulGQ4XQ+udEVF/3IQPQQfU0fnR
  NqFgTz+3rzx27bHouyPQk6eZHilhWGM2q4hGBBARCAAGBQJLuJwYAAoJEImYDSnA
  3cg/2HQAnjcyULTGEA+JVnY0HT7iZFy0cHUmAKCgKR2jJCTv/WUvd4/5MBorsdpf
  n7QgSsOpcsOpbXkgTGFsIDxrYXBvdWVyQG1lbGl4Lm9yZz6IaAQTEQIAKAUCS8Bn
  OQIbIwUJCZeVvwYLCQgHAwIGFQgCCQoLBBYCAwECHgECF4AACgkQDMRIEQdBQdxi
  sgCfXdZ03JLS1pHAbJ0pCNZUlxk/d9oAoJWdh/Vj7WDpohfYo5isBKHkzGObiGAE
  ExECACAFAkVSPkoCGyMGCwkIBwMCBBUCCAMEFgIDAQIeAQIXgAAKCRAMxEgRB0FB
  3FT/AJ9+qqjRnkOAk0XHiePueSnz1aTtcACgzQwzkpS1dbjzkcRpGe4+pc7LUw+I
  ZgQTEQIAJgIbIwYLCQgHAwIEFQIIAwQWAgMBAh4BAheABQJLJ20ZBQkJl5W/AAoJ
  EAzESBEHQUHccxsAoLnXiW34jBxpj2Ubfta8gtNy1X3FAJwLNf3Jc7tjatlLblaT
  t07GxWxoN4hpBBMRAgApAhsjBgsJCAcDAgQVAggDBBYCAwECHgECF4AFCQmXlb8F
  Aksnci4CGQEACgkQDMRIEQdBQdzgMwCdGi7cDTITua54d9sqCrI1DMpBPC8AnRNZ
  pGd42p6HJx67GN1pn0mf43kxiEYEEBECAAYFAku/uj0ACgkQ1FNW1LDdr0JiQwCg
  os1omfjnmzz9YXZd+hkqwqPcBAUAoJi2pHEb+Lk3K2Jt4sm72D+BcsauiQIcBBAB
  AgAGBQJLv8fKAAoJEFCYAhxwUYB4NkIP/3rMqvZGQ8YpCdz5c1VTyKO77fQxKf8C
  klUXW7lIQ3BPO266tdwkM0umdOUDaA/Gw4HB7zETluJcxY4XDrQTOC1K90GCLfqD
  pFJzpUTmJ4hRhxKfMdgwIwwzJLr3QbCeCGzQD9nk67zSmi3P44q3zAUWF4dsmi7b
  I4iJDuoST9f+Wy3S9rBCYiyroR3NCbU/DwC7HtFXDLKkKqDYdTApDXcZ0EuLSY1D
  Tus6x91QohNyQG3M7Aj56DAQcbAopZjjn8qrNWY11eZnNKgc7Rldt9L7E0jACnIU
  oTpJ1w4RlS+gDbOK7YiWtm4jbfCx07Cqt5hIxgbr5p0hkUgl/Rp+ZPaoWdfDSqMV
  HQXNTXH7peTNmG33gYpuVEFtJLJJta3Beg+yakt60TRXrGICADPmEzwDzKbT/s0R
  T0oqIk32vXhnYoz7Jkx93/ptJ4VsPxDE8B9ImzHBRH8NDel3gW5zCEFfLzEdvgW5
  46/dAA+fv0E8O1+FwDACHnb2qubtcW3hLIK71AstRRQP6DaTNC0cDrt9uxB5CoHC
  arclK4qp7gTRJZvPXFjbTv3lEvwSQybdve2v1Sg+XyiztQJ10YEfUGfwkYEt/Exu
  OvZOqEO+JIzCRA0Sn+Vf0VpzWUHU3o9f2cXKe2ZfLq3DeLI7SskKRuhN7zZLewWR
  l7p7ZlPql4CMiEYEEBEIAAYFAku4nBgACgkQiZgNKcDdyD9ZiACgpM7zM0F9zOr6
  nB/qAzBXE8Ii6f0AoKVjD1hUMl26UefKgDOXp6DCDtiItCFKw6lyw6lteSBMYWwg
  PGplcmVteS5sYWxAbTR4Lm9yZz6IaAQTEQIAKAIbIwYLCQgHAwIGFQgCCQoLBBYC
  AwECHgECF4AFAksnbRYFCQmXlb8ACgkQDMRIEQdBQdwSZQCghrDriO2tDTl/smDU
  reS9lhYNuNMAoJ2bMv2x3Pm6gwuhbPmjpI89PLksiEYEEBECAAYFAku/uj0ACgkQ
  1FNW1LDdr0IGQACdFG65umtwclkpszrP19njyY0AAZIAnAqsLzlhCH+h8JkU9Y9Q
  3mUz5ZBmiQIcBBABAgAGBQJLv8fKAAoJEFCYAhxwUYB4N5IP/1CNCaw9pePWpA7/
  qbJOJve6KNrbDeK8nS7KZgSSxrSUUKSKKKjl02ZJtptOtoJ8kWvlHxmKi5MpxPVR
  rHe8b/it5cwQzbQOoTnkzSolx3C8ivgkipO+CrPcGFpGP8du9s4rzUJHpZcwufVi
  w/flhutxQk0Q9x+g+QujupMCf3/fvOEWAmO+fLk5HPyiDwEBjJZVgFI/zzr5Ui5n
  sQENfcO13iofP2C6dg3Wr3XD1M0ORHMt6a55+AAxmV3wpsHrmg+tkj/CM76pfQqI
  iQDaWy3vNRXkFMowIwm2PlrrFl47sGaVtHzRzpzc40mEmArZOlOFskKr6e3DXXDX
  fZWEUXfvlLm+OX9FR7gTEL03fGGedikhx3/R+fLBoEHBw2qJGhf3Rq75VhPTmRnj
  Bl/TdFuz7nXTLwhcm0SLHfM/dTAcOfb2SaLT+CbBmwDyWEcHqXN8bVcQ6JNwUf2C
  0G6DAcUJpD65AMQGuDOYk8Ybz4BhIch2Gb/bGeZMYy9zrbKBfc49ql0fKlfjbIqL
  Ja9vcV/BwrVqMPlK48lVKwfqZhzfVxLWNs4EuBuUmIrqhgeYp5KSFyJrcIA3W6yR
  yKAAb9fWmTLDp+F77qdgayC+Z2IJoD51C0L+9P1cXQquTtYvmL+z4hH8EUjGIV/t
  

Bug#578030: gnome-keyring: daemon not launched by pam.d/gdm module upon login

2010-04-16 Thread Jeremy Lal
Package: gnome-keyring
Version: 2.30.0-2
Severity: normal

I downgraded libpam-gnome-keyring, gnome-keyring to 2.28.
Upgrading to version 2.30 does not start gnome-keyring-daemon upon gdm
login anymore.
There are absolutely no differences in /var/log/auth.log between
version gnome-keyring 2.28 and 2.30.
Upgrading/downgrading gdm does not change anything.
With version 2.30 i have to manually launch gnome-keyring-daemon
after login. Maybe it was launched properly then crashed.
Is there a way to get more ouput from gnome-keyring when launched
by gdm pam ?

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

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

Versions of packages gnome-keyring depends on:
ii  dbus-x11  1.2.24-1   simple interprocess messaging syst
ii  gconf22.28.1-3   GNOME configuration database syste
ii  libc6 2.11-0exp4 Embedded GNU C Library: Shared lib
ii  libdbus-1-3   1.2.24-1   simple interprocess messaging syst
ii  libgconf2-4   2.28.1-3   GNOME configuration database syste
ii  libgcr0   2.30.0-2   Library for Crypto UI related task
ii  libgcrypt11   1.4.5-2LGPL Crypto library - runtime libr
ii  libglib2.0-0  2.24.0-1   The GLib library of C routines
ii  libgp11-0 2.30.0-2   Glib wrapper library for PKCS#11 -
ii  libgtk2.0-0   2.20.0-3   The GTK+ graphical user interface 
ii  libpango1.0-0 1.28.0-1   Layout and rendering of internatio
ii  libtasn1-32.5-1  Manage ASN.1 structures (runtime)

Versions of packages gnome-keyring recommends:
ii  libpam-gnome-keyring  2.28.2-1   PAM module to unlock the GNOME key

gnome-keyring 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#576870: rubygems1.8: rubygems 1.3.6 isn't compatible with rails 2.2.2 (undefined method version_requirements=)

2010-04-07 Thread Jeremy Lal
Package: rubygems1.8
Version: 1.3.6-1
Severity: normal

This bug is described here :
http://rubyforge.org/tracker/index.php?func=detailaid=27868group_id=126atid=575

Regards,
Jérémy.

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

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

Versions of packages rubygems1.8 depends on:
ii  ruby1.8 [rdoc1.8]1.8.7.249-3 Interpreter of object-oriented scr

rubygems1.8 recommends no packages.

Versions of packages rubygems1.8 suggests:
ii  build-essential  11.5Informational list of build-essent
ii  ruby1.8-dev  1.8.7.249-3 Header files for compiling extensi
pn  rubygems-doc none  (no description available)

-- 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#576709: thunar: double-clic on item works only once

2010-04-06 Thread Jeremy Lal
Package: thunar
Version: 1.0.1-3
Severity: normal

Sorry for the lack of precision :
when i open a folder by double-clicking, i can't open sub-folders
the same way. Clic or double-clic just don't select nor open anything,
file or folder. Right-clic works, though.
This behaviour appeared with a recent dependency update,
i'll try to spot which one.
Starting thunar from command-line (no daemon) doesn't display any error.
Regards,
Jérémy.
 

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

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

Versions of packages thunar depends on:
ii  desktop-file-utils0.15-2 Utilities for .desktop files
ii  exo-utils 0.3.106-1  Utility files for libexo
ii  libatk1.0-0   1.30.0-1   The ATK accessibility toolkit
ii  libc6 2.10.2-6   Embedded GNU C Library: Shared lib
ii  libcairo2 1.9.4-1The Cairo 2D vector graphics libra
ii  libdbus-1-3   1.2.24-1   simple interprocess messaging syst
ii  libdbus-glib-1-2  0.84-1 simple interprocess messaging syst
ii  libexo-0.3-0  0.3.106-1  Library with extensions for Xfce
ii  libfreetype6  2.3.11-1   FreeType 2 font engine, shared lib
ii  libglib2.0-0  2.24.0-1   The GLib library of C routines
ii  libgtk2.0-0   2.20.0-2   The GTK+ graphical user interface 
ii  libice6   2:1.0.6-1  X11 Inter-Client Exchange library
ii  libpango1.0-0 1.28.0-1   Layout and rendering of internatio
ii  libsm62:1.1.1-1  X11 Session Management library
ii  libthunar-vfs-1-2 1.0.1-3VFS abstraction used in thunar
ii  libx11-6  2:1.3.3-2  X11 client-side library
ii  libxfce4util4 4.6.1-2Utility functions library for Xfce
ii  shared-mime-info  0.71-1 FreeDesktop.org shared MIME databa
ii  thunar-data   1.0.1-3Provides thunar documentation, ico

Versions of packages thunar recommends:
ii  dbus-x11 1.2.24-1simple interprocess messaging syst
ii  gamin0.1.10-2+b1 File and directory monitoring syst
ii  hal  0.5.14-2Hardware Abstraction Layer
ii  thunar-volman0.3.80-4Thunar extension for volumes manag
ii  xdg-user-dirs0.12-1  tool to manage well known user dir
ii  xfce4-panel  4.6.3-1 The Xfce4 desktop environment pane

Versions of packages thunar suggests:
ii  thunar-archive-plugin 0.2.4-5Archive plugin for Thunar file man
ii  thunar-media-tags-plugin  0.1.2-2Media tags plugin for Thunar file 

-- 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#576707: thunar: does not build with gold linker

2010-04-06 Thread Jeremy Lal
Package: thunar
Version: 1.0.1-3
Severity: minor

I got errors trying to debuild thunar packages from source, using binutils-gold.
A quick search on google hints it's a gold linker problem, see :
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=554305
I point to this page since the solution seems quite easy,
and also made sure thunar packages build ok without binutils-gold.

Here's the build error :
/usr/bin/ld.gold.real: ../../thunar-vfs/.libs/libthunar-vfs-1.so: error: 
undefined reference to 'XInternAtom'
/usr/bin/ld.gold.real: ../../thunar-vfs/.libs/libthunar-vfs-1.so: error: 
undefined reference to 'XGetWindowProperty'
/usr/bin/ld.gold.real: ../../thunar-vfs/.libs/libthunar-vfs-1.so: error: 
undefined reference to 'XFree'


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

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

Versions of packages thunar depends on:
ii  desktop-file-utils0.15-2 Utilities for .desktop files
ii  exo-utils 0.3.106-1  Utility files for libexo
ii  libatk1.0-0   1.30.0-1   The ATK accessibility toolkit
ii  libc6 2.10.2-6   Embedded GNU C Library: Shared lib
ii  libcairo2 1.9.4-1The Cairo 2D vector graphics libra
ii  libdbus-1-3   1.2.24-1   simple interprocess messaging syst
ii  libdbus-glib-1-2  0.84-1 simple interprocess messaging syst
ii  libexo-0.3-0  0.3.106-1  Library with extensions for Xfce
ii  libfreetype6  2.3.11-1   FreeType 2 font engine, shared lib
ii  libglib2.0-0  2.24.0-1   The GLib library of C routines
ii  libgtk2.0-0   2.20.0-2   The GTK+ graphical user interface 
ii  libice6   2:1.0.6-1  X11 Inter-Client Exchange library
ii  libpango1.0-0 1.28.0-1   Layout and rendering of internatio
ii  libsm62:1.1.1-1  X11 Session Management library
ii  libthunar-vfs-1-2 1.0.1-3VFS abstraction used in thunar
ii  libx11-6  2:1.3.3-2  X11 client-side library
ii  libxfce4util4 4.6.1-2Utility functions library for Xfce
ii  shared-mime-info  0.71-1 FreeDesktop.org shared MIME databa
ii  thunar-data   1.0.1-3Provides thunar documentation, ico

Versions of packages thunar recommends:
ii  dbus-x11  1.2.24-1   simple interprocess messaging syst
pn  gamin none (no description available)
ii  hal   0.5.14-2   Hardware Abstraction Layer
ii  thunar-volman 0.3.80-4   Thunar extension for volumes manag
ii  xdg-user-dirs 0.12-1 tool to manage well known user dir
ii  xfce4-panel   4.6.3-1The Xfce4 desktop environment pane

Versions of packages thunar suggests:
ii  thunar-archive-plugin 0.2.4-5Archive plugin for Thunar file man
ii  thunar-media-tags-plugin  0.1.2-2Media tags plugin for Thunar file 

-- 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#575383: nodejs: package has been built with patches unapplied

2010-03-25 Thread Jeremy Lal
Package: nodejs
Version: 0.1.33-1
Severity: important

A new properly built package is on the way to being uploaded.

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

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

Versions of packages nodejs depends on:
ii  libc6 2.10.2-6   Embedded GNU C Library: Shared lib
ii  libev31:3.9-1high-performance event loop librar
ii  libgcc1   1:4.4.3-5  GCC support library
ii  libgnutls26   2.8.6-1the GNU TLS library - runtime libr
ii  libgpg-error0 1.6-1  library for common error values an
ii  libstdc++64.4.3-5The GNU Standard C++ Library v3
ii  libudns0  0.0.9-3async-capable DNS stub resolver li
ii  libv8-2.1.6   2.1.6-1V8 JavaScript Engine
ii  rlwrap0.36-1 readline feature command line wrap

nodejs recommends no packages.

nodejs 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#575281: plymouth: no debian/watch (here's one)

2010-03-24 Thread Jeremy Lal
Package: plymouth
Version: 0.7.2-4
Severity: wishlist

Please add this debian/watch... 

version=3
http://www.freedesktop.org/software/plymouth/releases/plymouth-(.*)\.tar\.bz2 
debian uupdate


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

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

Versions of packages plymouth depends on:
ii  initramfs-tools 0.93.4   tools for generating an initramfs
ii  libatk1.0-0 1.28.0-1 The ATK accessibility toolkit
ii  libc6   2.10.2-6 Embedded GNU C Library: Shared lib
ii  libcairo2   1.9.4-1  The Cairo 2D vector graphics libra
ii  libfontconfig1  2.8.0-2  generic font configuration library
ii  libfreetype62.3.11-1 FreeType 2 font engine, shared lib
ii  libglib2.0-02.22.4-1 The GLib library of C routines
ii  libgtk2.0-0 2.18.9-2 The GTK+ graphical user interface 
ii  libpango1.0-0   1.26.2-2 Layout and rendering of internatio
ii  libpng12-0  1.2.43-1 PNG library - runtime
ii  plymouth-plugins-all0.7.2-4  Graphical Boot Animation and Logge
ii  plymouth-plugins-fade-i 0.7.2-4  Graphical Boot Animation and Logge
ii  plymouth-plugins-label  0.7.2-4  Graphical Boot Animation and Logge
ii  plymouth-plugins-solar  0.7.2-4  Graphical Boot Animation and Logge
ii  plymouth-plugins-spinfi 0.7.2-4  Graphical Boot Animation and Logge
ii  zlib1g  1:1.2.3.4.dfsg-3 compression library - runtime

plymouth recommends no packages.

Versions of packages plymouth suggests:
ii  gdm   2.20.10-1  GNOME Display Manager

-- 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#575155: nginx: no svg entry in mime.types

2010-03-23 Thread Jeremy Lal
Package: nginx
Severity: minor

Please add :
image/svg+xml svg svgz;
to /etc/nginx/mime.types
(i took that line from /etc/mime.types)
svg is not yet supported by all browsers, but will be soon !

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

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




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



Bug#574967: ITP: multiwatch -- Forks and watches multiple instances of a program

2010-03-22 Thread Jeremy Lal
Package: wnpp
Severity: wishlist
Owner: Jeremy Lal kapo...@melix.org
Owner: Jeremy Lal kapo...@melix.org


* Package name: multiwatch
  Version : no upstream version (yet)
  Upstream Author : Stefan Bühler lighttpd at stbuehler.de
* URL : http://cgit.lighttpd.net/multiwatch/
* License : MIT
  Programming Lang: C
  Description : Forks and watches multiple instances of a program

 multiwatch forks multiple instance of one application and
 keeps them running; it is made to be used with spawn-fcgi
 so all forks share the same fastcgi socket (no webserver
 restart needed if you increase/decrease the number of forks),
 and it is easier than to setup multiple daemontool or runit
 supervised instances.




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



Bug#571559: lighttpd: fastcgi bin-environment variable not set

2010-02-25 Thread Jeremy Lal
Package: lighttpd
Version: 1.4.26-1
Severity: normal

I want to get an environment variable MY_VAR in a small c program (attached),
and it used to work with a previous version of lighttpd. With this version it 
does not. Some variables are properly set, e.g. QUERY_STRING is ok.
I also attached the lighttpd config file.



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

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

Versions of packages lighttpd depends on:
ii  libattr11:2.4.44-1   Extended attribute shared library
ii  libbz2-1.0  1.0.5-4  high-quality block-sorting file co
ii  libc6   2.10.2-5 Embedded GNU C Library: Shared lib
ii  libgamin0 [libfam0] 0.1.10-2+b1  Client library for the gamin file 
ii  libldap-2.4-2   2.4.17-2.1   OpenLDAP libraries
ii  libpcre37.8-3Perl 5 Compatible Regular Expressi
ii  libssl0.9.8 0.9.8k-8 SSL shared libraries
ii  libterm-readline-perl-p 1.0303-1 Perl implementation of Readline li
ii  lsb-base3.2-23   Linux Standard Base 3.2 init scrip
ii  mime-support3.48-1   MIME files 'mime.types'  'mailcap
ii  zlib1g  1:1.2.3.4.dfsg-3 compression library - runtime

Versions of packages lighttpd recommends:
ii  spawn-fcgi1.6.3-1A fastcgi process spawner

Versions of packages lighttpd suggests:
ii  apache2-utils 2.2.14-7   utility programs for webservers
ii  openssl   0.9.8k-8   Secure Socket Layer (SSL) binary a
pn  rrdtool   none (no description available)

-- no debconf information
/* gcc testbinenv.c -o testbinenv -lfcgi */
#include stdlib.h
#include string.h
#include fcgi_stdio.h

int main(int argc, char *argv[])
{
	while (FCGI_Accept() = 0) {
		printf(Content-type: text/html;charset=UTF-8\r\n\r\n);
		printf(one loop);
		char* fTemp = getenv(MY_VAR);
		if (fTemp == NULL || strlen(fTemp) == 0) {
			printf(no MY_VAR\r\n);
			continue;
		}
		printf(MY_VAR : %s\r\n, fTemp);
	} // FCGI_Accept()

	return 0;
}


server.modules   += ( mod_fastcgi )

$HTTP[remoteip] =~ 127.0.0.1 {
fastcgi.server+= ( testbinenv.fcgi =
((
bin-path = /home/toto/testbinenv,
socket = /var/run/lighttpd/testbinenv.socket,
max-procs = 1,
idle-timeout = 5,
check-local   = disable,
bin-environment = (
MY_VAR = test_my_var
),
bin-copy-environment = (
PATH, SHELL, USER
)
))
)
}


Bug#569811: rails: xhr requests return error 500 (patch provided)

2010-02-14 Thread Jeremy Lal
Package: rails
Version: 2.2.3-2
Severity: normal

In package redmine, xhr requests always return error 500.
It does not happen with the provided (very simple) patch,
which i took from rails 2.3.5.

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

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

Versions of packages rails depends on:
ii  libbuilder-ruby  2.1.2-1 Ruby library to facilitate program
ii  liberb-ruby  4.2 transitional dummy package
ii  libjs-prototype  1.6.1-1 JavaScript Framework for dynamic w
ii  libredcloth-ruby1.8  4.2.2-1 Textile module for Ruby 1.8
ii  libruby [liberb-ruby]4.2 Libraries necessary to run Ruby 1.
ii  libruby1.8-extras0.5 a bundle of additional libraries f
ii  libsqlite3-ruby  1.2.4-2 SQLite3 interface for Ruby
ii  libxml-simple-ruby   1.0.12-1Simple Ruby API for reading and wr
ii  rake 0.8.7-1 a ruby build program
ii  rdoc 4.2 Generate documentation from ruby s
ii  ruby 4.2 An interpreter of object-oriented 
ii  ruby1.8  1.8.7.249-1 Interpreter of object-oriented scr

Versions of packages rails recommends:
ii  irb   4.2Interactive Ruby (irb)
ii  libmocha-ruby 0.9.8-1Mocking and stubbing library for R

Versions of packages rails suggests:
pn  libapache2-mod-ruby | libapac none (no description available)
ii  libfcgi-ruby1.8 [libfcgi-ruby 0.8.8-1FastCGI library for Ruby

-- no debconf information
diff --git a/actionpack/lib/action_controller/request_forgery_protection.rb b/actionpack/lib/action_controller/request_forgery_protection.rb
index 3e0e94a..1dc6ad6 100644
--- a/actionpack/lib/action_controller/request_forgery_protection.rb
+++ b/actionpack/lib/action_controller/request_forgery_protection.rb
@@ -94,6 +94,7 @@ module ActionController #:nodoc:
   def verified_request?
 !protect_against_forgery? ||
   request.method == :get  ||
+  request.xhr?||
   !verifiable_request_format? ||
   form_authenticity_token == params[request_forgery_protection_token]
   end


Bug#569311: libev: ev_stat bug, fixed in version 3.9

2010-02-11 Thread Jeremy Lal
Package: libev
Version: 3.8
Severity: normal

This bug affects nodejs package :
http://lists.schmorp.de/pipermail/libev/2009q4/000808.html

It has been fixed in libev 3.9,
it would be nice to upgrade that package.

Regards,
Jérémy Lal


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

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




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



Bug#568861: redmine: should migrate db even if not reinstalling via dbconfig

2010-02-08 Thread Jeremy Lal
Package: redmine
Version: 0.9.1-1
Severity: normal

If the user doesn't reinstall database when prompted by dbconfig,
the database previously installed by dbconfig are not migrated using
rake db:migrate.
So if the database instance is present in debconf and the corresponding
database.yml file is present, run rake db:migrate and migrate plugins too.

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

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

Versions of packages redmine depends on:
ii  dbconfig-common  1.8.43  common framework for packaging dat
ii  debconf [debconf-2.0]1.5.28  Debian configuration management sy
ii  libjs-prototype  1.6.1-1 JavaScript Framework for dynamic w
ii  libjs-scriptaculous  1.8.3-1 JavaScript library for dynamic web
ii  rails2.2.3-2 MVC ruby based framework geared fo
ii  rake 0.8.7-1 a ruby build program
ii  redmine-pgsql0.9.1-1 metapackage providing PostgreSQL d
ii  redmine-sqlite   0.9.1-1 metapackage providing sqlite depen
ii  ruby 4.2 An interpreter of object-oriented 
ii  ruby1.8  1.8.7.249-1 Interpreter of object-oriented scr

Versions of packages redmine recommends:
pn  libapache2-mod-fcgid  none (no description available)
ii  libfcgi-ruby1.8 [libfcgi-ruby 0.8.7-4.1  FastCGI library for Ruby

Versions of packages redmine suggests:
ii  libopenid-ruby 2.1.7debian-1 Ruby library for verifying and ser
ii  librmagick-ruby2.13.0-1  ImageMagick API for Ruby
pn  libsvn-rubynone(no description available)
ii  lighttpd [httpd-cgi]   1.4.25-2  A fast webserver with minimal memo

-- 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#568552: blueproximity: does not start : TypeError: warn() got multiple values for keyword argument 'stacklevel'

2010-02-05 Thread Jeremy Lal
Package: blueproximity
Version: 1.2.5-4
Severity: important

This happens when starting blueproximity (not for the first time,
but i removed .blueproximity/):

Creating new config directory '/home/dev/.blueproximity'.
Traceback (most recent call last):
  File /usr/share/blueproximity/proximity.py, line 1274, in module
config = ConfigObj(os.path.join(conf_dir, _('standard') + 
'.conf'),{'create_empty':True,'file_error':False,'configspec':conf_specs})
  File /usr/lib/pymodules/python2.5/configobj.py, line 1206, in __init__
DeprecationWarning, stacklevel=2)
TypeError: warn() got multiple values for keyword argument 'stacklevel'


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

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

Versions of packages blueproximity depends on:
ii  bluetooth4.60-1  Bluetooth support
ii  python   2.5.4-9 An interactive high-level object-o
ii  python-bluez 0.18-1+b1   Python wrappers around BlueZ for r
ii  python-central   0.6.14+nmu2 register and build utility for Pyt
ii  python-configobj 4.7.0-1 simple but powerful config file re
ii  python-glade22.16.0-2GTK+ bindings: Glade support
ii  python-gobject   2.20.0-1+b1 Python bindings for the GObject li
ii  python-gtk2  2.16.0-2Python bindings for the GTK+ widge

Versions of packages blueproximity recommends:
ii  librsvg2-common   2.26.0-1   SAX-based renderer library for SVG

Versions of packages blueproximity suggests:
ii  gnome-screensaver 2.28.0-2   GNOME screen saver and locker

-- 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#567140: libhdf5-serial-1.8.4 conflicts with libhdf5-serial-1.8.3 and octave3.0 depends on it

2010-01-27 Thread Jeremy Lal
Package: octave3.0
Version: 1:3.0.5-7
Severity: important

libhdf5-serial-1.8.4 has been uploaded to debian/unstable, and that package 
conflicts with libhdf5-serial-1.8.3, so it makes apt uninstall octave3.0 (and 
also octave3.0-plplot) because those packages depend on version 1.8.3.

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

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

Versions of packages octave3.0 depends on:
ii  libamd2.2.0 1:3.4.0-1approximate minimum degree orderin
ii  libatlas3gf-base [libla 3.6.0-24 Automatically Tuned Linear Algebra
ii  libblas3gf [libblas.so. 1.2-2Basic Linear Algebra Subroutines 3
ii  libc6   2.10.2-5 Embedded GNU C Library: Shared lib
ii  libcamd2.2.01:3.4.0-1symmetric approximate minimum degr
ii  libccolamd2.7.1 1:3.4.0-1constrained column approximate lib
ii  libcholmod1.7.1 1:3.4.0-1sparse Cholesky factorization libr
ii  libcolamd2.7.1  1:3.4.0-1column approximate minimum degree 
ii  libcurl3-gnutls 7.19.7-1 Multi-protocol file transfer libra
ii  libcxsparse2.2.31:3.4.0-1concise sparse matrix library (com
ii  libfftw3-3  3.2.2-1  library for computing Fast Fourier
ii  libgcc1 1:4.4.3-1GCC support library
ii  libgfortran34.4.3-1  Runtime library for GNU Fortran ap
ii  libglpk04.38-1   linear programming kit with intege
ii  libhdf5-serial-1.8.3 [l 1.8.3-2.1Hierarchical Data Format 5 (HDF5) 
ii  liblapack3gf [liblapack 3.2.1-2  library of linear algebra routines
ii  libncurses5 5.7+20090803-2   shared libraries for terminal hand
ii  libpcre37.8-3Perl 5 Compatible Regular Expressi
ii  libqhull5   2009.1-1 calculate convex hulls and related
ii  libreadline66.1-1GNU readline and history libraries
ii  libstdc++6  4.4.3-1  The GNU Standard C++ Library v3
ii  libumfpack5.4.0 1:3.4.0-1sparse LU factorization library
ii  octave3.0-common1:3.0.5-7architecture-independent files for
ii  texinfo 4.13a.dfsg.1-5   Documentation system for on-line i
ii  zlib1g  1:1.2.3.4.dfsg-3 compression library - runtime

Versions of packages octave3.0 recommends:
ii  gnuplot   4.2.6-1A command-line driven interactive 
ii  libatlas3gf-base  3.6.0-24   Automatically Tuned Linear Algebra

Versions of packages octave3.0 suggests:
ii  octave3.0-doc 1:3.0.5-7  PDF documentation on the GNU Octav
pn  octave3.0-emacsen none (no description available)
ii  octave3.0-headers 1:3.0.5-7  header files for the GNU Octave la
pn  octave3.0-htmldoc none (no description available)
pn  octave3.0-infonone (no description available)

-- 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#566243: xfce4-clipman-plugin: xfconf setting for reverse order could be documented somewhere

2010-01-22 Thread Jeremy Lal
Package: xfce4-clipman-plugin
Version: 2:1.1.3-2
Severity: wishlist

There is a hidden setting to make clipman list history in reverse order :
xfconf-query -c xfce4-panel -p /plugins/clipman/tweaks/reverse-menu-order -s 
true -t bool --create

It would be nice that command be added somewhere in the documentation.

See :
http://bugzilla.xfce.org/show_bug.cgi?id=5502

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

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

Versions of packages xfce4-clipman-plugin depends on:
ii  libatk1.0-0 1.28.0-1 The ATK accessibility toolkit
ii  libc6   2.10.2-5 Embedded GNU C Library: Shared lib
ii  libcairo2   1.9.4-1  The Cairo 2D vector graphics libra
ii  libdbus-1-3 1.2.16-2 simple interprocess messaging syst
ii  libdbus-glib-1-20.82-2   simple interprocess messaging syst
ii  libexo-0.3-00.3.106-1Library with extensions for Xfce
ii  libfontconfig1  2.8.0-2  generic font configuration library
ii  libfreetype62.3.11-1 FreeType 2 font engine, shared lib
ii  libglib2.0-02.22.4-1 The GLib library of C routines
ii  libgtk2.0-0 2.18.6-1 The GTK+ graphical user interface 
ii  libice6 2:1.0.6-1X11 Inter-Client Exchange library
ii  libpango1.0-0   1.26.2-1 Layout and rendering of internatio
ii  libsm6  2:1.1.1-1X11 Session Management library
ii  libx11-62:1.3.3-1X11 client-side library
ii  libxfce4util4   4.6.1-2  Utility functions library for Xfce
ii  libxfcegui4-4   4.6.3-1  Basic GUI C functions for Xfce4
ii  libxfconf-0-2   4.6.1-2  Client library for Xfce4 configure
ii  xfce4-clipman   2:1.1.3-2clipboard history utility
ii  xfce4-panel 4.6.3-1  The Xfce4 desktop environment pane
ii  zlib1g  1:1.2.3.4.dfsg-3 compression library - runtime

xfce4-clipman-plugin recommends no packages.

xfce4-clipman-plugin 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#565976: squeeze: create an archive in a folder contained in a symbolic link records absolute paths

2010-01-20 Thread Jeremy Lal
Package: squeeze
Version: 0.2.3-8
Severity: normal

Let's say i have a folder : ~/test1/
And ln -s /home/foo/test1 test2

If i add a file to the archive taken from test2, the created archive contains 
absolute paths, like /home/foo/test2
whereas if i compress in test1/, the created archive contains relative paths.

This is more obvious when creating an archive from thunar context menu :
in test2 : absolute paths
in test1 : relative paths

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

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

Versions of packages squeeze depends on:
ii  exo-utils   0.3.106-1Utility files for libexo
ii  libatk1.0-0 1.28.0-1 The ATK accessibility toolkit
ii  libc6   2.10.2-5 Embedded GNU C Library: Shared lib
ii  libcairo2   1.9.4-1  The Cairo 2D vector graphics libra
ii  libdbus-1-3 1.2.16-2 simple interprocess messaging syst
ii  libdbus-glib-1-20.82-2   simple interprocess messaging syst
ii  libexo-0.3-00.3.106-1Library with extensions for Xfce
ii  libfontconfig1  2.8.0-2  generic font configuration library
ii  libfreetype62.3.11-1 FreeType 2 font engine, shared lib
ii  libglib2.0-02.22.4-1 The GLib library of C routines
ii  libgtk2.0-0 2.18.6-1 The GTK+ graphical user interface 
ii  libpango1.0-0   1.26.2-1 Layout and rendering of internatio
ii  libthunar-vfs-1-2   1.0.1-2  VFS abstraction used in thunar
ii  libxfce4util4   4.6.1-2  Utility functions library for Xfce
ii  zlib1g  1:1.2.3.4.dfsg-3 compression library - runtime

squeeze recommends no packages.

squeeze 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#565761: openarena: SIGILL when changing graphics options

2010-01-18 Thread Jeremy Lal
Package: openarena
Version: 0.8.1-6
Severity: normal

It crashed reliably when changing a texture setting.
It also happens when launching/changing a level, but not every time.
Deleting openarena's config file does not solve the problem.
I'll try to gather more info about the condition of the crash.
For now, here's the trace :

PIXELFORMAT: color(24-bits) Z(24-bit) stencil(0-bits)
MODE: -1, 1400 x 1050 fullscreen hz:N/A
GAMMA: hardware w/ 0 overbright bits
rendering primitives: single glDrawElements
texturemode: GL_LINEAR_MIPMAP_NEAREST
picmip: 2
texture bits: 0
multitexture: enabled
compiled vertex arrays: enabled
texenv add: enabled
compressed textures: disabled
Initializing Shaders
- finished R_Init -
Loading vm file vm/ui.qvm...
...which has vmMagic VM_MAGIC_VER2
Loading 1349 jump table targets
VM file ui compiled to 644411 bytes of code
ui loaded in 1398048 bytes on the hunk
41 arenas parsed
24 bots parsed
RE_Shutdown( 1 )
Hunk_Clear: reset the hunk ok
- Initializing Renderer 
---
- R_Init -

Program received signal SIGILL, Illegal instruction.
[Switching to Thread 0xb74e7b70 (LWP 3751)]
0xb75410b2 in SmsSaveComplete (smsConn=0x9e8a098) at ../../src/sm_manager.c:289
289 ../../src/sm_manager.c: Aucun fichier ou dossier de ce type.
in ../../src/sm_manager.c
(gdb) bt
#0  0xb75410b2 in SmsSaveComplete (smsConn=0x9e8a098)
at ../../src/sm_manager.c:289
#1  0xb7f3dd2a in ?? () from /usr/lib/libSDL-1.2.so.0
#2  0xb7f0fa72 in ?? () from /usr/lib/libSDL-1.2.so.0
#3  0xb7f1787e in ?? () from /usr/lib/libSDL-1.2.so.0
#4  0xb7f6402d in ?? () from /usr/lib/libSDL-1.2.so.0
#5  0xb7a36585 in start_thread (arg=0xb74e7b70) at pthread_create.c:300
#6  0xb7d0a26e in clone () at ../sysdeps/unix/sysv/linux/i386/clone.S:130


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

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

Versions of packages openarena depends on:
ii  libc6   2.10.2-5 Embedded GNU C Library: Shared lib
ii  libcurl3-gnutls 7.19.7-1 Multi-protocol file transfer libra
ii  libgl1-mesa-glx [libgl1]7.6.1-1  A free implementation of the OpenG
ii  libogg0 1.1.4~dfsg-2 Ogg bitstream library
ii  libopenal1  1:1.10.622-1 Software implementation of the Ope
ii  libsdl1.2debian 1.2.14-3 Simple DirectMedia Layer
ii  libspeex1   1.2~rc1-1The Speex codec runtime library
ii  libspeexdsp11.2~rc1-1The Speex extended runtime library
ii  libvorbis0a 1.2.3-3  The Vorbis General Audio Compressi
ii  libvorbisfile3  1.2.3-3  The Vorbis General Audio Compressi
ii  openarena-data  0.8.1-2  OpenArena game data

openarena recommends no packages.

openarena 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#565505: gstreamer0.10-plugins-bad: segfaults loading /usr/lib/gstreamer-0.10/libgstfrei0r.so

2010-01-16 Thread Jeremy Lal
Package: gstreamer0.10-plugins-bad
Version: 0.10.17-2
Severity: normal

When i run :
gst-launch --gst-plugin-load=libgstfrei0r

i get :
(gst-launch-0.10:21512): GLib-GObject-CRITICAL **: g_param_spec_internal: 
assertion `(name[0] = 'A'  name[0] = 'Z') || (name[0] = 'a'  name[0] = 
'z')' failed

ERROR: Caught a segmentation fault while loading plugin file:
/usr/lib/gstreamer-0.10/libgstfrei0r.so


I did not succeed getting a stack trace in gdb.

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

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

Versions of packages gstreamer0.10-plugins-bad depends on:
ii  gstreamer0.10-plugins-ba 0.10.25-7   GStreamer plugins from the base 
ii  libasound2   1.0.21a-1   shared library for ALSA applicatio
ii  libass4  0.9.8-1 library for SSA/ASS subtitles rend
ii  libbz2-1.0   1.0.5-3 high-quality block-sorting file co
ii  libc62.10.2-5Embedded GNU C Library: Shared lib
ii  libcairo21.9.4-1 The Cairo 2D vector graphics libra
ii  libcdaudio1  0.99.12p2-9 library for controlling a CD-ROM w
ii  libcelt0 0.7.0-1 The CELT codec runtime library
ii  libdc1394-22 2.1.2-1 high level programming interface f
ii  libdca0  0.0.5-3 decoding library for DTS Coherent 
ii  libdirac-encoder01.0.2-2 open and royalty free high quality
ii  libdirectfb-1.2-01.2.8-5 direct frame buffer graphics - sha
ii  libdvdnav4   4.1.3-6 DVD navigation library
ii  libdvdread4  4.1.3-7 library for reading DVDs
ii  libexempi3   2.1.1-1 library to parse XMP metadata (Lib
ii  libexif120.6.19-1library to parse EXIF files
ii  libfaad2 2.7-4   freeware Advanced Audio Decoder - 
ii  libgcc1  1:4.4.2-9   GCC support library
ii  libglib2.0-0 2.22.4-1The GLib library of C routines
ii  libgme0  0.5.5-1 Playback library for video game mu
ii  libgsm1  1.0.13-3Shared libraries for GSM speech co
ii  libgstreamer-plugins-bas 0.10.25-7   GStreamer libraries from the base
ii  libgstreamer0.10-0   0.10.25-4+b1Core GStreamer libraries and eleme
ii  libiptcdata0 1.0.4-1 Library to parse IPTC metadata
ii  libjack0 0.118+svn3796-2 JACK Audio Connection Kit (librari
ii  libjasper1   1.900.1-6.1 The JasPer JPEG-2000 runtime libra
ii  libkate1 0.3.7-3 Kate is a codec for karaoke and te
ii  libmimic01.0.4-2+b1  A video codec for Mimic V2.x conte
ii  libmms0  0.4-2   MMS stream protocol library - shar
ii  libmodplug0c21:0.8.7-1   shared libraries for mod music bas
ii  libmpcdec6   2:0.1~r453-1MusePack decoder - library
ii  libmusicbrainz4c2a   2.1.5-4 Second generation incarnation of t
ii  libofa0  0.9.3-3.1   Library for acoustic fingerprintin
ii  liboil0.30.3.16-1Library of Optimized Inner Loops
ii  libopenspc0  0.3.99a-2   library for playing SPC files
ii  liborc-0.4-0 0.4.3-2 Library of Optimized Inner Loops R
ii  libpng12-0   1.2.41-1PNG library - runtime
ii  librsvg2-2   2.26.0-1SAX-based renderer library for SVG
ii  libschroedinger-1.0-01.0.8-2 library for encoding/decoding of D
ii  libsndfile1  1.0.21-2Library for reading/writing audio 
ii  libsoundtouch1c2 1.3.1-2 sound stretching library
ii  libssl0.9.8  0.9.8k-8SSL shared libraries
ii  libstdc++6   4.4.2-9 The GNU Standard C++ Library v3
ii  libwildmidi0 0.2.2-2 software MIDI player library
ii  libx11-6 2:1.3.2-1   X11 client-side library
ii  libxml2  2.7.6.dfsg-1GNOME XML library

gstreamer0.10-plugins-bad recommends no packages.

gstreamer0.10-plugins-bad 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#559297: /usr/bin/pycentral: Syntax error in /usr/bin/pycentral triggered with python-wxgtk2.8 pre-removal script

2009-12-03 Thread Jeremy Lal
Package: python-central
Version: 0.6.14
Severity: normal
File: /usr/bin/pycentral

Here's the way aptitude complains :
Préparation du remplacement de python-wxgtk2.8 2.8.7.1-2+b1 (en utilisant 
.../python-wxgtk2.8_2.8.10.1-1_i386.deb) ...
  File /usr/bin/pycentral, line 2112
else:
   ^
SyntaxError: invalid syntax

So i had a look in /usr/bin/pycentral, the offending line is :
usage(sys.stderr, ambiguous action `%s', matching actions: %s % 
(action_name, str(list(matching_actions)))

just before the else:

Commenting that line suppresses the syntax error, it's obviously not a way to 
fix this.

Regards,
Jérémy.

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

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

Versions of packages python-central depends on:
ii  python2.5.4-2An interactive high-level object-o

python-central recommends no packages.

python-central 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#553621: lintian: add javascript to the usual interpreters

2009-11-01 Thread Jeremy Lal
Package: lintian
Version: 2.2.17
Severity: wishlist

I know javascript is, for now, not a usual interpreter, but with spidermonkey
and libv8's node.js server, it's certainly growing to be more common.
I guess /usr/bin/javascript is a reasonnable name for the interpreter, though
for now no package provides it.


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

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

Versions of packages lintian depends on:
ii  binutils   2.20-2The GNU assembler, linker and bina
ii  diffstat   1.47-1produces graph of changes introduc
ii  dpkg-dev   1.15.4.1  Debian package development tools
ii  file   5.03-2Determines file type using magic
ii  gettext0.17-8GNU Internationalization utilities
ii  intltool-debian0.35.0+20060710.1 Help i18n of RFC822 compliant conf
ii  libapt-pkg-perl0.1.24Perl interface to libapt-pkg
ii  libclass-accessor-perl 0.34-1Perl module that automatically gen
ii  libipc-run-perl0.84-1Perl module for running processes
ii  libparse-debianchangel 1.1.1-2   parse Debian changelogs and output
ii  libtimedate-perl   1.1900-1  Time and date functions for Perl
ii  liburi-perl1.37+dfsg-1   Manipulates and accesses URI strin
ii  man-db 2.5.6-3   on-line manual pager
ii  perl [libdigest-sha-pe 5.10.1-6  Larry Wall's Practical Extraction 

lintian recommends no packages.

Versions of packages lintian suggests:
pn  binutils-multiarchnone (no description available)
pn  libtext-template-perl none (no description available)
ii  man-db2.5.6-3on-line manual pager

-- 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#553514: ITP: node.js -- Event-based I/O for V8 javascript

2009-10-31 Thread Jeremy Lal
Package: wnpp
Severity: wishlist
Owner: Jeremy Lal kapo...@melix.org


* Package name: node.js
  Version : 0.1.15
  Upstream Author : Ryan Dahl r...@tinyclouds.org
* URL : http://nodejs.org
* License : MIT
  Programming Lang: C++, Javascript
  Description : Event-based I/O for V8 javascript

 Node aims at providing a basis for server-side javascript.
 .
 It is similar in design to and influenced by systems like
 Ruby's Event Machine or Python's Twisted.
 .
 Node takes the event model a bit further—it presents the event
 loop as a language construct instead of as a library.




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



Bug#552436: gnome-screensaver: does it really need to depend on gnome-session ?

2009-10-26 Thread Jeremy Lal
Package: gnome-screensaver
Version: 2.28.0-1
Severity: wishlist

I noticed the dependency on gnome-session is not really
required : change of user, locking screen, letting a message
all work properly without gnome-session.
Unless i'm missing something, that would be nice to drop it,
or put it in recommends : xfce users don't want to install
gnome-session when they just need a nice screen locker.
I just changed the control file and it's shown in the list below.

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

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

Versions of packages gnome-screensaver depends on:
ii  dbus-x11  1.2.16-2   simple interprocess messaging syst
ii  gconf22.28.0-1   GNOME configuration database syste
ii  gnome-icon-theme  2.28.0-1   GNOME Desktop icon theme
ii  libc6 2.10.1-2   GNU C Library: Shared libraries
ii  libcairo2 1.9.4-1The Cairo 2D vector graphics libra
ii  libdbus-1-3   1.2.16-2   simple interprocess messaging syst
ii  libdbus-glib-1-2  0.82-2 simple interprocess messaging syst
ii  libgconf2-4   2.28.0-1   GNOME configuration database syste
ii  libgl1-mesa-glx [libgl1]  7.6-1  A free implementation of the OpenG
ii  libglib2.0-0  2.22.2-2   The GLib library of C routines
ii  libgnome-desktop-2-11 2.28.0-1   Utility library for loading .deskt
ii  libgnome-menu22.28.0-1   an implementation of the freedeskt
ii  libgnomekbd4  2.28.0-2   GNOME library to manage keyboard c
ii  libgtk2.0-0   2.18.3-1   The GTK+ graphical user interface 
ii  libnotify1 [libnotify1-gtk2.1 0.4.5-1sends desktop notifications to a n
ii  libpam0g  1.1.0-4Pluggable Authentication Modules l
ii  libpango1.0-0 1.26.0-1   Layout and rendering of internatio
ii  libx11-6  2:1.2.2-1  X11 client-side library
ii  libxext6  2:1.0.4-1  X11 miscellaneous extension librar
ii  libxklavier15 4.0-2  X Keyboard Extension high-level AP
ii  libxxf86misc1 1:1.0.1-3  X11 XFree86 miscellaneous extensio
ii  libxxf86vm1   1:1.0.2-1  X11 XFree86 video mode extension l

Versions of packages gnome-screensaver recommends:
pn  gnome-power-manager   none (no description available)
pn  gnome-session none (no description available)
ii  libpam-gnome-keyring  2.28.1-1   PAM module to unlock the GNOME key
ii  rss-glx   0.9.0-2Really Slick Screensavers GLX Port

Versions of packages gnome-screensaver suggests:
pn  xscreensaver-data none (no description available)

-- 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#552435: git-buildpackage: try debian/rules get-orig-source to generate upstream tarball

2009-10-26 Thread Jeremy Lal
Package: git-buildpackage
Version: 0.4.59
Severity: wishlist

bzr-buildpackage provides this functionnality, it seems legitimate
git-buildpackage tried using get-orig-source to generate the tarball,
as a last resort.

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

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

Versions of packages git-buildpackage depends on:
ii  devscripts2.10.55scripts to make the life of a Debi
ii  git-core  1:1.6.5-1  fast, scalable, distributed revisi
ii  python2.5.4-2An interactive high-level object-o
ii  python-dateutil   1.4.1-3powerful extensions to the standar
ii  python-support1.0.4  automated rebuilding support for P

Versions of packages git-buildpackage recommends:
ii  pristine-tar  1.00   regenerate pristine tarballs

Versions of packages git-buildpackage suggests:
ii  git-load-dirs 1.1.7  Import upstream archives into git

-- 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#552434: rabbitmq-server: Provide defaults in init.d

2009-10-26 Thread Jeremy Lal
Package: rabbitmq-server
Version: 1.7.0-3
Severity: minor

For example,
# Default-Start: 2 3 4 5
# Default-Stop:  0 1 6


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

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

Versions of packages rabbitmq-server depends on:
ii  adduser3.111 add and remove users and groups
ii  erlang-base1:13.b.2.1-dfsg-1 Erlang/OTP virtual machine and bas
ii  erlang-mnesia  1:13.b.2.1-dfsg-1 Erlang/OTP distributed relational/
ii  erlang-os-mon  1:13.b.2.1-dfsg-1 Erlang/OTP operating system monito
ii  erlang-ssl 1:13.b.2.1-dfsg-1 Erlang/OTP implementation of SSL
ii  logrotate  3.7.8-4   Log rotation utility

rabbitmq-server recommends no packages.

rabbitmq-server 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#550448: libv8: scons does not guess x64 arch. Patch available.

2009-10-10 Thread Jeremy Lal
Package: libv8
Version: 1.3.11
Severity: important
Justification: fails to build from source

In order to build on 64 bits arch(s), scons must be called with
arch=x64.
However, a patch is available at :
http://code.google.com/p/v8/issues/detail?id=429


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

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




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



Bug#550244: ITP: redmine-plugin-botsfilter -- Redmine plugin to restrict common bots

2009-10-08 Thread Jeremy Lal
Package: wnpp
Severity: wishlist
Owner: Jeremy Lal kapo...@melix.org


* Package name: redmine-plugin-botsfilter
  Version : 1.01
  Upstream Author : Jean-Philippe Lang jp_l...@nospam@yahoo.fr
* URL : http://www.redmine.org/wiki/redmine/PluginBotsFilter
* License : GPL-2
  Programming Lang: Ruby
  Description : Redmine plugin to restrict common bots

 Prevent common bots from accessing:
  * alternate format download links (eg. csv, pdf)
  * gantt, calander
  * repository
  * wiki history




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



Bug#549667: libactiveldap-ruby: README.activeldap contains documentation of Action Mailer

2009-10-05 Thread Jeremy Lal
Package: libactiveldap-ruby1.8
Version: 1.0.9-1
Severity: minor
File: libactiveldap-ruby

/usr/share/doc/rails/README.activeldap contains the wrong documentation.


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

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

Versions of packages libactiveldap-ruby1.8 depends on:
ii  libgettext-ruby1.8   1.93.0-1Gettext for ruby1.8
ii  libldap-ruby1.8  0.9.7-1+b1  OpenLDAP library binding for Ruby 
ii  libruby1.8   1.8.7.174-2 Libraries necessary to run Ruby 1.
ii  rails2.2.3-1 MVC ruby based framework geared fo

libactiveldap-ruby1.8 recommends no packages.

Versions of packages libactiveldap-ruby1.8 suggests:
ii  liblog4r-ruby1.8  1.0.5-8A logging library for Ruby

-- 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#549193: base-files: MIT license in common-licenses ?

2009-10-01 Thread Jeremy Lal
Package: base-files
Version: 5.0.0
Severity: wishlist

I'm not very competent at dealing with licenses, but
i noticed the MIT license is absent from
/usr/share/common-licenses
Unless there is a reason for that, why not including
a copy of it ?
Regards,
Jérémy Lal

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

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

Versions of packages base-files depends on:
ii  base-passwd   3.5.22 Debian base system master password
ii  gawk [awk]1:3.1.6.dfsg-3 GNU awk, a pattern scanning and pr
ii  mawk [awk]1.3.3-15   a pattern scanning and text proces

base-files recommends no packages.

base-files 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#547632: Undefined subroutine main::delimiter called at /usr/bin/lintian line 687

2009-09-21 Thread Jeremy Lal
Package: lintian
Version: 2.2.14
Severity: important

Running lintian over any package outputs :
Undefined subroutine main::delimiter called at /usr/bin/lintian line 687

If i change the call to delimiter() to :
Lintian::Output::delimiter()
then it complains elsewhere (debug_msg, v_msg...) all functions
that are declared in Output.pm

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

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

Versions of packages lintian depends on:
ii  binutils  2.19.91.20090910-1 The GNU assembler, linker and bina
ii  diffstat  1.47-1 produces graph of changes introduc
ii  dpkg-dev  1.15.4 Debian package development tools
ii  file  5.03-1 Determines file type using magic
ii  gettext   0.17-8 GNU Internationalization utilities
ii  intltool-debian   0.35.0+20060710.1  Help i18n of RFC822 compliant conf
ii  libapt-pkg-perl   0.1.24 Perl interface to libapt-pkg
ii  libipc-run-perl   0.84-1 Perl module for running processes
ii  libparse-debianchange 1.1.1-2parse Debian changelogs and output
ii  libtimedate-perl  1.1600-9   Time and date functions for Perl
ii  liburi-perl   1.37+dfsg-1Manipulates and accesses URI strin
ii  man-db2.5.6-2on-line manual pager
ii  perl [libdigest-sha-p 5.10.0-25  Larry Wall's Practical Extraction 

lintian recommends no packages.

Versions of packages lintian suggests:
pn  binutils-multiarchnone (no description available)
pn  libtext-template-perl none (no description available)
ii  man-db2.5.6-2on-line manual pager

-- 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#545576: lighttpd: server could not open a fam connection, dieing

2009-09-08 Thread Jeremy Lal
Package: lighttpd
Version: 1.4.23-3+b2
Severity: normal

This is not a duplicate of 521274. I missed the point at that time.
The problem is that lighttpd fails to start at boot time.
Restarting it later works ok.
The error message is the title.
Is it possible gamin depends on something not yet started at boot time ?

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

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

Versions of packages lighttpd depends on:
ii  libattr1   1:2.4.44-1Extended attribute shared library
ii  libbz2-1.0 1.0.5-3   high-quality block-sorting file co
ii  libc6  2.9-26GNU C Library: Shared libraries
ii  libgamin0 [libfam0]0.1.10-2  Client library for the gamin file 
ii  libldap-2.4-2  2.4.17-1  OpenLDAP libraries
ii  libpcre3   7.8-2+b1  Perl 5 Compatible Regular Expressi
ii  libssl0.9.80.9.8k-4  SSL shared libraries
ii  libterm-readline-perl- 1.0302-1  Perl implementation of Readline li
ii  lsb-base   3.2-23Linux Standard Base 3.2 init scrip
ii  mime-support   3.46-1MIME files 'mime.types'  'mailcap
ii  zlib1g 1:1.2.3.3.dfsg-15 compression library - runtime

Versions of packages lighttpd recommends:
ii  spawn-fcgi1.6.2-3A fastcgi process spawner

Versions of packages lighttpd suggests:
ii  apache2-utils 2.2.13-1   utility programs for webservers
ii  openssl   0.9.8k-4   Secure Socket Layer (SSL) binary a
pn  rrdtool   none (no description available)

-- 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#545291: xfce4-clipman-plugin: missing xfce4-clipman-settings or unclear dependency on xfce4-clipman

2009-09-06 Thread Jeremy Lal
Package: xfce4-clipman-plugin
Version: 2:1.1.0-1
Severity: normal

The xfce4-clipman-settings is absent from that package,
and has been moved to xfce4-clipman.
The later package should at least be a recommendation of the former ?


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

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

Versions of packages xfce4-clipman-plugin depends on:
ii  libatk1.0-01.26.0-1  The ATK accessibility toolkit
ii  libc6  2.9-26GNU C Library: Shared libraries
ii  libcairo2  1.8.8-2   The Cairo 2D vector graphics libra
ii  libdbus-1-31.2.16-2  simple interprocess messaging syst
ii  libdbus-glib-1-2   0.82-1simple interprocess messaging syst
ii  libexo-0.3-0   0.3.102-1 Library with extensions for Xfce
ii  libfontconfig1 2.6.0-4   generic font configuration library
ii  libfreetype6   2.3.9-5   FreeType 2 font engine, shared lib
ii  libglib2.0-0   2.21.4-1  The GLib library of C routines
ii  libgtk2.0-02.16.6-1  The GTK+ graphical user interface 
ii  libice62:1.0.5-1 X11 Inter-Client Exchange library
ii  libpango1.0-0  1.24.5-1  Layout and rendering of internatio
ii  libsm6 2:1.1.1-1 X11 Session Management library
ii  libx11-6   2:1.2.2-1 X11 client-side library
ii  libxfce4util4  4.6.1-1   Utility functions library for Xfce
ii  libxfcegui4-4  4.6.1-1+b1Basic GUI C functions for Xfce4
ii  libxfconf-0-2  4.6.1-1   Client library for Xfce4 configure
ii  xfce4-panel4.6.1-3   The Xfce4 desktop environment pane
ii  zlib1g 1:1.2.3.3.dfsg-15 compression library - runtime

xfce4-clipman-plugin recommends no packages.

xfce4-clipman-plugin 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#544888: libempathy29: depends on libempathy-common 2.27.91.1-1, could relax version to 2.27.91.1 ?

2009-09-03 Thread Jeremy Lal
Package: libempathy29
Version: 2.27.91.1-1
Severity: normal

All in the title.

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

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




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



Bug#543898: ITP: rabbitmq-stomp -- A STOMP gateway for RabbitMQ

2009-08-27 Thread Jeremy Lal
Package: wnpp
Severity: wishlist
Owner: Jeremy Lal kapo...@melix.org



* Package name: rabbitmq-stomp
  Version : 1.6.0
  Upstream Author : Tony Garnock-Jones to...@lshift.net
* URL : https://dev.rabbitmq.com/wiki/StompGateway
* License : MPL 1.1
  Programming Lang: Erlang
  Description : A STOMP (Simple Text-Oriented Messaging Protocol) gateway 
for RabbitMQ

Best of both worlds : STOMP for its simplicity, rabbitmq-server for reliability.

This plugin is not yet ready for production use, though it seems quite stable.




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



Bug#543964: ITP: python-orbited -- HTTP daemon that is optimized for long-lasting comet connections

2009-08-27 Thread Jeremy Lal
Package: wnpp
Severity: wishlist
Owner: Jeremy Lal kapo...@melix.org


* Package name: python-orbited
  Version : 0.7.10
  Upstream Author : Michael Carter cartermich...@gmail.com
* URL : http://www.orbited.org/
* License : MIT
  Programming Lang: Python
  Description : HTTP daemon that is optimized for long-lasting comet 
connections

It provides a pure JavaScript/HTML socket in the browser.
It is a web router and firewall that allows you to integrate web
applications with arbitrary back-end systems.
You can implement any network protocol in the browser—without
resorting to plugins.

The client-side files are separately packaged in libjs-orbited.




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



Bug#543968: ITP: libjs-orbited -- TCPSocket javascript client for networking with orbited

2009-08-27 Thread Jeremy Lal
Package: wnpp
Severity: wishlist
Owner: Jeremy Lal kapo...@melix.org


* Package name: libjs-orbited
  Version : 0.7.10
  Upstream Author : Michael Carter cartermich...@gmail.com
* URL : http://www.orbited.org/
* License : MIT
  Programming Lang: Javascript
  Description : TCPSocket javascript client for networking with orbited

Orbited is a central part for providing support of the new WebSocket HTML5
object, which is the standard proposed for COMET client applications.
Support for other protocols (STOMP, IRC, XMPP, TELNET) is also included.

This package is a recommendation of package python-orbited.




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



Bug#543638: rabbitmq-server: Please provide /etc/default/rabbitmq, /etc/rabbitmq/rabbitmq.conf

2009-08-26 Thread Jeremy Lal
Package: rabbitmq-server
Version: 1.6.0-1
Severity: wishlist

As instructed on [0], there are several configuration variables
that could be set using those files.
It would be nice to see them with appropriate defaults, or
at least commented.
Thanks.
[0]
http://www.rabbitmq.com/install.html

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

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

Versions of packages rabbitmq-server depends on:
ii  adduser  3.110   add and remove users and groups
ii  erlang-base  1:13.b.1-dfsg-6 Erlang/OTP virtual machine and bas
ii  erlang-mnesia1:13.b.1-dfsg-6 Erlang/OTP distributed relational/
ii  erlang-os-mon1:13.b.1-dfsg-6 Erlang/OTP operating system monito
ii  erlang-ssl   1:13.b.1-dfsg-6 Erlang/OTP implementation of SSL
ii  logrotate3.7.8-4 Log rotation utility

rabbitmq-server recommends no packages.

rabbitmq-server 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#543639: Please provide a rabbitmq-server-dev package

2009-08-26 Thread Jeremy Lal
Package: rabbitmq-server
Version: 1.6.0-1
Severity: wishlist

Compiling a plugin (e.g. rabbitmq-stomp) needs files
in rabbitmq-server/include, so a -dev package would be
handy !
Thanks.

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

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

Versions of packages rabbitmq-server depends on:
ii  adduser  3.110   add and remove users and groups
ii  erlang-base  1:13.b.1-dfsg-6 Erlang/OTP virtual machine and bas
ii  erlang-mnesia1:13.b.1-dfsg-6 Erlang/OTP distributed relational/
ii  erlang-os-mon1:13.b.1-dfsg-6 Erlang/OTP operating system monito
ii  erlang-ssl   1:13.b.1-dfsg-6 Erlang/OTP implementation of SSL
ii  logrotate3.7.8-4 Log rotation utility

rabbitmq-server recommends no packages.

rabbitmq-server 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#543675: wrong debconf template name : grub-pc/cmdline_linux

2009-08-26 Thread Jeremy Lal
Package: grub-pc
Version: 1.96+20090825-1
Severity: important

As you can see below, the debconf template is :
grub-pc/linux_cmdline,

not the one in debian/config :
+ db_set grub-pc/cmdline_linux 
+ _db_cmd SET grub-pc/cmdline_linux 
+ IFS=  printf %s\n SET grub-pc/cmdline_linux 
+ IFS=
 read -r _db_internal_line
+ RET=10 grub-pc/cmdline_linux doesn't exist
+ return 10


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

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

Versions of packages grub-pc depends on:
ii  debconf [debconf-2.0]1.5.27  Debian configuration management sy
ii  grub-common  1.96+20090825-1 GRand Unified Bootloader, version 
ii  libc62.9-25  GNU C Library: Shared libraries
ii  ucf  3.0020  Update Configuration File: preserv

grub-pc recommends no packages.

Versions of packages grub-pc suggests:
ii  desktop-base  5.0.5  common files for the Debian Deskto
ii  genisoimage   9:1.1.9-1  Creates ISO-9660 CD-ROM filesystem

-- debconf information:
* grub-pc/linux_cmdline:
  grub2/linux_cmdline:
* grub-pc/chainload_from_menu.lst: false
  grub-pc/kopt_extracted: false
  grub-pc/postrm_purge_boot_grub: false
  grub2/linux_cmdline_default: quiet
* grub-pc/install_devices: /dev/sda, /dev/sdb




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



Bug#539887: libnice: missing comma in build-depends list in debian/control file

2009-08-04 Thread Jeremy Lal
Package: libnice
Version: 0.0.8
Severity: serious
Justification: no longer builds from source

Here's what i read :
Build-Depends: cdbs,
   debhelper (= 7),
   libglib2.0-dev (= 2.10)
   libgstreamer0.10-dev,
   libgstreamer-plugins-base0.10-dev,
   gtk-doc-tools

It seems some comma is missing after the third line.
dpkg-checkbuilddeps complains about that.

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

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




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



Bug#539305: thunar-archive-plugin: no archive manager found when doing 'extract here' from thunar context menu

2009-07-30 Thread Jeremy Lal
Package: thunar-archive-plugin
Version: 0.2.4-4
Severity: normal

If i do a right click on a .tar.gz file,
and do Extract here from the context menu,
i get an alert dialog saying (approximately,
since i translate it from french to english):
Failure to extract files.
No archive manager found.
I have xarchiver package installed.

It's been working ok for months,
and this package had not been upgraded recently,
so i guess there's something wrong with thunar package
or dependency.
I tried to reinstall thunar-archive-plugin, or thunar,
no change.
I also note that Open with Xarchiver context menu works ok.

If i install the squeeze package,
then it works ok.
If i uninstall squeeze and reinstall xarchiver, it doesn't work.

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

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

Versions of packages thunar-archive-plugin depends on:
ii  libc6 2.9-23 GNU C Library: Shared libraries
ii  thunar1.0.1-1File Manager for Xfce

Versions of packages thunar-archive-plugin recommends:
ii  xarchiver1:0.5.2+20090319+dfsg-2 GTK+ frontend for most used compre

thunar-archive-plugin 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#537507: xfce4-power-manager: with suspend to ram on lid close, doing it twice puts laptop in unusable state

2009-07-18 Thread Jeremy Lal
Package: xfce4-power-manager
Version: 0.8.2-1
Severity: normal

If power-manager is set to suspend to ram on lid close,
closing and opening the lid works only once on my laptop.
Closing it a second time puts the laptop in a state
where quite everything (display, hard disk, fan) is off,
only power button is on.
But doing a manual suspend to ram (from the power-manager menu)
works any number of times. Resuming with power button or (closing
 then) opening lid works ok.
Also if power-manager is set to do nothing on lid close, it does...
nothing, as expected (i also tried multiple times).
I reported that bug upstream, too, see :

http://bugzilla.xfce.org/show_bug.cgi?id=5584


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

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

Versions of packages xfce4-power-manager depends on:
ii  hal  0.5.12~git20090406.46dc48-2 Hardware Abstraction Layer
ii  libc62.9-20  GNU C Library: Shared libraries
ii  libcairo21.8.8-2 The Cairo 2D vector graphics libra
ii  libdbus-1-3  1.2.16-2simple interprocess messaging syst
ii  libdbus-glib 0.80-4  simple interprocess messaging syst
ii  libglib2.0-0 2.20.4-1The GLib library of C routines
ii  libgtk2.0-0  2.16.4-1The GTK+ graphical user interface 
ii  libnotify1 [ 0.4.5-1 sends desktop notifications to a n
ii  libpango1.0- 1.24.4-1Layout and rendering of internatio
ii  libx11-6 2:1.2.1-1   X11 client-side library
ii  libxext6 2:1.0.4-1   X11 miscellaneous extension librar
ii  libxfce4util 4.6.1-1 Utility functions library for Xfce
ii  libxfcegui4- 4.6.1-1+b1  Basic GUI C functions for Xfce4
ii  libxfconf-0- 4.6.1-1 Client library for Xfce4 configure
ii  xfce4-power- 0.8.2-1 power manager for Xfce desktop, ar

xfce4-power-manager recommends no packages.

Versions of packages xfce4-power-manager suggests:
ii  xfce4-power-manager-plugins   0.8.2-1power manager plugins for Xfce pan

-- 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#536681: lighttpd: include_shell include_conf_enabled.pl not working anymore

2009-07-12 Thread Jeremy Lal
Package: lighttpd
Version: 1.4.23-2
Severity: important

Starting from a pristine /etc/lighttpd folder,
enabling userdir does not work.
I tested putting userdir config stanzas directly into
/etc/lighttpd/lighttpd.conf
just after the include_shell ... and it loads userdir properly.
I also verified that the include_conf_enabled.pl script generates
a correct listing, here it gives :
 perl /usr/share/lighttpd/include-conf-enabled.pl
include conf-enabled/10-userdir.conf

So i guess there's something broken with include_shell ?
It was working ok in lighttpd 1.4.22.

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

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

Versions of packages lighttpd depends on:
ii  libattr1   1:2.4.43-3Extended attribute shared library
ii  libbz2-1.0 1.0.5-3   high-quality block-sorting file co
ii  libc6  2.9-19GNU C Library: Shared libraries
ii  libgamin0 [libfam0]0.1.10-1  Client library for the gamin file 
ii  libldap-2.4-2  2.4.15-1.1OpenLDAP libraries
ii  libpcre3   7.8-2+b1  Perl 5 Compatible Regular Expressi
ii  libssl0.9.80.9.8k-3  SSL shared libraries
ii  libterm-readline-perl- 1.0302-1  Perl implementation of Readline li
ii  lsb-base   3.2-22Linux Standard Base 3.2 init scrip
ii  mime-support   3.46-1MIME files 'mime.types'  'mailcap
ii  zlib1g 1:1.2.3.3.dfsg-14 compression library - runtime

Versions of packages lighttpd recommends:
ii  spawn-fcgi1.6.2-3A fastcgi process spawner

Versions of packages lighttpd suggests:
ii  apache2-utils 2.2.11-7   utility programs for webservers
ii  openssl   0.9.8k-3   Secure Socket Layer (SSL) binary a
pn  rrdtool   none (no description available)

-- 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#535442: postgresql: Broken upgrade when using insserv

2009-07-02 Thread Jeremy Lal
Package: postgresql
Version: 8.4.0-1
Severity: important

With insserv package installed, and postgresql 8.3 installed,
i can't install the postgresql-8.4 package, see the aptitude log below.
Also AFAIR this problem did not happen during 8.2 - 8.3 migration.

insserv: script postgresql-8.4: service postgresql already provided!
insserv: script postgresql-8.4: service postgresql-8.4 already provided!
Paramétrage de postgresql-8.4 (8.4.0-1) ...
update-alternatives: utilisation de 
« /usr/share/postgresql/8.4/man/man1/postmaster.1.gz » pour fournir 
« /usr/share/man/man1/postmaster.1.gz » (postmaster.1.gz) dans mode automatique.
insserv: script postgresql-8.4: service postgresql already provided!
insserv: exiting now!
dpkg : erreur de traitement de postgresql-8.4 (--configure) :
 le sous-processus script post-installation installé a retourné une erreur de 
sortie d'état 1
dpkg : des problèmes de dépendances empêchent la configuration de postgresql :
 postgresql dépend de postgresql-8.4 ; cependant :
 Le paquet postgresql-8.4 n'est pas encore configuré.
dpkg : erreur de traitement de postgresql (--configure) :
 problèmes de dépendances - laissé non configuré


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

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

Versions of packages postgresql depends on:
pn  postgresql-8.4none (no description available)

postgresql recommends no packages.

postgresql 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#533823: /usr/bin/ld: ld segfaults after suspend to ram

2009-06-20 Thread Jeremy Lal
Package: binutils
Version: 2.19.1-1
Severity: normal
File: /usr/bin/ld

It's been a while (at least two years) i noticed
ld crash after a suspend to ram, using stable or unstable kernel and libs.

What kind of information could i provide to make this bug report more complete ?

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

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

Versions of packages binutils depends on:
ii  libc6  2.9-16GNU C Library: Shared libraries
ii  zlib1g 1:1.2.3.3.dfsg-13 compression library - runtime

binutils recommends no packages.

Versions of packages binutils suggests:
pn  binutils-doc  none (no description available)

-- 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#531215: Should conflict with cuneiform-data

2009-05-30 Thread Jeremy Lal
Package: cuneiform
Version: 0.6.0+dfsg-1
Severity: normal

cuneiform-common should conflicts with cuneiform-data, since
they share common files but have different names.

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

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

Versions of packages cuneiform depends on:
pn  cuneiform-common none  (no description available)
ii  libc62.9-13  GNU C Library: Shared libraries
ii  libgcc1  1:4.4.0-5   GCC support library
ii  libmagick++2 7:6.5.1.0-1 object-oriented C++ interface to I
ii  libstdc++6   4.4.0-5 The GNU Standard C++ Library v3

cuneiform recommends no packages.

cuneiform 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#529253: etckeeper could ignore runit's supervise/ok supervise/control

2009-05-18 Thread Jeremy Lal
Package: etckeeper
Version: 0.36
Severity: wishlist

runit uses two files supervise/ok supervise/control for each controlled 
process.Etckeeper complains about them, since they are pipes. Adding them to 
the default .gitignore could be done without risking any harm ?

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

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

Versions of packages etckeeper depends on:
ii  bzr  1.14-2  easy to use distributed version co
ii  darcs2.2.0-1 a distributed, interactive, smart 
ii  debconf [debconf-2.0]1.5.26  Debian configuration management sy
ii  git-core 1:1.6.3.1-1 fast, scalable, distributed revisi
ii  mercurial1.2-1   scalable distributed version contr

Versions of packages etckeeper recommends:
ii  cron  3.0pl1-106 process scheduling daemon

etckeeper suggests no packages.

-- 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#527240: xfce4-power-manager: missing i386 in supported architectures

2009-05-06 Thread Jeremy Lal
Package: xfce4-power-manager
Severity: normal

See
http://packages.debian.org/experimental/xfce/xfce4-power-manager
the closest match would be hurd-i386...



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

Kernel: Linux 2.6.29 (SMP w/2 CPU cores; PREEMPT)
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.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#526803: llvm-doc: doc version does not seem to correspond to llvm version

2009-05-03 Thread Jeremy Lal
Package: llvm-doc
Version: 2.5-2
Severity: normal

Because compiling the tutorial code gives compiler errors,
whereas the online tutorial code does not.


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

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

-- 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#522425: dsyslog-module-gnutls: description is wrong (shows PostgreSQL support)

2009-04-03 Thread Jeremy Lal
Package: dsyslog-module-gnutls
Severity: minor

I just saw that on aptitude...

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

Kernel: Linux 2.6.29 (SMP w/2 CPU cores; PREEMPT)
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.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#521590: cherokee: default config : php-cgi not spawned

2009-03-28 Thread Jeremy Lal
Package: cherokee
Version: 0.98.1-1
Severity: important

php-cgi not spawned at all with default configuration.

Launching php-cgi -b /tmp/cherokee-php.socket manually
and restarting cherokee makes php works.


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

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

Versions of packages cherokee depends on:
ii  libc6 2.9-6  GNU C Library: Shared libraries
ii  libcherokee-base0 0.98.1-1   Cherokee web server - Base librari
ii  libcherokee-config0   0.98.1-1   Cherokee web server - Configuratio
ii  libcherokee-mod-server-info   0.98.1-1   Cherokee web server - Server infor
ii  libcherokee-server0   0.98.1-1   Cherokee web server - Server libra
ii  libssl0.9.8   0.9.8g-15  SSL shared libraries
ii  logrotate 3.7.7-3Log rotation utility

Versions of packages cherokee recommends:
ii  libcherokee-mod-admin 0.98.1-1   Cherokee web server - Administrati

Versions of packages cherokee suggests:
ii  libcherokee-mod-libssl0.98.1-1   Cherokee web server - SSL crypto f

-- 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#521619: php5-cgi: one script curling another one with Cookie header on same web server result in a deadlock

2009-03-28 Thread Jeremy Lal
Package: php5-cgi
Version: 5.2.9.dfsg.1-1
Severity: normal

Let's define two scripts, each one using session_start().
The first script calls the second one, using call, and setting a Cookie http 
header
with the current session in it.
It results in the second script never returning from that call.

Tested with lighttpd+fastcgi, apache2+modphp5, cherokee+fastcgi.

The only case where it doesn't hangs is calling the script directly from 
command-line :
php5 -f firstscript.php

Using php5-cgi from command line doesn't show anything due to 
Cannot send session cookie - headers already sent

I set up a simple example, see in attachment.

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

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

Versions of packages php5-cgi depends on:
ii  libbz2-1.0   1.0.5-1 high-quality block-sorting file co
ii  libc62.9-6   GNU C Library: Shared libraries
ii  libcomerr2   1.41.3-1common error description library
ii  libdb4.6 4.6.21-13   Berkeley v4.6 Database Libraries [
ii  libgssapi-krb5-2 1.6.dfsg.4~beta1-12 MIT Kerberos runtime libraries - k
ii  libk5crypto3 1.6.dfsg.4~beta1-12 MIT Kerberos runtime libraries - C
ii  libkrb5-31.6.dfsg.4~beta1-12 MIT Kerberos runtime libraries
ii  libmagic15.00-1  File type determination library us
ii  libpcre3 7.8-2+b1Perl 5 Compatible Regular Expressi
ii  libssl0.9.8  0.9.8g-15   SSL shared libraries
ii  libxml2  2.7.3.dfsg-1GNOME XML library
ii  mime-support 3.44-1  MIME files 'mime.types'  'mailcap
ii  php5-common  5.2.9.dfsg.1-1  Common files for packages built fr
ii  tzdata   2009d-1 time zone and daylight-saving time
ii  ucf  3.0018  Update Configuration File: preserv
ii  zlib1g   1:1.2.3.3.dfsg-13   compression library - runtime

php5-cgi recommends no packages.

Versions of packages php5-cgi suggests:
ii  php-pear  5.2.9.dfsg.1-1 PEAR - PHP Extension and Applicati

-- no debconf information


session-hangs-example.tar.gz
Description: GNU Zip compressed data


Bug#521274: lighttpd: server could not open a fam connection, dieing

2009-03-26 Thread Jeremy Lal
Package: lighttpd
Version: 1.4.19-5
Severity: grave
Justification: renders package unusable

I get that error when starting the pc.
I don't get it when restarting lighttpd, but i get that warning :
Starting web server: lighttpd/usr/sbin/lighttpd: Symbol `FamErrlist' has 
different size in shared object, consider re-linking


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

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

Versions of packages lighttpd depends on:
ii  libattr1   1:2.4.43-2Extended attribute shared library
ii  libbz2-1.0 1.0.5-1   high-quality block-sorting file co
ii  libc6  2.9-6 GNU C Library: Shared libraries
ii  libgamin0 [libfam0]0.1.9-2   Client library for the gamin file 
ii  libldap-2.4-2  2.4.15-1  OpenLDAP libraries
ii  libpcre3   7.8-2+b1  Perl 5 Compatible Regular Expressi
ii  libssl0.9.80.9.8g-15 SSL shared libraries
ii  libterm-readline-perl- 1.0302-1  Perl implementation of Readline li
ii  lsb-base   3.2-22Linux Standard Base 3.2 init scrip
ii  mime-support   3.44-1MIME files 'mime.types'  'mailcap
ii  zlib1g 1:1.2.3.3.dfsg-13 compression library - runtime

lighttpd recommends no packages.

Versions of packages lighttpd suggests:
ii  apache2-utils 2.2.11-2   utility programs for webservers
ii  openssl   0.9.8g-15  Secure Socket Layer (SSL) binary a
pn  rrdtool   none (no description available)

-- 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#517192: wwwconfig-common: Any chance for lighttpd support ?

2009-02-26 Thread Jeremy Lal
Package: wwwconfig-common
Version: 0.2.1
Severity: wishlist

i'm willing to package a web app with support for apache2 | lighttpd,
is there any plan to make wwwconfig-common support lighttpd configuration ?


-- System Information:
Debian Release: 5.0
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'testing'), (500, 'stable'), (1, 
'experimental')
Architecture: i386 (i686)

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

wwwconfig-common depends on no packages.

wwwconfig-common recommends no packages.

Versions of packages wwwconfig-common suggests:
pn  apache | apache-ssl   none (no description available)
ii  mysql-client-5.0 [mysql-clien 5.0.77-1   MySQL database client binaries
ii  postgresql-client-8.3 [postgr 8.3.6-1front-end programs for PostgreSQL 

-- 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#510580: Please update rails to 2.1.2

2009-01-03 Thread Jeremy Lal
Package: rails
Version: 2.1.0-6
Severity: wishlist

It seems 2.1.2 release of rails corrects many bugs...

-- System Information:
Debian Release: 5.0
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'testing'), (500, 'stable'), (1, 
'experimental')
Architecture: i386 (i686)

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

Versions of packages rails depends on:
ii  dpkg 1.14.24 Debian package management system
ii  libbuilder-ruby1 2.1.2-1 Ruby library to facilitate program
ii  libdbi-ruby1.8   0.2.2-1 Database Independent Interface for
ii  liberb-ruby  4.2 transitional dummy package
ii  libjs-prototype  1.6.0.3-1   JavaScript Framework for dynamic w
ii  libpgsql-ruby1.8 0.7.9.2008.03.18-2  PostgreSQL interface for Ruby 1.8
ii  libredcloth-ruby 3.0.99.0.svn.20060519-1 Textile module for Ruby 1.8
ii  libruby [liberb- 4.2 Libraries necessary to run Ruby 1.
ii  libruby1.8-extra 0.5 a bundle of additional libraries f
ii  libsqlite3-ruby1 1.2.4-2 SQLite3 interface for Ruby 1.8
ii  libxml-simple-ru 1.0.11-2Simple Ruby API for reading and wr
ii  rake 0.8.1-3 a ruby build program
ii  rdoc 4.2 Generate documentation from ruby s
ii  ruby 4.2 An interpreter of object-oriented 
ii  ruby1.8  1.8.7.72-2  Interpreter of object-oriented scr

Versions of packages rails recommends:
ii  irb   4.2Interactive Ruby (irb)
ii  libmocha-ruby1.8  0.9.0-1Mocking and stubbing library for R

Versions of packages rails suggests:
pn  libapache2-mod-ruby | libapac none (no description available)
ii  libfcgi-ruby1.8   0.8.7-4.1  FastCGI library for Ruby

-- 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#503357: mantis: assumes apache2 is installed whereas it's not

2008-10-24 Thread Jeremy Lal
Package: mantis
Version: 1.1.4+dfsg-1
Severity: normal

Mantis declares it depends on httpd, but installing it without apache
triggers an error, see mantis.postinst#66-72
It should do nothing in case apache2 is not present...

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

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

Versions of packages mantis depends on:
ii  dbconfig-common   1.8.40 common framework for packaging dat
ii  debconf   1.5.24 Debian configuration management sy
ii  libphp-adodb  5.05-1 The ADOdb database abstraction lay
ii  libphp-phpmailer  2.1-1  full featured email transfer class
ii  lighttpd [httpd]  1.4.19-5   A fast webserver with minimal memo
ii  php5-cli  5.2.6-5command-line interpreter for the p
ii  ucf   3.0010 Update Configuration File: preserv

Versions of packages mantis recommends:
ii  mysql-client-5.0 [mysql-clien 5.0.51a-15 MySQL database client binaries
ii  php5-mysql5.2.6-5MySQL module for php5

Versions of packages mantis suggests:
ii  mysql-server-5.0 [mysql-serve 5.0.51a-15 MySQL database server binaries
ii  php5-cli  5.2.6-5command-line interpreter for the p

-- debconf information:
  mantis/dbconfig-reinstall: false
* mantis/dbconfig-install: false
  mantis/remote/newhost:
  mantis/upgrade-backup: true
  mantis/internal/skip-preseed: true
  mantis/install-error: abort
  mantis/internal/reconfiguring: false
  mantis/dbconfig-remove:
  mantis/bounce: [EMAIL PROTECTED]
  mantis/from: [EMAIL PROTECTED]
  mantis/passwords-do-not-match:
  mantis/admin: [EMAIL PROTECTED]
  mantis/mysql/admin-user: root
  mantis/remote/port:
* mantis/passwordnote:
  mantis/purge: false
  mantis/webmaster: [EMAIL PROTECTED]
  mantis/dbconfig-upgrade: true
  mantis/remove-error: abort
  mantis/missing-db-package-error: abort
  mantis/remote/host:
  mantis/db/app-user: mantis
  mantis/mysql/method: unix socket
  mantis/webserver: true
  mantis/db/dbname: mantis
  mantis/database-type: mysql
  mantis/upgrade-error: abort




-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#500835: xarchiver from command-line shows a cp missing operand error

2008-10-01 Thread Jeremy Lal
Package: xarchiver
Version: 0.5.0~beta1-2
Severity: normal

For example, this call :
 xarchiver --extract-to=/home/test empathy-2.24.0.tar.gz
Xarchiver 0.5.0beta1 (©)2005-2008 Giuseppe Torelli
cp -f

then a dialog opens up and says cp : missing operand error
and nothing is extracted.


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

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

Versions of packages xarchiver depends on:
ii  libatk1.0-0   1.22.0-1   The ATK accessibility toolkit
ii  libc6 2.7-13 GNU C Library: Shared libraries
ii  libcairo2 1.6.4-6The Cairo 2D vector graphics libra
ii  libglib2.0-0  2.16.6-1   The GLib library of C routines
ii  libgtk2.0-0   2.12.11-3  The GTK+ graphical user interface 
ii  libpango1.0-0 1.20.5-2   Layout and rendering of internatio

Versions of packages xarchiver recommends:
ii  arj3.10.22-6 archiver for .arj files
ii  bzip2  1.0.5-1   high-quality block-sorting file co
ii  p7zip-full 4.58~dfsg.1-1 7z and 7za file archivers with hig
ii  rpm4.4.2.3-1 Red Hat package manager
ii  unzip  5.52-12   De-archiver for .zip files
ii  zip2.32-1Archiver for .zip files

Versions of packages xarchiver suggests:
ii  rar   1:3.8b3-1  Archiver for .rar files

-- no debconf information




--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#498282: chromium: Loser message just before level1 succeeded message

2008-09-08 Thread Jeremy Lal
Package: chromium
Version: 0.9.13.2-1
Severity: minor

I just lost my last life but some of my shots destroyed the big boss 
just after. So i saw Loser then i saw Level 1 succeeded. Then level 
2 loads but i have no spaceship.
I know nobody cares, but after all it's a bug !

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

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

Versions of packages chromium depends on:
ii  chromium-data 0.9.13.2-1 data pack for chromium
ii  libalut0  1.1.0-2OpenAL Utility Toolkit
ii  libc6 2.7-13 GNU C Library: Shared libraries
ii  libfontconfig12.6.0-1generic font configuration library
ii  libftgl2  2.1.3~rc5-2library to render text in OpenGL u
ii  libgcc1   1:4.3.2-1  GCC support library
ii  libgl1-mesa-glx [libgl1]  7.0.3-5A free implementation of the OpenG
ii  libglpng  1.45-4 PNG loader for OpenGL
ii  libglu1-mesa [libglu1]7.0.3-5The OpenGL utility library (GLU)
ii  libopenal11:1.4.272-2Software implementation of the Ope
ii  libsdl1.2debian   1.2.13-2   Simple DirectMedia Layer
ii  libstdc++64.3.2-1The GNU Standard C++ Library v3
ii  ttf-uralic0.0.20040829-1 Truetype fonts for Cyrillic-based 

chromium recommends no packages.

chromium suggests no packages.

-- no debconf information




-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#494436: thunar-archive-plugin folder in wrong place ?

2008-08-09 Thread Jeremy Lal
Package: thunar
Version: 0.9.0-10
Severity: normal

Hi, the folder path is now :
/usr/lib/thunar-archive-plugin/thunar-archive-plugin
which seems weird, and makes xarchiver put its .tap file in the wrong
folder (ie : /usr/lib/thunar-archive-plugin).
I hesitated before filling a bug to Thunar, as it could also be a bug in 
Xarchiver, but there's nothing else than thunar-archive-plugin dir in 
/usr/lib/thunar-archive-plugin, so i guess there's something wrong with 
that path.
Cheers,
Jérémy.

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

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

Versions of packages thunar depends on:
ii  desktop-file-utils0.15-1 Utilities for .desktop files
ii  exo-utils 0.3.4-7Utility files for libexo
ii  libatk1.0-0   1.22.0-1   The ATK accessibility toolkit
ii  libc6 2.7-13 GNU C Library: Shared libraries
ii  libcairo2 1.6.4-6The Cairo 2D vector graphics libra
ii  libdbus-1-3   1.2.1-3simple interprocess messaging syst
ii  libdbus-glib-1-2  0.76-1 simple interprocess messaging syst
ii  libexo-0.3-0  0.3.4-7Library with extensions for Xfce
ii  libfreetype6  2.3.7-1FreeType 2 font engine, shared lib
ii  libglib2.0-0  2.16.5-1   The GLib library of C routines
ii  libgtk2.0-0   2.12.11-3  The GTK+ graphical user interface 
ii  libice6   2:1.0.4-1  X11 Inter-Client Exchange library
ii  libpango1.0-0 1.20.5-1   Layout and rendering of internatio
ii  libsm62:1.0.3-2  X11 Session Management library
ii  libthunar-vfs-1-2 0.9.0-10   VFS abstraction used in thunar
ii  libx11-6  2:1.1.4-2  X11 client-side library
ii  libxfce4util4 4.4.2-3Utility functions library for Xfce
ii  shared-mime-info  0.30-2 FreeDesktop.org shared MIME databa
ii  thunar-data   0.9.0-10   Provides thunar documentation, ico

Versions of packages thunar recommends:
ii  dbus-x11  1.2.1-3simple interprocess messaging syst
ii  gamin 0.1.9-2File and directory monitoring syst
ii  hal   0.5.11-2   Hardware Abstraction Layer
ii  xfce4-panel   4.4.2-6The Xfce4 desktop environment pane

Versions of packages thunar suggests:
ii  thunar-archive-plugin 0.2.4-3Archive plugin for Thunar file man
ii  thunar-media-tags-plugin  0.1.2-1Media tags plugin for Thunar file 
ii  thunar-volman 0.2.0-2Thunar extension for volumes manag

-- no debconf information




--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#482585: Black screen after openarena quits

2008-05-23 Thread Jeremy Lal
Package: openarena
Version: 0.7.6-1
Severity: normal

After playing openarena, i get a black screen, mouse is working,
right click shows the xfdektop context menu, there is no refresh
(menu is still visible after a clic outside it). No open apps
are visible, and closing xfce session shows for an instant that all
windows were still there, only masked by that black screen.
I also note that when xfdesktop crash, usually i still see panels,
menus... I think the bug comes from xfdesktop but only openarena 
triggers it, for now.

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

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

Versions of packages openarena depends on:
ii  libc6   2.7-11   GNU C Library: Shared libraries
ii  libcurl3-gnutls 7.18.1-1 Multi-protocol file transfer libra
ii  libgl1-mesa-glx [libgl1]7.0.3-1  A free implementation of the OpenG
ii  libogg0 1.1.3-3  Ogg Bitstream Library
ii  libsdl1.2debian 1.2.13-2 Simple DirectMedia Layer
ii  libvorbis0a 1.2.0.dfsg-3 The Vorbis General Audio Compressi
ii  libvorbisfile3  1.2.0.dfsg-3 The Vorbis General Audio Compressi
ii  openarena-data  0.7.6-1  OpenArena game data

openarena recommends no packages.

-- no debconf information




-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#481317: php5-cgi: REMOTE_ADDR contains IPv6-style with http and IPv4-style with https

2008-05-15 Thread Jeremy Lal
Package: php5-cgi
Version: 5.2.6-1
Severity: normal

Using php5-cgi with lighttpd(fastcgi) i get :
echo $_SERVER['REMOTE_ADDR'];
 :::127.0.0.1
and when accessing the page with https :
 127.0.0.1
I don't know wether it's related to lighttpd or php5,
but i guess it's not a normal behaviour ?



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

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

Versions of packages php5-cgi depends on:
ii  libbz2-1.0 1.0.5-0.1 high-quality block-sorting file co
ii  libc6  2.7-11GNU C Library: Shared libraries
ii  libcomerr2 1.40.8-2  common error description library
ii  libdb4.6   4.6.21-8  Berkeley v4.6 Database Libraries [
ii  libkrb53   1.6.dfsg.3-2  MIT Kerberos runtime libraries
ii  libmagic1  4.24-2File type determination library us
ii  libpcre3   7.6-2 Perl 5 Compatible Regular Expressi
ii  libssl0.9.80.9.8g-10 SSL shared libraries
ii  libxml22.6.32.dfsg-2 GNOME XML library
ii  mime-support   3.40-1.1  MIME files 'mime.types'  'mailcap
ii  php5-common5.2.6-1   Common files for packages built fr
ii  ucf3.006 Update Configuration File: preserv
ii  zlib1g 1:1.2.3.3.dfsg-12 compression library - runtime

php5-cgi recommends no packages.

-- no debconf information




-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#480136: apt-listbugs: please allow bug numbers starting with #

2008-05-08 Thread Jeremy Lal
Package: apt-listbugs
Version: 0.0.88
Severity: wishlist

When i want to read a bug report, i just double-clic on the #123456 number, 
then copy/paste;
alas, it doesn't work, since the prompt expects 123456, not #123456... and this 
is frustrating.
May be the prompt could accept both syntaxes ?

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

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

Versions of packages apt-listbugs depends on:
ii  apt  0.7.12  Advanced front-end for dpkg
ii  libdpkg-ruby1.8  0.3.2   modules/classes for dpkg on ruby 1
ii  libgettext-ruby1.8   1.90.0-2Gettext for ruby1.8
ii  libhttp-access2-ruby1.8  2.0.6-3 HTTP accessing library for ruby
ii  libruby1.8 [libzlib-ruby1.8] 1.8.6.114-2 Libraries necessary to run Ruby 1.
ii  libxml-parser-ruby1.80.6.8-3 Interface of expat for the scripti
ii  ruby 4.2 An interpreter of object-oriented 

apt-listbugs recommends no packages.

-- no debconf information




-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#478510: openarena: INVALID GAME FOLDER on most servers with common levels

2008-04-29 Thread Jeremy Lal
Package: openarena
Version: 0.7.6-1
Severity: normal

Just after the last update i get a lot of servers triggering that bug.
I downloaded the original oa076.zip from website, just to realize the 
contents of baseoa was exactly the same...
Is this error due to update ?

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

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

Versions of packages openarena depends on:
ii  libc6   2.7-10   GNU C Library: Shared libraries
ii  libcurl3-gnutls 7.18.1-1 Multi-protocol file transfer libra
ii  libgl1-mesa-glx [libgl1]7.0.3-1  A free implementation of the OpenG
ii  libogg0 1.1.3-3  Ogg Bitstream Library
ii  libsdl1.2debian 1.2.13-2 Simple DirectMedia Layer
ii  libvorbis0a 1.2.0.dfsg-3 The Vorbis General Audio Compressi
ii  libvorbisfile3  1.2.0.dfsg-3 The Vorbis General Audio Compressi
ii  openarena-data  0.7.6-1  OpenArena game data

openarena recommends no packages.

-- no debconf information




-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#476882: stellarium: black screen after startup

2008-04-19 Thread Jeremy Lal
Package: stellarium
Version: 0.9.1-2.1
Severity: important

I used stellarium one month ago, it worked fine. I watched an eclipse...
Since one week when i launch it i get a black screen, after the splash 
screen, no crash, mouse pointer is moving, and alt+f4 quits the application.
Still, it's black.
I removed .stellarium/config.ini and nothing changes.
I tried disabling full screen, now i get a black window (not the 
insect).
Also tried purging package then reinstalling, same effect.
For completeness, here's the output when run from terminal :
 ---
[ This is Stellarium 0.9.1 - http://www.stellarium.org ]
[ Copyright (C) 2000-2008 Fabien Chereau et al ]
 ---
File search paths:
 0. /home/dev/.stellarium
 1. /usr/share/stellarium
Config file is: /home/dev/.stellarium/config.ini
Sky language is fr_FR.
Application language is fr_FR.
Warning can't find module called  StelUI . 
Loading Solar System data...ERROR: C/2006 P1 (McNaught): you must 
provide orbit_PericenterDistance or orbit_SemiMajorAxis
(loaded)
Loading star data...
Loading stars_0_0v0_1.cat: 0_0v0_1; stars: 5013
Loading stars_1_0v0_1.cat: 1_0v0_1; stars: 21999
Loading stars_2_0v0_1.cat: 2_0v0_1; stars: 151416
Loading stars_3_1v0_0.cat: 3_1v0_0; stars: 434064
ZoneArray::create( stars_4_1v0_0.cat ): warning while loading  
stars_4_1v0_0.cat :  file not found: stars/default/stars_4_1v0_0.cat 
ZoneArray::create( mmap:stars_5_2v0_0.cat ): warning while loading  
stars_5_2v0_0.cat :  file not found: stars/default/stars_5_2v0_0.cat 
ZoneArray::create( mmap:stars_6_2v0_0.cat ): warning while loading  
stars_6_2v0_0.cat :  file not found: stars/default/stars_6_2v0_0.cat 
ZoneArray::create( mmap:stars_7_2v0_0.cat ): warning while loading  
stars_7_2v0_0.cat :  file not found: stars/default/stars_7_2v0_0.cat 
ZoneArray::create( mmap:stars_8_2v0_0.cat ): warning while loading  
stars_8_2v0_0.cat :  file not found: stars/default/stars_8_2v0_0.cat 
finished, max_geodesic_level: 3
Loading location: Paris, on Earth
Loading NGC data... (13226 items loaded [3175 dropped])
Loading NGC name data...( 222 names loaded)
Loading Nebula Textures for set default...(109 textures loaded)
Loading Constellation boundary data from 
/usr/share/stellarium/data/constellations_boundaries.dat... (782 
segments loaded)
Loading star names from 
/usr/share/stellarium/skycultures/western/star_names.fab
Loading star sci names from /usr/share/stellarium/stars/default/name.fab
Loading Cities data for planet Earth...(2069 cities loaded)
Localizing TUI for locale: fr_FR.
Localizing TUI for locale: fr_FR.
Script completed.

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

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

Versions of packages stellarium depends on:
ii  libc6  2.7-10GNU C Library: Shared libraries
ii  libfontconfig1 2.5.0-2   generic font configuration library
ii  libfreetype6   2.3.5-1+b1FreeType 2 font engine, shared lib
ii  libgcc11:4.3.0-3 GCC support library
ii  libgl1-mesa-glx [libgl 7.0.3-1   A free implementation of the OpenG
ii  libglib2.0-0   2.16.3-2  The GLib library of C routines
ii  libglu1-mesa [libglu1] 7.0.3-1   The OpenGL utility library (GLU)
ii  libice62:1.0.4-1 X11 Inter-Client Exchange library
ii  libjpeg62  6b-14 The Independent JPEG Group's JPEG 
ii  libpng12-0 1.2.15~beta5-3PNG library - runtime
ii  libqt4-core4.4.0~rc1-4   transitional package for Qt 4 core
ii  libqt4-gui 4.4.0~rc1-4   Qt 4 GUI module
ii  libsdl-mixer1.21.2.8-3   mixer library for Simple DirectMed
ii  libsm6 2:1.0.3-1+b1  X11 Session Management library
ii  libstdc++6 4.3.0-3   The GNU Standard C++ Library v3
ii  libx11-6   2:1.0.3-7 X11 client-side library
ii  libxcursor11:1.1.9-1 X cursor management library
ii  libxext6   2:1.0.4-1 X11 miscellaneous extension librar
ii  libxfixes3 1:4.0.3-2 X11 miscellaneous 'fixes' extensio
ii  libxi6 2:1.1.3-1 X11 Input extension library
ii  libxinerama1   2:1.0.3-1 X11 Xinerama extension library
ii  libxrandr2 2:1.2.2-1 X11 RandR extension library
ii  libxrender11:0.9.4-1 X Rendering Extension client libra
ii  stellarium-data0.9.1-2.1 datafiles for Stellarium, a real-t
ii  zlib1g 1:1.2.3.3.dfsg-12 compression library - runtime

stellarium recommends no packages.

-- no debconf 

Bug#476187: rhythmbox: segfaults at startup

2008-04-14 Thread Jeremy Lal
Package: rhythmbox
Version: 0.11.5-2
Severity: important

I get a segmentation fault at startup. Before anything shows up, just before 
the small icon appears in 
the notification area (empty space appears there, then disappears immediately)
After a lot of lines :
(rhythmbox:10404): GLib-GObject-CRITICAL **: g_type_get_qdata: assertion `node 
!= NULL' failed
but i'm not sure if it's related.
Also naively tried to launch it using another user (a new one), with the same 
effect.
Doing rhythmbox -d yields same output and result.

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

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

Versions of packages rhythmbox depends on:
ii  dbus   1.2.1-1   simple interprocess messaging syst
ii  gconf2 2.22.0-1  GNOME configuration database syste
ii  gnome-icon-theme   2.22.0-1  GNOME Desktop icon theme
ii  gstreamer0.10-alsa [gs 0.10.19-1 GStreamer plugin for ALSA
ii  gstreamer0.10-esd [gst 0.10.7-3  GStreamer plugin for ESD
ii  gstreamer0.10-gnomevfs 0.10.19-1 GStreamer plugin for GnomeVFS
ii  gstreamer0.10-plugins- 0.10.19-1 GStreamer plugins from the base 
ii  gstreamer0.10-plugins- 0.10.7-3  GStreamer plugins from the good 
ii  gstreamer0.10-pulseaud 0.9.7-2   GStreamer plugin for PulseAudio
ii  gstreamer0.10-x0.10.19-1 GStreamer plugins for X11 and Pang
ii  libart-2.0-2   2.3.20-1  Library of functions for 2D graphi
ii  libatk1.0-01.22.0-1  The ATK accessibility toolkit
ii  libavahi-client3   0.6.22-3  Avahi client library
ii  libavahi-common3   0.6.22-3  Avahi common library
ii  libavahi-glib1 0.6.22-3  Avahi glib integration library
ii  libbonobo2-0   2.22.0-1  Bonobo CORBA interfaces library
ii  libbonoboui2-0 2.22.0-1  The Bonobo UI library
ii  libc6  2.7-10GNU C Library: Shared libraries
ii  libcairo2  1.4.14-1  The Cairo 2D vector graphics libra
ii  libdbus-1-31.2.1-1   simple interprocess messaging syst
ii  libdbus-glib-1-2   0.74-2simple interprocess messaging syst
ii  libexpat1  1.95.8-4  XML parsing C library - runtime li
ii  libfontconfig1 2.5.0-2   generic font configuration library
ii  libfreetype6   2.3.5-1+b1FreeType 2 font engine, shared lib
ii  libgconf2-42.22.0-1  GNOME configuration database syste
ii  libglade2-01:2.6.2-1 library to load .glade files at ru
ii  libglib2.0-0   2.16.3-2  The GLib library of C routines
ii  libgnome-keyring0  2.22.1-1  GNOME keyring services library
ii  libgnome-media02.22.0-1  runtime libraries for the GNOME me
ii  libgnome2-02.20.1.1-1The GNOME 2 library - runtime file
ii  libgnomecanvas2-0  2.20.1.1-1A powerful object-oriented display
ii  libgnomeui-0   2.20.1.1-1The GNOME 2 libraries (User Interf
ii  libgnomevfs2-0 1:2.22.0-2GNOME Virtual File System (runtime
ii  libgpod3   0.6.0-3   a library to read and write songs 
ii  libgstreamer-plugins-b 0.10.19-1 GStreamer libraries from the base
ii  libgstreamer0.10-0 0.10.19-1 Core GStreamer libraries and eleme
ii  libgtk2.0-02.12.9-3  The GTK+ graphical user interface 
ii  libhal10.5.11~rc2-1  Hardware Abstraction Layer - share
ii  libice62:1.0.4-1 X11 Inter-Client Exchange library
ii  liblircclient0 0.8.2-2   infra-red remote control support -
ii  libmtp70.2.6.1-2 Media Transfer Protocol (MTP) libr
ii  libmusicbrainz4c2a 2.1.5-2   Second generation incarnation of t
ii  libnautilus-burn4  2.20.0-1  Nautilus Burn Library - runtime ve
ii  libnotify1 [libnotify1 0.4.4-3   sends desktop notifications to a n
ii  libnspr4-0d4.7.0-2   NetScape Portable Runtime Library
ii  liborbit2  1:2.14.12-0.1 libraries for ORBit2 - a CORBA ORB
ii  libpango1.0-0  1.20.2-2  Layout and rendering of internatio
ii  libpng12-0 1.2.15~beta5-3PNG library - runtime
ii  libpopt0   1.10-3lib for parsing cmdline parameters
ii  libsexy2   0.1.11-2  collection of additional GTK+ widg
ii  libsm6 2:1.0.3-1+b1  X11 Session Management library
ii  libsoup2.4-1   2.4.1-1   an HTTP library implementation in 
ii  libtotem-plparser102.22.2-1  Totem Playlist Parser 

Bug#473412: rhythmbox: mime type of podcasts is wrongly guessed, then podcast is ignored by totem-pl-parser

2008-03-30 Thread Jeremy Lal
Package: rhythmbox
Version: 0.11.5-1
Severity: normal

since 0.11 i can't download some podcasts anymore.
i found it was podcasts with that kind of url :
http://somethi.ng/podcast.php3
I checked and the server correctly sets the mime type in http headers, 
(application/rss+xml)
but rhythmbox uses totem-pl-parser, which guesses the mime type from file 
extension.
Forcing totem-pl-parser (with option force) to check content before deciding if 
wrong data or not
corrects the problem. I think it's right to do that because rhythmbox asks user 
if she wants to force
adding a podcast with an extension different than rss, xml... just before the 
line modified by my patch.

See Attached patch.


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

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

Versions of packages rhythmbox depends on:
ii  dbus   1.1.20-1  simple interprocess messaging syst
ii  gconf2 2.22.0-1  GNOME configuration database syste
ii  gnome-icon-theme   2.22.0-1  GNOME Desktop icon theme
ii  gstreamer0.10-alsa [gs 0.10.18-3 GStreamer plugin for ALSA
ii  gstreamer0.10-esd [gst 0.10.7-3  GStreamer plugin for ESD
ii  gstreamer0.10-gnomevfs 0.10.18-3 GStreamer plugin for GnomeVFS
ii  gstreamer0.10-plugins- 0.10.18-3 GStreamer plugins from the base 
ii  gstreamer0.10-plugins- 0.10.7-3  GStreamer plugins from the good 
ii  gstreamer0.10-pulseaud 0.9.7-2   GStreamer plugin for PulseAudio
ii  gstreamer0.10-x0.10.18-3 GStreamer plugins for X11 and Pang
ii  libart-2.0-2   2.3.20-1  Library of functions for 2D graphi
ii  libatk1.0-01.22.0-1  The ATK accessibility toolkit
ii  libavahi-client3   0.6.22-2  Avahi client library
ii  libavahi-common3   0.6.22-2  Avahi common library
ii  libavahi-glib1 0.6.22-2  Avahi glib integration library
ii  libbonobo2-0   2.22.0-1  Bonobo CORBA interfaces library
ii  libbonoboui2-0 2.22.0-1  The Bonobo UI library
ii  libc6  2.7-10GNU C Library: Shared libraries
ii  libcairo2  1.4.14-1  The Cairo 2D vector graphics libra
ii  libdbus-1-31.1.20-1  simple interprocess messaging syst
ii  libdbus-glib-1-2   0.74-1simple interprocess messaging syst
ii  libexpat1  1.95.8-4  XML parsing C library - runtime li
ii  libffi53.0.4-2   Foreign Function Interface library
ii  libfontconfig1 2.5.0-2   generic font configuration library
ii  libfreetype6   2.3.5-1+b1FreeType 2 font engine, shared lib
ii  libgconf2-42.22.0-1  GNOME configuration database syste
ii  libglade2-01:2.6.2-1 library to load .glade files at ru
ii  libglib2.0-0   2.16.1-2  The GLib library of C routines
ii  libgnome-keyring0  2.22.0-2  GNOME keyring services library
ii  libgnome-media02.22.0-1  runtime libraries for the GNOME me
ii  libgnome2-02.20.1.1-1The GNOME 2 library - runtime file
ii  libgnomecanvas2-0  2.20.1.1-1A powerful object-oriented display
ii  libgnomeui-0   2.20.1.1-1The GNOME 2 libraries (User Interf
ii  libgnomevfs2-0 1:2.22.0-2GNOME Virtual File System (runtime
ii  libgpod3   0.6.0-3   a library to read and write songs 
ii  libgstreamer-plugins-b 0.10.18-3 GStreamer libraries from the base
ii  libgstreamer0.10-0 0.10.18-4 Core GStreamer libraries and eleme
ii  libgtk2.0-02.12.9-2  The GTK+ graphical user interface 
ii  libhal10.5.11~rc2-1  Hardware Abstraction Layer - share
ii  libice62:1.0.4-1 X11 Inter-Client Exchange library
ii  liblircclient0 0.8.2-2   infra-red remote control support -
ii  libmtp70.2.6.1-2 Media Transfer Protocol (MTP) libr
ii  libmusicbrainz4c2a 2.1.5-2   Second generation incarnation of t
ii  libnautilus-burn4  2.20.0-1  Nautilus Burn Library - runtime ve
ii  libnotify1 [libnotify1 0.4.4-3   sends desktop notifications to a n
ii  libnspr4-0d4.7.0-2   NetScape Portable Runtime Library
ii  liborbit2  1:2.14.12-0.1 libraries for ORBit2 - a CORBA ORB
ii  libpango1.0-0  1.20.0-1  Layout and rendering of internatio
ii  libpng12-0 1.2.15~beta5-3PNG library - runtime
ii  libpopt0   1.10-3lib for parsing cmdline parameters
ii  libsexy2   0.1.11-2  collection of additional GTK+ widg
ii  

Bug#473313: libtotem-plparser10: ignores files ending with .php3, regardless of mime type given by server headers ?

2008-03-29 Thread Jeremy Lal
Package: libtotem-plparser10
Version: 2.22.1-1
Severity: normal

It seems totem-pl-parser doesn't use http headers to get the mime type 
of the file when given by URL :
test-parser --debug http://www.la-bas.org/podcast.php3
_get_mime_type_for_name for 'http://www.la-bas.org/podcast.php3' 
returned 'application/x-php'
ignored url 'http://www.la-bas.org/podcast.php3'

whereas 
wget http://www.la-bas.org/podcast.php3
...stuff...
Longueur: non spécifié [application/rss+xml]

It would be nonsense to require a RSS be defined only by file name when 
served by http !
I guess it's a minor change in plparser logic, so i'll try to patch it 
myself.

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

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

Versions of packages libtotem-plparser10 depends on:
ii  libatk1.0-01.22.0-1  The ATK accessibility toolkit
ii  libbonobo2-0   2.22.0-1  Bonobo CORBA interfaces library
ii  libc6  2.7-10GNU C Library: Shared libraries
ii  libcairo2  1.4.14-1  The Cairo 2D vector graphics libra
ii  libcamel1.2-10 1.12.3-1  The Evolution MIME message handlin
ii  libdbus-1-31.1.20-1  simple interprocess messaging syst
ii  libedataserver1.2-91.12.3-1  Utility library for evolution data
ii  libgconf2-42.22.0-1  GNOME configuration database syste
ii  libglib2.0-0   2.16.1-2  The GLib library of C routines
ii  libgnomevfs2-0 1:2.22.0-2GNOME Virtual File System (runtime
ii  libgtk2.0-02.12.9-2  The GTK+ graphical user interface 
ii  libhal10.5.11~rc2-1  Hardware Abstraction Layer - share
ii  liborbit2  1:2.14.12-0.1 libraries for ORBit2 - a CORBA ORB
ii  libpango1.0-0  1.20.0-1  Layout and rendering of internatio
ii  libxml22.6.31.dfsg-2 GNOME XML library

libtotem-plparser10 recommends no packages.

-- no debconf information





Bug#465803: thunar vfs leaves zombies (fixed upstream, easy to patch)

2008-02-14 Thread Jeremy Lal
Package: thunar
Version: 0.9.0-3
Severity: normal

Please have a look at this bug :
http://bugzilla.xfce.org/show_bug.cgi?id=2983
NOticeably fixed upstream

i just compiled thunar from debian source package, and once the provided 
patch in the bug description is applied no more zombies 
here.

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

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

Versions of packages thunar depends on:
ii  desktop-file-utils  0.14-2   Utilities for .desktop files
ii  libatk1.0-0 1.20.0-1 The ATK accessibility toolkit
ii  libc6   2.7-8GNU C Library: Shared libraries
ii  libcairo2   1.4.14-1 The Cairo 2D vector graphics libra
ii  libdbus-1-3 1.1.2-1  simple interprocess messaging syst
ii  libdbus-glib-1-20.74-1   simple interprocess messaging syst
ii  libexo-0.3-00.3.4-3  Library with extensions for Xfce
ii  libfreetype62.3.5-1+b1   FreeType 2 font engine, shared lib
ii  libglib2.0-02.14.6-1 The GLib library of C routines
ii  libgtk2.0-0 2.12.8-1 The GTK+ graphical user interface 
ii  libice6 2:1.0.4-1X11 Inter-Client Exchange library
ii  libpango1.0-0   1.18.4-1 Layout and rendering of internatio
ii  libsm6  2:1.0.3-1+b1 X11 Session Management library
ii  libthunar-vfs-1-2   0.9.0-3  VFS abstraction used in thunar
ii  libx11-62:1.0.3-7X11 client-side library
ii  libxfce4util4   4.4.2-1  Utility functions library for Xfce
ii  shared-mime-info0.23-2   FreeDesktop.org shared MIME databa
ii  thunar-data 0.9.0-3  Provides thunar documentation, ico
ii  xfce4-panel 4.4.2-2  The Xfce4 desktop environment pane

Versions of packages thunar recommends:
ii  dbus  1.1.2-1simple interprocess messaging syst
ii  gamin 0.1.9-2File and directory monitoring syst
ii  hal   0.5.10-5   Hardware Abstraction Layer

-- no debconf information




-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#464064: postgresql-8.3: Bad typo in README.Debian : to be upgraded cluster LOST !

2008-02-04 Thread Jeremy Lal
Package: postgresql-8.3
Version: 8.3.0-1
Severity: minor

In :
/usr/share/doc/postgresql-8.3/README.Debian.gz
Default clusters and upgrading
---
you first install postgresql-8.3:

  apt-get install postgresql-8.3

Then drop the default 8.2 cluster:

  pg_dropcluster 8.2 main --stop

And then upgrade the 8.2 cluster to 8.3:

  pg_upgradecluster 8.2 main

--
If, as i did, one follows this step by step, you just lose your main 
cluster without upgrading anything. Nice !!!
Of course second step should be
 pg_dropcluster 8.3 main --stop

PLEASE CORRECT THIS !!!




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

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

Versions of packages postgresql-8.3 depends on:
ii  libc6 2.7-6  GNU C Library: Shared libraries
ii  libcomerr21.40.5-2   common error description library
ii  libkrb53  1.6.dfsg.3~beta1-2 MIT Kerberos runtime libraries
ii  libldap-2.4-2 2.4.7-4OpenLDAP libraries
ii  libpam0g  0.99.7.1-5 Pluggable Authentication Modules l
ii  libpq58.3.0-1PostgreSQL C client library
ii  libssl0.9.8   0.9.8g-4   SSL shared libraries
ii  libxml2   2.6.31.dfsg-1  GNOME XML library
ii  postgresql-client-8.3 8.3.0-1front-end programs for PostgreSQL 
ii  postgresql-common 84 PostgreSQL database-cluster manage
ii  tzdata2007k-2time zone and daylight-saving time

postgresql-8.3 recommends no packages.

-- no debconf information




-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#457637: sl-modem-daemon: slmodemd period size 48 is not supported by playback (64)

2007-12-23 Thread Jeremy Lal
Package: sl-modem-daemon
Version: 2.9.9d+e-pre2-10
Severity: normal

Hi, Si3054 alsa modem is not working out of the box, whereas it could :
just patch modem_main.c as described in
http://helllabs.org/patch/20070710_slmodem/slmodem-2.9.11-alsa-period-size.patch

I tried it and patched the source package from unstable : i can atdt,
and wvdialconf, wvdial are working without any problem or special 
configuration to do.

For completeness : 
to test slmodemd :
./slmodemd --alsa modem:0

Accordingly, the /etc/defaults/sl-modem-daemon contains :
SLMODEMD_DEVICE=modem:0
SLMODEMD_COUNTRY=FRANCE
OPTS=--alsa

then /etc/init.d/sl-modem-daemon restart
and voilà !

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

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

Versions of packages sl-modem-daemon depends on:
ii  adduser   3.105  add and remove users and groups
ii  debconf [debconf-2.0] 1.5.17 Debian configuration management sy
ii  libasound21.0.15-3   ALSA library
ii  libc6 2.7-5  GNU C Library: Shared libraries

sl-modem-daemon recommends no packages.

-- debconf information excluded





Bug#443357: compiz: Compiz runs only as root

2007-09-20 Thread Jeremy Lal
Package: compiz
Version: 0.5.2-2
Severity: normal

I get compiz to work straight from the unstable packages,
but only whn i run
compiz --replace
as root
When run as normal user, metacity unloads, but compiz decorator 
doesn't : windows borders doesn't show, 
and i got the same messages as when run as root, so i can't tell what's 
wrong.
I checked permissions on compiz installed files and folders, everything 
is 644 or 755 as expected.
I'd like to help more, but i don't know how to run compiz with debug 
on...



-- System Information:
Debian Release: 4.0
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.22-2-686
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)

Versions of packages compiz depends on:
ii  compiz-core   0.5.2-2OpenGL window and compositing mana
ii  compiz-gnome  0.5.2-2OpenGL window and compositing mana
ii  compiz-gtk0.5.2-2OpenGL window and compositing mana
ii  compiz-plugins0.5.2-2OpenGL window and compositing mana

compiz recommends no packages.

-- no debconf information




-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



  1   2   >