Bug#929679: fai-client: fai-kvm allow to pass arguments down to qemu-kvm

2019-05-28 Thread Marc Fargas
Package: fai-client
Version: 5.8.4
Severity: normal

Dear Maintainer,

fai-kvm does not currently allow to pass arguments to the underlying
qemu-kvm process which could come in handy on certain scenarios (ie: if
you want to setup yubikeys from fai, you need usb passthrough to kvm for
testing).

I attach two proposed patches (from my limited bash kung-fu):
- double dash enables the "standard" syntax:
fai-kvm [fai-kvm args] -- [args passed to qemu-kvm]
- shift abuse enables the syntax:
fai-kvm [fai-kvm args] [args passed to qemu-kvm]

They are named based on how they're coded. Double dash is a few lines
longer, but the syntax is way more clear on what programs handles which
parameters. I personally prefer that one.

Hope this can be implemented in future releases of fai!

marc


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

Kernel: Linux 4.19.0-5-amd64 (SMP w/4 CPU cores)
Kernel taint flags: TAINT_PROPRIETARY_MODULE, TAINT_OOT_MODULE, 
TAINT_UNSIGNED_MODULE
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8), 
LANGUAGE=en_US:en (charmap=UTF-8)
Shell: /bin/sh linked to /usr/bin/dash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled

Versions of packages fai-client depends on:
ii  debconf-utils1.5.71
ii  file 1:5.35-4
ii  iproute2 4.20.0-2
ii  libapt-pkg-perl  0.1.34+b1
ii  libfile-lchown-perl  0.02-2+b5
ii  perl 5.28.1-6

Versions of packages fai-client recommends:
ii  fdisk  2.33.1-0.1
ii  libgraph-perl  1:0.9704-1
ii  util-linux 2.33.1-0.1

Versions of packages fai-client suggests:
pn  logtail  

-- Configuration Files:
/etc/fai/fai.conf [Errno 2] No such file or directory: '/etc/fai/fai.conf'
(sorry, I have /etc/fai inside /srv/fai! but I don't think the file is
needed for this).

-- no debconf information
--- /usr/bin/fai-kvm2019-03-27 22:44:02.0 +0100
+++ ./fai-kvm   2019-05-28 16:18:20.466019544 +0200
@@ -24,26 +24,28 @@
 
   # boot from disk
 [ -n "$1" ] && disk=$1
+shift
 case "$disk" in
*.raw) f=",format=raw" ;;
 esac
 set -x
-kvm $gopt -boot order=c $net -drive file=$disk,if=virtio$f
+kvm $gopt -boot order=c $net -drive file=$disk,if=virtio$f $*
 }
 # - - - - - - - - - - - - - - - - - - - - - - - - -
 boot_pxe() {
 
   # PXE boot
   set -x
-  kvm $gopt -boot order=nc $net $disk
+  kvm $gopt -boot order=nc $net $disk $*
 }
 # - - - - - - - - - - - - - - - - - - - - - - - - -
 boot_cd() {
 
   [ -n "$1" ] && cdimage=$1
+  shift
   # boot fai-cd
   set -x
-  kvm $gopt -boot order=cd $net $disk -cdrom $cdimage
+  kvm $gopt -boot order=cd $net $disk -cdrom $cdimage $*
 }
 # - - - - - - - - - - - - - - - - - - - - - - - - -
 die() {
@@ -155,10 +157,31 @@
   done
 fi
 
-case "$1" in
-pxe) boot_pxe ;;
-cd) boot_cd $2 ;;
-disk) boot_disk $2 ;;
+# Loop through parameters until '--' to pass the remainder to kvm.
+# The preceding parameters are stored in $param1 & $param2
+# param1 = cd|pxe|pxe ; param2 = diskimage | imagename
+param1=""
+param2=""
+while test ${#} -gt 0
+do
+  echo "param... $1"
+  if [ "$1" = "--" ]; then
+ shift
+ break
+  fi
+  param1="$param2"
+  param2="$1"
+  shift
+done
+if [ -z "$param1" ]; then
+  param1="$param2" 
+  param2=""
+fi
+
+case "$param1" in
+pxe) boot_pxe $*;;
+cd) boot_cd $param2 $*;;
+disk) boot_disk $param2 $* ;;
 *)
 echo "Missing argument." >&2
 usage
--- /usr/bin/fai-kvm2019-03-27 22:44:02.0 +0100
+++ ./fai-kvm   2019-05-28 16:22:12.634678582 +0200
@@ -23,27 +23,29 @@
 boot_disk() {
 
   # boot from disk
-[ -n "$1" ] && disk=$1
+[ -n "$2" ] && disk=$2
+shift; shift
 case "$disk" in
*.raw) f=",format=raw" ;;
 esac
 set -x
-kvm $gopt -boot order=c $net -drive file=$disk,if=virtio$f
+kvm $gopt -boot order=c $net -drive file=$disk,if=virtio$f $*
 }
 # - - - - - - - - - - - - - - - - - - - - - - - - -
 boot_pxe() {
-
+  shift
   # PXE boot
   set -x
-  kvm $gopt -boot order=nc $net $disk
+  kvm $gopt -boot order=nc $net $disk $*
 }
 # - - - - - - - - - - - - - - - - - - - - - - - - -
 boot_cd() {
 
-  [ -n "$1" ] && cdimage=$1
+  [ -n "$2" ] && cdimage=$2
+  shift; shift
   # boot fai-cd
   set -x
-  kvm $gopt -boot order=cd $net $disk -cdrom $cdimage
+  kvm $gopt -boot order=cd $net $disk -cdrom $cdimage $*
 }
 # - - - - - - - - - - - - - - - - - - - - - - - - -
 die() {
@@ -156,9 +158,9 @@
 fi
 
 case "$1" in
-pxe) boot_pxe ;;
-cd) boot_cd $2 ;;
-disk) boot_disk $2 ;;
+pxe) boot_pxe $*;;
+cd) boot_cd $*;;
+disk) boot_disk $* ;;
 *)
 echo "Missing argument." >&2
 usage


Bug#929651: simple-cdd: NameError exception on gpg verify failure

2019-05-27 Thread Marc Fargas
Package: simple-cdd
Version: 0.6.6
Severity: normal

Dear Maintainer,

If verify_gpg_sig fails on gnupg.py, the raise call asks for a variable
that is not defined, full traceback:

Traceback (most recent call last):
  File "/usr/bin/build-simple-cdd", line 678, in 
scdd.build_mirror()
  File "/usr/bin/build-simple-cdd", line 290, in build_mirror
self.run_tool("mirror", tool)
  File "/usr/bin/build-simple-cdd", line 387, in run_tool
tool.run()
  File 
"/usr/lib/python3/dist-packages/simple_cdd/tools/mirror_download.py", line 107, 
in run
self.gnupg.verify_detached_sig(release_file, release_file + ".gpg")
  File "/usr/lib/python3/dist-packages/simple_cdd/gnupg.py", line 58, 
in verify_detached_sig
return self.verify_gpg_sig("--verify", sigpathname, pathname)
  File "/usr/lib/python3/dist-packages/simple_cdd/gnupg.py", line 55, 
in verify_gpg_sig
raise Fail("Signature verification failed on %s", pathname)
NameError: name 'pathname' is not defined

Looking at the code, it looks that the variable is not defined.

Marc

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

Kernel: Linux 4.19.0-5-amd64 (SMP w/4 CPU cores)
Kernel taint flags: TAINT_PROPRIETARY_MODULE, TAINT_OOT_MODULE, 
TAINT_UNSIGNED_MODULE
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8), 
LANGUAGE=en_US:en (charmap=UTF-8)
Shell: /bin/sh linked to /usr/bin/dash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled

Versions of packages simple-cdd depends on:
ii  dctrl-tools 2.24-3
ii  debian-cd   3.1.23
ii  lsb-release 10.2019031300
ii  python3 3.7.2-1
ii  python3-simple-cdd  0.6.6
ii  reprepro5.3.0-1
ii  rsync   3.1.3-6
ii  wget1.20.1-1.1

Versions of packages simple-cdd recommends:
ii  dose-distcheck  5.0.1-12

Versions of packages simple-cdd suggests:
ii  qemu-kvm  1:3.1+dfsg-7

-- no debconf information



Bug#929636: Acknowledgement (simple-cdd: qemu options are not implemented)

2019-05-27 Thread Marc Fargas
Attached a simple patch that works. Though my knowledge of how this
works is very limited so it might break something...

marc

--- /usr/bin/build-simple-cdd	2018-04-23 05:36:26.0 +0200
+++ ./build-simple-cdd	2019-05-27 18:47:26.177595431 +0200
@@ -532,8 +532,9 @@
 if self.env.get("use_serial_console"):
 qemu_opts.append("-nographic")
 
-# if [ -n "$mem" ]; then
-# qemu_opts="$qemu_opts -m $mem"
+if self.env.get("mem"):
+qemu_opts.append("-m")
+qemu_opts.append(self.env.get('mem'))
 
 # Hard disk image
 hd_img = os.path.join(self.env.get("simple_cdd_dir"), "qemu-test.hd.img")


Bug#929636: simple-cdd: qemu options are not implemented

2019-05-27 Thread Marc Fargas
Package: simple-cdd
Version: 0.6.6
Severity: normal

Dear Maintainer,

At the very end of the detailed example (simple-cdd.conf.detailed.gz)
the following appears:

# memory available within qemu, in MB
#mem=96

# additional options that get passed to qemu
#qemu_opts="-std-vga"

But these options have no effect at all.

Looking at the run_qemu() function in build-simple-cdd it appears that
this is not implemented. qemu_opts is a blank list, while 'mem' there's
a comment that looks like it comes from a previous shell script base
version, but never got implemented.

While it remains not implemented, the sample file should state so.
Though I'm not sure why it's not implemented, from a quick grasp of the
code, it looks like the commented section should read:

if self.env.get('mem'):
qemu_opts.append('-m')
qemu_opts.append(self.env['mem'])

I'm filing 'Severity: normal' but beware that the qemu defaults (atleast on my
system) imply so little memory that when the image launches the first
you get is a d-i warning about not enough memory. So it might be major.

Best,
marc


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

Kernel: Linux 4.19.0-5-amd64 (SMP w/4 CPU cores)
Kernel taint flags: TAINT_PROPRIETARY_MODULE, TAINT_OOT_MODULE, 
TAINT_UNSIGNED_MODULE
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8), 
LANGUAGE=en_US:en (charmap=UTF-8)
Shell: /bin/sh linked to /usr/bin/dash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled

Versions of packages simple-cdd depends on:
ii  dctrl-tools 2.24-3
ii  debian-cd   3.1.23
ii  lsb-release 10.2019031300
ii  python3 3.7.2-1
ii  python3-simple-cdd  0.6.6
ii  reprepro5.3.0-1
ii  rsync   3.1.3-6
ii  wget1.20.1-1.1

Versions of packages simple-cdd recommends:
ii  dose-distcheck  5.0.1-12

Versions of packages simple-cdd suggests:
ii  qemu-kvm  1:3.1+dfsg-7

-- no debconf information



Bug#584223: squid3: Squid listens to ipv6 only

2010-06-02 Thread Marc Fargas
Package: squid3
Version: 3.1.3-2
Severity: important

Hi,

After installing squid3 3.1 eveything stoped working. After looking around,
netstat -lpn showed that:

tcp6       0      0 :::3128                 :::*
LISTEN      3921/(squid)

That is, squid was listening on port 3128 but only in ipv6, not ipv4. The
relevant config line is http_port 3128. On 3.0 it was working just fine.

I marked it important as anyone upgrading from 3.0 to 3.1 may find that problem.

If you specify an address, ie: http_port 127.0.0.1:3128 it works just fine, but
there's no way to speficy listen to ALL interfaces in IPV4 mode on port 3128,
which was possible in 3.0 ;\

Sincerelly,
Marc


-- System Information:
Debian Release: 5.0.4
 APT prefers stable
 APT policy: (900, 'stable'), (300, 'testing'), (150, 'experimental'),
(100, 'unstable')
Architecture: i386 (i686)

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

