Bug#845106: x11vnc: configure does not find libssl, builds without OpenSSL support
Hi, On Thu, Dec 1, 2016 at 11:50 AM, Danny Edel wrote: > On Sun, 20 Nov 2016 13:37:46 +0100 Hilko Bengen wrote: >> after searching for "AC_CHECK_LIB(ssl, SSL_library_init" using >> codesearch.debian.net and rebuilding with OpenSSL 1.1, I found that the >> OpenSSL is no longer detected and thus no longer used when building the >> package. > > Hello, > > is anyone already working on this? If not, I would try resolving this > myself, since I use x11vnc a lot and would very much like to see it in > stretch. The autoremoval because of this bug is currently scheduled for > January 3. yes but I'm waiting for my key replacement to do the upload. I haven't heard from RT yet. I may ask a sponsored upload if RT doesn't react faster.
Bug#713090: kiwix: FTBFS
Hi, > This is a know bug with xulrunner 17 and further. > This is already fixed in the Kiwix master branch. > Next Kiwix release (0.9rc3) is planned for August. Any ETA for Kiwix 0.9 rc3 ? Cheers, Fathi
Bug#665225: patch to fix
> Fathi, > > sorry, but it is not fixed. Have you even checked the link to libzip > mail archive I sent you? Sorry, I missed it. > Also disabling tests just hid the problem, not fixed it. Please > re-enable them back in the build. > > For your convenience I am attaching the patch which fixes both issues. Thanks. -- To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#665225: closing 665225
close 665225 0.10.1-1 thanks -- To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#665225: closing 665225
close 665225 0.10.1-1 thanks -- To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#641738: Bug#653871: transition: libzip
> the new libzip 0.10 has a soname bump and will need binNMUs: > * ebook-tools > * haskell-bindings-libzip > * haskell-libzip > * ideviceinstaller > * osgearth > * sigrok Packags rebuilt successfully except ideviceinstaller. Bug and patch submitted: http://bugs.debian.org/653893 Cheers, Fathi -- To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#653893: ideviceinstaller: ftbfs against libzip-0.10
Source: ideviceinstaller Version: 1.0.0-1 Severity: serious Tags: patch Justification: ftbfs Hi, a rebuild against libzip-0.10 failed to build: gcc -DHAVE_CONFIG_H -I. -I..-Wall -Wextra -Wmissing-declarations -Wredundant-decls -Wshadow -Wpointer-arith -Wwrite-strings -Wswitch-default -Wno-unused-parameter -Werror -g -pthread -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/p11-kit-1 -I/usr/include/libxml2 -I/usr/include/libxml2 -I/usr/lib/libzip/include -g -O2 -c -o ideviceinstaller-ideviceinstaller.o `test -f 'ideviceinstaller.c' || echo './'`ideviceinstaller.c ideviceinstaller.c: In function 'zip_f_get_contents': ideviceinstaller.c:164:41: error: comparison between signed and unsigned integer expressions [-Werror=sign-compare] cc1: all warnings being treated as errors make[3]: *** [ideviceinstaller-ideviceinstaller.o] Error 1 make[3]: Leaving directory `/tmp/buildd/ideviceinstaller-1.0.0/src' make[2]: *** [all-recursive] Error 1 make[2]: Leaving directory `/tmp/buildd/ideviceinstaller-1.0.0' make[1]: *** [all] Error 2 make[1]: Leaving directory `/tmp/buildd/ideviceinstaller-1.0.0' dh_auto_build: make -j1 returned exit code 2 make: *** [build] Error 2 dpkg-buildpackage: error: debian/rules build gave error exit status 2 E: Failed autobuilding of package -- System Information: Debian Release: wheezy/sid APT prefers unstable APT policy: (500, 'unstable'), (1, 'experimental') Architecture: amd64 (x86_64) Kernel: Linux 3.0.0-1-amd64 (SMP w/2 CPU cores) Locale: LANG=C, LC_CTYPE=fr_FR.utf8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash Description: fix build failure with libzip 0.10 zip_fread returns signed int64 while zip_stat size is an unsigned int64. --- src/ideviceinstaller.c |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/src/ideviceinstaller.c +++ b/src/ideviceinstaller.c @@ -161,7 +161,7 @@ static int zip_f_get_contents(struct zip } *buffer = malloc(zs.size); - if (zip_fread(zfile, *buffer, zs.size) != zs.size) { + if (zs.size>LLONG_MAX || zip_fread(zfile, *buffer, zs.size) != (zip_int64_t)zs.size) { fprintf(stderr, "ERROR: zip_fread %ld bytes from '%s'\n", zs.size, filename); free(*buffer); *buffer = NULL; Description: fix build failure with libzip 0.10 zip_fread returns signed int64 while zip_stat size is an unsigned int64. --- src/ideviceinstaller.c |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/src/ideviceinstaller.c +++ b/src/ideviceinstaller.c @@ -161,7 +161,7 @@ static int zip_f_get_contents(struct zip } *buffer = malloc(zs.size); - if (zip_fread(zfile, *buffer, zs.size) != zs.size) { + if (zs.size>LLONG_MAX || zip_fread(zfile, *buffer, zs.size) != (zip_int64_t)zs.size) { fprintf(stderr, "ERROR: zip_fread %ld bytes from '%s'\n", zs.size, filename); free(*buffer); *buffer = NULL; Description: fix build failure with libzip 0.10 zip_fread returns signed int64 while zip_stat size is an unsigned int64. --- src/ideviceinstaller.c |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/src/ideviceinstaller.c +++ b/src/ideviceinstaller.c @@ -161,7 +161,7 @@ static int zip_f_get_contents(struct zip } *buffer = malloc(zs.size); - if (zip_fread(zfile, *buffer, zs.size) != zs.size) { + if (zs.size>LLONG_MAX || zip_fread(zfile, *buffer, zs.size) != (zip_int64_t)zs.size) { fprintf(stderr, "ERROR: zip_fread %ld bytes from '%s'\n", zs.size, filename); free(*buffer); *buffer = NULL;
Bug#653427: qt4-x11: ftbfs on several architectures (timeout building the docs)
Source: qt4-x11 Version: 4:4.7.4-1 Severity: serious Justification: fails to build from source (but built successfully in the past) ftbfs in the same way on armel/powerpc/s390/s390x architectures. # Build documentations dh_auto_build -Smakefile -- docs make[2]: Entering directory `/build/buildd-qt4-x11_4.7.4-1-powerpc-NX93i0/qt4-x11-4.7.4' cd src/corelib/ && make -f Makefile make[3]: Entering directory `/build/buildd-qt4-x11_4.7.4-1-powerpc-NX93i0/qt4-x11-4.7.4/src/corelib' make[3]: Nothing to be done for `first'. make[3]: Leaving directory `/build/buildd-qt4-x11_4.7.4-1-powerpc-NX93i0/qt4-x11-4.7.4/src/corelib' cd src/xml/ && make -f Makefile make[3]: Entering directory `/build/buildd-qt4-x11_4.7.4-1-powerpc-NX93i0/qt4-x11-4.7.4/src/xml' make[3]: Nothing to be done for `first'. make[3]: Leaving directory `/build/buildd-qt4-x11_4.7.4-1-powerpc-NX93i0/qt4-x11-4.7.4/src/xml' (cd tools/qdoc3 && make) make[3]: Entering directory `/build/buildd-qt4-x11_4.7.4-1-powerpc-NX93i0/qt4-x11-4.7.4/tools/qdoc3' make[3]: Nothing to be done for `first'. make[3]: Leaving directory `/build/buildd-qt4-x11_4.7.4-1-powerpc-NX93i0/qt4-x11-4.7.4/tools/qdoc3' (cd /build/buildd-qt4-x11_4.7.4-1-powerpc-NX93i0/qt4-x11-4.7.4/tools/qdoc3/test && QT_BUILD_TREE=/build/buildd-qt4-x11_4.7.4-1-powerpc-NX93i0/qt4-x11-4.7.4 QT_SOURCE_TREE=/build/buildd-qt4-x11_4.7.4-1-powerpc-NX93i0/qt4-x11-4.7.4 /build/buildd-qt4-x11_4.7.4-1-powerpc-NX93i0/qt4-x11-4.7.4/bin/qdoc3 qt-build-docs-online.qdocconf && cp -f -r /build/buildd-qt4-x11_4.7.4-1-powerpc-NX93i0/qt4-x11-4.7.4/examples/webkit/webkit-guide /build/buildd-qt4-x11_4.7.4-1-powerpc-NX93i0/qt4-x11-4.7.4/doc/html) make: *** wait: No child processes. Stop. make: *** Waiting for unfinished jobs make: *** wait: No child processes. Stop. make[1]: *** wait: No child processes. Stop. make[1]: *** Waiting for unfinished jobs make[1]: *** wait: No child processes. Stop. E: Caught signal 'Terminated': terminating immediately make[2]: *** [adp_docs] Terminated Build killed with signal TERM after 150 minutes of inactivity -- System Information: Debian Release: wheezy/sid APT prefers unstable APT policy: (500, 'unstable'), (1, 'experimental') Architecture: amd64 (x86_64) Kernel: Linux 3.0.0-1-amd64 (SMP w/2 CPU cores) Locale: LANG=C, LC_CTYPE=fr_FR.utf8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash -- To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#618118: closing 618118
close 618118 0.7.6-1 thanks -- To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#615664: closing 615664
close 615664 0.7.6-1 thanks -- To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#641738: CVE-2011-3193/CVE-2011-3194
Hi, On Thu, Sep 15, 2011 at 5:56 PM, Moritz Muehlenhoff wrote: > Please see these links for details and patches: > https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2011-3193 Fix isn't included upstream in Qt 4.7.4. It is now applied to our packages and will be fixed with Qt 4.7.4-1 upload. > https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2011-3194 Fix included upstream in Qt 4.7.4 Cheers, Fathi -- To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#630917: qt4-linguist-tools: trying to overwrite '/usr/bin/lupdate-qt4', which is also in package libqt4-dev 4:4.7.3-1
Hi, On Sat, Jun 18, 2011 at 6:30 PM, Sami Liedes wrote: > Package: qt4-linguist-tools > Version: 4:4.7.3-2 > Severity: serious > > It seems qt4-linguist-tools needs a Conflicts: against older > libqt4-dev: The upgrade happened smoothly for me. Conflicts isn't needed. See Debian Policy 7.6.1 paragraph and current control: Breaks: libqt4-dev (<< 4.7.3-2) Replaces: libqt4-dev (<< 4.7.3-2) Cheers, Fathi -- To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#617760: chromium-browser: package broken - missing files
Package: chromium-browser Version: 10.0.648.127~r76697-1 Severity: grave Justification: renders package unusable Since latest upgrade, I cannot run chromium. Looking into the package, it seems the main binary is missing. $ apt-file search usr/bin/chromium-browser chromium-browser: /usr/bin/chromium-browser $ dpkg -L chromium-browser /. /usr /usr/share /usr/share/doc /usr/share/doc/chromium-browser /usr/share/doc/chromium-browser/copyright /usr/share/doc/chromium-browser/changelog.Debian.gz /usr/share/doc/chromium-browser/README.Debian /usr/share/doc/chromium-browser/TODO.Debian /etc/chromium-browser/master_preferences /etc/chromium-browser/default -- System Information: Debian Release: wheezy/sid APT prefers unstable APT policy: (500, 'unstable'), (1, 'experimental') Architecture: amd64 (x86_64) Kernel: Linux 2.6.37-2-amd64 (SMP w/2 CPU cores) Locale: LANG=C, LC_CTYPE=fr_FR.utf8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash Versions of packages chromium-browser depends on: ii chromium 10.0.648.127~r76697-1 Chromium browser chromium-browser recommends no packages. chromium-browser suggests no packages. -- no debconf information -- To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#599245: not fit for squeeze
Hi, > imho splashy is not fit for being released in squeeze: as discussed on IRC, I agreed for splashy/splashy-theme removal from Squeeze. Please, proceed. Cheers, Fathi -- To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#576250: febootstrap: segfaults and fails to complete bootstrapping
On Sat, Jul 17, 2010 at 4:47 PM, Michael Banck wrote: > Do you get those segfaults as well if you run febootstrap with > --no-clean? I still have a single segfault instead of the bunch of segfaults: Complete! /usr/bin/febootstrap: line 93: 15649 Segmentation fault [ "$clean" = "yes" ] > If it is just the clean which fails, I agree. At least in the original > logfile, I do not see any other segfaults. You know my opinion on the severity of the bug. > I don't recollect now but there were issues with the half baked chroot > environment. That was the justification for the severity. Ritesh, could you describe the issues ? The segfaults seems related to yum cache cleanup and it doesn't seems a big deal. Cheers, Fathi -- To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#587575: #587575 mock broken due to its sub components exit with python exception
On Tue, Jul 6, 2010 at 4:14 PM, seth vidal wrote: > If you're getting the above error then you didn't apply the patched > package b/c the above code no longer exists in the patched package. Thanks Seth. I built urlgrabber with Seth patches (taken from his 3.9.1-5 package) and it works as expected. The ball is in Kevin side now. Cheers, Fathi -- To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#587575: #587575 mock broken due to its sub components exit with python exception
It seems an issue with urlgrabber 3.9.x: I installed urlgrabber 3.1.0-5 as it's the version I used when I created successfully my chroot. With this version, I created fc11/12/13 successfully. -- To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#587575: #587575 mock broken due to its sub components exit with python exception
Hi, > I would upload to the archives but would rather test first. And I > don't use yum or mock, so if possible I'd like to impose on you for a > quick test. tested and it doesn't help on the issue: ERROR: Command failed: # /usr/bin/yum --installroot /var/lib/mock/fedora-11-x86_64/root/ groupinstall buildsys-build Traceback (most recent call last): File "/usr/lib/pymodules/python2.6/urlgrabber/grabber.py", line 1522, in _progress_update if self._over_max_size(cur=self._amount_read-self._reget_length): File "/usr/lib/pymodules/python2.6/urlgrabber/grabber.py", line 1539, in _over_max_size if cur > max_size + max_size*.10: TypeError: can't multiply sequence by non-int of type 'float' Cheers, Fathi -- To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#587502: kdevelop: Regression. Too many resources is used while doing background jobs.
> Using your recomendation I remove that dir and config. But this is not help. > While next background job is starting i had the same problem. > > Project is available, this is rtmpd.com - OpenSource project. > When I import clean project(just svn'ed) in kdevelop4 all is fine. Project > indexing(via background job) pass successful.After this i run "cmake . && > make" > (on builders/cmake directory) next background job leads to "eating" memory > and hard CPU usage. I think this happend cause project generate several > sym-lynks > to upper directories -> got several loops of scanning. I'm not able to reproduce so far. Maybe there's a difference on the way the project is created. Could you send the exact step you do and your kdevelop project file ? my steps: -> get crtmpserver 0.1 branch (r1421) -> run kdevelop -> project -> open/import project... -> select crtmpserver/builders/cmake/CMakeLists.txt -> set project name to crtmpserver -> set build directory to crtmpserver/build -> ok -> project -> build all projects -> it fails to build on vmtests -> close project -> close kdevelop -> run kdevelop -> project -> open recent -> select crtmpserver project -- To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#587502: kdevelop: Regression. Too many resources is used while doing background jobs.
Hi, Is your cmake based project available somewhere ? try to remove ~/.kdevduchain directory and test if it's better. Cheers, Fathi -- To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#587575: mock broken due to its sub components exit with python exception
>Do you think that upgrading to the latest version of yum (which, the >last time I saw, is 3.2.26) would fix the issue? Is Fedora 13 running >python 2.6? And what version of yum? FC13 is running: - python 2.6 - python-urlgrabber 3.9.1 (+patches) - yum 3.2.27 (+patches) -- To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#587711: libqt4-network: infinite loop in QSslSocketBackendPrivate::transmit()
> it isn't coherent. sorry, I was thinking to Qt 4.7 ... current released version should be affected. -- To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#587711: libqt4-network: infinite loop in QSslSocketBackendPrivate::transmit()
Hi, >From the advisory: > Versions: <= 4.6.3 it isn't coherent. Cheers, Fathi -- To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#587384: qwbfsmanager: mix incompatible license GPL2/GPL3
Package: qwbfsmanager Version: 1.0.3-1 Severity: serious Tags: upstream Justification: Policy 2.3 qwbfsmanager is mixing GPL2 only code with GPL3 code: - libqwbfs is GPL2 only - qwbfsmanager is GPL3 Upstream author (also maintainer of the package) is aware of the issue. It is planned to relicense qwbfsmanager to a compatible license as libwqbfs authors cannot be contacted. -- System Information: Debian Release: squeeze/sid APT prefers unstable APT policy: (500, 'unstable'), (1, 'experimental') Architecture: amd64 (x86_64) Kernel: Linux 2.6.34-1-amd64 (SMP w/2 CPU cores) Locale: LANG=C, LC_CTYPE=fr_FR.utf8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash -- To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#587129: closing 587129
close 587129 3.9.1-3 thanks -- To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#576250: febootstrap: segfaults and fails to complete bootstrapping
Hi, I have uploaded febootstrap 2.7-1 to Debian. Unfortunately, this version still segfault: Complete! /usr/bin/fakeroot: line 1: 17946 Segmentation fault exit $RESULT /usr/bin/fakeroot: line 1: 17947 Segmentation fault exit $RESULT /usr/bin/fakeroot: line 1: 17948 Segmentation fault exit $RESULT /usr/bin/fakeroot: line 1: 17949 Segmentation fault exit $RESULT /usr/bin/fakeroot: line 1: 17950 Segmentation fault exit $RESULT /usr/bin/fakeroot: line 1: 17951 Segmentation fault exit $RESULT /usr/bin/fakeroot: line 1: 17952 Segmentation fault exit $RESULT /usr/bin/fakeroot: line 1: 17953 Segmentation fault exit $RESULT /usr/bin/fakeroot: line 1: 17954 Segmentation fault exit $RESULT /usr/bin/fakeroot: line 1: 17955 Segmentation fault exit $RESULT /usr/bin/fakeroot: line 1: 17956 Segmentation fault exit $RESULT /usr/bin/fakeroot: line 1: 17957 Segmentation fault exit $RESULT /usr/bin/fakeroot: line 1: 17958 Segmentation fault exit $RESULT /usr/bin/fakeroot: line 1: 17959 Segmentation fault exit $RESULT /usr/bin/fakeroot: line 1: 17960 Segmentation fault exit $RESULT /usr/bin/fakeroot: line 1: 17961 Segmentation fault exit $RESULT /usr/bin/fakeroot: line 1: 17962 Segmentation fault exit $RESULT /usr/bin/fakeroot: line 1: 17963 Segmentation fault exit $RESULT /usr/bin/fakeroot: line 1: 17964 Segmentation fault exit $RESULT /usr/bin/fakeroot: line 1: 17965 Segmentation fault exit $RESULT /usr/bin/fakeroot: line 1: 17966 Segmentation fault exit $RESULT /usr/bin/fakeroot: line 1: 17967 Segmentation fault exit $RESULT /usr/bin/fakeroot: line 1: 17968 Segmentation fault exit $RESULT /usr/bin/fakeroot: line 1: 17969 Segmentation fault exit $RESULT /usr/bin/fakeroot: line 1: 17970 Segmentation fault exit $RESULT /usr/bin/fakeroot: line 1: 17971 Segmentation fault exit $RESULT /usr/bin/fakeroot: line 1: 17972 Segmentation fault exit $RESULT /usr/bin/fakeroot: line 1: 17973 Segmentation fault exit $RESULT /usr/bin/fakeroot: line 1: 17974 Segmentation fault exit $RESULT /usr/bin/fakeroot: line 1: 17975 Segmentation fault exit $RESULT febootstrap-run: problem parsing the command line arguments febootstrap-run: problem parsing the command line arguments /usr/bin/febootstrap: line 93: 17980 Segmentation fault febootstrap-run "$target" -- rm -rf /var/cache/yum/febootstrap-updates IMHO, the bug should be downgraded to important. As I said in a previous mail: the boostrap is functional. You can chroot and use it as expected. Cheers, Fathi -- To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#576250: febootstrap: segfaults and fails to complete bootstrapping
Hi, I'm using febootstrap since some week and indeed, I'm able to reproduce the bug. However, I disagree with the severity serious as it doesn't renders package unusable. After the segfault and the febootstrap cache removal failure, the boostrap is functional. You can chroot and use it as expected (note: you should cleanup the cache yourself if you want more space). Anyway, a new upstream release will be appreciated. If you don't mind, I could upload a NMU if needed. Cheers, Fathi -- To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#584617: Installation causes massive dependency problems for many other packages
> This is a problem of libdirectfb-1.2.9 which ought not to conflict with > libdirectfb-1.2-0. wrong, libdirectfb-1.2.9 should conflict against libdirectfb-1.2-0. There's conflicting files on armel architecture. We have done a directfb transition. Most of the packages should have been rebuilt against latest directfb (and depends on libdirectfb-1.2.9). Do you have some libxine2* packages, still depending on libdirectfb-1.2-0 ? btw, libxine2 is only in experimental. -- To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#583785: closing 583785
close 583785 0.9.6a-2 thanks -- To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#578255: phonon: must not depend on alsa on kbsd
tag 578255 + pending thanks it's fixed in svn since yesterday. -- To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#574269: smb4k/umount.cifs
smb4k 0.10.7 is needed. It should be uploaded very soon. On Tue, Apr 13, 2010 at 6:24 PM, Rich Mack wrote: > Hi, > > I have installed the latest packages from http://smb4k.berlios.de/ but I > still receive the error at start up. I tried both packages > smb4k_0.9.10-0.0_i386 and smb4k_0.10.5-1_i386, same result. > > I'm running Testing. > > smb4k is a very cool and useful package! > > Rich > > > > > > > -- To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#542971: kdebluetooth: FTBFS: aclocal.m4:14: error: this file was generated for autoconf 2.61.
tag 542971 + pending thanks I planned to ship Squeeze with kbluetooth 1:0.4.2-2 (in experimental atm). It should hit unstable right after KDE 4.4.x upload. -- To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#563992: [kmymoney2] Crashes when opening file created by kmymoney 1.0.2
Hi, > There is a problem in version 3.95 if you are using KDE 4.4. If so, > you should run the latest SVN, where this was reportedly fixed. is it fixed in 3.96.1 ? if no, could you let us know which svn revision fixed the issue ? The reporter uses KDE 4.3.4. Cheers, Fathi -- To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#574269: smb4k serious issue wrt cifs
Hi Alexander, The following bug has been reported: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=574269 The related changes was done on cifs-utils: cifs-utils (2:4.0-1) unstable; urgency=low * As of this version, the mount.cifs binary is no longer setuid due to upstream concerns about the audit status of this code. As a consequence, users will no longer be able to run mount.cifs directly to mount shares unless mount points have been individually configured in /etc/fstab with the "user" mount option. Sites that require their users to retain the ability to mount arbitrary CIFS shares without system-level configuration may want to consider using the fusesmb package instead. -- Steve Langasek Sun, 28 Feb 2010 16:07:14 -0800 It seems smb4k should migrate to fusesmb or maybe you have a better proposal ? Cheers, Fathi -- To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#564146: debian rpath policy violation
raised on kde-buildsystem ml http://mail.kde.org/pipermail/kde-buildsystem/2010-February/006716.html -- To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/6a2e33621002170700p1e5e536cqc1fe6fc0cec7e...@mail.gmail.com
Bug#566911: src:kaffeine: FTBFS on GNU/kFreeBSD: dvb is mandatory
tag 566911 + upstream thanks Hi, dvb stuff isn't optional. There's 2 solutions: - build kaffeine only on Linux architectures. - upstream make dvb stuff optional. Christoph, could you give me your input please ? cheers, Fathi -- To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#546505: Fails to start returning a segmentation fault error
Hi, IMHO, that's an issue caused by libqscintilla2-5. A package rebuild should resolve the issue. cheers, Fathi -- To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#549757: osmo: FTBFS: icalss.h:37:27: error: icalcomponent.h: No such file or directory
Hi, the issue is caused by this changes: http://freeassociation.svn.sourceforge.net/viewvc/freeassociation/trunk/libical/libical.pc.in?r1=842&r2=916 cc'ed upstream to get a feedback. IMHO, we could revert the changes or update the include files to use libical/ prefix as expected. cheers, Fathi On Sat, Oct 10, 2009 at 5:07 PM, Eike Nicklas wrote: > Thanks for reporting this. I reproduced the FTBFS on i386 with > libical-dev 0.44-1, it does not occur with 0.43-3. > > Fathi, I am cc-ing you since you're maintaining libical. Do you know of > any changes, in 0.44 that might cause such a problem (see below)? Thanks > for your help! > > In the osmo sources, ical is include like this: > > #include > #include > #include > #include > > Will also contact upstream about this. > > Thanks, > Eike > > > > > > On Mon, 5 Oct 2009 20:31:12 +0200 Lucas Nussbaum wrote: > > [snip] >> >> During a rebuild of all packages in sid, your package failed to build >> on amd64. >> >> Relevant part: > [snip] >> > calendar_ical.o -MD -MP -MF .deps/calendar_ical.Tpo -c -o >> > calendar_ical.o calendar_ical.c In file included from >> > calendar_ical.c:37: /usr/include/libical/icalss.h:37:27: error: >> > icalcomponent.h: No such file or >> > directory /usr/include/libical/icalss.h:112:23: error: icalgauge.h: >> > No such file or directory /usr/include/libical/icalss.h:285:21: >> > error: icalset.h: No such file or >> > directory /usr/include/libical/icalss.h:347:25: error: >> > icalcluster.h: No such file or directory make[3]: *** >> > [calendar_ical.o] Error 1 >> >> The full build log is available from: >> >> http://people.debian.org/~lucas/logs/2009/10/05/osmo_0.2.8-1_lsid64.buildlog >> > [snip] > -- To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#540330: [libgcal-dev] missing dependency on libgcal0
Package: libgcal-dev Version: 0.9.1-1 Severity: serious libgcal-dev should depends on libgcal0. -- To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#537801: libqtgui4: mangled color maps
tags 537801 + unreproducible thanks Hi, I tried kcachegrind 4.2.4 with Qt 4.5.2 and I can't reproduce the bug using intel or nvidia driver. which desktop environnment do you use ? do you use compositing (compiz, kwin effects, etc...) ? do you use some extra package to enhance qt/gtk integration (gtk2-engine- qtcurve, etc ...) ? cheers, Fathi -- To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#536900: Fix python-qt4 4.5.1 build against Qt 4.5.2
Hi, please find attached a patch to fix python-qt4 4.5.1 build against Qt 4.5.2. cheers, Fathi Fixed the license checks for Qt v4.5.2. ActiveQt became part of the open source version in v4.5.2. --- a/configure.py +++ b/configure.py @@ -50,6 +50,7 @@ sip_min_version = 0x040801 qt_version = 0 qt_edition = "" +qt_licensee = None qt_dir = None qt_incdir = None qt_libdir = None @@ -909,6 +910,9 @@ def inform_user(): sipconfig.inform("Qt v%s %sis being used." % (sipconfig.version_to_string(qt_version), edstr)) +if qt_licensee: +sipconfig.inform("Qt is licensed to %s." % qt_licensee) + if sys.platform == "darwin" and qt_framework: sipconfig.inform("Qt is built as a framework.") @@ -1465,9 +1469,8 @@ def check_license(): sipconfig.inform("This is the %s version of PyQt %s (licensed under the %s) for Python %s on %s." % (ltype, pyqt_version_str, lname, sys.version.split()[0], sys.platform)) # Common checks. -if qt_edition and ltype != "internal": -if qt_edition != "free" and ltype == "GPL": -sipconfig.error("This version of PyQt and the %s edition of Qt have incompatible licenses." % qt_edition) +if qt_licensee and ltype == "GPL": +sipconfig.error("This version of PyQt and the commercial version of Qt have incompatible licenses.") # Confirm the license if not already done. if not opts.license_confirmed: @@ -1675,6 +1678,8 @@ int main(int, char **) out << QT_VERSION << '\\n'; out << QT_EDITION << '\\n'; +out << QLibraryInfo::licensee() << '\\n'; + #if defined(QT_SHARED) || defined(QT_DLL) out << "shared\\n"; #else @@ -1761,7 +1766,7 @@ int main(int, char **) f.close() global qt_dir, qt_incdir, qt_libdir, qt_bindir, qt_datadir, qt_pluginsdir -global qt_version, qt_edition, qt_shared, qt_xfeatures +global qt_version, qt_edition, qt_licensee, qt_shared, qt_xfeatures qt_dir = lines[0] qt_incdir = lines[1] @@ -1771,8 +1776,12 @@ int main(int, char **) qt_pluginsdir = lines[5] qt_version = lines[6] qt_edition = lines[7] -qt_shared = lines[8] -qt_xfeatures = lines[9:] +qt_licensee = lines[8] +qt_shared = lines[9] +qt_xfeatures = lines[10:] + +if qt_licensee == 'Open Source': +qt_licensee = None try: qt_version = int(qt_version) @@ -1789,6 +1798,10 @@ int main(int, char **) if qt_edition & 0x200: # It has ActiveQt. qt_edition = "Desktop" + +# ActiveQt became part of the open source version in v4.5.2. +if qt_version >= 0x040502 and qt_licensee is None: +qt_edition = "free" elif qt_edition & 0x008: # It has OpenGL. qt_edition = "free"
Bug#529665: segfaults in KDE
Hi, which KDE and plasma version do you use ? dpkg -l kdelibs5 dpkg -l libplasma3 cheers, Fathi -- To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#528485: qt4-x11 - FTBFS: webkit linking fails
Hi, By default, debug info are disabled for QtWebkit. It's an upstream choice. I enabled debug info using 18_enable_qt3support_qtwebkit_debug_info.diff patch to provide debug package for QtWebkit. This patch triggered the build failure on s390. The linker runs out of memory which is the reason why pristine upstream QtWebkit doesn't have debugging symbols at all. For our users, we should continue to provide QtWebkit debug package. That means, we can't disable QtWebkit debug info as upstream does. We have 2 solutions: a) drop patch 18 and QtWebkit debug package. or b) build with gstabs on s390 architecture. thoughts ? cheers, Fathi
Bug#524417: libmodplug_1:0.8.4-4(mips/unstable): FTBFS on mips: missing autotools info.
tags 524417 + patch thanks please find attached a patch for libmodplug NMU. if you're busy I could upload it as soon as you ack. cheers, Fathi diff -u libmodplug-0.8.4/debian/changelog libmodplug-0.8.4/debian/changelog --- libmodplug-0.8.4/debian/changelog +++ libmodplug-0.8.4/debian/changelog @@ -1,3 +1,12 @@ +libmodplug (1:0.8.4-4.1) unstable; urgency=low + + * Non-maintainer upload. + * Fix ftbfs on all architectures (Closes: #524471): +- re-order autotools/libtool calls. +- don't remove ltmain.sh on clean target. + + -- Fathi Boudra Mon, 20 Apr 2009 13:38:39 +0200 + libmodplug (1:0.8.4-4) unstable; urgency=low * libmodplug-dev depends on libstdc++-dev now (closes: #524259) diff -u libmodplug-0.8.4/debian/rules libmodplug-0.8.4/debian/rules --- libmodplug-0.8.4/debian/rules +++ libmodplug-0.8.4/debian/rules @@ -13,11 +13,20 @@ configure: configure-stamp configure-stamp: dh_testdir + aclocal - libtoolize -f - autoheader - automake autoconf + autoheader + automake --add-missing --copy + libtoolize --copy --force + +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 + CC=$(CC) CXX=$(CXX) CFLAGS="-O2" CXXFLAGS="-O2" \ ./configure --prefix=/usr \ --mandir=\$${prefix}/share/man \ @@ -35,7 +44,7 @@ dh_testdir test ! -f Makefile || $(MAKE) distclean rm -f build-stamp configure-stamp - rm -f config.guess config.sub ltconfig ltmain.sh conftest conftest.o + rm -f config.guess config.sub ltconfig conftest conftest.o rm -f aclocal.m4 config.h.in configure config.log rm -f Makefile.in src/Makefile.in dh_clean
Bug#519312: Removing dfb++ and fusionsound?
Hi, IMHO, dfb++ and fusionsound are candidate for plain removal. I'm not interested to adopt them. cheers, Fathi -- To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#504380: [icecc-monitor] no host or scheduler found version graph
severity 504380 important thanks Hi > I can confirm that icecc-monitor simply does not work, with or without > USE_SCHEDULER set. Downgrading to the version from stable works around > the problem for me, too. using 1.1-3 => WORKSFORME. > Upping severity; Lenny should not ship with a version of the package > which does not work. the workaround still exist. maybe it doesn't work for everybody. I don't know why yet. The source code between 1.1-1 and 1.1-3 is the same... I will try icemon kde4 to see if it's fixed upstream as kde3 is not developed anymore. cheers, Fathi -- To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#504380: [icecc-monitor] no host or scheduler found
severity 504380 normal thanks Hi, Until a proper fix is found, use: $ USE_SCHEDULER= icemon Cheers, Fathi -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#505279: libgnutls26: segfault in _gnutls_x509_crt_get_raw_dn2
tags 424763 + patch thanks Hi, Thanks to Simon for the pointer. Please find attached a debdiff for the bug. cheers, Fathi diff -u gnutls26-2.4.2/debian/changelog gnutls26-2.4.2/debian/changelog --- gnutls26-2.4.2/debian/changelog +++ gnutls26-2.4.2/debian/changelog @@ -1,3 +1,11 @@ +gnutls26 (2.4.2-2.1) unstable; urgency=low + + * Non-maintainer upload. + * Add debian/patches/21_gnutls_x509_crt_get_raw_dn2_fix_505279.diff +to fix _gnutls_x509_crt_get_raw_dn2 segfault. Closes: #505279 + + -- Fathi Boudra <[EMAIL PROTECTED]> Wed, 12 Nov 2008 10:01:37 +0100 + gnutls26 (2.4.2-2) unstable; urgency=medium * [CVE-2008-4989.diff] Fix man in the middle attack for certificate --- gnutls26-2.4.2.orig/debian/patches/21_gnutls_x509_crt_get_raw_dn2_fix_505279.diff +++ gnutls26-2.4.2/debian/patches/21_gnutls_x509_crt_get_raw_dn2_fix_505279.diff @@ -0,0 +1,20 @@ +--- a/lib/x509/verify.c b/lib/x509/verify.c +@@ -376,17 +376,6 @@ + int i = 0, ret; + unsigned int status = 0, output; + +- /* Check if the last certificate in the path is self signed. +- * In that case ignore it (a certificate is trusted only if it +- * leads to a trusted party by us, not the server's). +- */ +- if (gnutls_x509_crt_check_issuer (certificate_list[clist_size - 1], +-certificate_list[clist_size - 1]) > 0 +- && clist_size > 0) +-{ +- clist_size--; +-} +- + /* Verify the last certificate in the certificate path +* against the trusted CA certificate list. +*
Bug#493899: DirectFB fails to start ("Could not initialize 'system' core!")
tags 493899 + pending confirmed Thanks Hi, the bug is confirmed. The patch [1] to reopen console if zero length byte is read, breaks directfb. It fails in the usual case, but works when run through strace. we'll try to update the patch to fix issue. Otherwise, we'll remove it. cheers, Fathi [1] http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=462626 -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#482211: ktoon: FTBFS: agldevice.h:24:21: error: QGLWidget: No such file or directory
Hi, Since we have splitted Qt OpenGL developement files in his own package, you need to add a build dependency on libqt4-opengl-dev. cheers, Fathi -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#482654: KDE.devel splash screen disappears and then nothing happens at all
tags 482654 + unreproducible thanks. please, use reportbug to report a bug and add a subject when you send a mail to the bug tracking system. cheers, Fathi -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#481059: qt4-doc: Package is empty except pictures
Hi, please read the Debian changelog: * Split html documentation in qt4-doc-html package. Now, you have 2 packages: - qt4-doc, it contains documentation in the new help format (sqlite database) - qt4-doc-html, it contains documentation in the html format. Qt assistant use the new help format and Qt assistant_adp use html format. I'll wait for your feedback before closing the bug. cheers, Fathi -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#479644: libqt4-webkit:CVE-2008-1025 Cross-site scripting (XSS) vulnerability in Apple WebKit
Hi, for informations, we are investigating the issue with upstream people as we are not completely convinced QtWebKit is affected. cheers, Fathi
Bug#476215: subversion: URI http/https schemas not recognized
> Python upgrade to 2.5 breaks Subversion using http and https schemas. > libsvn_ra_serf is missing doesn't allow for http:// or https:// uri > prefixes to be recognized by subversion. > > svn:// works fine for projects like LyX. > https:// discovered broken when trying to checkout Inkscape trunk. > http:// discovered when trying to svn update Scribus. > > Please verify. confirmed. -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#475324: libQtSvg.so.4: cannot open shared object file
tags 475324 + pending severity 475324 important reassign 475324 libqt4-svg thanks Hi, This error is caused by the Qt4 packages split. You need to install libqt4-svg package to workaround the issue. By the way, kplayer isn't in the official archive. Next kplayer rebuild will bring dependencies up-to-date. The bug is still valid :) cheers, Fathi -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#475340: file conflicts between packages
tags 475340 + pending thanks Hi, fixed in svn in a couple of minutes ;) apt-get -f install workarounds the issue. cheers, Fathi -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#471603: kredentials: crash on renew/get new credentials
Package: kredentials Version: 0.9.4 Severity: grave Justification: renders package unusable Hi, kredentials crashed on renew/get new credentials. cheers, Fathi -- System Information: Debian Release: lenny/sid APT prefers unstable APT policy: (500, 'unstable') Architecture: amd64 (x86_64) Kernel: Linux 2.6.24-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/bash Versions of packages kredentials depends on: ii kdelibs4c2a 4:3.5.9.dfsg.1-2 core libraries and binaries for al ii libc6 2.7-9 GNU C Library: Shared libraries ii libgcc1 1:4.3.0-1 GCC support library ii libkrb53 1.6.dfsg.3~beta1-3 MIT Kerberos runtime libraries ii libqt3-mt 3:3.3.8b-5 Qt GUI Library (Threaded runtime v ii libstdc++64.3.0-1The GNU Standard C++ Library v3 Versions of packages kredentials recommends: ii openafs-krb5 1.4.6.dfsg1-3 AFS distributed filesystem Kerbero -- no debconf information -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#471079: Package not installable, conflict with libmlt0.2.5
Hi This is similar to bug reported some time ago (and closed): http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=468673 On Debian, libmlt0.2.x package doesn't exist and svcd_ntsc_wide exists only in libmlt-data package. You probably use debian-multimedia repository and your mlt package comes from there. cheers, Fathi -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#466686: kdebase-bin recommends gdb
severity 466686 minor thanks Hi, It isn't a policy violation. As matthew said: kdebase -> drkonqi -> gdb just check kdebase/drkonqi source code and you'll see that drkonqi runs gdb using kprocess to get backtrace when a crash occurs. cheers, Fathi -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#463800: sox upload
Hi, It seems you have uploaded a new upstream release of sox: http://packages.qa.debian.org/s/sox/news/20080209T150203Z.html and missed to fix my issue: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=463800 My NMU is now useless: http://people.debian.org/~djpig/delayed/sox_14.0.0-5.1_amd64.changes the bug prevents to build mlt -> mlt++ -> kdenlive packages. could you upload 14.0.1-2 to fix #463800 ASAP ? TIA. cheers, Fathi -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#464660: ksynaptics/qsynaptics broken and abadoned upstream
severity 464660 normal thanks Hi, I know and I'm working on TouchFreeze. The plan is: * put TouchFreeze in Debian * ask for removal of k/qsynaptics. cheers, Fathi -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#464613: Qt 3.3.8b
tags 464613 + pending thanks preparing Qt3.3.8b upload with updated license. you can expect the upload before sunday. cheers, Fathi -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#463800: libsox-dev: missing libsfx developement files
Package: libsox-dev Version: 14.0.0-5 Severity: grave Tags: patch Hi, libsox-dev doesn't contains libsfx.a and libsfx.so symlink. It causes ftbfs on softwares that use sox/sfx. cheers, Fathi -- System Information: Debian Release: lenny/sid APT prefers unstable APT policy: (500, 'unstable') Architecture: amd64 (x86_64) Kernel: Linux 2.6.24-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/bash Versions of packages libsox-dev depends on: ii libsox-fmt-all14.0.0-5 All SoX format libraries ii libsox0 14.0.0-5 SoX library libsox-dev recommends no packages. -- no debconf information --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,11 @@ +sox (14.0.0-5.1) unstable; urgency=low + + * Non-maintainer upload. + * Added missing libsfx development files. + * Removed *.la files installation. + + -- Fathi Boudra <[EMAIL PROTECTED]> Sun, 03 Feb 2008 14:16:38 +0100 + sox (14.0.0-5) unstable; urgency=low * [debian/control]: --- a/debian/libsox-dev.install +++ b/debian/libsox-dev.install @@ -1,4 +1,4 @@ -debian/tmp/usr/lib/libsox.{a,la,so} usr/lib/ -debian/tmp/usr/lib/sox/libsox*.{a,la} usr/lib/sox/ +debian/tmp/usr/lib/lib*.{a,so} usr/lib/ +debian/tmp/usr/lib/sox/lib*.a usr/lib/sox/ debian/tmp/usr/include/* usr/include/ debian/tmp/usr/share/man/man3 usr/share/man/
Bug#457628: klineakconfig: No window opens after startup
tags 457628 + unreproducible severity 457628 normal thanks Hi, that's normal: No window opens after startup. When you launch klineakconfig, a small icon (tux) appears only. Right click on the icon, shows the preferences. Left click on the icon, show the configuration dialog. cheers, Fathi <>
Bug#459745: qtractor - FTBFS: configure: error: JACK library not found.
Hi, qtractor builds fine for me on amd64. JACK detected properly: > checking for main in -ljack... yes > checking jack/jack.h usability... yes > checking jack/jack.h presence... yes > checking for jack/jack.h... yes > JACK Audio Connection Kit support . . . . . . . .: yes cheers, Fathi -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#458873: ktoon: FTBFS: dapplication.cpp:(.text+0x13b7): undefined reference to `DDebug::DDebug(DebugType)'
tags + pending thanks Hi Juan Manuel, i uploaded ktoon 0.8.1-3.1 to delayed 2 days during the Zurich BSP. cheers, Fathi ktoon_0.8.1-3.1.diff.gz Description: GNU Zip compressed data Format: 1.0 Source: ktoon Binary: ktoon Architecture: any Version: 0.8.1-3.1 Maintainer: Juan Manuel Garcia Molina <[EMAIL PROTECTED]> Homepage: http://ktoon.toonka.com Standards-Version: 3.7.3 Build-Depends: autotools-dev, debhelper (>= 5.0.0), docbook-to-man, dpatch, imagemagick, libaspell-dev, libaudio-dev, libavcodec-dev, libavformat-dev, libglu1-mesa-dev, libgstreamer0.10-dev, libming-dev, libming-util, libqt4-dev (>= 4.3), libungif4-dev Files: 4a8c81cda1c0e13dc2fd436fb28c52e7 2020849 ktoon_0.8.1.orig.tar.gz 6a7584328914875b24ad7fbfdf11f247 33003 ktoon_0.8.1-3.1.diff.gz Format: 1.7 Date: Sat, 12 Jan 2008 16:46:15 +0100 Source: ktoon Binary: ktoon Architecture: source Version: 0.8.1-3.1 Distribution: unstable Urgency: low Maintainer: Juan Manuel Garcia Molina <[EMAIL PROTECTED]> Changed-By: Fathi Boudra <[EMAIL PROTECTED]> Description: ktoon - 2D animation toolkit Closes: 458873 Changes: ktoon (0.8.1-3.1) unstable; urgency=low . * Non-maintainer upload. Closes: 458873. * Bump Standard-Version to 3.7.3. * Use Homepage field. * Clean up debian/dirs. Fix lintian warning. * Build with --no-undefined and --as-needed linker flags. * Merge Ubuntu changes: - add debian/patches/80_fix_build_on_unix fix build on unix - drop debian/patches/20_libminghack ming-config has moved to /usr/bin/ming-config Files: 008599c1d7ed159d9570ea64641f4d6f 585 graphics optional ktoon_0.8.1-3.1.dsc 6a7584328914875b24ad7fbfdf11f247 33003 graphics optional ktoon_0.8.1-3.1.diff.gz
Bug#459749: kdebase - FTBFS: error: 'WM2FullPlacement' is not a member of 'NET'
tags 459749 + pending thanks seli xinerama patch is a 2 parts patch: kdelibs and kdebase. kdebase must build against the patched kdelibs. -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#459749: kdebase - FTBFS: error: 'WM2FullPlacement' is not a member of 'NET'
introduced by 54_seli_xinerama patch. same failure on alpha, mipsel, powerpc and s390. strange, it doesn't failed to build on other arches. -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#459300: kile crashes on startup
tags 459300 + moreinfo unreproducible Thanks it works for me using kile 2.0-1 on up-to-date Sid amd64. -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#457412: [Pkg-kde-extras] Bug#457412: kmymoney2 crash when libchipcard2-data not installed
Hi Micha, Fatih, you shouldn't have closed the bug without providing any > versioning information. Moreover, if it's not a bug of kmymoney2, please > reassign it to the affected package (instead of simply closing it) next > time. > > You missed the fact that libchipcard2 is still available in Etch, and > needs to be fixed there because missing dependencies are of release > critical severity (especially when causing segfaults). Thus I reassign > the bug to libchipcard2 -- and will take care of it there. Just to be clear, i didn't missed anything. I choosed to close the bug without anything more than my 2c comments which is pretty clear: Please, submit your bug report to Ubuntu Launchpad. By the way, i took time to look if it'isn't a kmymoney bug but not more. I can understand you don't agree with my decision, anyway i would like to explain my motivation and explain it: our priority is our users. cheers, Fathi
Bug#441806: deskbar-plugins-strigi: Error window pops up after each keystroke
Hi, could you try latest strigi package (0.5.6) and tell me if it is affected ? cheers, Fathi -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#436573: kdm do not start
hi, just wondering, do you have xserver-xorg or xserver-xorg-core package installed ? cheers, Fathi -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#433768: FTBFS[hppa]: QMAKESPEC has not been set, so configuration cannot be deduced.
Le Saturday 21 July 2007 22:17:38 Fathi Boudra, vous avez écrit : > > Nothing special. Sounds like a kernel bug. > > Lamont, which kernel is running on the hppa buildd? > > > > I've booted 2.6.22.1 (32-bit UP) on B2600 and will try > > a 64-bit SMP on a500 later today. > > Qt4 was builded with a 32 bits kernel on hppa and > /usr/share/qt4/mkspecs/linux-g++ is present. > > Julien Louis is rebuilding on a 64 bits kernel to see the difference. > > What is the kernel on the hppa buildd (bld-3) ? conclusion: * build fine on hppa 32bits kernel and fails on 64bits kernel * architecture detected on hppa 32bits kernel is parisc * architecture detected on hppa 64bits kernel is generic * moving from arch:generic to arch:parisc on 64bits kernel does nothing. I pinged TT guys to have their point of view. Julien will not have access to his hppa until next friday. We don't have access to pear (debian hppa machine). cheers, Fathi
Bug#433768: FTBFS[hppa]: QMAKESPEC has not been set, so configuration cannot be deduced.
> Nothing special. Sounds like a kernel bug. > > Lamont, which kernel is running on the hppa buildd? > > I've booted 2.6.22.1 (32-bit UP) on B2600 and will try > a 64-bit SMP on a500 later today. Qt4 was builded with a 32 bits kernel on hppa and /usr/share/qt4/mkspecs/linux-g++ is present. Julien Louis is rebuilding on a 64 bits kernel to see the difference. What is the kernel on the hppa buildd (bld-3) ? cheers, Fathi -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#426129: qt4-x11: FTBFS on arm
tags 426129 + patch thanks hi, fixed in svn branches for Qt4.3.0rc1: http://svn.debian.org/wsvn/pkg-kde/branches/kde4/packages/qt4-x11/debian/patches/30_arm_ftbfs_fixes.dpatch cheers, Fathi -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#422400: taskjuggler: FTBFS: Test Timezone.tjp failed!
hi, This is definitely caused by a different behaviour of tzset(). The problem occurs in Utility::setTimezone(). tzset should copy an unknown timezone into tzname[0]. Looks like glibc tzset no longer does that. Not sure why Uli would change that. Might be a bug. The patch submitted-date-and-unknown-tz.diff introduced in Sid glibc since 2.5-1 causes taskjuggler FTBFS: * patches/any/submitted-date-and-unknown-tz.diff: fix date output in case of an unknown timezone in $TZ, submitted upstream as #4028. Closes: #55648, #119540, #269238. The submitted upstream bug report: http://sources.redhat.com/bugzilla/show_bug.cgi?id=4028 The proposed patch was rejected and upstream closed the bug as "resolved/ wontfix": > The existing behavior is as valid as any other. Any change will disrupt > things, though. No change. Now, the question is what do we do ? Drop this patch like upstream does, will re-open 3 other debian bug reports. Thanks to Pierre Habouzit, Aurelien Jarno and Chris Schlaeger for the pointers. cheers, Fathi -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#412054: strigi-daemon: segmentation fault
hi, we know that current plugins (kfile and libextractor) cause segfault. By default, we recommend to disable them. Doing this, will render strigi-plugins package useless until fixed. by the way, last ritesh comments is another bug: > For example, when strigi encounters an .doc/.pdf file, it uses > wvWare/pdftotext. But it never exits from these programs. And there the > indexing stops. I mean the status page says that the indexing is going on > but the numbers don't change for hours. The pdftotext/wvWare processes go > into SN process state. i re-assign the bug #412054 and let the bug grave, until we have a proper solution. cheers, Fathi -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#412054: strigi-daemon: segmentation fault
hi, which client do you use ? i have: ii libsearchclient0 0.3.11-1 ii libstreamindexer00.3.11-1 ii libstreams0 0.3.11-1 ii libstrigihtmlgui00.3.11-1 ii libstrigiqtdbusclient0 0.3.11-1 ii strigi-client0.3.11-1 ii strigi-daemon0.3.11-1 it doesn't segfault for me. cheers, Fathi -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#407799: desktop-base: /etc/defaults/kdm.d/10_desktop_base overrides configured login desktop without warning on upgrade
hi, > Can someone please explain why this bug is only marked as fixed in > experimental? Please upload a fix to unstable so that it will get real > user testing and can be considered for etch. It must be uploded to unstable. > I see there has also been further discussion in the bug log about whether > disabling the KDE override is the appropriate fix. Is this debate still > ongoing? The debate is finished. Changes were done in kdebase 3.5.5a.dfsg.1-6 to fix the issue: if kdm theme is modified, we don't use overrides. We don't need to disable anymore KDM override file provided in desktop-base by default. > Is there any code in progress to support this alternate solution > on an etch timescale? Remaining issue is the position of the swirl on the default wallpaper... not a critical issue, i agree. cheers, Fathi -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#410727: kaffeine crashes attempting to play videos
hi, could you add some debugging package to produce a better backtrace: * kaffeine-dbg * kdelibs-dbg * libxine1-dbg * qt-x11-free-dbg What video type you try to play ? i tried avi files without any crash. cheers, Fathi -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#407799: 10_desktop_base overrides configured login desktop without warning on upgrade
hi, back from vacation with all these new bug reports ;) As some users seems to complain about it, KDM override is now disabled by default. i'll add a way to ask users if they want the override enabled. All these changes will be in 4.0.1 targeted for Etch. cheers, Fathi -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#405880: kde-guidance userconfig breaks login permissions
severity 405880 important retitle 405880 kde-guidance userconfig breaks login permissions tags 405880 + patch thanks hi, guidance reported bug, is a bug fixed in 0.6.3. i created a new user with 0.7.0 and permissions were set correctly. i was able to log into console using the new user. Modestas Vainius suggests to change umask to reproduce the bug. So umask 0066 breaks file creation, but it isn't guidance fault. Current guidance (0.7.0) keep perms as they are. I wasn't able to reproduce it until i changed my umask. i reduced severity to important as it isn't completely guidance fault. Modestas provided a patch, submitted to upstream. i expect to have a proper solution soon :) cheers, Fathi diff -uNr kde-guidance-0.7.0.old/userconfig/unixauthdb.py kde-guidance-0.7.0/userconfig/unixauthdb.py --- kde-guidance-0.7.0.old/userconfig/unixauthdb.py 2007-01-07 12:26:57.0 +0200 +++ kde-guidance-0.7.0/userconfig/unixauthdb.py 2007-01-07 13:35:09.0 +0200 @@ -17,10 +17,12 @@ import fcntl import time import os +import os.path import stat import shutil import codecs import locale +import tempfile ldaperror = "" try: @@ -28,6 +30,20 @@ except ImportError: ldaperror = "The LDAP Python Module is not installed, but needed to use LDAP. Install it." +def createTempFile(origfile): +origstat = os.stat(origfile) +tmp_prefix = os.path.basename(origfile) + "." +tmp_dir = os.path.dirname(origfile) +try: +ret = tempfile.mkstemp(prefix=tmp_prefix, dir=tmp_dir) +except: +raise IOError, "Unable to create a new temporary file for " + origfile +(fd, tmpfile) = ret +shutil.copymode(origfile, tmpfile) +os.chown(tmpfile, origstat.st_uid, origstat.st_gid) + +return ret + def getContext(editmode=False): """Get a Context object describing the system's authorisation database. @@ -820,54 +836,46 @@ self._sanityCheck() # Write out the new password file. -origstat = os.stat(self.__passwordfile) -tmpname = self.__passwordfile+".TMP" -fd = os.open(tmpname, os.O_CREAT|os.O_WRONLY|os.O_TRUNC, origstat.st_mode) +(fd, tmpname) = createTempFile(self.__passwordfile) for u in self._users: os.write(fd, u._getPasswdEntry().encode(locale.getpreferredencoding(),'replace')) #print u._getPasswdEntry() os.close(fd) -os.chown(tmpname, origstat.st_uid, origstat.st_gid) # Update the passwd file passwordlock = os.open(self.__passwordfile, os.O_WRONLY) # FIXME encoding if LockFDWrite(passwordlock)==False: raise IOError,"Couldn't get a write lock on "+self.__passwordfile try: -os.rename(self.__passwordfile+".TMP",self.__passwordfile) +os.rename(tmpname, self.__passwordfile) finally: UnlockFD(passwordlock) os.close(passwordlock) # Write out the new group file -origstat = os.stat(self.__groupfile) -tmpname = self.__groupfile+".TMP" -fd = os.open(tmpname, os.O_CREAT|os.O_WRONLY|os.O_TRUNC, origstat.st_mode) +(fd, tmpname) = createTempFile(self.__groupfile) for g in self._groups: os.write(fd,g._getGroupFileEntry().encode(locale.getpreferredencoding())) #print g._getGroupFileEntry()[:-1] os.close(fd) -os.chown(tmpname, origstat.st_uid, origstat.st_gid) # Update the group file. grouplock = os.open(self.__groupfile, os.O_WRONLY) if LockFDWrite(grouplock)==False: raise IOError,"Couldn't get write lock on "+self.__groupfile try: -os.rename(self.__groupfile+".TMP",self.__groupfile) +os.rename(tmpname, self.__groupfile) finally: UnlockFD(grouplock) os.close(grouplock) # Write out the new shadow file origstat = os.stat(self.__shadowfile) -tmpname = self.__shadowfile+".TMP" -fd = os.open(tmpname, os.O_CREAT|os.O_WRONLY|os.O_TRUNC, origstat.st_mode|stat.S_IWUSR) +(fd, tmpname) = createTempFile(self.__shadowfile) for u in self._users: os.write(fd,u._getShadowEntry().encode(locale.getpreferredencoding())) #print u._getShadowEntry()[:-1] os.close(fd) -os.chown(tmpname, origstat.st_uid, origstat.st_gid) # Update the shadow file. @@ -879,7 +887,7 @@ if LockFDWrite(shadowlock)==False: raise IOError,"Couldn't get write lock on "+self.__shadowfile try: -os.rename(self.__shadowfile+".TMP",self.__shadowfile) +os.rename(tmpname, self.__shadowfile) finally: UnlockFD(shadowlock) os.close(shadowlock)
Bug#403776: kdm seems to violate FHS
hi, please take a look at another related bug report: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=403797 to resume: > Some changes have been done in theme handling. Please take a look > at /usr/share/doc/kdm/README.Debian > desktop-base installs /etc/default/kdm.d/10_desktop-base . It overrides kdm > values. You can comment values inside 10_desktop-base or add your own > overrided values in /etc/default/kdm.d/20_my-values for example. As explained by sune, configuration files are in /etc/kde3/kdm/ directory and we read overrides /etc/default/kdm.d/ directory. kdm doesn't violate FHS as you seem to claim. cheers, Fathi -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#397874: subversion-tools: Please do not conflict with kdesdk-scripts
tags 397874 + pending thanks hi all, > > I just read the bugreport and that you want to conflict with > > kdesdk-scripts. Please don't. People might want to install both > > packages and IMHO they shouldn't conflict because both contain 1 script > > among many files that are the same. > > > > You could rename the script, or use alternatives, conflict IMHO is the > > worst option. > > Or kdesdk-scripts renames or removes the script. I think that would be > the better solution, even if it was first in kdesdk-scripts: > > - Many people use subversion that wouldn't need kde-specific stuff > > - it looks much more natural to have this tool in subversion-tools. > > The ideal solution, of course, would be to contact both upstreams and > convince them to join efforts... since the bug report, i talked with peter and thiago (upstream) about the issue. kdesdk scripts are renamed in debian package. See : http://svn.debian.org/wsvn/pkg-kde/trunk/packages/kdesdk/debian/changelog?rev=0&sc=1 > Rename svn-clean and svnversions to svn-clean-kde and svnversion-kde to > avoid conflicts and mistakes with subversion scripts (Closes: #397874) cheers, Fathi -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#397879: subversion-tools: uninstallable as svn-clean is also in kdesdk-scripts
Package: subversion-tools Version: 1.4.0-5 Severity: grave Justification: renders package unusable svn-clean is also in kdesdk-scripts: Préparation du remplacement de subversion-tools 1.4.0-5 (en utilisant .../subversion-tools_1.4.2dfsg1-1_all.deb) ... Dépaquetage de la mise à jour de subversion-tools ... dpkg : erreur de traitement de /var/cache/apt/archives/subversion-tools_1.4.2dfsg1-1_all.deb (--unpack) : tentative de remplacement de « /usr/bin/svn-clean », qui appartient aussi au paquet kdesdk-scripts cheers, Fathi -- System Information: Debian Release: 4.0 APT prefers unstable APT policy: (500, 'unstable'), (1, 'experimental') Architecture: i386 (i686) Shell: /bin/sh linked to /bin/bash Kernel: Linux 2.6.18-1-k7 Locale: LANG=fr_FR, LC_CTYPE=fr_FR (charmap=ISO-8859-1) Versions of packages subversion-tools depends on: ii libconfig-inifiles-perl 2.39-2 Read .ini-style configuration file ii liburi-perl 1.35-2 Manipulates and accesses URI strin ii perl5.8.8-6.1Larry Wall's Practical Extraction ii python 2.4.4-1 An interactive high-level object-o ii python-subversion 1.4.2dfsg1-1 Python bindings for Subversion ii subversion 1.4.2dfsg1-1 Advanced version control system Versions of packages subversion-tools recommends: ii postfix [mail-transport-agent 2.3.4-1A high-performance mail transport ii rcs 5.7-18 The GNU Revision Control System
Bug#394192: Security: integer overflow in pixmap handling (CVE-2006-4811)
Trolltech today announced the release of Qt 3.3.7, 4.1.5 and 4.2.1 - patch releases that incorporate a fix for a security issue identified in the Qt 3.x and Qt 4.x series. While no exploits for this security issue are currently known, it is recommended that Qt users upgrade to these latest versions. A security flaw was recently discovered in the way Qt 3.x and 4.x handles pixmap images. This issue can occur only when transforming specially prepared images from untrusted sources. Qt 3.3.7, as well as Qt 4.1.5 and 4.2.1 correct this flaw. -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#391725: kerry: change build-dependency on beagle-dev for libbeagle-dev
tags 391725 + pending thanks hi, fixed in pkg-kde svn. wait for libbeagle-dev, not available yet. cheers, Fathi -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#390829: Kaffeine refuses to start completely
hi, me too, i'm unable to reproduce the bug on unstable. You can take a look at /var/log/dpkg.log for your recent changes. Michael Biebl seems to reproduce it. Is it also on testing ? I'm not sure it is caused by kaffeine. cheers, Fathi -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#388170: ripit poiicy violation
Package: ripit Version: 3.5.1-1 Severity: serious Justification: policy violation hi, there's a policy violation on your package. according to debian policy section 2.2.1: "must not require a package outside of main for compilation or execution (thus, the package must not declare a "Depends", "Recommends", or "Build-Depends" relationship on a non-main package)" and ripit depends: Depends: libwww-perl, libcddb-get-perl, cdparanoia | cdda2wav, vorbis-tools (>= 1.0beta4-1) | lame | flac | bladeenc | faac At least, lame/bladeenc/faac must be removed from depends. cheers, Fathi -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#388142: libgalago1: uninstallable, needs rebuilt against libdbus-1-3
Package: libgalago1 Version: 0.3.3-4 Severity: grave Justification: renders package unusable hi, libgalago1 is uninstallable again, and the package is outdated: upstream -> version 0.5.1 (May 21, 2006) debian -> version 0.3.3 (August 27, 2005) cheers, Fathi -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#382988: No keyboard layout available under kcontrol!
tags 382988 + fixed-upstream pending thanks hi, it's fixed in r576139. it will be available in next upload. cheers, Fathi -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#383555: udev broken for initrd kernels
hi, I don't know if that can help but using kernel 2.6.17-2-k7, gives me same behaviors. Reverting to previous 2.6.17-1-k7 works for me. cheers, Fathi -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#380026: Patch to fix FTBFS: doesn't recognize autoconf 2.60
hi, thks for the patch, but it's too late ;) i have uploaded kbfx_0.4.9.1+20060611cvs-1 around 1 hour ago :) cheers, Fathi -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#375443: fails to install
hi, guidance needs to use python 2.4. now that the new debian python infrastructure is stabilized, i'll update the package forcing to use 2.4. cheers, Fathi -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#365335: diff for mozilla-firefox-adblock 0.5.2.039-4.1 NMU
tags 365335 + patch thanks Hi, Attached is the diff for mozilla-firefox-adblock 0.5.2.039-4.1 NMU. The package has been uploaded. cheers, Fathi diff -u mozilla-firefox-adblock-0.5.2.039/debian/changelog mozilla-firefox-adblock-0.5.2.039/debian/changelog --- mozilla-firefox-adblock-0.5.2.039/debian/changelog +++ mozilla-firefox-adblock-0.5.2.039/debian/changelog @@ -1,3 +1,13 @@ +mozilla-firefox-adblock (0.5.2.039-4.1) unstable; urgency=low + + * Non-maintainer upload + * Removed postinst and postrm (Closes: #365335) +update-mozilla-firefox-chrome script no more needed since firefox 1.0.6-1 + * Depends on firefox (>= 1.0.6) instead of mozilla-firefox (>= 0.9) + * Fixed lintian error debian-rules-missing-required-target binary-arch + + -- Fathi Boudra <[EMAIL PROTECTED]> Tue, 6 Jun 2006 17:24:42 +0200 + mozilla-firefox-adblock (0.5.2.039-4) unstable; urgency=low * Changed URL in debian/copyright to be more generic diff -u mozilla-firefox-adblock-0.5.2.039/debian/control mozilla-firefox-adblock-0.5.2.039/debian/control --- mozilla-firefox-adblock-0.5.2.039/debian/control +++ mozilla-firefox-adblock-0.5.2.039/debian/control @@ -8,7 +8,7 @@ Package: mozilla-firefox-adblock Architecture: all -Depends: mozilla-firefox (>= 0.9) +Depends: firefox (>= 1.0.6) Description: AdBlock extension for the Firefox web browser The AdBlock extension adds to Firefox browser an ability to filter unwanted objects on webpages. Filters can be specified using reverted: --- mozilla-firefox-adblock-0.5.2.039/debian/postinst +++ mozilla-firefox-adblock-0.5.2.039.orig/debian/postinst @@ -1,23 +0,0 @@ -#! /bin/sh -# postinst script for adblock - -set -e - -case "$1" in -configure) -update-mozilla-firefox-chrome -;; - -abort-upgrade|abort-remove|abort-deconfigure) - -;; - -*) -echo "postinst called with unknown argument \`$1'" >&2 -exit 1 -;; -esac - -#DEBHELPER# - -exit 0 reverted: --- mozilla-firefox-adblock-0.5.2.039/debian/postrm +++ mozilla-firefox-adblock-0.5.2.039.orig/debian/postrm @@ -1,20 +0,0 @@ -#! /bin/sh -# postrm script for adblock - -set -e - -case "$1" in -remove) -update-mozilla-firefox-chrome -;; -purge|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear) - -;; -*) -echo "postrm called with unknown argument \`$1'" >&2 -exit 1 -esac - -#DEBHELPER# - -exit 0 diff -u mozilla-firefox-adblock-0.5.2.039/debian/rules mozilla-firefox-adblock-0.5.2.039/debian/rules --- mozilla-firefox-adblock-0.5.2.039/debian/rules +++ mozilla-firefox-adblock-0.5.2.039/debian/rules @@ -2,7 +2,7 @@ DEB_DESTDIR := debian/mozilla-firefox-adblock -binary: binary-indep +binary: binary-indep binary-arch build: build-stamp @@ -50 +50,3 @@ -.PHONY: clean binary-indep binary install build +binary-arch: ; + +.PHONY: clean binary-indep binary-arch binary install build
Bug#364001: wizard crash with kopete listen module on
hi, i tried to reproduce but failed at the first step : * Open kopete * connect (i've got msn and yahoo account) * configure * devices after clicking devices, it crashes. reproducible every time. if someone could reproduce the bug you submitted to know if i need to submit a bug for kopete... cheers, Fathi -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#361243: klibido: Should be build with --disable-debug
severity 361243 important tags 361243 pending thank... fixed in version in version 0.2.5-2 -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#360082: kdemultimedia: FTBFS
tags 360082 pending thank... It's already updated in svn and fixed by kdemultimedia_3.5.2-2 (partially in incoming). cheers, Fathi -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#355803: fixed in 0.8.3-2
hi, at the moment, 0.8.3-1 is in new queue. it's fixed in 0.8.3-2. cheers, Fathi -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]