Bug#1055694: klibc-utils: Patch to fix cp warning

2023-12-07 Thread Mario Izquierdo (mariodebian)
Package: klibc-utils
Version: 2.0.13-2
Followup-For: Bug #1055694

Dear Maintainer,

I found a small typo in initramfs-tools klibc-utils script:

# diff -ur klibc-utils /usr/share/initramfs-tools/hooks/klibc-utils
--- klibc-utils 2023-12-07 10:35:52.738502916 +0100
+++ /usr/share/initramfs-tools/hooks/klibc-utils2023-12-07 
10:36:02.686695427 +0100
@@ -27,7 +27,7 @@
;;
*)
# Don't install commands that already exist in /bin or /sbin
-   if ! [ -e "${DESTDIR}/sbin/$command" ]; then
+   if ! [ -e "${DESTDIR}/bin/$command" ]; then
cp -pnL "$src" "${DESTDIR}/bin"
fi
;;


With this change "if" works ok detecting file exists and don't try to overwrite.

Greetings


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

Kernel: Linux 6.5.0-4-amd64 (SMP w/8 CPU threads; PREEMPT)
Kernel taint flags: TAINT_PROPRIETARY_MODULE, TAINT_OOT_MODULE, 
TAINT_UNSIGNED_MODULE
Locale: LANG=es_ES.UTF-8, LC_CTYPE=es_ES.UTF-8 (charmap=UTF-8), LANGUAGE not set
Shell: /bin/sh linked to /usr/bin/dash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled

Versions of packages klibc-utils depends on:
ii  libklibc  2.0.13-2

klibc-utils recommends no packages.

klibc-utils suggests no packages.

-- no debconf information



Bug#598920: josm: JOSM ask for update, bad version compare

2010-10-03 Thread Mario Izquierdo (mariodebian)
Package: josm
Version: 0.0.svn3514-1
Severity: normal
Tags: patch


JOSM ask for update when start:

You should update!
2010-09-14 (3529)
For the tags in the properties dialogue, you can directly open the 
corresponding wiki-page in a browser.
2010-09-03 (o22964)
The WMS plugin supports GetCapabilities requests.
2010-08-13 (3431)
The new Purge command can clean up data layers.
2010-07-27 (3388)
New tagging preset search dialog.
2010-07-20 (3378)
JOSM can now recover an intermediate state of your editing in case of a crash.
JOSM now requires JAVA version 6. Users of JAVA version 5 need to use older 
JOSM versions.

Active version '3514 SVN' should be updated! The current stable snapshot is 
3514 and 3580 is the unstable development version


I think that version should be '3514' (without SVN string).

I suggest to apply the attached patch (quilt)


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

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

