Bug#1051774: PySNMP asyncio backend unusable in Debian 12 (needs stable update?)

2023-09-19 Thread Adam Cécile

On 9/13/23 17:42, Thomas Goirand wrote:

On 9/13/23 13:43, Adam Cecile wrote:

On 9/13/23 12:55, Thomas Goirand wrote:

On 9/12/23 18:16, Adam Cecile wrote:

Hello,

No hurry, I think we might want to wait for upstream to respond to 
my PR regarding double awaitable fix.
It is indeed lextudio upstream that took over the PySNMP package 
and all patches are coming from us (except mine ofc).


Regards, Adam.


Because it messes up the order in which people normally read text.
Why is top-posting such a bad thing?
Top-posting.
What is the most annoying thing in e-mail?

Hello, you started first !


LOL ! :)

Well, I was on my phone, sorry for that ... :P


Thanks! :)

I tried applying your patch at 
https://salsa.debian.org/acecile-guest/python-pysnmp4/-/commit/88d40f1225de8f7b42413b56206b41a6155fcf09


Unfortunately, it doesn't apply on top of 4.4.12-2, which is the 
current version of the package (in Bookworm, Unstable and Testing).


Would you be able to rebase your patch on top of 4.4.12-2? Then I'll 
do the work to get this into Bookworm (and Unstable/Testing).


Cheers,

Thomas Goirand (zigo)


Yes that's expected.


Well, how can I then apply it to the version in Bookworm?


Hello,

Soory for the delay, I don't get the question, bookworm version is the 
same as unstable at the moment so my debian/4.4.12-3 branch also works:


https://salsa.debian.org/acecile-guest/python-pysnmp4/-/commits/debian/4.4.12-3

If you want only the full patch fixing asyncio, you can find it as 
debian/patch:


https://salsa.debian.org/acecile-guest/python-pysnmp4/-/blob/debian/4.4.12-3/debian/patches/0003-Merge-lextudio-upstream-fork-patch-related-to-asynci.patch



This commit is only to fix double awaitable "new" upstream bug. It 
depends on a large amount of backported commits to fix asyncio / 
Python 3.11 support.


Could you backport it to 4.4.12-2 as in Bookworm and Unstable?

As I wrote already, I already packaged python-pysnmp-lextudio, which 
is currently in the NEW queue. I will be happy to apply your patch in 
there, but IMO, we should treat pysnmp-lextudio as a different source 
and binary package (my binary conflicts with python3-pysnmp4), because 
the dependency chain is very different.

Yes it's already done, see above.


You can see here a branch created from upstream 4.4.12 tag with 
asyncio patches cherry-pick from new upstream master:


https://salsa.debian.org/acecile-guest/python-pysnmp4/-/commits/4.4.12+cherry-pick-asyncio-lextudio-fixes/ 



It has then been squashed into a single debian/patch:

https://salsa.debian.org/acecile-guest/python-pysnmp4/-/commit/a5f17d27c7813dbdb64cdf674d1855a77c3eb0f0 



Ah, super cool! It's too late for today (have to go back home), so 
I'll work on this tomorrow. Thanks a lot for your contrib.

So, all good?


BTW, we've been using your MegaCli repo (we mirror it), and I also 
would like to thank you for this. :)
Thanks! Sadly I miss time to take care of it, but no matter how old and 
badly written was the Python code, it still works flawlessly :-) Cheers 
to LSI/Broadcom for not breaking tools and output format btw.


I made my own forked repository because I'm unsure how we should 
proceed, but I can easily push the debian/4.4.12-3 tag to the regular 
Python module repository on Salsa.


4.4.12-3 will be for Unstable. For Stable, it's going to be something 
like 4.4.12-2+deb12u1, as per the normal process, and it will have to 
be (pre-)approved by the Debian Stable release team by filling a bug 
against release.debian.org. No worries, I do understand that Debian 
procedures are not easy to understand, though I'm happy to explain if 
you need.


Cheers,

Thomas Goirand (zigo)





Bug#802948: Package available on Salsa / Python team

2022-01-07 Thread Adam Cécile

Package has been created and uploaded to Salsa's python team group:

https://salsa.debian.org/python-team/packages/python-mmh3



Bug#1003193: Switch maintainer?

2022-01-06 Thread Adam Cécile

On 1/5/22 10:39 PM, Dirk Eddelbuettel wrote:

Hi Adam,

Would you be ok with me more formally adopting the package as maintainer?


Hello,

Absolutely no issue on my side. Who could be a better maintainer than 
the upstream developer :-)


Regards, Adam.



Bug#1002837: tiledb: diff for NMU version 1.7.7-1.2

2021-12-30 Thread Adam Cécile

Hello Dirk,

Sure, I was suggesting adding you directly to uploaders because the 
package is maintained on Salsa, sadly I see we both missed each other there:


https://salsa.debian.org/acecile-guest/tiledb
https://salsa.debian.org/debian/tiledb

It seems you forked mine, which is fine but I think only one repo must 
survive ;-)


Regards, Adam.

On 12/30/21 2:08 AM, Dirk Eddelbuettel wrote:

Couldn't resist an attempt to send in an 1.7.7-3 attempt but still seeing too
many unit test failures.  Very strange as this works for me on amd64 :-/

Adam, how would you feel about an update to 2.5.3 and catch2 (and no more
tbb-dev) ?  Would you be ok with me sending that up as NMU?

Dirk





Bug#972803: Upstream patch available

2021-06-24 Thread Adam Cécile

Hello,


Upstream bug has been fixed:

https://github.com/ilevkivskyi/typing_inspect/commit/6bc521b9ba9fd22d2d3f219fcc99dedc3fb4c2f7


You can find attached a slightly modified version of the patch that 
applies to current package and fix test failure.



Regards, Adam.

--- python-typing-inspect-0.6.0.orig/typing_inspect.py
+++ python-typing-inspect-0.6.0/typing_inspect.py
@@ -23,6 +23,11 @@ if NEW_TYPING:
 Generic, Callable, Union, TypeVar, ClassVar, Tuple, _GenericAlias, 
ForwardRef
 )
 from typing_extensions import Literal
+if sys.version_info[:3] >= (3, 9, 0):
+from typing import _SpecialGenericAlias
+typingGenericAlias = (_GenericAlias, _SpecialGenericAlias)
+else:
+typingGenericAlias = (_GenericAlias,)
 else:
 from typing import (
 Callable, CallableMeta, Union, Tuple, TupleMeta, TypeVar, GenericMeta, 
_ForwardRef
@@ -74,7 +79,7 @@ def is_generic_type(tp):
 """
 if NEW_TYPING:
 return (isinstance(tp, type) and issubclass(tp, Generic) or
-isinstance(tp, _GenericAlias) and
+isinstance(tp, typingGenericAlias) and
 tp.__origin__ not in (Union, tuple, ClassVar, 
collections.abc.Callable))
 return (isinstance(tp, GenericMeta) and not
 isinstance(tp, (CallableMeta, TupleMeta)))
@@ -100,7 +105,7 @@ def is_callable_type(tp):
 get_origin(tp) is collections.abc.Callable  # Callable prior to Python 
3.7
 """
 if NEW_TYPING:
-return (tp is Callable or isinstance(tp, _GenericAlias) and
+return (tp is Callable or isinstance(tp, typingGenericAlias) and
 tp.__origin__ is collections.abc.Callable or
 isinstance(tp, type) and issubclass(tp, Generic) and
 issubclass(tp, collections.abc.Callable))
@@ -126,7 +131,7 @@ def is_tuple_type(tp):
 get_origin(tp) is tuple  # Tuple prior to Python 3.7
 """
 if NEW_TYPING:
-return (tp is Tuple or isinstance(tp, _GenericAlias) and
+return (tp is Tuple or isinstance(tp, typingGenericAlias) and
 tp.__origin__ is tuple or
 isinstance(tp, type) and issubclass(tp, Generic) and
 issubclass(tp, tuple))
@@ -164,14 +169,14 @@ def is_union_type(tp):
 """
 if NEW_TYPING:
 return (tp is Union or
-isinstance(tp, _GenericAlias) and tp.__origin__ is Union)
+isinstance(tp, typingGenericAlias) and tp.__origin__ is Union)
 return type(tp) is _Union
 
 
 def is_literal_type(tp):
 if NEW_TYPING:
 return (tp is Literal or
-isinstance(tp, _GenericAlias) and tp.__origin__ is Literal)
+isinstance(tp, typingGenericAlias) and tp.__origin__ is 
Literal)
 return WITH_LITERAL and type(tp) is _Literal
 
 
@@ -196,7 +201,7 @@ def is_classvar(tp):
 """
 if NEW_TYPING:
 return (tp is ClassVar or
-isinstance(tp, _GenericAlias) and tp.__origin__ is ClassVar)
+isinstance(tp, typingGenericAlias) and tp.__origin__ is 
ClassVar)
 elif WITH_CLASSVAR:
 return type(tp) is _ClassVar
 else:
@@ -262,7 +267,7 @@ def get_origin(tp):
 get_origin(List[Tuple[T, T]][int]) == list  # List prior to Python 3.7
 """
 if NEW_TYPING:
-if isinstance(tp, _GenericAlias):
+if isinstance(tp, typingGenericAlias):
 return tp.__origin__ if tp.__origin__ is not ClassVar else None
 if tp is Generic:
 return Generic
@@ -327,7 +332,7 @@ def get_parameters(tp):
 else:
 return ()
 elif NEW_TYPING:
