summaryrefslogtreecommitdiffstats
path: root/recipes-containers/skopeo/skopeo_git.bb
diff options
context:
space:
mode:
authorBruce Ashfield <bruce.ashfield@gmail.com>2021-05-25 13:49:14 -0400
committerBruce Ashfield <bruce.ashfield@gmail.com>2021-06-04 08:43:08 -0400
commitb22003973b19f1ee03337b9a47839563c9d3d19e (patch)
treeb1467ae90f419975c2ba48436cd2936ec63e5b75 /recipes-containers/skopeo/skopeo_git.bb
parentf964aeb898a48128a0a79304ac6025e82e995131 (diff)
downloadmeta-virtualization-b22003973b19f1ee03337b9a47839563c9d3d19e.tar.gz
skope: update to 1.3.x
Updating skopeo to the 1.3.x series. Along with the version bump, we patch the Makefile to stop using gpgme-config and instead using pkg-config, since OE taints gpgme-config and the build will break if we call it directly. Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Diffstat (limited to 'recipes-containers/skopeo/skopeo_git.bb')
-rw-r--r--recipes-containers/skopeo/skopeo_git.bb9
1 files changed, 6 insertions, 3 deletions
diff --git a/recipes-containers/skopeo/skopeo_git.bb b/recipes-containers/skopeo/skopeo_git.bb
index 05baefb3..2c292463 100644
--- a/recipes-containers/skopeo/skopeo_git.bb
+++ b/recipes-containers/skopeo/skopeo_git.bb
@@ -20,13 +20,14 @@ RDEPENDS_${PN} = " \
20" 20"
21 21
22SRC_URI = " \ 22SRC_URI = " \
23 git://github.com/containers/skopeo;branch=release-1.2 \ 23 git://github.com/containers/skopeo;branch=master \
24 file://0001-Makefile-use-pkg-config-instead-of-gpgme-config.patch \
24 file://storage.conf \ 25 file://storage.conf \
25 file://registries.conf \ 26 file://registries.conf \
26" 27"
27 28
28SRCREV = "e7880c4a8991966f16e367f085d42375ad70197e" 29SRCREV = "8efffce8befc2de87670ba75d6c86ada61e869fd"
29PV = "v1.2.3-dev+git${SRCPV}" 30PV = "v1.3.0+git${SRCPV}"
30GO_IMPORT = "import" 31GO_IMPORT = "import"
31 32
32S = "${WORKDIR}/git" 33S = "${WORKDIR}/git"
@@ -63,6 +64,8 @@ do_compile() {
63 export CGO_LDFLAGS="${BUILDSDK_LDFLAGS} --sysroot=${STAGING_DIR_TARGET}" 64 export CGO_LDFLAGS="${BUILDSDK_LDFLAGS} --sysroot=${STAGING_DIR_TARGET}"
64 cd ${S}/src/import 65 cd ${S}/src/import
65 66
67 export GO111MODULE=off
68
66 oe_runmake bin/skopeo 69 oe_runmake bin/skopeo
67} 70}
68 71