diff options
author | Damien Lespiau <damien.lespiau@intel.com> | 2009-08-25 15:08:15 +0100 |
---|---|---|
committer | Damien Lespiau <damien.lespiau@intel.com> | 2009-08-26 00:44:41 +0100 |
commit | 65bf6c90e63b67732bda8b4a1c786a605f61c611 (patch) | |
tree | 2119edad348a3e523c874f92b3d28a85b122ef85 /meta | |
parent | c2b4308119d32c07e9c7a120e06b78afd26ff58c (diff) | |
download | poky-65bf6c90e63b67732bda8b4a1c786a605f61c611.tar.gz |
base.bbclass: packages pulling a mercurial tree should depend on mercurial
As we don't provide a mercurial-native package (yet) let's assume the
build machine has it installed and check (sanity.bbclass) if it's the
case.
Signed-off-by: Damien Lespiau <damien.lespiau@intel.com>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/classes/base.bbclass | 7 | ||||
-rw-r--r-- | meta/classes/sanity.bbclass | 2 | ||||
-rw-r--r-- | meta/conf/bitbake.conf | 4 |
3 files changed, 12 insertions, 1 deletions
diff --git a/meta/classes/base.bbclass b/meta/classes/base.bbclass index 4f1e2dd788..4f57c3ff4d 100644 --- a/meta/classes/base.bbclass +++ b/meta/classes/base.bbclass | |||
@@ -1008,6 +1008,13 @@ def base_after_parse(d): | |||
1008 | depends = depends + " git-native:do_populate_staging" | 1008 | depends = depends + " git-native:do_populate_staging" |
1009 | bb.data.setVarFlag('do_fetch', 'depends', depends, d) | 1009 | bb.data.setVarFlag('do_fetch', 'depends', depends, d) |
1010 | 1010 | ||
1011 | # Mercurial packages should DEPEND on mercurial-native | ||
1012 | srcuri = bb.data.getVar('SRC_URI', d, 1) | ||
1013 | if "hg://" in srcuri: | ||
1014 | depends = bb.data.getVarFlag('do_fetch', 'depends', d) or "" | ||
1015 | depends = depends + " mercurial-native:do_populate_staging" | ||
1016 | bb.data.setVarFlag('do_fetch', 'depends', depends, d) | ||
1017 | |||
1011 | # OSC packages should DEPEND on osc-native | 1018 | # OSC packages should DEPEND on osc-native |
1012 | srcuri = bb.data.getVar('SRC_URI', d, 1) | 1019 | srcuri = bb.data.getVar('SRC_URI', d, 1) |
1013 | if "osc://" in srcuri: | 1020 | if "osc://" in srcuri: |
diff --git a/meta/classes/sanity.bbclass b/meta/classes/sanity.bbclass index 5cf0677957..e11bdd2218 100644 --- a/meta/classes/sanity.bbclass +++ b/meta/classes/sanity.bbclass | |||
@@ -83,7 +83,7 @@ def check_sanity(e): | |||
83 | if not check_app_exists('${BUILD_PREFIX}g++', e.data): | 83 | if not check_app_exists('${BUILD_PREFIX}g++', e.data): |
84 | missing = missing + "C++ Compiler (%sg++)," % data.getVar("BUILD_PREFIX", e.data, True) | 84 | missing = missing + "C++ Compiler (%sg++)," % data.getVar("BUILD_PREFIX", e.data, True) |
85 | 85 | ||
86 | required_utilities = "patch help2man diffstat texi2html makeinfo cvs svn bzip2 tar gzip gawk" | 86 | required_utilities = "patch help2man diffstat texi2html makeinfo cvs svn bzip2 tar gzip gawk hg" |
87 | 87 | ||
88 | # qemu-native needs gcc 3.x | 88 | # qemu-native needs gcc 3.x |
89 | if "qemu-native" not in assume_provided and "gcc3-native" in assume_provided: | 89 | if "qemu-native" not in assume_provided and "gcc3-native" in assume_provided: |
diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf index 7f64b03aac..59aa2efea2 100644 --- a/meta/conf/bitbake.conf +++ b/meta/conf/bitbake.conf | |||
@@ -119,11 +119,15 @@ DATETIME = "${DATE}${TIME}" | |||
119 | 119 | ||
120 | # python-native should be here but python relies on building | 120 | # python-native should be here but python relies on building |
121 | # its own in staging | 121 | # its own in staging |
122 | # mercurial-native is required to pull mercurial repositories (hg://...) | ||
123 | # we don't have it yet in the recipies so let's assume it's provided by | ||
124 | # the underlying OS | ||
122 | ASSUME_PROVIDED = "\ | 125 | ASSUME_PROVIDED = "\ |
123 | bzip2-native \ | 126 | bzip2-native \ |
124 | cvs-native \ | 127 | cvs-native \ |
125 | grep-native \ | 128 | grep-native \ |
126 | diffstat-native \ | 129 | diffstat-native \ |
130 | mercurial-native \ | ||
127 | patch-native \ | 131 | patch-native \ |
128 | perl-native-runtime \ | 132 | perl-native-runtime \ |
129 | python-native-runtime \ | 133 | python-native-runtime \ |