diff options
| author | Khem Raj <raj.khem@gmail.com> | 2023-06-15 10:25:45 -0700 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2023-06-15 20:20:07 -0700 |
| commit | 051c15a36d871ba6ae0252923c05f40e6fdefd91 (patch) | |
| tree | 37b1c84fc659c4a4397e86dcdf10df85ae3fee51 /meta-oe/recipes-support/gosu/gosu_1.16.bb | |
| parent | f8df47347619f5d8dc96710e3f892ae1a21b5e90 (diff) | |
| download | meta-openembedded-051c15a36d871ba6ae0252923c05f40e6fdefd91.tar.gz | |
gosu: Upgrade to 1.16 release
ChangeLog is here
https://github.com/tianon/gosu/releases/tag/1.15
https://github.com/tianon/gosu/releases/tag/1.16
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-oe/recipes-support/gosu/gosu_1.16.bb')
| -rw-r--r-- | meta-oe/recipes-support/gosu/gosu_1.16.bb | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/meta-oe/recipes-support/gosu/gosu_1.16.bb b/meta-oe/recipes-support/gosu/gosu_1.16.bb new file mode 100644 index 0000000000..b209de16a4 --- /dev/null +++ b/meta-oe/recipes-support/gosu/gosu_1.16.bb | |||
| @@ -0,0 +1,23 @@ | |||
| 1 | SUMMARY = "Simple Go-based setuid+setgid+setgroups+exec" | ||
| 2 | HOMEPAGE = "https://github.com/tianon/gosu" | ||
| 3 | DESCRIPTION = "This is a simple tool grown out of the simple fact that su and sudo have very strange and often annoying TTY and signal-forwarding behavior." | ||
| 4 | LICENSE = "Apache-2.0 " | ||
| 5 | LIC_FILES_CHKSUM = "file://src/${GO_IMPORT}/LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57" | ||
| 6 | |||
| 7 | GO_IMPORT = "github.com/tianon/gosu" | ||
| 8 | SRC_URI = "git://${GO_IMPORT}.git;branch=master;protocol=https \ | ||
| 9 | git://github.com/opencontainers/runc;name=runc;destsuffix=${S}/src/github.com/opencontainers/runc;branch=main;protocol=https \ | ||
| 10 | " | ||
| 11 | SRCREV = "0e7347714352cd7f2e5edc9d2cf838d9934e6036" | ||
| 12 | #v1.1.0 | ||
| 13 | SRCREV_runc = "067aaf8548d78269dcb2c13b856775e27c410f9c" | ||
| 14 | inherit go | ||
| 15 | |||
| 16 | CGO_ENABLED = "1" | ||
| 17 | |||
| 18 | do_compile:prepend() { | ||
| 19 | # New Go versions has Go modules support enabled by default | ||
| 20 | export GO111MODULE=off | ||
| 21 | } | ||
| 22 | |||
| 23 | RDEPENDS:${PN}-dev += "bash" | ||
