diff options
author | Sam James <sam@gentoo.org> | 2024-09-20 09:20:30 +0100 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2024-09-20 09:38:21 +0100 |
commit | ea09604aed15935d5649063a78e0a5e814b10b50 (patch) | |
tree | b74c779189eed35b3ee8ed2510b5ce8c104969d2 /sys-apps | |
parent | sys-apps/goawk: drop 1.25.0, 1.26.0 (diff) | |
download | gentoo-ea09604aed15935d5649063a78e0a5e814b10b50.tar.gz gentoo-ea09604aed15935d5649063a78e0a5e814b10b50.tar.bz2 gentoo-ea09604aed15935d5649063a78e0a5e814b10b50.zip |
sys-apps/goawk: add 1.29.0
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'sys-apps')
-rw-r--r-- | sys-apps/goawk/Manifest | 1 | ||||
-rw-r--r-- | sys-apps/goawk/goawk-1.29.0.ebuild | 30 |
2 files changed, 31 insertions, 0 deletions
diff --git a/sys-apps/goawk/Manifest b/sys-apps/goawk/Manifest index 5267061af9b8..1c362a097a43 100644 --- a/sys-apps/goawk/Manifest +++ b/sys-apps/goawk/Manifest @@ -1 +1,2 @@ DIST goawk-1.27.0.tar.gz 1680488 BLAKE2B ba212963d1ee48016b81af342dbff9921874dded62473ca3f0abe5da1b01d9eafb799d7316f51870f38747db4ebe3435805e3e619e28bd2193bec54fb7754090 SHA512 7f86cb8f6e4e09bd5a3115ff18deecfdc76baac81f7c8a2e6e2a8a5031b3833272d9bbc15a22b6633ffd088b7a419f80b32338c5d7f58e790294ced14deb4156 +DIST goawk-1.29.0.tar.gz 1682165 BLAKE2B 766987f40a96bbaff8c41049a6d9bda892eeb443fe36423893c74f03ea6c96145979c27e8f700ce7f372aa1f94e9320089cfaa4775ddb84fc5b1377661f25aac SHA512 656408adca5fb59c45b12f8780c5382311f00ed162be2168801e75a9ebe7afe52634d7cabdeb53502a53661bbb025cd1fdcac8d0b99ba5ffa2b17318d3edee9c diff --git a/sys-apps/goawk/goawk-1.29.0.ebuild b/sys-apps/goawk/goawk-1.29.0.ebuild new file mode 100644 index 000000000000..b6cf2d4c6ca2 --- /dev/null +++ b/sys-apps/goawk/goawk-1.29.0.ebuild @@ -0,0 +1,30 @@ +# Copyright 2022-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit go-module + +DESCRIPTION="POSIX-compliant AWK interpreter written in Go, with CSV support" +HOMEPAGE="https://github.com/benhoyt/goawk" +SRC_URI="https://github.com/benhoyt/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~arm64" + +BDEPEND=">=dev-lang/go-1.18" + +src_compile() { + ego build +} + +src_test() { + ego test +} + +src_install() { + einstalldocs + + dobin goawk +} |