summaryrefslogtreecommitdiffstats
path: root/recipes-devtools/go/go-md2man_git.bb
diff options
context:
space:
mode:
authorBruce Ashfield <bruce.ashfield@gmail.com>2026-03-26 14:25:30 +0000
committerBruce Ashfield <bruce.ashfield@gmail.com>2026-03-26 15:54:03 +0000
commit5ccb61a7a67d4f4e9a31301630a3224076bcc4b4 (patch)
tree6fb3c21bc5034a65077e3b1d3fb93f0346449f8f /recipes-devtools/go/go-md2man_git.bb
parentce4a0ce9006998863a7cb50ac2eee67d06ba3c08 (diff)
downloadmeta-virtualization-5ccb61a7a67d4f4e9a31301630a3224076bcc4b4.tar.gz
go recipes: update to latest upstream releases
Update all active Go library recipes to their latest releases: - go-md2man: 1.0.10 → 2.0.7 (update GO_IMPORT for v2 module path) - go-cli: 1.1.0 → 2.27.7 (moved to github.com/urfave/cli/v2) - go-connections: 0.2.1 → 0.6.0 - go-dbus: 4.0.0 → 5.2.2 (update GO_IMPORT for v5 module path) - go-distribution: 2.6.0 → 3.0.0 (repo moved to distribution/distribution) - go-fsnotify: 1.5.1 → 1.9.0 - go-logrus: 0.11.0 → 1.9.4 - go-mux: unversioned → 1.8.1 - go-patricia: 2.2.6 → 2.3.3 - go-systemd: 4 → 22.7.0 (update GO_IMPORT for v22 module path) - grpc-go: 1.59.0 → 1.79.3 Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Diffstat (limited to 'recipes-devtools/go/go-md2man_git.bb')
-rw-r--r--recipes-devtools/go/go-md2man_git.bb19
1 files changed, 11 insertions, 8 deletions
diff --git a/recipes-devtools/go/go-md2man_git.bb b/recipes-devtools/go/go-md2man_git.bb
index 720eac63..8f089473 100644
--- a/recipes-devtools/go/go-md2man_git.bb
+++ b/recipes-devtools/go/go-md2man_git.bb
@@ -6,16 +6,19 @@ LIC_FILES_CHKSUM = "file://src/${GO_IMPORT}/LICENSE.md;md5=80794f9009df723bbc6fe
6 6
7BBCLASSEXTEND = "native" 7BBCLASSEXTEND = "native"
8 8
9GO_IMPORT = "github.com/cpuguy83/go-md2man" 9GO_IMPORT = "github.com/cpuguy83/go-md2man/v2"
10#GO_INSTALL = "${GO_IMPORT}/bin/go-md2man" 10GO_INSTALL = "${GO_IMPORT}/..."
11 11
12SRC_URI = "git://${GO_IMPORT}.git;branch=master;protocol=https;destsuffix=${GO_SRCURI_DESTSUFFIX}" 12SRC_URI = "git://github.com/cpuguy83/go-md2man.git;branch=master;protocol=https;destsuffix=${BPN}-${PV}/src/${GO_IMPORT} \
13 gomod://github.com/russross/blackfriday/v2;version=v2.1.0;sha256sum=7852750d58a053ce38b01f2c203208817564f552ebf371b2b630081d7004c6ae \
14 "
13 15
14SRCREV = "f79a8a8ca69da163eee19ab442bedad7a35bba5a" 16SRCREV = "061b6c7cbecd6752049221aa15b7a05160796698"
15PV = "1.0.10+git" 17PV = "2.0.7+git"
16 18
17inherit go 19inherit go-mod
18 20
19do_compile:prepend() { 21do_compile() {
20 export GO111MODULE=off 22 cd ${B}/src/${GO_IMPORT}
23 ${GO} install ${GOBUILDFLAGS} ./...
21} 24}