Bug#449143: new version available

2007-11-03 Thread Bluefuture
Package: festival-it
Severity: wishlist

Italian voices ver. 2.0 are available[1] also for OGIresLPC festival module and 
IMS PaintE module all covered by GPLv2.

[1]http://www.pd.istc.cnr.it/FESTIVAL/home/default.htm

--- System information. ---
Architecture: i386
Kernel:   Linux 2.6.22-3-686

Debian Release: lenny/sid
  900 testing www.debian-multimedia.org 
  900 testing security.debian.org 
  900 testing ftp.it.debian.org 
  800 unstablewww.debian-multimedia.org 
  800 unstableftp.it.debian.org 
  700 experimentalwww.debian-multimedia.org 
  700 experimentalftp.it.debian.org 
  500 lenny   www.vollstreckernet.de 
  500 edgy-wx apt.wxwidgets.org 

--- Package information. ---
Depends   (Version) | Installed
===-+-===
| 





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



Bug#441305: dependo on libopenexr2c2a (= 1.2.2)

2007-09-08 Thread Bluefuture
Package: pixie
Version: 2.2.1-1
Severity: serious

--- Please enter the report below this line. ---
Pixie depend on libopenexr2c2a (= 1.2.2) that is not available in the debian. 
This make pixie not installable.


--- System information. ---
Architecture: i386
Kernel:   Linux 2.6.22-2-686

Debian Release: lenny/sid
  900 testing security.debian.org 
  900 testing ftp.it.debian.org 
  800 unstableftp.it.debian.org 
  700 experimentalftp.it.debian.org 

--- Package information. ---
Depends  (Version) | Installed
==-+-
libc6 (= 2.5) | 2.6.1-2
libgcc1(= 1:4.2-20060728) | 1:4.2.1-5
libstdc++6   (= 4.2-20060728) | 4.2.1-5
libx11-6   | 2:1.1.3-1
libxext6   | 1:1.0.3-2
zlib1g(= 1:1.2.1) | 1:1.2.3.3.dfsg-5




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



Bug#437673: dehs: Debian version of gabedit is wrong (2.0.11 instead of 2.0.11-1), so the copyright link is broken

2007-08-28 Thread Bluefuture
 
 This bug doesn't seem to be fixed. When I look at the page:
 
 http://dehs.alioth.debian.org/maintainer.php?name=gabedit
 
 it still says:
 
 Debian Version: 2.0.11
 
 instead of:
 
 Debian Version: 2.0.11-1
 
 and the copyright link is still broken (tested with lynx and iceweasel).
 Do I have to wait some minutes or do I have to check at a different
 location.
 
 Regards, Daniel
 
There is needed a dehs db update. Can you check now?

Regards,
Ste 
 --
 Email.it, the professional e-mail, gratis per te: http://www.email.it/f
 
 Sponsor:
 Basilea 2: impara come calcolare il rating della tua azienda con questo
pratico videocorso 
 Clicca qui: http://adv.email.it/cgi-bin/foclick.cgi?mid=6930d=20070828





Bug#437673:

2007-08-23 Thread Bluefuture
Seems to be fixed now. Please check it so i could close this bug.

Ste



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



Bug#437675: dehs tags machine readable status

2007-08-23 Thread Bluefuture
Actually i use in Dehs a simple function (dpkg based) to see if the
package is updated against upstream:

function is_updated ($up_vers,$debian_vers) {
if ($up_vers=='') return 0;
passthru(dpkg --compare-versions '$up_vers' eq ' .
vers_conv($debian_vers) . ',$great);
if ($great!=0) return 1;
else return 0;
}

I see that in uscan upstream version has added another tag for dehs
called status. Actually is an human readable string. I think that
devscripts developer could add a machine readable also a coded machine
readable dehs tag for status so i could use directly uscan output for
version compare.

P.s. i cc this to pkg-devscripts team

Regards,
Ste



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



Bug#269493:

2007-08-06 Thread Bluefuture
Hi, 
you can still check the global situation here:
http://dehs.alioth.debian.org/no_updated.html


Cheers,
Stefano 
 --
 Email.it, the professional e-mail, gratis per te: http://www.email.it/f
 
 Sponsor:
 Viaggi, voli, soggiorni...cattura l'offerta e parti con Mondolastminute
 Clicca qui: http://adv.email.it/cgi-bin/foclick.cgi?mid=6850d=20070806





Bug#269493:

2007-08-05 Thread Bluefuture
Dehs data is fully updated now with new debian version conversion
function.
Please check result now and see if we can close this bug.

Cheers,
Stefano



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



Bug#269493:

2007-08-03 Thread Bluefuture

 
 Still, a part of the bug here could still be addressed. What is needed is to 
 scan for a dash from the end of the version string, and separate it there 
 into 'debian revision' and 'upstream'.
 
 E.g. this version number:
 1.4.6-20060409-1
 should be split in upstream '1.4.6-20060409' and debian '1'.
 
 
 Thijs

This is actually the convertion function with regular expression: 



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



Bug#269493:

2007-08-03 Thread Bluefuture
 
 Still, a part of the bug here could still be addressed. What is needed is to 
 scan for a dash from the end of the version string, and separate it there 
 into 'debian revision' and 'upstream'.
 
 E.g. this version number:
 1.4.6-20060409-1
 should be split in upstream '1.4.6-20060409' and debian '1'.
 
 
 Thijs

This is actually the convertion function with regular expression: 

function vers_conv($debvers) {
preg_match(/(.+:)?([^-]+)(ds|dsfg|debian)/,$debvers,$matches);
if (!$matches[3]) {
unset($matches);
preg_match(/(.+:)?([^-]+)/,$debvers,$matches);
}
if (substr($matches[2],-1)=='.') $matches[2]=substr($matches[2],0,-1);
return $matches[2];
}

How do u suggest to modify regular expression?

Stefano



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



Bug#269493: regex for debian version

2007-08-03 Thread Bluefuture
Sorry for dsfg typo in regex, the Dehs version control code is on
svn.debian.org.

I attend the Justin and Thijs agree on a common patch to this function.
Please consider the debian general packages number situation and user
cases and not only packages that you maintain :)

