Hello, this email is a notification from the Auto Upgrade Helper that the automatic attempt to upgrade the recipe *cracklib* to *2.9.9* has Failed(do_compile).
Detailed error information:
do_compile failed
Next steps:
- apply the patch: git am 0001-cracklib-upgrade-2.9.8-2.9.9.patch
- check the changes to upstream patches and summarize them in the commit
message,
- compile an image that contains the package
- perform some basic sanity tests
- amend the patch and sign it off: git commit -s --reset-author --amend
- send it to the appropriate mailing list
Alternatively, if you believe the recipe should not be upgraded at this time,
you can fill RECIPE_NO_UPDATE_REASON in respective recipe file so that
automatic upgrades would no longer be attempted.
Please review the attached files for further information and build/update
failures.
Any problem please file a bug at
https://bugzilla.yoctoproject.org/enter_bug.cgi?product=Automated%20Update%20Handler
Regards,
The Upgrade Helper
Loading cache...done.
Loaded 1790 entries from dependency cache.
Parsing recipes...done.
Parsing of 896 .bb files complete (895 cached, 1 parsed). 1790 targets, 39
skipped, 0 masked, 0 errors.
Removing 1 recipes from the core2-32 sysroot...done.
Removing 1 recipes from the qemux86 sysroot...done.
NOTE: Resolving any missing task queue dependencies
Build Configuration:
BB_VERSION = "2.3.1"
BUILD_SYS = "x86_64-linux"
NATIVELSBSTRING = "universal"
TARGET_SYS = "i686-poky-linux"
MACHINE = "qemux86"
DISTRO = "poky"
DISTRO_VERSION = "4.1+snapshot-044ee69054b731b22aeb1010539eaaecd5ef8379"
TUNE_FEATURES = "m32 core2"
TARGET_FPU = ""
meta
meta-poky
meta-yocto-bsp =
"tmp-auh-upgrades:044ee69054b731b22aeb1010539eaaecd5ef8379"
workspace = "master:37b5d544d34c9caaf70def0a29dfb0cf896dc1b7"
Initialising tasks...done.
Sstate summary: Wanted 29 Local 20 Mirrors 0 Missed 9 Current 135 (68% match,
94% complete)
NOTE: Executing Tasks
NOTE: Setscene tasks completed
NOTE: Running task 630 of 679
(/home/pokybuild/yocto-worker/auh/build/build/poky/meta/recipes-extended/cracklib/cracklib_2.9.9.bb:do_fetch)
NOTE: Running task 631 of 679
(virtual:native:/home/pokybuild/yocto-worker/auh/build/build/poky/meta/recipes-extended/cracklib/cracklib_2.9.9.bb:do_fetch)
NOTE: recipe cracklib-2.9.9-r0: task do_fetch: Started
NOTE: recipe cracklib-native-2.9.9-r0: task do_fetch: Started
NOTE: recipe cracklib-2.9.9-r0: task do_fetch: Succeeded
NOTE: Running task 658 of 679
(/home/pokybuild/yocto-worker/auh/build/build/poky/meta/recipes-extended/cracklib/cracklib_2.9.9.bb:do_unpack)
NOTE: recipe cracklib-native-2.9.9-r0: task do_fetch: Succeeded
NOTE: Running task 659 of 679
(virtual:native:/home/pokybuild/yocto-worker/auh/build/build/poky/meta/recipes-extended/cracklib/cracklib_2.9.9.bb:do_unpack)
NOTE: Running task 660 of 679
(virtual:native:/home/pokybuild/yocto-worker/auh/build/build/poky/meta/recipes-extended/cracklib/cracklib_2.9.9.bb:do_prepare_recipe_sysroot)
NOTE: recipe cracklib-2.9.9-r0: task do_unpack: Started
NOTE: recipe cracklib-native-2.9.9-r0: task do_unpack: Started
NOTE: recipe cracklib-native-2.9.9-r0: task do_prepare_recipe_sysroot: Started
NOTE: recipe cracklib-native-2.9.9-r0: task do_prepare_recipe_sysroot: Succeeded
NOTE: recipe cracklib-2.9.9-r0: task do_unpack: Succeeded
NOTE: Running task 661 of 679
(/home/pokybuild/yocto-worker/auh/build/build/poky/meta/recipes-extended/cracklib/cracklib_2.9.9.bb:do_patch)
NOTE: recipe cracklib-2.9.9-r0: task do_patch: Started
NOTE: recipe cracklib-2.9.9-r0: task do_patch: Failed
NOTE: recipe cracklib-native-2.9.9-r0: task do_unpack: Succeeded
NOTE: Tasks Summary: Attempted 661 tasks of which 655 didn't need to be rerun
and 1 failed.
NOTE: Writing buildhistory
NOTE: Writing buildhistory took: 1 seconds
Summary: 1 task failed:
/home/pokybuild/yocto-worker/auh/build/build/poky/meta/recipes-extended/cracklib/cracklib_2.9.9.bb:do_patch
Summary: There was 1 ERROR message, returning a non-zero exit code.
ERROR: cracklib-2.9.9-r0 do_patch: Applying patch
'0001-packlib.c-support-dictionary-byte-order-dependent.patch' on target
directory
'/home/pokybuild/yocto-worker/auh/build/build/build/tmp/work/core2-32-poky-linux/cracklib/2.9.9-r0/git/src'
CmdError('quilt --quiltrc
/home/pokybuild/yocto-worker/auh/build/build/build/tmp/work/core2-32-poky-linux/cracklib/2.9.9-r0/recipe-sysroot-native/etc/quiltrc
push', 0, "stdout: Applying patch
0001-packlib.c-support-dictionary-byte-order-dependent.patch
can't find file to patch at input line 33
Perhaps you used the wrong -p or --strip option?
The text leading up to this was:
--------------------------
|From ba61a0589e5733da84c0dea2754f1cf203d54a28 Mon Sep 17 00:00:00 2001
|From: Lei Maohui <[email protected]>
|Date: Tue, 9 Jun 2015 11:11:48 +0900
|Subject: [PATCH] packlib.c: support dictionary byte order dependent
|
|The previous dict files are NOT byte-order independent, in fact they are
|probably ARCHITECTURE SPECIFIC.
|Create the dict files in big endian, and convert to host endian while
|load them. This could fix the endian issue on multiple platform.
|
|Signed-off-by: Hongxu Jia <[email protected]>
|Upstream-Status: Submitted [https://github.com/cracklib/cracklib/pull/41]
|
|We can't use the endian.h, htobe* and be*toh functions because they are
|not available on older versions of glibc, such as that found in RHEL
|5.9.
|
|Change to checking endian and directly calling bswap_* as defined in
|byteswap.h.
|
|Signed-off-by: Mark Hatle <[email protected]>
|
|Signed-off-by: Lei Maohui <[email protected]>
|
|---
| src/lib/packlib.c | 214 +++++++++++++++++++++++++++++++++++++++++++++-
| 1 file changed, 210 insertions(+), 4 deletions(-)
|
|diff --git a/src/lib/packlib.c b/src/lib/packlib.c
|index 9396e1d..d0bb181 100644
|--- a/src/lib/packlib.c
|+++ b/src/lib/packlib.c
--------------------------
No file to patch. Skipping patch.
13 out of 13 hunks ignored
Patch 0001-packlib.c-support-dictionary-byte-order-dependent.patch does not
apply (enforce with -f)
stderr: ")
ERROR: Logfile of failure stored in:
/home/pokybuild/yocto-worker/auh/build/build/build/tmp/work/core2-32-poky-linux/cracklib/2.9.9-r0/temp/log.do_patch.178553
ERROR: Task
(/home/pokybuild/yocto-worker/auh/build/build/poky/meta/recipes-extended/cracklib/cracklib_2.9.9.bb:do_patch)
failed with exit code '1'
0001-cracklib-upgrade-2.9.8-2.9.9.patch
Description: Binary data
-=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#178606): https://lists.openembedded.org/g/openembedded-core/message/178606 Mute This Topic: https://lists.openembedded.org/mt/97630736/21656 Group Owner: [email protected] Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub [[email protected]] -=-=-=-=-=-=-=-=-=-=-=-
