Bug#571383: unreproducible (quiteinsanegimpplugin: Could not find usable Gimp version)
Hi, Its error is as > checking for GIMP - version >= 2.0.0... *** Could not run GIMP test program, > checking why... > *** The test program failed to compile or link. See the file config.log for > the > *** exact error that occured. This usually means GIMP is incorrectly > installed. > > Could not find Gimp-2.0.0 or newer > Try to find older version... > > > checking for gimp-config... no > checking for gimptool... no > checking libgimp/gimp.h usability... no > checking libgimp/gimp.h presence... no > checking for libgimp/gimp.h... no > checking libgimp/gimpfeatures.h usability... no > checking libgimp/gimpfeatures.h presence... no > checking for libgimp/gimpfeatures.h... no > no > *** Could not run GIMP test program, checking why... > ** > Could not find usable Gimp version > Please install The Gimp 1.2 or newer > ** > > configure: error: > make: *** [build-stamp] Error 1 But I could build it with pbuilder in amd64 today, so tag it as unreproducible. Its build dependency is >Build-Depends: debhelper (>> 5.0.0), autotools-dev, libtool, autoconf, >automake1.7, perl, libsane-dev, libqt3-mt-dev(>= 3:3. >3.4-4), libgimp2.0-dev libgimp2.0-dev seems to be enough. -- Regards, Hideki Yamane henrich @ debian.or.jp/iijmio-mail.jp http://wiki.debian.org/HidekiYamane -- To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/20100422173304.457b547f.henr...@debian.or.jp
Processed: your mail
Processing commands for cont...@bugs.debian.org: > tags 574328 patch Bug #574328 [src:xorp] xorp: FTBFS: Patch libtool-rm-invalid-argument-fix does not remove cleanly (refresh it or enforce with -f) Added tag(s) patch. > tags 569376 unreproducible Bug #569376 [src:gimp-dimage-color] gimp-dimage-color: FTBFS: configure: error: Cannot find GIMP: Is gimptool in path? Added tag(s) unreproducible. > tags 574218 unreproducible Bug #574218 [xorp] xorp: installation fails Added tag(s) unreproducible. > tags 571383 unreproducible Bug #571383 [src:quiteinsanegimpplugin] quiteinsanegimpplugin: Could not find usable Gimp version Added tag(s) unreproducible. > tags 573682 patch Bug #573682 [src:libiscwt-java] libiscwt-java: FTBFS: Nonexistent build-dependency: libswt-gtk-3.4-java Added tag(s) patch. > tags 577342 patch Bug #577342 [src:libcompass-ruby] libcompass-ruby: FTBFS: install: cannot stat `ChangeLog': No such file or directory Added tag(s) patch. > tags 577343 patch Bug #577343 [src:minlog] minlog: FTBFS: Nonexistent build-dependency: mzscheme Added tag(s) patch. > thanks Stopping processing here. Please contact me if you need assistance. Debian bug tracking system administrator (administrator, Debian Bugs database) -- To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/handler.s.c.12719267848612.transcr...@bugs.debian.org
Bug#578731: rudiments: FTBFS on GNU/kFreeBSD
Package: rudiments Version: 0.32-1 Severity: important Tags: patch User: debian-...@lists.debian.org Usertags: kfreebsd Hi, the current version fails to build on GNU/kFreeBSD. Please find patch bellow with tweaks. It would also be nice if you can ask upstream to include this changes. Thanks in advance --- include/rudiments/serialportprofile.h +++ include/rudiments/serialportprofile.h @@ -130,8 +130,13 @@ #ifdef TABDLY enumtabdelay_t { td_none=TAB0, + #if defined(TAB1) && defined(TAB2) td_depends=TAB1, td_100=TAB2 + #else + td_depends=TAB0, + td_100=TAB3 + #endif }; #endif -- To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/pine.lnx.4.62.1004221324570.4...@sci.felk.cvut.cz
Bug#578777: b43-fwcutter: Fails to determine unsupported PCI IDs
Package: b43-fwcutter Version: 1:013~git20100413-2 Severity: normal Tags: patch Hi, The PCI ID checks performed by the firmware-b43-installer, firmware-b43legacy-installer and firmware-b43-lpphy-installer packages are effectively skipped, as the PCI device and vendor codes are not requested during post-installation. The expected input for the cut commands (used to acquire the device code) also requires use of grep's only-matching option. Attached is a patch amending both areas in each postinst file. Geoff -- System Information: Debian Release: squeeze/sid APT prefers unstable APT policy: (500, 'unstable') Architecture: i386 (i686) Kernel: Linux 2.6.32-4-686 (SMP w/1 CPU core) Locale: LANG=en_AU.UTF-8, LC_CTYPE=en_AU.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash Versions of packages b43-fwcutter depends on: ii libc6 2.10.2-6 Embedded GNU C Library: Shared lib b43-fwcutter recommends no packages. b43-fwcutter suggests no packages. -- debconf information excluded diff -Nru b43-fwcutter-013~git20100413/debian/firmware-b43-installer.postinst b43-fwcutter-013~git20100413/debian/firmware-b43-installer.postinst --- b43-fwcutter-013~git20100413/debian/firmware-b43-installer.postinst 2010-04-14 04:03:49.0 +1000 +++ b43-fwcutter-013~git20100413/debian/firmware-b43-installer.postinst 2010-04-23 01:51:59.0 +1000 @@ -12,12 +12,12 @@ fi # check chip -pci=`lspci | grep "14e4:[1234567890]\+"` || true +pci=`lspci -n | grep -o "14e4:[1234567890]\+"` || true if [ -n "$pci" ]; then if [ "`echo $pci | cut -d: -f2`" = "4301" ] || \ [ "`echo $pci | cut -d: -f2`" = "4306" ] || \ [ "`echo $pci | cut -d: -f2`" = "4320" ]; then - echo "Not supported card here (PCI id $pci!" + echo "Not supported card here (PCI id $pci)!" echo "Use b43legacy firmware." echo "Aborting." exit 1 diff -Nru b43-fwcutter-013~git20100413/debian/firmware-b43legacy-installer.postinst b43-fwcutter-013~git20100413/debian/firmware-b43legacy-installer.postinst --- b43-fwcutter-013~git20100413/debian/firmware-b43legacy-installer.postinst 2010-04-14 04:03:52.0 +1000 +++ b43-fwcutter-013~git20100413/debian/firmware-b43legacy-installer.postinst 2010-04-23 01:52:05.0 +1000 @@ -3,12 +3,12 @@ set -e # check chip -pci=`lspci | grep "14e4:[1234567890]\+"` || true +pci=`lspci -n | grep -o "14e4:[1234567890]\+"` || true if [ -n "$pci" ]; then if [ "`echo $pci | cut -d: -f2`" != "4301" ] || \ [ "`echo $pci | cut -d: -f2`" != "4306" ] || \ [ "`echo $pci | cut -d: -f2`" != "4320" ]; then -echo "Not supported card here (PCI id $pci!" +echo "Not supported card here (PCI id $pci)!" echo "Use b43 firmware. This is just for the b43legacy driver." echo "Aborting." exit 1 diff -Nru b43-fwcutter-013~git20100413/debian/firmware-b43-lpphy-installer.postinst b43-fwcutter-013~git20100413/debian/firmware-b43-lpphy-installer.postinst --- b43-fwcutter-013~git20100413/debian/firmware-b43-lpphy-installer.postinst 2010-04-14 04:03:53.0 +1000 +++ b43-fwcutter-013~git20100413/debian/firmware-b43-lpphy-installer.postinst 2010-04-23 01:52:13.0 +1000 @@ -12,10 +12,10 @@ fi # check chip -pci=`lspci | grep "14e4:[1234567890]\+"` || true +pci=`lspci -n | grep -o "14e4:[1234567890]\+"` || true if [ -n "$pci" ]; then if [ "`echo $pci | cut -d: -f2`" != "4315" ]; then - echo "Not supported card here (PCI id $pci!" + echo "Not supported card here (PCI id $pci)!" echo "Use proper b43 or b43legacy firmware." echo "Aborting." exit 1
Bug#578779: amd64 version of snes9x-gtk ?
Package: snes9x-gtk Severity: wishlist Hi, Is it possible to have an amd64 package of snes9x-gtk ? this new gui is really great! Thx, best regards, GiGGz -- System Information: Debian Release: 5.0.4 APT prefers stable APT policy: (987, 'stable'), (985, 'stable'), (500, 'lenny'), (195, 'unstable'), (95, 'experimental') Architecture: amd64 (x86_64) Kernel: Linux 2.6.32-bpo.3-amd64 (SMP w/4 CPU cores) Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8) (ignored: LC_ALL set to fr_FR.UTF-8) Shell: /bin/sh linked to /bin/bash -- To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/20100422164048.6429.40630.report...@baal
newpki-client 2.0.0+rc1-6 MIGRATED to testing
FYI: The status of the newpki-client source package in Debian's testing distribution has changed. Previous version: 2.0.0+rc1-5 Current version: 2.0.0+rc1-6 -- This email is automatically generated once a day. As the installation of new packages into testing happens multiple times a day you will receive later changes on the next day. See http://release.debian.org/testing-watch/ for more information. -- To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/e1o4zr5-0004ow...@ries.debian.org
wdm 1.28-3.5 MIGRATED to testing
FYI: The status of the wdm source package in Debian's testing distribution has changed. Previous version: 1.28-3.4 Current version: 1.28-3.5 -- This email is automatically generated once a day. As the installation of new packages into testing happens multiple times a day you will receive later changes on the next day. See http://release.debian.org/testing-watch/ for more information. -- To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/e1o4zr6-0004qg...@ries.debian.org