Versions of packages squid3 depends on:
ii  adduser           3.110                  add and remove users and groups
ii  libc6             2.10.2-6               Embedded GNU C Library: Shared lib
ii  libcap2           2.11-2                 support for getting/setting POSIX.
ii  libcomerr2        1.41.3-1               common error description library
ii  libdb4.8          4.8.26-1               Berkeley v4.8 Database Libraries [
ii  libexpat1         2.0.1-4+lenny3         XML parsing C library - runtime li
ii  libgcc1           1:4.4.2-9              GCC support library
ii  libgssapi-krb5-2  1.8.1+dfsg-3           MIT Kerberos runtime libraries - k
ii  libk5crypto3      1.8.1+dfsg-3           MIT Kerberos runtime libraries - C
ii  libkrb5-3         1.8.1+dfsg-3           MIT Kerberos runtime libraries
ii  libldap-2.4-2     2.4.11-1               OpenLDAP libraries
ii  libpam0g          1.0.1-5+lenny1         Pluggable Authentication Modules l
ii  libsasl2-2        2.1.22.dfsg1-23+lenny1 Cyrus SASL - authentication abstra
ii  libstdc++6        4.4.2-9                The GNU Standard C++ Library v3
ii  libxml2           2.7.6.dfsg-2+b1        GNOME XML library
ii  logrotate         3.7.1-5                Log rotation utility
ii  lsb-base          3.2-20                 Linux Standard Base 3.2 init scrip
ii  netbase           4.34                   Basic TCP/IP networking system
ii  squid3-common     3.1.3-2                A full featured Web Proxy cache (H

squid3 recommends no packages.

Versions of packages squid3 suggests:
pn  resolvconf                    none     (no description available)
pn  smbclient                     none     (no description available)
pn  squid-cgi                     none     (no description available)
pn  squidclient                   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#572327: squid3: transparent/intercept port not listening on all interfaces

2010-03-03 Thread Marc Fargas
Package: squid3
Version: 3.1.0.16-1
Severity: important

Hi there,

Until now I had http_port 3129 transparent in my squid.conf, and I
understand that on 3.1 I have to change this to http_port 3129 intercept

BUT, squid:
  * Won't listen to that port
  * Wont' tell ***anything**, no error message, no note in the log
files about 3129 not being opened.

After a lot of trying it seems that the intercept port cannot be
used with IPv6 so I must do something like http_port my_ip:3129 intercept

Doing so works, but doing http_port 0.0.0.0:3129 intercept doesn't,
which makes impossible to listen to all interfaces in IPv4 fashion
:(

I maked bug important as any transparent proxying user will
encounter this problem for which a solution is not immediatelly
visible, and more a workaround than a solution.

So, in brief:
  * There should be a way to specify a IPv4 ie: http_port [ipv4]:3129
  * Squid should really tell you that a port you asked for (3129) is
not beign opened for some reason.

Cheers,
Marc

-- System Information:
Debian Release: 5.0.4
  APT prefers stable
  APT policy: (750, 'stable'), (700, 'testing'), (600, 'unstable'), (500, 
'proposed-updates'), (1, 'experimental')
Architecture: amd64 (x86_64)

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



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



Bug#551623: Please package gnome-shell preview

2009-10-19 Thread Marc Fargas
Package: gnome
Version: 1:2.26+2
Severity: minor

Hi,

With GNOME 2.28 there was an initial Gnome Shell release (preview
release) but it's not in Debian, NEW o in the packagelist on
http://www.0d.be/debian/debian-gnome-2.28-status.html .

Do Debian GNOME Maintainers have the intention to package that (new)
module of GNOME?

Cheers,
Marc

-- System Information:
Debian Release: 5.0.3
  APT prefers stable
  APT policy: (750, 'stable'), (700, 'testing'), (600, 'unstable'), (1, 
'experimental')
Architecture: amd64 (x86_64)

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

Versions of packages gnome depends on:
ii  arj   3.10.22-6  archiver for .arj files
ii  avahi-daemon  0.6.23-3lenny1 Avahi mDNS/DNS-SD daemon
ii  epiphany-extensions   2.28.0-1   Extensions for Epiphany web browse
ii  evolution-mapi0.28.0-1   Exchange support for the Evolution
ii  evolution-plugins 2.28.1-1   standard plugins for Evolution
ii  evolution-webcal  2.26.0-1   webcal: URL handler for GNOME and 
ii  gdm-themes0.6.2  Themes for the GNOME Display Manag
ii  gedit-plugins 2.28.0-1   set of plugins for gedit
ii  gnome-app-install 0.5.5.1-1  GNOME Application Installer
ii  gnome-bluetooth   2.27.5-1   GNOME Bluetooth tools
ii  gnome-desktop-environment 1:2.26+2   The GNOME Desktop Environment
ii  gnome-games   1:2.26.3-1 games for the GNOME desktop
ii  gnome-themes-extras   2.22.0-3   extra themes for the GNOME desktop
ii  gnome-volume-manager  2.24.1-4   GNOME daemon to auto-mount and man
ii  gnote [tomboy]0.6.2-2desktop note taking program using 
ii  gstreamer0.10-ffmpeg  0.10.9-1   FFmpeg plugin for GStreamer
ii  gstreamer0.10-plugins-ugl 0.10.12-1+b2   GStreamer plugins from the ugly 
ii  libpam-gnome-keyring  2.26.1-1   PAM module to unlock the GNOME key
ii  rhythmbox 0.12.5-1   music player and organizer for GNO
ii  swfdec-mozilla0.6.0-5Mozilla plugin for SWF files (Macr
ii  synaptic  0.62.1+nmu1Graphical package manager
ii  system-config-printer 1.0.0-4lenny1  graphical interface to configure t
ii  totem-mozilla 2.28.1-1   Totem Mozilla plugin
ii  transmission-gtk  1.75-1 lightweight BitTorrent client (GTK

Versions of packages gnome recommends:
ii  gdebi 0.3.11debian1+nmu1 Simple tool to install deb files
ii  gnome-games-extra-dat 2.26.0-1   games for the GNOME desktop (extra
pn  gnome-office  none (no description available)
ii  gparted   0.3.8-1+b1 GNOME partition editor
ii  grdc  0.6.0-1remote desktop client for GNOME de
ii  gthumb3:2.10.8-1+lenny2  an image viewer and browser
ii  hal-cups-utils0.6.16-3   Utilities to detect and configure 
ii  hardinfo  0.4.2.3-4  Displays system information
pn  liferea | evolution-r none (no description available)
ii  menu-xdg  0.3freedesktop.org menu compliant win
ii  network-manager-gnome 0.7.1-1network management framework (GNOM
pn  update-notifier   none (no description available)

Versions of packages gnome suggests:
pn  gnome-dbg none (no description available)
pn  openoffice.org-evolution  none (no description available)
pn  openoffice.org-gnome  none (no description available)

Versions of packages gnome-desktop-environment depends on:
ii  alacarte   0.12.4-1  easy GNOME menu editing tool
ii  brasero2.28.0-2  CD/DVD burning application for GNO
ii  cheese 2.28.0.1-1A tool to take pictures and videos
ii  deskbar-applet 2.28.0-1  universal search and navigation ba
ii  desktop-base   5.0.5 common files for the Debian Deskto
ii  dmz-cursor-theme   0.4.1 Style neutral, scalable cursor the
ii  ekiga  3.2.5-1   H.323 and SIP compatible VoIP clie
ii  empathy2.28.0.1-2High-level library and user-interf
ii  epiphany-browser [gnome-ww 2.28.0-4  Intuitive GNOME web browser
ii  evince 2.28.0-2  Document (postscript, pdf) viewer
ii  evolution  2.28.1-1  groupware suite with mail client a
ii  evolution-data-server  2.28.1-1  evolution database backend server
ii  fast-user-switch-applet2.24.0-3  Applet for the GNOME panel providi
ii  file-roller2.28.0-1  an archive manager for GNOME
ii  gcalctool  5.28.0-1  GNOME desktop calculator
ii  gconf-editor   2.28.0-1  

Bug#550144: epiphany-browser: jacobian.org Kills Epiphany (libfontconfig)

2009-10-07 Thread Marc Fargas
Package: epiphany-browser
Version: 2.28.0-4
Severity: normal

Hi,
There's a very simple web page that cannot be opened in Epiphany:

http://jacobian.org/writing/python-is-unix/

The only rare thing this page does is use embeded fonts (that thing
that is new in webkit). Epiphany died here:

Program received signal SIGSEGV, Segmentation fault.
0x724aa800 in ?? () from /usr/lib/libfontconfig.so.1

StackTrace:

#0  0x724aa800 in ?? () from /usr/lib/libfontconfig.so.1
#1  0x724aa8a0 in ?? () from /usr/lib/libfontconfig.so.1
#2  0x724a8577 in FcFontSetSort () from /usr/lib/libfontconfig.so.1
#3  0x724a8b39 in FcFontSort () from /usr/lib/libfontconfig.so.1
#4  0x7525c020 in WebCore::FontCache::getFontDataForCharacters (
this=0x7fffe4c9f5c0, font=..., characters=0x7fffa6d0, length=1)
at ../WebCore/platform/graphics/gtk/FontCacheGtk.cpp:43
#5  0x74fe4ec7 in WebCore::Font::glyphDataForCharacter (
this=0x7fffe0949ec0, c=value optimized out, 
mirror=value optimized out, forceSmallCaps=value optimized out)
at ../WebCore/platform/graphics/FontFastPath.cpp:151
#6  0x74ff40ec in WebCore::WidthIterator::advance (
this=0x7fffa8e0, offset=1, glyphBuffer=0x0)
at ../WebCore/platform/graphics/WidthIterator.cpp:116
#7  0x74fe4a45 in WebCore::Font::floatWidthForSimpleText (
this=value optimized out, run=..., glyphBuffer=0x0, 
fallbackFonts=value optimized out)
at ../WebCore/platform/graphics/FontFastPath.cpp:323
#8  0x7505b254 in WebCore::Font::width (this=0x7fffdfd482d8, 
resolver=..., firstLine=true, islineemp...@0x7fffb14c, 
previouslinebrokeclean...@0x7fffb14d, clear=0x7fffb138)
at ../WebCore/platform/graphics/Font.h:81
#9  textWidth (this=0x7fffdfd482d8, resolver=..., firstLine=true, 

I have a full core dump available in case you cannot reproduce the bug.

Cheers,
Marc

-- System Information:
Debian Release: 5.0.3
  APT prefers stable
  APT policy: (750, 'stable'), (700, 'testing'), (600, 'unstable'), (1, 
'experimental')
Architecture: amd64 (x86_64)

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

Versions of packages epiphany-browser depends on:
ii  dbus-x11   1.2.16-2  simple interprocess messaging syst
ii  epiphany-browser-data  2.28.0-4  Data files for the GNOME web brows
ii  gnome-icon-theme   2.26.0-1  GNOME Desktop icon theme
ii  iso-codes  3.5.1-1   ISO language, territory, currency,
ii  libatk1.0-01.28.0-1  The ATK accessibility toolkit
ii  libavahi-client3   0.6.23-3lenny1Avahi client library
ii  libavahi-common3   0.6.25-1  Avahi common library
ii  libavahi-gobject0  0.6.25-1  Avahi GObject library
ii  libc6  2.9-25GNU C Library: Shared libraries
ii  libcairo2  1.9.2-1   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  libfontconfig1 2.6.0-4   generic font configuration library
ii  libfreetype6   2.3.9-5   FreeType 2 font engine, shared lib
ii  libgcc11:4.4.1-4 GCC support library
ii  libgconf2-42.26.2-3  GNOME configuration database syste
ii  libgirepository1.0-0   0.6.5-1   Library for handling GObject intro
ii  libglib2.0-0   2.22.0-1  The GLib library of C routines
ii  libgnome-keyring0  2.26.1-1  GNOME keyring services library
ii  libgtk2.0-02.18.2-1  The GTK+ graphical user interface 
ii  libice62:1.0.5-1 X11 Inter-Client Exchange library
ii  libnotify1 [libnotify1 0.4.5-1   sends desktop notifications to a n
ii  libnspr4-0d4.7.1-4   NetScape Portable Runtime Library
ii  libnss3-1d 3.12.3.1-0lenny1  Network Security Service libraries
ii  libpango1.0-0  1.26.0-1  Layout and rendering of internatio
ii  libseed0   2.27.91-1 GObject JavaScript bindings for th
ii  libsm6 2:1.1.1-1 X11 Session Management library
ii  libsoup-gnome2.4-1 2.28.0-1  an HTTP library implementation in 
ii  libsoup2.4-1   2.28.0-1  an HTTP library implementation in 
ii  libstartup-notificatio 0.10-1library for program launch feedbac
ii  libwebkit-1.0-21.1.15.1-1Web content engine library for Gtk
ii  libx11-6   2:1.2.99.901-1X11 client-side library
ii  libxml22.7.5.dfsg-1  GNOME XML library
ii  libxslt1.1 1.1.24-2  

Bug#548601: epiphany-webkit: Password database migration is a headache

2009-09-27 Thread Marc Fargas
Package: epiphany-webkit
Version: 2.28.0-3
Severity: normal

Hi ther e,

I just opened Epiphany (awesome browser by the way) and it started
asking me epiphany-browser wants access to the stored password
for... for every password that I had saved in Epiphany from time to
time.

I guess epiphany was migration my password database from some storage
to some other storage, but having to press the Allow Always button
about 50 times to get my browser up and running... When this shiny new
epiphany makes it into testing, and further into stable will really
piss a lot of people.

Either Epihany should say I'm going to do X, and for that I'll read
all your passwords, are you ok? or tell the same and You will now
have to click  times in the 'Always Allow' button. But presenting
such dialogs withouth any previous warning is a bad thing IMHO.

Regards,
Marc

PS: Awesome work in GNOME 2.28 packaging, that went into Debian really
fast Congratulation!! ;)

-- System Information:
Debian Release: 5.0.3
  APT prefers stable
  APT policy: (750, 'stable'), (700, 'testing'), (600, 'unstable'), (1, 
'experimental')
Architecture: amd64 (x86_64)

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

Versions of packages epiphany-webkit depends on:
ii  epiphany-browser  2.28.0-3   Intuitive GNOME web browser

epiphany-webkit recommends no packages.

epiphany-webkit 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#544408: mutter: Some windows do not appear in Task Switcher

2009-08-31 Thread Marc Fargas
Package: mutter
Version: 2.27.3-1
Severity: normal

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi,

I just noticed that when I have rdesktop windows open the appear in
the taskbar but not in the task switcher (i.e: when pressing Alt+Tab).

Dunno if this is specific to rdesktop or the kind of windows it
creates. The window gets focus and works normally, the only thing is
you cannot switch to it with the keyboard.

Cheers,
Marc

- -- System Information:
Debian Release: 5.0.2
  APT prefers stable
  APT policy: (750, 'stable'), (700, 'testing'), (600, 'unstable'), (500, 
'proposed-updates'), (1, 'experimental')
Architecture: amd64 (x86_64)

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

Versions of packages mutter depends on:
ii  libatk1.0-01.26.0-1  The ATK accessibility toolkit
ii  libc6  2.9-25GNU C Library: Shared libraries
ii  libcairo2  1.8.8-2   The Cairo 2D vector graphics libra
ii  libclutter-1.0-0   1.0.0-1   Open GL based interactive canvas l
ii  libfontconfig1 2.6.0-4   generic font configuration library
ii  libfreetype6   2.3.9-5   FreeType 2 font engine, shared lib
ii  libgconf2-42.26.2-3  GNOME configuration database syste
ii  libgirepository1.0-0   0.6.4-1   Library for handling GObject intro
ii  libgl1-mesa-glx [libgl 7.5-3 A free implementation of the OpenG
ii  libglib2.0-0   2.21.4-1  The GLib library of C routines
ii  libgtk2.0-02.17.9-1  The GTK+ graphical user interface 
ii  libice62:1.0.5-1 X11 Inter-Client Exchange library
ii  libmutter-private0 2.27.3-1  library for the Mutter window mana
ii  libpango1.0-0  1.24.5-1  Layout and rendering of internatio
ii  libsm6 2:1.1.0-2 X11 Session Management library
ii  libstartup-notificatio 0.10-1library for program launch feedbac
ii  libx11-6   2:1.2.2-1 X11 client-side library
ii  libxcomposite1 1:0.4.0-3 X11 Composite extension library
ii  libxcursor11:1.1.9-1 X cursor management library
ii  libxdamage11:1.1.1-4 X11 damaged region extension libra
ii  libxext6   2:1.0.4-1 X11 miscellaneous extension librar
ii  libxfixes3 1:4.0.3-2 X11 miscellaneous 'fixes' extensio
ii  libxinerama1   2:1.0.3-2 X11 Xinerama extension library
ii  libxrandr2 2:1.3.0-2 X11 RandR extension library
ii  libxrender11:0.9.4-2 X Rendering Extension client libra
ii  mutter-common  2.27.3-1  shared files for the Mutter window
ii  zenity 2.26.0-2  Display graphical dialog boxes fro
ii  zlib1g 1:1.2.3.3.dfsg-12 compression library - runtime

Versions of packages mutter recommends:
ii  gnome-session [x-session-mana 2.26.2-1   The GNOME Session Manager

Versions of packages mutter suggests:
ii  gnome-control-center  1:2.26.0-1 utilities to configure the GNOME d
ii  gnome-themes  2.26.2-1   official themes for the GNOME desk
pn  xdg-user-dirs none (no description available)

- -- no debconf information

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

iEYEARECAAYFAkqbrywACgkQvdQvJTAk4mZu/wCfcpSbpg+lTrAPX1L8GIFu8I4X
G3IAoKXkDCR0WAsNJzQYUqFhA/SeYhnD
=mV33
-END PGP SIGNATURE-



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



Bug#543630: mutter: Some keyboard shortcuts won't work

2009-08-26 Thread Marc Fargas
Package: mutter
Version: 2.27.2-1
Severity: minor

Hi,
I tried mutter (mutter --replace) and it's nice but.. keyboard
shorcuts fail, at least some of them, i.e:

Win+T to open a new terminal works.
Win+M to maximize the focused window fails
Win+Spacebar to summon Gnome-Do also fails.

Duno why Win+T works and the others fail ;\\ I do not know which other
information you may need to track this down, so, just ask and I'll
provide! hehe.

Regards,
Marc

-- System Information:
Debian Release: 5.0.2
  APT prefers stable
  APT policy: (750, 'stable'), (700, 'testing'), (600, 'unstable'), (500, 
'proposed-updates'), (1, 'experimental')
Architecture: amd64 (x86_64)

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

Versions of packages mutter depends on:
ii  libatk1.0-0   1.26.0-1   The ATK accessibility toolkit
ii  libc6 2.9-25 GNU C Library: Shared libraries
ii  libcairo2 1.8.8-2The Cairo 2D vector graphics libra
ii  libclutter-1.0-0  1.0.0-1Open GL based interactive canvas l
ii  libfontconfig12.6.0-4generic font configuration library
ii  libfreetype6  2.3.9-5FreeType 2 font engine, shared lib
ii  libgconf2-4   2.26.2-3   GNOME configuration database syste
ii  libgirepository1.0-0  0.6.4-1Library for handling GObject intro
ii  libgl1-mesa-glx [libgl1]  7.5-3  A free implementation of the OpenG
ii  libglib2.0-0  2.21.4-1   The GLib library of C routines
ii  libgtk2.0-0   2.16.5-1   The GTK+ graphical user interface 
ii  libice6   2:1.0.5-1  X11 Inter-Client Exchange library
ii  libmutter-private02.27.2-1   library for the Mutter window mana
ii  libpango1.0-0 1.24.5-1   Layout and rendering of internatio
ii  libsm62:1.1.0-2  X11 Session Management library
ii  libstartup-notification0  0.10-1 library for program launch feedbac
ii  libx11-6  2:1.2.2-1  X11 client-side library
ii  libxcomposite11:0.4.0-3  X11 Composite extension library
ii  libxcursor1   1:1.1.9-1  X cursor management library
ii  libxdamage1   1:1.1.1-4  X11 damaged region extension libra
ii  libxext6  2:1.0.4-1  X11 miscellaneous extension librar
ii  libxfixes31:4.0.3-2  X11 miscellaneous 'fixes' extensio
ii  libxinerama1  2:1.0.3-2  X11 Xinerama extension library
ii  libxrandr22:1.3.0-2  X11 RandR extension library
ii  libxrender1   1:0.9.4-2  X Rendering Extension client libra
ii  mutter-common 2.27.2-1   shared files for the Mutter window
ii  zenity2.26.0-1   Display graphical dialog boxes fro

Versions of packages mutter recommends:
ii  gnome-session [x-session-mana 2.26.2-1   The GNOME Session Manager

Versions of packages mutter suggests:
ii  gnome-control-center  1:2.26.0-1 utilities to configure the GNOME d
ii  gnome-themes  2.26.2-1   official themes for the GNOME desk
pn  xdg-user-dirs 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#508548: pm-utils: It is working now

2009-07-09 Thread Marc Fargas
Package: pm-utils
Followup-For: Bug #508548

Hi there,

FYI this is not happening anymore with my current setup; Dunno what
fixed it. So if nobody else is affected you may safely close the bug
now ;)

Regards,
Marc

-- System Information:
Debian Release: 5.0.2
  APT prefers stable
  APT policy: (750, 'stable'), (700, 'testing'), (600, 'unstable'), (500, 
'proposed-updates'), (1, 'experimental')
Architecture: amd64 (x86_64)

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

Versions of packages pm-utils depends on:
ii  console-tools1:0.2.3dbs-65.1 Linux console and font utilities
ii  powermgmt-base   1.30+nmu1   Common utils and configs for power

Versions of packages pm-utils recommends:
ii  hal  0.5.12~git20090406.46dc48-2 Hardware Abstraction Layer
ii  radeontool   1.5-5   utility to control ATI Radeon back
pn  uswsusp  none  (no description available)
ii  vbetool  1.0-3   run real-mode video BIOS code to a

Versions of packages pm-utils suggests:
ii  cpufrequtils  004-2  utilities to deal with the cpufreq

-- 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#508548: pm-utils: It is working now

2009-07-09 Thread Marc Fargas
On Thu, Jul 9, 2009 at 2:16 PM, Michael Bieblbi...@debian.org wrote:
 What version of pm-utils are you using now? Did you have any package updates
 since the bug was filed?

1.1.2.4-1 is what I have now. The problem is I just realized I filled
that bug a while ago, but that I've been using suspend for some time
now without problems. So I'd guess I cannot really find out what was
the exact change that fixed the thing.

I can't even recall If I've reinstalled Debian since I filled the bug
(I think so).

Sorry for not being of much help ;\

Marc
-- 
http://www.marcfargas.com - will be finished someday.



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



Bug#529578: libvirt-bin: Where is the LXC emulator?

2009-05-20 Thread Marc Fargas
Package: libvirt-bin
Version: 0.6.3-2
Severity: important

Hi ppl,
According to the changelog with libvirt 0.6.3-2 there should be LXC
support, but if I define an LXC VM I get this:

May 20 08:24:25 virtual1 libvirtd: 08:24:25.884: error : cannot
execute binary /usr/libexec/libvirt_lxc: No such file or directory 
May 20 08:24:25 virtual1 libvirtd: 08:24:25.885: error : internal
error container '/usr/libexec/libvirt_lxc' unexpectedly shutdown
during startup 

I cannot find that libvirt_lxc file anywhere, is it provided with the
package or did I miss something?

Thanks,
Marc


-- System Information:
Debian Release: 5.0.1
  APT prefers stable
  APT policy: (750, 'stable'), (700, 'testing'), (600, 'unstable'), (500, 
'proposed-updates'), (1, 'experimental')
Architecture: amd64 (x86_64)

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

Versions of packages libvirt-bin depends on:
ii  adduser3.110 add and remove users and groups
ii  libavahi-client3   0.6.23-3lenny1Avahi client library
ii  libavahi-common3   0.6.23-3lenny1Avahi common library
ii  libc6  2.9-12GNU C Library: Shared libraries
ii  libdbus-1-31.2.1-5   simple interprocess messaging syst
ii  libgcrypt111.4.4-2   LGPL Crypto library - runtime libr
ii  libgnutls262.6.6-1   the GNU TLS library - runtime libr
ii  libgpg-error0  1.6-1 library for common error values an
ii  libhal10.5.11-8  Hardware Abstraction Layer - share
ii  libpolkit-dbus20.9-2 library for accessing PolicyKit vi
ii  libpolkit2 0.9-2 library for accessing PolicyKit
ii  libreadline5   5.2-4 GNU readline and history libraries
ii  libsasl2-2 2.1.22.dfsg1-23   Cyrus SASL - authentication abstra
ii  libselinux12.0.65-5  SELinux shared libraries
ii  libtasn1-3 1.8-1 Manage ASN.1 structures (runtime)
ii  libvirt0   0.6.3-2   library for interfacing with diffe
ii  libxenstore3.0 3.2.1-2   Xenstore communications library fo
ii  libxml22.6.32.dfsg-5 GNOME XML library
ii  logrotate  3.7.1-5   Log rotation utility
ii  zlib1g 1:1.2.3.3.dfsg-12 compression library - runtime

Versions of packages libvirt-bin recommends:
ii  bridge-utils  1.4-5  Utilities for configuring the Linu
ii  dnsmasq-base  2.45-1 A small caching DNS proxy and DHCP
ii  iptables  1.4.2-6administration tools for packet fi
pn  netcat-openbsdnone (no description available)
ii  qemu  0.10.4-1   fast processor emulator

Versions of packages libvirt-bin suggests:
ii  policykit 0.9-2  framework for managing administrat

-- 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#519408: Please upload somewhere

2009-04-30 Thread Marc Fargas
Hi,

Thank you for packaging LXC, it's awesome how fast I can run virtual
machines now without modern hardware ;)

I am currently running lxc compiled by myself hoping it would get out of NEW
soon but it seems it's taking a bit more than expected and there's no way to
download the .deb packages from NEW.

So; Would you mind of uploading the package (the sources ones atleast)
somewhere while NEW is processed?

Thanks,
Marc

-- 
http://www.marcfargas.com - will be finished someday.


Bug#525754: blockout2: Not shown in Games menu

2009-04-26 Thread Marc Fargas
Package: blockout2
Version: 2.4+dfsg1-2
Severity: minor

Hi,

Thanks for packagins such an awesome game! ;)

In my GNOME environment Blockout2 is not showing in the Games menu.

Other apps installed later are showing so I guess menus get updated
when things are installed.

Marc

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

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

Versions of packages blockout2 depends on:
ii  libc62.9-4   GNU C Library: Shared libraries
ii  libgcc1  1:4.3.3-3   GCC support library
ii  libgl1-mesa-glx [libgl1] 7.4-2   A free implementation of the OpenG
ii  libglu1-mesa [libglu1]   7.0.3-7 The OpenGL utility library (GLU)
ii  libpng12-0   1.2.35-1PNG library - runtime
ii  libsdl-mixer1.2  1.2.8-5 mixer library for Simple DirectMed
ii  libsdl1.2debian  1.2.13-4+b1 Simple DirectMedia Layer
ii  libstdc++6   4.3.3-3 The GNU Standard C++ Library v3

blockout2 recommends no packages.

blockout2 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#524889: mirrors: ftp.us is using Etch key?

2009-04-20 Thread Marc Fargas
Package: mirrors
Severity: normal

Hi,
My apt has been saying this for some time now:

W: GPG error: http://ftp.us.debian.org testing Release: The following
signatures were invalid: BADSIG A70DAF536070D3A1 Debian Archive
Automatic Signing Key (4.0/etch) ftpmas...@debian.org
W: GPG error: http://ftp.us.debian.org unstable Release: The following
signatures were invalid: BADSIG A70DAF536070D3A1 Debian Archive
Automatic Signing Key (4.0/etch) ftpmas...@debian.org
W: GPG error: http://ftp.us.debian.org experimental Release: The
following signatures were invalid: BADSIG A70DAF536070D3A1 Debian
Archive Automatic Signing Key (4.0/etch) ftpmas...@debian.org
W: You may want to run apt-get update to correct these problems

I moved to ftp.uk and I'm running fine now, not sure if that's an
error on my side or ftp.us is out-of-sync.

Regards,
Marc

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

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



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



Bug#518474: hylafax-server: Destructive Configuration in cron.weekly script

2009-03-06 Thread Marc Fargas
Package: hylafax-server
Severity: normal

Hi there,

I have an HylaFAX server running in the office and I just discovered
it kills any fax older than 100 days... That is configured in a
parameter to faxcron in /etc/cron.weekly/hylafax .

Couldn't this be moved to /etc/default/hylafax ? And make the
parameters default to something non-destructive. As a) by default
hylafax does not attach faxes to e-mails, b) it deletes faxes older
than 100 days.

I temporarylly fixed it by altering the crontab but I guess apt-get
will kill my changes at some point :)

Cheers,
Marc

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

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



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



Bug#517825: gnome: File Chooser, list open nautilus folders

2009-03-02 Thread Marc Fargas
Package: gnome
Version: 1:2.22.2~5
Severity: wishlist

Hi there,

I have no bugzilla account and I have no idea about the right
package/component to send this wishlist item; Hope you can forward it
appropiatelly; It's absolutelly, a wishlist item.

One awesome feature on the Gtk File Chooser dialogs would be if it
could list, on the favorites list on the left, The folders currently
open in Nautilus (or any other file browser).

Say, i.e., That I have Nautilus opened in a folder
($HOME/some/very/deep/structure/ ) and right-click in Epiphany Save
image.. It'd be awesome to see $HOME/some/very/deep/structure/ on
the favorties!


Thanks,
Marc

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

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

