mirror of
git://git.yoctoproject.org/meta-virtualization.git
synced 2025-07-19 20:59:41 +02:00
docker: drop obselete dependencies
We no longer need go-net and go-sqlite for the docker build and runtime. The upstream repos are no longer properly fetching, so we can simply drop the recipes and dependency. If they are ever needed in the future, we can revisit the upstream source for them. Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
This commit is contained in:
parent
6f1ea8bd21
commit
77e846b14f
|
@ -41,8 +41,6 @@ DEPENDS = "go-cross \
|
||||||
go-context \
|
go-context \
|
||||||
go-mux \
|
go-mux \
|
||||||
go-patricia \
|
go-patricia \
|
||||||
go-net \
|
|
||||||
go-sqlite \
|
|
||||||
go-libtrust \
|
go-libtrust \
|
||||||
go-logrus \
|
go-logrus \
|
||||||
go-fsnotify \
|
go-fsnotify \
|
||||||
|
|
|
@ -1,31 +0,0 @@
|
||||||
DESCRIPTION = "A golang registry for global request variables."
|
|
||||||
HOMEPAGE = "https://code.google.com/p/go.net"
|
|
||||||
SECTION = "devel/go"
|
|
||||||
LICENSE = "BSD-3-Clause"
|
|
||||||
LIC_FILES_CHKSUM = "file://LICENSE;md5=5d4950ecb7b26d2c5e4e7b4e0dd74707"
|
|
||||||
|
|
||||||
SRCNAME = "go.net"
|
|
||||||
|
|
||||||
PKG_NAME = "code.google.com/p/${SRCNAME}"
|
|
||||||
SRC_URI = "hg://code.google.com/p;module=go.net"
|
|
||||||
|
|
||||||
SRCREV = "84a4013f96e01fdd14b65d260a78b543e3702ee1"
|
|
||||||
|
|
||||||
SRC_URI[md5sum] = "d899f1e61fcd0d9a8b541314b4737f2c"
|
|
||||||
SRC_URI[sha256sum] = "99360e80a4cb0f969cbd6287ed37d97bb16cbde30268461cb98ef3e3c2aae259"
|
|
||||||
|
|
||||||
S = "${WORKDIR}/${SRCNAME}"
|
|
||||||
|
|
||||||
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_net_sysroot_preprocess"
|
|
||||||
|
|
||||||
go_net_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}/*"
|
|
|
@ -1,31 +0,0 @@
|
||||||
DESCRIPTION = "Trivial sqlite3 binding for Go"
|
|
||||||
HOMEPAGE = "https://code.google.com/p/gosqlite"
|
|
||||||
SECTION = "devel/go"
|
|
||||||
LICENSE = "BSD-3-Clause"
|
|
||||||
LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/BSD-3-Clause;md5=550794465ba0ec5312d6919e203a55f9"
|
|
||||||
|
|
||||||
SRCNAME = "gosqlite"
|
|
||||||
|
|
||||||
PKG_NAME = "code.google.com/p/${SRCNAME}"
|
|
||||||
SRC_URI = "hg://code.google.com/p;module=gosqlite"
|
|
||||||
|
|
||||||
SRCREV = "74691fb6f83716190870cde1b658538dd4b18eb0"
|
|
||||||
|
|
||||||
SRC_URI[md5sum] = "04bb4682d0113d5dbcd4a1dbf6b24dfc"
|
|
||||||
SRC_URI[sha256sum] = "478967fee730b85a6a4f96ace1e08fe91b6dfa6d641856bcd4574baec2f0361c"
|
|
||||||
|
|
||||||
S = "${WORKDIR}/${SRCNAME}"
|
|
||||||
|
|
||||||
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_gosqlite_sysroot_preprocess"
|
|
||||||
|
|
||||||
go_gosqlite_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}/*"
|
|
Loading…
Reference in New Issue
Block a user