* QA issues with libvmime
@ 2011-02-28 14:17 Nathan Harris
2011-02-28 18:52 ` Tom Rini
0 siblings, 1 reply; 7+ messages in thread
From: Nathan Harris @ 2011-02-28 14:17 UTC (permalink / raw)
To: openembedded-devel
I am working on a recipe for the VMime library (http://www.vmime.org/).
My target environment is the Overo (Gumstix). Currently, bitbake is
failing during the final QA. My recipe, patch and bitbake output are
below. Hopefully, this error is familiar to someone. Thanks!
Here's my recipe:
DESCRIPTION = "VMime is a free mail library for C++"
HOMEPAGE = "http://www.vmime.org/"
DEPENDS = "libgsasl gnutls"
PR = "r1"
SRC_URI = "${SOURCEFORGE_MIRROR}/vmime/${PN}-${PV}.tar.bz2"
SRC_URI[md5sum] = "d5b6de44f7f9ca0e4cefe597d1905605"
SRC_URI[sha256sum] =
"3b66cb76d9bc7da80ef1f271cc29d3a183b5ff8b560ef60e85ff006bffb4d1ae"
SRC_URI += "file://sendmail_disable.patch"
# Older internal Libtool doesn't work
EXTRA_OEMAKE += "LIBTOOL='${HOST_SYS}-libtool'"
#S = ${WORKDIR}/${PN}-${PV}
#EXTRA_OECONF = "--disable-largefile --disable-rpath
--with-included-readline=no
--with-libgsasl-prefix=${STAGING_DIR}/${HOST_SYS} --with-gnutls-prefix=$
{STAGING_DIR}/${HOST_SYS}"
inherit scons
Here's my patch which disables sendmail from the build:
--- libvmime-0.9.1/SConstruct.orig 2011-02-24 15:46:44.185617415 -0500
+++ libvmime-0.9.1/SConstruct 2011-02-24 15:38:51.249617495 -0500
@@ -691,7 +691,7 @@
Exit(1)
# Sendmail transport is only available on POSIX platforms
-if os.name != 'posix':
+if os.name == 'posix':
if IsProtocolSupported(messaging_protocols, 'sendmail'):
print "WARNING: ignoring 'sendmail' support (only
available on POSIX platforms)\n"
Here's the bitbake error:
NOTE: package libvmime-0.9.1-r1: task do_qa_staging: Started
ERROR: QA Issue with staging: vmime.pc failed sanity test (tmpdir) in
path
/home/ppeimany/overo-oe/tmp/sysroots/armv7a-angstrom-linux-gnueabi/usr/lib/pkgconfig
FATAL: QA staging was broken by the package built above
ERROR: Error in executing python function in:
/home/ppeimany/overo-oe/org.openembedded.dev/recipes/libvmime/libvmime_0.9.1.bb
ERROR: Exception:<type 'exceptions.SystemExit'> Message:1
ERROR: Printing the environment of the function
ERROR: Function do_qa_staging failed
ERROR: TaskFailed event exception, aborting
ERROR: Build of
/home/ppeimany/overo-oe/org.openembedded.dev/recipes/libvmime/libvmime_0.9.1.bb
do_qa_staging failed
ERROR: QA Issue with staging: vmime.pc failed sanity test (tmpdir) in
path
/home/ppeimany/overo-oe/tmp/sysroots/armv7a-angstrom-linux-gnueabi/usr/lib/pkgconfig
ERROR: Task 4
(/home/ppeimany/overo-oe/org.openembedded.dev/recipes/libvmime/libvmime_0.9.1.bb,
do_qa_staging) failed with 256
ERROR:
'/home/ppeimany/overo-oe/org.openembedded.dev/recipes/libvmime/libvmime_0.9.1.bb'
failed
FATAL: QA staging was broken by the package built above
ERROR:
'/home/ppeimany/overo-oe/org.openembedded.dev/recipes/libvmime/libvmime_0.9.1.bb'
failed
^ permalink raw reply [flat|nested] 7+ messages in thread* Re: QA issues with libvmime 2011-02-28 14:17 QA issues with libvmime Nathan Harris @ 2011-02-28 18:52 ` Tom Rini 2011-02-28 20:48 ` Nathan Harris 0 siblings, 1 reply; 7+ messages in thread From: Tom Rini @ 2011-02-28 18:52 UTC (permalink / raw) To: openembedded-devel On 02/28/2011 07:17 AM, Nathan Harris wrote: > I am working on a recipe for the VMime library (http://www.vmime.org/). > My target environment is the Overo (Gumstix). Currently, bitbake is > failing during the final QA. My recipe, patch and bitbake output are > below. Hopefully, this error is familiar to someone. Thanks! [snip] > inherit scons [snip] > ERROR: QA Issue with staging: vmime.pc failed sanity test (tmpdir) in > path > /home/ppeimany/overo-oe/tmp/sysroots/armv7a-angstrom-linux-gnueabi/usr/lib/pkgconfig So, what this means it that vmime.pc wasn't properly cleaned. If you add pkgconfig to the inherit list (which brings in classes/pkgconfig.bbclass, take a peek at what it's doing) this will go away. Arguably we should make the error clearer and say, like the gettext one something about missing inherit pkgconfig in the recipe. -- Tom Rini Mentor Graphics Corporation ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: QA issues with libvmime 2011-02-28 18:52 ` Tom Rini @ 2011-02-28 20:48 ` Nathan Harris 2011-02-28 22:24 ` Khem Raj 0 siblings, 1 reply; 7+ messages in thread From: Nathan Harris @ 2011-02-28 20:48 UTC (permalink / raw) To: openembedded-devel On 2/28/2011 1:52 PM, Tom Rini wrote: > On 02/28/2011 07:17 AM, Nathan Harris wrote: >> I am working on a recipe for the VMime library (http://www.vmime.org/). >> My target environment is the Overo (Gumstix). Currently, bitbake is >> failing during the final QA. My recipe, patch and bitbake output are >> below. Hopefully, this error is familiar to someone. Thanks! > [snip] >> inherit scons > [snip] >> ERROR: QA Issue with staging: vmime.pc failed sanity test (tmpdir) in >> path >> /home/ppeimany/overo-oe/tmp/sysroots/armv7a-angstrom-linux-gnueabi/usr/lib/pkgconfig >> > > So, what this means it that vmime.pc wasn't properly cleaned. If you > add pkgconfig to the inherit list (which brings in > classes/pkgconfig.bbclass, take a peek at what it's doing) this will > go away. > > Arguably we should make the error clearer and say, like the gettext > one something about missing inherit pkgconfig in the recipe. > Thanks for the help. Looking at the vmime.pc file, I can see that the paths are wrong. Unfortunately, when I added pkgconfg to my inherit list, cleaned the package and then re-bitbaked, I still get the same error message. I verified that vmime.pc is removed during the clean process (along with the other temp files). I changed the inherit line of my recipe to read: inherit scons pkgconfig Here's what my vmime.pc file looks like after bitbake: prefix=/home/ppeimany/overo-oe/tmp/work/armv7a-angstrom-linux-gnueabi/libvmime-0.9.1-r1/image/usr exec_prefix=/home/ppeimany/overo-oe/tmp/work/armv7a-angstrom-linux-gnueabi/libvmime-0.9.1-r1/image/usr libdir=/home/ppeimany/overo-oe/tmp/work/armv7a-angstrom-linux-gnueabi/libvmime-0.9.1-r1/image/usr/lib includedir=/home/ppeimany/overo-oe/tmp/work/armv7a-angstrom-linux-gnueabi/libvmime-0.9.1-r1/image/usr/include Name: VMime Library Description: VMime C++ Mail Library (http://www.vmime.org) Version: 0.9.1 Requires: libgsasl Libs: -L${libdir} -lvmime -lgsasl Cflags: -I${includedir}/ ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: QA issues with libvmime 2011-02-28 20:48 ` Nathan Harris @ 2011-02-28 22:24 ` Khem Raj 2011-03-01 13:51 ` Nathan Harris 0 siblings, 1 reply; 7+ messages in thread From: Khem Raj @ 2011-02-28 22:24 UTC (permalink / raw) To: openembedded-devel On Mon, Feb 28, 2011 at 12:48 PM, Nathan Harris <nharris@eoimaging.com> wrote: > > Unfortunately, when I added pkgconfg to my inherit list, cleaned the package > and then re-bitbaked, I still get the same error message. I verified that > vmime.pc is removed during the clean process (along with the other temp > files). Is it also removed from sysroot ? ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: QA issues with libvmime 2011-02-28 22:24 ` Khem Raj @ 2011-03-01 13:51 ` Nathan Harris 2011-03-01 18:59 ` Khem Raj 0 siblings, 1 reply; 7+ messages in thread From: Nathan Harris @ 2011-03-01 13:51 UTC (permalink / raw) To: Khem Raj; +Cc: openembedded-devel On 2/28/2011 5:24 PM, Khem Raj wrote: > On Mon, Feb 28, 2011 at 12:48 PM, Nathan Harris<nharris@eoimaging.com> wrote: >> Unfortunately, when I added pkgconfg to my inherit list, cleaned the package >> and then re-bitbaked, I still get the same error message. I verified that >> vmime.pc is removed during the clean process (along with the other temp >> files). > Is it also removed from sysroot ? Yes it's removed from sysroot too. I tried to build again. Did a updatedb and locate on vmime.pc. I can see it in a few places (including the sysroot directory). I do the "bitbake -c clean libvmime", updatedb, and locate does not find anything. I searched manually and can not find vmime.pc. The recipe still fails. It's frustrating since it seems like the pkgconfig should have fixed it. At one point, I was trying to build with autotools and gave up that route. Maybe there is another file out there confusing the issue? Here's the entire output of bitbake and my new recipe. The recipe: DESCRIPTION = "VMime is a free mail library for C++" HOMEPAGE = "http://www.vmime.org/" DEPENDS = "libgsasl gnutls" PR = "r1" SRC_URI = "${SOURCEFORGE_MIRROR}/vmime/${PN}-${PV}.tar.bz2" SRC_URI[md5sum] = "d5b6de44f7f9ca0e4cefe597d1905605" SRC_URI[sha256sum] = "3b66cb76d9bc7da80ef1f271cc29d3a183b5ff8b560ef60e85ff006bffb4d1ae" SRC_URI += "file://sendmail_disable.patch" inherit scons pkgconfig The bitbake output: NOTE: Psyco JIT Compiler (http://psyco.sf.net) not available. Install it to increase performance. NOTE: Handling BitBake files: - (7293/7293) [100 %] Parsing of 7293 .bb files complete (6863 cached, 430 parsed). 7687 targets, 312 skipped, 2 masked, 0 errors. Build Configuration: BB_VERSION = "1.10.2" METADATA_BRANCH = "<unknown>" METADATA_REVISION = "12" TARGET_ARCH = "arm" TARGET_OS = "linux-gnueabi" MACHINE = "overo" DISTRO = "angstrom" DISTRO_VERSION = "2010.7-test-20110301" TARGET_FPU = "hard" NOTE: Resolving any missing task queue dependencies NOTE: Preparing runqueue NOTE: Executing runqueue NOTE: Running task 509 of 818 (ID: 10, /home/ppeimany/overo-oe/org.openembedded.dev/recipes/libvmime/libvmime_0.9.1.bb, do_setscene) NOTE: package libvmime-0.9.1-r1: task do_setscene: Started NOTE: package libvmime-0.9.1-r1: task do_setscene: Succeeded NOTE: Running task 510 of 818 (ID: 8, /home/ppeimany/overo-oe/org.openembedded.dev/recipes/libvmime/libvmime_0.9.1.bb, do_fetch) NOTE: package libvmime-0.9.1-r1: task do_fetch: Started NOTE: package libvmime-0.9.1-r1: task do_fetch: Succeeded NOTE: Running task 515 of 818 (ID: 0, /home/ppeimany/overo-oe/org.openembedded.dev/recipes/libvmime/libvmime_0.9.1.bb, do_unpack) NOTE: package libvmime-0.9.1-r1: task do_unpack: Started NOTE: Unpacking ../../../sources/libvmime-0.9.1.tar.bz2 to ../../../tmp/work/armv7a-angstrom-linux-gnueabi/libvmime-0.9.1-r1/ NOTE: package libvmime-0.9.1-r1: task do_unpack: Succeeded NOTE: Running task 539 of 818 (ID: 1, /home/ppeimany/overo-oe/org.openembedded.dev/recipes/libvmime/libvmime_0.9.1.bb, do_patch) NOTE: package libvmime-0.9.1-r1: task do_patch: Started NOTE: Applying patch 'sendmail_disable.patch' (files/sendmail_disable.patch) NOTE: package libvmime-0.9.1-r1: task do_patch: Succeeded NOTE: Running task 540 of 818 (ID: 11, /home/ppeimany/overo-oe/org.openembedded.dev/recipes/libvmime/libvmime_0.9.1.bb, do_configure) NOTE: package libvmime-0.9.1-r1: task do_configure: Started NOTE: package libvmime-0.9.1-r1: task do_configure: Succeeded NOTE: Running task 550 of 818 (ID: 12, /home/ppeimany/overo-oe/org.openembedded.dev/recipes/libvmime/libvmime_0.9.1.bb, do_qa_configure) NOTE: package libvmime-0.9.1-r1: task do_qa_configure: Started NOTE: package libvmime-0.9.1-r1: task do_qa_configure: Succeeded NOTE: Running task 551 of 818 (ID: 13, /home/ppeimany/overo-oe/org.openembedded.dev/recipes/libvmime/libvmime_0.9.1.bb, do_compile) NOTE: package libvmime-0.9.1-r1: task do_compile: Started NOTE: package libvmime-0.9.1-r1: task do_compile: Succeeded NOTE: Running task 552 of 818 (ID: 2, /home/ppeimany/overo-oe/org.openembedded.dev/recipes/libvmime/libvmime_0.9.1.bb, do_install) NOTE: package libvmime-0.9.1-r1: task do_install: Started NOTE: package libvmime-0.9.1-r1: task do_install: Succeeded NOTE: Running task 556 of 818 (ID: 14, /home/ppeimany/overo-oe/org.openembedded.dev/recipes/libvmime/libvmime_0.9.1.bb, do_package) NOTE: package libvmime-0.9.1-r1: task do_package: Started NOTE: package libvmime-0.9.1-r1: task do_package: Succeeded NOTE: Running task 558 of 818 (ID: 3, /home/ppeimany/overo-oe/org.openembedded.dev/recipes/libvmime/libvmime_0.9.1.bb, do_populate_sysroot) NOTE: package libvmime-0.9.1-r1: task do_populate_sysroot: Started NOTE: package libvmime-0.9.1-r1: task do_populate_sysroot: Succeeded Packaged contents of libvmime-dbg into /home/ppeimany/overo-oe/tmp/deploy/glibc/ipk/armv7a/libvmime-dbg_0.9.1-r1.6_armv7a.ipk NOTE: Running task 560 of 818 (ID: 16, /home/ppeimany/overo-oe/org.openembedded.dev/recipes/libvmime/libvmime_0.9.1.bb, do_package_write_ipk) Packaged contents of libvmime-dev into /home/ppeimany/overo-oe/tmp/deploy/glibc/ipk/armv7a/libvmime-dev_0.9.1-r1.6_armv7a.ipk NOTE: package libvmime-0.9.1-r1: task do_package_write_ipk: Started NOTE: Not creating empty archive for libvmime-0.9.1-r1.6 NOTE: Not creating empty archive for libvmime-doc-0.9.1-r1.6 Packaged contents of libvmime-static into /home/ppeimany/overo-oe/tmp/deploy/glibc/ipk/armv7a/libvmime-static_0.9.1-r1.6_armv7a.ipk NOTE: Not creating empty archive for libvmime-locale-0.9.1-r1.6 NOTE: package libvmime-0.9.1-r1: task do_package_write_ipk: Succeeded NOTE: Running task 561 of 818 (ID: 5, /home/ppeimany/overo-oe/org.openembedded.dev/recipes/libvmime/libvmime_0.9.1.bb, do_package_write) NOTE: package libvmime-0.9.1-r1: task do_package_write: Started NOTE: package libvmime-0.9.1-r1: task do_package_write: Succeeded NOTE: Running task 586 of 818 (ID: 4, /home/ppeimany/overo-oe/org.openembedded.dev/recipes/libvmime/libvmime_0.9.1.bb, do_qa_staging) NOTE: package libvmime-0.9.1-r1: task do_qa_staging: Started ERROR: QA Issue with staging: vmime.pc failed sanity test (tmpdir) in path /home/ppeimany/overo-oe/tmp/sysroots/armv7a-angstrom-linux-gnueabi/usr/lib/pkgconfig FATAL: QA staging was broken by the package built above ERROR: Error in executing python function in: /home/ppeimany/overo-oe/org.openembedded.dev/recipes/libvmime/libvmime_0.9.1.bb ERROR: Exception:<type 'exceptions.SystemExit'> Message:1 ERROR: Printing the environment of the function ERROR: Function do_qa_staging failed ERROR: TaskFailed event exception, aborting ERROR: Build of /home/ppeimany/overo-oe/org.openembedded.dev/recipes/libvmime/libvmime_0.9.1.bb do_qa_staging failed ERROR: Task 4 (/home/ppeimany/overo-oe/org.openembedded.dev/recipes/libvmime/libvmime_0.9.1.bb, do_qa_staging) failed with 256 ERROR: '/home/ppeimany/overo-oe/org.openembedded.dev/recipes/libvmime/libvmime_0.9.1.bb' failed ERROR: QA Issue with staging: vmime.pc failed sanity test (tmpdir) in path /home/ppeimany/overo-oe/tmp/sysroots/armv7a-angstrom-linux-gnueabi/usr/lib/pkgconfig FATAL: QA staging was broken by the package built above ERROR: '/home/ppeimany/overo-oe/org.openembedded.dev/recipes/libvmime/libvmime_0.9.1.bb' failed ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: QA issues with libvmime 2011-03-01 13:51 ` Nathan Harris @ 2011-03-01 18:59 ` Khem Raj 2011-03-01 19:43 ` Nathan Harris 0 siblings, 1 reply; 7+ messages in thread From: Khem Raj @ 2011-03-01 18:59 UTC (permalink / raw) To: Nathan Harris; +Cc: openembedded-devel On Tue, Mar 1, 2011 at 5:51 AM, Nathan Harris <nharris@eoimaging.com> wrote: > On 2/28/2011 5:24 PM, Khem Raj wrote: >> >> On Mon, Feb 28, 2011 at 12:48 PM, Nathan Harris<nharris@eoimaging.com> >> wrote: >>> >>> Unfortunately, when I added pkgconfg to my inherit list, cleaned the >>> package >>> and then re-bitbaked, I still get the same error message. I verified >>> that >>> vmime.pc is removed during the clean process (along with the other temp >>> files). >> >> Is it also removed from sysroot ? > > Yes it's removed from sysroot too. I tried to build again. Did a updatedb > and locate on vmime.pc. I can see it in a few places (including the sysroot > directory). I do the "bitbake -c clean libvmime", updatedb, and locate does > not find anything. I searched manually and can not find vmime.pc. The > recipe still fails. It's frustrating since it seems like the pkgconfig > should have fixed it. At one point, I was trying to build with autotools > and gave up that route. Maybe there is another file out there confusing the > issue? Here's the entire output of bitbake and my new recipe. > > > The recipe: > > DESCRIPTION = "VMime is a free mail library for C++" > HOMEPAGE = "http://www.vmime.org/" > DEPENDS = "libgsasl gnutls" > PR = "r1" > > SRC_URI = "${SOURCEFORGE_MIRROR}/vmime/${PN}-${PV}.tar.bz2" > SRC_URI[md5sum] = "d5b6de44f7f9ca0e4cefe597d1905605" > SRC_URI[sha256sum] = > "3b66cb76d9bc7da80ef1f271cc29d3a183b5ff8b560ef60e85ff006bffb4d1ae" > > SRC_URI += "file://sendmail_disable.patch" > > inherit scons pkgconfig > I looked into the sources of this library and it uses autotools so you need to inherit autotools as well. ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: QA issues with libvmime 2011-03-01 18:59 ` Khem Raj @ 2011-03-01 19:43 ` Nathan Harris 0 siblings, 0 replies; 7+ messages in thread From: Nathan Harris @ 2011-03-01 19:43 UTC (permalink / raw) To: Khem Raj; +Cc: openembedded-devel On 3/1/2011 1:59 PM, Khem Raj wrote: > On Tue, Mar 1, 2011 at 5:51 AM, Nathan Harris<nharris@eoimaging.com> wrote: >> On 2/28/2011 5:24 PM, Khem Raj wrote: >>> On Mon, Feb 28, 2011 at 12:48 PM, Nathan Harris<nharris@eoimaging.com> >>> wrote: >>>> Unfortunately, when I added pkgconfg to my inherit list, cleaned the >>>> package >>>> and then re-bitbaked, I still get the same error message. I verified >>>> that >>>> vmime.pc is removed during the clean process (along with the other temp >>>> files). >>> Is it also removed from sysroot ? >> Yes it's removed from sysroot too. I tried to build again. Did a updatedb >> and locate on vmime.pc. I can see it in a few places (including the sysroot >> directory). I do the "bitbake -c clean libvmime", updatedb, and locate does >> not find anything. I searched manually and can not find vmime.pc. The >> recipe still fails. It's frustrating since it seems like the pkgconfig >> should have fixed it. At one point, I was trying to build with autotools >> and gave up that route. Maybe there is another file out there confusing the >> issue? Here's the entire output of bitbake and my new recipe. >> >> >> The recipe: >> >> DESCRIPTION = "VMime is a free mail library for C++" >> HOMEPAGE = "http://www.vmime.org/" >> DEPENDS = "libgsasl gnutls" >> PR = "r1" >> >> SRC_URI = "${SOURCEFORGE_MIRROR}/vmime/${PN}-${PV}.tar.bz2" >> SRC_URI[md5sum] = "d5b6de44f7f9ca0e4cefe597d1905605" >> SRC_URI[sha256sum] = >> "3b66cb76d9bc7da80ef1f271cc29d3a183b5ff8b560ef60e85ff006bffb4d1ae" >> >> SRC_URI += "file://sendmail_disable.patch" >> >> inherit scons pkgconfig > I looked into the sources of this library and it uses autotools so you > need to inherit autotools as well. VMime can be compiled with either scons or autotools (at least under x86). I gave up trying to get autotools to work, since I got much further with scons. I could not get past the configure step with autotools. I didn't know you could inherit both scons and autotools. Here's the output with "inherit scons pkgconfig autotools": NOTE: Psyco JIT Compiler (http://psyco.sf.net) not available. Install it to increase performance. NOTE: Handling BitBake files: - (7293/7293) [100 %] Parsing of 7293 .bb files complete (6862 cached, 431 parsed). 7687 targets, 312 skipped, 2 masked, 0 errors. Build Configuration: BB_VERSION = "1.10.2" METADATA_BRANCH = "<unknown>" METADATA_REVISION = "12" TARGET_ARCH = "arm" TARGET_OS = "linux-gnueabi" MACHINE = "overo" DISTRO = "angstrom" DISTRO_VERSION = "2010.7-test-20110301" TARGET_FPU = "hard" NOTE: Resolving any missing task queue dependencies NOTE: Preparing runqueue NOTE: Executing runqueue NOTE: Running task 1 of 1 (ID: 0, /home/ppeimany/overo-oe/org.openembedded.dev/recipes/libvmime/libvmime_0.9.1.bb, do_clean) NOTE: package libvmime-0.9.1-r1: task do_clean: Started NOTE: removing ../../../tmp/work/armv7a-angstrom-linux-gnueabi/libvmime-0.9.1-r1 NOTE: removing ../../../tmp/stamps/armv7a-angstrom-linux-gnueabi/libvmime-0.9.1-r1.* NOTE: package libvmime-0.9.1-r1: task do_clean: Succeeded NOTE: Tasks Summary: Attempted 1 tasks of which 0 didn't need to be rerun and 0 failed. ppeimany@Dell-T3400:~/overo-oe/org.openembedded.dev/recipes/libvmime$ bitbake libvmime NOTE: Psyco JIT Compiler (http://psyco.sf.net) not available. Install it to increase performance. NOTE: Handling BitBake files: - (7293/7293) [100 %] Parsing of 7293 .bb files complete (6863 cached, 430 parsed). 7687 targets, 312 skipped, 2 masked, 0 errors. Build Configuration: BB_VERSION = "1.10.2" METADATA_BRANCH = "<unknown>" METADATA_REVISION = "12" TARGET_ARCH = "arm" TARGET_OS = "linux-gnueabi" MACHINE = "overo" DISTRO = "angstrom" DISTRO_VERSION = "2010.7-test-20110301" TARGET_FPU = "hard" NOTE: Resolving any missing task queue dependencies NOTE: Preparing runqueue NOTE: Executing runqueue NOTE: Running task 509 of 818 (ID: 10, /home/ppeimany/overo-oe/org.openembedded.dev/recipes/libvmime/libvmime_0.9.1.bb, do_setscene) NOTE: package libvmime-0.9.1-r1: task do_setscene: Started NOTE: package libvmime-0.9.1-r1: task do_setscene: Succeeded NOTE: Running task 510 of 818 (ID: 8, /home/ppeimany/overo-oe/org.openembedded.dev/recipes/libvmime/libvmime_0.9.1.bb, do_fetch) NOTE: package libvmime-0.9.1-r1: task do_fetch: Started NOTE: package libvmime-0.9.1-r1: task do_fetch: Succeeded NOTE: Running task 515 of 818 (ID: 0, /home/ppeimany/overo-oe/org.openembedded.dev/recipes/libvmime/libvmime_0.9.1.bb, do_unpack) NOTE: package libvmime-0.9.1-r1: task do_unpack: Started NOTE: Unpacking ../../../sources/libvmime-0.9.1.tar.bz2 to ../../../tmp/work/armv7a-angstrom-linux-gnueabi/libvmime-0.9.1-r1/ NOTE: package libvmime-0.9.1-r1: task do_unpack: Succeeded NOTE: Running task 539 of 818 (ID: 1, /home/ppeimany/overo-oe/org.openembedded.dev/recipes/libvmime/libvmime_0.9.1.bb, do_patch) NOTE: package libvmime-0.9.1-r1: task do_patch: Started NOTE: Applying patch 'sendmail_disable.patch' (files/sendmail_disable.patch) NOTE: package libvmime-0.9.1-r1: task do_patch: Succeeded NOTE: Running task 540 of 818 (ID: 11, /home/ppeimany/overo-oe/org.openembedded.dev/recipes/libvmime/libvmime_0.9.1.bb, do_configure) NOTE: package libvmime-0.9.1-r1: task do_configure: Started ERROR: TaskFailed event exception, aborting ERROR: Build of /home/ppeimany/overo-oe/org.openembedded.dev/recipes/libvmime/libvmime_0.9.1.bb do_configure failed ERROR: Task 11 (/home/ppeimany/overo-oe/org.openembedded.dev/recipes/libvmime/libvmime_0.9.1.bb, do_configure) failed with 256 ERROR: '/home/ppeimany/overo-oe/org.openembedded.dev/recipes/libvmime/libvmime_0.9.1.bb' failed ERROR: Function do_configure failed NOTE: Task failed: ('function do_configure failed', '/home/ppeimany/overo-oe/tmp/work/armv7a-angstrom-linux-gnueabi/libvmime-0.9.1-r1/temp/log.do_configure.29165') ERROR: Logfile of failure stored in: /home/ppeimany/overo-oe/tmp/work/armv7a-angstrom-linux-gnueabi/libvmime-0.9.1-r1/temp/log.do_configure.29165 Log data follows: | automake (GNU automake) 1.11.1 | Copyright (C) 2009 Free Software Foundation, Inc. | License GPLv2+: GNU GPL version 2 or later <http://gnu.org/licenses/gpl-2.0.html> | This is free software: you are free to change and redistribute it. | There is NO WARRANTY, to the extent permitted by law. | | Written by Tom Tromey <tromey@redhat.com> | and Alexandre Duret-Lutz <adl@gnu.org>. | AUTOV is 1.11 | NOTE: Executing autoreconf --verbose --install --force --exclude=autopoint -I /home/ppeimany/overo-oe/tmp/work/armv7a-angstrom-linux-gnueabi/libvmime-0.9.1-r1/libvmime-0.9.1/m4/ -I/home/ppeimany/overo-oe/tmp/sysroots/armv7a-angstrom-linux-gnueabi/usr/share/aclocal-1.11 -I /home/ppeimany/overo-oe/tmp/sysroots/armv7a-angstrom-linux-gnueabi/usr/share/aclocal | autoreconf: Entering directory `.' | autoreconf: configure.in: not using Gettext | autoreconf: running: aclocal -I /home/ppeimany/overo-oe/tmp/work/armv7a-angstrom-linux-gnueabi/libvmime-0.9.1-r1/libvmime-0.9.1/m4/ -I /home/ppeimany/overo-oe/tmp/sysroots/armv7a-angstrom-linux-gnueabi/usr/share/aclocal-1.11 -I /home/ppeimany/overo-oe/tmp/sysroots/armv7a-angstrom-linux-gnueabi/usr/share/aclocal -I /home/ppeimany/overo-oe/tmp/work/armv7a-angstrom-linux-gnueabi/libvmime-0.9.1-r1/libvmime-0.9.1/m4/ -I /home/ppeimany/overo-oe/tmp/sysroots/armv7a-angstrom-linux-gnueabi/usr/share/aclocal-1.11 -I /home/ppeimany/overo-oe/tmp/sysroots/armv7a-angstrom-linux-gnueabi/usr/share/aclocal --force | /home/ppeimany/overo-oe/tmp/sysroots/armv7a-angstrom-linux-gnueabi/usr/share/aclocal/libpcap.m4:40: warning: underquoted definition of AC_LBL_C_INIT_BEFORE_CC | /home/ppeimany/overo-oe/tmp/sysroots/armv7a-angstrom-linux-gnueabi/usr/share/aclocal/libpcap.m4:40: run info '(automake)Extending aclocal' | /home/ppeimany/overo-oe/tmp/sysroots/armv7a-angstrom-linux-gnueabi/usr/share/aclocal/libpcap.m4:40: or see http://sources.redhat.com/automake/automake.html#Extending-aclocal | autoreconf: configure.in: tracing | autoreconf: running: libtoolize --copy --force | libtoolize: putting auxiliary files in AC_CONFIG_AUX_DIR, `autotools'. | libtoolize: copying file `autotools/ltmain.sh' | libtoolize: Consider adding `AC_CONFIG_MACRO_DIR([m4])' to configure.in and | libtoolize: rerunning libtoolize, to keep the correct libtool macros in-tree. | libtoolize: Consider adding `-I m4' to ACLOCAL_AMFLAGS in Makefile.am. | /home/ppeimany/overo-oe/tmp/sysroots/armv7a-angstrom-linux-gnueabi/usr/share/aclocal/libpcap.m4:40: warning: underquoted definition of AC_LBL_C_INIT_BEFORE_CC | /home/ppeimany/overo-oe/tmp/sysroots/armv7a-angstrom-linux-gnueabi/usr/share/aclocal/libpcap.m4:40: run info '(automake)Extending aclocal' | /home/ppeimany/overo-oe/tmp/sysroots/armv7a-angstrom-linux-gnueabi/usr/share/aclocal/libpcap.m4:40: or see http://sources.redhat.com/automake/automake.html#Extending-aclocal | autoreconf: running: /home/ppeimany/overo-oe/tmp/sysroots/i686-linux/usr/bin/autoconf --include=/home/ppeimany/overo-oe/tmp/work/armv7a-angstrom-linux-gnueabi/libvmime-0.9.1-r1/libvmime-0.9.1/m4/ --include=/home/ppeimany/overo-oe/tmp/sysroots/armv7a-angstrom-linux-gnueabi/usr/share/aclocal-1.11 --include=/home/ppeimany/overo-oe/tmp/sysroots/armv7a-angstrom-linux-gnueabi/usr/share/aclocal --force --warnings=cross | autoreconf: running: /home/ppeimany/overo-oe/tmp/sysroots/i686-linux/usr/bin/autoheader --include=/home/ppeimany/overo-oe/tmp/work/armv7a-angstrom-linux-gnueabi/libvmime-0.9.1-r1/libvmime-0.9.1/m4/ --include=/home/ppeimany/overo-oe/tmp/sysroots/armv7a-angstrom-linux-gnueabi/usr/share/aclocal-1.11 --include=/home/ppeimany/overo-oe/tmp/sysroots/armv7a-angstrom-linux-gnueabi/usr/share/aclocal --force --warnings=cross | autoreconf: running: automake --foreign --add-missing --copy --force-missing --warnings=cross | automake: unknown warning category `cross' | configure.in:75: installing `autotools/compile' | configure.in:77: required file `autotools/config.rpath' not found | autoreconf: automake failed with exit status: 1 | FATAL: autoreconf execution failed. | ERROR: Function do_configure failed NOTE: package libvmime-0.9.1-r1: task do_configure: Failed ERROR: TaskFailed event exception, aborting ERROR: Build of /home/ppeimany/overo-oe/org.openembedded.dev/recipes/libvmime/libvmime_0.9.1.bb do_configure failed ERROR: Task 11 (/home/ppeimany/overo-oe/org.openembedded.dev/recipes/libvmime/libvmime_0.9.1.bb, do_configure) failed with 256 ERROR: '/home/ppeimany/overo-oe/org.openembedded.dev/recipes/libvmime/libvmime_0.9.1.bb' failed ERROR: '/home/ppeimany/overo-oe/org.openembedded.dev/recipes/libvmime/libvmime_0.9.1.bb' failed ^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2011-03-01 19:44 UTC | newest] Thread overview: 7+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2011-02-28 14:17 QA issues with libvmime Nathan Harris 2011-02-28 18:52 ` Tom Rini 2011-02-28 20:48 ` Nathan Harris 2011-02-28 22:24 ` Khem Raj 2011-03-01 13:51 ` Nathan Harris 2011-03-01 18:59 ` Khem Raj 2011-03-01 19:43 ` Nathan Harris
This is an external index of several public inboxes, see mirroring instructions on how to clone and mirror all data and code used by this external index.