-if (isinstance(tp, _GenericAlias) or
+if (isinstance(tp, typingGenericAlias) or
 isinstance(tp, type) and issubclass(tp, Generic) and
 tp is not Generic):
 return tp.__parameters__


Bug#985291: Package at salsa

2021-03-15 Thread Adam Cécile
Package available at 
https://salsa.debian.org/python-team/packages/python-dictknife




Bug#985280: Package at salsa

2021-03-15 Thread Adam Cécile
Package available at 
https://salsa.debian.org/python-team/packages/python-prestring




Bug#985279: Package at salsa

2021-03-15 Thread Adam Cécile
Package available at 
https://salsa.debian.org/python-team/packages/python-magicalimport




Bug#985275: Package at salsa

2021-03-15 Thread Adam Cécile
Package is available at 
https://salsa.debian.org/python-team/packages/swagger-marshmallow-codegen




Bug#985278: Package at salsa

2021-03-15 Thread Adam Cécile
Package is available at 
https://salsa.debian.org/python-team/packages/python-evilunit




Bug#983501: Package available on Salsa

2021-02-25 Thread Adam Cécile
Package is available @Salsa: 
https://salsa.debian.org/python-team/packages/python-asyncache




Bug#974678: OpenH2634 also used to received

2020-12-09 Thread Adam Cécile

Hello,


OpenH264 is also used to receive H264 WebRTC streams. I can confirm this 
100% sure.



Adam.



Bug#972134: OpenH264 needed for WebRTC

2020-12-09 Thread Adam Cécile

Hello,


I can confirm OpenH264 is absolutely needed for both receiving and 
sending H264 WebRTC streams.


See my report here #974678


Regards, Adam.



Bug#953855: 953855: Problem confirmed

2020-04-12 Thread Adam Cécile

Hello,


I can confirm this issue, adding the following to debian/rules fixed the 
build issue:


export DEB_CXXFLAGS_MAINT_APPEND = -DSPDLOG_FMT_EXTERNAL


I'm really wondering if this bug severity should be raised...


Regards, Adam.



Bug#889532: Upstream release

2019-11-26 Thread Adam Cécile

Hello,


Upstream released 1.9.3 supporting PHP 7.2, and hopefully new ones. 
COuld you consider upgrading the package ?


https://github.com/pear/DB/releases


Regards, Adam.



Bug#860006: ITP: python3-aiomysql -- MySQL driver for asyncio

2019-07-04 Thread Adam Cécile

retitle 860006 ITP: python3-aiomysql -- MySQL driver for asyncio
tag 860006 + pending
owner 860006 acec...@le-vert.net
thanks

Hi,


Packages is available at debian mentors:

  https://mentors.debian.net/package/aiomysql

  dget -x 
https://mentors.debian.net/debian/pool/main/a/aiomysql/aiomysql_0.0.20-1.dsc


Waiting for python3-sphinxcontrib-asyncio to get accepted from NEW before doing 
further work.


Regards



Bug#907774: Confirmed

2018-09-10 Thread Adam Cécile

Hello,

I can confirme owncloud desktop client stopped working for me as well.
Reverting to this package made it work again:

http://ftp.debian.org/debian/pool/main/q/qtbase-opensource-src/libqt5network5_5.11.1+dfsg-6_amd64.deb

Regards, Adam.



Bug#873341: Scala Build Tool (sbt) status ?

2018-01-13 Thread Adam Cécile

Hello,


I need to use sbt tool and from what I see it's very closed being 
included in Debian.


Most of the package are already available in experimental, except 
libscala-tools-sbinary-java



Is there anyway a git or something containing "not-yet-uploaded" package ?


Thanks in advance,


Adam.



Bug#862522: Plans

2017-12-13 Thread Adam Cécile

On 12/13/2017 10:49 PM, Andreas Beckmann wrote:

On 2017-12-13 22:30, Adam Cécile wrote:

Is there any plans to move forward regarding CUDA 9 ?

Packages are sitting in NEW.


Is it at possible I build myself the CUDA 9 packages; do you have some
ready somewhere ?

You can build them from GIT.


Andreas


Hello,


That's a very good news !

Do you have a link to this GIT repository or even more, could you put 
the awaiting source package available somewhere so I can build it directly ?



Thanks, Adam.



Bug#862522: Plans

2017-12-13 Thread Adam Cécile

Hi,


Is there any plans to move forward regarding CUDA 9 ?

Is it at possible I build myself the CUDA 9 packages; do you have some 
ready somewhere ?



Thanks in advance,

Adam



Bug#862727: ITP: libjasper -- JasPer JPEG-2000 runtime library

2017-05-18 Thread Adam Cécile

Control:retitle -1 ITP: jasper -- JasPer JPEG-2000 runtime library



Bug#862727: ITP: libjasper -- JasPer JPEG-2000 runtime library

2017-05-18 Thread Adam Cécile

Control:retitle -1 ITP: libjasper -- JasPer JPEG-2000 runtime library


Bug#775514: No networking running virt-builder scripts after upgrading from 1.26 to 1.28

2015-06-29 Thread Adam Cécile (Le_Vert)

Hello,

I'm experiencing exactly the same issue except it doesn't seem to be 
related to libguestfs version.
A developper asked for guestfish --network -a /dev/null run -v -x 
output, so it's attached here.


Regards, Adam.
libguestfs: trace: set_pgroup true
libguestfs: trace: set_pgroup = 0
libguestfs: trace: add_drive /dev/null
libguestfs: trace: get_tmpdir
libguestfs: trace: get_tmpdir = /tmp
libguestfs: trace: disk_create /tmp/libguestfsr2lqpe/devnull1 raw 4096
libguestfs: trace: disk_create = 0
libguestfs: trace: add_drive = 0
libguestfs: trace: launch
libguestfs: trace: version
libguestfs: trace: version = struct guestfs_version *
libguestfs: trace: get_backend
libguestfs: trace: get_backend = direct
libguestfs: launch: program=guestfish
libguestfs: launch: version=1.29.47
libguestfs: launch: backend registered: unix
libguestfs: launch: backend registered: uml
libguestfs: launch: backend registered: libvirt
libguestfs: launch: backend registered: direct
libguestfs: launch: backend=direct
libguestfs: launch: tmpdir=/tmp/libguestfsr2lqpe
libguestfs: launch: umask=0022
libguestfs: launch: euid=1000
libguestfs: trace: get_backend_setting force_tcg
libguestfs: trace: get_backend_setting = NULL (error)
libguestfs: trace: get_cachedir
libguestfs: trace: get_cachedir = /var/tmp
libguestfs: [0ms] begin building supermin appliance
libguestfs: [0ms] run supermin
libguestfs: command: run: /usr/bin/supermin
libguestfs: command: run: \ --build
libguestfs: command: run: \ --verbose
libguestfs: command: run: \ --if-newer
libguestfs: command: run: \ --lock /var/tmp/.guestfs-1000/lock
libguestfs: command: run: \ --copy-kernel
libguestfs: command: run: \ -f ext2
libguestfs: command: run: \ --host-cpu x86_64
libguestfs: command: run: \ /usr/lib/x86_64-linux-gnu/guestfs/supermin.d
libguestfs: command: run: \ -o /var/tmp/.guestfs-1000/appliance.d
supermin: version: 5.1.13
supermin: package handler: debian/dpkg
supermin: acquiring lock on /var/tmp/.guestfs-1000/lock
supermin: if-newer: output does not need rebuilding
libguestfs: [8ms] finished building supermin appliance
libguestfs: [8ms] begin testing qemu features
libguestfs: command: run: /usr/bin/qemu-system-x86_64
libguestfs: command: run: \ -display none
libguestfs: command: run: \ -help
libguestfs: command: run: /usr/bin/qemu-system-x86_64
libguestfs: command: run: \ -display none
libguestfs: command: run: \ -version
libguestfs: qemu version 2.3
libguestfs: command: run: /usr/bin/qemu-system-x86_64
libguestfs: command: run: \ -display none
libguestfs: command: run: \ -machine accel=kvm:tcg
libguestfs: command: run: \ -device ?
libguestfs: [00055ms] finished testing qemu features
libguestfs: trace: get_backend_setting gdb
libguestfs: trace: get_backend_setting = NULL (error)
[00059ms] /usr/bin/qemu-system-x86_64 \
-global virtio-blk-pci.scsi=off \
-nodefconfig \
-enable-fips \
-nodefaults \
-display none \
-cpu host \
-machine accel=kvm:tcg \
-m 500 \
-no-reboot \
-rtc driftfix=slew \
-no-hpet \
-global kvm-pit.lost_tick_policy=discard \
-kernel /var/tmp/.guestfs-1000/appliance.d/kernel \
-initrd /var/tmp/.guestfs-1000/appliance.d/initrd \
-device virtio-scsi-pci,id=scsi \
-drive file=/tmp/libguestfsr2lqpe/devnull1,cache=writeback,id=hd0,if=none \
-device scsi-hd,drive=hd0 \
-drive file=/var/tmp/.guestfs-1000/appliance.d/root,snapshot=on,id=appliance,cache=unsafe,if=none \
-device scsi-hd,drive=appliance \
-device virtio-serial-pci \
-serial stdio \
-device sga \
-chardev socket,path=/tmp/libguestfsr2lqpe/guestfsd.sock,id=channel0 \
-device virtserialport,chardev=channel0,name=org.libguestfs.channel.0 \
-netdev user,id=usernet,net=169.254.0.0/16 \
-device virtio-net-pci,netdev=usernet \
-append 'panic=1 console=ttyS0 udevtimeout=6000 udev.event-timeout=6000 no_timer_check acpi=off printk.time=1 cgroup_disable=memory root=/dev/sdb selinux=0 guestfs_verbose=1 guestfs_network=1 TERM=xterm'
WARNING: Image format was not specified for '/tmp/libguestfsr2lqpe/devnull1' and probing guessed raw.
 Automatically detecting the format is dangerous for raw images, write operations on block 0 will be restricted.
 Specify the 'raw' format explicitly to remove the restrictions.
Could not open option rom 'sgabios.bin': No such file or directory
[0.00] Initializing cgroup subsys cpuset
[0.00] Initializing cgroup subsys cpu
[0.00] Initializing cgroup subsys cpuacct
[0.00] Linux version 4.0.0-2-amd64 (debian-ker...@lists.debian.org) (gcc version 4.9.2 (Debian 4.9.2-21) ) #1 SMP Debian 4.0.5-1 (2015-06-16)
[0.00] Command line: panic=1 console=ttyS0 udevtimeout=6000 udev.event-timeout=6000 no_timer_check acpi=off printk.time=1 cgroup_disable=memory root=/dev/sdb selinux=0 guestfs_verbose=1 guestfs_network=1 TERM=xterm
[0.00] e820: BIOS-provided physical RAM map:
[0.00] BIOS-e820: [mem 

Bug#756658: #756658 owncloud: After migration from 6.0.4, database upgrade fail to find a table

2014-08-01 Thread Adam Cécile

Hello,

I'm just had the same issue while updating my Jessie server.
Looks pretty serious to me, owncloud is broken now and I haven't been 
able to figure out how to fix the update script.


Thanks in advance,

Adam.


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



Bug#734100: #734100: vlc: Video stuttering with ALSA output

2014-02-16 Thread Adam Cécile (Le_Vert)

Hello,

I can confirm this issue. It's really annoying because it renders VLC 
unusable. I had to switch to mplayer...


Regards, Adam.


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



Bug#703437: #703437: dpkg-sig: Support data.tar.bz2 and data.tar.xz

2014-01-21 Thread Adam Cécile (Le_Vert)

Hello,

I can confirm the issue and that the attached patch fix it.
Please update dpkg-sig package.

Regards, Adam.


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



Bug#722454: New patch

2013-09-18 Thread Adam Cécile

Here is a new version (again)!

I have no idea what you tried to do to fix 699644 [1] but your code in 
glpi.postinst seems to be no-op.
There'is no reasong to remove a previously installed directory. If the 
directory isn't installed anymore by new versions, dpkg will remove it 
by itself.
Moreover, this code don't create any link on new installations (not link 
+ directory).
So basically, the right way to do is to simply add the link in 
debian/links, see my attached patch.
The old postinst code is still here because I'm not really sure to 
understand what it's supposed to do.


[1] http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=699644

--
Adam CÉCILE
Mandriva / Linbox
1, Rue Pierre Simon de Laplace : 0 810 LINBOX
F-57070 Metz direct : +33 1 76 64 16 65
FRANCE www.mandriva.com


diff -Nur /tmp/glpi-0.83.91/debian/changelog debian/changelog
--- /tmp/glpi-0.83.91/debian/changelog	2013-07-08 11:00:55.0 +0200
+++ debian/changelog	2013-09-18 14:08:43.812705935 +0200
@@ -1,3 +1,14 @@
+glpi (0.83.91-3.1) UNRELEASED; urgency=low
+
+  * Non-maintainer upload.
+- Add 00-fix-css-typo patch
+- Add 01-upgrade-from-0.71-fix patch
+- Add missing libjs-extjs dependency
+- Add cron.d for scheduled/recurring tasks
+- Fix symlinks for external dependencies
+
+ -- Adam Cécile (Le_Vert) gand...@le-vert.net  Wed, 18 Sep 2013 14:08:01 +0200
+
 glpi (0.83.91-3) unstable; urgency=low
 
   * Move default mysql configuration to /usr/share/glpi (Closes: #714812)
diff -Nur /tmp/glpi-0.83.91/debian/control debian/control
--- /tmp/glpi-0.83.91/debian/control	2013-07-02 10:55:59.0 +0200
+++ debian/control	2013-09-12 15:39:26.0 +0200
@@ -10,12 +10,14 @@
 Architecture: all
 Depends: apache2 | apache | apache-ssl | apache-perl | httpd,
 php5 | php5-cgi | libapache2-mod-php5,
+php5-cli,
 php5-mysql,
 debconf (= 0.2.26) | debconf-2.0,
 dbconfig-common,
 ttf-freefont,
 tinymce,
 libphp-phpmailer,
+libjs-extjs,
 ${misc:Depends}
 Recommends: mysql-client,
 mysql-server
diff -Nur /tmp/glpi-0.83.91/debian/glpi.cron.d debian/glpi.cron.d
--- /tmp/glpi-0.83.91/debian/glpi.cron.d	1970-01-01 01:00:00.0 +0100
+++ debian/glpi.cron.d	2013-09-12 15:34:34.0 +0200
@@ -0,0 +1 @@
+*/1 * * * * www-data /usr/bin/php5 /usr/share/glpi/front/cron.php
diff -Nur /tmp/glpi-0.83.91/debian/links debian/links
--- /tmp/glpi-0.83.91/debian/links	1970-01-01 01:00:00.0 +0100
+++ debian/links	2013-09-18 14:06:12.146302844 +0200
@@ -0,0 +1,2 @@
+usr/share/javascript/extjs usr/share/glpi/lib/extjs
+usr/share/fonts/truetype/freefont/FreeSans.ttf usr/share/glpi/lib/ezcomponents/FreeSans.ttf
diff -Nur /tmp/glpi-0.83.91/debian/patches/00-fix-css-typo.patch debian/patches/00-fix-css-typo.patch
--- /tmp/glpi-0.83.91/debian/patches/00-fix-css-typo.patch	1970-01-01 01:00:00.0 +0100
+++ debian/patches/00-fix-css-typo.patch	2013-09-10 17:36:56.0 +0200
@@ -0,0 +1,11 @@
+--- glpi/inc/toolbox.class.php.new	2013-09-10 17:28:58.388712110 +0200
 glpi/inc/toolbox.class.php	2013-06-25 08:17:42.0 +0200
+@@ -491,7 +491,7 @@
+ 
+   // Display
+   if (!isCommandLine()) {
+- echo 'div style=position:fload-left; background-color:red; z-index:1'.
++ echo 'div style=position:float-left; background-color:red; z-index:1'.
+   'span class=bPHP '.$type.': /span';
+  echo $errmsg.' in '.$filename.' at line '.$linenum.'/div';
+   } else {
diff -Nur /tmp/glpi-0.83.91/debian/patches/01-upgrade-from-0.71-fix.patch debian/patches/01-upgrade-from-0.71-fix.patch
--- /tmp/glpi-0.83.91/debian/patches/01-upgrade-from-0.71-fix.patch	1970-01-01 01:00:00.0 +0100
+++ debian/patches/01-upgrade-from-0.71-fix.patch	2013-09-10 17:31:10.0 +0200
@@ -0,0 +1,11 @@
+--- glpi/install/update_0713_072.php	2013-06-25 08:17:42.0 +0200
 glpi/install/update_0713_072.php.new	2013-09-10 17:30:35.825234998 +0200
+@@ -325,7 +325,7 @@
+  $query_search_version = SELECT *
+   FROM `glpi_softwareversions`
+   WHERE `sID` = '.$soft['ID'].'
+-AND `name` = '.$vers['version'].';
++AND `name` = '.addslashes($vers['version']).'; 
+ 
+  if ($result_searchvers = $DB-query($query_search_version)) {
+ // Version already exists : update inst_software
diff -Nur /tmp/glpi-0.83.91/debian/patches/series debian/patches/series
--- /tmp/glpi-0.83.91/debian/patches/series	2013-06-26 17:08:17.0 +0200
+++ debian/patches/series	2013-09-10 17:36:23.0 +0200
@@ -1 +1,3 @@
 02-remove-code-copy-phpmailer.patch
+00-fix-css-typo.patch
+01-upgrade-from-0.71-fix.patch
diff -Nur /tmp/glpi-0.83.91/debian/rules debian/rules
--- /tmp/glpi-0.83.91/debian/rules	2013-07-08 10:55

Bug#722454: New patch

2013-09-12 Thread Adam Cécile

Please find attached a new revision of my patch.
I added a cron.d file to handle scheduled/recurring tasks within GLPI. 
php5-cli has been added a runtime dependency for this feature.


--
Adam CÉCILE
Mandriva / Linbox
1, Rue Pierre Simon de Laplace : 0 810 LINBOX
F-57070 Metz direct : +33 1 76 64 16 65
FRANCE www.mandriva.com

diff -Nur /tmp/glpi-0.83.91/debian/changelog glpi-0.83.91/debian/changelog
--- /tmp/glpi-0.83.91/debian/changelog	2013-07-08 11:00:55.0 +0200
+++ glpi-0.83.91/debian/changelog	2013-09-12 15:36:36.572482766 +0200
@@ -1,3 +1,13 @@
+glpi (0.83.91-3.1) UNRELEASED; urgency=low
+
+  * Non-maintainer upload.
+- Add 00-fix-css-typo patch
+- Add 01-upgrade-from-0.71-fix patch
+- Add missing libjs-extjs dependency
+- Add cron.d for scheduled/recurring tasks
+
+ -- Adam Cécile (Le_Vert) gand...@le-vert.net  Tue, 10 Sep 2013 17:31:51 +0200
+
 glpi (0.83.91-3) unstable; urgency=low
 
   * Move default mysql configuration to /usr/share/glpi (Closes: #714812)
diff -Nur /tmp/glpi-0.83.91/debian/control glpi-0.83.91/debian/control
--- /tmp/glpi-0.83.91/debian/control	2013-07-02 10:55:59.0 +0200
+++ glpi-0.83.91/debian/control	2013-09-12 15:39:26.870329335 +0200
@@ -10,12 +10,14 @@
 Architecture: all
 Depends: apache2 | apache | apache-ssl | apache-perl | httpd,
 php5 | php5-cgi | libapache2-mod-php5,
+php5-cli,
 php5-mysql,
 debconf (= 0.2.26) | debconf-2.0,
 dbconfig-common,
 ttf-freefont,
 tinymce,
 libphp-phpmailer,
+libjs-extjs,
 ${misc:Depends}
 Recommends: mysql-client,
 mysql-server
diff -Nur /tmp/glpi-0.83.91/debian/glpi.cron.d glpi-0.83.91/debian/glpi.cron.d
--- /tmp/glpi-0.83.91/debian/glpi.cron.d	1970-01-01 01:00:00.0 +0100
+++ glpi-0.83.91/debian/glpi.cron.d	2013-09-12 15:34:34.512893147 +0200
@@ -0,0 +1 @@
+*/1 * * * * www-data /usr/bin/php5 /usr/share/glpi/front/cron.php
diff -Nur /tmp/glpi-0.83.91/debian/patches/00-fix-css-typo.patch glpi-0.83.91/debian/patches/00-fix-css-typo.patch
--- /tmp/glpi-0.83.91/debian/patches/00-fix-css-typo.patch	1970-01-01 01:00:00.0 +0100
+++ glpi-0.83.91/debian/patches/00-fix-css-typo.patch	2013-09-10 17:36:56.0 +0200
@@ -0,0 +1,11 @@
+--- glpi/inc/toolbox.class.php.new	2013-09-10 17:28:58.388712110 +0200
 glpi/inc/toolbox.class.php	2013-06-25 08:17:42.0 +0200
+@@ -491,7 +491,7 @@
+ 
+   // Display
+   if (!isCommandLine()) {
+- echo 'div style=position:fload-left; background-color:red; z-index:1'.
++ echo 'div style=position:float-left; background-color:red; z-index:1'.
+   'span class=bPHP '.$type.': /span';
+  echo $errmsg.' in '.$filename.' at line '.$linenum.'/div';
+   } else {
diff -Nur /tmp/glpi-0.83.91/debian/patches/01-upgrade-from-0.71-fix.patch glpi-0.83.91/debian/patches/01-upgrade-from-0.71-fix.patch
--- /tmp/glpi-0.83.91/debian/patches/01-upgrade-from-0.71-fix.patch	1970-01-01 01:00:00.0 +0100
+++ glpi-0.83.91/debian/patches/01-upgrade-from-0.71-fix.patch	2013-09-10 17:31:10.0 +0200
@@ -0,0 +1,11 @@
+--- glpi/install/update_0713_072.php	2013-06-25 08:17:42.0 +0200
 glpi/install/update_0713_072.php.new	2013-09-10 17:30:35.825234998 +0200
+@@ -325,7 +325,7 @@
+  $query_search_version = SELECT *
+   FROM `glpi_softwareversions`
+   WHERE `sID` = '.$soft['ID'].'
+-AND `name` = '.$vers['version'].';
++AND `name` = '.addslashes($vers['version']).'; 
+ 
+  if ($result_searchvers = $DB-query($query_search_version)) {
+ // Version already exists : update inst_software
diff -Nur /tmp/glpi-0.83.91/debian/patches/series glpi-0.83.91/debian/patches/series
--- /tmp/glpi-0.83.91/debian/patches/series	2013-06-26 17:08:17.0 +0200
+++ glpi-0.83.91/debian/patches/series	2013-09-10 17:36:23.0 +0200
@@ -1 +1,3 @@
 02-remove-code-copy-phpmailer.patch
+00-fix-css-typo.patch
+01-upgrade-from-0.71-fix.patch
diff -Nur /tmp/glpi-0.83.91/debian/rules glpi-0.83.91/debian/rules
--- /tmp/glpi-0.83.91/debian/rules	2013-07-08 10:55:51.0 +0200
+++ glpi-0.83.91/debian/rules	2013-09-12 15:38:08.629156444 +0200
@@ -88,6 +88,7 @@
 	dh_link
 	dh_fixperms
 	dh_compress
+	dh_installcron
 	dh_installdebconf -pglpi
 	dh_installdeb
 	dh_gencontrol


Bug#722454: [glpi] Missing libjs-extjs dependency (+ other fix)

2013-09-11 Thread Adam Cécile (Le_Vert)

Package: glpi
Version: 0.83.91-3
Severity: normal
Tags: patch

Hi,

GLPI can't work without extjs. To reproduce this bug, select some 
computers, select an action (bottom page drop down list). There's an 
AJAX-refreshed div which is supposed to reload and show a new button to 
start the selected action. Without extjs installed, no button appears.


Please find attached a patch for the whole package. It also contains a 
css typo fix and an import patch for old GLPI versions (coming from 
upstream dev Tsmr on IRC).


Regards, Adam.


--- System information. ---
Architecture: amd64
Kernel: Linux 3.2.0-4-amd64

Debian Release: jessie/sid
900 testing ftp2.fr.debian.org
500 unstable ftp2.fr.debian.org
500 stable security.debian.org
500 stable ftp2.fr.debian.org
500 stable deb.opera.com

--- Package information. ---
Package's Depends field is empty.

Package's Recommends field is empty.

Package's Suggests field is empty.


diff -Nur /tmp/glpi-0.83.91/debian/changelog glpi-0.83.91/debian/changelog
--- /tmp/glpi-0.83.91/debian/changelog	2013-07-08 11:00:55.0 +0200
+++ glpi-0.83.91/debian/changelog	2013-09-11 10:36:25.0 +0200
@@ -1,3 +1,12 @@
+glpi (0.83.91-3.1) UNRELEASED; urgency=low
+
+  * Non-maintainer upload.
+- Add 00-fix-css-typo patch
+- Add 01-upgrade-from-0.71-fix patch
+- Add missing libjs-extjs dependency
+
+ -- Adam Cécile (Le_Vert) gand...@le-vert.net  Tue, 10 Sep 2013 17:31:51 +0200
+
 glpi (0.83.91-3) unstable; urgency=low
 
   * Move default mysql configuration to /usr/share/glpi (Closes: #714812)
diff -Nur /tmp/glpi-0.83.91/debian/control glpi-0.83.91/debian/control
--- /tmp/glpi-0.83.91/debian/control	2013-07-02 10:55:59.0 +0200
+++ glpi-0.83.91/debian/control	2013-09-11 10:36:12.0 +0200
@@ -16,6 +16,7 @@
 ttf-freefont,
 tinymce,
 libphp-phpmailer,
+libjs-extjs,
 ${misc:Depends}
 Recommends: mysql-client,
 mysql-server
diff -Nur /tmp/glpi-0.83.91/debian/patches/00-fix-css-typo.patch glpi-0.83.91/debian/patches/00-fix-css-typo.patch
--- /tmp/glpi-0.83.91/debian/patches/00-fix-css-typo.patch	1970-01-01 01:00:00.0 +0100
+++ glpi-0.83.91/debian/patches/00-fix-css-typo.patch	2013-09-10 17:36:56.0 +0200
@@ -0,0 +1,11 @@
+--- glpi/inc/toolbox.class.php.new	2013-09-10 17:28:58.388712110 +0200
 glpi/inc/toolbox.class.php	2013-06-25 08:17:42.0 +0200
+@@ -491,7 +491,7 @@
+ 
+   // Display
+   if (!isCommandLine()) {
+- echo 'div style=position:fload-left; background-color:red; z-index:1'.
++ echo 'div style=position:float-left; background-color:red; z-index:1'.
+   'span class=bPHP '.$type.': /span';
+  echo $errmsg.' in '.$filename.' at line '.$linenum.'/div';
+   } else {
diff -Nur /tmp/glpi-0.83.91/debian/patches/01-upgrade-from-0.71-fix.patch glpi-0.83.91/debian/patches/01-upgrade-from-0.71-fix.patch
--- /tmp/glpi-0.83.91/debian/patches/01-upgrade-from-0.71-fix.patch	1970-01-01 01:00:00.0 +0100
+++ glpi-0.83.91/debian/patches/01-upgrade-from-0.71-fix.patch	2013-09-10 17:31:10.0 +0200
@@ -0,0 +1,11 @@
+--- glpi/install/update_0713_072.php	2013-06-25 08:17:42.0 +0200
 glpi/install/update_0713_072.php.new	2013-09-10 17:30:35.825234998 +0200
+@@ -325,7 +325,7 @@
+  $query_search_version = SELECT *
+   FROM `glpi_softwareversions`
+   WHERE `sID` = '.$soft['ID'].'
+-AND `name` = '.$vers['version'].';
++AND `name` = '.addslashes($vers['version']).'; 
+ 
+  if ($result_searchvers = $DB-query($query_search_version)) {
+ // Version already exists : update inst_software
diff -Nur /tmp/glpi-0.83.91/debian/patches/series glpi-0.83.91/debian/patches/series
--- /tmp/glpi-0.83.91/debian/patches/series	2013-06-26 17:08:17.0 +0200
+++ glpi-0.83.91/debian/patches/series	2013-09-10 17:36:23.0 +0200
@@ -1 +1,3 @@
 02-remove-code-copy-phpmailer.patch
+00-fix-css-typo.patch
+01-upgrade-from-0.71-fix.patch


Bug#701018: #701018 ITP: rtl-sdr -- Software defined radio receiver for Realtek RTL2832U dongles

2013-07-17 Thread Adam Cécile (Le_Vert)

Hi guys,

I had to package rtl-sdr for my own needs... The packages isn't perfect yet:

* Some files have no copyright/license information (they probably come 
from the Linux kernel), I marked them as unknown in debian/copyright

* Manpages are missing
* Doxygen doc isn't generated

If someone want to help or upload this package to Debian, it's available 
here:


dget -x 
http://mentors.debian.net/debian/pool/main/r/rtl-sdr/rtl-sdr_0.5.0+git20130715-1.dsc



Regards, Adam.


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



Bug#684430: nagios-plugins-ldap-ltb

2012-08-09 Thread Adam Cécile (Le_Vert)

Hi,

Package available @mentors:
http://mentors.debian.net/debian/pool/main/n/nagios-plugins-ldap-ltb/nagios-plugins-ldap-ltb_0.3-1.dsc

Regards, Adam.


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



Bug#681229: shorewall: Incorrect kernel messages marking

2012-07-11 Thread Adam Cécile (Le_Vert)

Hi,

I can confirm this weird behavior on my homemade router running Debian 
Wheezy.


Regards, Adam.



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



Bug#681229: shorewall: Incorrect kernel messages marking

2012-07-11 Thread Adam Cécile (Le_Vert)

On 11/07/2012 22:17, Adam Cécile (Le_Vert) wrote:

Hi,

I can confirm this weird behavior on my homemade router running Debian 
Wheezy.


Regards, Adam.
This may be related to iptables, instead of shorewall, according to this 
Fedora report:


https://bugzilla.redhat.com/show_bug.cgi?id=825796



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



Bug#580491: #580491: chkrootkit

2012-06-04 Thread Adam Cécile (Le_Vert)

Hi,

I fixed the patch to work on current version and created a new package 
[1] for chkrootkit.
This one really works in silent mode, and thus, avoid receiving an email 
from cron everydays with false positives or empty lines.


Enjoy!

[1] 
http://mentors.debian.net/debian/pool/main/c/chkrootkit/chkrootkit_0.49-4.2.dsc 





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



Bug#660186: ejabberd: mod_vcard_ldap Broken JPEG Photo in 2.1.10

2012-03-28 Thread Adam Cécile

Hi,

I can confirm this issue.

--
Adam CÉCILE Mandriva / Linbox
1, rue Pierre Simon de Laplace : 0 810 LINBOX
F-57070 Metz direct : +33 3 87 50 87 95
FRANCE www.mandriva.com




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



Bug#656630: #656630: cciss-vol-status: Please ship monitoring script for periodic checks

2012-01-31 Thread Adam Cécile (Le_Vert)

Hi guys,

Thanks for updating cciss-vol-status package. I also updated mine so 
here is a working init script.


Btw, I made some modifications to your original package, mostly to 
downgrade from dh8 to dh5, but some changes are needed to use this 
script so please check my own package:

http://hwraid.le-vert.net/debian/sources/cciss-vol-status_1.09-2hwraid1.dsc
#! /bin/sh

# Author: Petter Reinholdtsen p...@hungry.com
# Author: Adam Cécile (Le_Vert) gand...@le-vert.net
# License: GNU General Public License v2 or later
#
### BEGIN INIT INFO
# Provides:  cciss-vol-statusd
# Required-Start:$remote_fs $syslog
# Required-Stop: $remote_fs $syslog
# Default-Start: 2 3 4 5
# Default-Stop:  0 1 6
# Short-Description: Check cciss_vol_status values in the background.
### END INIT INFO

PATH=/sbin:/bin:/usr/sbin:/usr/bin
DESC=cciss-vol-status monitor
NAME=cciss-vol-statusd
PIDFILE=/var/run/$NAME.pid
STATUSFILE=/var/run/$NAME.status
SCRIPTNAME=/etc/init.d/$NAME


# Do not touch you can configure this in /etc/default/cciss-vol-statusd
MAILTO=root   # Where to report problems
PERIOD=600# Seconds between each check(default 10 minutes)
REMIND=7200   # Seconds between each reminder (default 2 hours)
RUN_DAEMON=yes
ID=/dev/cciss/c0d0

[ -e /etc/default/cciss-vol-statusd ]  . /etc/default/cciss-vol-statusd

# Gracefully exit if the package has been removed.
test -x /usr/sbin/cciss_vol_status || exit 0

. /lib/lsb/init-functions
[ -e /etc/default/rcS ]  . /etc/default/rcS

if [ $RUN_DAEMON = no ] ; then
log_begin_msg cciss-vol-statusd is disabled in 
/etc/default/cciss-vol-statusd, not starting.
log_end_msg 0
exit 0
fi

check_cciss() {
echo $$  $PIDFILE.new  mv $PIDFILE.new $PIDFILE
while true ; do
# Check ever $PERIOD seconds, send email on every status
# change and repeat ever $REMIND seconds if the raid is still
# bad.
if (cciss_vol_status $ID); then
BADRAID=false
else
BADRAID=true
logger -t cciss-vol-statusd detected non-optimal RAID status
fi
STATUSCHANGE=false
if [ true = $BADRAID ] ; then
# RAID not OK
(cciss_vol_status $ID)  $STATUSFILE.new
if [ ! -f $STATUSFILE ] ; then # RAID just became broken
STATUSCHANGE=true
mv $STATUSFILE.new $STATUSFILE
elif cmp -s $STATUSFILE $STATUSFILE.new ; then
# No change.  Should we send reminder?
LASTTIME=`stat -c '%Z' $STATUSFILE`
NOW=`date +%s`
SINCELAST=`expr $NOW - $LASTTIME`
if [ $REMIND -le $SINCELAST ]; then
# Time to send reminder
STATUSCHANGE=true
mv $STATUSFILE.new $STATUSFILE
else
rm $STATUSFILE.new
fi
else
STATUSCHANGE=true
mv $STATUSFILE.new $STATUSFILE
fi
else
# RAID OK
if [ -f $STATUSFILE ] ; then
rm $STATUSFILE
STATUSCHANGE=true
fi
fi

if [ true = $STATUSCHANGE ]; then
hostname=`uname -n`
(
cat EOF 
This is a RAID status update from cciss-vol-statusd.  The cciss_vol_status
program reports that one of the RAIDs changed state:

EOF
if [ -f $STATUSFILE ] ; then
cat $STATUSFILE
else
(cciss_vol_status $ID)
fi
echo
echo Report from $0 on $hostname
) | mail -s info: CCISS raid status change on $hostname $MAILTO
fi
sleep $PERIOD
done
}

check_daemon() {
# Let's check if there is a daemon which is really running and not 
timing out
DAEMON_RUN=`ps aux | grep /etc/init.d/cciss-vol-statusd check_cciss | 
grep -v grep | grep -v daemon`
if [ -n $DAEMON_RUN ] ; then
return 1;
else
return 0;
fi
}

#
#   Function that starts the daemon/service.
#
d_start() {
[ -f $PIDFILE ]  PID=`cat $PIDFILE`
if [ $PID ] ; then
log_progress_msg Daemon already running. Refusing to start another
return 0
elif check_daemon ; then
# Use the daemon package to turn this script into a daemon
start-stop-daemon --start --quiet --pidfile $PIDFILE \
--oknodo --exec /usr/bin/daemon /usr/bin/daemon $SCRIPTNAME 
check_cciss
return 0
else
log_progress_msg Daemon is already running. Refusing to start another
return 0
fi
}

#
#   Function that stops the daemon/service.
#
d_stop() {
if [ -f $PIDFILE ] ; then
start-stop-daemon --stop --oknodo --quiet --pidfile $PIDFILE  
/dev/null 21 
rm -f $PIDFILE
else

Bug#656630: #656630: cciss-vol-status: Please ship monitoring script for periodic checks

2012-01-31 Thread Adam Cécile (Le_Vert)

Le 31/01/2012 15:42, Christian Hofstaedtler a écrit :

Thank you for the bug report, but I'll not include this in the
official package. I'd recommend you to use an active checking tool,
like Nagios or any of the others available in Debian.

cciss_vol_status -p should fit nicely into Nagios' expectations.

   -ch

As you want, I just wanted to send an update init script, to avoid 
having two different scripts if you wanted to merge it.


Adam.



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



Bug#617543: #617543: dcraw: new upstream version

2012-01-06 Thread Adam Cécile

On 06/01/2012 11:58, Steve King wrote:

Hi,

I've prepared a new up to date package, with localization support and
such...

Source package is here:
http://mentors.debian.net/debian/pool/main/d/dcraw/dcraw_9.12+debian-1.dsc


Hi,

This does't appear to be a source package, merely the description file.
I will certainly have a look at your source package.

--
Steve



Yes it is ;-)

adam@amon:/tmp$ dget -x 
http://mentors.debian.net/debian/pool/main/d/dcraw/dcraw_9.12+debian-1.dsc
dget: retrieving 
http://mentors.debian.net/debian/pool/main/d/dcraw/dcraw_9.12+debian-1.dsc
  % Total% Received % Xferd  Average Speed   TimeTime Time  
Current
 Dload  Upload   Total   SpentLeft  
Speed
100  1110  100  11100 0   5350  0 --:--:-- --:--:-- --:--:-- 
16086
dget: retrieving 
http://mentors.debian.net/debian/pool/main/d/dcraw/dcraw_9.12+debian.orig.tar.gz
  % Total% Received % Xferd  Average Speed   TimeTime Time  
Current
 Dload  Upload   Total   SpentLeft  
Speed
100  189k  100  189k0 0   285k  0 --:--:-- --:--:-- 
--:--:--  356k
dget: retrieving 
http://mentors.debian.net/debian/pool/main/d/dcraw/dcraw_9.12+debian-1.diff.gz
  % Total% Received % Xferd  Average Speed   TimeTime Time  
Current
 Dload  Upload   Total   SpentLeft  
Speed
100  6124  100  61240 0  26007  0 --:--:-- --:--:-- --:--:-- 
46393

dscverify: can't find any system keyrings
adam@amon:/tmp$

--
Adam CÉCILE Mandriva / Linbox
1, rue Pierre Simon de Laplace : 0 810 LINBOX
F-57070 Metz direct : +33 3 87 50 87 95
FRANCE www.mandriva.com




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



Bug#617543: #617543: dcraw: new upstream version

2011-12-29 Thread Adam Cécile

Hi,

I've prepared a new up to date package, with localization support and 
such...


Source package is here:
http://mentors.debian.net/debian/pool/main/d/dcraw/dcraw_9.12+debian-1.dsc

I also built i386/amd64 binaries:
http://dedibox.le-vert.net/pub/debian/packaging/dcraw/dcraw_9.12+debian-1_i386.deb
http://dedibox.le-vert.net/pub/debian/packaging/dcraw/dcraw_9.12+debian-1_amd64.deb

Regards, Adam.

--
Adam CÉCILE Mandriva / Linbox
1, rue Pierre Simon de Laplace : 0 810 LINBOX
F-57070 Metz direct : +33 3 87 50 87 95
FRANCE www.mandriva.com




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



Bug#617349: #617349: lxsession: Action reboot fails with error message, need to logout first before rebooting

2011-08-07 Thread Adam Cécile (Le_Vert)

Hi,

Just add your user to powerdev group. This is how I fixed that issue.

Regards, Adam.



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



Bug#588588: Aircrack licence issue

2011-06-09 Thread Adam Cécile

Hi guys,

Sorry for the delay, well... Really sorry for the amazing delay.

I just saw the issue looks like being fixed upstream. I'll try to 
prepare an updated package today, either only a patch to include licence 
information or an updated package against svn trunk.

Need to have a chat with Mister_X to decide what to do first.

Regards, Adam.

--
Adam CÉCILE Mandriva / Linbox
1, rue Pierre Simon de Laplace : 0 810 LINBOX
F-57070 Metz direct : +33 3 87 50 87 95
FRANCE www.linbox.com




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



Bug#596361: proposed patch

2011-03-20 Thread Adam Cécile (Le_Vert)

Hey,

Please go ahead, thanks.

Adal.

Le 20/03/2011 15:04, Eduard Bloch a écrit :

retitle 596361 ntfs-3g: new upstream version 2011.1.15
severity 596361 normal
thanks

Hello everyone,

Adam seems to be MIA since there was another major release of NTFS-3G.
And I want to have it in Sid RSN because there are some fixes which I
suspect to cause serious performance regression with 2.6.38 kernel on my
systems.

Interdiff attached. I consider uploading this in exactly one week from
now unless we see some maintainer response within this period.

Regards,
Eduard.






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



Bug#617766: sympa: Missing linebreaks in generated archives

2011-03-11 Thread Adam Cécile (Le_Vert)

Package: sympa
Version: 6.1.1~dfsg-2
Severity: important
Tags: upstream patch

Hello,

There's a bug in 6.1.1 release that makes archives nearly unusable. All 
linebreaks are missing.

This bug has been fixed in 6.1.3:
6.1.3November 15, 2010

  Bug fixes:
src/lib/Message.pm: Plain text message lost linebreaks in the web archives.
This was due to the text/plain parts in mesasges were handled by 
Stripscript.
Fixed by only handling test/html parts with Stripscripts.

I've fixed the issue for me by applying the upstream fix below in 6.1.1 source 
package:
http://sourcesup.cru.fr/scm/viewvc.php/branches/sympa-6.1-branch/src/lib/Message.pm?root=sympar1=6731r2=6732view=patch

Thanks,

Regards, Adam.


-- System Information:
Debian Release: wheezy/sid
  APT prefers testing
  APT policy: (900, 'testing'), (400, 'unstable'), (200, 'experimental')
Architecture: amd64 (x86_64)

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




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



Bug#444392: miniupnpc upload

2010-11-22 Thread Adam Cécile (Le_Vert)

Le 22/11/2010 19:02, Eugene V. Lyubimkin a écrit :

[ CC'ed some interested persons ]

Hi,

Thomas, I don't consider the availability of the 'iptables.h' a blocker for
uploading, and here is why.

The status quo, as I understand, is 'several packages embed miniupnpc in their
source trees'. I considering this situation as much worse than 'single,
properly packaged miniupnpc embedding one single header file'.

Not having this package also blocks one of my sponsoree's packages to be 
updated.

Please upload your packaging to Debian unstable/experimental soon. Otherwise I
will have to do a hijack attempt (or leave this action for any willing DD in
CC if he/she wants) with sponsoring Adam's packaging which looks overall good
to me except of easily resolvable details.

   

Hi Eugene,

I would be glad to get my package uploaded, but first... Tell me more 
about eh easily resolvable details so I can upload a fixed package to 
d.m.n.
If the other packager wants to get his package uploaded, I don't really 
mind. Mine is currently in production on my own debian based router, 
providing upnp functionnality to lan and wlan :)


Regards, Adam.



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



Bug#444392: #444392 - ITP: miniupnpc -- UPnP IGD client lightweight library

2010-11-17 Thread Adam Cécile (Le_Vert)

Hi mates,

I created a package for my own use and its working fine.
Is there really someone who plan to create an official debian's package ?
If not mine is available here [1] and I would be glad if someone could 
sponsor this upload.


Best regards, Adam.

[1] 
http://mentors.debian.net/debian/pool/main/m/miniupnpc/miniupnpc_1.4.20100609-1.dsc 





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



Bug#541979: #541979 - RFP: miniupnpd -- UPnP IGD which provide NAT traversal services

2010-11-17 Thread Adam Cécile (Le_Vert)

Hi mates,

I created a package for my own use and uploaded it to mentors [1].
It's working nice but I had to include some iptables headers which are 
not provided by iptables-dev so I'm not sure it really fits the 
debian's standards.

However, I can't figure out how to do something better.
Anyway, if some DD come here and think the hack is not so crappy, I'd be 
glad if someone sponsor this upload!


Best regards, Adam.

[1] 
http://mentors.debian.net/debian/pool/main/m/miniupnpd/miniupnpd_1.4.20100921-1.dsc




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



Bug#598005: madfuload: Only available for amd64 architecture

2010-09-25 Thread Adam Cécile (Le_Vert)

Package: madfuload
Severity: grave
Justification: renders package unusable

Hi,

This package is only available for amd64. Source package say arch: any 
so there's probably an issue here.

At least, it should be available for i386 too.

Regards, Adam.


-- System Information:
Debian Release: squeeze/sid
  APT prefers testing
  APT policy: (900, 'testing'), (400, 'unstable'), (200, 'experimental')
Architecture: amd64 (x86_64)

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



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



Bug#554528: 554528 (New upstream version)

2010-07-10 Thread Adam Cécile (Le_Vert)

Le 10/07/2010 12:49, Kurt Roeckx a écrit :

On Sat, Jul 10, 2010 at 12:24:16PM +0200, Sven Eckelmann wrote:
   

Kurt Roeckx wrote:
 

On Fri, Jul 09, 2010 at 02:48:38PM +0200, Sven Eckelmann wrote:
   

Kurt Roeckx wrote:
 

On Tue, Mar 16, 2010 at 03:23:24PM +0100, Adam Cécile (Le_Vert) wrote:
   

tags 554528 + pending
 

Any progress on this?


Kurt
   

Ah, I think he expects that you upload it to the repository from

  http://mentors.debian.net/cgi-bin/sponsor-pkglist?action=details;package
  =picard
 

I'd be happy to sponsor an upload of that.  But it would have been
nice if that information was in the bug report.  Atleast 2 DDs
have asked for this new upstream package, so it shouldn't have
been that hard to find a sponsor.

I'll take a look at it.
   

Hm, I looked at it right now and it FTBFS and has weird copyright information
for the icons and picard/browser/filelookup.py.

The first problem can be fixed using librsvg2-bin in Build-Depends, but the
copyright problem is a little bit harder - see
resources/img-src/Copyright.htm for the unfree license.
 

I also got the FTBFS part.  Note that you can also fix it with
adding libmagickcore3-extra.

Note that the copyright file says:
picard is triple-licensed under 'GNU General Public License', 'RealNetworks
Public Source License Version 1.0' and 'RealNetworks Community Source
License Version 1.0'.


Kurt
   

Hi mates,

Indeed the FTFBS issue i quite trivial but the icon licensing is the 
real problem.
I never really tried to find a sponsor because I haven't find some time 
to deal with this stupid icon license issue.

Is there any one who's able to create a new one with inkscape ?

Regards, Adam.



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



Bug#585887: xsane: Pixma MP160: Operation was cancelled when pressing scan button

2010-06-29 Thread Adam Cécile (Le_Vert)

Le 29/06/2010 18:27, Julien BLACHE a écrit :

Adam Cécile (Le_Vert)gand...@le-vert.net  wrote:

Hi Adam,

   

Xsane worked fine before but it doesn't anymore.
Either as a regular user or root, preview works as expected but real
scanning just shows an operation was cancelled error popup.
Simple-scan works fine.
 

There's a git snapshot of sane-backends in experimental that you could
try out, in case this has been fixed after 1.0.21. The bug is likely not
in XSane.

JB.

   

Hi Julien,

Indeed experimental packages seem to fix the issue, at least for root. 
Thanks.

Now I need to figure out why my scanner stopped working as a regular user...

Adam.



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



Bug#585887: xsane: Pixma MP160: Operation was cancelled when pressing scan button

2010-06-14 Thread Adam Cécile (Le_Vert)

Package: xsane
Version: 0.997-2
Severity: important

Hi,

Xsane worked fine before but it doesn't anymore.
Either as a regular user or root, preview works as expected but real 
scanning just shows an operation was cancelled error popup.

Simple-scan works fine.

I'm available to make more tests.

Regards, Adam.

-- System Information:
Debian Release: squeeze/sid
  APT prefers testing
  APT policy: (900, 'testing'), (400, 'unstable'), (200, 'experimental')
Architecture: amd64 (x86_64)

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

Versions of packages xsane depends on:
ii  libatk1.0-0 1.30.0-1 The ATK accessibility toolkit
ii  libc6   2.11.1-3 Embedded GNU C Library: 
Shared lib
ii  libcairo2   1.8.10-4 The Cairo 2D vector 
graphics libra
ii  libfontconfig1  2.8.0-2.1generic font configuration 
library
ii  libfreetype62.3.11-1 FreeType 2 font engine, 
shared lib
ii  libgimp2.0  2.6.8-3  Libraries for the GNU Image 
Manipu

ii  libglib2.0-02.24.1-1 The GLib library of C routines
ii  libgtk2.0-0 2.20.1-1 The GTK+ graphical user 
interface ii  libjpeg62   6b-16.1  The Independent 
JPEG Group's JPEG ii  liblcms11.18.dfsg-1.2+b1 Color 
management library
ii  libpango1.0-0   1.28.0-1 Layout and rendering of 
internatio

ii  libpng12-0  1.2.43-1 PNG library - runtime
ii  libsane 1.0.21-2 API library for scanners
ii  libtiff43.9.2-3+b1   Tag Image File Format 
(TIFF) libra
ii  xsane-common0.997-2  featureful graphical 
frontend for ii  zlib1g  1:1.2.3.4.dfsg-3 compression 
library - runtime


Versions of packages xsane recommends:
ii6.0.435.0~svn20100614r49660-0u Chromium browser
ii1.4.3-1Common UNIX Printing 
System(tm) - ii3.5.9-3Web browser 
based on Firefox
ii4:4.4.3-1  KDE 4's advanced file 
manager, web
ii2.8.8dev.3-3   Text-mode WWW Browser with 
NLS sup


Versions of packages xsane suggests:
ii  gimp  2.6.8-3The GNU Image Manipulation 
Program

pn  gocr  none (no description available)
pn  gvnone (no description available)
pn  hylafax-client | mgetty-fax   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#568233: FuzzyOcr

2010-05-18 Thread Adam Cécile (Le_Vert)

Hi,

3.6.0-2 still doesn't work inside spamassassion:

dedibox:/etc/spamassassin# spamassassin --debug FuzzyOcr  
/usr/share/doc/fuzzyocr/examples/ocr-wrongext.eml /dev/null
mai 18 10:45:06.653 [5779] dbg: FuzzyOcr: focr_bin_helper: 
'pnmnorm,pnminvert,ppmtopgm'
mai 18 10:45:06.654 [5779] warn: plugin: eval failed: Insecure 
dependency in open while running with -T switch at 
/usr/share/perl5/FuzzyOcr/Logging.pm line 34.
mai 18 10:45:06.654 [5779] info: config: failed to parse line, skipping, 
in /etc/spamassassin/FuzzyOcr.cf: focr_bin_helper pnmnorm, pnminvert, 
ppmtopgm

mai 18 10:45:06.655 [5779] dbg: FuzzyOcr: focr_bin_helper: 'tesseract'
mai 18 10:45:06.655 [5779] warn: plugin: eval failed: Insecure 
dependency in open while running with -T switch at 
/usr/share/perl5/FuzzyOcr/Logging.pm line 34.
mai 18 10:45:06.655 [5779] info: config: failed to parse line, skipping, 
in /etc/spamassassin/FuzzyOcr.cf: focr_bin_helper tesseract
mai 18 10:45:06.657 [5779] info: FuzzyOcr: Starting preprocessor parser 
for file /etc/mail/spamassassin/FuzzyOcr.preps...
mai 18 10:45:06.658 [5779] warn: plugin: eval failed: Insecure 
dependency in open while running with -T switch at 
/usr/share/perl5/FuzzyOcr/Logging.pm line 34.
mai 18 10:45:06.658 [5779] info: config: failed to parse line, skipping, 
in /etc/spamassassin/FuzzyOcr.cf: focr_end_config
mai 18 10:45:07.484 [5779] info: FuzzyOcr: Searching in: 
/usr/local/netpbm/bin
mai 18 10:45:07.484 [5779] warn: plugin: eval failed: Insecure 
dependency in open while running with -T switch at 
/usr/share/perl5/FuzzyOcr/Logging.pm line 34.
mai 18 10:45:15.448 [5779] info: pyzor: [5782] error: TERMINATED, signal 
15 (000f)
mai 18 10:45:15.472 [5779] info: rules: meta test ADVANCE_FEE_3_NEW_FORM 
has dependency 'ADVANCE_FEE_3_NEW' with a zero score
mai 18 10:45:15.498 [5779] info: rules: meta test 
ADVANCE_FEE_3_NEW_MONEY has dependency 'ADVANCE_FEE_3_NEW' with a zero score

mai 18 10:45:15.589 [5779] dbg: FuzzyOcr: Starting FuzzyOcr...
mai 18 10:45:15.589 [5779] warn: rules: failed to run FUZZY_OCR test, 
skipping:
mai 18 10:45:15.589 [5779] warn:  (Insecure dependency in open while 
running with -T switch at /usr/share/perl5/FuzzyOcr/Logging.pm line 34.

mai 18 10:45:15.589 [5779] warn: )

Regards, Adam.



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



Bug#552746: #552746: aqualung: debian bug

2010-04-15 Thread Adam Cécile (Le_Vert)

Hello,

Could you please give 0.9~beta11 a try ? I believe your bug should be 
fixed...


Regards, Adam.



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



Bug#553319: #553319: squidguard: CVE-2009-3826, CVE-2009-3700

2010-03-30 Thread Adam Cécile (Le_Vert)

Hello,

I made an updated package for my own use. It fixes a bunch of issues and 
should really be part of squeeze.
However, I don't have much time to care about squidguard and thus, won't 
maintain the package.


Hope this could help...
http://mentors.debian.net/debian/pool/main/s/squidguard/squidguard_1.4-0.1.dsc

Changelog:
* Non-maintainer upload.
* New upstream release (Closes: #535158).
* Add quilt patch system (and README.source).
* Drop all debian's patches (no patch system, no real way to see what they,
  do, porbably obsoletes).
* Include usptream's Patch-20091015 and Patch-20091019 to fix CVE-2009-3826
  and CVE-2009-3700 (Closes: #535158).
* Add 002-Makefile_DESTDIR_fix patch to use DESTDIR in Makefile.
* Improve debian/rules to avoid build running twice (+ minor improvements).
* Bump Standards-Version to 3.8.4.
* Bump DH COMPAT to 5.
* Fix debian/install (drop {}).
* Remove 'not cleaned' files to avoid having them in diff.gz.
* Add libdb4.4-dev alternative build dependency for Etch backporting


Regards, Adam.



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



Bug#535158: #535158: squidguard: New release available

2010-03-30 Thread Adam Cécile (Le_Vert)

Hello,

I made an updated package for my own use. It fixes a bunch of issues and 
should really be part of squeeze.
However, I don't have much time to care about squidguard and thus, won't 
maintain the package.


Hope this could help...
http://mentors.debian.net/debian/pool/main/s/squidguard/squidguard_1.4-0.1.dsc

Changelog:
* Non-maintainer upload.
* New upstream release (Closes: #535158).
* Add quilt patch system (and README.source).
* Drop all debian's patches (no patch system, no real way to see what they,
  do, porbably obsoletes).
* Include usptream's Patch-20091015 and Patch-20091019 to fix CVE-2009-3826
  and CVE-2009-3700 (Closes: #535158).
* Add 002-Makefile_DESTDIR_fix patch to use DESTDIR in Makefile.
* Improve debian/rules to avoid build running twice (+ minor improvements).
* Bump Standards-Version to 3.8.4.
* Bump DH COMPAT to 5.
* Fix debian/install (drop {}).
* Remove 'not cleaned' files to avoid having them in diff.gz.
* Add libdb4.4-dev alternative build dependency for Etch backporting


Regards, Adam.



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



Bug#528936: #528936: ntfs-3g: Please include upstream documentation in the package

2010-03-15 Thread Adam Cécile

Hi,

That's quite a good idea. Turning it into regular FAQ flat file would be 
even better...

I'll see what I can do.

Thanks,

Adam.



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



Bug#573308: #573308: museek+: Python (= 2.6) extensions are not installed

2010-03-12 Thread Adam Cécile

Hi,

An updated package against current SVN trunk (fixes a bunch of 
segfaults) is on the way.
Jakub, would you care about uploading the package when all my tests are 
done ?

I'm not DD.

Regards, Adam.



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



Bug#573221: #573221: hellanzb: doesn't work with newer twisted

2010-03-12 Thread Adam Cécile

Hello,

I'm going to update this package today (thanks for the patch).
Filippo, Eric, is there anyone who's available to upload the fixed 
package ? I'm not DD.


Thanks in advance,

Adam.



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



Bug#573308: #573308: museek+: Python (= 2.6) extensions are not installed

2010-03-12 Thread Adam Cécile (Le_Vert)

Le 12/03/2010 14:40, Jakub Wilk a écrit :

* Adam Cécile acec...@linbox.com, 2010-03-12, 14:32:
An updated package against current SVN trunk (fixes a bunch of 
segfaults) is on the way.
Jakub, would you care about uploading the package when all my tests 
are done ?


Of course, just ping me when the package is ready.


Package is available on debian mentors:
http://mentors.debian.net/debian/pool/main/m/museek+/museek+_0.2+svn20100126.r1206-1.dsc

Thanks in advance.



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



Bug#560685: Info received (ntfs-3g: Please package new upstream version (2010.1.16 stable))

2010-01-26 Thread Adam Cécile (Le_Vert)

Le 26/01/2010 02:25, Michael Biebl a écrit :

Hi Adam,

I prepared updated packages for 2010.1.16. You can find them at [1]. If you
could review and ack them, I would very much appreciate that.
If you are busy otherwise, would you be ok if I NMUed this version?

Cheers,
Michael

[1] http://people.debian.org/~biebl/ntfs-3g/
   

Hi Michael,

I'm too busy to work on it theses days.
Go ahead for a NMU, you're welcome.

Best regards, Adam.



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



Bug#550678: aqualung: Transition from liboggz1 to liboggz2 needed.

2009-11-18 Thread Adam Cécile (Le_Vert)

Hi John,

I'm still quite busy, so any NMU would be welcome.
Just go ahead!

Thanks,

Adam.

John Ferlito a écrit :

Hi Adam,

Have you had a chance to look into this yet? I have some time over the
next few days and could perform an NMU if you're to busy.

Cheers,
John

On Mon, Oct 12, 2009 at 08:49:56AM +0200, Adam Cécile (Le_Vert) wrote:
  

Hi John,

I will do it, thanks.

Adam.

John Francesco Ferlito a écrit :


Package: aqualung
Version: 0.9~beta10-2
Severity: normal

Hi,

I've just uploaded liboggz 1.1.0 which has has a SONAME change. aqualung
should now depend against liboggz2-dev and liboggz2. The API is supposed to be
backwards so simply changing the deps should be sufficient.

Let me know if you are time poor and would prefer I do an NMU.

Cheers,
John

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

Kernel: Linux 2.6.31-12-generic (SMP w/2 CPU cores)
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968) (ignored: LC_ALL set to C)
Shell: /bin/sh linked to /bin/dash

Versions of packages aqualung depends on:
ii  libasound21.0.21a-1  shared library for ALSA applicatio
ii  libatk1.0-0   1.28.0-1   The ATK accessibility toolkit
ii  libavcodec52  4:0.5+svn20090706-2+b1 ffmpeg codec library
ii  libavformat52 4:0.5+svn20090706-2+b1 ffmpeg file format library
ii  libavutil49   4:0.5+svn20090706-2+b1 ffmpeg utility library
ii  libc6 2.9-27 GNU C Library: Shared libraries
ii  libcairo2 1.8.8-2The Cairo 2D vector graphics libra
ii  libcddb2  1.2.1-1library to access CDDB data - runt
ii  libcdio-cdda0 0.81-4 library to read and control digita
ii  libcdio-paranoia0 0.81-4 library to read
digital audio CDs ii  libcdio10 0.81-4
library to read and control CD-ROM
ii  libflac8  1.2.1-2+b1 Free Lossless Audio Codec - runtim
ii  libfontconfig12.6.0-4generic font configuration library
ii  libfreetype6  2.3.9-5FreeType 2 font engine, shared lib
ii  libglib2.0-0  2.22.2-2   The GLib library of C routines
ii  libgtk2.0-0   2.18.2-1   The GTK+ graphical
user interface ii  libifp4   1.0.0.2-3
communicate with iRiver iFP audio ii  libjack0
0.116.2+svn3592-3  JACK Audio Connection Kit (librari
ii  liblrdf0  0.4.0-1.2  a library to
manipulate RDF files ii  libmad0   0.15.1b-4
MPEG audio decoder library
ii  libmodplug0c2 1:0.8.7-1  shared libraries for mod music bas
ii  libmpcdec31:1.2.2-2.1Musepack (MPC) format library
ii  libogg0   1.1.4~dfsg-1   Ogg bitstream library
ii  liboggz1  1.0.0-2convenience interface for Ogg stre
ii  libpango1.0-0 1.26.0-1   Layout and rendering of internatio
ii  libsamplerate00.1.7-3Audio sample rate conversion libra
ii  libsndfile1   1.0.20-3   Library for
reading/writing audio ii  libspeex1 1.2~rc1-1
The Speex codec runtime library
ii  libstdc++64.4.1-6The GNU Standard C++ Library v3
ii  libusb-0.1-4  2:0.1.12-13userspace USB programming library
ii  libvorbis0a   1.2.3-2The Vorbis General Audio Compressi
ii  libvorbisenc2 1.2.3-2The Vorbis General Audio Compressi
ii  libvorbisfile31.2.3-2The Vorbis General Audio Compressi
ii  libwavpack1   4.60.0-1   an audio codec (lossy and lossless
ii  libxml2   2.7.6.dfsg-1   GNOME XML library
ii  zlib1g1:1.2.3.3.dfsg-15  compression library - runtime

aqualung recommends no packages.

aqualung 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#556779: Bug#555207: Non-maintainer upload

2009-11-17 Thread Adam Cécile (Le_Vert)

Hello,

I'm not DD so I won't be able to help you much to upload the package.
Just ask on debian-mentors, or ask nao...@debian.org who's my usual 
sponsor !


Thanks,

Regards, Adam.

Severin Heiniger a écrit :

I've just proposed a NMU at mentors.debian.net that closes this bug:
http://mentors.debian.net/cgi-bin/sponsor-pkglist?action=details;package=hellanzb

@Adam: Are you interested in sponsoring the upload or should I get in
touch with Kumar (who sponsered the last upload)?


  





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



Bug#554904: HellaNZB crashes on startup when missing unrar package

2009-11-07 Thread Adam Cécile (Le_Vert)

Severin Heiniger a écrit :

Package: hellanzb
Version: 0.13-5.2
Severity: important
Tags: patch

The hellanzb package has been patched so that it doesn't use unrar by
default in order to prevent the package from being moved from main to
contrib. In more detail, the SKIP_UNRAR configuration option defaults to
True in Debian and unrar has been added to hellanzb's Suggests. So far
so good.

However, hellanzb crashes on startup if unrar isn't installed, no matter
what the SKIP_UNRAR configuration option is set to:

A problem occurred while reading the config file: FatalError':
Cannot continue program, required executable not found: 'unrar'
Exiting: FatalError': Cannot continue program, required
executable not found: 'unrar'

The attached debdiff fixes this bug. It changes hellanzb's Core.py so
that it only looks for the unrar executable if SKIP_UNRAR is not set to
True. The diff also contains other minor changes, which of course can be
dropped if they're not welcome:

  * Bump Standards-Version to 3.8.3 (no changes needed).
  * Add README.sources to fix patch-system-but-no-source-readme lintian
 warning.
  * Minor cleanup in README.Debian and NEWS.Debian.

If the patch is applied, I'll take care of sending it upstream. However,
the project is more or less dead.

Fixing this bug will also make it possible to finally resolve #523851,
because up to now, LottaNZB depended unrar only to prevent HellaNZB from
crashing.

Regards,
Severin Heiniger
  

Hi,

Go ahead with a NMU, I'm far too busy.

Thanks in advance,

Adam.



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



Bug#543271: udev rules

2009-10-22 Thread Adam Cécile (Le_Vert)

Hi,

Bartosz, do you have some time to look at it ?
If not, I'll try to work on the issue during this week end, however I'm 
not sure I'll find the time to do so.


Regards, Adam.

Raphael Geissert a écrit :

Hi Bartosz, Adam,

Could you please care a bit more about the package and fix this annoying bug?
It's been two months and there has been no single message from either of you 
regarding this issue.


Regards,
  





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



Bug#550678: aqualung: Transition from liboggz1 to liboggz2 needed.

2009-10-12 Thread Adam Cécile (Le_Vert)

Hi John,

I will do it, thanks.

Adam.

John Francesco Ferlito a écrit :

Package: aqualung
Version: 0.9~beta10-2
Severity: normal

Hi,

I've just uploaded liboggz 1.1.0 which has has a SONAME change. aqualung
should now depend against liboggz2-dev and liboggz2. The API is supposed to be
backwards so simply changing the deps should be sufficient.

Let me know if you are time poor and would prefer I do an NMU.

Cheers,
John

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

Kernel: Linux 2.6.31-12-generic (SMP w/2 CPU cores)
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968) (ignored: LC_ALL set to C)
Shell: /bin/sh linked to /bin/dash

Versions of packages aqualung depends on:
ii  libasound21.0.21a-1  shared library for ALSA applicatio
ii  libatk1.0-0   1.28.0-1   The ATK accessibility toolkit
ii  libavcodec52  4:0.5+svn20090706-2+b1 ffmpeg codec library
ii  libavformat52 4:0.5+svn20090706-2+b1 ffmpeg file format library
ii  libavutil49   4:0.5+svn20090706-2+b1 ffmpeg utility library
ii  libc6 2.9-27 GNU C Library: Shared libraries
ii  libcairo2 1.8.8-2The Cairo 2D vector graphics libra
ii  libcddb2  1.2.1-1library to access CDDB data - runt
ii  libcdio-cdda0 0.81-4 library to read and control digita
ii  libcdio-paranoia0 0.81-4 library to read digital audio CDs 
ii  libcdio10 0.81-4 library to read and control CD-ROM

ii  libflac8  1.2.1-2+b1 Free Lossless Audio Codec - runtim
ii  libfontconfig12.6.0-4generic font configuration library
ii  libfreetype6  2.3.9-5FreeType 2 font engine, shared lib
ii  libglib2.0-0  2.22.2-2   The GLib library of C routines
ii  libgtk2.0-0   2.18.2-1   The GTK+ graphical user interface 
ii  libifp4   1.0.0.2-3  communicate with iRiver iFP audio 
ii  libjack0  0.116.2+svn3592-3  JACK Audio Connection Kit (librari
ii  liblrdf0  0.4.0-1.2  a library to manipulate RDF files 
ii  libmad0   0.15.1b-4  MPEG audio decoder library

ii  libmodplug0c2 1:0.8.7-1  shared libraries for mod music bas
ii  libmpcdec31:1.2.2-2.1Musepack (MPC) format library
ii  libogg0   1.1.4~dfsg-1   Ogg bitstream library
ii  liboggz1  1.0.0-2convenience interface for Ogg stre
ii  libpango1.0-0 1.26.0-1   Layout and rendering of internatio
ii  libsamplerate00.1.7-3Audio sample rate conversion libra
ii  libsndfile1   1.0.20-3   Library for reading/writing audio 
ii  libspeex1 1.2~rc1-1  The Speex codec runtime library

ii  libstdc++64.4.1-6The GNU Standard C++ Library v3
ii  libusb-0.1-4  2:0.1.12-13userspace USB programming library
ii  libvorbis0a   1.2.3-2The Vorbis General Audio Compressi
ii  libvorbisenc2 1.2.3-2The Vorbis General Audio Compressi
ii  libvorbisfile31.2.3-2The Vorbis General Audio Compressi
ii  libwavpack1   4.60.0-1   an audio codec (lossy and lossless
ii  libxml2   2.7.6.dfsg-1   GNOME XML library
ii  zlib1g1:1.2.3.3.dfsg-15  compression library - runtime

aqualung recommends no packages.

aqualung 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#535380: #535380: faad2: bashism in debian/rules

2009-09-07 Thread Adam Cécile (Le_Vert)

Hello Raphael,

You closed this bug wrongly with a NMU of libinklevel.
I reopened it and removed the patch tag.

Regards, Adam.



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



Bug#476370: #476370: aqualung: Please port to new libmpcdec API

2009-09-04 Thread Adam Cécile (Le_Vert)

Hello,

Thanks a lot for the patch. A fixed package is on the way.
I also forwarded the patch upstream and it has been merged too.

Regards, Adam.



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



Bug#535511: #535511: aqualung: bad detection of ogg vorbis file = metadata not working

2009-09-04 Thread Adam Cécile (Le_Vert)

Hi,

Thanks for the information. I grabbed the patch and prepared a fixed 
package.

It will be uploaded soon.

Regards, Adam.



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



Bug#537082: picard: segfault (crash) when checking aac/m4a files

2009-08-28 Thread Adam Cécile (Le_Vert)

Hello,

I just noticed you added the patch available tag to this bug.
Could you please tell me how to find it ?

Regards, Adam.



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



Bug#543333: The issues comes from mod_include

2009-08-24 Thread Adam Cécile (Le_Vert)

Hey,

I just found that enabling mod_includes breaks the vhost.
Disabling it make it work again. Any idea ?

Regards, Adam.



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



Bug#285007: #285007, ddclient: A patch adding use=web support to webconf

2009-08-16 Thread Adam Cécile (Le_Vert)
Hello,

What's the am of ddclient if it doesn't support IP retreiving from a
remote website ?
I had to downgrade the package on all my routers to the lenny's one.

Thanks.

Adam.



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



Bug#528537: #528537: fuse: Support for GNU/kFreeBSD

2009-07-01 Thread Adam Cécile (Le_Vert)

Hello,

I'll care about this bug soon, maybe this week.
Can I send you a fixed package before uploading it (just to ensure it
does really works fine on kfreebsd) ?

Regards, Adam.




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



Bug#522920: linux-image-2.6.29-1-686: please add CONFIG_MOUSE_PS2_ELANTECH=y for the Asus eee pc 1000

2009-06-18 Thread Adam Cécile (Le_Vert)

Hello,

Any progress on this ?
I just found 2.6.30 still has the same issue so I'm going to rebuild it 
for my EEEPC 901.

It's quite annoying to NOT being able to follow debian's stock kernels.

Thanks for considering it.

Best regards, Adam.



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



Bug#532432: This is not a wishlist

2009-06-15 Thread Adam Cécile (Le_Vert)

Xavier Maillard a écrit :

At Sun, 14 Jun 2009 11:59:56 +0200,
Adam Cécile (Le_Vert) wrote:
  

Hi,

The package works as expected. Most dekstop environment relies on HAL 
which runs as root to mount removable medias.
I do not see any reason to add a useless group for more than 95% of 
ntfs-3g users.
Moreover, using the fuse group may lead to security flaws n your system 
because the user will be allowed to R/W any fuse based filesystem, not 
only ntfs-3g.



Ok got it. Please close this bug report safely.

Xavier
  

Okay :)

Look at pmount/pumount if your window manager doesn't use HAL !

Regards, Adam.




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



Bug#532432: This is not a wishlist

2009-06-14 Thread Adam Cécile (Le_Vert)

Hi,

The package works as expected. Most dekstop environment relies on HAL 
which runs as root to mount removable medias.
I do not see any reason to add a useless group for more than 95% of 
ntfs-3g users.
Moreover, using the fuse group may lead to security flaws n your system 
because the user will be allowed to R/W any fuse based filesystem, not 
only ntfs-3g.


Regards, Adam.

Xavier Maillard a écrit :

Hi,

I was checking my bug reports and I saw you changed severity of
this one to whishlist without any explanation.

I do not agree. This is a serious bug since, as explained, your
package is unusable without a new 'Depends' item.

Please fix it and we will be done.

Xavier


  





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



Bug#505507: #505507: aqualung: trying to play a stream causes aqualung to crash

2009-04-30 Thread Adam Cécile (Le_Vert)

Hello,

Have you tried to use current testing or unstable aqualung package ?
It's supposed to fix this issue you reported a while ago against version 
0.9~beta9.1-1+b1.


Thanks in advance,

Regards, Adam.



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



Bug#459504: #459504: picard: segfault on cd lookup

2009-04-30 Thread Adam Cécile (Le_Vert)

Clint Adams a écrit :

On Mon, Mar 09, 2009 at 10:44:43PM +0100, Adam Cécile (Le_Vert) wrote:
  
You have reported that bug a while ago (picard wasn't really in a good  
shape that time) and I was wondering if it still occurs with current  
package (0.11).



I'll give it a few test runs to see how it reacts.


  

Hello,

Did you found some time to give a try ?

Best regards,

Adam.



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



Bug#524495: w83627hf/thf/hg WDT: Unexpected close, not stopping watchdog!

2009-04-29 Thread Adam Cécile (Le_Vert)

Michael Meskes a écrit :

On Fri, Apr 17, 2009 at 05:32:42PM +0200, Adam Cécile wrote:
  

I'm using w83627hf_wdt and when I kill (-9) watchdog processus the kernel says:
w83627hf/thf/hg WDT: Unexpected close, not stopping watchdog!

Of course, the system never restarts, which is quite annoying for a watchdog 
service ;-)



I'm pretty much sure that this is a kernel problem. Some reports on the web
seem to suggest the same. After all the watchdog code didn't change in this
regard.

Anyway, do you have NOWAYOUT set? 


Also it would be nice if you could test with the software watchdog driver
softdog just to see whether this is a driver issue.

Michael
  

Hi, I just give a try with nowayout and it still have the same behavior.

Apr 29 15:56:25 dedibox kernel: [17452.939017] WDT driver for the 
Winbond(TM) W83627HF/THF/HG Super I/O chip initialising.
Apr 29 15:56:25 dedibox kernel: [17452.939095] w83627hf/thf/hg WDT: 
Watchdog already running. Resetting timeout to 60 sec
Apr 29 15:56:25 dedibox kernel: [17452.939228] w83627hf/thf/hg WDT: 
initialized. timeout=60 sec (nowayout=1)

Apr 29 15:56:49 dedibox watchdog[14009]: starting daemon (5.6):
Apr 29 15:56:49 dedibox watchdog[14009]: int=10s realtime=yes sync=no 
soft=no mla=25 mem=0

Apr 29 15:56:49 dedibox watchdog[14009]: ping: no machine to check
Apr 29 15:56:49 dedibox watchdog[14009]: file: /var/log/messages:0
Apr 29 15:56:49 dedibox watchdog[14009]: pidfile: no server process to check
Apr 29 15:56:49 dedibox watchdog[14009]: interface: no interface to check
Apr 29 15:56:49 dedibox watchdog[14009]: test=none(0) repair=none 
alive=/dev/watchdog heartbeat=none temp=none to=root no_act=no

[..]
Apr 29 15:57:47 dedibox kernel: [17534.954562] w83627hf/thf/hg WDT: 
Unexpected close, not stopping watchdog!



So I tried with softdog driver and I got the same message:
Apr 29 16:00:43 dedibox kernel: [17711.068562] SoftDog: Unexpected 
close, not stopping watchdog!


Then the server performed an hard reboot. Weird.

Regards, Adam.





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



Bug#524495: w83627hf/thf/hg WDT: Unexpected close, not stopping watchdog!

2009-04-29 Thread Adam Cécile (Le_Vert)

Michael Meskes a écrit :

reassign 524495 linux-image-2.6.29-1-686
thanks

On Wed, Apr 29, 2009 at 04:04:32PM +0200, Adam Cécile (Le_Vert) wrote:
  

So I tried with softdog driver and I got the same message:
Apr 29 16:00:43 dedibox kernel: [17711.068562] SoftDog: Unexpected  
close, not stopping watchdog!


Then the server performed an hard reboot. Weird.



It appears to me that this message means the kernel/hardware watchdog is not
stopped, which means the reboot will come. Or in other words the softdog
behaviour is correct.

Which means the bug is in your driver as we already expected. Therefore I
reassign the bug report to the latest sid kernel. If this proves to be
incorrect please tell me.

Michael
  

Sounds fine to me :)
It fails with both 26.26-2-686 and 2.6.29-1-686 kernels.



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



Bug#525598: #525598: [exaile] Shipped python-feedparser removal breaks exaile

2009-04-28 Thread Adam Cécile (Le_Vert)

Hello,

Thanks a lot for looking at this bug. I missed it because I had exaile 
installed before the dh_python path changed...

I'm working on a fix and will upload it soon.
I guess your first patch was the right way. Drop that stupid symlink and 
rely on python to load the module !


Best regards, Adam.



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



Bug#522709: Cowbuilder broken here too

2009-04-24 Thread Adam Cécile (Le_Vert)

- Copying COW directory
 forking: rm -rf /home/vm/cowbuilder/etch/i386/build/cow.29838
 forking: cp -al /home/vm/cowbuilder/etch/i386/base 
/home/vm/cowbuilder/etch/i386/build/cow.29838
I: removed stale ilistfile 
/home/vm/cowbuilder/etch/i386/build/cow.29838/.ilist
 forking: chroot /home/vm/cowbuilder/etch/i386/build/cow.29838 
cowdancer-ilistcreate /.ilist find . -xdev -path ./home -prune -o \( \( 
-type l -o -type f \) -a -links +1 -print0 \) | xargs -0 stat --format 
'%d %i '
chroot: cannot run command `cowdancer-ilistcreate': No such file or 
directory
W: cowdancer-ilistcreate failed to run within chroot, falling back to 
old method

- Invoking pbuilder
 forking: pbuilder build --debootstrapopts --arch=i386 --buildplace 
/home/vm/cowbuilder/etch/i386/build/cow.29838 --buildresult 
/home/vm/cowbuilder/etch/i386/result --no-targz --internal-chrootexec 
chroot /home/vm/cowbuilder/etch/i386/build/cow.29838 cow-shell 
/home/vm/cowbuilder/sources/3dm2-x86_2.08.00.008+9.5.1.1-1.dsc

W: /home/gandalf/.pbuilderrc does not exist
I: Running in no-targz mode
I: using fakeroot in build.
I: Current time: Fri Apr 24 23:27:12 CEST 2009
I: pbuilder-time-stamp: 1240608432
I: copying local configuration
I: mounting /proc filesystem
I: mounting /dev/pts filesystem
I: policy-rc.d already exists
I: Obtaining the cached apt archive contents
I: Installing the build-deps
cowdancer: .ilist size unexpected
cowdancer: .ilist size unexpected
Can't open perl script /usr/bin/dpkg-architecture: Cannot allocate memory
- Attempting to satisfy build-dependencies
- Creating pbuilder-satisfydepends-dummy package
cowdancer: .ilist size unexpected
cowdancer: .ilist size unexpected
cowdancer: .ilist size unexpected
cowdancer: .ilist size unexpected
cowdancer: .ilist size unexpected
sh: 
/tmp/satisfydepends-aptitude/pbuilder-satisfydepends-dummy/DEBIAN/control: 
Cannot allocate memory

E: pbuilder-satisfydepends failed.
I: Copying back the cached apt archive contents
I: unmounting dev/pts filesystem
I: unmounting proc filesystem
- Cleaning COW directory
 forking: rm -rf /home/vm/cowbuilder/etch/i386/build/cow.29838



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



Bug#522709: Cowbuilder

2009-04-24 Thread Adam Cécile (Le_Vert)

Are you all trying to use an etch chroot ?

If so, I just found that old bug which is about the same issue:
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=481344


After adding the right option to cowbuilder, it doesn't fail anymore.

Regards, Adam.



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



Bug#181756: #181756: sysvinit: init: Please send output to all consoles

2009-04-17 Thread Adam Cécile

Hello,

Any plan to merge the attached patch ?
It's a bit annoying when you manage servers remotely with an IPMI 
managment card.
You have to choose between either having the boot messages on the screen 
or on the virtual serial console.

Having both would be really nice...

Regards, Adam.

--
Adam Cécile  Mandriva / Linbox
152, rue de Grigy - Technopole Metz  57070 METZ - FRANCE
tel: +33 (0)3 87 50 87 90http://mandriva.com




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



Bug#502086: The clean target is affected too

2009-03-31 Thread Adam Cécile (Le_Vert)

Hey,

Okay you're right ;-)
A fixed package in on the way.

Regards, Adam.

Mau a écrit :

Sorry if I bother you, but I think this bug should be reopened since
also the clean target fails when the env variable KERNELSRC has not been
assigned with the path to the kernel source tree.

The clean target is called everytime before the actual build, at least
when using make-kpkg, causing the build process to hang until CTRL+C.

The solution is the same: add

export KERNELSRC=$(KSRC)

at the very beginning of debian/rules.

Thanks

Mau


  





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



Bug#522042: ntop: Please update to latest upstream release

2009-03-31 Thread Adam Cécile
Package: ntop
Severity: wishlist

Hello,

Upstream released several version since 3.3 (Current: 3.3.10rc1).
See: http://freshmeat.net/projects/ntop/

Do you need help for this package ?

Regards, Adam.


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

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



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



Bug#520380: python-mmkeys: configure-time confilct with exaile

2009-03-19 Thread Adam Cécile (Le_Vert)

Hello Michal,

It's fine for me, however exaile is out-of-date in debian and I plan to 
package current version soon.
I'm not sure to understand how I'd be able to check if mmkeys works, but 
if the source are the same as sonata's one I'll just assume it works and 
see if someone opens a bug.


Best regards, Adam.

PS: François is not working on exaile anymore.

Michal Čihař a écrit :

Hello exaile maintainers

it looks like both exaile and sonata ship mmkeys python module. In last
upload I switched sonata to use python-support which did uncover this
conflict, which probably exists for quite a long time (at least Sonata
includes mmkeys for very long time).

As the source code is identical in both sources and sonata already
builds separate python-mmkeys binary pacakge, I think best solution of
this problem would be to make exaile depend on python-mmkeys package
and do not ship own version.

Is this solution okay for you? If so please take over this bug.

Dne Thu, 19 Mar 2009 09:47:08 +0100
Michal Politowski m...@charybda.icm.edu.pl napsal(a):

  

Package: python-mmkeys
Version: 1.5.3-2

Setting up python-mmkeys (1.5.3-2) ...
Package python2.4 is trying to overwrite mmkeys.so which is already
provided by exaile
dpkg: error processing python-mmkeys (--configure):
 subprocess post-installation script returned error exit status 1
Errors were encountered while processing:
 python-mmkeys



  





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



Bug#459504: #459504: picard: segfault on cd lookup

2009-03-09 Thread Adam Cécile (Le_Vert)

Hello,

You have reported that bug a while ago (picard wasn't really in a good 
shape that time) and I was wondering if it still occurs with current 
package (0.11).


Thanks in advance,

Regards, Adam.



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



Bug#512924: #512924 aircrack-ng: new upstream version 1.0 rc2

2009-03-09 Thread Adam Cécile (Le_Vert)

Hello,

This new release will be packaged soon. I was waiting on a standalone iw 
package for debian and it's now available.


ETA: Before the end of the week, hopefully

Regards, Adam.



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



Bug#501814: qa.debian.org: igloo not working after move of people.debian.org

2009-02-28 Thread Adam Cécile (Le_Vert)

Hello,

I liked that link much. Any hope to get it working again ?

Regards, Adam.



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



Bug#517269: new upstream version

2009-02-26 Thread Adam Cécile (Le_Vert)

Hi,

Thanks for remind me what I still have to do ;-)
If you're interrested in, you may sponsor this upload, do you ?

Regards, Adam.

Clint Adams a écrit :

Package: picard
Version: 0.9.0-4

Please upload the version in experimental to unstable.
  




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



Bug#500590: mtx 1.3.12 packages

2009-02-13 Thread Adam Cécile (Le_Vert)

Hello,

I updated the packages to 1.3.12 and fixed a couple of things.

Here is the source package with an etch/i386 binary one:
http://dedibox.le-vert.net/divers/mtx/

And its changelog:

mtx (1.3.12~debian-1) unstable; urgency=low

 * New upstream release.
 * Add debian/watch.
 * Remove obsolete patches from diff.gz.
 * Rewrite config.* things to avoid having them in diff.gz.
 * Update debian/copyright.
 * Bump Standards-Version.

Thanks in advance for merging it into Debian.

Regards, Adam.
diff -Nur mtx-1.3.11/debian/changelog mtx-1.3.12~debian/debian/changelog
--- mtx-1.3.11/debian/changelog	2009-02-13 15:11:08.0 +0100
+++ mtx-1.3.12~debian/debian/changelog	2009-02-13 15:32:44.0 +0100
@@ -1,3 +1,14 @@
+mtx (1.3.12~debian-1) unstable; urgency=low
+
+  * New upstream release.
+  * Add debian/watch.
+  * Remove obsolete patches from diff.gz.
+  * Rewrite config.* things to avoid having them in diff.gz.
+  * Update debian/copyright.
+  * Bump Standards-Version.
+
+ -- Adam Cécile (Le_Vert) gand...@le-vert.net  Fri, 13 Feb 2009 15:14:41 +0100
+
 mtx (1.3.11-1) unstable; urgency=low
 
   * new upstream version, closes: #425687, #425688
diff -Nur mtx-1.3.11/debian/control mtx-1.3.12~debian/debian/control
--- mtx-1.3.11/debian/control	2009-02-13 15:11:08.0 +0100
+++ mtx-1.3.12~debian/debian/control	2009-02-13 15:32:44.0 +0100
@@ -3,7 +3,7 @@
 Priority: extra
 Maintainer: Bdale Garbee bd...@gag.com
 Build-Depends: debhelper (= 5), libcam-dev [kfreebsd-i386 kfreebsd-amd64], autotools-dev
-Standards-Version: 3.7.3
+Standards-Version: 3.8.0
 
 Package: mtx
 Architecture: any
diff -Nur mtx-1.3.11/debian/copyright mtx-1.3.12~debian/debian/copyright
--- mtx-1.3.11/debian/copyright	2009-02-13 15:11:08.0 +0100
+++ mtx-1.3.12~debian/debian/copyright	2009-02-13 15:33:20.889717424 +0100
@@ -7,8 +7,12 @@
 
   Copyright 1997, 1998 Leonard Zubkoff l...@dandelion.com
   Changes copyright 2000, 2001 Eric Green e...@estinc.com
+  Changes copyright 2007-2008 by Robert Nelson robe...@the-nelsons.org
 
   GPL, version 2
 
 On Debian GNU/Linux systems, the complete text of the GNU General
 Public License can be found in `/usr/share/common-licenses/GPL'.
+
+Sources have been repacked because upstream ships debian subdirectory since
+release 1.3.12.
diff -Nur mtx-1.3.11/debian/rules mtx-1.3.12~debian/debian/rules
--- mtx-1.3.11/debian/rules	2009-02-13 15:11:08.0 +0100
+++ mtx-1.3.12~debian/debian/rules	2009-02-13 15:32:44.0 +0100
@@ -7,6 +7,12 @@
 configure: configure-stamp
 configure-stamp:
 	dh_testdir
+ifneq $(wildcard /usr/share/misc/config.sub) 
+	cp -f /usr/share/misc/config.sub config.sub
+endif
+ifneq $(wildcard /usr/share/misc/config.guess) 
+	cp -f /usr/share/misc/config.guess config.guess
+endif
 	./configure --prefix=/usr
 	touch configure-stamp
 
@@ -20,14 +26,8 @@
 clean:
 	dh_testdir
 	dh_testroot
-	rm -f build-stamp configure-stamp
+	rm -f build-stamp configure-stamp config.guess config.sub
 	[ ! -f Makefile ] || $(MAKE) distclean
-
-	-test -r /usr/share/misc/config.sub  \
-		cp -f /usr/share/misc/config.sub config.sub
-	-test -r /usr/share/misc/config.guess  \
-		cp -f /usr/share/misc/config.guess config.guess
-
 	dh_clean
 
 install: build
@@ -36,9 +36,9 @@
 	dh_clean -k
 	dh_installdirs
 
-	make install bindir=`pwd`/debian/mtx/bin prefix=`pwd`/debian/mtx/usr \
+	$(MAKE) install bindir=`pwd`/debian/mtx/bin prefix=`pwd`/debian/mtx/usr \
 		mandir=`pwd`/debian/mtx/usr/share/man
-	install -o root -g root -m 0644 debian/bash_completion \
+	$(INSTALL) -o root -g root -m 0644 debian/bash_completion \
 		debian/mtx/etc/bash_completion.d/mtx
 
 # Build architecture-independent files here.
diff -Nur mtx-1.3.11/debian/watch mtx-1.3.12~debian/debian/watch
--- mtx-1.3.11/debian/watch	2009-02-13 15:12:34.212313592 +0100
+++ mtx-1.3.12~debian/debian/watch	2009-02-13 15:32:44.0 +0100
@@ -1,2 +1,3 @@
 version=3
+opts=dversionmangle=s/~debian$// \
 http://sf.net/mtx/mtx-([0-9\.]+)\.tar\.gz


Bug#503345: locale= mount option, hal and ntfs-3g

2008-10-25 Thread Adam Cécile (Le_Vert)

Hello Michael,

Go ahead with a NMU. It'll be faster and I really think this bug should 
be fixed asap.


Thanks for having a look and fixing this issue !

Regards,
Adam.

Michael Biebl a écrit :

Package: ntfs-3g
Version: 1:1.2531-1
Severity: important

Hi Adam,

I'm part of the Debian pkg-utopia team which maintains hal.

A recent bug report [1] against hal, brought to our attention, that mounting
ntfs volumes from within KDE is broken, so potentially quite a few users are
affected.

You can read the details on the bug report [1] or at the discussion I started
on the hal mailing list [2].

In short, it's about hal offering the locale= option for ntfs file systems,
while the kernel fs driver does not support the locale= option.

There are attempts to fix this in a more sophisticated way withing hal, which
will also require updates to the mount tools of KDE and GNOME, but this
is not doable for lenny.

A proposed short term solution, is to remove the locale= option from
/usr/share/hal/fdi/policy/10osvendor/20-storage-methods.fdi
and make the ntfs-3g package ship a fdi file, which adds the locale= option back
and overrides the fstype to be ntfs-3g, i.e. if ntfs-3g is installed, hal will
always use ntfs-3g when mounting ntfs volumes, which imo is an acceptable
compromise and I'd like to get this fix into lenny.

This requires, that the ntfs-3g package installs a file, like the one
I've attached, to /usr/share/hal/fdi/policy/10osvendor/

As soon as you have updated the ntfs-3g to include this file, I'd upload an
updated hal version, which removes the locale= option from
20-storage-methods.fdi and ask for freeze exceptions for lenny for both hal and
ntfs-3g.

If you are too busy, I'd offer to NMU ntfs-3g, if you grant me the permission to
do it.

Cheers,
Michael

[1] http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=497463
[2] http://lists.freedesktop.org/archives/hal/2008-October/012329.html

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

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

Versions of packages ntfs-3g depends on:
ii  libc6 2.7-15 GNU C Library: Shared libraries
ii  libntfs-3g31  1:1.2531-1 ntfs-3g filesystem in userspace (F

ntfs-3g recommends no packages.

ntfs-3g suggests no packages.

-- debconf information excluded
  





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



Bug#498878: [nvidia-graphics-drivers] Please package 177beta for experimental (fix issues for 8xxx/9xxx)

2008-09-13 Thread Adam Cécile (Le_Vert)

Package: nvidia-graphics-drivers
Severity: wishlist

Hello,

Could you please upload this new upstream release to experimental ?
GeForce 8xxx and 9xxx are unusable due to painfully slow 2D performance  
with current drivers.


Thanks in advance,

Adam.


--- System information. ---
Architecture: amd64
Kernel: Linux 2.6.26-1-amd64

Debian Release: lenny/sid
900 testing debmirror
500 ubuntu-doko people.ubuntu.com
500 testing www.debian-multimedia.org
400 unstable debmirror
200 experimental ftp.de.debian.org

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





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



Bug#355883: Same problem here

2008-08-20 Thread Adam Cécile (Le_Vert)

Leandro Dorileo a écrit :

Hi Adam

Adam Cécile (Le_Vert) wrote:

Bastian Blank a écrit :
 

On Tue, Aug 19, 2008 at 06:50:11PM +0200, Adam Cécile (Le_Vert) wrote:
 
I can confirm this bug 2.6.26-1-amd64 and a slightly modified 
rebuild of

the i386 flavour.
My usb stick is unusable.
  

I doubt that you see the same bug. Try #494800.
  

Check reply by Kumar Appaiah (20080812). He re-opened this bug against
kernel 2.6.26.
 
 

I noticed severity has been dropped from important to normal. Any
justification ?
  

Someone which is not submitter or maintainer changed it.

 

I'd rather say it's critical. Everybody needs usb sticks
  

No. Many of my machines don't even have usb.
  

No comment.
 

Bastian
  

I found the attached patch somewhere on lkml. It's targeted for kernel
2.6.27. I can confirm this patch fix the issue with my stick.
  
This patch hasn`t taken to Linus`s tree yet but has been queued by 
Greg K-H, guess we`ll see it merged until 2.6.27.
I hope it will be merged into debian's package before it reach main 
linux development tree.

If not I'll have to downgrade to 2.6.25...



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



Bug#486507: #486507: Confirm this bug and workaround

2008-08-19 Thread Adam Cécile (Le_Vert)

Hello,

I can confirme this strange bug too.
Vmware works fine on my lenny workstation but fails on my notebook (both 
are up-to-date lenny).


This workaround fixed the problem for me:

1. Get old libx11, example from etch.
2. Create directory $VMWARE/lib/libX11.so.6/ (where $VMWARE is the
installation directory of vmware-server-console)
3. Copy libX11.so.6* from etch's libx11-6_1.0.3X/usr/lib/ to
$VMWAR/lib/libX11.so.6/
4. Edit $VMWARE/lib/wrapper-gtk24.sh (my vmware-server-client version:
1.0.6):
--- wrapper-gtk24.sh.old2008-07-17 10:39:40.0 +0200
+++ wrapper-gtk24.sh2008-07-17 10:26:35.0 +0200
@@ -63,6 +63,7 @@
  vm_append_lib 'libfreetype.so.6'
  vm_append_lib 'libXft.so.2'
  vm_append_lib 'libXrender.so.1'
+   vm_append_lib 'libX11.so.6'

  # FontConfig is actually fairly well behaved but the fonts.conf that we
  # force when VMWARE_USE_SHIPPED_GTK=yes generates seemingly harmless
5. it works!

Regards, Adam.



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



Bug#355883: Same problem here

2008-08-19 Thread Adam Cécile (Le_Vert)
Hello,

I can confirm this bug 2.6.26-1-amd64 and a slightly modified rebuild of
the i386 flavour.
My usb stick is unusable.

I noticed severity has been dropped from important to normal. Any
justification ?

I'd rather say it's critical. Everybody needs usb sticks

Regards, Adam.



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



Bug#355883: Same problem here

2008-08-19 Thread Adam Cécile (Le_Vert)
Bastian Blank a écrit :
 On Tue, Aug 19, 2008 at 06:50:11PM +0200, Adam Cécile (Le_Vert) wrote:
   
 I can confirm this bug 2.6.26-1-amd64 and a slightly modified rebuild of
 the i386 flavour.
 My usb stick is unusable.
 

 I doubt that you see the same bug. Try #494800.
   
Check reply by Kumar Appaiah (20080812). He re-opened this bug against
kernel 2.6.26.
   
 I noticed severity has been dropped from important to normal. Any
 justification ?
 

 Someone which is not submitter or maintainer changed it.

   
 I'd rather say it's critical. Everybody needs usb sticks
 

 No. Many of my machines don't even have usb.
   
No comment.
 Bastian
   
I found the attached patch somewhere on lkml. It's targeted for kernel
2.6.27. I can confirm this patch fix the issue with my stick.

Regards, Adam.

--- drivers/usb/storage/transport.c	2008-07-13 21:51:29.0 +
+++ drivers/usb/storage/transport.c.new	2008-08-19 17:38:28.510241535 +
@@ -1034,8 +1034,21 @@
 
 	/* try to compute the actual residue, based on how much data
 	 * was really transferred and what the device tells us */
-	if (residue) {
-		if (!(us-flags  US_FL_IGNORE_RESIDUE)) {
+if (residue  !(us-flags  US_FL_IGNORE_RESIDUE)) {
+
+/* Heuristically detect devices that generate bogus residues
+ * by seeing what happens with INQUIRY and READ CAPACITY
+ * commands.
+ */
+if (bcs-Status == US_BULK_STAT_OK 
+scsi_get_resid(srb) == 0 
+((srb-cmnd[0] == INQUIRY 
+transfer_length == 36) ||
+   (srb-cmnd[0] == READ_CAPACITY 
+transfer_length == 8))) {
+us-flags |= US_FL_IGNORE_RESIDUE;
+
+} else {
 			residue = min(residue, transfer_length);
 			scsi_set_resid(srb, max(scsi_get_resid(srb),
 			   (int) residue));


Bug#494493: Autodetection is broken

2008-08-10 Thread Adam Cécile (Le_Vert)

Adam Cécile (Le_Vert) a écrit :

Peter 'p2' De Schrijver a écrit :
The module probably works if you force the model as mentioned in 
#473671, but autodetection is broken. The patch fixes this. Tested on 
Medion MD97600.


Cheers,

Peter.


  

Hello Peter,

I just had a look at your patch but I think it's wrong. Looks at the 
original patch that adds 64bits support:


@@ -2117,7 +2126,8 @@
/* polling timer handler */
static void acerhk_poll_event(unsigned long save_size)
{
-#ifndef DUMMYHW
+/* #ifndef DUMMYHW */
+#if !(defined(DUMMYHW) || defined(__x86_64__))
  unsigned int max = MAX_POLLING_LOOPS;
  /* make sure not to loop more then 32 times */
  if (!max || max  32)

ifndef DUMMYHW was replace by if !(defined(DUMMYHW) || 
defined(__x86_64__)) which looks fine to me.


What's your mind about this ?

Regards, Adam.


Forget this crap, I was reading the wrong line ;-)
You were indeed right, 64bits patch added a broken ifdef that I missed 
because my notebook require to force the model.


Thanks for your patch, I'll fix the package right now and forward it to 
my mentor.


Regards, Adam.




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



Bug#494493: Autodetection is broken

2008-08-10 Thread Adam Cécile (Le_Vert)

Peter 'p2' De Schrijver a écrit :
The module probably works if you force the model as mentioned in #473671, but 
autodetection is broken. The patch fixes this. Tested on Medion MD97600.


Cheers,

Peter.


  

Hello Peter,

I just had a look at your patch but I think it's wrong. Looks at the 
original patch that adds 64bits support:


@@ -2117,7 +2126,8 @@
/* polling timer handler */
static void acerhk_poll_event(unsigned long save_size)
{
-#ifndef DUMMYHW
+/* #ifndef DUMMYHW */
+#if !(defined(DUMMYHW) || defined(__x86_64__))
  unsigned int max = MAX_POLLING_LOOPS;
  /* make sure not to loop more then 32 times */
  if (!max || max  32)

ifndef DUMMYHW was replace by if !(defined(DUMMYHW) || 
defined(__x86_64__)) which looks fine to me.


What's your mind about this ?

Regards, Adam.




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



Bug#494565: [ftp.debian.org] RM: upstreamdev -- ROM; Alpha state, upstream dead, low popcon

2008-08-10 Thread Adam Cécile (Le_Vert)

Package: ftp.debian.org
Severity: normal

Hello,

Upstreamdev should be removed from the archive. It's in early state of 
development and upstream doesn't exists anymore (ie: 
http://upstreamdev.org/wiki/ gives an sql error).


Regards, Adam.







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



Bug#485909: fuse-source fails to build with linux-source-2.6.25

2008-08-06 Thread Adam Cécile (Le_Vert)

Hello,

fuse-source is not needed anymore with recent kernel. I think dropping 
fuse-source package is the right way, at least for a stable release.
If you don't mind I would rather remove fuse-source by myself. I'm not 
MIA, just a bit fusy theses days but I'll be on hollidays next week so 
I'll fix my RCs ;-)


Regards, Adam.

Andreas Henriksson a écrit :

On Fri, Aug 01, 2008 at 07:17:57PM +0200, Moritz Muehlenhoff wrote:
  

Since the fuse kernel module is present in the stock kernel images,
the best solution seems to be to drop the fuse-source binary package
altogether.



Even though I personally think all out-of-tree kernel modules should be
deleted (the proper way for the features to appear in Debian is via the
upstream linux kernel - any other way is just avoiding QA), this is what
the packages NEWS.Debian file says:

fuse (2.6.5-2) unstable; urgency=low

  The fuse-source package is back. Even though fuse comes with all recent
  2.6 kernels, some software (i.e. ntfs-3g) needs the most recent fuse API
  to enable all its features.

 -- Adam Cécile (Le_Vert) [EMAIL PROTECTED]  Thu, 17 May 2007 12:56:42 +0200

Has kernel upgrades since then included the features ntfs-3g needs?
If not, maybe it's better to not enable these at all until then to avoid
the maintenance burden of the the fuse-source package.

Removing the binary fuse-source package is a simple enough way to fix
the problem, but maybe the maintainers should ACK it before anyone
thinks of uploading a NMU here.

--
Regards,
Andreas Henriksson
  





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



  1   2   3   4   >