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 C209115812E for ; Fri, 9 Jun 2023 13:40:59 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 05449E088A; Fri, 9 Jun 2023 13:40:59 +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 DD86CE088A for ; Fri, 9 Jun 2023 13:40:58 +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 B9F27340D38 for ; Fri, 9 Jun 2023 13:40:57 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 269B8A53 for ; Fri, 9 Jun 2023 13:40:56 +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: <1686318037.03f451d0e392e8e3bce9c3654b8c1d56c84bd8e4.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.2.ebuild X-VCS-Directories: sys-apps/goawk/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 03f451d0e392e8e3bce9c3654b8c1d56c84bd8e4 X-VCS-Branch: master Date: Fri, 9 Jun 2023 13:40:56 +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: 2c75121e-b917-43a3-8d49-dc538666156e X-Archives-Hash: de8a4c11776554194a2fe77d5d1af2ff commit: 03f451d0e392e8e3bce9c3654b8c1d56c84bd8e4 Author: Sam James gentoo org> AuthorDate: Fri Jun 9 13:23:27 2023 +0000 Commit: Sam James gentoo org> CommitDate: Fri Jun 9 13:40:37 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=03f451d0 sys-apps/goawk: add 1.23.2 Signed-off-by: Sam James gentoo.org> sys-apps/goawk/Manifest | 1 + sys-apps/goawk/goawk-1.23.2.ebuild | 28 ++++++++++++++++++++++++++++ 2 files changed, 29 insertions(+) diff --git a/sys-apps/goawk/Manifest b/sys-apps/goawk/Manifest index d3c61e23d915..3738f8c276aa 100644 --- a/sys-apps/goawk/Manifest +++ b/sys-apps/goawk/Manifest @@ -1 +1,2 @@ DIST goawk-1.23.1.tar.gz 1678471 BLAKE2B f87037cdb5f256d5c3848f7fb0e64d81672abfa03c15d9b778fac14804c252ea140b3b436a09ab2189364b180bd1b638ecd66e767dd72532cc0f051ca2255097 SHA512 64f56f5ffa512929aa83d4df0360894ef231fdffe1879a72ed723606db77bf001ee744b646221a6042ef2cd3cb79fc8c80e33cec992b0b8c61da9f41ba78650b +DIST goawk-1.23.2.tar.gz 1682245 BLAKE2B 6f7c87717ae3539272688c600705ca9757f38671dd2d73688ff4b3e345d66e2cf7b16f7bc6d0dd97340cf84b8a09bb116207ec5dfb361ff5721ffe99c048c118 SHA512 b448b99cb880b23de72fc77948217291b9da6733ad8538d7978e3dbd83e233ac6c558a39bc7d995002bb6b67c6b6ed5ac3a4131b90f43443bdd7c639b793f5ee diff --git a/sys-apps/goawk/goawk-1.23.2.ebuild b/sys-apps/goawk/goawk-1.23.2.ebuild new file mode 100644 index 000000000000..e138a7adbd3d --- /dev/null +++ b/sys-apps/goawk/goawk-1.23.2.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 +}