Cheers,

Stefano



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



Bug#356042: Bug#431319: marked as done (uscan in dehs broken?)

2007-08-03 Thread Bluefuture

 No it's not, have a look at 
 http://dehs.alioth.debian.org/maintainer.php?name=fetchmail
 Cheers
 Nico

It is not an alioth or dehs problem is a berlios one.
Have u never tried to whet wget
http://developer.berlios.de/project/showfiles.php?group_id=1824 from an
alioth account?
Problably berlios doesn't let anymore to get file from alioth.

Cheers
Stefano



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



Bug#269493:

2007-08-03 Thread Bluefuture
Ok.. i tried to apply this patch (i commented the old version of the
function).
Seems quite good.

For the whole Dehs system data update we will wait Sunday for the
regular alioth cron dehs run.

Cheers,
Ste



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



Bug#392372:

2007-07-30 Thread Bluefuture
Please could you verify if this bug is still valid?

It seems fixed.. so we will close it.

Cheers,
Ste



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



Bug#269493:

2007-07-30 Thread Bluefuture
We need to have more statistical data about debian and upstream strange
version numbering to do a better comparison. For example there is no
standard way to cvs and svn version naming in debian. 

Cheers,
Ste



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



Bug#433692: evolution: crash on startup

2007-07-18 Thread Bluefuture
Package: evolution
Version: 2.10.2-1
Severity: grave
Justification: renders package unusable

The application crash on startup. Debbug informations are in the 
attachment.

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

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

