From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 08EFE158083 for ; Fri, 20 Sep 2024 08:39:20 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 45639E29A5; Fri, 20 Sep 2024 08:39:19 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 2371DE29A5 for ; Fri, 20 Sep 2024 08:39:18 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 39B643431CD for ; Fri, 20 Sep 2024 08:39:17 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9ADF927F6 for ; Fri, 20 Sep 2024 08:39:15 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1726821501.ea09604aed15935d5649063a78e0a5e814b10b50.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/goawk/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/goawk/Manifest sys-apps/goawk/goawk-1.29.0.ebuild X-VCS-Directories: sys-apps/goawk/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: ea09604aed15935d5649063a78e0a5e814b10b50 X-VCS-Branch: master Date: Fri, 20 Sep 2024 08:39:15 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: c3857f8a-98c9-4779-bc03-c57d761bb07e X-Archives-Hash: 2a3c1d01dc2b97d9194ba91e0d5ede23 commit: ea09604aed15935d5649063a78e0a5e814b10b50 Author: Sam James gentoo org> AuthorDate: Fri Sep 20 08:20:30 2024 +0000 Commit: Sam James gentoo org> CommitDate: Fri Sep 20 08:38:21 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ea09604a sys-apps/goawk: add 1.29.0 Signed-off-by: Sam James gentoo.org> sys-apps/goawk/Manifest | 1 + sys-apps/goawk/goawk-1.29.0.ebuild | 30 ++++++++++++++++++++++++++++++ 2 files changed, 31 insertions(+) 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 +}