**** BEGIN LOGGING AT Sun Dec 21 02:59:57 2008 Dec 21 03:23:24 khem: Hello... I'm trying that nfs-utils build again after the commit you made and not having any luck Dec 21 09:15:15 03Koen Kooi  07org.openembedded.dev * r73b8594274 10openembedded.git/packages/u-boot/u-boot_git.bb: u-boot git: catch up with omap3 repository changes Dec 21 14:36:59 at a loss again - bitbake dies on angstrom-version.bb, bc it tries to lock /scratch/hallyn/zaurus-oe/tmp/work/tosa-angstrom-linux-gnueabi/angstrom-version-1_2008.1-test-20081221-r2/install/angstrom-version.lock when the directory doesn't exist yet Dec 21 14:37:08 (creating that dir just makes it fail later) Dec 21 14:37:22 but i don't see any actual instructions in angstrom-version.bb ... Dec 21 15:12:38 (allright, mkdir -p /scratch/hallyn/zaurus-oe/tmp/work/tosa-angstrom-linux-gnueabi/angstrom-version-1_2008.1-test-20081221-r2/install/angstrom-version got past that - seems like it shoudl be fixed in the .bb files, but alas i don't know where it's done) Dec 21 17:15:44 03Michael 'Mickey' Lauer  07org.openembedded.dev * r926e5e7820 10openembedded.git/packages/freesmartphone/frameworkd-devel_git.bb: frameworkd-devel: RPROVIDE frameworkd. Dec 21 18:18:12 Hi. I am trying to compile a new package with bitbake. The package uses autotools Dec 21 18:20:20 I inherited autotools in the bitbake recipe. The compiliation is successful but during the execution of do_package i get the following errors Dec 21 18:20:37 ERROR: QA Issue: non debug package contains .debug directory: player path /work/armv5te-angstrom-linux-gnueabi/player-2.1.1-r1/install/player/usr/share/player/examples/libplayerc/.debug/simple Dec 21 18:21:01 ..... Dec 21 18:21:04 ERROR: QA Issue: non debug package contains .debug directory: player path /work/armv5te-angstrom-linux-gnueabi/player-2.1.1-r1/install/player/usr/share/player/examples/libplayerc++/.debug/example0 Dec 21 18:21:04 NOTE: Checking Package: player-doc Dec 21 18:21:04 NOTE: Checking Package: player-dev Dec 21 18:21:06 NOTE: Checking Package: player-locale Dec 21 18:21:08 ERROR: QA run found fatal errors. Please consider fixing them. Dec 21 18:21:10 ERROR: Error in executing: Dec 21 18:21:12 ERROR: Exception: Message:1 Dec 21 18:21:14 ERROR: Printing the environment of the function Dec 21 18:21:16 ERROR: Error in executing: Dec 21 18:21:18 ERROR: Exception: Message:1 Dec 21 18:21:20 ERROR: Printing the environment of the function Dec 21 18:21:22 ERROR: Error in executing: Dec 21 18:21:24 ERROR: Exception: Message:1 Dec 21 18:21:26 ERROR: Printing the environment of the function Dec 21 18:21:28 ERROR: Error in executing: Dec 21 18:21:30 ERROR: Exception: Message:1 Dec 21 18:21:32 ERROR: Printing the environment of the function Dec 21 18:21:36 ERROR: Build of /home/goutham/development/gumstix/gumstix-oe/user.collection/packages/player/player_2.1.1.bb do_package failed Dec 21 18:21:39 ERROR: Task 0 (/home/goutham/development/gumstix/gumstix-oe/user.collection/packages/player/player_2.1.1.bb, do_package) failed Dec 21 18:21:42 does anyone know how to fix this? Thanks in advance Dec 21 18:27:26 goutham: you have .debug files that are packaged into a non debug package Dec 21 18:28:06 goutham: you need to use 'FILES_${PN}-dbg += blabla' in your recipe to ensure .debug file will be in the -dbg package Dec 21 18:29:00 cyrilRomain: thanks. I will try that Dec 21 18:29:17 cyrilRomain: here is my recipe as of now Dec 21 18:29:23 DESCRIPTION = "Player/Stage project" Dec 21 18:29:23 HOMEPAGE = "http://playerstage.sourceforge.net" Dec 21 18:29:23 LICENSE = "GPLV2" Dec 21 18:29:23 MAINTAINER = "brain gerkey, richard vaughan, andrew howard" Dec 21 18:29:23 PR="r1" Dec 21 18:29:24 SRC_URI="${SOURCEFORGE_MIRROR}/playerstage/${P}.tar.bz2" Dec 21 18:29:26 inherit autotools Dec 21 18:29:28 EXTRA_OECONF = "--disable-rpath --without-rtk --disable-alldrivers --enable-p2os --enable-cmucam2" Dec 21 18:29:36 goutham: please use pastebin Dec 21 18:29:39 ~pastebin Dec 21 18:29:40 [~pastebin] A "pastebin" is a web-based service where you can paste anything over 3 lines without flooding the channel. Here are links to a few : http://www.pastebin.com , http://pastebin.ca , http://channels.debian.net/paste , http://paste.lisp.org , http://www.rafb.net/paste Dec 21 18:30:19 ok. sorry abt that. i will try pastebin Dec 21 18:32:05 http://pastebin.com/d35e957b1 Dec 21 18:36:53 goutham: please note that MAINTAINER is for the people maintaining the recipe, not the author(s) Dec 21 18:37:20 lisppaste7: url even more eason Dec 21 18:37:28 lisppaste7: url Dec 21 18:37:29 To use the lisppaste bot, visit http://paste.lisp.org/new/oe and enter your paste. Dec 21 18:37:35 even more easy Dec 21 18:37:52 cyrilRomain: ok. I will change it my name Dec 21 18:49:59 cyrilRomain: is there a way to automate listing all the files that need to be added to the FILES_${PN} variable Dec 21 18:50:38 and FILES_${PN}-dbg variable Dec 21 18:53:09 goutham: no Dec 21 18:54:00 but ${sharedir}/player/.debug/* looks like a good candidate for stuff that should be in the dbg package (sharedir might be the wrong name, see bitbake.conf for the right one) Dec 21 18:54:29 zecke: thanks. will check that out Dec 21 18:58:42 goutham: or maybe even split the share examples into a new package? Dec 21 19:00:46 zecke: how do I do that? Dec 21 19:09:36 PACKAGES += " ${PN}-newname" Dec 21 19:09:50 FILES_${PN}-newname = "whatever is in the package" Dec 21 19:10:04 zecke: got it. thanks Dec 21 19:37:38 03Lukas Gorris  07org.openembedded.dev * rec0251360e 10openembedded.git/ (3 files in 3 dirs): htctitan: add machine file and update msm7xxxx kernel to match Dec 21 23:44:58 sakoman: hey Dec 21 23:54:30 any workaround for adobe flash plugin for firefox? Dec 21 23:54:46 there is a plugin for maemo, has anyone hacked it to work in oe/arm? **** ENDING LOGGING AT Mon Dec 22 02:59:56 2008