From 5793d336ae63744d573821aba2f2b22000aae0c1 Mon Sep 17 00:00:00 2001 From: Mark Asselstine Date: Tue, 18 Sep 2018 16:27:31 -0400 Subject: consul-migrate: update to use go.bbclass We do not want meta-cloud-services to depend on meta-overc so we switch to use the go.bbclass which is now part of oe-core/yocto. We also capture all the licenses for all source packages which are included in consul-migrate and adjust paths to account for the different handling of go.bbclass vs. golang.bbclass. Signed-off-by: Mark Asselstine Signed-off-by: Bruce Ashfield --- recipes-connectivity/consul/consul-migrate_git.bb | 36 ++++++++++++----------- 1 file changed, 19 insertions(+), 17 deletions(-) (limited to 'recipes-connectivity') diff --git a/recipes-connectivity/consul/consul-migrate_git.bb b/recipes-connectivity/consul/consul-migrate_git.bb index 935d663..8419cb8 100644 --- a/recipes-connectivity/consul/consul-migrate_git.bb +++ b/recipes-connectivity/consul/consul-migrate_git.bb @@ -1,12 +1,14 @@ SUMMARY = "Provides data migration for Consul server nodes" HOMEPAGE = "https://github.com/hashicorp/consul-migrate" -LICENSE = "MPL-2.0" -LIC_FILES_CHKSUM = "file://LICENSE;md5=b278a92d2c1509760384428817710378" +LICENSE = "BSD & MPL-2.0 & MIT" +LIC_FILES_CHKSUM = "file://src/github.com/hashicorp/consul-migrate/LICENSE;md5=b278a92d2c1509760384428817710378" -PKG_NAME = "github.com/hashicorp/consul-migrate" -SRC_URI = "git://${PKG_NAME}.git" +GO_IMPORT = "github.com/hashicorp/consul-migrate" +SRC_URI = "git://${GO_IMPORT}.git" SRCREV = "678fb10cdeae25ab309e99e655148f0bf65f9710" +S = "${WORKDIR}/git" + SRCREV_raft = "057b893fd996696719e98b6c44649ea14968c811" SRCREV_go-metrics = "f303b03b91d770a11a39677f1d3b55da4002bbcb" SRCREV_raft-boltdb = "d1e82c1ec3f15ee991f7cc7ffd5b67ff6f5bbaee" @@ -25,18 +27,18 @@ SRC_URI += " \ git://github.com/hashicorp/go-msgpack;name=go-msgpack;destsuffix=git/src/github.com/hashicorp/go-msgpack \ " -inherit golang - -SYSROOT_PREPROCESS_FUNCS += "consul_migrate_sysroot_preprocess" +inherit go -export GOROOT="${STAGING_DIR_NATIVE}/${nonarch_libdir}/${HOST_SYS}/go" +# GO packages shouldn't rely on external libs, but this one will +# not build without this. +LDFLAGS += "-lpthread" -consul_migrate_sysroot_preprocess () { - install -d ${SYSROOT_DESTDIR}${prefix}/local/go/src/${PKG_NAME} - cp -a ${D}${prefix}/local/go/src/${PKG_NAME} ${SYSROOT_DESTDIR}${prefix}/local/go/src/$(dirname ${PKG_NAME}) - install -d ${SYSROOT_DESTDIR}${prefix}/bin - cp -a ${D}${prefix}/bin/* ${SYSROOT_DESTDIR}${prefix}/bin/ -} - -CLEANBROKEN = "1" -INSANE_SKIP_${PN} = "ldflags" +GO_INSTALL_FILTEROUT = " \ + github.com/hashicorp/raft \ + github.com/armon/go-metrics \ + github.com/hashicorp/raft-boltdb \ + github.com/hashicorp/raft-mdb \ + github.com/armon/gomdb \ + github.com/boltdb/bolt \ + github.com/hashicorp/go-msgpack \ +" -- cgit v1.2.3-54-g00ecf