Versions of packages gnome depends on:
ii  arj3.10.22-6 archiver for .arj files
ii  avahi-daemon   0.6.24-2  Avahi mDNS/DNS-SD daemon
ii  bluez-gnome0.27-1Bluetooth utilities for GNOME
ii  epiphany-extensions2.22.2-1  Extensions for Epiphany web browse
ii  evolution-exchange 2.22.3.dfsg-1 Exchange plugin for the Evolution 
ii  evolution-plugins  2.22.3.1-1standard plugins for Evolution
ii  evolution-webcal   2.21.92-1 webcal: URL handler for GNOME and 
ii  gdm-themes 0.6.2 Themes for the GNOME Display Manag
ii  gnome-app-install  0.5.5.1-1 GNOME Application Installer
ii  gnome-desktop-environment  1:2.22.2~5The GNOME Desktop Environment
ii  gnome-games1:2.24.2-1games for the GNOME desktop
ii  gnome-spell1.0.7-1   GNOME/Bonobo component for spell c
ii  gnome-themes-extras2.22.0-1  extra themes for the GNOME desktop
ii  gnome-vfs-obexftp  0.4-1 GNOME VFS module for OBEX FTP
ii  gstreamer0.10-ffmpeg   0.10.6-3  FFmpeg plugin for GStreamer
ii  gstreamer0.10-plugins-ugly 0.10.10-2 GStreamer plugins from the ugly 
ii  libpam-gnome-keyring   2.24.1-1  PAM module to unlock the GNOME key
ii  p7zip  4.58~dfsg.1-1 7zr file archiver with high compre
ii  rhythmbox  0.11.6-1  music player and organizer for GNO
ii  serpentine 0.9-6 An application for creating audio 
ii  swfdec-mozilla 0.8.2-1   Mozilla plugin for SWF files (Macr
ii  synaptic   0.62.5Graphical package manager
ii  system-config-printer  1.0.0-4   graphical interface to configure t
ii  totem-mozilla  2.22.2-5  Totem Mozilla plugin
ii  transmission-gtk   1.40-5lightweight BitTorrent client (gra

Versions of packages gnome recommends:
ii  empathy  2.25.4-1High-level library and user-interf
pn  gdebinone  (no description available)
ii  gnome-games-extra-data   2.24.0-1games for the GNOME desktop (extra
pn  gnome-office none  (no description available)
ii  gparted  0.3.9-3 GNOME partition editor
ii  gthumb   3:2.10.8-1  an image viewer and browser
ii  hal-cups-utils   0.6.16-3Utilities to detect and configure 
ii  hardinfo 0.4.2.3-5   Displays system information
pn  liferea | blam   none  (no description available)
ii  menu-xdg 0.3 freedesktop.org menu compliant win
ii  network-manager-gnome0.7.0.97-1  network management framework (GNOM
pn  tomboy   none  (no description available)
ii  tsclient 0.150-1 front-end for viewing of remote de
ii  update-notifier  0.70.7.debian-5 Daemon which notifies about packag

Versions of packages gnome suggests:
pn  gnome-dbg none (no description available)
pn  openoffice.org-evolution  none (no description available)
ii  openoffice.org-gnome  1:3.0.1-2  GNOME Integration for OpenOffice.o

-- 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#513215: google-gadgets-gtk: Apps do not know what to do with .gg files

2009-01-27 Thread Marc Fargas
Package: google-gadgets-gtk
Version: 0.10.5-0.1
Severity: minor

First of all, THANKS for packaging this :)

I downloaded a Gadgetd with Epiphany from the Internet and to my
surprise, it was opened by the Archive Manager instead of Google
Gadgets. Nautilus does the right thing.

Anyway I do not know if it's Epiphany that should do the right thing
or the gadget's package that has to tell Browsers what to do
(I never knew how to tell Epiphany what to do when!).

Thanks,
Marc

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

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

Versions of packages google-gadgets-gtk depends on:
ii  google-gadgets-common0.10.5-0.1  Common files for QT and GTK+ versi
ii  google-gadgets-gst   0.10.5-0.1  GStreamer Module for Google Gadget
ii  google-gadgets-xul   0.10.5-0.1  XULRunner module for Google Gadget
ii  libatk1.0-0  1.22.0-1The ATK accessibility toolkit
ii  libc62.7-18  GNU C Library: Shared libraries
ii  libcairo21.6.4-7 The Cairo 2D vector graphics libra
ii  libfontconfig1   2.6.0-3 generic font configuration library
ii  libgcc1  1:4.3.2-1.1 GCC support library
ii  libggadget-1.0-0 0.10.5-0.1  Google Gadgets main library
ii  libggadget-gtk-1.0-0 0.10.5-0.1  Google Gadgets GTK+ library
ii  libglib2.0-0 2.18.4-1The GLib library of C routines
ii  libgtk2.0-0  2.14.7-1The GTK+ graphical user interface 
ii  libpango1.0-01.20.5-3Layout and rendering of internatio
ii  libstdc++6   4.3.2-1.1   The GNU Standard C++ Library v3

google-gadgets-gtk recommends no packages.

google-gadgets-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#510026: kerneloops: What am I sending?

2008-12-28 Thread Marc Fargas
Package: kerneloops
Version: 0.10-2
Severity: normal

Hi there,
I just knew about kerneloops because it send a desktop notification.

It seems to be a nice thing, but I'd really love to see what am I
sending to the Internet. The applet only asked me to either sent
or not sent the oops report, and on syslog I saw:

Dec 28 18:51:37 castor kerneloops: Submitted 3 kernel oopses to
www.kerneloops.org

But, what did I sent? Please, let us see what are we sending (I'm
still trying to find the oops anyway).

Thanks,
Marc


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

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

Versions of packages kerneloops depends on:
ii  libc6 2.7-16 GNU C Library: Shared libraries
ii  libcurl3-gnutls   7.18.2-7   Multi-protocol file transfer libra
ii  libdbus-1-3   1.2.1-4simple interprocess messaging syst
ii  libdbus-glib-1-2  0.76-1 simple interprocess messaging syst
ii  libglib2.0-0  2.16.6-1   The GLib library of C routines
ii  libgtk2.0-0   2.12.11-4  The GTK+ graphical user interface 
ii  libnotify1 [libnotify1-gtk2.1 0.4.4-3sends desktop notifications to a n

kerneloops recommends no packages.

kerneloops 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#509114: libpam-ccreds: Doesn't work in non-root programs (i.e: Screensaver)

2008-12-18 Thread Marc Fargas
Package: libpam-ccreds
Severity: minor

Hi there,
I'm a happy pam_ccreds user! But there's a small problem with desktop
users... The password cache of pam_ccreds is only readable by root
which means that if a user's screensaver locks the desktop he/she
can't exit the screensaver until plugged to the office network! (as
gnome-screensaver cannot read the security cache)

I have no idea on how this can be fixed without compromising security,
maybe on SELinux systems a policy can be arranged so the cache is
readable by any process during PAM checks... dunno

I'll leave that up to you ;) In the meantime the workaround is easy:
Do not stop working at any time until you get back to the office! ;)

Cheers,
Marc

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

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



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



Bug#501315: splashy: Should be in Lenny

2008-12-15 Thread Marc Fargas
Package: splashy
Version: 0.3.10-2.1
Followup-For: Bug #501315

Hi,
The error mentioned in this bug happens in Lenny should the fix be applied 
there before release?

Cheers,
Marc


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

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

Versions of packages splashy depends on:
ii  initramfs-tools0.92j tools for generating an initramfs
ii  libc6  2.7-16GNU C Library: Shared libraries
ii  libdirectfb-1.0-0  1.0.1-11  direct frame buffer graphics - sha
ii  libgcc11:4.3.2-1 GCC support library
ii  libglib2.0-0   2.16.6-1  The GLib library of C routines
ii  libmagic1  4.26-1File type determination library us
ii  libsplashy10.3.10-2.1Library to draw splash screen on b
ii  lsb-base   3.2-20Linux Standard Base 3.2 init scrip
ii  zlib1g 1:1.2.3.3.dfsg-12 compression library - runtime

splashy recommends no packages.

Versions of packages splashy suggests:
ii  console-common0.7.80 basic infrastructure for text cons
pn  splashy-themesnone (no description available)
pn  upstart   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#508548: pm-utils: Suspend works in Console and GDM, not in GNOME

2008-12-12 Thread Marc Fargas
Package: pm-utils
Version: 1.1.2.4-1
Severity: normal

Hi ppl,

I'm trying to get suspend-to-ram to work with my laptop (Dell M65) and there 
seems
to be something work in pm-suspend.

If I run pm-suspend from a console, the laptop resumes Ok.
If I run pm-suspend from an xterm in X (nothing else running, being root), the 
laptop resumes Ok.
If I tell GDM Suspend the Computer without logging in, the laptop resumes Ok.
If I tell GNOME to Suspend from my session the laptop does not resume.

The pm-suspend.log files of the last to tries has one single difference:

  /usr/lib/pm-utils/sleep.d/99video resume: Error: something went wrong 
performing real mode call

That shows up on the log of the failed resume, so something failed in 99video 
that left
me with a blank screen. Dunno where the problem might be ;)

Regards,
Marc

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

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

Versions of packages pm-utils depends on:
ii  console-tools1:0.2.3dbs-65.1 Linux console and font utilities
ii  powermgmt-base   1.30Common utils and configs for power

Versions of packages pm-utils recommends:
ii  hal   0.5.11-6   Hardware Abstraction Layer
ii  radeontool1.5-5  utility to control ATI Radeon back
pn  uswsusp   none (no description available)
ii  vbetool   1.0-3  run real-mode video BIOS code to a

Versions of packages pm-utils suggests:
ii  cpufrequtils  004-2  utilities to deal with the cpufreq

-- 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#507654: rdesktop: Enable ALSA

2008-12-03 Thread Marc Fargas
Package: rdesktop
Version: 1.6.0-2
Severity: wishlist

Hi there,
As far as I know rdesktop in Debian still uses OSS, but it has support
for ALSA, but the Debian package doesn't have this support enabled.

Please, enable ALSA support so we can run rdesktop throught Pulseaudio
and listen to our music while Windows plays its logon sound :)

Thanks,
Marc


-- System Information:
Debian Release: lenny/sid
  APT prefers experimental
  APT policy: (950, 'experimental'), (900, 'testing'), (300, 'unstable'), (100, 
'stable')
Architecture: i386 (i686)

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

Versions of packages rdesktop depends on:
ii  libc6 2.8+20080809-1 GNU C Library: Shared libraries
ii  libssl0.9.8   0.9.8g-14  SSL shared libraries
ii  libx11-6  2:1.1.99.2-1   X11 client-side library

rdesktop recommends no packages.

rdesktop suggests no packages.

-- no debconf information



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



Bug#507547: libvirt-bin: Add link on /usr/bin/qemu-kvm or change code

2008-12-02 Thread Marc Fargas
Package: libvirt-bin
Version: 0.5.0-1
Severity: normal

Maybe this bug should be important as it makes one driver
not-usable.

Hi there,
As per libvirt's docs: 
KVM hypervisor: The driver will probe /usr/bin  for the presence of
qemu-kvm and /dev/kvm device node. If both are found, then KVM
fullyvirtualized, hardware accelerated guests will be available. 

This is true, as if there's not /usr/bin/qemu-kvm you can't do KVM
virtual machines (and if you have no qemu installed you can only do
UML then).

I had to manually create a link from qemu-kvm to kvm and I can now do
KVM machines. Maybe either the kvm package should provide this link or
the libvirt-bin package should be changed to check for /usr/bin/kvm
instead of qemu-kvm

Thanks for packaging libvirt!
Marc


-- System Information:
Debian Release: lenny/sid
  APT prefers experimental
  APT policy: (950, 'experimental'), (900, 'testing'), (300, 'unstable'), (100, 
'stable')
Architecture: i386 (i686)

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

Versions of packages libvirt-bin depends on:
ii  adduser3.110 add and remove users and groups
ii  libavahi-client3   0.6.23-2  Avahi client library
ii  libavahi-common3   0.6.23-2  Avahi common library
ii  libc6  2.8+20080809-1GNU C Library: Shared libraries
ii  libdbus-1-31.2.4-1   simple interprocess messaging syst
ii  libgcrypt111.4.3-1   LGPL Crypto library - runtime libr
ii  libgnutls262.6.2-1   the GNU TLS library - runtime libr
ii  libgpg-error0  1.4-2 library for common error values an
ii  libpolkit-dbus20.9-1 library for accessing PolicyKit vi
ii  libpolkit2 0.9-1 library for accessing PolicyKit
ii  libreadline5   5.2-3 GNU readline and history libraries
ii  libsasl2-2 2.1.22.dfsg1-23   Cyrus SASL - authentication abstra
ii  libselinux12.0.65-5  SELinux shared libraries
ii  libtasn1-3 1.7-1 Manage ASN.1 structures (runtime)
ii  libvirt0   0.5.0-1   library for interfacing with diffe
ii  libxenstore3.0 3.2.1-2   Xenstore communications library fo
ii  libxml22.6.32.dfsg-5 GNOME XML library
ii  zlib1g 1:1.2.3.3.dfsg-12 compression library - runtime

Versions of packages libvirt-bin recommends:
ii  bridge-utils  1.4-5  Utilities for configuring the Linu
pn  dnsmasq   none (no description available)
ii  iptables  1.4.1.1-4  administration tools for packet fi
ii  netcat-openbsd1.89-3 TCP/IP swiss army knife
pn  qemu  none (no description available)

Versions of packages libvirt-bin suggests:
ii  policykit 0.9-1  framework for managing administrat

-- no debconf information



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



Bug#507549: virt-viewer: Package has no executable file

2008-12-02 Thread Marc Fargas
Package: virt-viewer
Version: 0.0.3-5
Severity: important

Hi,
The virt-viewer package in Experimental has no /usr/bin/virt-viewer
which makes it a bit unusable ;)


-- System Information:
Debian Release: lenny/sid
  APT prefers experimental
  APT policy: (950, 'experimental'), (900, 'testing'), (300, 'unstable'), (100, 
'stable')
Architecture: i386 (i686)

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

Versions of packages virt-viewer depends on:
ii  libc6 2.8+20080809-1 GNU C Library: Shared libraries
ii  libglib2.0-0  2.18.3-1   The GLib library of C routines
ii  libgtk-vnc-1.0-0  0.3.7-4A VNC viewer widget for GTK+ (runt
ii  libgtk2.0-0   2.14.5-1   The GTK+ graphical user interface 
ii  libvirt0  0.5.0-1library for interfacing with diffe
ii  libxml2   2.6.32.dfsg-5  GNOME XML library

virt-viewer recommends no packages.

Versions of packages virt-viewer suggests:
ii  netcat1.10-38TCP/IP swiss army knife -- transit
ii  netcat-openbsd [netcat]   1.89-3 TCP/IP swiss army knife
ii  netcat-traditional [netcat]   1.10-38TCP/IP swiss army knife

-- no debconf information



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



Bug#505996: bcfg2: Include random Sleep before running on cronjob

2008-11-17 Thread Marc Fargas
Package: bcfg2
Version: 0.9.5.7-1.1
Severity: wishlist

Hi there,
Right now all bcfg2 clients will run at the very same time in a common
scenario (i.e. from the cronjob provided) that can, in my case does,
kill the server. Maybe the cron job could do some random sleeping
before running the agent, just like /etc/cron.daily/apt does, i.e:

  sleep `$(($(dd if=/dev/urandom count=1 2 /dev/null | cksum | cut -c1-5) % 
1800))`

Or, from /etc/cron.daily/apt:

# sleep for a random interval of time (default 30min)
# (some code taken from cron-apt, thanks)
random_sleep()
{
RandomSleep=1800
eval $(apt-config shell RandomSleep APT::Periodic::RandomSleep)
if [ $RandomSleep -eq 0 ]; then
return
fi
if [ -z $RANDOM ] ; then
# A fix for shells that do not have this bash feature.
RANDOM=$(dd if=/dev/urandom count=1 2 /dev/null | cksum | cut -c1-5)
fi
TIME=$(($RANDOM % $RandomSleep))
sleep $TIME
}

That would distribute the hourly load spike a bit ;)

Thanks,
Marc

-- System Information:
Debian Release: lenny/sid
  APT prefers testing
  APT policy: (900, 'testing'), (300, 'unstable'), (150, 'experimental'), (100, 
'stable')
Architecture: i386 (i686)

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



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



Bug#442316: xserver-xorg-input-evdev: Broken as of Today

2008-11-14 Thread Marc Fargas
Package: xserver-xorg-input-evdev
Version: 1:2.0.99.3-1
Severity: normal

Hi,
I upgraded some packages yesterday, ones of whom was
xserver-xorg-input-evdev. Now, since I rebooted, my keyboard in
screwed much like the first message in this bug describes.

The language is OK. I can write without problems, but the Windows key
doesn't work. Arrows act as Enter or even one of those acts as a
Print Screen (my /tmp is now full of screenshots!) Alt Gr doesn't
work also.

I'd say my keyboard had always worked fine. I've always used evdev (I
think), the relevant xorg.conf part:

Section InputDevice
Identifier  Keyboard0
Driver  kbd
EndSection

Any easy way to fix this in the meantime? I doubt my configuration is
rare so maybe when this goes to unstable you'll see more affected
prople ;)

Anyway, thanks for your work with those packages, I've been told X.Org
is a beast to maintain ;o

Regards,
Marc
-- System Information:
Debian Release: lenny/sid
  APT prefers testing
  APT policy: (900, 'testing'), (300, 'unstable'), (150, 'experimental'), (100, 
'stable')
Architecture: i386 (i686)

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

Versions of packages xserver-xorg-input-evdev depends on:
ii  libc6 2.8+20080809-1 GNU C Library: Shared libraries
ii  xserver-xorg-core 2:1.5.3-1  Xorg X server - core server

xserver-xorg-input-evdev recommends no packages.

xserver-xorg-input-evdev suggests no packages.



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



Bug#503154: drm-modules-source: Conflict with libdrm2

2008-10-22 Thread Marc Fargas
Package: drm-modules-source
Version: 2.3.1+git+20081012+f5327ac-1
Severity: normal

Hi,
There's a conflict between drm-modules-source and libdrm2:

[EMAIL PROTECTED]:/home/marc# LC_ALL=C aptitude install 
drm-modules-source=2.3.1+git+20081015+458e2d5-1
[...]
Preparing to replace drm-modules-source 2.3.1+git+20081012+f5327ac-1 (using 
.../drm-modules-source_2.3.1+git+20081015+458e2d5-1_all.deb) ...
Unpacking replacement drm-modules-source ...
dpkg: error processing 
/var/cache/apt/archives/drm-modules-source_2.3.1+git+20081015+458e2d5-1_all.deb 
(--unpack):
 trying to overwrite `/usr/share/modass/packages/drm-modules-source', which is 
also in package libdrm2
Errors were encountered while processing:
 /var/cache/apt/archives/drm-modules-source_2.3.1+git+20081015+458e2d5-1_all.deb
E: Sub-process /usr/bin/dpkg returned an error code (1)
[...]

I have libdrm2 2.3.1+git+20080706+401f77a-1, from experimental.

Aside, why don't you upload new snapshots for libdrm2 and nouveau? 

Thanks,
Marc



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

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

Versions of packages drm-modules-source depends on:
ii  debhelper7.0.17  helper programs for debian/rules
ii  git-core 1:1.6.0.2-1 fast, scalable, distributed revisi
ii  make 3.81-5  The GNU version of the make util
ii  module-assistant 0.10.11.0   tool to make module package creati
ii  quilt0.46-6  Tool to work with series of patche

drm-modules-source recommends no packages.

Versions of packages drm-modules-source suggests:
ii  kernel-package11.001-0.1 A utility for building Linux kerne
ii  linux-headers-2.6.26-1-686 [l 2.6.26-8   Header files for Linux 2.6.26-1-68

-- no debconf information



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



Bug#501692: libvirt: Trouble with qemu 0.8.2 (etch)

2008-10-09 Thread Marc Fargas
Package: libvirt
Version: 0.4.6-1
Severity: important

Running libvirtd with qemu 0.8.2 will lead to a nice error message:
Cannot determine QEMU argv syntax /usr/bin/qemu

After talking in #virt it seems that libvirt runs:
qemu -help | head -3

To look for the qemu version installed, but qemu 0.8.2 doesn't
understand this argument hence the meaningfull error.

qemu -h  That works.

Apparently it has something to do with Ubuntu and KVM, as per IRC, the
command to check qemu was qemu until Ubuntu did something bad and
now it is qemu -help which breaks with qemu 0.8.2

I've been asked to fill these bug so here it is ;) I'm not filling
upstream as I have no bugzilla account.

Regards,
Marc


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

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



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



Bug#501692: [Pkg-libvirt-maintainers] Bug#501692: libvirt: Trouble with qemu 0.8.2 (etch)

2008-10-09 Thread Marc Fargas
On Thu, Oct 9, 2008 at 7:03 PM, Guido Günther [EMAIL PROTECTED] wrote:
 severity 501692 normal
 thanks

Sorry, I was guided by reportbug! ;))

 On Thu, Oct 09, 2008 at 06:15:24PM +0200, Marc Fargas wrote:
 -h seems to be supported by 0.9.X and 0.8.2 so we could use this
 instead. Someone would have to do some digging if there's a difference
 between -h and -help in different versions of qemu. Supporting etch
 isn't very high on my agenda, so help would be welcome.

On my talk on IRC channel the important thing was that qemu | head
-3 was the important thing. So if qemu -h | head -3 and qemu -help
| head -3 and qemu | head -3 do the same, qemu -h would be the sane
thing.

Also etch is neither  my priority. I was bitten by this because I have
etch + some stuff from lenny. As libvirt is not on etch maybe the sane
thing to do would be add a versioned Recommends (if possible). I don't
know if Recommends lines can be versioned, conflicting with qemu  0.9
is another option ;)

Thanks,
Marc

-- 
http://www.marcfargas.com - will be finished someday.


Bug#497791: grub-pc: System unbotable due to search --fs-uuid command

2008-09-05 Thread Marc Fargas
On Thu, Sep 4, 2008 at 10:04 PM, Robert Millan [EMAIL PROTECTED] wrote:

In:

menuentry Debian GNU/Linux, linux 2.6.26-1-686 {
 set root=(hd0,1)
 search --fs-uuid --set 72cbcfa8-57bf-4b37-9489-

 e3eaf056d94d
  linux  /vmlinuz-2.6.26-1-686 root=/dev/mapper/castor-root ro
 selinux=1
  initrd /initrd.img-2.6.26-1-686
 }

 Please try inserting:

echo $root
echo Press enter to continue
read

 after the search command, and tell us if it has changed the value of root
 variable (will be printed to screen).


Hi,

I forgot to mention (I forgot I even did this) that, to get the laptop to
boot, I have to a) remove the search.. line, and b) Go to command line and
type insmod linux.

If I *only* to the insmod linux thing, The error I'll get is You need to
load the kernel first (or something like that), then I remove the search
line and the system boots. (Removing the search line without insmod linux
gives initrd command not found).

I tried the echo $root thing and GRUB complained about syntax errors, but;
Yesterday I ran grub-install as you suggested and after removing the echo
$root the system booted normally.

So it seems that the problem is between the grub.cfg that the latest version
created which seems to have some incompatibility with the previous grub?

Anyway, today the laptop booted normally.. We'll see tomorrow :)

Thanks for the help!
Marc
-- 
http://www.marcfargas.com - will be finished someday.


Bug#497791: grub-pc: System unbotable due to search --fs-uuid command

2008-09-04 Thread Marc Fargas
Package: grub-pc
Version: 1.96+20080831-1
Severity: important

Hi,

I upgraded my system today and when rebooting later it didn't boot,
GRUB said Unknown command initrd. After playing around a little I
found out that the search --fs-uuid was the one causing problems.

Removing that line allowed me to boot my system, but the error message
provided didn't give any clue about it, so most users with the search
--fs-uuid line could be bitten by this.

Either GRUB should say the search line is wrong for XXX or even
better, have no problems.

Anyway, what's the problem with the search line? ;)


-- Package-specific info:

*** BEGIN /proc/mounts
/dev/mapper/castor-root / ext3 
rw,noatime,errors=remount-ro,user_xattr,data=ordered 0 0
/dev/sda1 /boot ext3 rw,errors=continue,data=ordered 0 0
*** END /proc/mounts

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

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

### BEGIN /etc/grub.d/00_header ###
set default=0
set timeout=5
set root=(hd0,1)
search --fs-uuid --set 72cbcfa8-57bf-4b37-9489-e3eaf056d94d
if font /grub/ascii.pff ; then
  set gfxmode=640x480
  insmod gfxterm
  insmod vbe
  terminal gfxterm
fi
### END /etc/grub.d/00_header ###

### BEGIN /etc/grub.d/05_debian_theme ###
set root=(hd0,1)
search --fs-uuid --set 72cbcfa8-57bf-4b37-9489-e3eaf056d94d
insmod png
if background_image /grub/debian-blueish-wallpaper-640x480.png ; then
  set color_normal=black/black
  set color_highlight=magenta/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_hurd ###
### END /etc/grub.d/10_hurd ###

### BEGIN /etc/grub.d/10_linux ###
menuentry Debian GNU/Linux, linux 2.6.26-1-686 {
set root=(hd0,1)
search --fs-uuid --set 72cbcfa8-57bf-4b37-9489-e3eaf056d94d
linux   /vmlinuz-2.6.26-1-686 root=/dev/mapper/castor-root ro selinux=1 
initrd  /initrd.img-2.6.26-1-686
}
menuentry Debian GNU/Linux, linux 2.6.26-1-686 (single-user mode) {
set root=(hd0,1)
search --fs-uuid --set 72cbcfa8-57bf-4b37-9489-e3eaf056d94d
linux   /vmlinuz-2.6.26-1-686 root=/dev/mapper/castor-root ro single 
selinux=1
initrd  /initrd.img-2.6.26-1-686
}
menuentry Debian GNU/Linux, linux 2.6.25-2-686 {
set root=(hd0,1)
search --fs-uuid --set 72cbcfa8-57bf-4b37-9489-e3eaf056d94d
linux   /vmlinuz-2.6.25-2-686 root=/dev/mapper/castor-root ro selinux=1 
initrd  /initrd.img-2.6.25-2-686
}
menuentry Debian GNU/Linux, linux 2.6.25-2-686 (single-user mode) {
set root=(hd0,1)
search --fs-uuid --set 72cbcfa8-57bf-4b37-9489-e3eaf056d94d
linux   /vmlinuz-2.6.25-2-686 root=/dev/mapper/castor-root ro single 
selinux=1
initrd  /initrd.img-2.6.25-2-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 is an example on how to add custom entries
### END /etc/grub.d/40_custom ###
*** END /boot/grub/grub.cfg

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

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

Versions of packages grub-pc depends on:
ii  debconf [debconf-2.0]1.5.23  Debian configuration management sy
ii  grub-common  1.96+20080831-1 GRand Unified Bootloader, version 
ii  libc62.8+20080809-1  GNU C Library: Shared libraries

grub-pc recommends no packages.

Versions of packages grub-pc suggests:
ii  desktop-base  5.0.0  common files for the Debian Deskto
pn  os-prober none (no description available)

-- debconf information:
  grub-pc/linux_cmdline:
* grub-pc/chainload_from_menu.lst: true



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



Bug#497791: grub-pc: System unbotable due to search --fs-uuid command

2008-09-04 Thread Marc Fargas
Hi,
Thanks for replying so quickly:

On Thu, Sep 4, 2008 at 1:24 PM, Felix Zielcke [EMAIL PROTECTED] wrote:

 Am Donnerstag, den 04.09.2008, 13:01 +0200 schrieb Marc Fargas:
 What was your previous version by the way?
 /var/log/dpkg.log should tell.


[EMAIL PROTECTED] ~log % grep 2008-09-04 dpkg.log | grep grub | grep upgrade
2008-09-04 10:25:36 upgrade grub-common 1.96+20080730-1 1.96+20080831-1
2008-09-04 10:25:38 upgrade grub-pc 1.96+20080730-1 1.96+20080831-1



  Anyway, what's the problem with the search line? ;)

 Honourly, no clue.
 Please do `dumpe2fs -h /dev/sda1 | grep UUID'
 This should show the one in grub.cfg


Yes, the UUIDs are equal are the same.


 Maybe a `umount /boot; e2fsck -f /dev/sda1' would help.
 e2fsprogs had now recently a new upstream version upload to unstable.


Using the latest version, it reported no error (just 7.6% non-contiguous)

Regards,
Marc
-- 
http://www.marcfargas.com - will be finished someday.


Bug#497027: mysql-server-5.0: mysqldumpslow looks for logs in wrong place

2008-08-29 Thread Marc Fargas
Package: mysql-server-5.0
Version: 5.0.32-7etch6
Severity: minor

Hi there,

ganimedes:~# mysqldumpslow 
Can't find '/var/lib/mysql/*-slow.log'

Shouldn't it be looking in /var/log/mysql ?

Regards,
Marc


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

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



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



Bug#496503: vim-full: Please talk about filetype plugin on

2008-08-25 Thread Marc Fargas
Package: vim-full
Version: 2:7.2.000-2
Severity: wishlist

Hi,

For us, the lame vim users, 2.7.2c disabled Filetype plugins (that
is, they are no longer automatically enabled) and, as lame we are, it
took a while to first look at NEWS.Debian.gz where it says about that,
and later find out how to enable filetype plugins (add filetype
plugin on to .vimrc).

Maybe the NEWS file could say this where it says that it's no longer
auto enabled!

Anyway, thanks for packaging the best editor ever made ;))

Regards,
Marc

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

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

Versions of packages vim-full depends on:
ii  vim-gnome2:7.2.000-2 Vi IMproved - enhanced vi editor -

vim-full recommends no packages.

vim-full suggests no packages.

-- no debconf information



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



Bug#495936: collectd: Provide minimal collector only package

2008-08-22 Thread Marc Fargas
Just wondering, maybe moving the rrdtool plugin to its own package
(Suggested by collectd) would do the job?

On Thu, Aug 21, 2008 at 3:05 PM, Sebastian Harl [EMAIL PROTECTED] wrote:



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



Bug#495936: collectd: Provide minimal collector only package

2008-08-22 Thread Marc Fargas
On Fri, Aug 22, 2008 at 1:05 PM, Sebastian Harl [EMAIL PROTECTED] wrote:
 The only sane way to implement this is to have two packages (e.g.
 -server and -client) which conflict each other and provide different
 configurations each (i.e. either rrdtool or network enabled). They would
 both need the collectd binary and the plugins, so that would probably
 have to be split out into an extra package (e.g. -core) so that we
 don't have to ship that twice. -server and -client would both depend
 on that. The collectd package would then only be a dummy package
 depending on -server (i.e. the one with rrdtool enabled), I guess.
 Imho, this is the more reasonable default and preserves the semantics
 on upgrades.

That's nice! But I'd maybe name the -client as -agent.

If I understand it correctly: collectd-server would be the one
receiving data with a Depends on librrd4 and collectd-core; Then
collectd-(agent|client) would not depend on librrd4 but yes on
collectd-core.

On the default configurations for both packages I'd enable the Listen
 Server lines for the recommended multicast address, that would make
collectd just work in a LAN environment! like:

Listen ff18::efc0:4a42

I wouldn't make both packages conflict, unless collectd-server
description says It also provides agent functionallity (as provided
by collectd-agent package) so people do not try to install both :)

Off topic: how hard would it be to make debconf enable collectd
plugins if the related packages are around (and dependencies?) my
packaging skills are limited to my own python scripts so I don't know
:)


Thanks for all the quick replies ;)

Regards,
Marc

--
http://www.marcfargas.com - will be finished someday.



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



Bug#495936: collectd: Provide minimal collector only package

2008-08-21 Thread Marc Fargas
Package: collectd
Version: 4.4.2-1+b1
Severity: wishlist

Hi,

Installing collectd depends on librrd which then depends on libpango,
etc. I'm not sure but if you are only intereseted in collecting data
and sending it to a server, is librrd needed on the clients?

It'd be nice to have a collectd-collector agent which didn't depend
on server-only libs so Clients would have much fewer dependencies.

I don't know if that's even possible, that's why I set wishlist ;))


Regards,
Marc


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

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



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



Bug#495936: collectd: Provide minimal collector only package

2008-08-21 Thread Marc Fargas
On Thu, Aug 21, 2008 at 3:05 PM, Sebastian Harl [EMAIL PROTECTED] wrote:
 It'd be nice to have a collectd-collector agent which didn't depend
 on server-only libs so Clients would have much fewer dependencies.

 That sounds like a good idea to me. I'm not entirely sure how to
 implement that but I will come up with something. This could be
 basically the same package with a different default configuration and
 thus without the dependency on librrd. I don't like to ship the same
 stuff twice though ...

One option could be to move librrd to Recommends, but then people
would be left with an unusable package if they don't pay attention.
That's why I said about a different package, althought being almost
the same, it makes things clear :)

Thanks for taking a look at it :)
--
http://www.marcfargas.com - will be finished someday.



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



Bug#485495: linux-image-2.6.26-rc5-686: esd play strange/fuzzy sounds

2008-06-10 Thread Marc Fargas
El lun, 09-06-2008 a las 23:55 +0200, maximilian attems escribió:
 On Mon, Jun 09, 2008 at 11:17:23PM +0200, Marc Fargas wrote:
 dup
 - http://bugs.debian.org/481979

Sorry, didn't see this one.

 blacklist pc speaker,
 not a kernel bug closing.

Not a kernel bug, but 2.6.26 should not enter unstable until the alsa
folks fix this thing or a bunch of users can get mad with the sounds on
the speakers! ;) (or put this in a NEWS file so users get notified)

Thanks for the tip, gonna blacklist now.

Regards,
Marc




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



Bug#485495: linux-image-2.6.26-rc5-686: esd play strange/fuzzy sounds

2008-06-09 Thread Marc Fargas
Package: linux-image-2.6.26-rc5-686
Version: 2.6.26~rc5-1~experimental.1~snapshot.11582
Severity: normal

Hi,
I just installed 2.6.26-rc5-686 on my laptop and after booting, when I
login in GDM the system start to do a fuzzy sound (like
interferences).

Sound stops when I kill esd, but that doesn't happen with any other
kernel versions (I can use it on 2.6.25) so I suppose it's something
that came on 2.6.26

The laptop is a Dell Precision M65. I can provide any information you
want as it's easylly reproducible by just running esd ;)

Regards,
Marc

-- Package-specific info:
** Version:
Linux version 2.6.26-rc5-686 (Debian 
2.6.26~rc5-1~experimental.1~snapshot.11582) ([EMAIL PROTECTED]) (gcc version 
4.1.3 20070718 (prerelease) (Debian 4.1.2-14+2)) #1 SMP Mon Jun 9 02:25:46 UTC 
2008

** Command line:
BOOT_IMAGE=/vmlinuz-2.6.26-rc5-686 root=/dev/mapper/castor-root ro

** Not tainted

** Kernel log:
[   17.618136] phy0: Selected rate control algorithm 'iwl-3945-rs'
[   17.807554] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.03 (30-Apr-2008)
[   17.808671] iTCO_wdt: Found a ICH7-M TCO device (Version=2, TCOBASE=0x1060)
[   17.808787] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
[   17.923056] intel_rng: FWH not detected
[   18.194378] input: PC Speaker as /class/input/input7
[   18.325566] ACPI: PCI interrupt for device :0c:00.0 disabled
[   18.327157] cannot find the slot for index 0 (range 0-0), error: -16
[   18.327157] hda-intel: Error creating card!
[   18.327157] HDA Intel: probe of :00:1b.0 failed with error -12
[   18.327157] ACPI: PCI Interrupt :00:1f.3[B] - GSI 17 (level, low) - 
IRQ 17
[   18.328759] Yenta: CardBus bridge found at :03:01.0 [1028:01c8]
[   18.328861] PCI: Bus 4, cardbus bridge: :03:01.0
[   18.328928]   IO window: 0x2000-0x20ff
[   18.328994]   IO window: 0x2400-0x24ff
[   18.329061]   PREFETCH window: 0x8c00-0x8c3f
[   18.329131]   MEM window: 0x8800-0x8bff
[   18.329205] Yenta O2: res at 0x94/0xD4: 00/ea
[   18.329269] Yenta O2: enabling read prefetch/write burst
[   18.456131] Yenta: ISA IRQ mask 0x0cb8, PCI irq 19
[   18.456207] Socket status: 3006
[   18.456271] Yenta: Raising subordinate bus# of parent bus (#03) from #04 to 
#07
[   18.456357] pcmcia: parent PCI bridge I/O window: 0x2000 - 0x2fff
[   18.456428] cs: IO port probe 0x2000-0x2fff: clean.
[   18.456970] pcmcia: parent PCI bridge Memory window: 0xecb0 - 0xecbf
[   18.477755] input: PS/2 Mouse as /class/input/input8
[   18.535365] udev: renamed network interface wlan0 to eth2
[   18.549908] input: AlpsPS/2 ALPS GlidePoint as /class/input/input9
[   19.076002] cs: IO port probe 0x100-0x3af: clean.
[   19.077732] cs: IO port probe 0x3e0-0x4ff: clean.
[   19.078689] cs: IO port probe 0x820-0x8ff: clean.
[   19.080372] cs: IO port probe 0xc00-0xcf7: excluding 0xcb0-0xcbf
[   19.080698] cs: IO port probe 0xa00-0xaff: clean.
[   22.466139] EXT3 FS on dm-1, internal journal
[   22.826705] loop: module loaded
[   24.595889] kjournald starting.  Commit interval 5 seconds
[   24.601963] EXT3 FS on sda1, internal journal
[   24.602078] EXT3-fs: mounted filesystem with ordered data mode.
[   24.674138] Adding 2715640k swap on /dev/mapper/castor-swap_1.  Priority:-1 
extents:1 across:2715640k
[   26.591141] fuse init (API version 7.9)
[   28.105126] tun: Universal TUN/TAP device driver, 1.6
[   28.105126] tun: (C) 1999-2004 Max Krasnyansky [EMAIL PROTECTED]
[   29.494015] NET: Registered protocol family 10
[   29.494769] lo: Disabled Privacy Extensions
[   40.602649] tap0: no IPv6 routers present
[   47.237423] warning: `avahi-daemon' uses 32-bit capabilities (legacy support 
in use)
[   47.495180] Bluetooth: Core ver 2.11
[   47.497423] NET: Registered protocol family 31
[   47.497492] Bluetooth: HCI device and connection manager initialized
[   47.497561] Bluetooth: HCI socket layer initialized
[   47.690783] Bluetooth: L2CAP ver 2.9
[   47.690783] Bluetooth: L2CAP socket layer initialized
[   47.816919] Bluetooth: RFCOMM socket layer initialized
[   47.816919] Bluetooth: RFCOMM TTY layer initialized
[   47.816919] Bluetooth: RFCOMM ver 1.8
[   51.220654] lp: driver loaded but no devices found
[   51.362437] ppdev: user-space parallel port driver
[   51.386931] ACPI: PCI Interrupt :0c:00.0[A] - GSI 17 (level, low) - 
IRQ 17
[   51.387262] PM: Writing back config space on device :0c:00.0 at offset 1 
(was 100102, writing 100106)
[   51.387558] firmware: requesting iwlwifi-3945-1.ucode
[   51.680485] iwl3945: Radio disabled by HW RF Kill switch
[   51.680509] ACPI: PCI interrupt for device :0c:00.0 disabled
[   53.913304] ADDRCONF(NETDEV_UP): eth1: link is not ready
[   54.435652] ACPI: PCI Interrupt :0c:00.0[A] - GSI 17 (level, low) - 
IRQ 17
[   54.438903] PM: Writing back config space on device :0c:00.0 at offset 1 
(was 100102, writing 100106)
[   54.438903] iwl3945: Radio disabled by HW RF Kill switch
[   54.438903] ACPI: PCI 

Bug#463502: Why did you reopen this?

2008-06-03 Thread Marc Fargas
Hi Bryan,

