diff options
| author | Mingli Yu <mingli.yu@windriver.com> | 2022-03-04 17:56:56 +0800 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2022-03-04 08:28:06 -0800 |
| commit | 01171236da969f4f37dcde779351d623469c65c7 (patch) | |
| tree | 27137661af049aed03eeae45ee023bb900f13a52 /meta-oe/recipes-support/gosu | |
| parent | d69c574e1eb6a59238db6e8944e2cfb73c1ed6a3 (diff) | |
| download | meta-openembedded-01171236da969f4f37dcde779351d623469c65c7.tar.gz | |
gosu: add new recipe
gosu is a simple Go-based setuid+setgid+setgroups+exec tool.
Signed-off-by: Mingli Yu <mingli.yu@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-oe/recipes-support/gosu')
| -rw-r--r-- | meta-oe/recipes-support/gosu/gosu_1.14.bb | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/meta-oe/recipes-support/gosu/gosu_1.14.bb b/meta-oe/recipes-support/gosu/gosu_1.14.bb new file mode 100644 index 0000000000..624adf3099 --- /dev/null +++ b/meta-oe/recipes-support/gosu/gosu_1.14.bb | |||
| @@ -0,0 +1,20 @@ | |||
| 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 = "9f7cd138a1ebc0684d43ef6046bf723978e8741f" | ||
| 12 | SRCREV_runc = "d7f7b22a85a2387557bdcda125710c2506f8d5c5" | ||
| 13 | inherit go | ||
| 14 | |||
| 15 | do_compile:prepend() { | ||
| 16 | # New Go versions has Go modules support enabled by default | ||
| 17 | export GO111MODULE=off | ||
| 18 | } | ||
| 19 | |||
| 20 | RDEPENDS:${PN}-dev += "bash" | ||