Versions of packages josm depends on:
ii  libgettext-commons-java 0.9.6-2  Java classes for internationalizat
ii  libmetadata-extractor-j 2.3.1+dfsg-2 JPEG metadata extraction framework
ii  liboauth-signpost-java  1.2.1.1-1simple OAuth message signing for J
ii  openjdk-6-jre   6b18-1.8.1-2 OpenJDK Java runtime, using Hotspo
ii  openstreetmap-map-icons 1:0.0.svn20783-1 Collection of map icons (classic s
ii  sun-java6-jre   6.21-1   Sun Java(TM) Runtime Environment (

Versions of packages josm recommends:
pn  josm-plugins  none (no description available)

josm suggests no packages.

-- no debconf information
Index: josm-0.0.svn3514/build.xml
===
--- josm-0.0.svn3514.orig/build.xml	2010-10-03 01:47:57.0 +0200
+++ josm-0.0.svn3514/build.xml	2010-10-03 01:48:10.0 +0200
@@ -81,7 +81,7 @@
 			!-- add attribute excludes=**/*BZip2*,**/*Bzip2* to create a non-bzip2 supporting jar --
 			manifest
 attribute name=Main-class value=JOSM /
-attribute name=Main-Version value=${version.entry.commit.revision} SVN/
+attribute name=Main-Version value=${version.entry.commit.revision}/
 attribute name=Main-Date value=${version.entry.commit.date}/
 attribute name=Debian-Release value=${debian.version}/
 attribute name=Class-Path value=/usr/share/java/gettext-commons.jar /usr/share/java/metadata-extractor.jar /usr/share/java/signpost-core.jar/
Index: josm-0.0.svn3514/src/org/openstreetmap/josm/data/Version.java
===
--- josm-0.0.svn3514.orig/src/org/openstreetmap/josm/data/Version.java	2010-10-03 01:50:13.0 +0200
+++ josm-0.0.svn3514/src/org/openstreetmap/josm/data/Version.java	2010-10-03 01:50:28.0 +0200
@@ -206,9 +206,9 @@
 public String getAgentString() {
 int v = getVersion();
 String s = (v == JOSM_UNKNOWN_VERSION) ? UNKNOWN : Integer.toString(v);
-if (isLocalBuild()  v != JOSM_UNKNOWN_VERSION) {
+/*if (isLocalBuild()  v != JOSM_UNKNOWN_VERSION) {
 s +=  SVN;
-}
+}*/
 return JOSM/1.5 (+ s+ +LanguageInfo.getJOSMLocaleCode()+);
 }
 }


Bug#597504: Remote TimedLogin disabled in gdm3

2010-09-20 Thread Mario Izquierdo (mariodebian)
Package: gdm3
Version: 2.30.5-2
Severity: normal
Tags: patch


TimedLogin key only works on local $DISPLAY.

In gdm = 2.20 we can use something like this:

TimedLogin=/etc/gdm/gdm-autologin-script|

This script based on $DISPLAY for example returns a username and GDM
do autologin stuff (local and remote).

In new GDM, daemon/gdm-xdmcp-display.c hardcode empty user and disable
autologin.

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


I attach a patch that enable it again.

The patch can be better if read security/AllowRemoteAutoLogin key
(deprecated in newest GDM).




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

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

Versions of packages gdm3 depends on:
ii  adduser 3.112+nmu1   add and remove users and groups
ii  debconf [debconf-2.0]   1.5.35   Debian configuration management sy
ii  gconf2  2.28.1-4 GNOME configuration database syste
ii  gnome-session [x-sessio 2.30.2-2 The GNOME Session Manager - GNOME 
ii  gnome-session-bin   2.30.2-2 The GNOME Session Manager - Minima
ii  gnome-terminal [x-termi 2.30.2-1 The GNOME terminal emulator applic
ii  kde-window-manager [x-w 4:4.4.5-3the K window manager (KWin)
ii  konsole [x-terminal-emu 4:4.4.5-1X terminal emulator
ii  libart-2.0-22.3.21-1 Library of functions for 2D graphi
ii  libatk1.0-0 1.30.0-1 The ATK accessibility toolkit
ii  libattr11:2.4.44-2   Extended attribute shared library
ii  libaudit0   1.7.13-1+b2  Dynamic library for security audit
ii  libbonobo2-02.24.3-1 Bonobo CORBA interfaces library
ii  libbonoboui2-0  2.24.3-1 The Bonobo UI library
ii  libc6   2.11.2-6 Embedded GNU C Library: Shared lib
ii  libcairo2   1.8.10-6 The Cairo 2D vector graphics libra
ii  libcanberra-gtk00.24-1   Gtk+ helper for playing widget eve
ii  libcanberra00.24-1   a simple abstract interface for pl
ii  libdbus-1-3 1.2.24-3 simple interprocess messaging syst
ii  libdbus-glib-1-20.88-2   simple interprocess messaging syst
ii  libfontconfig1  2.8.0-2.1generic font configuration library
ii  libfreetype62.4.2-2  FreeType 2 font engine, shared lib
ii  libgconf2-4 2.28.1-4 GNOME configuration database syste
ii  libglib2.0-02.24.2-1 The GLib library of C routines
ii  libgnome2-0 2.30.0-1 The GNOME library - runtime files
ii  libgnomecanvas2-0   2.30.1-1 A powerful object-oriented display
ii  libgtk2.0-0 2.20.1-1+b1  The GTK+ graphical user interface 
ii  liborbit2   1:2.14.18-0.1libraries for ORBit2 - a CORBA ORB
ii  libpam-modules  1.1.1-6  Pluggable Authentication Modules f
ii  libpam-runtime  1.1.1-6  Runtime support for the PAM librar
ii  libpam0g1.1.1-6  Pluggable Authentication Modules l
ii  libpanel-applet2-0  2.30.2-2 library for GNOME Panel applets
ii  libpango1.0-0   1.28.1-1 Layout and rendering of internatio
ii  libpolkit-gobject-1-0   0.96-3   PolicyKit Authorization API
ii  libpolkit-gtk-1-0   0.96-2   PolicyKit GTK+ API
ii  libpopt01.16-1   lib for parsing cmdline parameters
ii  librsvg2-common 2.26.3-1 SAX-based renderer library for SVG
ii  libselinux1 2.0.96-1 SELinux runtime shared libraries
ii  libupower-glib1 0.9.5-1+b1   abstraction for power management -
ii  libwrap07.6.q-19 Wietse Venema's TCP wrappers libra
ii  libx11-62:1.3.3-3X11 client-side library
ii  libxau6 1:1.0.6-1X11 authorisation library
ii  libxdmcp6   1:1.0.3-2.1  X11 Display Manager Control Protoc
ii  libxklavier16   5.0-2X Keyboard Extension high-level AP
ii  libxml2 2.7.7.dfsg-4 GNOME XML library
ii  lsb-base3.2-24   Linux Standard Base 3.2 init scrip
ii  metacity [x-window-mana 1:2.30.1-2   lightweight GTK+ window manager
ii  policykit-1-gnome   0.96-2   GNOME authentication agent for Pol
ii  terminator [x-terminal- 0.95-1   multiple GNOME terminals in one wi
ii  tilda [x-terminal-emula 0.09.6-2 terminal emulator with first perso
ii  twm [x-window-manager]  1:1.0.4-2Tab window manager
ii  upower  0.9.5-1+b1   abstraction for power management
ii  xfce4-session [x-sessio 4.6.2-2  Xfce4 Session Manager
ii  

Bug#597064: gdesklets: Incorrect patch in debian/patches from #561645

2010-09-16 Thread Mario Izquierdo (mariodebian)
Package: gdesklets
Version: 0.36.1-4
Severity: normal
Tags: patch


The bug #561645 was closed with a incorrect patch.

The patch in debian/patches dir create a new file in debian/patches and
don't edit utils/ErrorFormatter.py file.

It seems to be a debdiff patch, not a debian/patch file.


$ fakeroot debian/rules apply-patches

$ ls debian/patches/
01_python2.6.patch  01_python2.6.patch.level-1.log  10_python2.6.patch

$ cat debian/patches/10_python2.6.patch
Description: Fix exception when running under python2.6. Patch from Ubuntu, 
commited upstream.
Origin: https://bugs.launchpad.net/gdesklets/+bug/344079
Forwarded: 
http://bazaar.launchpad.net/~gdesklets-core-team/gdesklets/0.3x/revision/118
diff -Nur -x '*.orig' -x '*~' gdesklets-0.36.1-2ubuntu1/utils/ErrorFormatter.py 
gdesklets-0.36.1-2ubuntu1.new/utils/ErrorFormatter.py
--- gdesklets-0.36.1-2ubuntu1/utils/ErrorFormatter.py   2009-03-25 
11:53:35.0 -0400
+++ gdesklets-0.36.1-2ubuntu1.new/utils/ErrorFormatter.py   2009-05-12 
13:38:39.0 -0400
@@ -113,9 +113,9 @@
 # give us an absolute path.
 #
 _old_imp = __import__
-def _new_imp(name, globs = {}, locls = {}, fromlist = []):
+def _new_imp(*args, **kwargs):
 
-module = _old_imp(name, globs, locls, fromlist)
+module = _old_imp(*args, **kwargs)
 # builtin modules have no __file__ attribute, so we have to check for it
 if (module):
 if (hasattr(module, __file__)):


$ grep _old_imp utils/ErrorFormatter.py 
_old_imp = __import__
module = _old_imp(name, globs, locls, fromlist)

Please re-add the correct patch


Greetings

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

Kernel: Linux 2.6.32-5-686 (SMP w/2 CPU cores)
Locale: LANG=es_ES.utf8, LC_CTYPE=es_ES.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash
Description: Fix exception when running under python2.6. Patch from Ubuntu, 
commited upstream.
Origin: https://bugs.launchpad.net/gdesklets/+bug/344079
Forwarded: 
http://bazaar.launchpad.net/~gdesklets-core-team/gdesklets/0.3x/revision/118
diff -Nur -x '*.orig' -x '*~' gdesklets-0.36.1-2ubuntu1/utils/ErrorFormatter.py 
gdesklets-0.36.1-2ubuntu1.new/utils/ErrorFormatter.py
--- gdesklets-0.36.1-2ubuntu1/utils/ErrorFormatter.py   2009-03-25 
11:53:35.0 -0400
+++ gdesklets-0.36.1-2ubuntu1.new/utils/ErrorFormatter.py   2009-05-12 
13:38:39.0 -0400
@@ -113,9 +113,9 @@
 # give us an absolute path.
 #
 _old_imp = __import__
-def _new_imp(name, globs = {}, locls = {}, fromlist = []):
+def _new_imp(*args, **kwargs):
 
-module = _old_imp(name, globs, locls, fromlist)
+module = _old_imp(*args, **kwargs)
 # builtin modules have no __file__ attribute, so we have to check for it
 if (module):
 if (hasattr(module, __file__)):


Bug#595800: net-tools: mii-tool generate a kernel crash

2010-09-06 Thread Mario Izquierdo (mariodebian)
Package: net-tools
Version: 1.60-23
Severity: normal


~ # mii-tool 
eth0: negotiated 100baseTx-FD, link ok
eth1: no link
eth2: no link

~ # dmesg | tail -30
[  193.941508] ADDRCONF(NETDEV_UP): eth1: link is not ready
[  194.027247] eth2:  setting half-duplex.
[  194.027458] ADDRCONF(NETDEV_UP): eth2: link is not ready
[  198.498557] apm: BIOS not found.
[  203.236017] eth0: no IPv6 routers present
[  476.798842] [ cut here ]
[  476.798854] WARNING: at 
/build/buildd-linux-2.6_2.6.32-21-i386-Ullf8h/linux-2.6-2.6.32/debian/build/source_i386_none/kernel/softirq.c:143
 _local_bh_enable_ip+0x33/0x6e()
[  476.798858] Hardware name:  
[  476.798860] Modules linked in: binfmt_misc fuse loop snd_intel8x0 
snd_ac97_codec ac97_bus snd_pcm_oss snd_mixer_oss snd_pcm radeon ttm 
drm_kms_helper snd_timer drm 
i2c_algo_bit snd soundcore i2c_i801 ns558 psmouse gameport i2c_core 
snd_page_alloc rng_core shpchp pcspkr serio_raw evdev parport_pc processor 
button parport pci_hotplug ext3 
jbd mbcache sg sr_mod sd_mod crc_t10dif cdrom ata_generic ata_piix uhci_hcd 
floppy 3c59x mii libata ehci_hcd thermal thermal_sys scsi_mod usbcore nls_base 
[last unloaded: 
scsi_wait_scan]
[  476.798921] Pid: 3767, comm: mii-tool Not tainted 2.6.32-5-686 #1
[  476.798924] Call Trace:
[  476.798932]  [c102ffd1] ? warn_slowpath_common+0x5e/0x8a
[  476.798936]  [c1030007] ? warn_slowpath_null+0xa/0xc
[  476.798940]  [c10352b7] ? _local_bh_enable_ip+0x33/0x6e
[  476.798949]  [f7f415eb] ? mdio_read+0xf4/0x110 [3c59x]
[  476.798955]  [f7f2c47a] ? generic_mii_ioctl+0x61/0xfa [mii]
[  476.798961]  [f7f436bf] ? vortex_ioctl+0x65/0xa4 [3c59x]
[  476.798966]  [f7f4365a] ? vortex_ioctl+0x0/0xa4 [3c59x]
[  476.798974]  [c11d9e2c] ? dev_ifsioc+0x25e/0x278
[  476.798978]  [c11da31a] ? dev_ioctl+0x4d4/0x5d6
[  476.798985]  [c1101ec2] ? security_sk_alloc+0xd/0xf
[  476.798990]  [c11cb448] ? sock_ioctl+0x0/0x1ee
[  476.798996]  [c10bcee4] ? vfs_ioctl+0x1c/0x5f
[  476.799000]  [c10bd478] ? do_vfs_ioctl+0x4aa/0x4e5
[  476.799004]  [c11cbb3b] ? sock_map_fd+0x46/0x50
[  476.799008]  [c11cc540] ? sys_socket+0x42/0x56
[  476.799013]  [c126e4e0] ? do_page_fault+0x2f1/0x307
[  476.799018]  [c10bd4f4] ? sys_ioctl+0x41/0x58
[  476.799023]  [c10030fb] ? sysenter_do_call+0x12/0x28
[  476.799026] ---[ end trace ba2cdd693f0f4446 ]---


The server have 3 network cards (only one have link)

~ # dmesg | grep eth
[6.416468] udev: renamed network interface eth1 to eth1-eth2
[6.417687] udev: renamed network interface eth2 to eth1
[6.467553] udev: renamed network interface eth1-eth2 to eth2
[  193.091097] eth0:  setting full-duplex.
[  193.941286] eth1:  setting half-duplex.
[  193.941508] ADDRCONF(NETDEV_UP): eth1: link is not ready
[  194.027247] eth2:  setting half-duplex.
[  194.027458] ADDRCONF(NETDEV_UP): eth2: link is not ready
[  203.236017] eth0: no IPv6 routers present

~ # lspci -nn| grep -i net
02:00.0 Ethernet controller [0200]: 3Com Corporation 3c905C-TX/TX-M [Tornado] 
[10b7:9200] (rev 78)
02:02.0 Ethernet controller [0200]: 3Com Corporation 3c905C-TX/TX-M [Tornado] 
[10b7:9200] (rev 74)
02:03.0 Ethernet controller [0200]: 3Com Corporation 3c905C-TX/TX-M [Tornado] 
[10b7:9200] (rev 74)



Greetings


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

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

Versions of packages net-tools depends on:
ii  libc6 2.11.2-5   Embedded GNU C Library: Shared lib

net-tools recommends no packages.

net-tools 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#579033: gdm3: [patch] initialize ss_len before use

2010-06-03 Thread Mario Izquierdo (mariodebian)
Package: gdm3
Version: 2.30.2-3
Severity: normal

I'm working on this bug.

Set net.ipv6.bindv6only = 1, no changes is set to 0.

Setting Debug/Enable=True I found that the call to XdmcpFill fails, 
with this line in syslog:

GdmXdmcpDisplayFactory: Could not create XDMCP buffer!

With this patch:

http://tcosproject.org/cgit/gdm3.git/tree/debian/patches/95_xdmcp_fill_fix.patch

XdmcpFill don't fail and remote session continue but all is IPV6:

GdmXdmcpDisplayFactory: Attempting to bind to host :: port 177
GdmXdmcpDisplayFactory: Starting to listen on XDMCP port
GdmXdmcpDisplayFactory: decode_packet: GIOCondition 1
GdmXdmcpDisplayFactory: Received opcode QUERY from client 
::8008:7f09:100:0%159346928 : 54488
GdmXdmcpDisplayFactory: Sending WILLING to ::8008:7f09:100:0%159346928
GdmXdmcpDisplayFactory: decode_packet: GIOCondition 1
Address family:2 (inet) hostname:(null) host:(null) port:(null) local:1 
loopback:1
Address family:2 (inet) hostname:(null) host:(null) port:(null) local:0 
loopback:0
GdmAddress: looking up hostname: thinkpad
family=2 sock_type=1 protocol=6 flags=0x2 canonname=localhost#012
family=2 sock_type=2 protocol=17 flags=0x2 canonname=(null)#012
family=2 sock_type=3 protocol=0 flags=0x2 canonname=(null)#012
family=2 sock_type=1 protocol=6 flags=0x2 canonname=(null)#012
family=2 sock_type=2 protocol=17 flags=0x2 canonname=(null)#012
family=2 sock_type=3 protocol=0 flags=0x2 canonname=(null)#012
family=2 sock_type=1 protocol=6 flags=0x2 canonname=(null)#012
family=2 sock_type=2 protocol=17 flags=0x2 canonname=(null)#012
family=2 sock_type=3 protocol=0 flags=0x2 canonname=(null)#012
Address family:10 (inet6) hostname:(null) host:(null) port:(null) local:0 
loopback:0

See here, hostname, host, port are NULL.


(willing repeat many times)

GdmXdmcpDisplayFactory: decode_packet: GIOCondition 1
GdmXdmcpDisplayFactory: Received opcode QUERY from client 
::8008:7f09:100:0%159346928 : 54488
GdmXdmcpDisplayFactory: Sending WILLING to ::8008:7f09:100:0%159346928

I try to setup a IPV6toIPV4 tunnel but XDMCP don't work. 
Wireshark only show this 2 connections: QUERY , WILLING.


I rebuild package with --enable-ipv6=no in debian/rules and works ok:

GdmXdmcpDisplayFactory: Attempting to bind to host 0.0.0.0 port 177
GdmXdmcpDisplayFactory: Starting to listen on XDMCP port
GdmXdmcpDisplayFactory: decode_packet: GIOCondition 1
GdmXdmcpDisplayFactory: Received opcode QUERY from client 192.168.0.3 : 36128
GdmXdmcpDisplayFactory: Sending WILLING to 192.168.0.3
GdmXdmcpDisplayFactory: decode_packet: GIOCondition 1
GdmXdmcpDisplayFactory: Received opcode REQUEST from client 192.168.0.3 : 36128
GdmXdmcpDisplayFactory: Got REQUEST from 192.168.0.3
GdmXdmcpDisplayFactory: xdmcp_pending=0, MaxPending=4, xdmcp_sessions=0, 
MaxSessions=16, ManufacturerID=
GdmXdmcpDisplayFactory: display_dispose_check (192.168.0.3:1)
GdmXdmcpDisplayFactory: Creating xdmcp display for 192.168.0.3:1
GdmXdmcpDisplayFactory: Host 192.168.0.3 not found
GdmXdmcpDisplayFactory: Sending authorization key for display 192.168.0.3:1
GdmXdmcpDisplayFactory: cookie len 16
GdmXdmcpDisplayFactory: Sending ACCEPT to 192.168.0.3 with SessionID=1094546431

In this patch:
   http://tcosproject.org/cgit/gdm3.git/tree/debian/patches/14_bindv6only.patch

A IPV6 socket is created if ENABLE_IPV6 and IPV6_V6ONLY are defined, but
in config.h.in there is only set/unset ENABLE_IPV6 and never IPV6_V6ONLY.
Where is defined IPV6_V6ONLY ?

I try to add IPV6_V6ONLY in relibtoolize:

http://tcosproject.org/cgit/gdm3.git/tree/debian/patches/90_relibtoolize.patch#n32486
http://tcosproject.org/cgit/gdm3.git/tree/debian/patches/90_relibtoolize.patch#n47612

But don't works.


Something in common/gdm-address.c is wrong converting IPV6 to IPV4.

In LAN networks XDMCP is very used and IPV6 must be optional, and 
leave user to enable it, in config file not in a compile flag.


KDM seems to work ok with IPV6 and IPV6_V6ONLY, why not GDM??



Greetings

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

Kernel: Linux 2.6.32-5-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 gdm3 depends on:
ii  adduser 3.112add and remove users and groups
ii  debconf [debconf-2.0]   1.5.32   Debian configuration management sy
ii  gconf2  2.28.1-3 GNOME configuration database syste
ii  gnome-session [x-sessio 2.30.0-1 The GNOME Session Manager - GNOME 
ii  gnome-session-bin   2.30.0-1 The GNOME Session Manager - Minima
ii  gnome-terminal [x-termi 2.30.1-1 The GNOME terminal emulator applic
ii  kde-window-manager [x-w 4:4.4.4-1the KDE 4 window manager (KWin)
ii  konsole [x-terminal-emu 4:4.4.4-1X terminal emulator for KDE 4
ii  libart-2.0-22.3.21-1 Library of functions for 2D graphi
ii  

Bug#579033: gdm3: XDMCP don't works in gdm3

2010-04-24 Thread Mario Izquierdo (mariodebian)
Package: gdm3
Version: 2.30.0-2
Severity: normal

I'm trying to connect with XDMCP protocol and this new version of GDM don't 
works.

In Ubuntu Lucid with same gdm 2.30 and the same settings, works ok.

Can try with Xephyr command :

$ Xephyr -query 127.0.0.1 :1 -screen 1024x768

I can see that gdm3 proccess is listening on UDP 177:

# netstat -tapun| grep gdm
udp6   0  0 :::177:::*  28084/gdm3

I have tried to disable bindv6only:

# echo 0  /proc/sys/net/ipv6/bindv6only

 with the same results.

Perhaps this can be related with renaming binaries and paths???

I will try to rebuild renaming package and paths to gdm.


Greetings

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

Kernel: Linux 2.6.32-3-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 gdm3 depends on:
ii  adduser 3.112add and remove users and groups
ii  debconf [debconf-2.0]   1.5.32   Debian configuration management sy
ii  gconf2  2.28.1-3 GNOME configuration database syste
ii  gnome-session [x-sessio 2.30.0-1 The GNOME Session Manager - GNOME 
ii  gnome-session-bin   2.30.0-1 The GNOME Session Manager - Minima
ii  gnome-terminal [x-termi 2.30.0-1 The GNOME terminal emulator applic
ii  kde-window-manager [x-w 4:4.3.4-5+b1 the KDE 4 window manager (KWin)
ii  konsole [x-terminal-emu 4:4.3.4-1X terminal emulator for KDE 4
ii  libart-2.0-22.3.20-2 Library of functions for 2D graphi
ii  libatk1.0-0 1.30.0-1 The ATK accessibility toolkit
ii  libattr11:2.4.44-1   Extended attribute shared library
ii  libaudit0   1.7.13-1+b1  Dynamic library for security audit
ii  libbonobo2-02.24.3-1 Bonobo CORBA interfaces library
ii  libbonoboui2-0  2.24.3-1 The Bonobo UI library
ii  libc6   2.10.2-6 Embedded GNU C Library: Shared lib
ii  libcairo2   1.8.10-4 The Cairo 2D vector graphics libra
ii  libcanberra-gtk00.22-1   Gtk+ helper for playing widget eve
ii  libcanberra00.22-1   a simple abstract interface for pl
ii  libdbus-1-3 1.2.24-1 simple interprocess messaging syst
ii  libdbus-glib-1-20.86-1   simple interprocess messaging syst
ii  libdevkit-power-gobject 1:0.9.2-1abstraction for power management -
ii  libfontconfig1  2.8.0-2  generic font configuration library
ii  libfreetype62.3.11-1 FreeType 2 font engine, shared lib
ii  libgconf2-4 2.28.1-3 GNOME configuration database syste
ii  libglib2.0-02.24.0-1 The GLib library of C routines
ii  libgnome2-0 2.30.0-1 The GNOME library - runtime files
ii  libgnomecanvas2-0   2.30.1-1 A powerful object-oriented display
ii  libgtk2.0-0 2.20.0-3 The GTK+ graphical user interface 
ii  liborbit2   1:2.14.18-0.1libraries for ORBit2 - a CORBA ORB
ii  libpam-modules  1.1.1-2  Pluggable Authentication Modules f
ii  libpam-runtime  1.1.1-2  Runtime support for the PAM librar
ii  libpam0g1.1.1-2  Pluggable Authentication Modules l
ii  libpanel-applet2-0  2.28.0-3 library for GNOME Panel applets
ii  libpango1.0-0   1.28.0-1 Layout and rendering of internatio
ii  libpolkit-gobject-1-0   0.96-2   PolicyKit Authorization API
ii  libpolkit-gtk-1-0   0.96-2   PolicyKit GTK+ API
ii  libpopt01.15-1   lib for parsing cmdline parameters
ii  librsvg2-common 2.26.2-1 SAX-based renderer library for SVG
ii  libselinux1 2.0.94-1 SELinux runtime shared libraries
ii  libwrap07.6.q-18 Wietse Venema's TCP wrappers libra
ii  libx11-62:1.3.3-3X11 client-side library
ii  libxau6 1:1.0.5-2X11 authorisation library
ii  libxdmcp6   1:1.0.3-2X11 Display Manager Control Protoc
ii  libxklavier16   5.0-2X Keyboard Extension high-level AP
ii  libxml2 2.7.7.dfsg-2 GNOME XML library
ii  lsb-base3.2-23.1 Linux Standard Base 3.2 init scrip
ii  metacity [x-window-mana 1:2.30.1-1   lightweight GTK+ window manager
ii  policykit-1-gnome   0.96-2   GNOME authentication agent for Pol
ii  terminator [x-terminal- 0.93-1   multiple GNOME terminals in one wi
ii  tilda [x-terminal-emula 0.09.6-2 terminal emulator with first perso
ii  twm [x-window-manager]  1:1.0.4-2Tab window manager
ii  upower  0.9.2-1  

Bug#576465: jclic: Incorrect detection of PulseAudio and remote DISPLAY

2010-04-04 Thread Mario Izquierdo (mariodebian)
Package: jclic
Version: 0.2.0.6-1
Severity: normal
Tags: patch

/usr/bin/jclic was patched in previous bug #465080 to detect 
remote display and PulseAudio sound server, but the method 
can be better, please accept this patch:

1.- $aux varname should be $JAVA and should be declared before using it.

2.- $DISPLAY can be :::192.x.x.x:0.0 (new GDM versions works with 
IPV6) and should split it with :0

3.- test can be done in the same if (not 2 different if)

4.- Use pactl stat to ping pulseaudio, in bug #573615 pulse developers
don't create /tmp/$USER-pulse folders anymore.

5.- pactl and padsp are in pulseaudio-utils package, 
can you add this to Suggests or Recomends??


Thanks for your work at Debian.
Greetings.


--- /usr/bin/jclic.orig 2010-04-04 23:23:29.0 +0200
+++ /usr/bin/jclic  2010-04-04 23:32:49.0 +0200
@@ -19,18 +19,21 @@
fi
 fi
 
-REMOTE_DISPLAY=$(echo $DISPLAY| awk -F : '{print $1}')
-if [ ${REMOTE_DISPLAY} !=  ]; then
-  if [ -x /usr/bin/padsp ]; then
- padsp -s $REMOTE_DISPLAY -n JClic -m JClic-stream $aux -cp $CLASSPATH 
-jar /usr/share/java/jclic.jar $@ /dev/null 
+export JAVA=${JAVA:=java}
+
+REMOTE_DISPLAY=$(echo $DISPLAY| awk -F :0 '{print $1}')
+if [ x${REMOTE_DISPLAY} != x ]  [ -x /usr/bin/padsp ]; then
+ padsp -s $REMOTE_DISPLAY -n JClic -m JClic-stream $JAVA -cp $CLASSPATH 
-jar /usr/share/java/jclic.jar $@ /dev/null 
  exit 0
-  fi
 fi
 
-export JAVA=${JAVA:=java}
 
 PULSE_AUDIO=
-if [ -d /tmp/${USER}-pulse/ ]; then
+# pulseaudio create in /tmp a dir with
+# random name /tmp/pulse-
+# see Debian bug #573615
+# use pactl stat in silent mode to ping pulseaudio server
+if [ -x /usr/bin/pactl ]  pactl stat /dev/null ; then
PULSE_AUDIO=padsp
 fi
 






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

Kernel: Linux 2.6.32-3-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 jclic depends on:
ii  openjdk-6-jre [java6-runtime 6b18~pre2-1 OpenJDK Java runtime, using Hotspo
ii  sun-java6-jre [java6-runtime 6.18-4  Sun Java(TM) Runtime Environment (

Versions of packages jclic recommends:
ii  iceweasel  3.5.8-1   Web browser based on Firefox
ii  libmysql-java  5.1.10+dfsg-2 Java database (JDBC) driver for My

Versions of packages jclic suggests:
ii  ttf-liberation 1.05.2.20091019-4 Fonts with the same metrics as Tim
ii  ttf-mscorefonts-instal 3.2   Installer for Microsoft TrueType c

-- 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#572976: live-helper: Can't build ISO with squashfs-tools package in packageslist

2010-03-07 Thread Mario Izquierdo (mariodebian)
Package: live-helper
Version: 2.0~a8-1
Severity: normal

I'm trying to make a Debian Live ISO of my thin client implementation: TCOS

My TCOS packages depends on squashfs-tools but squashfs-tools is removed 
after calling mksquashfs in lh scripts, and my packages (that depend on 
squashfs-tools) are removed too, leaving some packages in can autoremove 
state.

Please allow to not remove squashfs-tools if is installed before needing
it by live-helper scripts (/usr/share/live-helper/helpers/binary_rootfs)


Thanks for your work at Debian Live

Greetings

-- Package-specific info:

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

Kernel: Linux 2.6.32-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 live-helper depends on:
ii  cdebootstrap  0.5.5  Bootstrap a Debian system
ii  debootstrap   1.0.22 Bootstrap a basic Debian system

Versions of packages live-helper recommends:
ii  cpio  2.10-1 GNU cpio -- a program to manage ar
ii  gettext-base  0.17-10GNU Internationalization utilities

Versions of packages live-helper suggests:
ii  dosfstools 3.0.9-1   utilities for making and checking 
ii  fakeroot   1.14.4-1  Gives a fake root environment
ii  genisoimage9:1.1.10-1Creates ISO-9660 CD-ROM filesystem
ii  grub   0.97-59   GRand Unified Bootloader (dummy pa
pn  memtest86+ | memtest86 none(no description available)
ii  mtools 4.0.12-1  Tools for manipulating MSDOS files
pn  parted none(no description available)
ii  squashfs-tools 1:4.0-7   Tool to create and append to squas
ii  sudo   1.7.2p1-1.2   Provide limited super user privile
ii  syslinux   2:3.85+dfsg-1 utilities for the syslinux bootloa
pn  uuid-runtime   none(no description available)
pn  win32-loader   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#564692: Please, rebuild xserver-xorg-video-openchrome with new Xorg 1:7.5

2010-01-11 Thread Mario Izquierdo (mariodebian)
Package: xserver-xorg-video-openchrome
Version: 1:0.2.904+svn812-1
Severity: normal


With last update of xserver-xorg packages the openchrome driver has removed 
from my system:

==

Leyendo lista de paquetes... Hecho
Creando árbol de dependencias   
Leyendo la información de estado... Hecho
Calculando la actualización... Listo
Los siguientes paquetes se ELIMINARÁN:
  xserver-xorg-input-wacom xserver-xorg-video-geode xserver-xorg-video-glamo 
xserver-xorg-video-glide xserver-xorg-video-ivtv xserver-xorg-video-openchrome 
xserver-xorg-video-tga
Se actualizarán los siguientes paquetes:
  xserver-xorg xserver-xorg-core xserver-xorg-input-evdev 
xserver-xorg-input-kbd xserver-xorg-input-mouse xserver-xorg-input-synaptics 
xserver-xorg-input-void 
xserver-xorg-video-apm
  xserver-xorg-video-ark xserver-xorg-video-ati xserver-xorg-video-chips 
xserver-xorg-video-cirrus xserver-xorg-video-dummy xserver-xorg-video-fbdev 
xserver-xorg-video-glint
  xserver-xorg-video-i128 xserver-xorg-video-i740 xserver-xorg-video-intel 
xserver-xorg-video-mach64 xserver-xorg-video-mga xserver-xorg-video-neomagic 
xserver-xorg-video-nv
  xserver-xorg-video-r128 xserver-xorg-video-radeon xserver-xorg-video-radeonhd 
xserver-xorg-video-rendition xserver-xorg-video-s3 xserver-xorg-video-s3virge
  xserver-xorg-video-savage xserver-xorg-video-siliconmotion 
xserver-xorg-video-sis xserver-xorg-video-sisusb xserver-xorg-video-tdfx 
xserver-xorg-video-trident
  xserver-xorg-video-tseng xserver-xorg-video-v4l xserver-xorg-video-vesa 
xserver-xorg-video-vmware xserver-xorg-video-voodoo
39 actualizados, 0 se instalarán, 7 para eliminar y 2 no actualizados.
Necesito descargar 6307kB de archivos.
Se liberarán 1901kB después de esta operación.
¿Desea continuar [S/n]?

==

Rebuilding (without changes) seems to update depends of driver and openchrome 
can be used again.

(MY REBUILD VERSION)
Version: 1:0.2.904+svn812-1.1
Depends: libc6 (= 2.1.3), libdrm2 (= 2.3.1), libx11-6 (= 0), libxext6 (= 
0), libxv1, libxvmc1, xserver-xorg-core (= 2:1.6.99.900)


Version: 1:0.2.904+svn812-1
Depends: libc6 (= 2.1.3), libdrm2 (= 2.3.1), libx11-6, libxext6, libxv1, 
libxvmc1, xserver-xorg-core (= 2:1.6.2)


Greetings

--
mariodebian.com



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



Bug#562590: cdbs: python-module.mk file not found

2009-12-26 Thread Mario Izquierdo (mariodebian)
Package: cdbs
Version: 0.4.63
Severity: normal


In new version of CDBS I can't build python packages.

My debian/rules:


#!/usr/bin/make -f

DEB_PYTHON_SYSTEM=pysupport
include /usr/share/cdbs/1/rules/debhelper.mk
include /usr/share/cdbs/1/class/python-distutils.mk


$ fakeroot debian/rules clean
/usr/share/cdbs/1/class/python-distutils.mk:31: 
/usr/share/cdbs/1/class/python-module.mk: No such file or directory
make: *** No rule to make target `/usr/share/cdbs/1/class/python-module.mk'.  
Stop.


$ dpkg -L cdbs | grep python
/usr/share/cdbs/1/class/python-distutils.mk

$ grep include /usr/share/cdbs/1/class/python-distutils.mk
include $(_cdbs_rules_path)/buildcore.mk$(_cdbs_makefile_suffix)
include $(_cdbs_class_path)/python-module.mk$(_cdbs_makefile_suffix)


Where is python-module.mk?


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

Kernel: Linux 2.6.32-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 cdbs depends on:
ii  debhelper 7.4.10 helper programs for debian/rules

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

Versions of packages cdbs suggests:
ii  devscripts2.10.59scripts to make the life of a Debi
ii  doc-base  0.9.5  utilities to manage online documen

-- 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#548585: reprepro: MD5sums mismatch when including amd64 packages if source build arch all+any

2009-09-27 Thread Mario Izquierdo (mariodebian)
Package: reprepro
Version: 4.0.0-1
Severity: normal


I have a repo with i386/amd64/sources architectures.

If I build a package (for example) 'pkg' that generate:
  pkg-common_0.0.1_all.deb
  pkg-bin_0.0.1_i386.deb

and use reprepro to include changes, then build in amd64 pbuilder to generate:
  pkg-common_0.0.1_all.deb
  pkg-bin_0.0.1_amd64.deb

When I use reprepro, fails with a md5sum mismatch of pkg-common_0.0.1_all.deb
and only can include if change version to something like this:
  pkg-common_0.0.1~x64_all.deb
  pkg-bin_0.0.1~x64_amd64.deb

Then, only amd64 package is included.



Command line to include changes:

  reprepro --ask-passphrase -b . $arch -V -C main include unstable 
${pkg_changes_file}

$arch in i386 is empty
$arch in amd64='-A amd64'



Greetings

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

Kernel: Linux 2.6.30-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 reprepro depends on:
ii  libarchive12.6.2-1   Single library to read/write tar, 
ii  libbz2-1.0 1.0.5-3   high-quality block-sorting file co
ii  libc6  2.9-26GNU C Library: Shared libraries
ii  libdb4.6   4.6.21-14 Berkeley v4.6 Database Libraries [
ii  libgpg-error0  1.6-1 library for common error values an
ii  libgpgme11 1.2.0-1   GPGME - GnuPG Made Easy
ii  zlib1g 1:1.2.3.3.dfsg-15 compression library - runtime

Versions of packages reprepro recommends:
ii  apt   0.7.24 Advanced front-end for dpkg

Versions of packages reprepro suggests:
ii  gnupg-agent   2.0.13-1   GNU privacy guard - password agent
pn  inoticoming   none (no description available)
ii  lzma  4.43-14Compression method of 7z format in

-- 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#547789: debmirror: Can't mirror d-i files

2009-09-22 Thread Mario Izquierdo (mariodebian)
Package: debmirror
Version: 1:2.2
Severity: normal


My command line to mirror debian i386 (no source) is:

debmirror -a i386 --progress --ignore-release-gpg --getcontents --nosource\
   --verbose -d testing,stable,unstable\
   -s main,contrib,non-free,main/debian-installer \
   --di-dist=lenny --di-arch=i386 \
   --method=http -h ftp.debian.org /mirror/debian


Output:

Mirroring to /mirror/debian from http://ftp.debian.org/debian/
Arches: i386
Dists: testing,stable,unstable
Sections: main,contrib,non-free,main/debian-installer
D-I arches: i386
D-I dists: lenny
Pdiff mode: use
Will clean up AFTER mirroring.
Attempting to get lock, this might take 2 minutes before it fails.
Get Release files.
[0%] Getting: dists/testing/Release... ok
[0%] Getting: dists/testing/Release.gpg... ok
[0%] Getting: dists/stable/Release... ok
[0%] Getting: dists/stable/Release.gpg... ok
[0%] Getting: dists/unstable/Release... ok
[0%] Getting: dists/unstable/Release.gpg... ok
Checking validity of D-I dists.
Get Packages and Sources files and other miscellany.
Parse Packages and Sources files and add to the file list everything therein.
Download all files that we need to get (0 B).
Get Contents files.
Get Translation files.
Get package files.
Everything OK. Moving meta files.
Getting Debian Installer images.
Downloaded 270 kiB in 30s at 9 kiB/s.
Cleanup mirror.
unable to chdir(.temp/d-i): No such file or directory
WARNING: releasing 1 pending lock...



Greetings

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

Kernel: Linux 2.6.30-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 debmirror depends on:
ii  bzip2 1.0.5-3high-quality block-sorting file co
ii  libcompress-zlib-perl 2.021-1Transitional dummy package for Com
ii  libdigest-sha1-perl   2.12-1 NIST SHA-1 message digest algorith
ii  libio-compress-perl [libcompr 2.021-1IO::Compress modules
ii  liblockfile-simple-perl   0.207-1Simple advisory file locking
ii  libwww-perl   5.831-1WWW client/server library for Perl
ii  perl [libdigest-md5-perl] 5.10.0-25  Larry Wall's Practical Extraction 
ii  perl-modules [libnet-perl]5.10.0-25  Core Perl modules
ii  rsync 3.0.6-1fast remote file copy program (lik

Versions of packages debmirror recommends:
ii  ed1.4-1  The classic UNIX line editor
ii  gnupg 1.4.10-1   GNU privacy guard - a free PGP rep
ii  patch 2.5.9-5Apply a diff file to an original

debmirror 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#541073: linux-image-2.6.30-1-686: reset external USB SATA device

2009-08-11 Thread Mario Izquierdo (mariodebian)
Package: linux-image-2.6.30-1-686
Version: 2.6.30-5
Severity: normal

deluged (bittorrent client) is using my external disk as download dir.
I suppose that deluge read/write to many times and kernel reset disk.

External disk (lsusb):
Bus 001 Device 004: ID 152d:2338 JMicron Technology Corp. / JMicron USA 
Technology Corp. JM20337 Hi-Speed USB to SATA  PATA Combo Bridge

-- Package-specific info:
** Version:
Linux version 2.6.30-1-686 (Debian 2.6.30-5) (m...@debian.org) (gcc version 
4.3.3 (Debian 4.3.3-15) ) #1 SMP Mon Aug 3 16:18:30 UTC 2009

** Command line:
BOOT_IMAGE=/boot/vmlinuz-2.6.30-1-686 root=/dev/sda1 ro quiet nosplash

** Tainted: P W (513)

** Kernel log:
[12469.837080] usb 2-1.4.2: New USB device strings: Mfr=1, Product=2, 
SerialNumber=3
[12469.837087] usb 2-1.4.2: Product: Flash Disk  
[12469.837092] usb 2-1.4.2: Manufacturer: ORP 
[12469.837097] usb 2-1.4.2: SerialNumber: 293424206251
[12469.837279] usb 2-1.4.2: configuration #1 chosen from 1 choice
[12469.842694] scsi5 : SCSI emulation for USB Mass Storage devices
[12469.849618] usb-storage: device found at 8
[12469.849624] usb-storage: waiting for device to settle before scanning
[12474.848478] usb-storage: device scan complete
[12474.849128] scsi 5:0:0:0: Direct-Access ORP  Flash Disk   4.00 
PQ: 0 ANSI: 2
[12474.850777] sd 5:0:0:0: [sdc] 517759 2048-byte hardware sectors: (1.06 
GB/1011 MiB)
[12474.851308] sd 5:0:0:0: [sdc] Write Protect is off
[12474.851308] sd 5:0:0:0: [sdc] Mode Sense: 00 00 00 00
[12474.851308] sd 5:0:0:0: [sdc] Assuming drive cache: write through
[12474.853826] sd 5:0:0:0: [sdc] 517759 2048-byte hardware sectors: (1.06 
GB/1011 MiB)
[12474.854277] sd 5:0:0:0: [sdc] Assuming drive cache: write through
[12474.854290]  sdc: sdc1
[12474.855527] sd 5:0:0:0: [sdc] Attached SCSI removable disk
[12475.370305] FAT: utf8 is not a recommended IO charset for FAT filesystems, 
filesystem will be case sensitive!
[12595.590507] warning: `VirtualBox' uses 32-bit capabilities (legacy support 
in use)
[12607.852148] device br0 entered promiscuous mode
[12768.692090] device br0 left promiscuous mode
[12857.566156] usb 2-1.4.2: USB disconnect, address 8
[18206.794132] usb 1-3: USB disconnect, address 3
[18207.810088] EXT3-fs error (device sdb2): ext3_find_entry: reading directory 
#8863745 offset 0
[18207.892453] EXT3-fs error (device sdb2): ext3_find_entry: reading directory 
#8863745 offset 0
[18207.892665] [ cut here ]
[18207.892678] WARNING: at 
/build/buildd-linux-2.6_2.6.30-5-i386-Lff5qC/linux-2.6-2.6.30/debian/build/source_i386_none/fs/buffer.c:1152
 mark_buffer_dirty+0x20/0x77()
[18207.892686] Hardware name: 89185QG
[18207.892690] Modules linked in: nls_utf8 nls_cp437 vfat fat nls_base ppdev 
parport_pc lp parport tuner_simple tuner_types tuner saa7115 sco bnep l2cap 
bluetooth uinput binfmt_misc vboxnetadp vboxnetflt cpufreq_userspace fuse nfsd 
exportfs nfs lockd fscache nfs_acl auth_rpcgss sunrpc ipt_ULOG ipt_LOG 
ip6table_filter ip6_tables xt_time xt_connlimit xt_helper xt_realm xt_NFQUEUE 
xt_hashlimit xt_tcpmss xt_tcpudp ipt_addrtype xt_pkttype iptable_raw 
xt_CLASSIFY xt_CONNMARK xt_MARK xt_comment ipt_REJECT xt_length xt_connmark 
xt_owner xt_recent xt_iprange xt_physdev xt_policy xt_multiport xt_conntrack 
xt_state iptable_mangle iptable_nat nf_nat nf_conntrack_ipv4 nf_conntrack 
nf_defrag_ipv4 iptable_filter ip_tables x_tables bridge stp vboxdrv 
cpufreq_powersave cpufreq_conservative cpufreq_stats acpi_cpufreq nvidia(P) 
firewire_sbp2 firewire_core crc_itu_t loop snd_hda_codec_analog arc4 
snd_hda_intel ecb snd_hda_codec snd_hwdep iwlagn snd_pcm_oss snd_mixer_oss 
iwlcore snd_pcm snd_seq_m
 idi usbvision snd_rawmidi v4l2_common snd_seq_midi_event videodev joydev 
snd_seq snd_timer snd_seq_device pcmcia v4l1_compat mac80211 snd usbhid 
soundcore yenta_socket hid rsrc_nonstatic pcmcia_core snd_page_alloc 
thinkpad_acpi i2c_i801 cfg80211 rfkill i2c_core serio_raw processor nvram 
psmouse pcspkr wmi button ac battery evdev ext3 jbd mbcache sd_mod crc_t10dif 
ide_cd_mod cdrom ata_generic usb_storage uhci_hcd ide_pci_generic ahci 
ricoh_mmc sdhci_pci sdhci mmc_core led_class libata piix ide_core ehci_hcd 
scsi_mod usbcore intel_agp e1000e agpgart video output thermal fan thermal_sys
[18207.893029] Pid: 8385, comm: deluged Tainted: P   2.6.30-1-686 #1
[18207.893034] Call Trace:
[18207.893046]  [c0127000] ? warn_slowpath_common+0x5e/0x8a
[18207.893055]  [c0127036] ? warn_slowpath_null+0xa/0xc
[18207.893063]  [c01a6612] ? mark_buffer_dirty+0x20/0x77
[18207.893109]  [f845df9d] ? ext3_commit_super+0x3a/0x50 [ext3]
[18207.893149]  [f845f445] ? ext3_handle_error+0x6e/0x8e [ext3]
[18207.893188]  [f845f4f0] ? ext3_error+0x3a/0x40 [ext3]
[18207.893243]  [f845c1ed] ? ext3_find_entry+0x35f/0x4b2 [ext3]
[18207.893266]  [c031d571] ? __schedule+0x6ec/0x746
[18207.893276]  [c013d48c] ? getnstimeofday+0x4d/0xca
[18207.893284]  [c0139688] ? ktime_get_ts+0x1d/0x3f
[18207.893294]  

Bug#539414: pulseaudio: Pulseaudio use a lot of memory in embeded systems

2009-07-31 Thread Mario Izquierdo (mariodebian)
Package: pulseaudio
Version: 0.9.15-4.1
Severity: normal

In embeded systems like LTSP or TCOS [1] pulseaudio use default SHM system size 
(64MB)

In Thin Clients with 128 MB RAM, pulseaudio uses more than 75MB.

Disabling SHM or setting to lower size (16MB) fix this issue.

This issue should be documented in some README file and inform LTSP developers.


Greetings


[1] http://www.tcosproject.org

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

Kernel: Linux 2.6.30-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 pulseaudio depends on:
ii  adduser  3.110   add and remove users and groups
ii  consolekit   0.3.0-3 framework for defining and trackin
ii  libasound2   1.0.20-3shared library for ALSA applicatio
ii  libasyncns0  0.3-1   Asyncronous name service query lib
ii  libc62.9-23  GNU C Library: Shared libraries
ii  libcap2  1:2.16-5support for getting/setting POSIX.
ii  libdbus-1-3  1.2.16-2simple interprocess messaging syst
ii  libflac8 1.2.1-1.2   Free Lossless Audio Codec - runtim
ii  libgdbm3 1.8.3-6 GNU dbm database routines (runtime
ii  libhal1  0.5.12~git20090406.46dc48-2 Hardware Abstraction Layer - share
ii  libice6  2:1.0.5-1   X11 Inter-Client Exchange library
ii  libltdl7 2.2.6a-4A system independent dlopen wrappe
ii  libogg0  1.1.3-5 Ogg Bitstream Library
ii  liboil0.30.3.16-1Library of Optimized Inner Loops
ii  libpolkit-db 0.9-4   library for accessing PolicyKit vi
ii  libpolkit2   0.9-4   library for accessing PolicyKit
ii  libpulse00.9.15-4.1  PulseAudio client libraries
ii  libsamplerat 0.1.7-2 audio rate conversion library
ii  libsm6   2:1.1.0-2   X11 Session Management library
ii  libsndfile1  1.0.20-1Library for reading/writing audio 
ii  libspeexdsp1 1.2~rc1-1   The Speex extended runtime library
ii  libvorbis0a  1.2.0.dfsg-5The Vorbis General Audio Compressi
ii  libvorbisenc 1.2.0.dfsg-5The Vorbis General Audio Compressi
ii  libwrap0 7.6.q-18Wietse Venema's TCP wrappers libra
ii  libx11-6 2:1.2.2-1   X11 client-side library
ii  libxtst6 2:1.0.3-1   X11 Testing -- Resource extension 
ii  lsb-base 3.2-23  Linux Standard Base 3.2 init scrip

Versions of packages pulseaudio recommends:
ii  gstreamer0.10-pulseaudio  0.10.15-2  GStreamer plugin for PulseAudio
ii  libasound2-plugins1.0.20-1   ALSA library additional plugins
ii  pulseaudio-esound-compat  0.9.15-4.1 PulseAudio ESD compatibility layer
ii  pulseaudio-module-hal 0.9.15-4.1 HAL device detection module for Pu
ii  pulseaudio-module-x11 0.9.15-4.1 X11 module for PulseAudio sound se

Versions of packages pulseaudio suggests:
ii  paman 0.9.4-1PulseAudio Manager
ii  paprefs   0.9.8-1PulseAudio Preferences
ii  pavucontrol   0.9.8-1PulseAudio Volume Control
ii  pavumeter 0.9.3-1PulseAudio Volume Meter
ii  pulseaudio-utils  0.9.15-4.1 Command line tools for the PulseAu

-- 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#532201: dnsmasq: Please log TFTP not found files too

2009-06-07 Thread Mario Izquierdo (mariodebian)
Package: dnsmasq
Version: 2.48-2
Severity: wishlist
Tags: patch

Working with TFTP on dnsmasq I want to know what files are requested.

The patch is really simple:


--- dnsmasq-2.48.orig/src/tftp.c
+++ dnsmasq-2.48/src/tftp.c
@@ -248,6 +248,7 @@
   strncat(daemon-namebuff, filename, MAXDNAME);
   daemon-namebuff[MAXDNAME-1] = 0;
 
+  my_syslog(MS_TFTP | LOG_INFO, _(TFTP try to send %s), 
daemon-namebuff);
   /* check permissions and open file */
   if ((transfer-file = check_tftp_fileperm(len)))
{



The syslog looks like this (my locale is es_ES, envió==sent ):

dnsmasq-tftp[30249]: TFTP try to send /var/lib/tftpboot/tcos/pxelinux.0
dnsmasq-tftp[30249]: TFTP envió /var/lib/tftpboot/tcos/pxelinux.0 a 
192.168.0.213
dnsmasq-tftp[30249]: TFTP try to send 
/var/lib/tftpboot/tcos/pxelinux.cfg/56424f58----080027ff5537
dnsmasq-tftp[30249]: TFTP try to send 
/var/lib/tftpboot/tcos/pxelinux.cfg/01-08-00-27-ff-55-37
dnsmasq-tftp[30249]: TFTP try to send 
/var/lib/tftpboot/tcos/pxelinux.cfg/C0A800D5
dnsmasq-tftp[30249]: TFTP try to send 
/var/lib/tftpboot/tcos/pxelinux.cfg/C0A800D
dnsmasq-tftp[30249]: TFTP try to send /var/lib/tftpboot/tcos/pxelinux.cfg/C0A800
dnsmasq-tftp[30249]: TFTP try to send /var/lib/tftpboot/tcos/pxelinux.cfg/C0A80
dnsmasq-tftp[30249]: TFTP try to send /var/lib/tftpboot/tcos/pxelinux.cfg/C0A8
dnsmasq-tftp[30249]: TFTP try to send /var/lib/tftpboot/tcos/pxelinux.cfg/C0A
dnsmasq-tftp[30249]: TFTP try to send /var/lib/tftpboot/tcos/pxelinux.cfg/C0
dnsmasq-tftp[30249]: TFTP try to send /var/lib/tftpboot/tcos/pxelinux.cfg/C
dnsmasq-tftp[30249]: TFTP try to send 
/var/lib/tftpboot/tcos/pxelinux.cfg/default
dnsmasq-tftp[30249]: TFTP envió /var/lib/tftpboot/tcos/pxelinux.cfg/default a 
192.168.0.213
dnsmasq-tftp[30249]: TFTP try to send /var/lib/tftpboot/tcos/tcos.msg
dnsmasq-tftp[30249]: TFTP envió /var/lib/tftpboot/tcos/tcos.msg a 192.168.0.213
dnsmasq-tftp[30249]: TFTP try to send /var/lib/tftpboot/tcos/logo.lss
dnsmasq-tftp[30249]: TFTP envió /var/lib/tftpboot/tcos/logo.lss a 192.168.0.213


Other TFTP daemons (atftpd, tftpd-hpa) log not found files by default.

Thanks for your work at Debian.

Greetings


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

Kernel: Linux 2.6.29-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 dnsmasq depends on:
ii  adduser   3.110  add and remove users and groups
ii  dnsmasq-base  2.48-2 A small caching DNS proxy and DHCP
ii  netbase   4.34   Basic TCP/IP networking system

dnsmasq recommends no packages.

Versions of packages dnsmasq suggests:
pn  resolvconfnone (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#523641: usbip: Package does not install the usb.ids file needed by the binaries

2009-04-13 Thread Mario Izquierdo (mariodebian)
Package: usbip
Version: 0.1.7-2
Severity: normal

Hi.

The file usb.ids is provided by usbutils package

$ ls -l /usr/share/misc/usb.ids 
  /usr/share/misc/usb.ids - /var/lib/usbutils/usb.ids

Max was working on a new version of usbip package that use this file instead of
providing new one.

There is a patch to solve this issue:

http://sourceforge.net/mailarchive/forum.php?thread_name=20090224144210.GA13617%40idea.intra.pawisda.deforum_name=usbip-devel


Greetings



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



Bug#523943: squid3: Configure flags --enable-follow-x-forwarded-for but don't have follow_xff.patch

2009-04-13 Thread Mario Izquierdo (mariodebian)
Package: squid3
Version: 3.0.STABLE8-3
Severity: normal


In debian/rules you have defined a configure flag:

DEB_CONFIGURE_EXTRA_FLAGS := --datadir=/usr/share/squid3 \
[...]
--enable-follow-x-forwarded-for \



But searching in sources, this flag don't enable anything.

$ rgrep x-forwarded-for *
ChangeLog:  - Bug #1730: make problem with --enable-follow-x-forwarded-for 
on Solaris
debian/rules:--enable-follow-x-forwarded-for \
debian/changelog:- Added --enable-follow-x-forwarded-for configure option
RELEASENOTES.html:DTB--enable-follow-x-forwarded-for/BDD


The configure script don't have --enable-follow-x-forwarded-for option.

I'm working with this patch [1] (remade some code) and test it.

I suggest to remove this line from debian/rules and ask squid developers
the follow_xff.patch status.


[1] http://devel.squid-cache.org/cgi-bin/diff/follow_xff



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



Bug#523760: linux-modules-extra-2.6: Please include CDFS modules in l-m-e builds

2009-04-12 Thread Mario Izquierdo (mariodebian)
Package: linux-modules-extra-2.6
Severity: wishlist


Please include CDFS modules in linux-modules-extra-2.6 builds.

Description: shows the tracks on a CD as normal files
 CDfs is a file system for Linux systems that `exports' all tracks and
 boot images on a CD as normal files.  These files can then be mounted
 (e.g. for ISO and boot images), copied, played (WAVE audio and VideoCD
 tracks)... The primary goal for developing this file system was to
 `unlock' information in old ISO images.

Source package is cdfs-src and builds ok with the latest 2.6.29-1-686 kernel


This package is needed by my project TCOS [1], I'm uploading and asking 
all required dependencies before uploading. See more at [2]


[1] http://www.tcosproject.org
[2] http://wiki.tcosproject.org/Tcos_Into_Debian



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



Bug#523034: busybox: Please enable CONFIG_LOGIN and CONFIG_GETTY

2009-04-07 Thread Mario Izquierdo (mariodebian)
Package: busybox
Version: 1:1.10.2-2
Severity: wishlist

I'm working on another thin client framework (like LTSP) called TCOS [1]

In past I have used tinylogin [2] and now I want to upload my software to 
Debian. Tinylogin is no longer mantained and is merged with busybox.

My thin clients need 2 applets (CONFIG_LOGIN and CONFIG_GETTY) to
protect ttys. Thin client works inside initramfs. Enabling these 
configs only grows 12Kb:

$ du -h /bin/busybox /tmp/paquete/tmp/bin/busybox 
372K/bin/busybox
384K/tmp/paquete/tmp/bin/busybox

I have uploaded another new packages (that my project need) you can see
all in TCOS_into_Debian Roadmap at [3]

Another projects like mindi use another busybox compilation [4], I talk
some time ago with Andree Leidenfrost and...@d.o and he want to merge it.

I think that busybox mantainers could merge mindi-busybox requirements or 
generate more bin packages from the same sources.

Today busybox sources are 2 times (or more) in Debian repositories [5]. 
Only providing one source package can made the compilation more simple 
with a new upstream version or security fixes.



Thanks for your work at Debian.
Greetings



[1] http://www.tcosproject.org
[2] http://tinylogin.busybox.net
[3] http://wiki.tcosproject.org/Tcos_Into_Debian
[5] http://packages.debian.org/sid/mindi-busybox
[5] http://ftp.uk.debian.org/debian/pool/main/m/mindi-busybox/ and
http://ftp.uk.debian.org/debian/pool/main/b/busybox/



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



Bug#514615: ITP: p910nd -- Small printer daemon intended for diskless workstations

2009-02-09 Thread Mario Izquierdo (mariodebian)
Package: wnpp
Severity: wishlist
Owner: Mario Izquierdo (mariodebian) mariodeb...@gmail.com


  Package name: p910nd
  Version : 0.93
  Upstream Author : Ken Yap greenpos...@users.sourceforge.net
  URL : http://p910nd.sourceforge.net/
  License : GPL
  Programming Lang: C, Perl
  Description : Small printer daemon intended for diskless workstations

From upstream webpage:

p910nd is a small printer daemon intended for diskless workstations 
that does not spool to disk but passes the job directly to the printer.

p910nd is particularly useful for diskless Linux workstations such as 
those set up with LTSP and embedded devices that have a printer hanging off 
them.

I have packaged (using GIT):
  http://tcosproject.org/cgit/cgit.cgi/p910nd.git/
  git clone http://tcosproject.org/git/p910nd.git

Debian package (unstable):
  dget http://www.tcosproject.org/pool/main/p/p910nd/p910nd_0.93-1.dsc

Package is lintian clean.

I need a sponsor to upload it.


I'm packaging some software used by my thin client framework (TCOS [1]), 
I will upload TCOS packages when all depends are done.


Previously packaged:
  * python-netifaces

[1] http://www.tcosproject.org


Thanks.

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



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



Bug#513232: galculator: Formula entry don't work with decimals

2009-01-27 Thread Mario Izquierdo (mariodebian)
Package: galculator
Version: 1.3.3-1
Severity: important

From last version (1.3.3), formula entry don't work, older version works ok.

If you type:

3,3*2
and press =

Formula text become in red color.

No error mesages launching from a text terminal.

If I disable formula entry from Notation modes, galculator works ok.

Launching with:

  $ LC_ALL=C galculator

Works ok. Seem to be a locale bug.

My locale:

  $ locale
LANG=es_ES.UTF-8
LC_CTYPE=es_ES.UTF-8
LC_NUMERIC=es_ES.UTF-8
LC_TIME=es_ES.UTF-8
LC_COLLATE=es_ES.UTF-8
LC_MONETARY=es_ES.UTF-8
LC_MESSAGES=es_ES.UTF-8
LC_PAPER=es_ES.UTF-8
LC_NAME=es_ES.UTF-8
LC_ADDRESS=es_ES.UTF-8
LC_TELEPHONE=es_ES.UTF-8
LC_MEASUREMENT=es_ES.UTF-8
LC_IDENTIFICATION=es_ES.UTF-8
LC_ALL=


Thanks for your work at Debian.


-- System Information:
Debian Release: 5.0
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
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 galculator depends on:
ii  libatk1.0-01.22.0-1  The ATK accessibility toolkit
ii  libc6  2.7-18GNU C Library: Shared libraries
ii  libcairo2  1.6.4-7   The Cairo 2D vector graphics libra
ii  libglade2-01:2.6.3-1 library to load .glade files at ru
ii  libglib2.0-0   2.16.6-1  The GLib library of C routines
ii  libgtk2.0-02.12.11-4 The GTK+ graphical user interface 
ii  libpango1.0-0  1.20.5-3  Layout and rendering of internatio
ii  libxml22.6.32.dfsg-5 GNOME XML library

galculator recommends no packages.

galculator 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#500394: ITP: netifaces -- portable network iface information for Python

2008-09-27 Thread Mario Izquierdo (mariodebian)
Package: wnpp
Severity: wishlist
Owner: Mario Izquierdo (mariodebian) [EMAIL PROTECTED]

* Package name: netifaces
  Version : 0.4
  Upstream Author : Mario Izquierdo (mariodebian) [EMAIL PROTECTED]
* URL : http://alastairs-place.net/netifaces/
* License : MIT
  Programming Lang: C, Python
  Description : portable network iface information for Python

 netifaces provides a (hopefully portable-ish) way for Python programmers to
 get access to a list of the network interfaces on the local machine, and to
 obtain the addresses of those network interfaces.


The package is lintian clean.

Build to bin packages:
  * python-netifaces
  * python-netifaces-dbg

..dsc file is in mentors:
  http://mentors.debian.net/debian/pool/main/n/netifaces/

I will upload and updated (with some fixes) version soon (with this ITP #)



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



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



Bug#499593: linux-modules-extra-2.6: Please rebuild l-m-e, virtualbox-ose module update fix important bug

2008-09-20 Thread Mario Izquierdo (mariodebian)
Package: linux-modules-extra-2.6
Version: 1.6.2-dfsg-4
Severity: grave
Justification: renders package unusable


Since recent update of virtualbox-ose package (see bug #497505)

virtualbox-ose modules works as expected and don't crash virtualized system

Please rebuild l-m-e with updated virtualbox-ose because module-assistant 
packages have less priority (low version) than l-m-e:

$ apt-cache policy virtualbox-ose-modules-2.6.26-1-686
virtualbox-ose-modules-2.6.26-1-686:
  Instalados: 1.6.2-dfsg-6+2.6.26-5
  Candidato: 1.6.2-dfsg-6+2.6.26-5
  Pin del paquete: 1.6.2-dfsg-6+2.6.26-5
  Tabla de versión:
 2.6.26+1.6.2-dfsg-4 1001
500 file: unstable/main Packages
 *** 1.6.2-dfsg-6+2.6.26-5 1001
100 /var/lib/dpkg/status

$ cat /etc/apt/preferences 
Package: virtualbox-ose-modules-2.6.26-1-686
Pin: version 1.6.2-dfsg-6+2.6.26-5
Pin-Priority: 1001


Thanks for your work at Debian.


-- System Information:
Debian Release: lenny/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
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#494003: trac: malformed jquery remove patch

2008-08-06 Thread Mario Izquierdo (mariodebian)
Package: trac
Version: 0.11-3
Severity: important
Tags: patch


Patch is uncomplete:

  1.- Need dh_link target in debian/rules

  2.- You don't have to edit Trac.egg-info/SOURCES.txt or trac will not send 
jquery.js file


I attach tested and working debian/patches/15_remove_jquery_file.dpatch diff


Thanks for your work at Debian.

Greetings


-- System Information:
Debian Release: lenny/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
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
#! /bin/sh /usr/share/dpatch/dpatch-run
## 15_remove_jquery_file.dpatch by  [EMAIL PROTECTED]
##
## All lines beginning with `## DP:' are a description of the patch.
## DP: Removes the jquery.js file

@DPATCH@
diff -urNad trac-0.11~/trac/htdocs/js/jquery.js trac-0.11/trac/htdocs/js/jquery.js
--- trac-0.11~/trac/htdocs/js/jquery.js	2008-04-30 19:45:33.0 +0200
+++ trac-0.11/trac/htdocs/js/jquery.js	1970-01-01 01:00:00.0 +0100
@@ -1,11 +0,0 @@
-/*
- * jQuery 1.2.3 - New Wave Javascript
- *
- * Copyright (c) 2008 John Resig (jquery.com)
- * Dual licensed under the MIT (MIT-LICENSE.txt)
- * and GPL (GPL-LICENSE.txt) licenses.
- *
- * $Date: 2008-02-06 00:21:25 -0500 (Wed, 06 Feb 2008) $
- * $Rev: 4663 $
- */
-eval(function(p,a,c,k,e,r){e=function(c){return(ca?'':e(parseInt(c/a)))+((c=c%a)35?String.fromCharCode(c+29):c.toString(36))};if(!''.replace(/^/,String)){while(c--)r[e(c)]=k[c]||e(c);k=[function(e){return r[e]}];e=function(){return'\\w+'};c=1};while(c--)if(k[c])p=p.replace(new RegExp('\\b'+e(c)+'\\b','g'),k[c]);return p}('(J(){7(1e.3N)L w=1e.3N;L E=1e.3N=J(a,b){K 1B E.2l.4T(a,b)};7(1e.$)L D=1e.$;1e.$=E;L u=/^[^]*((.|\\s)+)[^]*$|^#(\\w+)$/;L G=/^.[^:#\\[\\.]*$/;E.1n=E.2l={4T:J(d,b){d=d||T;7(d.15){6[0]=d;6.M=1;K 6}N 7(1o d==25){L c=u.2O(d);7(c(c[1]||!b)){7(c[1])d=E.4a([c[1]],b);N{L a=T.5J(c[3]);7(a)7(a.2w!=c[3])K E().2s(d);N{6[0]=a;6.M=1;K 6}N d=[]}}N K 1B E(b).2s(d)}N 7(E.1q(d))K 1B E(T)[E.1n.21?21:3U](d);K 6.6E(d.1k==1Md||(d.5h||d.Md!=1e!d.15d[0]!=10d[0].15)E.2I(d)||[d])},5h:1.2.3,87:J(){K 6.M},M:0,22:J(a){K a==10?E.2I(6):6[a]},2F:J(b){L a=E(b);a.54=6;K a},6E:J(a){6.M=0;1M.2l.1g.1i(6,a);K 6},R:J(a,b){K E.R(6,a,b)},4X:J(b){L a=-1;6.R(J(i){7(6==b)a=i});K a},1J:J(c,a,b){L d=c;7(c.1k==4e)7(a==10)K 6.ME[b||1J](6[0],c)||10;N{d={};d[c]=a}K 6.R(J(i){Q(c 1p d)E.1J(b?6.W:6,c,E.1l(6,d[c],b,i,c))})},1j:J(b,a){7((b==\'27\'||b==\'1R\')2M(a)0)a=10;K 6.1J(b,a,2o)},1u:J(b){7(1o b!=3Vb!=V)K 6.4x().3t((6[0]6[0].2i||T).5r(b));L a=;E.R(b||6,J(){E.R(6.3p,J(){7(6.15!=8)a+=6.15!=1?6.6K:E.1n.1u([6])})});K a},5m:J(b){7(6[0])E(b,6[0].2i).5k().3o(6[0]).2c(J(){L a=6;2b(a.1C)a=a.1C;K a}).3t(6);K 6},8w:J(a){K 6.R(J(){E(6).6z().5m(a)})},8p:J(a){K 6.R(J(){E(6).5m(a)})},3t:J(){K 6.3O(18,P,S,J(a){7(6.15==1)6.38(a)})},6q:J(){K 6.3O(18,P,P,J(a){7(6.15==1)6.3o(a,6.1C)})},6o:J(){K 6.3O(18,S,S,J(a){6.1a.3o(a,6)})},5a:J(){K 6.3O(18,S,P,J(a){6.1a.3o(a,6.2B)})},3h:J(){K 6.54||E([])},2s:J(b){L c=E.2c(6,J(a){K E.2s(b,a)});K 6.2F(/[^+] [^+]/.17(b)||b.1f(..)-1?E.57(c):c)},5k:J(e){L f=6.2c(J(){7(E.14.1d!E.3E(6)){L a=6.69(P),4Y=T.3s(1x);4Y.38(a);K E.4a([4Y.3d])[0]}N K 6.69(P)});L d=f.2s(*).4R().R(J(){7(6[F]!=10)6[F]=V});7(e===P)6.2s(*).4R().R(J(i){7(6.15==3)K;L c=E.O(6,2R);Q(L a 1p c)Q(L b 1p c[a])E.16.1b(d[i],a,c[a][b],c[a][b].O)});K f},1E:J(b){K 6.2F(E.1q(b)E.3y(6,J(a,i){K b.1P(a,i)})||E.3e(b,6))},56:J(b){7(b.1k==4e)7(G.17(b))K 6.2F(E.3e(b,6,P));N b=E.3e(b,6);L a=b.Mb[b.M-1]!==10!b.15;K 6.1E(J(){K a?E.33(6,b)0:6!=b})},1b:J(a){K!a?6:6.2F(E.37(6.22(),a.1k==4e?E(a).22():a.M!=10(!a.12||E.12(a,3u))?a:[a]))},3H:J(a){K a?E.3e(a,6).M0:S},7j:J(a){K 6.3H(.+a)},5O:J(b){7(b==10){7(6.M){L c=6[0];7(E.12(c,2k)){L e=c.3T,5I=[],11=c.11,2X=c.U==2k-2X;7(e0)K V;Q(L i=2X?e:0,2f=2X?e+1:11.M;i2f;i++){L d=11[i];7(d.2p){b=E.14.1d!d.9J.1A.9y?d.1u:d.1A;7(2X)K b;5I.1g(b)}}K 5I}N K(6[0].1A||).1r(/\\r/g,)}K 10}K 6.R(J(){7(6.15!=1)K;7(b.1k==1M/5u|5t/.17(6.U))6.3k=(E.33(6.1A,b)=0||E.33(6.31,b)=0);N 7(E.12(6,2k)){L a=b.1k==1M?b:[b];E(98,6).R(J(){6.2p=(E.33(6.1A,a)=0||E.33(6.1u,a)=0)});7(!a.M)6.3T=-1}N 6.1A=b})},3q:J(a){K a==10?(6.M?6[0].3d:V):6.4x().3t(a)},6S:J(a){K 6.5a(a).1V()},6Z:J(i){K 6.2K(i,i+1)},2K:J(){K 6.2F(1M.2l.2K.1i(6,18))},2c:J(b){K 6.2F(E.2c(6,J(a,i){K b.1P(a,i,a)}))},4R:J(){K 6.1b(6.54)},O:J(d,b){L a=d.23(.);a[1]=a[1]?.+a[1]:;7(b==V){L c=6.5n(8P+a[1]+!,[a[0]]);7(c==106.M)c=E.O(6[0],d);K c==Va[1]?6.O(a[0]):c}N K 6.1N(8K+a[1]+!,[a[0],b]).R(J(){E.O(6,d,b)})},35:J(a){K 6.R(J(){E.35(6,a)})},3O:J(g,f,h,d){L e=6.M1,3n;K 6.R(J(){7(!3n){3n=E.4a(g,6.2i);7(h)3n.8D()}L b=6;7(fE.12(6,1O)E.12(3n[0],4v))b=6.3S(1U)[0]||6.38(6.2i.3s(1U));L c=E([]);E.R(3n,J(){L a=e?E(6).5k(P)[0]:6;7(E.12(a,1m)){c=c.1b(a)}N{7(a.15==1)c=c.1b(E(1m,a).1V());d.1P(b,a)}});c.R(6A)})}};E.2l.4T.2l=E.2l;J 6A(i,a){7(a.3Q)E.3P({1c:a.3Q,3l:S,1H:1m});N E.5g(a.1u||a.6x||a.3d||);7(a.1a)a.1a.34(a)}E.1s=E.1n.1s=J(){L 

Bug#482075: cdfs-src: Patch for building in 2.6.25 kernel version

2008-05-20 Thread Mario Izquierdo (mariodebian)
Package: cdfs-src
Version: 2.6.23-3
Severity: important
Tags: patch

cdfs-src Debian package don't build in 2.6.25 kernels

I have made a patch for it.

Patch can also be downloaded from:

http://trac.tcosproject.org/browser/trunk/tcos-extra-modules/patches/cdfs-2.6.25-2-486.patch?rev=812format=raw


Greetings and thanks for your work at Debian

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

Kernel: Linux 2.6.25-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 cdfs-src depends on:
ii  bzip2 1.0.5-0.1  high-quality block-sorting file co
ii  debhelper 7.0.9  helper programs for debian/rules
ii  kernel-package11.001-0.1 A utility for building Linux kerne
ii  make  3.81-4 The GNU version of the make util
ii  module-assistant  0.10.11.0  tool to make module package creati

cdfs-src recommends no packages.

-- no debconf information
diff -Naur --exclude=Makefile build/modules/cdfs.orig/2.6/modules.order build/modules/cdfs/2.6/modules.order
--- build/modules/cdfs.orig/2.6/modules.order	1970-01-01 01:00:00.0 +0100
+++ build/modules/cdfs/2.6/modules.order	2008-05-20 18:27:00.0 +0200
@@ -0,0 +1 @@
+kernel//home/mario/forja-rediris/trunk/tcos-extra-modules/build/modules/cdfs/2.6/cdfs.ko
diff -Naur --exclude=Makefile build/modules/cdfs.orig/2.6/root.c build/modules/cdfs/2.6/root.c
--- build/modules/cdfs.orig/2.6/root.c	2006-10-24 21:41:12.0 +0200
+++ build/modules/cdfs/2.6/root.c	2008-05-20 18:26:56.0 +0200
@@ -42,6 +42,9 @@
 extern struct seq_operations cdfs_operations;
 extern struct _track_info *dummy_track_p;
 
+#if LINUX_VERSION_CODE  KERNEL_VERSION(2,4,24)
+struct inode *cdfs_iget(struct super_block *sp, unsigned long ino);
+#endif
 
 /**
  *  cdfs_open()   *
@@ -361,8 +364,12 @@
   sb-s_magic  = CDFS_MAGIC;
   sb-s_flags |= MS_RDONLY;
   sb-s_op = cdfs_ops;
+#if LINUX_VERSION_CODE  KERNEL_VERSION(2,4,24)
+  sb-s_root   = d_alloc_root(cdfs_iget(sb, 0));
+#else
   sb-s_root   = d_alloc_root(iget(sb, 0));
-  
+#endif
+
   cdfs_proc_cd = this_cd;
 
 #ifdef OLD_KERNEL
@@ -459,7 +466,11 @@
 
   for(i=0; iT2I(this_cd-tracks); i++)
 if (!(strcmp(this_cd-track[i].name, dentry-d_name.name))) {
+#if LINUX_VERSION_CODE  KERNEL_VERSION(2,4,24)
+  if ((inode=iget_locked(dir-i_sb, i))==NULL) {
+#else
   if ((inode=iget(dir-i_sb, i))==NULL) {
+#endif
 return ERR_PTR(-EACCES);
   } else {
 d_add(dentry, inode);
@@ -482,8 +493,19 @@
 };
 
 /**/
-
+#if LINUX_VERSION_CODE  KERNEL_VERSION(2,4,24)
+struct inode *cdfs_iget(struct super_block *sp, unsigned long ino) {
+  /* info from http://git.kernel.org/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=12debc4248a4a7f1873e47cda2cdd7faca80b099 */
+  struct inode *i;
+  i = iget_locked(sp, ino);
+  if (!i)
+return ERR_PTR(-ENOMEM);
+  if (!(i-i_state  I_NEW))
+return i;
+#else
 static void cdfs_read_inode(struct inode *i) {
+#endif
+
   cd * this_cd = cdfs_info(i-i_sb);
 
   //printk(this_cd = 0x%x\n\n\n, (unsigned)this_cd);
@@ -536,12 +558,23 @@
   i-i_data.a_ops   = cdfs_cdXA_aops;
 }
   }
+#if LINUX_VERSION_CODE  KERNEL_VERSION(2,4,24)
+  unlock_new_inode(i);
+  return i;
+/*
+error:
+  iget_failed(inode);
+  return ERR_PTR(ret);
+*/
+#endif
 }
 
 /**/
 
 static struct super_operations cdfs_ops = {
+#if LINUX_VERSION_CODE  KERNEL_VERSION(2,4,24)
   .read_inode = cdfs_read_inode,
+#endif
   .put_super  = cdfs_umount,
   .statfs = cdfs_statfs
 };


Bug#480496: stunnel4: stunnel.conf file don't accept TIMEOUT* vars set to 0

2008-05-10 Thread Mario Izquierdo (mariodebian)
Package: stunnel4
Version: 3:4.22-1
Severity: important


I'm trying to use stunnel4 in a thin client system (TCOS) to make the XMLRPC 
connection more secure.

XMLRPC server is basically and HTTP server that send/receive XML text via POST 
(use libxmlrpc-c3).

All seems to work with default settings but every call to SSL port get 60 
seconds, if
set TIMEOUTclose=1 xmlrpc call take 1,0xx seconds and if set TIMEOUTclose=0 
stunnel4 
don't start.

Without SSL every XMLRCP call take 0,0xx seconds.

Configuration file comments says:

TIMEOUTclose  = seconds to wait for close_notify (set to 0 for buggy MSIE)

0 isn't a valid value and I need to use 0 timeout.

With ssldump -aAdNxX -i lo I can see that xmlrpc server has returned to 
stunnel4 tha data
and stunnel4 waits TIMEOUTclose seconds to returns...

My stunnel.conf:

=
cert = /etc/stunnel/stunnel.pem

; Protocol version (all, SSLv2, SSLv3, TLSv1)
sslVersion = SSLv2

;TIMEOUTbusy = 1 ;seconds to wait for expected data
TIMEOUTclose  = 1 ;seconds to wait for close_notify (set to 0 for buggy MSIE)
;TIMEOUTconnect = 1;seconds to connect remote host
;TIMEOUTidle = 1 ;seconds to keep an idle connection

;foreground=yes

syslog=no

session=1

;DNS delay
delay = no

; Some security enhancements for UNIX systems - comment them out on Win32
chroot = /var/lib/stunnel4/
setuid = root
setgid = root
; PID is created inside chroot jail
pid = /stunnel4.pid

; Some performance tunings
socket = l:TCP_NODELAY=1
socket = r:TCP_NODELAY=1
;compression = rle

; Some debugging stuff useful for troubleshooting
;debug = 7
output = /var/log/stunnel4/stunnel.log

; Service-level configuration

[tcosxmlrpc]
accept  = 8999
connect = 8998


Connection is like this:

Control Gui -- XMLRPC connection to 8999 (SSL) -- stunnel4 localhost 
connection to 8998 



-- System Information:
Debian Release: lenny/sid
  APT prefers unstable
  APT policy: (500, 'unstable')
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 stunnel4 depends on:
ii  adduser   3.107  add and remove users and groups
ii  libc6 2.7-10 GNU C Library: Shared libraries
ii  libssl0.9.8   0.9.8g-10  SSL shared libraries
ii  libwrap0  7.6.q-15   Wietse Venema's TCP wrappers libra
ii  netbase   4.32   Basic TCP/IP networking system
ii  openssl   0.9.8g-10  Secure Socket Layer (SSL) binary a
ii  perl-modules  5.10.0-10  Core Perl modules

stunnel4 recommends no packages.

-- no debconf information



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



Bug#467265: imagemagick: Wrong colormap generating usplash png debian theme

2008-02-24 Thread Mario Izquierdo (mariodebian)
Package: imagemagick
Version: 7:6.3.7.9.dfsg1-2
Severity: normal


With last version of imagemagick (7:6.3.7.9.dfsg1-2) colormaps of
generated png files are wrong.

This cause ugly colors during boot in usplash, 
usplash use (256 colormap palette)

Please see bug: #466124 and, in last message, 
the attachment file colormap_error.png.

debian-theme-usplash use copmposite and convert in a similar 
way that this Makefile:

http://trac.tcosproject.org/browser/trunk/initramfs-tools-tcos/usplash/0.4.1/Makefile

If you want I can send generated png files with 2 versions.

With 7:6.2.4.5.dfsg1-2 (taken for snapshots.debian.net) colormap seems to be 
correct.


Thanks for your work at Debian

Greetings


-- System Information:
Debian Release: lenny/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
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 imagemagick depends on:
ii  libbz2-1.0 1.0.4-3   high-quality block-sorting file co
ii  libc6  2.7-8 GNU C Library: Shared libraries
ii  libfreetype6   2.3.5-1+b1FreeType 2 font engine, shared lib
ii  libice62:1.0.4-1 X11 Inter-Client Exchange library
ii  libjasper1 1.900.1-3 The JasPer JPEG-2000 runtime libra
ii  libjpeg62  6b-14 The Independent JPEG Group's JPEG 
ii  liblcms1   1.16-8Color management library
ii  libmagick9 7:6.2.4.5.dfsg1-2 Image manipulation library
ii  libpng12-0 1.2.15~beta5-3PNG library - runtime
ii  libsm6 2:1.0.3-1+b1  X11 Session Management library
ii  libtiff4   3.8.2-7   Tag Image File Format (TIFF) libra
ii  libx11-6   2:1.0.3-7 X11 client-side library
ii  libxext6   1:1.0.3-2 X11 miscellaneous extension librar
ii  libxml22.6.31.dfsg-1 GNOME XML library
ii  libxt6 1:1.0.5-3 X11 toolkit intrinsics library
ii  zlib1g 1:1.2.3.3.dfsg-11 compression library - runtime

imagemagick recommends no packages.

-- no debconf information



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



Bug#467262: virtualbox-ose-source: module-assistant generate older version string, newest are generated by l-m-e

2008-02-24 Thread Mario Izquierdo (mariodebian)
Package: virtualbox-ose-source
Version: 1.5.6-dfsg-1
Severity: normal

virtualbox-ose-source should generate newer version of virtualbox module:

# LC_ALL=C apt-cache policy virtualbox-ose-modules-2.6.24-1-686
virtualbox-ose-modules-2.6.24-1-686:
  Installed: 1.5.6-dfsg-1+2.6.24-4
  Candidate: 2.6.24+1.5.4-dfsg-4
  Version table:
 2.6.24+1.5.4-dfsg-4 0
500 file: unstable/main Packages
 *** 1.5.6-dfsg-1+2.6.24-4 0
100 /var/lib/dpkg/status

2.6.24+1.5.4-dfsg-4   = It's l-m-e package
1.5.6-dfsg-1+2.6.24-4 = It's a generated m-a

Any way to have more priority a m-a generated module?
Should l-m-e generate a different package name and conflicts with 
virtualbox-ose-module-KVER?


Greetings

-- System Information:
Debian Release: lenny/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
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 virtualbox-ose-source depends on:
ii  bzip2   1.0.4-3  high-quality block-sorting file co
ii  debhelper   6.0.5helper programs for debian/rules
ii  dpatch  2.0.29   patch maintenance system for Debia
ii  kbuild  1:0.1.2svn1377-5 framework for writing simple makef
ii  module-assistant0.10.11.0tool to make module package creati

virtualbox-ose-source recommends no packages.

-- no debconf information



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



Bug#465080: Please make jclic use pulseaudio (if avalaible) needed for thin clients audio

2008-02-10 Thread Mario Izquierdo (mariodebian)
Package: jclic
Version: 0.1.2.2+cvs20080125-1
Severity: wishlist


I'm very happy because JClic is now in Debian.

JClic is used in many educational environments and some of them
usually are thin client networks.

JCLic sound api (tritonious) use OSS to play JClic sounds and this is
not compatible to thin clients, and in some cases, to local sound too.

Many distros will come as PulseAdio sound server (Fedora 9, Ubuntu Hardy...)
enabled and I think jclic shell scripts launchers must detect if pulseaudio
is active, and use a wrapper to launch sound over PulseAudio.

To detect PulseAudio you can search for /tmp/${USER}-pulse/ dir and
to detect if we are launching from thin client you can use $DISPLAY env or
better $PULSE_SERVER env var (exported in LTSP or TCOS startup)

My launcher (that connects to PulseAudio) is:

http://soleup.eup.uva.es/trac/browser/jclic/debian/addons/jclic

You need to call padsp with some optional values:

(needed to use sound in thin clients)
-s $PULSE_SERVER # remote server (IP address or hostname)

(optional)
-n JClic   # Client name of PulseAudio
-m JClic-stream# Client stream name

Perhaps JClic should recomend pulseaudio-utils (provides padsp script)


Thanks four your work in Debian.

Greetings


-- System Information:
Debian Release: lenny/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
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 jclic depends on:
ii  sun-java6-jre 6-04-2 Sun Java(TM) Runtime Environment (

Versions of packages jclic recommends:
ii  iceweasel   2.0.0.12-1   lightweight web browser based on M
ii  libmysql-java   5.1.5+dfsg-2 Java database (JDBC) driver for My

-- no debconf information



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



Bug#454478: ltspfsd should not recommends ldm

2007-12-05 Thread Mario Izquierdo (mariodebian)
Package: ltspfsd
Version: 0.5+debian1
Severity: normal

lstpfsd is used only in LTSP chroot and Recomends ldm package.

I'm working on new thin client implementation and try to put into Debian
officially. I don't need ldm login manager, only ltspfsd daemon.

Since some time, apt recommended packages are installed and
without extra configuration can install ltspfsd without ldm.



# LC_ALL=C apt-get install ltspfsd
Reading package lists... Done
Building dependency tree   
Reading state information... Done
The following extra packages will be installed:
  ldm
The following NEW packages will be installed:
  ldm ltspfsd
0 upgraded, 2 newly installed, 0 to remove and 4 not upgraded.
Need to get 0B/193kB of archives.
After unpacking 463kB of additional disk space will be used.
Do you want to continue [Y/n]?


# LC_ALL=C apt-get -o APT::Install-Recommends=false install ltspfsd
Reading package lists... Done
Building dependency tree   
Reading state information... Done
Recommended packages:
  ldm
The following NEW packages will be installed:
  ltspfsd
0 upgraded, 1 newly installed, 0 to remove and 4 not upgraded.
Need to get 0B/16.0kB of archives.
After unpacking 131kB of additional disk space will be used.
(Reading database ... 260825 files and directories currently installed.)
Unpacking ltspfsd (from .../ltspfsd_0.5+debian1_i386.deb) ...
Setting up ltspfsd (0.5+debian1) ...


Can you move ldm to suggests?


Thanks


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

Kernel: Linux 2.6.22-3-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 ltspfsd depends on:
ii  libc6  2.7-3 GNU C Library: Shared libraries
ii  lsof   4.78.dfsg.1-3 List open files
ii  python 2.4.4-6   An interactive high-level object-o

Versions of packages ltspfsd recommends:
pn  ldm   none (no description available)

-- no debconf information



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



Bug#450773: banshee: Banshee stop playing when inserting empty cdrom disk

2007-11-10 Thread Mario Izquierdo (mariodebian)
Package: banshee
Version: 0.13.1+dfsg-5
Severity: normal

When insert empty CDROM disk, banshee lost focus on my current playlist and 
stop playing when current song finish.

I think that banshee could ignore empty cdrom or not change focus if user
don't open gui and click in CDROM item.

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

Kernel: Linux 2.6.22-3-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 banshee depends on:
ii  boo0.7.6.2237-7  a python-like language and compile
ii  gconf2 2.20.1-1  GNOME configuration database syste
ii  gstreamer0.10-gnomevfs 0.10.14-4 GStreamer plugin for GnomeVFS
ii  gstreamer0.10-plugins-base 0.10.14-4 GStreamer plugins from the base 
ii  gstreamer0.10-plugins-good 0.10.6-3  GStreamer plugins from the good 
ii  libatk1.0-01.20.0-1  The ATK accessibility toolkit
ii  libc6  2.6.1-6   GNU C Library: Shared libraries
ii  libcairo2  1.4.10-1  The Cairo 2D vector graphics libra
ii  libdbus-1-31.1.1-3   simple interprocess messaging syst
ii  libdbus-glib-1-2   0.74-1simple interprocess messaging syst
ii  libfontconfig1 2.4.91-1  generic font configuration library
ii  libgconf2-42.20.1-1  GNOME configuration database syste
ii  libgconf2.0-cil2.16.0-7  CLI binding for GConf 2.16
ii  libglade2.0-cil2.10.2-1  CLI binding for the Glade librarie
ii  libglib2.0-0   2.14.2-1  The GLib library of C routines
ii  libglib2.0-cil 2.10.2-1  CLI binding for the GLib utility l
ii  libgnome-vfs2.0-cil2.16.0-7  CLI binding for GnomeVFS 2.16
ii  libgnome2.0-cil2.16.0-7  CLI binding for Gnome 2.16
ii  libgnomevfs2-0 1:2.20.0-3GNOME Virtual File System (runtime
ii  libgstreamer-plugins-base0 0.10.14-4 GStreamer libraries from the base
ii  libgstreamer0.10-0 0.10.14-2 Core GStreamer libraries and eleme
ii  libgtk2.0-02.12.1-1  The GTK+ graphical user interface 
ii  libgtk2.0-cil  2.10.2-1  CLI binding for the GTK+ toolkit 2
ii  libhal10.5.10-2  Hardware Abstraction Layer - share
ii  libipoddevice0 0.5.3-3   library for retrieving information
ii  libmono-cairo2.0-cil   1.2.5.1-1 Mono Cairo library
ii  libmono-corlib1.0-cil  1.2.5.1-1 Mono core library (1.0)
ii  libmono-corlib2.0-cil  1.2.5.1-1 Mono core library (2.0)
ii  libmono-security2.0-cil1.2.5.1-1 Mono Security library
ii  libmono-sharpzip2.84-cil   1.2.5.1-1 Mono SharpZipLib library
ii  libmono-sqlite2.0-cil  1.2.5.1-1 Mono Sqlite library
ii  libmono-system-data2.0-cil 1.2.5.1-1 Mono System.Data Library
ii  libmono-system-web2.0-cil  1.2.5.1-1 Mono System.Web Library
ii  libmono-system2.0-cil  1.2.5.1-1 Mono System libraries (2.0)
ii  libmono1.0-cil 1.2.5.1-1 Mono libraries (1.0)
ii  libmono2.0-cil 1.2.5.1-1 Mono libraries (2.0)
ii  libmusicbrainz4c2a 2.1.5-1   Second generation incarnation of t
ii  libnautilus-burn4  2.20.0-1  Nautilus Burn Library - runtime ve
ii  libndesk-dbus-glib1.0-cil  0.4.1-1   CLI implementation of D-Bus (GLib 
ii  libndesk-dbus1.0-cil   0.6.0-1   CLI implementation of D-Bus
ii  libnjb52.2.5-4.1 Creative Labs Nomad Jukebox librar
ii  liborbit2  1:2.14.7-0.1  libraries for ORBit2 - a CORBA ORB
ii  libpango1.0-0  1.18.3-1  Layout and rendering of internatio
ii  libtaglib2.0-cil   2.0.2.0-1 CLI library for accessing audio an
ii  libusb-0.1-4   2:0.1.12-7userspace USB programming 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.4-1 X Rendering Extension client libra
ii  mono-runtime   1.2.5.1-1 Mono runtime

Versions of packages banshee recommends:
ii  gnome-volume-manager 

Bug#446647: acpi-support: acpi don't listen some ThinkPad events in last version

2007-10-14 Thread Mario Izquierdo (mariodebian)
Package: acpi-support
Version: 0.103-1
Severity: normal

I have a ThinkPad R61.

Last week with old acpi packages all keys work and some aditional keys self 
configured too.

Today Fn+F5 (on/off Bluetooth) Fn+F6 (on/off Wireless) don't work

/var/log/syslog and acpi_listen don't show any output when pressing any of this 
keys.

This are some events added by me:

== ibm-black-screen ==
event=ibm/hotkey HKEY 0080 1001
action=DISPLAY=:0 XAUTHORITY=/home/mario/.Xauthority xset dpms force off

== ibm-ejectbtn ==
event=ibm/hotkey HKEY 0080 1009
action=/usr/bin/eject

== ibm-ndis-wireless ==
event=ibm/hotkey HKEY 0080 1006
action=/etc/acpi/ibm-ndis-wireless.sh

Eject works but wireless and bluetooth not

Perhaps some code lost in migration ibm - thinkpad rename?


-- System Information:
Debian Release: lenny/sid
  APT prefers unstable
  APT policy: (500, 'unstable')
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 acpi-support depends on:
ii  acpid 1.0.6-4Utilities for using ACPI power man
ii  dmidecode 2.9-1  Dump Desktop Management Interface 
ii  finger0.17-11user information lookup program
ii  hdparm7.7-1  tune hard disk parameters for high
ii  laptop-detect 0.13.2 attempt to detect a laptop
ii  libc6 2.6.1-5GNU C Library: Shared libraries
ii  lsb-base  3.1-24 Linux Standard Base 3.1 init scrip
ii  nvclock   0.8b2-1Allows you to overclock your nVidi
ii  powermgmt-base1.29   Common utils and configs for power
ii  radeontool1.5-5  utility to control ATI Radeon back
ii  toshset   1.72-6 Access much of the Toshiba laptop 
ii  vbetool   0.7-1.1run real-mode video BIOS code to a
ii  x11-xserver-utils 7.3+1  X server utilities

acpi-support recommends no packages.

-- no debconf information



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



Bug#433805: squashfs-source: Patch in dpatch format

2007-07-29 Thread Mario Izquierdo (mariodebian)
Package: squashfs-source
Version: 1:3.2r2-3
Followup-For: Bug #433805


I attach a dpatch patch who works with 2.6.22

Put into debian/patches and append 03-remove-slab to 00list


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

Kernel: Linux 2.6.22-1-k7 (SMP w/1 CPU core)
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 squashfs-source depends on:
ii  bzip2 1.0.3-7high-quality block-sorting file co
ii  debhelper 5.0.53 helper programs for debian/rules
ii  dpatch2.0.26 patch maintenance system for Debia
ii  make  3.81-3 The GNU version of the make util
ii  module-assistant  0.10.11tool to make module package creati

Versions of packages squashfs-source recommends:
ii  squashfs-tools1:3.2r2-3  Tool to create and append to squas

-- no debconf information


03-remove-slab.dpatch
Description: application/shellscript


Bug#422843: usplash-theme-debian: should offer usplash-artwork.so alternative not usplash-theme

2007-05-08 Thread Mario Izquierdo (mariodebian)
Package: usplash-theme-debian
Version: 1
Severity: important
Tags: patch



Other distros (Ubuntu) and other debian packages (debian-edu-artwork-usplash)
offers /etc/alternatives/usplash-artwork.so and this package should offer same 
alternative.

Patch:

diff -ur usplash-theme-debian-1/debian/postinst 
usplash-theme-debian-1.my/debian/postinst
--- usplash-theme-debian-1/debian/postinst  2007-04-23 20:17:49.0 
+0200
+++ usplash-theme-debian-1.my/debian/postinst   2007-05-08 14:20:43.0 
+0200
@@ -24,7 +24,7 @@
 
 case $1 in
 configure)
-   update-alternatives --install $TARGET usplash-theme $SOURCE $PRIORITY
+   update-alternatives --install $TARGET usplash-artwork.so $SOURCE 
$PRIORITY
 ;;
 
 abort-upgrade|abort-remove|abort-deconfigure)
diff -ur usplash-theme-debian-1/debian/prerm 
usplash-theme-debian-1.my/debian/prerm
--- usplash-theme-debian-1/debian/prerm 2007-04-23 20:17:49.0 +0200
+++ usplash-theme-debian-1.my/debian/prerm  2007-05-08 14:20:59.0 
+0200
@@ -21,7 +21,7 @@
 
 case $1 in
 remove|upgrade|deconfigure)
-   update-alternatives --remove usplash-theme $SOURCE
+   update-alternatives --remove usplash-artwork.so $SOURCE
 ;;
 failed-upgrade)
 ;;


Bye ;)


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

Kernel: Linux 2.6.20-1-k7 (SMP w/1 CPU core)
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 usplash-theme-debian depends on:
ii  libc6 2.5-7  GNU C Library: Shared libraries
ii  usplash   0.4-43-1   Userspace bootsplash utility

usplash-theme-debian recommends no packages.

-- no debconf information


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



Bug#419735: unionfs-source: Patch to compile unionfs module in new debian 2.6.20-1 kernels

2007-04-17 Thread Mario Izquierdo (mariodebian)
Package: unionfs-source
Version: 1.4+debian-4
Severity: important
Tags: patch


I attach a diff file with unionfs patch to compile in 2.6.20 kernel



-- System Information:
Debian Release: 4.0
  APT prefers testing
  APT policy: (990, 'testing'), (90, 'unstable')
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)

Versions of packages unionfs-source depends on:
ii  bzip2 1.0.3-6high-quality block-sorting file co
ii  debhelper 5.0.42 helper programs for debian/rules
ii  make  3.81-2 The GNU version of the make util
ii  module-assistant  0.10.8 tool to make module package creati

Versions of packages unionfs-source recommends:
ii  unionfs-tools   1.4+debian-4 Tools to manage unionfs filesystem

-- no debconf information
diff -ur -x Module.symvers -x control.backup -x fistdev.mk -x Makefile -x control unionfs.orig/build/lookup.c unionfs/build/lookup.c
--- unionfs.orig/build/lookup.c	2007-04-17 11:09:00.0 +0200
+++ unionfs/build/lookup.c	2007-01-29 00:55:07.0 +0100
@@ -382,7 +382,7 @@
 }
 
 /* The dentry cache is just so we have properly sized dentries. */
-static struct kmem_cache *unionfs_dentry_cachep;
+static kmem_cache_t *unionfs_dentry_cachep;
 int init_dentry_cache(void)
 {
 	unionfs_dentry_cachep =
@@ -399,10 +399,9 @@
 {
 	if (!unionfs_dentry_cachep)
 		return;
-	kmem_cache_destroy(unionfs_dentry_cachep);
-	/*if (kmem_cache_destroy(unionfs_dentry_cachep))
+	if (kmem_cache_destroy(unionfs_dentry_cachep))
 		printk(KERN_ERR
-		   unionfs_dentry_cache: not all structures were freed\n);*/
+		   unionfs_dentry_cache: not all structures were freed\n);
 	return;
 }
 
@@ -421,7 +420,7 @@
 	spin_lock(dentry-d_lock);
 	if (!dtopd_nocheck(dentry)) {
 		dtopd_lhs(dentry) = (struct unionfs_dentry_info *)
-		kmem_cache_alloc(unionfs_dentry_cachep, GFP_ATOMIC);
+		kmem_cache_alloc(unionfs_dentry_cachep, SLAB_ATOMIC);
 		if (!dtopd_nocheck(dentry))
 			goto out;
 		init_MUTEX_LOCKED(dtopd_nocheck(dentry)-udi_sem);
diff -ur -x Module.symvers -x control.backup -x fistdev.mk -x Makefile -x control unionfs.orig/build/rdstate.c unionfs/build/rdstate.c
--- unionfs.orig/build/rdstate.c	2007-04-17 10:42:50.0 +0200
+++ unionfs/build/rdstate.c	2007-01-29 00:55:07.0 +0100
@@ -26,11 +26,11 @@
 /* There are two structures here, rdstate which is a hash table
  * of the second structure which is a filldir_node. */
 
-/* This is a kmem_cache for filldir nodes, because we allocate a lot of them
+/* This is a kmem_cache_t for filldir nodes, because we allocate a lot of them
  * and they shouldn't waste memory.  If the node has a small name (as defined
  * by the dentry structure), then we use an inline name to preserve kmalloc
  * space. */
-static struct kmem_cache *unionfs_filldir_cachep;
+static kmem_cache_t *unionfs_filldir_cachep;
 int init_filldir_cache(void)
 {
 	unionfs_filldir_cachep =
@@ -47,11 +47,10 @@
 {
 	if (!unionfs_filldir_cachep)
 		return;
-	kmem_cache_destroy(unionfs_filldir_cachep);
-	/*if (kmem_cache_destroy(unionfs_filldir_cachep)) {
+	if (kmem_cache_destroy(unionfs_filldir_cachep)) {
 		printk(KERN_ERR
 		   unionfs_filldir_cache: not all structures were freed\n);
-	}*/
+	}
 	return;
 }
 
@@ -254,7 +253,7 @@
 
 	newnode =
 	(struct filldir_node *)kmem_cache_alloc(unionfs_filldir_cachep,
-		GFP_KERNEL);
+		SLAB_KERNEL);
 	if (!newnode)
 		goto out;
 
diff -ur -x Module.symvers -x control.backup -x fistdev.mk -x Makefile -x control unionfs.orig/build/sioq.c unionfs/build/sioq.c
--- unionfs.orig/build/sioq.c	2007-04-17 11:10:04.0 +0200
+++ unionfs/build/sioq.c	2007-01-29 00:55:07.0 +0100
@@ -41,68 +41,67 @@
 		destroy_workqueue(sioq);
 }
 
-void run_sioq(work_func_t func, struct sioq_args *args)
+void run_sioq(void (*func)(void *arg), struct sioq_args *args)
 {
-	/*DECLARE_WORK(wk, func, args-comp);*/
-	INIT_WORK(args-tqueue, func);
+	DECLARE_WORK(wk, func, args-comp);
 
 	init_completion(args-comp);
-	while (!queue_work(sioq, args-tqueue)) {
+	while (!queue_work(sioq, wk)) {
 		// TODO: do accounting if needed
 		schedule();
 	}
 	wait_for_completion(args-comp);
 }
 
-void __unionfs_create(struct work_struct *work)
+void __unionfs_create(void *data)
 {
-	struct sioq_args *args = container_of(work, struct sioq_args, tqueue);
+	struct sioq_args *args = data;
 	struct create_args *c = args-create;
 	args-err = vfs_create(c-parent, c-dentry, c-mode, c-nd);
 	complete(args-comp);
 }
 
-void __unionfs_mkdir(struct work_struct *work)
+void __unionfs_mkdir(void *data)
 {
-	struct sioq_args *args = container_of(work, struct sioq_args, tqueue);
+	struct sioq_args *args = data;
 	struct mkdir_args *m = args-mkdir;
 	args-err = vfs_mkdir(m-parent, m-dentry, m-mode);
 	complete(args-comp);
 }
 
-void __unionfs_mknod(struct 

Bug#414412: ITP: initramfs-tools-tcos -- TCOS, a debian thin client operating system

2007-03-11 Thread Mario Izquierdo (mariodebian)
Package: wnpp
Severity: wishlist
Owner: Mario Izquierdo (mariodebian) [EMAIL PROTECTED]


* Package name: initramfs-tools-tcos
  Version : 0.67
  Upstream Author : Mario Izquierdo (mariodebian) [EMAIL PROTECTED]
* URL : http://cls-tcos.forja.rediris.es
* License : GPL
  Programming Lang: Shell, Python
  Description : TCOS, a debian thin client operating system

(Include the long description here.)

TCOS is a new thin client implementation based on debian kernel, libs and bins.
The image generation is very simple, TCOS add some hooks to initramfs-tools to 
build a initramfs file with all app that thin client have to use:

dhclient
udev
wireless
discover
ssh server (dropbear)
sound (alsa modules and libs)
pulseaudio (networked sound server better than esound)
vnc server
rdesktop client
Xorg (with a small number of files)

Thin clients with more than 38 Mb of RAM will boot in PXES mode, downloading 
with tftp the needed files.

Thin clients with less than 38 Mb of RAM will try to mount a NFS server shared 
dir where gentcos has uncompressed initramfs image.
Not complete distro like LTSP do.

This package is NATIVE PACKAGE, because it hard depends on debian 
(or debian based) distro.


This is the first package of other TCOS packages:

* tcosconfig:  TcosConfig is a GUI for gentcos command line
* tcosmonitor: TcosMonitor is a teacher/admin control center to admin 
   a TCOS classroom (similar to Ubuntu Thin Client Manager)

Some info in GFORGE web page:
http://cls-tcos.forja.rediris.es/


Debian / Ubuntu repository:
http://cls-tcos.forja.rediris.es/repos

Some info and screenshots (in spanish):
http://soleup.eup.uva.es/trac


I have uploaded to mentors.debian.net with this result:

It builds these binary packages:
gentcos- Image generation scripts, and tftp config for TCOS
initramfs-tools-tcos - tools for generating a thin client bootable image: TCOS
tcos   - new thin client implementation
tcos-server-utils - TCOS server utils (gdm autologin or sshfs mount)
tcos-usplash - usplash boot image for TCOS

The package is lintian clean.

The package can be found on mentors.debian.net:
- URL: http://mentors.debian.net/debian/pool/main/i/initramfs-tools-tcos
- Source repository: deb-src http://mentors.debian.net/debian unstable main 
contrib non-free
- dget 
http://mentors.debian.net/debian/pool/main/i/initramfs-tools-tcos/initramfs-tools-tcos_0.67.dsc

I would be glad if someone uploaded this package for me.

Kind regards
 Mario Izquierdo (mariodebian)


-- System Information:
Debian Release: 4.0
  APT prefers unstable
  APT policy: (990, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18-4-k7
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#411076: liferea crash when watching last unread post

2007-02-15 Thread Mario Izquierdo (mariodebian)
Package: liferea
Version: 1.0.27-1
Severity: important


Click on Unread virtual dir and read all unreads feeds.
When last post is readed, unselect it (Ctrl+click)
liferea have a segmentation fault and close.

Using xulrunner as HTML feed engine.


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

Versions of packages liferea depends on:
ii  dbus-1-utils   1.0.2-1   simple interprocess messaging syst
ii  gconf2 2.16.0-3  GNOME configuration database syste
ii  libatk1.0-01.12.4-1  The ATK accessibility toolkit
ii  libc6  2.3.6.ds1-11  GNU C Library: Shared libraries
ii  libcairo2  1.2.4-4   The Cairo 2D vector graphics libra
ii  libdbus-1-31.0.2-1   simple interprocess messaging syst
ii  libdbus-glib-1-2   0.71-3simple interprocess messaging syst
ii  libfontconfig1 2.4.2-1   generic font configuration library
ii  libgconf2-42.16.0-3  GNOME configuration database syste
ii  libglib2.0-0   2.12.6-2  The GLib library of C routines
ii  libgtk2.0-02.8.20-5  The GTK+ graphical user interface 
ii  libice61:1.0.1-2 X11 Inter-Client Exchange library
ii  liborbit2  1:2.14.4-1libraries for ORBit2 - a CORBA ORB
ii  libpango1.0-0  1.14.8-5  Layout and rendering of internatio
ii  libsm6 1:1.0.1-3 X11 Session Management library
ii  libx11-6   2:1.0.3-5 X11 client-side library
ii  libxcursor11.1.7-4   X cursor management library
ii  libxext6   1:1.0.1-2 X11 miscellaneous extension librar
ii  libxfixes3 1:4.0.1-5 X11 miscellaneous 'fixes' extensio
ii  libxi6 1:1.0.1-4 X11 Input extension library
ii  libxinerama1   1:1.0.1-4.1   X11 Xinerama extension library
ii  libxml22.6.27.dfsg-1 GNOME XML library
ii  libxrandr2 2:1.1.0.2-5   X11 RandR extension library
ii  libxrender11:0.9.1-3 X Rendering Extension client libra
ii  liferea-gtkhtml1.0.27-1  gtkhtml-based rendering library fo
ii  liferea-xulrunner  1.0.27-1  xulrunner-based rendering library 
ii  zlib1g 1:1.2.3-13compression library - runtime

liferea recommends no packages.

-- no debconf information


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



Bug#397754: python-notify: Please conflict with libdbus-1-2 at build time

2006-11-09 Thread Mario Izquierdo (mariodebian)
Package: python-notify
Version: 0.1.0-2
Severity: important


python-notify is build in a system with libdbus-1-2 and the so file
is linked to libdbus-1.so.2 that isn't found in debian testing/unstable mirrors

~$ dpkg -L python-notify|grep so$
/usr/lib/python-support/python-notify/python2.4/gtk-2.0/pynotify/_pynotify.so

~$ ldd 
/usr/lib/python-support/python-notify/python2.4/gtk-2.0/pynotify/_pynotify.so | 
grep dbus
libdbus-glib-1.so.2 = /usr/lib/libdbus-glib-1.so.2 (0xa794d000)
libdbus-1.so.2 = not found
libdbus-1.so.3 = /usr/lib/libdbus-1.so.3 (0xa7754000)

~$ python
Python 2.4.4c0 (#2, Jul 30 2006, 15:43:58)
[GCC 4.1.2 20060715 (prerelease) (Debian 4.1.1-9)] on linux2
Type help, copyright, credits or license for more information.
 import pynotify
Traceback (most recent call last):
  File stdin, line 1, in ?
  File /var/lib/python-support/python2.4/gtk-2.0/pynotify/__init__.py, line 
1, in ?
from _pynotify import *
ImportError: libdbus-1.so.2: cannot open shared object file: No such file or 
directory



Possible patch:

--- debian/control  2006-11-08 12:57:11.0 +0100
+++ debian/control~ 2006-11-09 10:07:27.0 +0100
@@ -4,6 +4,7 @@
 Maintainer: Gustavo Franco [EMAIL PROTECTED]
 Uploaders:  Debian Python Modules Team [EMAIL PROTECTED]
 Build-Depends: debhelper (= 5.0.37.2), cdbs (= 0.4.43), python-all-dev (= 
2.3.5-7), python-support (= 0.3), pkg-config (= 0.20-1), libnotify-dev (= 
0.4.0-1), python-gtk2-dev (= 2.8.6-3)
+Build-Conflicts: libdbus-1-2
 Standards-Version: 3.7.2


Thanks

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

Versions of packages python-notify depends on:
ii  libnotify10.4.2-1+b1 sends desktop notifications to a n
ii  python2.4.3-11   An interactive high-level object-o
ii  python-gtk2   2.8.6-6Python bindings for the GTK+ widge
ii  python-support0.5.4  automated rebuilding support for p

python-notify recommends no packages.

-- no debconf information


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



Bug#391189: python-iconvcodec: Changelog says that is build for python2.4, builded for python2.3

2006-10-05 Thread Mario Izquierdo (mariodebian)
Package: python-iconvcodec
Version: 1.1.2-3+b1
Severity: normal


python-iconvcodec package says in Debian changelog:

python-iconvcodec (1.1.2-3+b1) unstable; urgency=low

  * Binary-only non-maintainer upload for i386; no source changes.
  * Rebuild against python 2.4

  -- Debian/i386 Build Daemon buildd_i386-ninsei  Sat, 19 Aug 2006 21:56:02 
-0700

But dpkg -L says:

$ dpkg -L python-iconvcodec| grep -v doc
/.
/usr
/usr/lib
/usr/lib/python2.3
/usr/lib/python2.3/site-packages
/usr/lib/python2.3/site-packages/iconv_codec.py
/usr/lib/python2.3/site-packages/_iconv_codec.so
/usr/lib/python2.3/site-packages/iconv_codec.pth



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

Versions of packages python-iconvcodec depends on:
ii  libc62.3.6.ds1-4 GNU C Library: Shared libraries
ii  python   2.4.3-11An interactive high-level object-o
ii  python-central   0.5.5   register and build utility for Pyt

python-iconvcodec recommends no packages.

-- no debconf information


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



Bug#388511: libphp-pclzip: This package breaks tab autocompletion with dpkg

2006-09-20 Thread Mario Izquierdo (mariodebian)
Package: libphp-pclzip
Version: 2.5-1
Severity: important


When press tab twice using dpkg command see this error:

~$ dpkg -L libphgrep-status: /var/lib/dpkg/status:6319: expected a colon.
~$ dpkg -L libph

In line 6319 of my /var/lib/dpkg/status file, I have this:

Package: libphp-pclzip
Status: install ok installed
Priority: optional
Section: web
Installed-Size: 296
Maintainer: Jose Carlos Medeiros [EMAIL PROTECTED]
Architecture: all
Version: 2.5-1
=Depends: php4 | php5 | php4-cgi | php5-cgi | php4-cli | php5-cli | 
libapache2-mod-php4 | libapache2-mod-php5 | libapachemod-php4 | 
libapache-mod-php5
Description: zip archive manager class for PHP
 PclZip library offers compression and extraction functions for Zip formatted
 archives (WinZip, PKZIP).
 PclZip gives you the ability to manipulate zip formatted arhives. You can
 create an archive, list the content and extract all its content in the file
 system.
 PclZip defines an object class which represent a Zip Archive. This class
 manages the archive properties and offers access method and actions on the
 archive.
 .

I have added = in line 6319

Don't know if it is from depends of this package or for bash autocompletion of 
dpkg.


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

Versions of packages libphp-pclzip depends on:
ii  libapache2-mod-php4   4:4.4.4-1  server-side, HTML-embedded scripti
ii  php4  4:4.4.4-1  server-side, HTML-embedded scripti
ii  php4-cgi  4:4.4.4-1  server-side, HTML-embedded scripti
ii  php4-cli  4:4.4.4-1  command-line interpreter for the p
ii  php5-cli  5.1.6-1command-line interpreter for the p

libphp-pclzip recommends no packages.

-- no debconf information


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



Bug#384043: initramfs-tools: hook manual_add_modules don't copy/link some kernel modules

2006-08-21 Thread Mario Izquierdo (mariodebian)
Package: initramfs-tools
Version: 0.75
Severity: important


I'm working on a small thin client project based on initramfs called TCOS[1].

This is similar to pxes, but I copy my debian installed apps and libs 
into initramfs and boot from network throught tftp.

In older version of initramfs-tools sound work ok, but in newer not.
Not know when sound break.

Tcos have a dir in /etc like this:

/etc/tcos
|-- hooks
|   |-- tcosbin
|   `-- tcosmods
|-- hooks-addons
|   |-- debug
|   |-- devices
|   |-- dhclient
|   |-- discover
|   |-- freenx
|   |-- hwclock
|   |-- inetd
|   |-- italc
|   |-- sound
|   |-- ssh
|   |-- tcos
|   |-- tcosmonitor
|   |-- tinylogin
|   |-- vnc
|   |-- web_browser
|   `-- xorg
|-- initramfs.conf
|-- scripts
|   |-- tcos
|   |-- tcos-bottom
|   |   |-- 05inittcos
|   |   |-- 10initsound
|   |   |-- 20devices
|   |   |-- 25freespace
|   |   |-- 30startx
|   |   `-- 50error
|   |-- tcos-premount
|   |   |-- 05network
|   |   |-- 10fstab
|   |   |-- 15uselocal
|   |   |-- 20swapon
|   |   |-- 25download_settings
|   |   |-- 30sqmount
|   |   |-- 50ldconfig
|   |   `-- 60autofs
|   `-- tcos-top
|   `-- 10foo

There are some file not listed

I create initramfs images with:

mkinitramfs -d /etc/tcos -o /tftpboot/tcos/initramfs 2.6.16-1-486

mkinitramfs work ok and generate initramfs that boot ok but without sound.

The important hook is tcosmods that copy some kernel modules into 
initramfs with manual_add_modules:

A simple hook like next will copy this modules into initramfs:

##  8  ###

MODULES=ide-core ide-disk ide-generic ide-cd cdrom isofs ext3 vfat
 floppy autofs autofs4 ehci-hcd ohci-hcd uhci-hcd sl811-hcd usbcore
 usb-storage scsi_mod sr_mod sd_mod loop unionfs squashfs nls_cp437
 nls_iso8859-1 pcnet32 3c59x video psmouse mousedev evbug evdev agpgart
 vgastate lkkbd xtkbd pcspkr soundcore snd-seq-device snd-pcm snd-rawmidi
 snd snd-hwdep snd-mixer-oss snd-pcm-oss snd-ac97-codec snd-ens1371 snd-via82xx
 piix via82cxxx parport_pc

for x in ${MODULES} ; do
  echo Adding module ${x}
  manual_add_modules ${x}
done

##  8  ###

But, if I check later, next file/modules are not into initramfs:

snd-pcm.ko
snd.ko
snd-ens1371.ko
snd-via82xx.ko

If I debug manual_add_modules i obtain for example with snd-via82xx:

+ set -x
+ manual_add_modules snd-via82xx
++ modprobe --set-version=2.6.16-1-486 --show-depends snd-via82xx
++ awk '/^insmod/ { print $2 }'
+ for mam_x in '$(modprobe --set-version=${version} --show-depends ${1} 
2/dev/null | awk '\''/^insmod/ { print $2 }'\'')'
+ '[' -e 
/tmp/mkinitramfs_t31173//lib/modules/2.6.16-1-486/kernel/sound/soundcore.ko ']'
+ continue
+ for mam_x in '$(modprobe --set-version=${version} --show-depends ${1} 
2/dev/null | awk '\''/^insmod/ { print $2 }'\'')'
+ '[' -e 
/tmp/mkinitramfs_t31173//lib/modules/2.6.16-1-486/kernel/sound/core/seq/snd-seq-device.ko
 ']'
+ continue
+ for mam_x in '$(modprobe --set-version=${version} --show-depends ${1} 
2/dev/null | awk '\''/^insmod/ { print $2 }'\'')'
+ '[' -e 
/tmp/mkinitramfs_t31173//lib/modules/2.6.16-1-486/kernel/sound/core/snd-rawmidi.ko
 ']'
+ continue
+ for mam_x in '$(modprobe --set-version=${version} --show-depends ${1} 
2/dev/null | awk '\''/^insmod/ { print $2 }'\'')'
+ '[' -e 
/tmp/mkinitramfs_t31173//lib/modules/2.6.16-1-486/kernel/sound/drivers/mpu401/snd-mpu401-uart.ko
 ']'
++ dirname 
/lib/modules/2.6.16-1-486/kernel/sound/drivers/mpu401/snd-mpu401-uart.ko
+ mkdir -p 
/tmp/mkinitramfs_t31173//lib/modules/2.6.16-1-486/kernel/sound/drivers/mpu401
++ dirname 
/lib/modules/2.6.16-1-486/kernel/sound/drivers/mpu401/snd-mpu401-uart.ko
+ ln -s 
/lib/modules/2.6.16-1-486/kernel/sound/drivers/mpu401/snd-mpu401-uart.ko 
/tmp/mkinitramfs_t31173//lib/modules/2.6.16-1-486/kernel/sound/drivers/mpu401
+ '[' -n n -a n = y ']'
+ for mam_x in '$(modprobe --set-version=${version} --show-depends ${1} 
2/dev/null | awk '\''/^insmod/ { print $2 }'\'')'
+ '[' -e 
/tmp/mkinitramfs_t31173//lib/modules/2.6.16-1-486/kernel/sound/core/snd-page-alloc.ko
 ']'
+ continue
+ for mam_x in '$(modprobe --set-version=${version} --show-depends ${1} 
2/dev/null | awk '\''/^insmod/ { print $2 }'\'')'
+ '[' -e 
/tmp/mkinitramfs_t31173//lib/modules/2.6.16-1-486/kernel/sound/core/snd-timer.ko
 ']'
+ continue
+ for mam_x in '$(modprobe --set-version=${version} --show-depends ${1} 
2/dev/null | awk '\''/^insmod/ { print $2 }'\'')'
+ '[' -e 
/tmp/mkinitramfs_t31173//lib/modules/2.6.16-1-486/kernel/sound/pci/ac97/snd-ac97-bus.ko
 ']'
+ continue
+ for mam_x in '$(modprobe --set-version=${version} --show-depends ${1} 
2/dev/null | awk '\''/^insmod/ { print $2 }'\'')'
+ '[' -e 
/tmp/mkinitramfs_t31173//lib/modules/2.6.16-1-486/kernel/sound/pci/ac97/snd-ac97-codec.ko
 ']'
+ continue
+ for mam_x in '$(modprobe --set-version=${version} --show-depends ${1} 
2/dev/null | awk '\''/^insmod/ { print $2 }'\'')'
+ '[' -e 

Bug#372593: ITP: usbvision -- This is a driver for the USB video bridge USBVision from Zoran/Nogatech.

2006-06-10 Thread Mario Izquierdo (mariodebian)
Package: wnpp
Severity: wishlist
Owner: Mario Izquierdo (mariodebian) [EMAIL PROTECTED]



* Package name: usbvision
  Version : 0.9.7-1cvs20060608
  Upstream Author : Mario Izquierdo (mariodebian) [EMAIL PROTECTED]
* URL : http://usbvision.sourceforge.net/
* License : GPL
  Programming Lang: C, kernel module
  Description : This is a driver for the USB video bridge USBVision from 
Zoran/Nogatech.

 This is a driver for the USB video bridge USBVision
 from Zoran/Nogatech, a USB-only cable used in many webcam  devices.
 It supports streaming and capture of color or monochrome video via the 
Video4Linux
 API. Most V4L apps are compatible with it, but a few video-conferencing 
programs
 do not work yet.
 .
 Homepage: http://usbvision.sourceforge.net/


USBVision is a kernel module needed to some USB TV cards:
  see: http://usbvision.sourceforge.net/index.php?page=device

I have package cvs sources (need this version for kernel = 2.6.16)
compatible with module-assistant.

Can be downloaded from:
   http://soleup.eup.uva.es/usbvision/

deb binary modules (only 486 and k7) generated with:
   m-a -t -k $(echo /usr/src/linux-headers*[486k7]) build usbvision


-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (990, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.16-1-k7
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#361842: e2fsprogs: Unable to format as ext3 crypt file

2006-04-10 Thread Mario Izquierdo (mariodebian)
Package: e2fsprogs
Version: 1.38+1.39-WIP-2006.03.29-2.1
Severity: important


I have created a small crypt filesystem with this commands:

  # load modules
  modprobe loop
  modprobe dm_mod
  modprobe dm_crypt

  # create virtual disk
  dd if=/dev/zero of=./secret.img bs=15k count=1

  # loopback
  losetup /dev/loop0 ./secret.img

  # this ask for pass twice
  cryptsetup -c aes -y create secret /dev/loop0

  # Then format as ext3
  mkfs.ext3 /dev/mapper/secret

Output error for mkfs.ext3 (with LC_ALL=C):

  mke2fs 1.39-WIP (29-Mar-2006)
  Filesystem label=
  OS type: Linux
  Block size=1024 (log=0)
  Fragment size=1024 (log=0)
  37544 inodes, 15 blocks
  7500 blocks (5.00%) reserved for the super user
  First data block=1
  19 block groups
  8192 blocks per group, 8192 fragments per group
  1976 inodes per group
  Superblock backups stored on blocks:
  8193, 24577, 40961, 57345, 73729

  Writing inode tables: done
  Creating journal (4096 blocks): mkfs.ext3: Device or resource busy
  while trying to create journal


If I format with ext2 or vfat works right.
I have probed first to format as ext2 and then add journal like this

 mkfs.ext2 /dev/mapper/secret
 tune2fs -j /dev/mapper/secret

and works sucessfully.

I suppose this is a bug of mkfs.ext3 binary, with old versions
of e2fsprogs my script works ok.

If I try to mount mkfs.ext3 device:
  mount -t ext3 /dev/mapper/secret /mnt/secret

dmesg said:
  VFS: Can't find ext3 filesystem on dev dm-0.



-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (990, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.15-1-k7
Locale: LANG=es_ES.UTF-8, LC_CTYPE=es_ES.UTF-8 (charmap=UTF-8)

Versions of packages e2fsprogs depends on:
ii  e2fslibs1.38+1.39-WIP-2006.03.29-2.1 ext2 filesystem libraries
ii  libblkid1   1.38+1.39-WIP-2006.03.29-2.1 block device id library
ii  libc6   2.3.6-5  GNU C Library: Shared libraries an
ii  libcomerr2  1.38+1.39-WIP-2006.03.29-2.1 common error description library
ii  libdevmappe 2:1.02.03-1  The Linux Kernel Device Mapper use
ii  libselinux1 1.30-1   SELinux shared libraries
ii  libsepol1   1.12-1   Security Enhanced Linux policy lib
ii  libss2  1.38+1.39-WIP-2006.03.29-2.1 command-line interface parsing lib
ii  libuuid11.38+1.39-WIP-2006.03.29-2.1 universally unique id library

e2fsprogs recommends no packages.

-- no debconf information


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



Bug#345888: debian/rules patch to install gtkmozembed.so in libgtk-mozembed-ruby1.8

2006-01-28 Thread Mario Izquierdo (mariodebian)
Package: libgtk-mozembed-ruby1.8
Version: 0.3.1-3
Followup-For: Bug #345888


If I build libgtk-mozembed-ruby1.8 with 

$ apt-get source libgtk-mozembed-ruby1.8
$ cd libgtk-mozembed-ruby-0.3.1
$ debuild

find shows this:

$ find debian/
debian/
debian/docs
debian/libgtk-mozembed-ruby
debian/libgtk-mozembed-ruby/usr
debian/libgtk-mozembed-ruby/usr/share
debian/libgtk-mozembed-ruby/usr/share/doc
debian/libgtk-mozembed-ruby/usr/share/doc/libgtk-mozembed-ruby
debian/libgtk-mozembed-ruby/usr/share/doc/libgtk-mozembed-ruby/README
debian/libgtk-mozembed-ruby/usr/share/doc/libgtk-mozembed-ruby/copyright
debian/libgtk-mozembed-ruby/usr/share/doc/libgtk-mozembed-ruby/changelog.Debian.gz
debian/libgtk-mozembed-ruby/DEBIAN
debian/libgtk-mozembed-ruby/DEBIAN/md5sums
debian/libgtk-mozembed-ruby/DEBIAN/control
debian/control
debian/files
debian/rules
debian/changelog
debian/compat
debian/copyright
debian/libgtk-mozembed-ruby1.8
debian/libgtk-mozembed-ruby1.8/usr
debian/libgtk-mozembed-ruby1.8/usr/share
debian/libgtk-mozembed-ruby1.8/usr/share/doc
debian/libgtk-mozembed-ruby1.8/usr/share/doc/libgtk-mozembed-ruby1.8
debian/libgtk-mozembed-ruby1.8/usr/share/doc/libgtk-mozembed-ruby1.8/copyright
debian/libgtk-mozembed-ruby1.8/usr/share/doc/libgtk-mozembed-ruby1.8/examples
debian/libgtk-mozembed-ruby1.8/usr/share/doc/libgtk-mozembed-ruby1.8/examples/ruby-gecko.rb
debian/libgtk-mozembed-ruby1.8/usr/share/doc/libgtk-mozembed-ruby1.8/changelog.Debian.gz
debian/libgtk-mozembed-ruby1.8/DEBIAN
debian/libgtk-mozembed-ruby1.8/DEBIAN/md5sums
debian/libgtk-mozembed-ruby1.8/DEBIAN/control
debian/libgtk-trayicon-ruby1.8
debian/libgtk-trayicon-ruby1.8/usr
debian/libgtk-trayicon-ruby1.8/usr/lib
debian/libgtk-trayicon-ruby1.8/usr/lib/ruby
debian/libgtk-trayicon-ruby1.8/usr/lib/ruby/usr
debian/libgtk-trayicon-ruby1.8/usr/lib/ruby/usr/local
debian/libgtk-trayicon-ruby1.8/usr/lib/ruby/usr/local/lib
debian/libgtk-trayicon-ruby1.8/usr/lib/ruby/usr/local/lib/site_ruby
debian/libgtk-trayicon-ruby1.8/usr/lib/ruby/usr/local/lib/site_ruby/1.8
debian/libgtk-trayicon-ruby1.8/usr/lib/ruby/usr/local/lib/site_ruby/1.8/i486-linux
debian/libgtk-trayicon-ruby1.8/usr/lib/ruby/usr/local/lib/site_ruby/1.8/i486-linux/gtkmozembed.so
debian/libgtk-trayicon-ruby1.8/usr/lib/ruby/usr/local/lib/site_ruby/1.8/gtkmozembed.rb


gtkmozembed.so is installed in libgtk-trayicon-ruby1.8 not
libgtk-mozembed-ruby1.8, and in an unssual dir.

Generated Makefile with ruby1.8 extconf.rb --enable-fullwidth-reverse-solidus
dont' have correct paths.

Possible patch:

--- debian/rules2006-01-28 15:10:10.0 +0100
+++ ../../rules 2006-01-28 15:32:06.0 +0100
@@ -26,10 +26,14 @@
dh_clean -k
dh_installdirs

-   $(MAKE) DESTDIR=$(CURDIR)/debian/libgtk-trayicon-ruby1.8/usr/lib/ruby 
install
+   $(MAKE) DESTDIR=$(CURDIR)/debian/libgtk-mozembed-ruby1.8 install
 #  $(MAKE) sitedir=$(CURDIR)/debian/libgtk-mozembed-ruby1.8/usr/lib/ruby 
install
touch install-stamp
-
+   mkdir -p 
$(CURDIR)/debian/libgtk-mozembed-ruby1.8/usr/lib/ruby/1.8/i486-linux
+   mv 
$(CURDIR)/debian/libgtk-mozembed-ruby1.8/usr/local/lib/site_ruby/1.8/i486-linux/gtkmozembed.so
  
$(CURDIR)/debian/libgtk-mozembed-ruby1.8/usr/lib/ruby/1.8/i486-linux
+   mv 
$(CURDIR)/debian/libgtk-mozembed-ruby1.8/usr/local/lib/site_ruby/1.8/gtkmozembed.rb
  
$(CURDIR)/debian/libgtk-mozembed-ruby1.8/usr/lib/ruby/1.8/
+   rm -rf $(CURDIR)/debian/libgtk-mozembed-ruby1.8/usr/local
+
 binary-arch: build install
dh_testdir -a
dh_testroot -a

This works for me!!!

ruby /usr/share/doc/libgtk-mozembed-ruby1.8/examples/ruby-gecko.rb
works again.


-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (990, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.15-1-486
Locale: LANG=es_ES.UTF-8, LC_CTYPE=es_ES.UTF-8 (charmap=UTF-8)

Versions of packages libgtk-mozembed-ruby1.8 depends on:
ii  libatk1.0-0   1.10.3-1   The ATK accessibility toolkit
ii  libc6 2.3.5-12   GNU C Library: Shared libraries an
ii  libcairo2 1.0.2-3The Cairo 2D vector graphics libra
ii  libfontconfig12.3.2-1.1  generic font configuration library
ii  libglib2.0-0  2.8.6-1The GLib library of C routines
ii  libgtk2.0-0   2.8.10-1   The GTK+ graphical user interface 
ii  libpango1.0-0 1.10.2-1   Layout and rendering of internatio
ii  libruby1.81.8.4-1Libraries necessary to run Ruby 1.
ii  libx11-6  6.9.0.dfsg.1-4 X Window System protocol client li
ii  libxcursor1   1.1.3-1X cursor management library
ii  libxext6  6.9.0.dfsg.1-4 X Window System miscellaneous exte
ii  libxi66.9.0.dfsg.1-4 X Window System Input extension li
ii  libxinerama1  6.9.0.dfsg.1-4 X Window 

Bug#348544: tuxpaint-stamps-default: Wrong spanish translation of euro coins

2006-01-17 Thread Mario Izquierdo (mariodebian)
Package: tuxpaint-stamps-default
Severity: normal
Tags: l10n


In Spain (spanish) the cents of euro are céntimos not centavos.

Files affected:
/usr/share/tuxpaint/stamps/photo/money/euro/coins/*.txt



-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.12-1-386
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#337599: linux-image-2.6.13-1-k7: Please make SECURITY_CAPABILITIES as module

2005-11-05 Thread Mario Izquierdo (mariodebian)
Package: linux-image-2.6.13-1-k7
Version: 2.6.13-1
Severity: wishlist
Tags: experimental

I want to compile realtime-lsm module in 2.6.13-1-k7 but
module-asisstant don't work:

# rgrep CAPABILITIES /boot/config-2.6.12-1-k7
CONFIG_SECURITY_CAPABILITIES=m

# rgrep CAPABILITIES /boot/config-2.6.13-1-k7
CONFIG_SECURITY_CAPABILITIES=y

In 2.6.12-1-k7 is module.

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (990, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.13-1-k7
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=UTF-8) (ignored: LC_ALL 
set to es_ES.UTF-8)

Versions of packages linux-image-2.6.13-1-k7 depends on:
ii  initrd-tools  0.1.82 tools to create initrd image for p
ii  module-init-tools 3.2-pre9-2 tools for managing Linux kernel mo

linux-image-2.6.13-1-k7 recommends no packages.

-- no debconf information


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



Bug#315439: nano crash editing files with large lines

2005-06-22 Thread Mario Izquierdo (mariodebian)
Package: nano
Version: 1.3.7-4
Severity: normal

Nano crash editing file, I think that it's caused by large
lines or not visible caracters.

Reproducible:

1.- Download sample file linuxrc, can be downloaded from:
http://soleup.eup.uva.es/linuxrc

2.- nano linuxrc
3.- search (Ctrl + W) loadmodules
4.- go down to line 162
5.- Crash

Configs:
I have /etc/nanorc debian default and nanorc edited colors
file and crash anyway.

Before update (today) nano never crash.


-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.11-1-k7
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15)

Versions of packages nano depends on:
ii  libc6   2.3.2.ds1-22 GNU C Library: Shared libraries an
ii  libncursesw55.4-7Shared libraries for terminal hand

nano recommends no packages.

-- no debconf information


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