From: Koen Kooi Date: Sat, 31 Mar 2012 22:06:44 +0000 (+0200) Subject: buildhistory: make seperate commits for every changed top level entry in the buildhis... X-Git-Tag: 2015-4~11094 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=fba198ac7efe476a25c5761878ef2fcee97bf9f1;p=openembedded-core.git buildhistory: make seperate commits for every changed top level entry in the buildhistory dir This seperates out image changes from package changes making the image diffs a lot easier to read. Signed-off-by: Koen Kooi Signed-off-by: Richard Purdie --- diff --git a/meta/classes/buildhistory.bbclass b/meta/classes/buildhistory.bbclass index 2224340728..8d5b0963f8 100644 --- a/meta/classes/buildhistory.bbclass +++ b/meta/classes/buildhistory.bbclass @@ -401,7 +401,10 @@ buildhistory_commit() { if [ "$repostatus" != "" ] ; then git add ${BUILDHISTORY_DIR}/* HOSTNAME=`hostname 2>/dev/null || echo unknown` - git commit ${BUILDHISTORY_DIR}/ -m "Build ${BUILDNAME} of ${DISTRO} ${DISTRO_VERSION} for machine ${MACHINE} on $HOSTNAME" --author "${BUILDHISTORY_COMMIT_AUTHOR}" > /dev/null + # porcelain output looks like "?? packages/foo/bar" + for entry in `echo $repostatus | awk '{print $2}' | awk -F/ '{print $1}' | sort | uniq` ; do + git commit ${BUILDHISTORY_DIR}/$entry -m "$entry: Build ${BUILDNAME} of ${DISTRO} ${DISTRO_VERSION} for machine ${MACHINE} on $HOSTNAME" --author "${BUILDHISTORY_COMMIT_AUTHOR}" > /dev/null + done if [ "${BUILDHISTORY_PUSH_REPO}" != "" ] ; then git push -q ${BUILDHISTORY_PUSH_REPO} fi