You reopened this bug (#463502) althought it was stated that 0.8.0 was
(and still is) and unstable release of rtorrent and libtorrent (as seen
on upstream's website).

It's a good, and nice, policy to explain things when manipulating bugs,
so, could you please elaborate why did you reopen this bug? From my POV
it's clearly not a bug, unless your reopening meant Please, package it
in experimental

Hope you can explain why did you reopen so whe can avoid starting a
close-reopen-reclose-reopen chain.

Best wishes,
Marc

-- 
http://www.marcfargas.com -- will be finished some day.


signature.asc
Description: Esta parte del mensaje está firmada	digitalmente


Bug#483654: [Buildd-tools-devel] Bug#483654: Bug#483654: Wrong reference in sbuild-setup(7)

2008-05-31 Thread Marc Fargas

El sáb, 31-05-2008 a las 10:08 +0100, Roger Leigh escribió:
 Roger Leigh [EMAIL PROTECTED] writes:
 Now fixed in upstream git:

WOW, That's fast!
Thanks!

-- 
http://www.marcfargas.com -- will be finished some day.


signature.asc
Description: Esta parte del mensaje está firmada	digitalmente


Bug#483654: Wrong reference in sbuild-setup(7)

2008-05-30 Thread Marc Fargas
Package: sbuild
Version: 0.57.3-1
Severity: minor

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi,
There's a wrong reference in sbuild documentation, in the manpage for
sbuild-setup it reads:

BUILDD.CHROOT
This script, located in...

According to sbuild-createchroot(8), it says:

sbuild-createchroot  was  previously known as buildd.chroot.

So, sbuild-setup(7) should reference sbuild-createchroot?

As you see I'm slowly knowing how to use sbuild! And reading all the
docs! :)

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

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

Versions of packages sbuild depends on:
ii  adduser   3.107  add and remove users and groups
ii  apt   0.7.11 Advanced front-end for dpkg
ii  dctrl-tools   2.12   Command-line tools to process Debi
ii  devscripts2.10.27scripts to make the life of a Debi
ii  dpkg-dev  1.14.18package building tools for Debian
ii  perl  5.10.0-10  Larry Wall's Practical Extraction 
ii  perl-modules  5.10.0-10  Core Perl modules
ii  schroot   1.2.0-1Execute commands in a chroot envir
ii  ssmtp [mail-transport-agent]  2.62-1 extremely simple MTA to get mail o

Versions of packages sbuild recommends:
ii  debootstrap   1.0.9  Bootstrap a basic Debian system
ii  fakeroot  1.9.5  Gives a fake root environment

- -- no debconf information

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

iD8DBQFIP8v3vdQvJTAk4mYRAmkSAKCRQwR4srAwfwZKlEJ8YprBfVObaACguYq5
Z0dQsY5MSlnoaYpWm43y758=
=vinN
-END PGP SIGNATURE-



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



Bug#481936: python-gobject: undefined symbol: PySignal_SetWakeupFd

2008-05-19 Thread Marc Fargas
Package: python-gobject
Version: 2.14.1-6
Severity: normal

Hi,
With python2.5 you can't import gobject (and hence gtk) anymore:

On Python2.4:
Python 2.4.5 (#2, Apr 17 2008, 13:00:52) 
[GCC 4.2.3 (Debian 4.2.3-3)] on linux2
Type help, copyright, credits or license for more information.
 import gobject
 

on Python2.5:
Python 2.5.2 (r252:60911, Apr 17 2008, 13:15:05) 
[GCC 4.2.3 (Debian 4.2.3-3)] on linux2
Type help, copyright, credits or license for more information.
 import gobject
Traceback (most recent call last):
  File stdin, line 1, in module
  File /var/lib/python-support/python2.5/gtk-2.0/gobject/__init__.py, 
line 30, in module
from gobject.constants import *
  File /var/lib/python-support/python2.5/gtk-2.0/gobject/constants.py, 
line 22, in module
from _gobject import type_from_name
ImportError: /var/lib/python-support/python2.5/gtk-2.0/gobject/_gobject.so: 
undefined symbol: PySignal_SetWakeupFd
 


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

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

Versions of packages python-gobject depends on:
ii  libc6 2.7-11 GNU C Library: Shared libraries
ii  libffi5   3.0.5-1Foreign Function Interface library
ii  libglib2.0-0  2.16.3-2   The GLib library of C routines
ii  python2.5.2-1An interactive high-level object-o
ii  python-support0.7.7  automated rebuilding support for P

python-gobject recommends no packages.

-- no debconf information



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



Bug#472784: More information

2008-04-25 Thread Marc Fargas
Hi,
I've been looking around the foomatic-gui code and have a small idea on
where the problem is, it has nothing to do with foomatic-db (seems).

On foomatic.py (shipped by python-foomatic) line 249 there's a
try/except block which catches *any* exception when parsing foomatic's
database.

If you take out the try/except printconf will end with a nice exception

Traceback (most recent call last):
  File printconf, line 95, in module
printdb = foomatic.foomatic.get_printer_db()
  File /home/marc/debian/foomatic-gui-0.7.7/foomatic/foomatic.py, 
line 250, in get_printer_db
parse_foomatic('foomatic-configure -q -O 2/dev/null', handler)
  File /home/marc/debian/foomatic-gui-0.7.7/foomatic/foomatic.py, 
line 237, in parse_foomatic
xml.sax.parseString(data, handler)
  File /usr/lib/python2.5/site-packages/_xmlplus/sax/__init__.py, 
line 47, in parseString
parser.parse(inpsrc)
  File /usr/lib/python2.5/site-packages/_xmlplus/sax/expatreader.py, 
line 109, in parse
xmlreader.IncrementalParser.parse(self, source)
  File /usr/lib/python2.5/site-packages/_xmlplus/sax/xmlreader.py, 
line 123, in parse
self.feed(buffer)
  File /usr/lib/python2.5/site-packages/_xmlplus/sax/expatreader.py, 
line 216, in feed
self._parser.Parse(data, isFinal)
  File /usr/lib/python2.5/site-packages/_xmlplus/sax/expatreader.py, 
line 315, in end_element
self._cont_handler.endElement(name)
  File /home/marc/debian/foomatic-gui-0.7.7/foomatic/foomatic.py, 
line 149, in endElement
self.autodetect[name] = self._block
AttributeError: FoomaticOverviewHandler instance has no attribute 
'autodetect'

That one is the real problem, now somebody who understands the
foomatic.py code can try to fix that (and make the try/except a bit more
explicit).
-- 
http://www.marcfargas.com -- will be finished some day.


signature.asc
Description: Esta parte del mensaje está firmada	digitalmente


Bug#470473: epiphany-gecko: Unresolved symbol g_uri_get_scheme

2008-04-10 Thread Marc Fargas
Hi,

El mié, 12-03-2008 a las 00:19 +0100, Josselin Mouette escribió:
 Hi,
 Unfortunately epiphany 2.22 will have to wait for a few days because a
 new version of webkit needs to be uploaded before.

As 2.22 is taking a bit, how hard would it be to upload a patched
2.21.90 ? Iceweasel is slow and epiphany-webkit doesn't support tabs!

Right now if you run gnome 2.22 from experimental you'll loose
epiphany :'

I don't know if it's possible to upload a patched 2.21.90, but it'd be
nice :)

Regards,
Marc
-- 
http://www.marcfargas.com -- will be finished some day.


signature.asc
Description: Esta parte del mensaje está firmada	digitalmente


Bug#470473: True Epiphany Love (was: epiphany-gecko: Unresolved symbol g_uri_get_scheme)

2008-04-10 Thread Marc Fargas
Hi,

El mar, 11-03-2008 a las 13:45 +0100, Marc Fargas escribió: 
 It then crashes!
 So it doesn't work anymore ;((
 Maybe it's Depends line needs to be a bit more specific on the

Being desperate of iceweasel being slow and epiphany-webkit not
supporting tabs (among other things) I ended up patching epiphany-gecko
to get it working, note: I know almost nothing about debian packaging
the most I've done is python packages of my own stuff...

So:
* I learned how to create an sbuild chroot
* apt-get source epiphany-gecko (the only step I knew)
* renamed all instances of g_uri_get_scheme to g_uri_parse_scheme
* Figured out I was looking for dpkg-source to get new .tgz and .dsc
* Asked sbuild to package it (it got very angry, my chroot is far from
perfect) 
* Found out g_file_contains_file has to be renamed to g_file_has_prefix
also.
* Rerun sbuild
* Got a shiny working epiphany! 
* YUHU!

I'm just writting this to let the world know what Really Loving Your
Favourite Browser means. (And maybe opt-in for DeFuBu!)

And, I'm almost sure there was an easier way to get it working without
downgrading, but hey, I learnt lots of stuff!

Cheers,
Marc

(PS: when runing sbuild as non-root how to make it not ask root password
for apt?)
-- 
http://www.marcfargas.com -- will be finished some day.


signature.asc
Description: Esta parte del mensaje está firmada	digitalmente


Bug#470473: True Epiphany Love (was: epiphany-gecko: Unresolved symbol g_uri_get_scheme)

2008-04-10 Thread Marc Fargas
El jue, 10-04-2008 a las 22:04 +0200, Sven Arvidsson escribió:
 On Thu, 2008-04-10 at 21:04 +0200, Marc Fargas wrote:
  Being desperate of iceweasel being slow and epiphany-webkit not
  supporting tabs (among other things) I ended up patching epiphany-gecko
  to get it working, note: I know almost nothing about debian packaging
  the most I've done is python packages of my own stuff...
 
 Nice, but it would probably have been easier to just check out the
 unreleased debian directory and built 2.22 yourself.
 
 See http://pkg-gnome.alioth.debian.org/svn.html for the basics (you need
 to change from unstable to experimental).

Arfgh! Ok, I'll try that! Thanks for the tip.
I'll first read those .html on pkg-gnome.

Regards,
Marc

-- 
http://www.marcfargas.com -- will be finished some day.


signature.asc
Description: Esta parte del mensaje está firmada	digitalmente


Bug#474984: postgresql-doc-8.1: Does not register with doc-base

2008-04-08 Thread Marc Fargas
Package: postgresql-doc-8.1
Version: 8.1.11-0etch1
Severity: minor

Hi there,
Not too long ago I found out doc-base and dhelp it's really nice!
But after installing postgresq-doc-8.1 I noticed it does not appear at
file:///usr/share/doc/HTML/All/index.html maybe I'm doing something
wrong?

Regards,
Marc

PS: I'm almost sure I already filled a bug report telling exactly the
same but I could not find it, so maybe my memory fails. If not: sorry.

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

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

-- no debconf information



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



Bug#474030: sbuild: Wrong reference in README.Debian

2008-04-02 Thread Marc Fargas
Package: sbuild
Version: 0.57.0-1
Severity: minor

Hi,
In /usr/share/doc/sbuild/README.Debian on the chroots section the
document refers the reader to README-buildd.chroot, but this file is
not in the doc folder. Maybe it should reference sbuild-setup or
nothing ;)

Regards,
Marc

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

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

Versions of packages sbuild depends on:
ii  adduser   3.106  add and remove users and groups
ii  apt   0.7.11 Advanced front-end for dpkg
ii  dctrl-tools   2.12   Command-line tools to process Debi
ii  dpkg-dev  1.14.16.6  package building tools for Debian
ii  perl  5.8.8-12   Larry Wall's Practical Extraction 
ii  perl-modules  5.8.8-12   Core Perl modules
ii  schroot   1.1.6-1Execute commands in a chroot envir
ii  ssmtp [mail-transport-agent]  2.62-1 extremely simple MTA to get mail o

Versions of packages sbuild recommends:
ii  debootstrap   1.0.8  Bootstrap a basic Debian system
ii  fakeroot  1.9.3  Gives a fake root environment

-- no debconf information



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



Bug#473744: vim-scripts: Please ship snippetsEmu

2008-04-01 Thread Marc Fargas
Package: vim-scripts
Version: 7.1.6
Severity: wishlist

Hi,
I really love the vim-addons install script thing! Lots of kudos
to all of you.

I just found the snippetsEmu script at vim.org and I'd love to see it
included in vim-scripts, if possible.

http://www.vim.org/scripts/script.php?script_id=1318

So, if it can be included (with it's bundles also) it'd be very nice.

Thanks!
Marc

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

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

vim-scripts depends on no packages.

Versions of packages vim-scripts recommends:
ii  vim-addon-manager0.4 manager of addons for the Vim edit
ii  vim-full [gvim]  1:7.1-266+1 Vi IMproved - enhanced vi editor (
ii  vim-gnome [vim]  1:7.1-266+1 Vi IMproved - enhanced vi editor -
ii  vim-gtk [vim]1:7.1-266+1 Vi IMproved - enhanced vi editor -
ii  vim-python [gvim]1:7.1-266+1 Vi IMproved - enhanced vi editor (

-- no debconf information



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



Bug#470473: epiphany-gecko: Unresolved symbol g_uri_get_scheme

2008-03-11 Thread Marc Fargas
Package: epiphany-gecko
Version: 2.21.90-1
Severity: important

Hi there,
I just upgraded some package (I think it was libgnomevfs2-0) and now
epiphany shows this nice thing:

[EMAIL PROTECTED] ~ % epiphany-gecko 
sys:1: Warning: /tmp/buildd/glib2.0-2.16.1/gobject/gsignal.c:1669:
signal `ge-content-change' is invalid for instance `0x8b8f800'
epiphany-gecko: symbol lookup error: epiphany-gecko: undefined symbol:
g_uri_get_scheme

It then crashes!
So it doesn't work anymore ;((
Maybe it's Depends line needs to be a bit more specific on the
version.

Cheers,
Marc


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

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

Versions of packages epiphany-gecko depends on:
ii  dbus   1.1.20-1  simple interprocess messaging syst
ii  epiphany-browser-data  2.21.90-1 Data files for the GNOME web brows
ii  gnome-icon-theme   2.20.0-1  GNOME Desktop icon theme
ii  iso-codes  2.0-1 ISO language, territory, currency,
ii  libart-2.0-2   2.3.20-1  Library of functions for 2D graphi
ii  libatk1.0-01.20.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  libavahi-gobject0  0.6.22-2  Avahi GObject library
ii  libbonobo2-0   2.21.90-1 Bonobo CORBA interfaces library
ii  libbonoboui2-0 2.21.90-1 The Bonobo UI library
ii  libc6  2.7-9 GNU C Library: Shared libraries
ii  libcairo2  1.5.8-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  libenchant1c2a 1.3.0-5   a wrapper library for various spel
ii  libffi44.3.0-1   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  libgcc11:4.3.0-1 GCC support library
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-1  The GLib library of C routines
ii  libgnome-desktop-2 2.20.3-1  Utility library for loading .deskt
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-1GNOME Virtual File System (runtime
ii  libgtk2.0-02.12.8-1  The GTK+ graphical user interface 
ii  libice62:1.0.4-1 X11 Inter-Client Exchange library
ii  libmozjs0d 1.8.1.12-4The Mozilla SpiderMonkey JavaScrip
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.10-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  libsm6 2:1.0.3-1+b1  X11 Session Management library
ii  libstartup-notificatio 0.9-1 library for program launch feedbac
ii  libstdc++6 4.3.0-1   The GNU Standard C++ Library v3
ii  libx11-6   2:1.1.4-1 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  libxml22.6.31.dfsg-2 GNOME XML library
ii  libxrandr2 2:1.2.2-1 X11 RandR extension library
ii  libxrender11:0.9.4-1 X Rendering Extension client libra
ii  libxslt1.1 1.1.22-1  XSLT processing library - runtime 
ii  libxul0d   1.8.1.12-4Gecko engine library
ii  python2.4  2.4.5~c1-1 

Bug#470473: epiphany-gecko: Unresolved symbol g_uri_get_scheme

2008-03-11 Thread Marc Fargas
I think I can wait until 2.22 gets uploaded (hope it's soon!) I'll try
to live with iceweasel in the meantime (ughhh) as epiphany-webkit is
still a bit to buggy! ;)

Thanks for the quick response!
Cheers,
Marc

El mar, 11-03-2008 a las 14:25 +0100, Sebastian Dröge escribió:
 Am Dienstag, den 11.03.2008, 13:45 +0100 schrieb Marc Fargas:
  Package: epiphany-gecko
  Version: 2.21.90-1
  Severity: important
  
  Hi there,
  I just upgraded some package (I think it was libgnomevfs2-0) and now
  epiphany shows this nice thing:
  
  [EMAIL PROTECTED] ~ % epiphany-gecko 
  sys:1: Warning: /tmp/buildd/glib2.0-2.16.1/gobject/gsignal.c:1669:
  signal `ge-content-change' is invalid for instance `0x8b8f800'
  epiphany-gecko: symbol lookup error: epiphany-gecko: undefined symbol:
  g_uri_get_scheme
  
  It then crashes!
  So it doesn't work anymore ;((
  Maybe it's Depends line needs to be a bit more specific on the
  version.
 
 That's caused by glib 2.16.0. Some symbols that were deprecated (and
 only were added between 2.15.0 and 2.16.0) were removed for cleanup.
 
 epiphany needs to be updated to 2.22.0 (or get the trivial fix to use
 the replacement function for this).
-- 
http://www.marcfargas.com -- will be finished some day.


signature.asc
Description: Esta parte del mensaje está firmada	digitalmente


Bug#470473: epiphany-gecko: Unresolved symbol g_uri_get_scheme

2008-03-11 Thread Marc Fargas
El mié, 12-03-2008 a las 00:19 +0100, Josselin Mouette escribió:
 Unfortunately epiphany 2.22 will have to wait for a few days because a
 new version of webkit needs to be uploaded before.
 
 Cheers,
Ok, after a few hours I just realised I can't live without Epiphany
anymore! So I downgraded glib.

Much much thanks upstream for such a nice browser, and to you for
packaging it!

Thanks for the quick answers, atleast I now what to downgrade! ;)

Cheers,
Marc
-- 
http://www.marcfargas.com -- will be finished some day.


signature.asc
Description: Esta parte del mensaje está firmada	digitalmente


Bug#470391: incron messes arguments with spaces

2008-03-10 Thread Marc Fargas
Package: incron
Version: 0.5.7-1
Severity: minor

Hi there,
If you set a line like:
/tmp/test IN_CREATE,IN_MOVED_TO /tmp/test.sh $@ $#

In your incrontab you expect that test.sh would get $@ in $1, and $#
in $2, but if one of those has spaces things get bad:
[EMAIL PROTECTED]:/tmp$ touch test/This\ is\ a\ test
[EMAIL PROTECTED]:/tmp$ cat vars
/tmp/test This is a test
/tmp/test
This

(test.sh echoes $*, $1 and $2 to /tmp/vars in that order)
So, in some way, incron does not care about the quotes () placed
around the arguments on the incrontab.

Maybe I'm doing something wrong, but I've always enclosed things in
quotes when they have spaces :)

Cheers,
Marc

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

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



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



Bug#470392: bugs.debian.org: No error given on unexisting package

2008-03-10 Thread Marc Fargas
Package: bugs.debian.org
Severity: normal

Hi there,
I have a super nice epiphany bookmark: http://bugs.debian.org/%s it's
really nice, you type a package name and you see all of it's bugs!

But, if you missspell the package name, or invent one (I tried
incrond, my fault!) you won't notice that, because b.d.o won't tell
you.

It will simply say something like:
Debian Bug report logs: Bugs in package sillypackagename in unstable
No maintainer for sillypackagename. Please do not report new bugs against 
this package.
You might like to refer to the sillypackagename package page, to the 
Package Tracking System, or to the source package sillypackagename's bug page.
There is no record of the sillypackagename package, and no bugs have been 
filed against it.
See the archived reports or archived and unarchived reports 

Maybe b.d.o could check if a package did ever exist with such a name
and tell the user about the mistake (not to tell if it said You meant
XX...!)

Cheers,
Marc
-- System Information:
Debian Release: lenny/sid
  APT prefers testing
  APT policy: (900, 'testing'), (500, 'gutsy'), (300, 'unstable'), (150, 
'experimental'), (100, 'stable')
Architecture: i386 (i686)

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



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



Bug#469657: vim-vimoutliner: Wrong reference to README

2008-03-06 Thread Marc Fargas
Package: vim-vimoutliner
Version: 0.3.4-8
Severity: minor

Hi there,
the README.Debian file included in the package reads::

3) Upstream documentation (located in
   /usr/share/doc/vim-vimoutliner/README) mentions ,, as the

But, the README file of vimoutliner is not there, maybe:
/usr/share/vim/addons/doc/vo_readme.txt.gz


Cheers,
Marc

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

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

Versions of packages vim-vimoutliner depends on:
ii  libpalm-perl 1.3.0-6 Perl 5 modules for manipulating pd
ii  libxml-writer-perl   0.603-1 Perl module for writing XML docume
ii  perl 5.8.8-12Larry Wall's Practical Extraction 
ii  python   2.4.4-6 An interactive high-level object-o
ii  vim-full [gvim]  1:7.1-245+1 Vi IMproved - enhanced vi editor (
ii  vim-gnome [gvim] 1:7.1-245+1 Vi IMproved - enhanced vi editor -
ii  vim-gtk [gvim]   1:7.1-245+1 Vi IMproved - enhanced vi editor -
ii  vim-python [gvim]1:7.1-245+1 Vi IMproved - enhanced vi editor (

vim-vimoutliner recommends no packages.

-- no debconf information



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



Bug#458897: f-spot: change beagle dependency from depends to suggests

2008-03-06 Thread Marc Fargas
Hi there,
I have no idea on how f-spot works, but found that bug when I was about
to submit it :)

There are packages like Brasero that Depends on libbeagle1 instead of
beagled, couldn't f-spot Depend on libbeagle and leave beagled on
Suggest?

I don't know if f-spot need beagle, or the runtime library but if it
depends on the library then one could purge the daemon (which for some
reason decides to start althought I kill it!)

Just my 0.002 ;))

Cheers,
Marc
-- 
http://www.marcfargas.com -- will be finished some day.


signature.asc
Description: Esta parte del mensaje está firmada	digitalmente


Bug#469191: dhelp: Different formats from different Packages

2008-03-03 Thread Marc Fargas
Package: dhelp
Version: 0.6.7
Severity: minor

Hi,
Yesterday I just discovered doc-base and dhelp and, sincerelly, I'm
amazed!

I've also started playing with docbook, so I installed:
docbook-xsl-doc-{html,pdf,text}

And launched dhelp. And there's a small quirck.
When different formats are provided by the same package they appear on
the same entry, i.e. Shared MIME-info ... HTML PDF but in this case,
while the three packages provide the same document in different
formats, they are different packages and dhelp puts three different
entries, on for each format.

It would be very nice to see the three formats on the same line! So I
Severity minor (maybe wishlist?).

I'm not sure if that bugreport should go to dhelp, doc-base or
whatever, hope you can forward the bug appropiatelly.

Cheers,
Marc

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

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

