mirror of
git://git.yoctoproject.org/meta-virtualization.git
synced 2025-07-19 12:50:22 +02:00

Uprev docker to 1.6.2 go-capability is upreved to a later git commit go-dbus is upreved to version 2 go-distribution-digest is added as a new dependency. Only the digest part of go-distribution is needed/kept here, hence go-distribution-digest go-logrus is upreved to 0.7.1 Remove PR since it's no longer used Signed-off-by: Amy Fong <amy.fong@windriver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
30 lines
911 B
BlitzBasic
30 lines
911 B
BlitzBasic
DESCRIPTION = "A generic patricia trie (also called radix tree) implemented in Go (Golang)"
|
|
HOMEPAGE = "https://github.com/gorilla/context"
|
|
SECTION = "devel/go"
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=9949b99212edd6b1e24ce702376c3baf"
|
|
|
|
SRCNAME = "go-patricia"
|
|
|
|
PKG_NAME = "github.com/tchap/${SRCNAME}"
|
|
SRC_URI = "git://${PKG_NAME}.git"
|
|
|
|
SRCREV = "f64d0a63cd3363481c898faa9339de04d12213f9"
|
|
PV = "1.0.1+git${SRCPV}"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
do_install() {
|
|
install -d ${D}${prefix}/local/go/src/${PKG_NAME}
|
|
cp -r ${S}/* ${D}${prefix}/local/go/src/${PKG_NAME}/
|
|
}
|
|
|
|
SYSROOT_PREPROCESS_FUNCS += "go_patricia_sysroot_preprocess"
|
|
|
|
go_patricia_sysroot_preprocess () {
|
|
install -d ${SYSROOT_DESTDIR}${prefix}/local/go/src/${PKG_NAME}
|
|
cp -r ${D}${prefix}/local/go/src/${PKG_NAME} ${SYSROOT_DESTDIR}${prefix}/local/go/src/$(dirname ${PKG_NAME})
|
|
}
|
|
|
|
FILES_${PN} += "${prefix}/local/go/src/${PKG_NAME}/*"
|