Versions of packages evolution depends on:
ii  dbus1.1.1-3  simple interprocess messaging
syst
ii  evolution-common2.10.2-1 architecture independent files
for
ii  evolution-data-server   1.10.2-2 evolution database backend
server
ii  gconf2  2.19.1-1 GNOME configuration database
syste
ii  gnome-icon-theme2.18.0-3 GNOME Desktop icon theme
ii  gtkhtml3.14 3.14.3-1 HTML rendering/editing library
- b
ii  libart-2.0-22.3.19-3 Library of functions for 2D
graphi
ii  libatk1.0-0 1.18.0-2 The ATK accessibility toolkit
ii  libbonobo2-02.18.0-2 Bonobo CORBA interfaces library
ii  libbonoboui2-0  2.18.0-5 The Bonobo UI library
ii  libc6   2.6-2GNU C Library: Shared libraries
ii  libcairo2   1.4.10-1 The Cairo 2D vector graphics
libra
ii  libcamel1.2-10  1.10.2-2 The Evolution MIME message
handlin
ii  libdbus-1-3 1.1.1-3  simple interprocess messaging
syst
ii  libdbus-glib-1-20.74-1   simple interprocess messaging
syst
ii  libebook1.2-9   1.10.2-2 Client library for evolution
addre
ii  libecal1.2-71.10.2-2 Client library for evolution
calen
ii  libedataserver1.2-9 1.10.2-2 Utility library for evolution
data
ii  libedataserverui1.2-8   1.10.2-2 GUI utility library for
evolution 
ii  libegroupwise1.2-13 1.10.2-2 Client library for accessing
group
ii  libexchange-storage1.2- 1.10.2-2 Backend library for evolution
cale
ii  libfontconfig1  2.4.2-1.2generic font configuration
library
ii  libfreetype62.3.5-1+b1   FreeType 2 font engine, shared
lib
ii  libgconf2-4 2.19.1-1 GNOME configuration database
syste
ii  libglade2-0 1:2.6.1-1library to load .glade files at
ru
ii  libglib2.0-02.13.7-1 The GLib library of C routines
ii  libgnome-keyring0   0.8.1-2  GNOME keyring services library
ii  libgnome-pilot2 2.0.15-2 Support libraries for
gnome-pilot
ii  libgnome2-0 2.18.0-4 The GNOME 2 library - runtime
file
ii  libgnomecanvas2-0   2.14.0-3 A powerful object-oriented
display
ii  libgnomeprint2.2-0  2.18.0-2 The GNOME 2.2 print
architecture -
ii  libgnomeprintui2.2-02.18.0-2 GNOME 2.2 print architecture
User 
ii  libgnomeui-02.18.1-2 The GNOME 2 libraries (User
Interf
ii  libgnomevfs2-0  1:2.18.1-3+b1GNOME Virtual File System
(runtime
ii  libgnutls13 1.7.14-1 the GNU TLS library - runtime
libr
ii  libgtk2.0-0 2.11.5-1 The GTK+ graphical user
interface 
ii  libgtkhtml3.14-19   3.14.3-1 HTML rendering/editing library
- r
ii  libhal1 0.5.9.1-2Hardware Abstraction Layer -
share
ii  libice6 1:1.0.3-2X11 Inter-Client Exchange
library
ii  libldap22.1.30-13.4  OpenLDAP libraries
ii  libnm-glib0 0.6.4-8+b1   network management framework
(GLib
ii  libnotify1 [libnotify1- 0.4.4-3  sends desktop notifications to
a n
ii  libnspr4-0d 4.6.7-1  NetScape Portable Runtime
Library
ii  libnss3-0d  3.11.7-1 Network Security Service
libraries
ii  liborbit2   1:2.14.7-0.1 libraries for ORBit2 - a CORBA
ORB
ii  libpango1.0-0   1.17.4-3 Layout and rendering of
internatio
ii  libpisock9  0.12.2-10library for communicating with
a P
ii  libpisync0  0.12.2-10synchronization library for
PalmOS
ii  libpng12-0  1.2.15~beta5-2   PNG library - runtime
ii  libpopt01.10-3   lib for parsing cmdline
parameters
ii  libsm6  2:1.0.3-1+b1 X11 Session Management library
ii  libsoup2.2-82.2.100-1an HTTP library implementation
in 
ii  libx11-62:1.1.2-1X11 client-side library
ii  libxcursor1 1:1.1.8-2X cursor management library
ii  libxext61:1.0.3-2X11 miscellaneous extension
librar
ii  libxfixes3  1:4.0.3-2X11 miscellaneous 'fixes'
extensio
ii  libxi6  2:1.1.1-1X11 Input extension library
ii  

Bug#424916:

2007-05-27 Thread Bluefuture
Hello, Loïc.. do u have a package to test before u upload it to debian
archive?

Regards,

Ste 
 --
 Email.it, the professional e-mail, gratis per te: http://www.email.it/f
 
 Sponsor:
 Logos Finanziaria SPA. Società di credito ad erogazione diretta. Fino a
30.000 euro in 24 ore! Clicca e scopri come

 Clicca qui: http://adv.email.it/cgi-bin/foclick.cgi?mid=2909d=20070527





Bug#416404:

2007-04-24 Thread Bluefuture
This bug was not completely fixed but there is need also this patch[1].

Further testing has revealed a couple more problems
with the packet reordering/buffering code.

1) Some clients (notably the PPTP client) start their sequence
   numbers at 1 instead of 0 as the RFC mandates.  My previous
   fix caused problems with these clients.

2) Duplicate packets were causing corruption when they were
   placed on the queue but never used -or- when they were
   placed on the queue but already existed on the queue (i.e.
   they previously arrived out of order).

It was already applied to cvs[2].

[1]http://marc.info/?l=poptop-serverm=117737453400588w=2
[2]http://marc.info/?l=poptop-serverm=117738442417475w=2



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



Bug#366833:

2007-04-22 Thread Bluefuture
The last released version is 0.9.6-150 on 04-17-07 any news?



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



Bug#416404:

2007-04-15 Thread Bluefuture
1.3.4 was released Upstream on 2007-04-16 and have solved this bug.



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



Bug#416404: fixed upstream

2007-04-14 Thread Bluefuture
Tags:fixed-upstream patch

The bug seems to be fixed upstream[1].
Please contact upstream author if he want to integrate the patch in a
new 1.3.4. In the meantime we could integrate this patch on the official
debian version 1.3.0.
Contact also stable release manager for release this as update for etch.


[1]http://sourceforge.net/mailarchive/message.php?msg_name=20070414033808.GA5212%40linuxace.com



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



Bug#416404: confirmed upstream

2007-04-12 Thread Bluefuture
Please see this two thread from upstream release manager on poptop
mailing list[1][2].

[1]http://marc.info/?l=poptop-serverm=117616416514604w=2
[2]http://marc.info/?l=poptop-serverm=117641873919989w=2



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



Bug#416404:

2007-04-05 Thread Bluefuture
Why was tagged as etch-ignore? 
In situation that the pptp connection need packet reordering pptpd begin to
malform gre packets.
The upstream author is investigating this issue with specific reordering
tests.

Please confirm as an Etch RC bug.

Regards,
Ste 
 --
 Email.it, the professional e-mail, gratis per te: http://www.email.it/f
 
 Sponsor:
 Lettori MP3, MP4 per ascoltare la tua musica preferita, offerte
imbattibili!
 Clicca qui: http://adv.email.it/cgi-bin/foclick.cgi?mid=6122d=20070406





Bug#416404: pptpd freeze

2007-03-27 Thread Bluefuture

Package: pptpd
Version: 1.3.0-2
Severity: Grave

With version 1.3.0 pptp very often freeze the tunnell and i get RX error on
the ppp interface on the pptpd server machine.
Using pppdump seems that ppp packets are not corrupted but using tshark on
the interfece i see that there are many MALFORMED GRE and LCP Protocol
Reject begin sended from the server machine to the client. I had tried 1.3.2
1.3.3 and cvs version of pptpd and i have the same problem.
Only coming back to pptpd in debian stable or to the upstream 1.2.3 version
solve this issue.
 
 --
 Email.it, the professional e-mail, gratis per te: http://www.email.it/f
 
 Sponsor:
 CipCip Store: distributore ufficiale Airis. Palmari, Navigatori GPS, Home
Theatre...scopri le nostre offerte
 Clicca qui: http://adv.email.it/cgi-bin/foclick.cgi?mid=6121d=20070327





Bug#408665:

2007-03-21 Thread Bluefuture
Hi, 
I think that this bugs is to be set from normal to important priority.
For example could be a big issue for production system like ISP, that
accounting data will be falsified by a shutdown or a reboot of the
machine.  

Regards,
Ste



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



Bug#294562: Gdm/Xserver-Xfree86 fail to start on hardware change.

2007-01-25 Thread Bluefuture
Debian xserver doesn't probe hardware configuration before starting for
modify its conf file on hardware change.

So i think it is still valid as bug. 



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



Bug#195121: dehs

2006-10-28 Thread Bluefuture
I think that dehs data are regular available now (a part from BTS
upstream bug count because bts is quite slow actually for a big query so
i disabled it). 



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



Bug#392340: seems ok

2006-10-15 Thread Bluefuture
With latest version seems that doesn't segfault anymore.
Still, with coiche something different that /dev/dsp the audio flow is
quit unusable.

Ciao



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



Bug#389171: ndiswrapper-source: doesn't compile on 2.6.17-1 and 2.6.17-2

2006-09-24 Thread Bluefuture

 cd /usr/src/modules/ndiswrapper  make distclean
 
 Does that help?
 
 *_exports.h *may* exist if timestamps are out of whack. So using 'distclean' 
 instead of 'clean' in debian/rules may avoid this in the future.
 
Yes now build fine.
If you plan to change this in debian/rules you could close this bugs.

Thanks
Ste



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



Bug#351923: fpc: new upstream version available 2.0.2

2006-02-08 Thread Bluefuture
Package: fpc
Severity: wishlist

A new upstream stable version 2.0.2 is available.

-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (990, 'testing'), (800, 'unstable'), (500, 'stable'), (101, 
'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.15-1-k7
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=UTF-8)



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



Bug#351923: 2.0.2 upstream news

2006-02-08 Thread Bluefuture
**
  What's New in 2.0.2
**
This is a bug fix release, so don't expect a big new feature list here. Most
of the almost 700 changes made to 2.0.2 since 2.0.0 are fixes for some issues.

Compiler:
  * Lot of small bugs and compatibility fixes
  * Improved SSE support
  * Improved inlining
  * Enhanced variant support
  * Embedded resource support for targets using elf32 executable format
  + Type checking of compile time expressions
  + Mode MacPas: Support for Mac style objects
  + Mode MacPas: Compile time variables can be given on command line 
  
RTL:
  * Lot of small bugs and compatibility fixes
  * Enhanced variant support
  * Embedded resource support for targets using elf32 executable format
  
FCL:
  * Lot of small bugs and compatibility fixes
  * Improved SqlDB package

Packages:
  * Lot of small bugs and compatibility fixes
  * Improved data base support
  
IDE:
  * Small bug fixes

Misc:
  * Improved docs
  * Bug fixes for FreeVision



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



Bug#313588: will this (ubuntu) patch close this bug?

2006-02-06 Thread Bluefuture
Tags: patch


I tried this patch from here[1] and seems to works all fine. This issue seems 
solved.

[1] http://ubuntustudio.com/wiki/index.php/Breezy:Rlimits-Aware_PAM
diff -ru pam-0.76/Linux-PAM/modules/pam_limits/pam_limits.c pam-0.76-patched/Linux-PAM/modules/pam_limits/pam_limits.c
--- pam-0.76/Linux-PAM/modules/pam_limits/pam_limits.c	2006-02-04 15:32:27.0 -0500
+++ pam-0.76-patched/Linux-PAM/modules/pam_limits/pam_limits.c	2006-02-04 15:35:52.0 -0500
@@ -34,6 +34,11 @@
 #include sys/types.h
 #include sys/stat.h
 #include sys/resource.h
+/* hack: glibc-2.3.6 doesn't yet know about these yet */
+#define RLIMIT_NICE 13
+#define RLIMIT_RTPRIO 14
+#undef RLIM_NLIMITS
+#define RLIM_NLIMITS 15
 
 #include utmp.h
 #ifndef UT_USER  /* some systems have ut_name instead of ut_user */
@@ -367,6 +372,14 @@
 else if (strcmp(lim_item, locks) == 0)
 	limit_item = RLIMIT_LOCKS;
 #endif
+#ifdef RLIMIT_RTPRIO
+else if (strcmp(lim_item, rtprio) == 0)
+limit_item = RLIMIT_RTPRIO;
+#endif
+#ifdef RLIMIT_NICE
+else if (strcmp(lim_item, nice) == 0)
+limit_item = RLIMIT_NICE;
+#endif
 else if (strcmp(lim_item, maxlogins) == 0) {
 	limit_item = LIMIT_LOGIN;
 	pl-flag_numsyslogins = 0;
@@ -443,6 +456,15 @@
 #endif
 limit_value *= 1024;
 break;
+#ifdef RLIMIT_NICE
+case RLIMIT_NICE:
+if (limit_value  19)
+   limit_value = 19;
+if (limit_value  -20)
+   limit_value = -20;
+			limit_value = 19 - limit_value;
+break;
+#endif
 }
 
 if ( (limit_item != LIMIT_LOGIN)
Only in pam-0.76-patched/Linux-PAM/modules/pam_limits: pam_limits.c.orig
diff -ru pam-0.76/Linux-PAM/modules/pam_limits/README pam-0.76-patched/Linux-PAM/modules/pam_limits/README
--- pam-0.76/Linux-PAM/modules/pam_limits/README	2002-09-15 16:08:50.0 -0400
+++ pam-0.76-patched/Linux-PAM/modules/pam_limits/README	2006-02-04 15:34:54.0 -0500
@@ -39,6 +39,9 @@
 	- maxsyslogins - max number of logins on the system
 	- priority - lower the priority by given value (value can be -ve)
 	- locks - max locked files (Linux 2.4 and higher)
+	- nice - max nice priority allowed to raise to. (Linux 2.6.12 and higher)
+	- rtprio - max realtime priority allowed for non-priviledged processes
+ (Linux 2.6.12 and higher)
 
 Note, if you specify a type of '-' but neglect to supply the item and
 value fields then the module will never enforce any limits on the


Bug#313588: will this (ubuntu) patch close this bug?

2006-02-06 Thread Bluefuture
Tags: patch


Here [1] you can find two patch that seems to works fine also with the version 
0.79.

[1] http://ubuntustudio.com/wiki/index.php/Devel:Rlimits-Aware_PAM



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



Bug#349762: installation-report: dmraid raid devices doesn't works

2006-01-24 Thread Bluefuture
Package: installation-report
Severity: normal


Raid array devices supported by dmraid doesn't works in at the debian
install stage (i tried with a Promise Fasttrack 133 lite). 
For example two disk in Raid Mirror or Stripe will be detected as
two single drives because d-i doesn't load dmraid modules and doesn't
create /dev/mapper dmraid devices. Probably there is need of a
dmraid-udeb package. 
Other correlated bugs are already submitted in hw-detect #338719  and
yaird #337724. 

Gentoo seems to have support for dmraid recently in initrd [1] 
Here is also a manual configuration how-to for ubuntu (probably works also with 
debian) [2].

[1] 
http://www.mail-archive.com/pld-cvs-commit@lists.pld-linux.org/msg32367.html 
[2] https://wiki.ubuntu.com/FakeRaidHowto

-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (990, 'testing'), (800, 'unstable'), (500, 'stable'), (101, 
'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.15-1-k7
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=UTF-8)



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



Bug#349130: xsensors: new upstream version available

2006-01-20 Thread Bluefuture
Package: xsensors
Version: 0.46-1
Severity: wishlist

a new upstream version 0.47 was released and has added support for
the following chips: smsc47b397, it8712

-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (990, 'testing'), (800, 'unstable'), (500, 'stable'), (101, 
'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.15-1-k7
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=UTF-8)

Versions of packages xsensors depends on:
ii  libatk1.0-0   1.10.3-1   The ATK accessibility toolkit
ii  libc6 2.3.5-8GNU C Library: Shared libraries an
ii  libglib2.0-0  2.8.5-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  libsensors3   1:2.9.2-7  library to read temperature/voltag
ii  lm-sensors1:2.9.2-7  utilities to read temperature/volt

Versions of packages xsensors recommends:
pn  lm-sensors-modnone (no description available)

-- no debconf information



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



Bug#337882: patch to debian/control for experimental build

2005-12-28 Thread Bluefuture
This is a patch against the debian control file that i hope fix this bug
and let build k3b on experimental.

Ste
--- control	2005-12-28 15:58:52.0 +0100
+++ mycontrol	2005-12-28 15:59:57.0 +0100
@@ -3,12 +3,12 @@
 Priority: optional
 Maintainer: Jean-Michel Kelbert [EMAIL PROTECTED]
 Uploaders: Jean-Michel Kelbert [EMAIL PROTECTED], Francois Marier [EMAIL PROTECTED]
-Build-Depends: debhelper ( 4.1.0), kdelibs4-dev (= 3.2.1), libqt3-compat-headers, libflac++-dev (= 1.1.2-1), flac, dbus-qt-1-dev, libhal-dev, libhal-storage-dev, libpopt-dev, libmpcdec-dev, libresmgr-dev, libtag1-dev, libmusicbrainz4-dev, libmad0-dev
+Build-Depends: debhelper ( 4.1.0), kdelibs4-dev (= 3.5.0), libqt3-compat-headers, libflac++-dev (= 1.1.2-1), flac, libdbus-qt-1-dev, libhal-dev (= 0.5.5.1), libhal-storage-dev (= 0.5.5.1), libpopt-dev, libmpcdec-dev, libresmgr-dev, libtag1-dev (= 1.4-3), libmusicbrainz4-dev (= 2.1.1-4.1), libmad0-dev
 Standards-Version: 3.6.2
 
 Package: k3b
 Architecture: any
-Depends: ${shlibs:Depends}, cdrecord (= 4:2.0+a18-1), cdparanoia (= 3a9.8), mkisofs (= 1.10), kdelibs-data (= 4:3.1.4-2), kdebase-bin, kcontrol
+Depends: ${shlibs:Depends}, cdrecord (= 4:2.0+a18-1), cdparanoia (= 3a9.8), mkisofs (= 1.10), kdelibs-data (= 4:3.5.0), kdebase-bin, kcontrol
 Recommends: vcdimager (= 0.7), cdrdao (= 1.1.7-5), dvd+rw-tools, kdebase-kio-plugins
 Suggests: k3b-i18n (= ${Source-Version}), normalize-audio, toolame, sox, movixmaker-2
 Description: A sophisticated KDE CD burning application 


Bug#345077: RFP: ambulant -- The AMBULANT Open SMIL Player is an open-source media player with support for SMIL 2.1

2005-12-28 Thread Bluefuture
Package: wnpp
Severity: wishlist


* Package name: ambulant
  Version : 1.6
  Upstream Author : Ambulant Team [EMAIL PROTECTED]
* URL : http://www.cwi.nl/projects/Ambulant/
* License : LGPL
  Description : The AMBULANT Open SMIL Player is an open-source media 
player with support for SMIL 2.1

The AMBULANT Open SMIL Player is an open-source media player with support for 
SMIL 2.1. 
The current AMBULANT release provides namespace-based support for the SMIL 
Language, Extended Mobile, Mobile, and Basic profiles.

-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (990, 'testing'), (800, 'unstable'), (500, 'stable'), (101, 
'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.12-1-k7
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=UTF-8)



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



Bug#345092: sphinx2-bin: sphinx2-continuous and others tools segfault

2005-12-28 Thread Bluefuture
Package: sphinx2-bin
Version: 0.6-1
Severity: grave
Justification: renders package unusable

NFO: fbs_main.c(1266): libfbs/main COMPILED ON: Dec 16 2005, AT:
22:48:55

Usage: /usr/bin/sphinx2-continuous

Program received signal SIGSEGV, Segmentation fault.
0xb7d4c1c0 in strcpy () from /lib/tls/i686/cmov/libc.so.6

-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (990, 'testing'), (800, 'unstable'), (500, 'stable'), (101, 
'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.12-1-k7
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=UTF-8)

Versions of packages sphinx2-bin depends on:
ii  libc6 2.3.5-8GNU C Library: Shared libraries an
ii  libsphinx2g0  0.6-1  speech recognition library
ii  sphinx2-hmm-6k0.6-1  speech recognition library - defau

sphinx2-bin recommends no packages.

-- no debconf information



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



Bug#342611: debian-policy: please support Watch file as recommendation

2005-12-08 Thread Bluefuture
Package: debian-policy
Severity: wishlist


There could be put Watch file in packages as recommendation to help the dehs[1] 
statistic system.
Actually we have total source packages without watch file: 6080 on total source 
packages: 8945. Of this 6080 we have
also 978 automatically generated watch file and tested with Uscan (see 
devscripts package in debian) that could by reviewed
by maintainer and integrated in their own packages. I'm trying with this info 
also to collect upstream changelog (when possible) 
that are also available in dehs site[1].

[1] http://dehs.alioth.debian.org/

-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (990, 'testing'), (800, 'unstable'), (500, 'stable'), (101, 
'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.12-1-k7
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=UTF-8)



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



Bug#341247: beast: overwrite /usr/share/mime/globs

2005-11-29 Thread Bluefuture
Package: beast
Version: 0.6.6-3
Severity: critical
Justification: breaks unrelated software



-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (990, 'testing'), (800, 'unstable'), (500, 'stable'), (101, 
'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.12-1-k7
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=UTF-8)

Versions of packages beast depends on:
ii  guile-1.6-libs   1.6.7-1 Main Guile libraries
ii  libart-2.0-2 2.3.17-1Library of functions for 2D graphi
ii  libatk1.0-0  1.10.3-1The ATK accessibility toolkit
ii  libc62.3.5-8 GNU C Library: Shared libraries an
ii  libgcc1  1:4.0.2-4   GCC support library
ii  libglib2.0-0 2.8.3-1 The GLib library of C routines
ii  libgnomecanvas2-02.10.2-2A powerful object-oriented display
ii  libgtk2.0-0  2.6.10-1The GTK+ graphical user interface 
ii  libguile-ltdl-1  1.6.7-1 Guile's patched version of libtool
ii  libmad0  0.15.1b-2.1 MPEG audio decoder library
ii  libogg0  1.1.2-1 Ogg Bitstream Library
ii  libpango1.0-01.8.2-3 Layout and rendering of internatio
ii  libqthreads-12   1.6.7-1 QuickThreads library for Guile
ii  libstdc++6   4.0.2-4 The GNU Standard C++ Library v3
ii  libvorbis0a  1.1.0-1 The Vorbis General Audio Compressi
ii  libvorbisenc21.1.0-1 The Vorbis General Audio Compressi
ii  libvorbisfile3   1.1.0-1 The Vorbis General Audio Compressi
ii  zlib1g   1:1.2.3-8   compression library - runtime

Versions of packages beast recommends:
pn  bse-alsa  none (no description available)

-- no debconf information



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



Bug#340634: new 0.6 upstream version

2005-11-24 Thread Bluefuture
Package: sphinx2
Severity: wishlist

A new sphinx2 0.6 upstream version was released on October 13, 2005.

Cheers,
Ste



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



Bug#329997: RFP: link-monitor-applet -- Link Monitor Applet. A round-trip time monitor.

2005-09-24 Thread Bluefuture
Package: wnpp
Severity: wishlist


* Package name: link-monitor-applet
  Version : 1.3
  Upstream Author : Jean-Yves Lefort [EMAIL PROTECTED]
* URL : http://www.nongnu.org/link-monitor/
* License : revised BSD (it is pasted in the body of this report)
  Description : Link Monitor Applet is a GNOME Panel Applet displaying the 
round-trip time to one or more hosts in a bar graph.

Link Monitor Applet is a GNOME Panel Applet displaying the round-trip time to 
one or more hosts in a bar graph, featuring: 

  * full ICMP and ICMPv6 support
  * configurable scale and delays
  * HIG 2.0 compliance

There is already an unofficial debian package available: 
http://savannah.nongnu.org/download/link-monitor/link-monitor-applet_1.3-1_i386.deb

Revised BSD:
-
Copyright (C) 2004, 2005 Jean-Yves Lefort
All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
   notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
   notice, this list of conditions and the following disclaimer in the
   documentation and/or other materials provided with the distribution.
3. Neither the name of Jean-Yves Lefort nor the names of its contributors
   may be used to endorse or promote products derived from this software
   without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
CONTRIBUTORS AS IS AND ANY EXPRESS OR IMPLIED WARRANTIES,
INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS
BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE.



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



Bug#280576: any news about this packages

2005-08-27 Thread Bluefuture
Are there any news about this package now that linuxsampler is in debian
archives and qsampler is at version 0.1.2?

Cheers,
Blue

 
 
 --
 Email.it, the professional e-mail, gratis per te: http://www.email.it/f
 
 Sponsor:
 Digitalpix stampa le tue migliori foto digitali 
* su vera carta fotografica professionale.
 Clicca qui: http://adv.email.it/cgi-bin/foclick.cgi?mid=1532d=27-8


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



Bug#309137: seems to be solved in ubuntu

2005-07-16 Thread Bluefuture
This bugs seems to be solved in ubuntu hoary (i had tested hoary
livecd).




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



Bug#307975: on amd64 segfault when uses the keyring features

2005-07-09 Thread Bluefuture
on amd64 only segfault when try to use the keyring feature

This is the backtrace:

Starting program: /usr/bin/gksu synaptic
piers Program received signal SIGSEGV, Segmentation fault.
piers 0x7fffe4e0 in ?? ()
piers (gdb) bt
piers #0  0x7fffe4e0 in ?? ()
piers #1  0x2accd8ee in gnome_keyring_cancel_request ()
from /usr/lib/libgnome-keyring.so.0
piers #2  0x2accd457 in ?? ()
from /usr/lib/libgnome-keyring.so.0
piers #3  0x2bf0ce5b in g_vasprintf ()
from /usr/lib/libglib-2.0.so.0
piers #4  0x2beeb94c in g_main_depth ()
from /usr/lib/libglib-2.0.so.0
piers #5  0x2beec8e4 in g_main_context_dispatch ()
from /usr/lib/libglib-2.0.so.0
piers #6  0x2beecbee in g_main_context_dispatch ()
from /usr/lib/libglib-2.0.so.0
piers #7  0x2beed0d5 in g_main_loop_run ()
from /usr/lib/libglib-2.0.so.0
piers #8  0x2abc4d16 in gksu_context_run (context=0x54f930,
error=0x7fffe720) at gksu-context.c:1007
piers #9  0x2abc45e6 in try_gnome_keyring_password
(context=0x54f930) at gksu-context.c:654



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



Bug#311676: new 0.3.22 upstream

2005-06-02 Thread Bluefuture
Package: gnome-ppp
Severity: wishlist

A new 0.3.22 upstream was released.

Cheers,
Blue



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



Bug#309137: normal user cannot connect dialup

2005-05-15 Thread Bluefuture
Il giorno dom, 15/05/2005 alle 12.38 +0200, Jose Carlos Garcia Sogo ha
scritto:
 El dom, 15-05-2005 a las 01:01 +0200, Bluefuture escribió:
  Package: gnome-system-tools
  Severity: important
  
  There is a big problem with the new gnome-system-tools 1.0.2 in gnome
  2.10.
  The modem applet need admin privileges to configure internet connection
  but normal users cannot connect to internet also if they are in the dip
  group.
 
  If you are using GNOME 2.10, please use gnome-system-tools from
 experimental (version 1.2.0), and tell me if you have still the same
 problem.
 
  Thanks
 
Yes of course the version that has the bug is 1.2.0 with gnome 2.10. I
only mispelled it submitting the bug. 

Thanks





Bug#309137: normal user cannot connect dialup

2005-05-14 Thread Bluefuture
Package: gnome-system-tools
Severity: important

There is a big problem with the new gnome-system-tools 1.0.2 in gnome
2.10.
The modem applet need admin privileges to configure internet connection
but normal users cannot connect to internet also if they are in the dip
group.

Cheers,
Blue



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



Bug#300398: This issue still active

2005-04-22 Thread Bluefuture
Please reopen this bugs. 
Try to load gnubiff applet without internet connection. 
Then go on line and wait for the next gnubiff check delay. 
Gnubiff will cannot get mail anymore until the applet was removed and
reloaded. 
This issue come out with any kind of internet connection and with all
the last gnubiff versions.

Cheers,
Blue




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



Bug#305846: the first user control all removable devices

2005-04-22 Thread Bluefuture
Package: gnome-volume-manager
Severity: important

In a multi user mode, with multiple gnome sections and multiple 
gnome-volume-manager running, 
the first user logged, control all the devices also when removable device are 
plugged in a session
and with an active terminal owned by another user. 
Every gnome-volume-manager before mounting on the plug event  must check on 
with vt we currently are and
 if there is a gnome-session and what user is associated. So only the right 
(the current user one) gnome-volume-manager
istance could handle the plug event, mount and own the removable storage for 
his user.

Cheers,
Blue



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



Bug#300398: never check mail again after an offline check

2005-03-19 Thread Bluefuture
Package: gnubiff
Severity: important

http://sourceforge.net/tracker/index.php?func=detailaid=1161016group_id=94176atid=606979
If gnubiff check mail when the network/internet connection is offline
it cannot check email putting the error message and nevermore
also when i'm online again also if i try stop and start it. The only
way to solve this issue is to remove and reload the
gnubiff applet or close and run the gnubiff application. 

Tanks.



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



Bug#273826:

2005-03-18 Thread Bluefuture
With the latest kernel 2.6.10 and the latest alsa drive this bugs seems
closed. 
Horgand works again. 
Can you also package the last released version (1.7)?

Cheers,
Blue



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



Bug#273826: also a kernel security problem?

2005-03-18 Thread Bluefuture
Il giorno ven, 18-03-2005 alle 16:05 -0500, Justin Pryzby ha scritto:
 clone 273826 -1
 retitle -1 New upstream release v1.7
 severity -1 wishlist
 thanks
 
 Did you say that this freezes the whole system?  If so, it is a
 security problem with the kernel.  Let us know so we can clone the bug
 against the kernel.
 
 Thanks,
 Justin
 
Yes when i had submitted this bugs horgand freezes the whole system,
after some months of dist-upgrade i had retried to run same version of
horgand and works fine. 
-- 




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



Bug#300314: kernel bug

2005-03-18 Thread Bluefuture
Il giorno ven, 18-03-2005 alle 18:03 -0500, Justin Pryzby ha scritto:
 submitter 300314 Bluefuture [EMAIL PROTECTED]
 thanks
 
 Are you using a Dell laptop?  The Linux 2.6.8 Changelog mentions a fix
 for ALSA with a Dell.  (But, you said it crashed under 2.6.8; thought
 I'd ask anyway.)  Knowing your machine type and sound card might help;
 the kernel changelogs mention a number of quirks updates.
 

I had not a dell laptop sorry, is an epox 8kta3-pro motherboard with a
creative sblive soundcard.

 And, sorry, I have to ask again: Can you confirm the whole system
 really froze?  Like, even a remote ssh session would be disconnected,
 and it didn't respond to ping, etc.?
 
I think was a kernel freeze because no keyboard input no virtual console
switch no input/otput etc. etc.

 Would you be able to test 2.6.9?  I'm curious when the problem was
 fixed.  2.6.9 seems to have a massive ALSA update, so it may well be
 fixed there.  This will help find where the fix is (since Sarge will
 ship with 2.6.8, a fix needs to be applied before release). 
 
As i could remember i had also tried with 2.6.9 firsts debian versions
upload and it still freeze launching horgand. I had the latest version
of 2.6.9 installed, i could reset and try it.

 You referred to the latest alsa driver.  Do you mean a userspace
 alsa driver?  As best I know, all of the alsa drivers are in the
 kernel, but you referred to 2.6.10 AND latest alsa.

2.6.10 and the latest user space alsa (alsa-base).

Cheers,
Blue



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



Bug#298726: new upstream versions

2005-03-09 Thread Bluefuture
Package: lazarus
Severity: wishlist

Actually we are at 0.9.6. Would u will try to package someone of the latest 
upstream version?

Tanks,
Stefano
version=2
ftp://xmlsoft.org/libxml2-([\d\.\d]+)\.tar\.gz debian  uupdate


Bug#297326: pktcdvd mapped devices with kernel = 2.6.10

2005-02-28 Thread Bluefuture
Package: hal
Severity: normal

Now that 2.6.10 kernel officially support packet writing, hal need also to 
recognize mapped 
cd/dvd burning devices as sys/pktcdvd devices. 

Tanks.
Stefano



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



Bug#296843: add some debconf option

2005-02-24 Thread Bluefuture
Package: smartmontools
Severity: wishlist

Please could do add some debconf option?
I think something like:
Do u want to start smartmontools on system boot?
Do u want send notification on error on an email account/s?
(i think that this two could be set to a high level)

And if you has some other major useful option in mind it could be useful to add 
also it in debconf.

Tanks.



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



Bug#295475: dehs: watch file submission for grep

2005-02-15 Thread Bluefuture
Package: grep
Severity: wishlist
Tags: patch

For helping Dehs qa project (http://dehs.alioth.debian.org) i send the link for 
watch file to include in your package:
for the unstable:

version=2
ftp://ftp.gnu.org/gnu/grep/grep-(.*)\.tar\.gz
 
Please make a check on the regular expression before put it in your package.
For help you can read http://dehs.alioth.debian.org/uscan.html or type man 
uscan if your have devscripts package installed.

Tanks,
Stefano Fabri
version=2
ftp://xmlsoft.org/libxml2-([\d\.\d]+)\.tar\.gz debian  uupdate


Bug#294834: dehs: watch file submission for diffutils

2005-02-11 Thread Bluefuture
Package: diffutils
Severity: wishlist
Tags: patch

For helping Dehs qa project (http://dehs.alioth.debian.org) i send the link for 
watch file to include in your package:
this one for experimental: 
http://dehs.alioth.debian.org/wwiz_detail.php?id=1748932type=watch
and this for the unstable: 
http://dehs.alioth.debian.org/wwiz_detail.php?id=1741820type=watch . 
Please make a check on the regular expression before put it in your package.
For help you can read http://dehs.alioth.debian.org/uscan.html or type man 
uscan if your have devscripts package installed.

Tanks,
Stefano Fabri
version=2
ftp://xmlsoft.org/libxml2-([\d\.\d]+)\.tar\.gz debian  uupdate


Bug#294562: gdm: Gdm fail to start on hardware change

2005-02-10 Thread Bluefuture
Package: gdm
Version: 2.6.0.6-1
Severity: important

Gdm fail to start when the user change some of his hardware, specially
when change his videocard with another one that need a different X
driver. Some important problem could also appear on monitor and mouse
change and other sensible X hardware. This is a big issue for newbie
users.

-- System Information:
Debian Release: 3.1
  APT prefers testing
  APT policy: (990, 'testing'), (800, 'unstable'), (101, 'experimental')
Architecture: i386 (i686)
Kernel: Linux 2.6.10-1-k7
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15)





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