Versions of packages dhelp depends on:
ii  doc-base   0.8.10utilities to manage online documen
ii  libcommandline-ruby1.8 0.7.10-9  Ruby library to write command-line
ii  libdata-page-perl  2.00-3Help when paging through sets of r
ii  libdb4.2-ruby1.8   0.6.2-3   Interface to Berkeley DB for Ruby 
ii  libgettext-ruby1.8 1.9.0-1   Gettext for ruby1.8
ii  libhtml-parser-perl3.56-1A collection of modules that parse
ii  liblocale-gettext-perl 1.05-3Using libc functions for internati
ii  libtemplate-perl   2.19-1template processing system written
ii  liburi-perl1.35.dfsg.1-1 Manipulates and accesses URI strin
ii  perl-modules   5.8.8-12  Core Perl modules
ii  pstotext   1.9-4 Extract text from PostScript and P
ii  ruby1.81.8.6.111-4   Interpreter of object-oriented scr
ii  swish++6.1.5-1   Simple Document Indexing System fo

Versions of packages dhelp recommends:
ii  epiphany-gecko [www-browser 2.20.3-1 Intuitive GNOME web browser - Geck
ii  epiphany-webkit [www-browse 2.20.3-1 Intuitive GNOME web browser - webk
ii  iceweasel [www-browser] 2.0.0.12-1   lightweight web browser based on M
ii  lynx [www-browser]  2.8.6-2  Text-mode WWW Browser
ii  w3m [www-browser]   0.5.1-5.1+b1 WWW browsable pager with excellent

-- no debconf information



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



Bug#463978: empathy: Not trusted SSL would not allow connect

2008-02-04 Thread Marc Fargas
Package: empathy
Version: 0.21.5.2-1
Severity: normal

Hi,
I'm not sure if this belongs to empathy or telepathy-gabble. Anyway:

I just upgraded empathy and it decided to not trust my server's SSL
certificate showing up and error with no option to trust the server
certificate which would leave the average user with an empty contact
list and an error without any options ;(

I found out that: /apps/telepathy/mc/accounts/jabber0/param-old-ssl
set to True in gconf would solve the problem, but param-old-ssl
seems to mean I'm gonna disappear so, maybe empathy should provide
someway to Trust server certificates or at least give some direction
to the user on what to do.

On the meantime, maybe param-old-ssl should default to True to not
screw things for the users which could have trouble solving the
problem (Not everybody would look into gconf).

Cheers,
Marc

PS: How can I make telepathy trust my server's certificate? ;))

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

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

Versions of packages empathy depends on:
ii  libaspell150.60.5-1  GNU Aspell spell-checker runtime l
ii  libatk1.0-01.20.0-1  The ATK accessibility toolkit
ii  libbonobo2-0   2.20.3-1  Bonobo CORBA interfaces library
ii  libc6  2.7-6 GNU C Library: Shared libraries
ii  libcairo2  1.4.14-1  The Cairo 2D vector graphics libra
ii  libdbus-1-31.1.2-1   simple interprocess messaging syst
ii  libdbus-glib-1-2   0.74-1simple interprocess messaging syst
ii  libebook1.2-9  1.12.3-1  Client library for evolution addre
ii  libedataserver1.2-91.12.3-1  Utility library for evolution data
ii  libempathy-gtk90.21.5.2-1High-level library and user-interf
ii  libempathy70.21.5.2-1High-level library and user-interf
ii  libgconf2-42.20.1-2+b1   GNOME configuration database syste
ii  libglade2-01:2.6.2-1 library to load .glade files at ru
ii  libglib2.0-0   2.14.5-2  The GLib library of C routines
ii  libgnome2-02.20.1.1-1The GNOME 2 library - runtime file
ii  libgnomevfs2-0 1:2.20.1-1GNOME Virtual File System (runtime
ii  libgtk2.0-02.12.5-2  The GTK+ graphical user interface 
ii  libmissioncontrol-client0  4.55-1Library to interact with Telepathy
ii  liborbit2  1:2.14.10-0.1 libraries for ORBit2 - a CORBA ORB
ii  libpango1.0-0  1.19.3-1  Layout and rendering of internatio
ii  libpopt0   1.10-3lib for parsing cmdline parameters
ii  libtelepathy-glib0 0.7.0-1   Telepathy framework - GLib connect
ii  libtelepathy2  0.3.1-1   Telepathy framework - GLib library
ii  libx11-6   2:1.0.3-7 X11 client-side library
ii  libxml22.6.31.dfsg-1 GNOME XML library

Versions of packages empathy recommends:
ii  telepathy-gabble  0.7.1-1Jabber/XMPP connection manager
ii  telepathy-salut   0.3.0-1Link-local XMPP connection manager

-- no debconf information



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



Bug#402861: Bug#390712: Nokia/Ericsson MAC padding problem

2008-02-04 Thread Marc Fargas
El lun, 04-02-2008 a las 14:12 +0100, Marc Haber escribió:
 On Mon, Feb 04, 2008 at 12:09:17PM +0100, Simon Josefsson wrote:
 I'd love to have some permanent reference that can be found by Symbian
 device owners and referenced in response to new bug reports.
 
 Greetings
 Marc

Here's a E60 and N95 owner (and a [currently] broken E61 too) glad to
tests things ;)

The easiest to play with is the N95 as it's my phone but can try stuff
in the E60 also without problem.

So just ask for anything you want me to try ;)

Cheers,
Marc
-- 
http://www.marcfargas.com -- will be finished some day.


signature.asc
Description: Esta parte del mensaje está firmada	digitalmente


Bug#460583: evolution: TLS Option disappeared ?

2008-01-13 Thread Marc Fargas
Package: evolution
Version: 2.12.2-1+b1
Severity: normal

Hi,
According to the Help that comes with evolution and even some
screenshots around the web, when you are configuring an account there
should be an option like Use SSL or Use TLS, er.. in the account
settings just below the incoming servername, am I right?

It isn't there! I'm using IMAP against dovecot with two different
accounts (two different servers) and suddently evolution decided to
not use TLS in one of the accounts (and then the server would reject
me). That's what drove me to look for the TLS option which is no
longer around there.

Finally I solved my problem by adding use_ssl=when-possible in the
url using gconf-editor, but, really, where is the TLS option¿¿

Cheers,
Marc


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

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

Versions of packages evolution depends on:
ii  dbus1.1.2-1  simple interprocess messaging syst
ii  evolution-common2.12.2-1 architecture independent files for
ii  evolution-data-server   1.12.2-1 evolution database backend server
ii  gconf2  2.20.1-2 GNOME configuration database syste
ii  gnome-icon-theme2.20.0-1 GNOME Desktop icon theme
ii  gtkhtml3.14 3.16.1-1 HTML rendering/editing library - b
ii  libart-2.0-22.3.19-3 Library of functions for 2D graphi
ii  libatk1.0-0 1.20.0-1 The ATK accessibility toolkit
ii  libbonobo2-02.20.2-1 Bonobo CORBA interfaces library
ii  libbonoboui2-0  2.20.0-1 The Bonobo UI library
ii  libc6   2.7-5GNU C Library: Shared libraries
ii  libcairo2   1.4.10-1+lenny2  The Cairo 2D vector graphics libra
ii  libcamel1.2-10  1.12.2-1 The Evolution MIME message handlin
ii  libdbus-1-3 1.1.2-1  simple interprocess messaging syst
ii  libdbus-glib-1-20.74-1   simple interprocess messaging syst
ii  libebook1.2-9   1.12.2-1 Client library for evolution addre
ii  libecal1.2-71.12.2-1 Client library for evolution calen
ii  libedataserver1.2-9 1.12.2-1 Utility library for evolution data
ii  libedataserverui1.2-8   1.12.2-1 GUI utility library for evolution 
ii  libegroupwise1.2-13 1.12.2-1 Client library for accessing group
ii  libexchange-storage1.2- 1.12.2-1 Backend library for evolution cale
ii  libfontconfig1  2.4.2-1.2generic font configuration library
ii  libfreetype62.3.5-1+b1   FreeType 2 font engine, shared lib
ii  libgconf2-4 2.20.1-2 GNOME configuration database syste
ii  libglade2-0 1:2.6.2-1library to load .glade files at ru
ii  libglib2.0-02.14.3-1 The GLib library of C routines
ii  libgnome-pilot2 2.0.15-2 Support libraries for gnome-pilot
ii  libgnome2-0 2.20.1.1-1   The GNOME 2 library - runtime file
ii  libgnomecanvas2-0   2.20.1.1-1   A powerful object-oriented display
ii  libgnomeui-02.20.1.1-1   The GNOME 2 libraries (User Interf
ii  libgnomevfs2-0  1:2.20.1-1   GNOME Virtual File System (runtime
ii  libgnutls13 2.0.4-1  the GNU TLS library - runtime libr
ii  libgtk2.0-0 2.12.3-2 The GTK+ graphical user interface 
ii  libgtkhtml3.14-19   3.16.1-1 HTML rendering/editing library - r
ii  libhal1 0.5.10-5 Hardware Abstraction Layer - share
ii  libice6 2:1.0.4-1X11 Inter-Client Exchange library
ii  libldap22.1.30.dfsg-13.5 OpenLDAP libraries
ii  libnm-glib0 0.6.5-3  network management framework (GLib
ii  libnotify1 [libnotify1- 0.4.4-3  sends desktop notifications to a n
ii  liborbit2   1:2.14.7-0.1 libraries for ORBit2 - a CORBA ORB
ii  libpango1.0-0   1.19.2-1 Layout and rendering of internatio
ii  libpisock9  0.12.2-11library for communicating with a P
ii  libpisync1  0.12.3-2 synchronization library for PalmOS
ii  libpng12-0  1.2.15~beta5-3   PNG library - runtime
ii  libpopt01.10-3   lib for parsing cmdline parameters
ii  libsm6  2:1.0.3-1+b1 X11 Session Management library
ii  libsoup2.2-82.2.104-1an HTTP library implementation in 
ii  libx11-62:1.0.3-7X11 client-side library
ii  libxcursor1 1:1.1.9-1X cursor management library
ii  libxext6  

Bug#460296: kdelibs5: Wrong Depends on libstreams and libstreamanalyzer

2008-01-11 Thread Marc Fargas
Package: kdelibs5
Version: 4:4.0.0-1
Severity: important

Hi,
I just wanted to try KDE 4 so Installed it... and it misereably
failed:

kdeinit4: symbol lookup error: /usr/lib/libkio.so.5: undefined
symbol:
_ZN6Strigi14AnalysisResultC1ERKSslRNS_11IndexWriterERNS_14StreamAnalyzerES2_
startkde: Could not start kdeinit4. Check your installation.

After looking around the problem was that I had libstreams0 and
libstreamanalyzer0 on version 0.5.5-2

I needed 0.5.7-1, so kdelibs4 should Depend on at least this version
:)

Cheers,
Marc


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

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

Versions of packages kdelibs5 depends on:
ii  kdelibs-bin   4:4.0.0-1  executables for all KDE 4 core app
ii  kdelibs5-data 4:4.0.0-1  core shared data for all KDE 4 app
ii  libasound21.0.15-3   ALSA library
ii  libaspell15   0.60.5-1   GNU Aspell spell-checker runtime l
ii  libbz2-1.01.0.3-7high-quality block-sorting file co
ii  libc6 2.7-5  GNU C Library: Shared libraries
ii  libenchant1c2a1.3.0-5a wrapper library for various spel
ii  libfam0   2.7.0-13   Client library to control the FAM 
ii  libgcc1   1:4.2.2-4  GCC support library
ii  libice6   2:1.0.4-1  X11 Inter-Client Exchange library
ii  libjasper11.900.1-3  The JasPer JPEG-2000 runtime libra
ii  libjpeg62 6b-14  The Independent JPEG Group's JPEG 
ii  libkrb53  1.6.dfsg.3~beta1-2 MIT Kerberos runtime libraries
ii  libopenexr2ldbl   1.2.2-4.4  runtime files for the OpenEXR imag
ii  libpcre3  7.3-2  Perl 5 Compatible Regular Expressi
ii  libphonon44:4.0.0-1  cross-platform multimedia framewor
ii  libpng12-01.2.15~beta5-3 PNG library - runtime
ii  libqt4-core   4.3.3-2Qt 4 core non-GUI functionality ru
ii  libqt4-gui4.3.3-2Qt 4 core GUI functionality runtim
ii  libqt4-qt3support 4.3.3-2Qt 3 compatibility library for Qt 
ii  libsm62:1.0.3-1+b1   X11 Session Management library
ii  libsoprano4   1.99~rc2-1 Qt4 interface to RDF storage
ii  libssl0.9.8   0.9.8g-3   SSL shared libraries
ii  libstdc++64.2.2-4The GNU Standard C++ Library v3
ii  libstreamanalyzer00.5.7-1streamanalyzer library for Strigi 
ii  libungif4g4.1.4-5shared library for GIF images
ii  libx11-6  2:1.0.3-7  X11 client-side library
ii  libxcursor1   1:1.1.9-1  X cursor management library
ii  libxfixes31:4.0.3-2  X11 miscellaneous 'fixes' extensio
ii  libxml2   2.6.30.dfsg-3  GNOME XML library
ii  libxrender1   1:0.9.4-1  X Rendering Extension client libra
ii  libxslt1.11.1.22-1   XSLT processing library - runtime 
ii  libxtst6  2:1.0.3-1  X11 Testing -- Resource extension 
ii  shared-mime-info  0.22-2 FreeDesktop.org shared MIME databa
ii  xauth 1:1.0.2-2  X authentication utility
ii  zlib1g1:1.2.3.3.dfsg-8   compression library - runtime

Versions of packages kdelibs5 recommends:
ii  hal   0.5.10-5   Hardware Abstraction Layer
ii  pmount0.9.17-1   mount removable devices as normal 

-- no debconf information



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



Bug#459153: cups: Recommend printconf

2008-01-04 Thread Marc Fargas
Package: cupsys
Version: 1.3.5-1
Severity: wishlist
File: cups

Hi,
For newbies, or even normal users plugging a printer to the usb port
and seeing it magically appear on the printer list is **nice**.

To get this you need to install printconf (after finding the
package!)

To improve the user experience in Debian systems, could cupsys
Recommend printconf so newbies get their printers magically added?

Cheers,
Marc


-- System Information:
Debian Release: lenny/sid
  APT prefers testing
  APT policy: (900, 'testing'), (300, 'unstable'), (150, 'experimental'), (100, 
'stable')
Architecture: i386 (i686)

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

Versions of packages cupsys depends on:
ii  adduser3.105 add and remove users and groups
ii  cupsys-common  1.3.5-1   Common UNIX Printing System(tm) - 
ii  debconf [debconf-2 1.5.17Debian configuration management sy
ii  ghostscript [gs-es 8.61.dfsg.1~svn8187-3 The GPL Ghostscript PostScript/PDF
ii  gs-esp 8.61.dfsg.1~svn8187-3 Transitional package
ii  libavahi-compat-li 0.6.21-4  Avahi Apple Bonjour compatibility 
ii  libc6  2.7-5 GNU C Library: Shared libraries
ii  libcupsimage2  1.3.5-1   Common UNIX Printing System(tm) - 
ii  libcupsys2 1.3.5-1   Common UNIX Printing System(tm) - 
ii  libdbus-1-31.1.2-1   simple interprocess messaging syst
ii  libgnutls132.0.4-1   the GNU TLS library - runtime libr
ii  libkrb53   1.6.dfsg.3~beta1-2MIT Kerberos runtime libraries
ii  libldap2   2.1.30.dfsg-13.5  OpenLDAP libraries
ii  libpam0g   0.99.7.1-5Pluggable Authentication Modules l
ii  libpaper1  1.1.23library for handling paper charact
ii  libslp11.2.1-6.2 OpenSLP libraries
ii  lsb-base   3.1-24Linux Standard Base 3.1 init scrip
ii  perl-modules   5.8.8-12  Core Perl modules
ii  procps 1:3.2.7-5 /proc file system utilities
ii  ssl-cert   1.0.14Simple debconf wrapper for openssl
ii  xpdf-utils [popple 3.02-1.3  Portable Document Format (PDF) sui

Versions of packages cupsys recommends:
pn  avahi-utils   none (no description available)
ii  cupsys-client 1.3.5-1Common UNIX Printing System(tm) - 
ii  foomatic-filters  3.0.2-20061031-1.2 linuxprinting.org printer support 
ii  smbclient 3.0.28-1   a LanManager-like simple client fo

-- debconf information:
  cupsys/raw-print: true
  cupsys/backend: ipp, lpd, parallel, scsi, serial, socket, usb, snmp, dnssd



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



Bug#453123: Upgrade fails if snmpd is running

2007-11-27 Thread Marc Fargas
Package: snmpd
Version: 5.4.1~dfsg-4
Severity: important

Hi,
I just upgraded snmpd on a few servers to 5.4.1 (to get rid of the xen errors)
and all of them failed miserably on Seeting up snmpd

Setting up snmpd (5.4.1~dfsg-4) ...
[... questions about config files ... ]

Installing new version of config file /etc/snmp/snmpd.conf ...
Starting network management services:invoke-rc.d: initscript snmpd, action 
start failed.
dpkg: error processing snmpd (--configure):
 subprocess post-installation script returned error exit status 1

On all the boxes the problem was the same: snmpd was running when dpkg 
configured it.
I had to manually stop snmpd and dpkg --configure -a:

# /etc/init.d/snmpd stop
Stopping network management services: snmpd snmptrapd.
# dpkg --configure -a
Setting up snmpd (5.4.1~dfsg-4) ...
Starting network management services: snmpd.

Shouldn't the package itself stop snmpd before trying to start it? I think it 
happened with older
versions also but I'm now sure.

Cheers,
Marc

-- System Information:
Debian Release: lenny/sid
  APT prefers testing
  APT policy: (900, 'testing'), (300, 'unstable'), (150, 'experimental'), (100, 
'stable')
Architecture: i386 (i686)

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



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



Bug#453124: snmpd: Missing (or not in an intuitive place) README.agentx

2007-11-27 Thread Marc Fargas
Package: snmpd
Version: 5.4.1~dfsg-4
Severity: minor

Hi there,
In /etc/snmp/snmpd.conf around line 403 it reads:

[...]
Please see the file README.agentx ...
[...]

But in /usr/share/doc/snmpd/ there's no README.agentx ;(

It is installed in libsnmp15 though, but not very intuitive to findout
(I used find to find it). Maybe you could ship README.agentx also with snmpd
or change the default snmpd.conf to tell where the file can be found ;)

Cheers,
Marc


-- System Information:
Debian Release: lenny/sid
  APT prefers testing
  APT policy: (900, 'testing'), (300, 'unstable'), (150, 'experimental'), (100, 
'stable')
Architecture: i386 (i686)

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



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



Bug#449271: rtorrent: Specify minimum libxmlrpc-c3 version

2007-11-04 Thread Marc Fargas
Package: rtorrent
Version: 0.7.8-1
Severity: normal

Hi,
I just upgraded my rtorrent to 0.7.8-1 but it failed to load...

 rtorrent: error while loading shared libraries: libxmlrpc_server.so.3: cannot 
 open shared object file: No such file or directory

I run a mixed system, mostly etch with somethings from lenny, which means that 
the version of libxmlrpc-c3 I have is the one from etch (0.9.10-4)
and rtorrent needs something higher, the one from lenny: 1.06.18-1 works. So 
maybe rtorrent should Depend on atleast this version of lixmlrpc-c3
so it works! 

cheers,
Marc

-- System Information:
Debian Release: 4.0
  APT prefers stable
  APT policy: (900, 'stable'), (700, 'testing'), (300, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.21-2-686
Locale: LANG=es_ES.UTF-8, LC_CTYPE=es_ES.UTF-8 (charmap=UTF-8)

Versions of packages rtorrent depends on:
ii  libc6 2.6.1-1+b1 GNU C Library: Shared libraries
ii  libcurl3  7.17.0-1   Multi-protocol file transfer libra
ii  libgcc1   1:4.2.2-3  GCC support library
ii  libidn11  0.6.5-1GNU libidn library, implementation
ii  libkrb53  1.6.dfsg.3~beta1-2 MIT Kerberos runtime libraries
ii  libldap2  2.1.30-13.3OpenLDAP libraries
ii  libncursesw5  5.6+20071013-1 Shared libraries for terminal hand
ii  libsigc++-2.0-0c2a2.0.17-2   type-safe Signal Framework for C++
ii  libssh2-1 0.17-1 SSH2 client-side library
ii  libssl0.9.8   0.9.8g-1   SSL shared libraries
ii  libstdc++64.2.2-3The GNU Standard C++ Library v3
ii  libtorrent10  0.11.8-1   a C++ BitTorrent library
ii  libxmlrpc-c3  1.06.18-1  A lightweight RPC library based on
ii  zlib1g1:1.2.3.3.dfsg-6   compression library - runtime

rtorrent recommends no packages.

-- no debconf information


-- System Information:
Debian Release: 4.0
  APT prefers stable
  APT policy: (900, 'stable'), (700, 'testing'), (300, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.21-2-686
Locale: LANG=es_ES.UTF-8, LC_CTYPE=es_ES.UTF-8 (charmap=UTF-8)

Versions of packages rtorrent depends on:
ii  libc6 2.6.1-1+b1 GNU C Library: Shared libraries
ii  libcurl3  7.17.0-1   Multi-protocol file transfer libra
ii  libgcc1   1:4.2.2-3  GCC support library
ii  libidn11  0.6.5-1GNU libidn library, implementation
ii  libkrb53  1.6.dfsg.3~beta1-2 MIT Kerberos runtime libraries
ii  libldap2  2.1.30-13.3OpenLDAP libraries
ii  libncursesw5  5.6+20071013-1 Shared libraries for terminal hand
ii  libsigc++-2.0-0c2a2.0.17-2   type-safe Signal Framework for C++
ii  libssh2-1 0.17-1 SSH2 client-side library
ii  libssl0.9.8   0.9.8g-1   SSL shared libraries
ii  libstdc++64.2.2-3The GNU Standard C++ Library v3
ii  libtorrent10  0.11.8-1   a C++ BitTorrent library
ii  libxmlrpc-c3  1.06.18-1  A lightweight RPC library based on
ii  zlib1g1:1.2.3.3.dfsg-6   compression library - runtime

rtorrent recommends no packages.

-- no debconf information



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



Bug#405868: totem: Isn't it Flash?

2007-10-23 Thread Marc Fargas
Package: totem
Followup-For: Bug #405868

Hi,
I just tried to reproduce this bug with my laptop so I went to the website
linked in the bugreport and clicked on Watch Video.

There's a nice popup, and the video plays just fine. But to my unexperienced
eye the video seems to be a Flash video, not a RealPlayer one so, is really
this a Totem bug?

Anyway, the video plays fine being realplayer, flash or whatever it is (but
I'd say it's just Flash).


Cheers,
Marc


-- System Information:
Debian Release: lenny/sid
  APT prefers testing
  APT policy: (900, 'testing'), (300, 'unstable'), (150, 'experimental'), (100, 
'stable')
Architecture: i386 (i686)

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

Versions of packages totem depends on:
ii  totem-gstreamer   2.20.0-3   A simple media player for the Gnom

totem recommends no packages.

-- no debconf information



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



Bug#446715: qonk: The error is in the symbolic link

2007-10-15 Thread Marc Fargas
Package: qonk
Version: 0.3.0-1
Followup-For: Bug #446715

Hi, 
The symbolic link is:
lrwxrwxrwx 1 root root   52 2007-10-15 23:05 font.ttf -
../../fonts/truetype/ttf-bitstream-vera/VeraMono.ttf

Which means that it is **relative** to /usr/share/games/qonk that makes
it necessary to 'cd' there before running qonk.

Maybe the symbolic link should be made absolute to /usr/share/fonts/

Cheers,
Marc


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

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

Versions of packages qonk depends on:
ii  libc6 2.6.1-1+b1 GNU C Library: Shared libraries
ii  libgcc1   1:4.2.1-4  GCC support library
ii  libsdl-gfx1.2-4   2.0.13-3   drawing and graphical effects exte
ii  libsdl-image1.2   1.2.6-1image loading library for Simple D
ii  libsdl-ttf2.0-0   2.0.9-1ttf library for Simple DirectMedia
ii  libsdl1.2debian   1.2.11-9   Simple DirectMedia Layer
ii  libstdc++64.2.1-4The GNU Standard C++ Library v3
ii  ttf-bitstream-vera1.10-7 The Bitstream Vera family of free 

qonk recommends no packages.

-- no debconf information



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



Bug#444876: bcfg2: Strange behaviour with cron jobs

2007-10-01 Thread Marc Fargas
Package: bcfg2
Version: 0.9.4-1
Severity: normal

Hi,
I have bcfg2 cron job enabled as hourly but it's never run, I did it
by hand and got this:

apolo:/etc# /usr/lib/bcfg2/bcfg2-cron
Usage: /usr/lib/bcfg2/bcfg2-cron [--daily|--hourly]

Ok, seems fine.

apolo:/etc# /usr/lib/bcfg2/bcfg2-cron --hourly
Bcfg2 takes no arguments, only options
-v enable verbose output
-e enable extra entry detailed output
-f configspecconfigure from a file rather than querying
the server

???

Cheers,
Marc



-- System Information:
Debian Release: 4.0
  APT prefers stable
  APT policy: (900, 'stable'), (300, 'testing')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18-4-xen-686
Locale: LANG=es_ES.UTF-8, LC_CTYPE=es_ES.UTF-8 (charmap=UTF-8)

Versions of packages bcfg2 depends on:
ii  debsums   2.0.30 Verify installed package files aga
ii  lsb-base  3.1-23.1   Linux Standard Base 3.1 init scrip
ii  python2.4.4-2An interactive high-level object-o
ii  python-apt0.6.19 Python interface to libapt-pkg
ii  python-central0.5.12 register and build utility for Pyt
ii  python-lxml   1.1.1-1pythonic binding for the libxml2 a
ii  ucf   2.0020 Update Configuration File: preserv

bcfg2 recommends no packages.

-- no debconf information



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



Bug#444876: Maybe this solves the problem

2007-10-01 Thread Marc Fargas
On my computers, line 34 of /usr/lib/bcfg2/bcfg2-cron reads:

${BCFG2_BIN} ${BCFG2_OPTIONS} ${BCFG2_EXTRA_OPTIONS}}

There's an extra } at the end. Leaving it as:

${BCFG2_BIN} ${BCFG2_OPTIONS} ${BCFG2_EXTRA_OPTIONS}

solved the problem.

Hope this helps,
Marc


signature.asc
Description: Esta parte del mensaje está firmada	digitalmente


Bug#444121: bugs.debian.org: Acknowledgement mail could include link to web interface

2007-09-26 Thread Marc Fargas
Package: bugs.debian.org
Severity: wishlist

Hi,
For people that send a bug report by the very first time when they receive the
acknowledgement mail they are provided with ways extend the bug report and
even close it. But they're not told two things:

- You will receive any follow-up messages to yours.
- You can check the status of this bug report and any following comments
  on the bugs.debian.org website:
http://bugs.debian.org/$your_bugno

At least the second one could be added to the acknowledgement template, that
would tell the user that bug reports do not fall on a black hole but that
they're public and that he/she can always see how the bug is.

Just 0.02 ;)
Marc


-- System Information:
Debian Release: lenny/sid
  APT prefers testing
  APT policy: (900, 'testing'), (300, 'unstable'), (150, 'experimental'), (100, 
'stable')
Architecture: i386 (i686)

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



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



Bug#444121: bugs.debian.org: Acknowledgement mail could include link to web interface

2007-09-26 Thread Marc Fargas
Sorry for any inconvenience, I didn't spot #9596 (I checked
bugs.debian.org package not debbugs) ;(

Cheers,
Marc

El mié, 26-09-2007 a las 02:36 -0700, Don Armstrong escribió:
 reassign 444121 debbugs
 forcemerge 9596 444121
 thanks
 
 On Wed, 26 Sep 2007, Marc Fargas wrote:
  For people that send a bug report by the very first time when they receive 
  the
  acknowledgement mail they are provided with ways extend the bug report and
  even close it. But they're not told two things:
  
  - You will receive any follow-up messages to yours.
 
 This isn't true, actually. [Though fixing this is in my todo list.]
 
  - You can check the status of this bug report and any following comments
on the bugs.debian.org website:
  http://bugs.debian.org/$your_bugno
 
 And this bug has already been filed; merging them together. (Though it
 is a good idea.)
 
 
 Don Armstrong
 





Bug#444041: libgtkhtml3.14-19: Conflicts gtkhtml3.14 (3.14-3-1)

2007-09-25 Thread Marc Fargas
Package: libgtkhtml3.14-19
Version: 3.16.0-1
Severity: normal

Hi, updating libgtkhtml3.14-19 to 3.16.0-1 does not force the update of
gtkhtml3.14 to 3.16.0-1 but the latest libgtkhtml and the older gtkhtml
(3.14.3-1) provide the same file so libgtkhtml3.14-19 cannot be updated unless
you update/remote gtkhtml.


- BEGIN CUT -
Preparando para reemplazar libgtkhtml3.14-19 3.14.3-1 (usando
.../libgtkhtml3.14-19_3.16.0-1_i386.deb) ...
Desempaquetando el reemplazo de libgtkhtml3.14-19 ...
dpkg: error al procesar
/var/cache/apt/archives/libgtkhtml3.14-19_3.16.0-1_i386.deb (--unpack):
 intentando sobreescribir `/usr/share/locale/bn/LC_MESSAGES/gtkhtml-3.14.mo',
 que está también en el paquete gtkhtml3.14
 dpkg-deb: el subproceso paste fue terminado por la señal (Tubería rota)
 Preparando para reemplazar gtkhtml3.14 3.14.3-1 (usando
 .../gtkhtml3.14_3.16.0-1_i386.deb) ...
 Desempaquetando el reemplazo de gtkhtml3.14 ...
- END CUT -


-- System Information:
Debian Release: lenny/sid
  APT prefers testing
  APT policy: (900, 'testing'), (300, 'unstable'), (150, 'experimental'), (100, 
'stable')
Architecture: i386 (i686)

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

Versions of packages libgtkhtml3.14-19 depends on:
ii  libart-2.0-2   2.3.19-3  Library of functions for 2D graphi
ii  libatk1.0-01.20.0-1  The ATK accessibility toolkit
ii  libbonobo2-0   2.18.0-2  Bonobo CORBA interfaces library
ii  libbonoboui2-0 2.18.0-5  The Bonobo UI library
ii  libc6  2.6.1-1+b1GNU C Library: Shared libraries
ii  libcairo2  1.4.10-1  The Cairo 2D vector graphics libra
ii  libfontconfig1 2.4.2-1.2 generic font configuration library
ii  libgail-common 1.18.0-2  GNOME Accessibility Implementation
ii  libgail18  1.18.0-2  GNOME Accessibility Implementation
ii  libgconf2-42.18.0.1-3GNOME configuration database syste
ii  libglade2-01:2.6.2-1 library to load .glade files at ru
ii  libglib2.0-0   2.14.0-2  The GLib library of C routines
ii  libgnome2-02.18.0-4  The GNOME 2 library - runtime file
ii  libgnomecanvas2-0  2.14.0-3  A powerful object-oriented display
ii  libgnomeui-0   2.18.1-2  The GNOME 2 libraries (User Interf
ii  libgnomevfs2-0 1:2.18.1-2GNOME Virtual File System (runtime
ii  libgtk2.0-02.12.0-2  The GTK+ graphical user interface 
ii  libice62:1.0.4-1 X11 Inter-Client Exchange library
ii  liborbit2  1:2.14.7-0.1  libraries for ORBit2 - a CORBA ORB
ii  libpango1.0-0  1.18.2-1  Layout and rendering of internatio
ii  libpopt0   1.10-3lib for parsing cmdline parameters
ii  libsm6 2:1.0.3-1+b1  X11 Session Management library
ii  libx11-6   2:1.0.3-7 X11 client-side library
ii  libxcomposite1 1:0.3.2-1+b1  X11 Composite extension library
ii  libxcursor11:1.1.9-1 X cursor management library
ii  libxdamage11:1.1.1-3 X11 damaged region extension libra
ii  libxext6   1:1.0.3-2 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   1:1.0.2-1 X11 Xinerama extension library
ii  libxml22.6.30.dfsg-2 GNOME XML library
ii  libxrandr2 2:1.2.2-1 X11 RandR extension library
ii  libxrender11:0.9.3-1 X Rendering Extension client libra

libgtkhtml3.14-19 recommends no packages.

-- no debconf information



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



Bug#428579: pygtk: Please consider taking python-gtk2-doc on your behalf

2007-06-12 Thread Marc Fargas
Package: pygtk
Severity: wishlist

Hi,
The packages python-gtk2-doc (which one could think These are the docs for
the python-gtk2 package) are a bit outdated and the average user (like me)
won't notice it until he/she spots the date on the docs (Yes, I didn't look at
the version numbers as I thought both packages came from the same mantainer).

So it'd be nice if the documentation package could be updated to match the
pygtk version available on Debian. And there's no easier way than taking the
package on you behalf if the current mantainer wants to. Or you could NMU (or
whatever this is called) the package to keep it a big more up-to-date. (The
latest wishlist bug on the package is 115 days old ;( )

I tagged this as wishlist as it's a wish, but if the documentation package
cannot be keeped in sync with the released versions of pygtk it should **at
least** state so like python-gtk2-tutorial does in its description:

 This document is a work in progress. Please look for
 updates on http://www.pygtk.org.

If you cannot/don't want to take care of the documentation, please reassign
this bug or open a new one agains the documentation package with the
appropiate priority so it states it's not-up-to-date status on a visible
place for lames like me!

thanks,
Marc


-- System Information:
Debian Release: lenny/sid
  APT prefers testing
  APT policy: (900, 'testing'), (300, 'unstable'), (150, 'experimental'), (100, 
'stable')
Architecture: i386 (i686)

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


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



Bug#428579: closed by Josselin Mouette [EMAIL PROTECTED] (Bug#428579: fixed in pygtk 2.10.4-3)

2007-06-12 Thread Marc Fargas
WOW!
I never saw a wish made true so fast!

Thanks a lot,
Marc

El mar, 12-06-2007 a las 19:54 +, Debian Bug Tracking System
escribió:
 This is an automatic notification regarding your Bug report
 #428579: pygtk: Please consider taking python-gtk2-doc on your behalf,
 which was filed against the pygtk package.
 
 It has been closed by Josselin Mouette [EMAIL PROTECTED].
 
 Their explanation is attached below.  If this explanation is
 unsatisfactory and you have not received a better one in a separate
 message then please contact Josselin Mouette [EMAIL PROTECTED] by replying
 to this email.
 
 Debian bug tracking system administrator
 (administrator, Debian Bugs database)
 
 mensaje de correo electrónico adjunto
  - Mensaje reenviado 
  De: Josselin Mouette [EMAIL PROTECTED]
  Para: [EMAIL PROTECTED]
  Asunto: Bug#428579: fixed in pygtk 2.10.4-3
  Fecha: Tue, 12 Jun 2007 19:47:07 +
  
  Source: pygtk
  Source-Version: 2.10.4-3
  
  We believe that the bug you reported is fixed in the latest version of
  pygtk, which is due to be installed in the Debian FTP archive:
  
  pygtk_2.10.4-3.diff.gz
to pool/main/p/pygtk/pygtk_2.10.4-3.diff.gz
  pygtk_2.10.4-3.dsc
to pool/main/p/pygtk/pygtk_2.10.4-3.dsc
  python-glade2_2.10.4-3_amd64.deb
to pool/main/p/pygtk/python-glade2_2.10.4-3_amd64.deb
  python-gtk2-dev_2.10.4-3_all.deb
to pool/main/p/pygtk/python-gtk2-dev_2.10.4-3_all.deb
  python-gtk2-doc_2.10.4-3_all.deb
to pool/main/p/pygtk/python-gtk2-doc_2.10.4-3_all.deb
  python-gtk2_2.10.4-3_amd64.deb
to pool/main/p/pygtk/python-gtk2_2.10.4-3_amd64.deb
  
  
  
  A summary of the changes between this version and the previous one is
  attached.
  
  Thank you for reporting the bug, which will now be closed.  If you
  have further comments please address them to [EMAIL PROTECTED],
  and the maintainer will reopen the bug report if appropriate.
  
  Debian distribution maintenance software
  pp.
  Josselin Mouette [EMAIL PROTECTED] (supplier of updated pygtk package)
  
  (This message was generated automatically at their request; if you
  believe that there is a problem with it please contact the archive
  administrators by mailing [EMAIL PROTECTED])
  
  
  -BEGIN PGP SIGNED MESSAGE-
  Hash: SHA1
  
  Format: 1.7
  Date: Tue, 12 Jun 2007 21:21:57 +0200
  Source: pygtk
  Binary: python-glade2 python-gtk2 python-gtk2-dev python-gtk2-doc
  Architecture: source all amd64
  Version: 2.10.4-3
  Distribution: unstable
  Urgency: low
  Maintainer: Sebastien Bacher [EMAIL PROTECTED]
  Changed-By: Josselin Mouette [EMAIL PROTECTED]
  Description: 
   python-glade2 - GTK+ bindings: Glade support
   python-gtk2 - Python bindings for the GTK+ widget set
   python-gtk2-dev - GTK+ bindings: devel files
   python-gtk2-doc - Python bindings for the GTK+ widget set - documentation
  Closes: 428579
  Changes: 
   pygtk (2.10.4-3) unstable; urgency=low
   .
 * Split the documentation in the python-gtk2-doc package as it is
   really large. Incidentally closes: #428579.
 * python:Version - python:Versions.
 * Use source:Version and binary:Version.
 * Fix X[SB]-Python-Version mess.
  Files: 
   c1ad95a2f0913f1db53f66107b5a888e 1175 python optional pygtk_2.10.4-3.dsc
   b78208a791fed29694af6b790258ee67 14555 python optional 
  pygtk_2.10.4-3.diff.gz
   9136485e8e96fc957aa4612da6225b92 195994 python optional 
  python-gtk2-dev_2.10.4-3_all.deb
   e28633b847f8aef1c2a439c2ce59c445 1242074 doc optional 
  python-gtk2-doc_2.10.4-3_all.deb
   81e655bd76e3ad4ffb4218e77692f43e 1646518 python optional 
  python-gtk2_2.10.4-3_amd64.deb
   d66b512177671e5b6e7bedb427294d29 40054 python optional 
  python-glade2_2.10.4-3_amd64.deb
  
  -BEGIN PGP SIGNATURE-
  Version: GnuPG v1.4.6 (GNU/Linux)
  
  iD8DBQFGbvOhrSla4ddfhTMRAogyAKCFzCvj99EJUQQYiRwwhl6oxzpskwCfRgWC
  1OTh9Zl/UexRXV7c4QT/Oa8=
  =6JSf
  -END PGP SIGNATURE-
  


signature.asc
Description: Esta parte del mensaje está firmada	digitalmente


Bug#424884: bcfg2-server: Please include create-debian-pkglist.py

2007-05-17 Thread Marc Fargas

Package: bcfg2-server
Version: 0.8.6.1-1.1etch1
Severity: wishlist

Hi,
I'm having my first experiences with bcfg2 and with the hasle of
configuring it I saw this script:
  
http://trac.mcs.anl.gov/projects/bcfg2/browser/trunk/bcfg2/tools/create-debian-pkglist.py
With some others on the same folder, I read something about a
bcfg2-scripts package but it doesn't
seem to be around yet. So small scripts like this one that would make
life easier when using bcfg2
with Debian would be nice to have, at least on
/usr/share/doc/bcfg2-server/examples ;)

Cheers,
Marc

PS: And thanks for packaging bcfg2, it's really nice once you figure
out howto configure it! ;)

-- 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.18-4-xen-686
Locale: LANG=es_ES.UTF-8, LC_CTYPE=es_ES.UTF-8 (charmap=UTF-8)

Versions of packages bcfg2-server depends on:
ii  bcfg2   0.8.6.1-1.1etch1 Configuration management client
ii  gamin   0.1.8-2  File and directory monitoring syst
ii  libxml2-utils   2.6.27.dfsg-1XML utilities
ii  lsb-base3.1-23.1 Linux Standard Base 3.1 init scrip
ii  python  2.4.4-2  An interactive high-level object-o
ii  python-central  0.5.12   register and build utility for Pyt
ii  python-cheetah  2.0~rc7-1text-based template engine and Pyt
ii  python-gamin0.1.8-2  Python binding for the gamin clien
ii  python-lxml 1.1.1-1  pythonic binding for the libxml2 a
ii  python-pyopenssl0.6-2.3  Python wrapper around the OpenSSL
ii  ucf 2.0020   Update Configuration File: preserv

bcfg2-server recommends no packages.

-- no debconf information


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



Bug#423980: bcfg2-server: Need Dependency on openssl

2007-05-17 Thread Marc Fargas

Well as bcfg2 is python based I hope that when it reaches lenny I can
just grab the package from there and dpkg -i it on an etch box :)

On 5/17/07, Sami Haahtinen [EMAIL PROTECTED] wrote:

at the moment there is just one version of bcfg2 in debian (i've been a
bit too busy elsewhere to update the package to match the upstream).


Np., better late than never :


You might want to look at the upstream package anyway, there are quite a
few changes since the debian package was frozen. Things like importing
configuration from clients to the repository through the bcfg2 client
itself.


Uhm.. that sound really nice! :)


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



Bug#423980: bcfg2-server: Need Dependency on openssl

2007-05-15 Thread Marc Fargas
Package: bcfg2-server
Severity: normal

Hi,
When you run bcfg2-admin init, one of the things it does is create a SSL
certificate. Without this certificate you **can't** use bcfg2. The matter is
that bcfg2 needs the package openssl to be installed to create the
certificate.

Maybe this bug should be Sverity: important, as bcfg2-server is unusable
without such certificate, but I'll leave as normal so you can decide ;)

Cheers,
Marc.

PS: The affected box does not have reportbug, but it is an Etch ;)


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



Bug#423330: metacity: Missing Build-Depends

2007-05-11 Thread Marc Fargas
Package: metacity
Version: 1:2.18.2-3
Severity: minor

Hi, 
I just tried to recompile metacity with the compositor manager to try it out
(as #395124 is still open) and It seems that apt-get build-dep metacity
missed some things.

To get ./configure working I needed to install:
 libgconf2-dev 
 libstartup-notification0-dev
 libxml-parser-perl

(and the compositor dependencies).

Not sure if those dependencies are only for the compositor o  for metacity
itself so I set severity minor.

Cheers,
Marc

-- System Information:
Debian Release: lenny/sid
  APT prefers testing
  APT policy: (900, 'testing'), (300, 'unstable'), (150, 'experimental'), (100, 
'stable')
Architecture: i386 (i686)

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

Versions of packages metacity depends on:
ii  libatk1.0-0  1.18.0-2The ATK accessibility toolkit
ii  libc62.5-7   GNU C Library: Shared libraries
ii  libcairo21.4.6-1 The Cairo 2D vector graphics libra
ii  libgconf2-4  2.16.1-1GNOME configuration database syste
ii  libglib2.0-0 2.12.12-1   The GLib library of C routines
ii  libgtk2.0-0  2.10.12-1   The GTK+ graphical user interface 
ii  libice6  1:1.0.3-2   X11 Inter-Client Exchange library
ii  libmetacity0 1:2.18.2-3  library of lightweight GTK2 based 
ii  libpango1.0-01.16.4-1Layout and rendering of internatio
ii  libsm6   1:1.0.2-2   X11 Session Management library
ii  libstartup-notification0 0.9-1   library for program launch feedbac
ii  libx11-6 2:1.0.3-7   X11 client-side library
ii  libxcursor1  1.1.7-4 X cursor management library
ii  libxext6 1:1.0.1-2   X11 miscellaneous extension librar
ii  libxinerama1 1:1.0.1-4.1 X11 Xinerama extension library
ii  libxrandr2   2:1.2.1-1   X11 RandR extension library
ii  libxrender1  1:0.9.1-3   X Rendering Extension client libra
ii  metacity-common  1:2.18.2-3  Shared files of lightweight GTK2 b

metacity recommends no packages.

-- no debconf information


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



Bug#423330: metacity: Missing Build-Depends

2007-05-11 Thread Marc Fargas

Uhm... you're right I just saw it, then my apt must be screwed up
because it didn't install those packages. It installed the others but
not those hence I supposed they were missing, my fault for not
checking debian/control .

Feel free to close this bug, I'll try to figure out why apt didn't
install the packages :)

Sorry for any inconveniences,
Marc.

On 5/11/07, Josselin Mouette [EMAIL PROTECTED] wrote:

Le vendredi 11 mai 2007 à 09:58 +0200, Marc Fargas a écrit :
 Package: metacity
 Version: 1:2.18.2-3
 Severity: minor

 Hi,
 I just tried to recompile metacity with the compositor manager to try it out
 (as #395124 is still open) and It seems that apt-get build-dep metacity
 missed some things.

 To get ./configure working I needed to install:
  libgconf2-dev
  libstartup-notification0-dev
  libxml-parser-perl

I don't get it. These 3 packages are already in metacity's
build-dependencies.

--
 .''`.
: :' :  We are debian.org. Lower your prices, surrender your code.
`. `'   We will add your hardware and software distinctiveness to
  `-our own. Resistance is futile.




Bug#418963: Add an option perhaps ?

2007-04-23 Thread Marc Fargas

Maybe there could be an option on /etc/default or something like that to
silence those messages? redirecting freshclam to /dev/null isn't a sane
option as you wouldn't notice other problems.

So an option somewhere to disable those warnings would be a nice feature :)


Bug#410161: For the record

2007-04-23 Thread Marc Fargas

Just for the record,
If you arrived here looking for a newer version of this plugin (or in some
other part of opensync) take a look at but #404856 (
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=404856 ) as plugins can't
be updated until opensync itself is (and is unlikely to happen before 0.30).


Bug#419513: vde2: Wrong information on README.Debian

2007-04-16 Thread Marc Fargas
Package: vde2
Version: 2.1.6-1
Severity: minor


Hi,
The README.Debian file shipped with vde2 says:

  3. Add the user to vde-net group:

  # adduser user vde-net

When you install vde2 the group is called vde2-net :) (At least on my
system!!)

Cheers,

Marc


-- System Information:
Debian Release: lenny/sid
  APT prefers testing
  APT policy: (900, 'testing'), (300, 'unstable'), (150, 'experimental'), (100, 
'stable')
Architecture: i386 (i686)

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

Versions of packages vde2 depends on:
ii  adduser   3.102  Add and remove users and groups
ii  libc6 2.5-1  GNU C Library: Shared libraries
ii  libvdeplug2   2.1.6-1Virtual Distributed Ethernet - Plu

Versions of packages vde2 recommends:
pn  daemonnone (no description available)

-- no debconf information


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



Bug#419513: [Pkg-vsquare-devel] Bug#419513: vde2: Wrong information on README.Debian

2007-04-16 Thread Marc Fargas

You're welcome, the Universal OS needs to be well documented anyway
hehehhehehe :)))

On 4/16/07, Filippo Giunchedi [EMAIL PROTECTED] wrote:


On Mon, Apr 16, 2007 at 11:55:04AM +0200, Marc Fargas wrote:
 Package: vde2
 Version: 2.1.6-1
 Severity: minor


 Hi,
 The README.Debian file shipped with vde2 says:

   3. Add the user to vde-net group:

   # adduser user vde-net

 When you install vde2 the group is called vde2-net :) (At least on my
 system!!)

indeed, the group is vde2-net, fixed in svn

thanks for your contribution,
filippo
--
Filippo Giunchedi - http://esaurito.net
PGP key: 0x6B79D401
random quote follows:

I find television very educating. Every time somebody turns on the
set, I go into the other room and read a book.
-- Groucho Marx

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

iD8DBQFGI3ShABzeamt51AERAiAMAJwJdhjl3aRsBXtIqybcDQXPXvIyMQCfXF2T
hhTfLM8uBiKLF9B2n9OHTgo=
=Ykb1
-END PGP SIGNATURE-




Bug#418512: python-ooolib: Wrong spelling in package description

2007-04-10 Thread Marc Fargas
Package: python-ooolib
Version: 0.0.8-1
Severity: minor

Package description says:
Description: Python module for creating OpenDocument documents 
(sp.sheet/text)
ooolib is a python module to be used to create simple OpenDocunent
speadsheet and text documents.
.
In contrast to libooolib-perl this supports ODT but *not* the
old format.
Python-Version: = 2.4

On line 3, shouldn't it read spReadsheet ?

Cheers,
Marc

-- System Information:
Debian Release: 4.0
  APT prefers testing
  APT policy: (900, 'testing'), (300, 'unstable'), (100, 'stable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18-4-686
Locale: LANG=es_ES.UTF-8, LC_CTYPE=es_ES.UTF-8 (charmap=UTF-8)


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



Bug#407521: Security fix for Django auth

2007-01-19 Thread Marc Fargas

Thanks for the explanation, maybe in 500~1000 more I'll know how to
tag them properly!! hehehe.

By the way, thanks a lot for packaging django for debian

On 1/19/07, Raphael Hertzog [EMAIL PROTECTED] wrote:

On Fri, 19 Jan 2007, Marc Fargas wrote:
 Hi Raphael,

Hi Marc,

 I just read at http://www.us.debian.org/Bugs/Developer.en.html#severities
 and took the one that made more sense to me, there the only severity
 that talks about security is critical so I took that. I'm not a
 bug vodoo, I was just trying to give a hand marking bugs.

Thanks for trying! However there's always some judgment to be made. The
initial bug submitter didn't speak of security risk even though it's clear
that it is a security risk in principle.

So before being definitive on the issue, one always need to know how often
we're exposed to the security risk. And while this information was not
available, you shouldn't have increased the severity.

Anyway, I've prepared updates that I'll upload to unstable and we'll see
with further discussion if the package needs to go to etch or not.

 Anyway, it's always good to learn a bit more on every matter, so
 thanks for the lesson and accept my appologies for messing up your bug
 reports.

Accepted of course. :)

Cheers,
--
Raphaël Hertzog

Premier livre français sur Debian GNU/Linux :
http://www.ouaza.com/livre/admin-debian/



Bug#407489: python-django: Should also Recommends: python-psycopg2

2007-01-19 Thread Marc Fargas

Didn't see 403761 so surely you can close wontfix and wait until
upstream renames, if it does so.

About all the other requests:

From django-developers:
http://groups.google.com/group/django-developers/browse_frm/thread/2c373f07be38d451/c10c1e2351747c08?lnk=gstq=psycopg2rnum=5hl=en#c10c1e2351747c08
A discussion about why psycopg1 is still recommended and examples that
v1 fails somewhere, as v2 also does (in other places!)

From: 
http://groups-beta.google.com/group/django-users/browse_thread/thread/0a27ec05cce9b353
[..]
The only reason to prefer psycopg over
psycopg2 is historical - the API for psycopg2 wasn't finalized until
quite recently, so we didn't recommend using it. However, the psycopg
backend has a few problems with unicode, so I suspect the official
line may soon switch to 'use v2' (probably before Django goes v1.0).
[..]

From the psycopg site (http://initd.org/tracker/psycopg):
PsycopgOne -- the original psycopg 1.1.x (now obsoleted by psycopg 2)

Anyway, feel free to close as wontfix so people don't complain for
another Recommends!

Cheers,
Marc.

On 1/19/07, Raphael Hertzog [EMAIL PROTECTED] wrote:

Hello Marc,

On Thu, 18 Jan 2007, Marc Fargas wrote:
 Package: python-django
 Version: 0.95-2
 Severity: normal

 python-psycopg has given some trouble in the past with Django, and it's
 often recommended to use python-psycopg2 instead.

References ? pointers ? facts ? I never used postgresql with django so I
have no idea.

 The package could Recommend both and let the user decide.

See #403761, people are complaining that we recommend too much already.
I'd rather recommend only one python binding per database :-))

If the psycopg2 is the best one, then upstream should rename the db
interface postgresql_psycopg2 to postgresql and postgresql to
postgresql_psycopg1 ... :-)

Cheers,
--
Raphaël Hertzog

Premier livre français sur Debian GNU/Linux :
http://www.ouaza.com/livre/admin-debian/



Bug#407519: Security fix for Django i18n

2007-01-19 Thread Marc Fargas

Hi Raphael,
I just read at http://www.us.debian.org/Bugs/Developer.en.html#severities
and took the one that made more sense to me, there the only severity
that talks about security is critical so I took that. I'm not a
bug vodoo, I was just trying to give a hand marking bugs.

Anyway, it's always good to learn a bit more on every matter, so
thanks for the lesson and accept my appologies for messing up your bug
reports.

Sincerelly,
Marc.


On 1/19/07, Raphael Hertzog [EMAIL PROTECTED] wrote:

severity 407519 important
thanks

On Fri, 19 Jan 2007, Marc Fargas wrote:
 severity critical
 tags +patch
 thanks

 The current Django versión in Debian has a security hole, so this bug
 should be critical, and the patch recommended by the submitter should be
 applied and brought to etch, I think.

If I understand the bug correctly, the filename of the .po must be
modified to include commands with backticks... in other word, the
malicious intent is easily recognisable.

I expect that in 99,9% of the time, the person starting compile-messages
just copied/installed the .po files where required... and he certainly
would notice that the filename look very strange compared to the other
files !

So I really don't agree with severity critical... which brings to the
point that you shouldn't change the severity without justifying your
statement. has a security hole is a bit short without explaining a
likely case of security breach. In particular, when upstream has not
considered the risk serious enough to warrant a point release...

Of course, I'd like to hear opinions from others.

Regards,
--
Raphaël Hertzog

Premier livre français sur Debian GNU/Linux :
http://www.ouaza.com/livre/admin-debian/



Bug#407521: Security fix for Django auth

2007-01-19 Thread Marc Fargas

Hi Raphael,
I just read at http://www.us.debian.org/Bugs/Developer.en.html#severities
and took the one that made more sense to me, there the only severity
that talks about security is critical so I took that. I'm not a
bug vodoo, I was just trying to give a hand marking bugs.

Anyway, it's always good to learn a bit more on every matter, so
thanks for the lesson and accept my appologies for messing up your bug
reports.

Sincerelly,
Marc.

On 1/19/07, Raphael Hertzog [EMAIL PROTECTED] wrote:

severity 407521 important
thanks

On Fri, 19 Jan 2007, Marc Fargas wrote:
 severity critical
 tags +patch
 thanks

 The current Django versión in Debian has a security hole, so this bug
 should be critical, and the patch recommended by the submitter should be
 applied and brought to etch, I think.

Same story than before. Nobody has explained under which circumstances
this bug constitutes a security risk. And you're inflating the severity
without proper justification.

The upstream ticket http://code.djangoproject.com/ticket/2702 doesn't
mention the possible security risk. James has mentionned the problem to be
that one could be granted rights that have been granted to a previous HTTP
request.

If such a behaviour was happening all the time, I bet it would be a very
important bug... but since I see no mention of that in the upstream
ticket, I believe it probably happens seldom. Has there been discussion of
this problem somewhere else ?

Can you tell us under which circumstances this can happen ?

In the mean time, I'm downgrading. Depending on the answer to the question
above, I may agree to change it back to serious. Opinions are welcome of
course.

Regards,
--
Raphaël Hertzog

Premier livre français sur Debian GNU/Linux :
http://www.ouaza.com/livre/admin-debian/



Bug#407521: Security fix for Django auth

2007-01-19 Thread Marc Fargas

severity critical
tags +patch
thanks

The current Django versión in Debian has a security hole, so this bug should
be critical, and the patch recommended by the submitter should be applied
and brought to etch, I think.

Cheers,
Marc.


Bug#407519: Security fix for Django i18n

2007-01-19 Thread Marc Fargas

severity critical
tags +patch
thanks

The current Django versión in Debian has a security hole, so this bug should
be critical, and the patch recommended by the submitter should be applied
and brought to etch, I think.

Cheers,
Marc.


Bug#407489: python-django: Should also Recommends: python-psycopg2

2007-01-18 Thread Marc Fargas
Package: python-django
Version: 0.95-2
Severity: normal

python-psycopg has given some trouble in the past with Django, and it's
often recommended to use python-psycopg2 instead. The package could
Recommend both and let the user decide.

Cheers,
Marc


-- System Information:
Debian Release: 4.0
  APT prefers testing
  APT policy: (900, 'testing'), (300, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18-3-686
Locale: LANG=es_ES.UTF-8, LC_CTYPE=es_ES.UTF-8 (charmap=UTF-8)


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



Bug#407118: trac: Should suggest php5-cli

2007-01-16 Thread Marc Fargas
Package: trac
Version: 0.10.3-1
Severity: normal

My logs are full of this:
Jan 16 10:04:38 devel Trac[__init__] WARNING: HTML preview using
trac.mimeview.php.PHPRenderer object at 0xb5caeeac failed (Running
(php -sn) failed: 127, sh: php: command not found .) Traceback (most
recent call last):   File
/var/lib/python-support/python2.4/trac/mimeview/api.py, line 460, in
render for line in result:   File
/var/lib/python-support/python2.4/trac/mimeview/php.py, line 89, in
render raise Exception(msg) Exception: Running (php -sn) failed:
127, sh: php: command not found .
Hence, trac should suggest/recommend php5-cli to avoid those errors ;)

Atte,
Marc.


-- System Information:
Debian Release: 4.0
  APT prefers testing
  APT policy: (900, 'testing'), (300, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18-2-xen-686
Locale: LANG=es_ES.UTF-8, LC_CTYPE=es_ES.UTF-8 (charmap=UTF-8)

Versions of packages trac depends on:
ii  python  2.4.4-2  An interactive high-level object-o
ii  python-clearsilver  0.10.3-4.1   python bindings for clearsilver
ii  python-psycopg2 2.0.5.1-5Python module for PostgreSQL
ii  python-pysqlite22.3.2-1  python interface to SQLite 3
ii  python-subversion   1.4.2dfsg1-2 Python bindings for Subversion
ii  python-support  0.5.6automated rebuilding support for p
ii  subversion  1.4.2dfsg1-2 Advanced version control system

Versions of packages trac recommends:
ii  apache2   2.2.3-3.2  Next generation, scalable, extenda
ii  apache2-mpm-prefork [httpd]   2.2.3-3.2  Traditional model for Apache HTTPD
ii  python-setuptools 0.6c3-3Python Distutils Enhancements

-- no debconf information


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



Bug#407050: apertium: Missing depends on lttoolbox

2007-01-15 Thread Marc Fargas
Package: apertium
Version: 1.0.3-1
Severity: grave
Justification: renders package unusable

If you don't install lttoolbox:
Afrodita:/tmp$ apertium-translator  /usr/share/apertium-es-ca ca-es 

/usr/bin/apertium-translator: line 114: /usr/bin/lt-proc: No existe el
fichero o el directorio
/usr/bin/apertium-translator: line 118: /usr/bin/lt-proc: No existe el
fichero o el directorio
/usr/bin/apertium-translator: line 119: /usr/bin/lt-proc: No existe el
fichero o el directorio
Afrodita:/tmp$
with it:
Afrodita:/tmp$ apertium-translator  /usr/share/apertium-es-ca ca-es 

[translation result stripped]
Afrodita:/tmp$

So apertium, or the ca-es pair is missing this Depends ;)




-- System Information:
Debian Release: 4.0
  APT prefers testing
  APT policy: (900, 'testing'), (300, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18-3-686
Locale: LANG=es_ES.UTF-8, LC_CTYPE=es_ES.UTF-8 (charmap=UTF-8)

Versions of packages apertium depends on:
ii  libapertium-1.0-0  1.0.3-1   Shared library for Apertium
ii  libc6  2.3.6.ds1-8   GNU C Library: Shared libraries
ii  libgcc11:4.1.1-19GCC support library
ii  liblttoolbox-1.0-0 1.0.3-1   Shared library for the lttoolbox
ii  libstdc++6 4.1.1-19  The GNU Standard C++ Library v3
ii  libxml22.6.27.dfsg-1 GNOME XML library

apertium recommends no packages.

-- no debconf information


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



Bug#405799: python-matplotlib depends on python-numpy-ext

2007-01-07 Thread Marc Fargas

Uhm.. Then the matplotlib in unstable should depends on python-numpy!
(haven't checked if it does now, atleast not in etch).

But, anyway, it's RC right now for etch ;)

Cheers,
Marc.

On 1/7/07, Mark Hymers [EMAIL PROTECTED] wrote:


On Sat, 06, Jan, 2007 at 12:08:21PM -0600, David Moreno Garza spoke thus..
  You install python-numpy then (which was not required by matplotlib!!)
  and you are still missing something... you need: python-numpy-ext
which
  depends on python-numpy.
 
  So python-matplotlib should depend on python-numpy-ext .

Depending on whether python-numpy 1:1.0.1-1 is going to migrate from
unstable-testing before the release, this may not need to be fixed
(python-numpy now contains the former python-numpy-ext contents and
python-numpy-ext is an empty transitional package).

Mark

--
Mark Hymers mark at hymers dot org dot uk

The relationship between journalists and politicians has often been
likened
to that between a dog and a lamp post, although I have never worked out
who
is supposed to be which.
 Nick Assinder, BBC Online Political Correspondent


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

iD8DBQFFoP4SNIW6CNDsByMRApjsAKCy64ZoRuVC+WfbRqazBbNd1qaXfgCfVjb6
3ssDEhUKnvKd22jYS4kgE6A=
=OG4S
-END PGP SIGNATURE-





Bug#405799: python-matplotlib depends on python-numpy-ext

2007-01-06 Thread Marc Fargas
Package: python-matplotlib
Version: 0.87.5-2.2
Severity: grave
Justification: renders package unusable

If you install python-matplotlib:
In [1]: from pylab import *
---
exceptions.ImportError   Traceback (most
recent call last)
ImportError: No module named numpy

You install python-numpy then (which was not required by matplotlib!!)
and you are still missing something... you need: python-numpy-ext which
depends on python-numpy.

So python-matplotlib should depend on python-numpy-ext .

Cheers,
Marc.


-- System Information:
Debian Release: 4.0
  APT prefers testing
  APT policy: (900, 'testing'), (300, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18-3-686
Locale: LANG=es_ES.UTF-8, LC_CTYPE=es_ES.UTF-8 (charmap=UTF-8)

Versions of packages python-matplotlib depends on:
ii  dvipng1.9-1  convert PNG graphics from DVI file
ii  python2.4.4-2An interactive high-level object-o
ii  python-central0.5.12 register and build utility for Pyt
ii  python-dateutil   1.1-1  powerful extensions to the standar
ii  python-dev2.4.4-2Header files and a static library 
ii  python-gtk2   2.8.6-8Python bindings for the GTK+ widge
ii  python-matplotlib-data0.87.5-2.2 python based plotting system (data
ii  python-numeric24.2-7 Numerical (matrix-oriented) Mathem
ii  python-numeric-ext24.2-7 Extension modules for Numeric Pyth
ii  python-numpy  1:1.0rc1-1 Numerical Python adds a fast array
ii  python-qt33.16-1.2   Qt3 bindings for Python
ii  python-tz 2006g-1Python version of the Olson timezo

python-matplotlib recommends no packages.

-- no debconf information


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



  1   2   >