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) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 3BD63158649 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 0D8E7E0895; Fri, 12 May 2023 23:50:56 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 EA8D9E0895 for ; Fri, 12 May 2023 23:50:55 +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 EBA1E340E73 for ; Fri, 12 May 2023 23:50:54 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 484EA990 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: <1683934335.7351721e4e65c74f49bb4905f2428f0421243db5.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.21.0.ebuild X-VCS-Directories: sys-apps/goawk/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 7351721e4e65c74f49bb4905f2428f0421243db5 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: 9f8c9835-bbc8-4730-8f57-52d8cab6e34e X-Archives-Hash: 2d8e5a12961b7f2dd4aba2803d6c99f8 commit: 7351721e4e65c74f49bb4905f2428f0421243db5 Author: Sam James gentoo org> AuthorDate: Fri May 12 23:32:15 2023 +0000 Commit: Sam James gentoo org> CommitDate: Fri May 12 23:32:15 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7351721e sys-apps/goawk: drop 1.21.0 Signed-off-by: Sam James gentoo.org> sys-apps/goawk/Manifest | 1 - sys-apps/goawk/goawk-1.21.0.ebuild | 28 ---------------------------- 2 files changed, 29 deletions(-) diff --git a/sys-apps/goawk/Manifest b/sys-apps/goawk/Manifest index 8162e9818798..4e7369cf981b 100644 --- a/sys-apps/goawk/Manifest +++ b/sys-apps/goawk/Manifest @@ -1,2 +1 @@ -DIST goawk-1.21.0.tar.gz 1674139 BLAKE2B 782cbba57efecd8cb707d5eeaf5021756b5472232a7ef9ce4a55645c31b46f90a187c65f05acc05ea39ca2a225cdc65e96d25c6ecb44d814b5f7c0a085c14712 SHA512 32d4ad87db9eb40ecd90dee5aa34c312c96d223d59298bab5781621fa3f933492a1fab9cc4738faf24fe8eb38c802224f9cbbcde368ea7c2f136cde82f7eeca5 DIST goawk-1.22.0.tar.gz 1676447 BLAKE2B 315874b8ee6334dd74fc86727340d3e14e01aac08880d562bd6297bcf42ae577e2ab6aa187e2f82616029b2fea9c64074193869fed01a8baa4423a5bfe73f45c SHA512 4109ca6e73f2eb87ef9d5b123634fb01cc92e8867aeec19be3d5b4744c7bd07747330fc6a371adbb52f2cab1fb51b43e9be6d8a851a0f0c5287c6039d497147c diff --git a/sys-apps/goawk/goawk-1.21.0.ebuild b/sys-apps/goawk/goawk-1.21.0.ebuild deleted file mode 100644 index 7f7a8282cd24..000000000000 --- a/sys-apps/goawk/goawk-1.21.0.ebuild +++ /dev/null @@ -1,28 +0,0 @@ -# Copyright 2022 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" - -src_compile() { - ego build -} - -src_test() { - ego test -} - -src_install() { - einstalldocs - - dobin goawk -}