diff options
| author | Bruce Ashfield <bruce.ashfield@gmail.com> | 2026-03-26 14:15:15 +0000 |
|---|---|---|
| committer | Bruce Ashfield <bruce.ashfield@gmail.com> | 2026-03-26 14:15:15 +0000 |
| commit | ce4a0ce9006998863a7cb50ac2eee67d06ba3c08 (patch) | |
| tree | 977eebe3327f9cecceb35b9e27ee4b2f0c9f7bd9 | |
| parent | 8c3735d0022dde4650b01f449cd4acf55b8d294b (diff) | |
| download | meta-virtualization-ce4a0ce9006998863a7cb50ac2eee67d06ba3c08.tar.gz | |
go recipes: remove dead and archived projects
Remove Go library recipes for projects that are archived, deprecated,
or otherwise dead upstream:
- go-capability: No releases ever published, community moved to
github.com/moby/sys/capability
- go-context: Superseded by Go stdlib context.Context (since Go 1.7)
- go-libtrust: Archived on GitHub, no releases ever published
- go-metalinter: Archived and deprecated since 2019, replaced by
golangci-lint
- go-pty: Archived since 2020, moved to github.com/creack/pty
None of these are referenced as build dependencies by any recipe in
meta-virtualization. External consumers should migrate to the
upstream-recommended replacements.
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
| -rw-r--r-- | recipes-devtools/go/go-capability_git.bb | 29 | ||||
| -rw-r--r-- | recipes-devtools/go/go-context_git.bb | 34 | ||||
| -rw-r--r-- | recipes-devtools/go/go-libtrust_git.bb | 29 | ||||
| -rw-r--r-- | recipes-devtools/go/go-metalinter_git.bb | 22 | ||||
| -rw-r--r-- | recipes-devtools/go/go-pty_git.bb | 28 |
5 files changed, 0 insertions, 142 deletions
diff --git a/recipes-devtools/go/go-capability_git.bb b/recipes-devtools/go/go-capability_git.bb deleted file mode 100644 index b6146519..00000000 --- a/recipes-devtools/go/go-capability_git.bb +++ /dev/null | |||
| @@ -1,29 +0,0 @@ | |||
| 1 | DESCRIPTION = "Utilities for manipulating POSIX capabilities in Go." | ||
| 2 | HOMEPAGE = "https://github.com/syndtr/gocapability" | ||
| 3 | SECTION = "devel/go" | ||
| 4 | LICENSE = "BSD-2-Clause" | ||
| 5 | LIC_FILES_CHKSUM = "file://LICENSE;md5=a7304f5073e7be4ba7bffabbf9f2bbca" | ||
| 6 | |||
| 7 | SRCNAME = "gocapability" | ||
| 8 | |||
| 9 | PKG_NAME = "github.com/syndtr/${SRCNAME}" | ||
| 10 | SRC_URI = "git://${PKG_NAME}.git;branch=master;protocol=https" | ||
| 11 | |||
| 12 | SRCREV = "2c00daeb6c3b45114c80ac44119e7b8801fdd852" | ||
| 13 | PV = "0.0+git" | ||
| 14 | |||
| 15 | inherit meta-virt-depreciated-warning | ||
| 16 | |||
| 17 | do_install() { | ||
| 18 | install -d ${D}${prefix}/local/go/src/${PKG_NAME} | ||
| 19 | cp -r ${S}/* ${D}${prefix}/local/go/src/${PKG_NAME}/ | ||
| 20 | } | ||
| 21 | |||
| 22 | SYSROOT_PREPROCESS_FUNCS += "go_capability_sysroot_preprocess" | ||
| 23 | |||
| 24 | go_capability_sysroot_preprocess () { | ||
| 25 | install -d ${SYSROOT_DESTDIR}${prefix}/local/go/src/${PKG_NAME} | ||
| 26 | cp -r ${D}${prefix}/local/go/src/${PKG_NAME} ${SYSROOT_DESTDIR}${prefix}/local/go/src/$(dirname ${PKG_NAME}) | ||
| 27 | } | ||
| 28 | |||
| 29 | FILES:${PN} += "${prefix}/local/go/src/${PKG_NAME}/*" | ||
diff --git a/recipes-devtools/go/go-context_git.bb b/recipes-devtools/go/go-context_git.bb deleted file mode 100644 index 2a101995..00000000 --- a/recipes-devtools/go/go-context_git.bb +++ /dev/null | |||
| @@ -1,34 +0,0 @@ | |||
| 1 | DESCRIPTION = "A golang registry for global request variables." | ||
| 2 | HOMEPAGE = "https://github.com/gorilla/context" | ||
| 3 | SECTION = "devel/go" | ||
| 4 | LICENSE = "BSD-3-Clause" | ||
| 5 | LIC_FILES_CHKSUM = "file://LICENSE;md5=c30eee78985cf2584cded5f89ba3d787" | ||
| 6 | |||
| 7 | SRCNAME = "context" | ||
| 8 | |||
| 9 | PKG_NAME = "github.com/gorilla/${SRCNAME}" | ||
| 10 | SRC_URI = "git://${PKG_NAME}.git;branch=main;protocol=https" | ||
| 11 | |||
| 12 | SRCREV = "1cbd4c16de64273a6e63fc710b0d89bfad72cd32" | ||
| 13 | |||
| 14 | inherit meta-virt-depreciated-warning | ||
| 15 | |||
| 16 | do_compile() { | ||
| 17 | true | ||
| 18 | } | ||
| 19 | |||
| 20 | do_install() { | ||
| 21 | install -d ${D}${prefix}/local/go/src/${PKG_NAME} | ||
| 22 | cp -r ${S}/* ${D}${prefix}/local/go/src/${PKG_NAME}/ | ||
| 23 | } | ||
| 24 | |||
| 25 | SYSROOT_PREPROCESS_FUNCS += "go_context_sysroot_preprocess" | ||
| 26 | |||
| 27 | go_context_sysroot_preprocess () { | ||
| 28 | install -d ${SYSROOT_DESTDIR}${prefix}/local/go/src/${PKG_NAME} | ||
| 29 | cp -r ${D}${prefix}/local/go/src/${PKG_NAME} ${SYSROOT_DESTDIR}${prefix}/local/go/src/$(dirname ${PKG_NAME}) | ||
| 30 | } | ||
| 31 | |||
| 32 | FILES:${PN} += "${prefix}/local/go/src/${PKG_NAME}/*" | ||
| 33 | |||
| 34 | CLEANBROKEN = "1" | ||
diff --git a/recipes-devtools/go/go-libtrust_git.bb b/recipes-devtools/go/go-libtrust_git.bb deleted file mode 100644 index ef2877e1..00000000 --- a/recipes-devtools/go/go-libtrust_git.bb +++ /dev/null | |||
| @@ -1,29 +0,0 @@ | |||
| 1 | DESCRIPTION = "Primitives for identity and authorization" | ||
| 2 | HOMEPAGE = "https://github.com/docker/libtrust" | ||
| 3 | SECTION = "devel/go" | ||
| 4 | LICENSE = "Apache-2.0" | ||
| 5 | LIC_FILES_CHKSUM = "file://LICENSE;md5=435b266b3899aa8a959f17d41c56def8" | ||
| 6 | |||
| 7 | SRCNAME = "libtrust" | ||
| 8 | |||
| 9 | PKG_NAME = "github.com/docker/${SRCNAME}" | ||
| 10 | SRC_URI = "git://${PKG_NAME}.git;branch=master;protocol=https" | ||
| 11 | |||
| 12 | SRCREV = "9cbd2a1374f46905c68a4eb3694a130610adc62a" | ||
| 13 | PV = "0.0+git" | ||
| 14 | |||
| 15 | inherit meta-virt-depreciated-warning | ||
| 16 | |||
| 17 | do_install() { | ||
| 18 | install -d ${D}${prefix}/local/go/src/${PKG_NAME} | ||
| 19 | cp -r ${S}/* ${D}${prefix}/local/go/src/${PKG_NAME}/ | ||
| 20 | } | ||
| 21 | |||
| 22 | SYSROOT_PREPROCESS_FUNCS += "go_libtrust_sysroot_preprocess" | ||
| 23 | |||
| 24 | go_libtrust_sysroot_preprocess () { | ||
| 25 | install -d ${SYSROOT_DESTDIR}${prefix}/local/go/src/${PKG_NAME} | ||
| 26 | cp -r ${D}${prefix}/local/go/src/${PKG_NAME} ${SYSROOT_DESTDIR}${prefix}/local/go/src/$(dirname ${PKG_NAME}) | ||
| 27 | } | ||
| 28 | |||
| 29 | FILES:${PN} += "${prefix}/local/go/src/${PKG_NAME}/*" | ||
diff --git a/recipes-devtools/go/go-metalinter_git.bb b/recipes-devtools/go/go-metalinter_git.bb deleted file mode 100644 index f5576080..00000000 --- a/recipes-devtools/go/go-metalinter_git.bb +++ /dev/null | |||
| @@ -1,22 +0,0 @@ | |||
| 1 | DESCRIPTION = "Go Meta Linter." | ||
| 2 | HOMEPAGE = "https://github.com/alecthomas/gometalinter" | ||
| 3 | SECTION = "devel/go" | ||
| 4 | LICENSE = "MIT" | ||
| 5 | LIC_FILES_CHKSUM = "file://COPYING;md5=dee20b35647295553d32faef05846a7b" | ||
| 6 | |||
| 7 | BBCLASSEXTEND = "native" | ||
| 8 | |||
| 9 | SRCNAME = "gometalinter" | ||
| 10 | |||
| 11 | PKG_NAME = "github.com/alecthomas/${SRCNAME}" | ||
| 12 | SRC_URI = "git://${PKG_NAME}.git;branch=master;protocol=https" | ||
| 13 | |||
| 14 | SRCREV = "e8d801238da6f0dfd14078d68f9b53fa50a7eeb5" | ||
| 15 | PV = "0.0+git" | ||
| 16 | |||
| 17 | do_install() { | ||
| 18 | install -d ${D}${prefix}/local/go/src/${PKG_NAME} | ||
| 19 | cp -r ${S}/* ${D}${prefix}/local/go/src/${PKG_NAME}/ | ||
| 20 | } | ||
| 21 | |||
| 22 | FILES:${PN} += "${prefix}/local/go/src/${PKG_NAME}/*" | ||
diff --git a/recipes-devtools/go/go-pty_git.bb b/recipes-devtools/go/go-pty_git.bb deleted file mode 100644 index f6e253a6..00000000 --- a/recipes-devtools/go/go-pty_git.bb +++ /dev/null | |||
| @@ -1,28 +0,0 @@ | |||
| 1 | DESCRIPTION = "PTY interface for Go" | ||
| 2 | HOMEPAGE = "https://github.com/creack/pty" | ||
| 3 | SECTION = "devel/go" | ||
| 4 | LICENSE = "MIT" | ||
| 5 | LIC_FILES_CHKSUM = "file://License;md5=93958070863d769117fa33b129020050" | ||
| 6 | |||
| 7 | SRCNAME = "pty" | ||
| 8 | |||
| 9 | PKG_NAME = "github.com/creack/${SRCNAME}" | ||
| 10 | SRC_URI = "git://${PKG_NAME}.git;branch=master;protocol=https" | ||
| 11 | |||
| 12 | SRCREV = "05017fcccf23c823bfdea560dcc958a136e54fb7" | ||
| 13 | |||
| 14 | inherit meta-virt-depreciated-warning | ||
| 15 | |||
| 16 | do_install() { | ||
| 17 | install -d ${D}${prefix}/local/go/src/${PKG_NAME} | ||
| 18 | cp -r ${S}/* ${D}${prefix}/local/go/src/${PKG_NAME}/ | ||
| 19 | } | ||
| 20 | |||
| 21 | SYSROOT_PREPROCESS_FUNCS += "go_pty_sysroot_preprocess" | ||
| 22 | |||
| 23 | go_pty_sysroot_preprocess () { | ||
| 24 | install -d ${SYSROOT_DESTDIR}${prefix}/local/go/src/${PKG_NAME} | ||
| 25 | cp -r ${D}${prefix}/local/go/src/${PKG_NAME} ${SYSROOT_DESTDIR}${prefix}/local/go/src/$(dirname ${PKG_NAME}) | ||
| 26 | } | ||
| 27 | |||
| 28 | FILES:${PN} += "${prefix}/local/go/src/${PKG_NAME}/*" | ||
