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 9824515AD33 for ; Fri, 12 May 2023 23:50:57 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A063FE089F; Fri, 12 May 2023 23:50:56 +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 7E99FE0897 for ; Fri, 12 May 2023 23:50:56 +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 133C8340E53 for ; Fri, 12 May 2023 23:50:55 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5BBD0A59 for ; Fri, 12 May 2023 23:50:53 +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: <1683934379.a2707d6ddfc0df5a930a68dd0d35319547875543.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.23.0.ebuild X-VCS-Directories: sys-apps/goawk/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: a2707d6ddfc0df5a930a68dd0d35319547875543 X-VCS-Branch: master Date: Fri, 12 May 2023 23:50:53 +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: 9e86cce6-7385-417d-9619-cbbf4c42fe89 X-Archives-Hash: aa4b0352382e41afdf3f7b5c3321188d commit: a2707d6ddfc0df5a930a68dd0d35319547875543 Author: Sam James gentoo org> AuthorDate: Fri May 12 23:32:59 2023 +0000 Commit: Sam James gentoo org> CommitDate: Fri May 12 23:32:59 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a2707d6d sys-apps/goawk: add 1.23.0 Signed-off-by: Sam James gentoo.org> sys-apps/goawk/Manifest | 1 + sys-apps/goawk/goawk-1.23.0.ebuild | 28 ++++++++++++++++++++++++++++ 2 files changed, 29 insertions(+) diff --git a/sys-apps/goawk/Manifest b/sys-apps/goawk/Manifest index 4e7369cf981b..8d50b437d60f 100644 --- a/sys-apps/goawk/Manifest +++ b/sys-apps/goawk/Manifest @@ -1 +1,2 @@ DIST goawk-1.22.0.tar.gz 1676447 BLAKE2B 315874b8ee6334dd74fc86727340d3e14e01aac08880d562bd6297bcf42ae577e2ab6aa187e2f82616029b2fea9c64074193869fed01a8baa4423a5bfe73f45c SHA512 4109ca6e73f2eb87ef9d5b123634fb01cc92e8867aeec19be3d5b4744c7bd07747330fc6a371adbb52f2cab1fb51b43e9be6d8a851a0f0c5287c6039d497147c +DIST goawk-1.23.0.tar.gz 1678139 BLAKE2B 0289ff64bfcfc7f14e48fc7d0e60e287b52d78d48dc8b21687ccdd13ada1cc8f193b12a112ccb898ef89893cf0f9e5502271f1433d77f21b1db5b1e9df56a4a8 SHA512 e2a8dda1d2a8cad1aee5ec7107cac30ff9aa691c5d0d78d91691dba21921fcbdac1dde4c61aff8a7d1280f174caaefcb44e937df84e0bf46e7818085da26f902 diff --git a/sys-apps/goawk/goawk-1.23.0.ebuild b/sys-apps/goawk/goawk-1.23.0.ebuild new file mode 100644 index 000000000000..e138a7adbd3d --- /dev/null +++ b/sys-apps/goawk/goawk-1.23.0.ebuild @@ -0,0 +1,28 @@ +# Copyright 2022-2023 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" + +src_compile() { + ego build +} + +src_test() { + ego test +} + +src_install() { + einstalldocs + + dobin goawk +}