diff options
author | Laurentiu Palcu <laurentiu.palcu@intel.com> | 2014-03-05 12:02:51 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-03-11 20:20:41 -0700 |
commit | 570baf4921a5b34cc97834e670b143073d136dea (patch) | |
tree | 85c267832b4ea766aa40436b6b6f297bedef520e /meta | |
parent | b457e40fc69cc6503dc566f16495f03606e5333b (diff) | |
download | openembedded-core-570baf4921a5b34cc97834e670b143073d136dea.tar.gz openembedded-core-570baf4921a5b34cc97834e670b143073d136dea.tar.bz2 openembedded-core-570baf4921a5b34cc97834e670b143073d136dea.zip |
buildhistory.bbclass: Fix dependency files creation
Call the new python routines.
[YOCTO #5904]
Signed-off-by: Laurentiu Palcu <laurentiu.palcu@intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/classes/buildhistory.bbclass | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/meta/classes/buildhistory.bbclass b/meta/classes/buildhistory.bbclass index 1a0e35d58b..5d0a229f99 100644 --- a/meta/classes/buildhistory.bbclass +++ b/meta/classes/buildhistory.bbclass @@ -321,6 +321,12 @@ python buildhistory_list_installed() { with open(pkgs_list_file, 'w') as pkgs_list: pkgs_list.write(list_installed_packages(d, 'file')) + + pkgs_deps_file = os.path.join(d.getVar('WORKDIR', True), + "bh_installed_pkgs_deps.txt") + + with open(pkgs_deps_file, 'w') as pkgs_deps: + pkgs_deps.write(list_installed_packages(d, 'deps')) } @@ -340,7 +346,8 @@ buildhistory_get_installed() { # Produce dependency graph # First, quote each name to handle characters that cause issues for dot - rootfs_list_installed_depends | sed 's:\([^| ]*\):"\1":g' > $1/depends.tmp + cat ${WORKDIR}/bh_installed_pkgs_deps.txt | sed 's:\([^| ]*\):"\1":g' > $1/depends.tmp && \ + rm ${WORKDIR}/bh_installed_pkgs_deps.txt # Change delimiter from pipe to -> and set style for recommend lines sed -i -e 's:|: -> :' -e 's:"\[REC\]":[style=dotted]:' -e 's:$:;:' $1/depends.tmp # Add header, sorted and de-duped contents and footer and then delete the temp file |