diff options
author | Bruce Ashfield <bruce.ashfield@windriver.com> | 2016-07-26 14:03:46 -0400 |
---|---|---|
committer | Bruce Ashfield <bruce.ashfield@windriver.com> | 2016-07-27 00:16:53 -0400 |
commit | 1fd5a596ed72bb187fdcc1ec614e7a3482741f10 (patch) | |
tree | 10ed5ad3e5a852067ebae6ea57d3b90f79020a6a /recipes-containers/runc | |
parent | 7d41ad142db239fd7280c51b369f906e255619b1 (diff) | |
download | meta-virtualization-1fd5a596ed72bb187fdcc1ec614e7a3482741f10.tar.gz |
containers: uprev docker (1.12.0), runc (1.0.0-rc) and containerd (0.2.2)
Bumping the version of docker and dependencies. This gets us closer to
runc 1.0, which is the foundation for future OCI efforts.
Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
Diffstat (limited to 'recipes-containers/runc')
-rw-r--r-- | recipes-containers/runc/runc_git.bb | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/recipes-containers/runc/runc_git.bb b/recipes-containers/runc/runc_git.bb index 955ea93c..905a751b 100644 --- a/recipes-containers/runc/runc_git.bb +++ b/recipes-containers/runc/runc_git.bb | |||
@@ -4,10 +4,9 @@ DESCRIPTION = "runc is a CLI tool for spawning and running containers according | |||
4 | 4 | ||
5 | # Note: this rev is before the required protocol field, update when all components | 5 | # Note: this rev is before the required protocol field, update when all components |
6 | # have been updated to match. | 6 | # have been updated to match. |
7 | SRCREV = "baf6536d6259209c3edfa2b22237af82942d3dfa" | 7 | SRCREV = "1cdaa709f151b61cee2bdaa09d8e5d2b58a8ba72" |
8 | SRC_URI = "\ | 8 | SRC_URI = "\ |
9 | git://github.com/opencontainers/runc;branch=master \ | 9 | git://github.com/opencontainers/runc;branch=master \ |
10 | file://0001-nsexec-fix-build-against-musl-libc.patch \ | ||
11 | " | 10 | " |
12 | 11 | ||
13 | # Apache-2.0 for containerd | 12 | # Apache-2.0 for containerd |
@@ -16,7 +15,7 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=435b266b3899aa8a959f17d41c56def8" | |||
16 | 15 | ||
17 | S = "${WORKDIR}/git" | 16 | S = "${WORKDIR}/git" |
18 | 17 | ||
19 | RUNC_VERSION = "0.1.1" | 18 | RUNC_VERSION = "1.0.0-rc1" |
20 | PV = "${RUNC_VERSION}+git${SRCREV}" | 19 | PV = "${RUNC_VERSION}+git${SRCREV}" |
21 | 20 | ||
22 | DEPENDS = "go-cross \ | 21 | DEPENDS = "go-cross \ |
@@ -49,10 +48,10 @@ do_compile() { | |||
49 | # Pass the needed cflags/ldflags so that cgo | 48 | # Pass the needed cflags/ldflags so that cgo |
50 | # can find the needed headers files and libraries | 49 | # can find the needed headers files and libraries |
51 | export CGO_ENABLED="1" | 50 | export CGO_ENABLED="1" |
51 | export CGO_CFLAGS="${CFLAGS} --sysroot=${STAGING_DIR_TARGET}" | ||
52 | export CGO_LDFLAGS="${LDFLAGS} --sysroot=${STAGING_DIR_TARGET}" | ||
52 | export CFLAGS="" | 53 | export CFLAGS="" |
53 | export LDFLAGS="" | 54 | export LDFLAGS="" |
54 | export CGO_CFLAGS="${BUILDSDK_CFLAGS} --sysroot=${STAGING_DIR_TARGET}" | ||
55 | export CGO_LDFLAGS="${BUILDSDK_LDFLAGS} --sysroot=${STAGING_DIR_TARGET}" | ||
56 | 55 | ||
57 | oe_runmake static | 56 | oe_runmake static |
58 | } | 57 | } |