diff options
-rw-r--r-- | classes/local-sources.bbclass | 81 | ||||
-rw-r--r-- | conf/local.conf.sample | 1 | ||||
-rwxr-xr-x | scripts/setup-environment.sh | 8 |
3 files changed, 90 insertions, 0 deletions
diff --git a/classes/local-sources.bbclass b/classes/local-sources.bbclass new file mode 100644 index 0000000..adb484d --- /dev/null +++ b/classes/local-sources.bbclass | |||
@@ -0,0 +1,81 @@ | |||
1 | ############################################################################# | ||
2 | ## | ||
3 | ## Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). | ||
4 | ## | ||
5 | ## This file is part of the Qt Enterprise Embedded Scripts of the Qt | ||
6 | ## framework. | ||
7 | ## | ||
8 | ## $QT_BEGIN_LICENSE$ | ||
9 | ## Commercial License Usage Only | ||
10 | ## Licensees holding valid commercial Qt license agreements with Digia | ||
11 | ## with an appropriate addendum covering the Qt Enterprise Embedded Scripts, | ||
12 | ## may use this file in accordance with the terms contained in said license | ||
13 | ## agreement. | ||
14 | ## | ||
15 | ## For further information use the contact form at | ||
16 | ## http://qt.digia.com/contact-us. | ||
17 | ## | ||
18 | ## | ||
19 | ## $QT_END_LICENSE$ | ||
20 | ## | ||
21 | ############################################################################# | ||
22 | |||
23 | python do_fetch () { | ||
24 | src_uri = (d.getVar('SRC_URI', True) or "").split() | ||
25 | if len(src_uri) == 0: | ||
26 | return | ||
27 | |||
28 | sdk_path = d.getVar('QT_SDK_PATH', True) or "" | ||
29 | if len(sdk_path) != 0: | ||
30 | uris = list(src_uri); | ||
31 | for url in uris: | ||
32 | ud = list(bb.fetch2.decodeurl(url)) | ||
33 | if ("local-uri" in ud[5]): | ||
34 | src_uri.remove(url) | ||
35 | |||
36 | try: | ||
37 | fetcher = bb.fetch2.Fetch(src_uri, d) | ||
38 | fetcher.download() | ||
39 | except bb.fetch2.BBFetchException as e: | ||
40 | raise bb.build.FuncFailed(e) | ||
41 | } | ||
42 | |||
43 | python do_unpack () { | ||
44 | src_uri = (d.getVar('SRC_URI', True) or "").split() | ||
45 | if len(src_uri) == 0: | ||
46 | return | ||
47 | |||
48 | rootdir = d.getVar('WORKDIR', True) | ||
49 | |||
50 | sdk_path = d.getVar('QT_SDK_PATH', True) or "" | ||
51 | if len(sdk_path) != 0: | ||
52 | uris = list(src_uri); | ||
53 | for url in uris: | ||
54 | ud = list(bb.fetch2.decodeurl(url)) | ||
55 | if ("local-uri" in ud[5]): | ||
56 | unpack_local_uri(ud, d) | ||
57 | src_uri.remove(url) | ||
58 | |||
59 | try: | ||
60 | fetcher = bb.fetch2.Fetch(src_uri, d) | ||
61 | fetcher.unpack(rootdir) | ||
62 | except bb.fetch2.BBFetchException as e: | ||
63 | raise bb.build.FuncFailed(e) | ||
64 | } | ||
65 | |||
66 | def unpack_local_uri(ud, d): | ||
67 | import subprocess | ||
68 | rootdir = d.getVar('WORKDIR', True) | ||
69 | sdk_path = d.getVar('QT_SDK_PATH', True) | ||
70 | |||
71 | destdir = os.path.join(rootdir, ud[5].get("destsuffix", "git")) | ||
72 | srcdir = os.path.join(sdk_path, ud[5].get("local-uri")) | ||
73 | cmd = "cp -vrf %s %s" % (srcdir, destdir) | ||
74 | |||
75 | if os.path.exists(destdir): | ||
76 | bb.utils.prunedir(destdir) | ||
77 | |||
78 | ret = subprocess.call(cmd, shell=True) | ||
79 | |||
80 | if ret != 0: | ||
81 | raise bb.fetch.UnpackError("Unpack command %s failed with return value %s" % (cmd, ret), ud) | ||
diff --git a/conf/local.conf.sample b/conf/local.conf.sample index b5986c4..8ceb5cc 100644 --- a/conf/local.conf.sample +++ b/conf/local.conf.sample | |||
@@ -280,3 +280,4 @@ INHERIT += "rm_work" | |||
280 | ACCEPT_FSL_EULA = "1" | 280 | ACCEPT_FSL_EULA = "1" |
281 | LICENSE_FLAGS_WHITELIST = "commercial" | 281 | LICENSE_FLAGS_WHITELIST = "commercial" |
282 | 282 | ||
283 | QT_SDK_PATH = "" | ||
diff --git a/scripts/setup-environment.sh b/scripts/setup-environment.sh index 92e75aa..cc15776 100755 --- a/scripts/setup-environment.sh +++ b/scripts/setup-environment.sh | |||
@@ -75,11 +75,19 @@ if [ ! -f ${PWD}/${BUILDDIR}/conf/bblayers.conf ]; then | |||
75 | 75 | ||
76 | mkdir -p ${PWD}/${BUILDDIR}/conf | 76 | mkdir -p ${PWD}/${BUILDDIR}/conf |
77 | cp ${PWD}/sources/meta-b2qt/conf/${LAYERSCONF} ${PWD}/${BUILDDIR}/conf/bblayers.conf | 77 | cp ${PWD}/sources/meta-b2qt/conf/${LAYERSCONF} ${PWD}/${BUILDDIR}/conf/bblayers.conf |
78 | |||
79 | if [ ! -d ${PWD}/sources/meta-b2qt/.git ]; then | ||
80 | QT_SDK_PATH=$(readlink -f ${PWD}/sources/meta-b2qt/../../) | ||
81 | fi | ||
78 | fi | 82 | fi |
79 | 83 | ||
80 | export TEMPLATECONF="${PWD}/sources/meta-b2qt/conf" | 84 | export TEMPLATECONF="${PWD}/sources/meta-b2qt/conf" |
81 | . sources/poky/oe-init-build-env ${BUILDDIR} | 85 | . sources/poky/oe-init-build-env ${BUILDDIR} |
82 | 86 | ||
87 | # use sources from Qt SDK if that is available | ||
88 | sed -i -e "/QT_SDK_PATH/s:\"\":\"${QT_SDK_PATH}\":" conf/local.conf | ||
89 | |||
90 | unset QT_SDK_PATH | ||
83 | unset BUILDDIR | 91 | unset BUILDDIR |
84 | unset TEMPLATECONF | 92 | unset TEMPLATECONF |
85 | unset LAYERSCONF | 93 | unset LAYERSCONF |