public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: sys-apps/goawk/
@ 2022-12-29  2:08 Sam James
  0 siblings, 0 replies; 18+ messages in thread
From: Sam James @ 2022-12-29  2:08 UTC (permalink / raw
  To: gentoo-commits

commit:     5b0c283e7bf34a338597ad38fd0aae3ff4460846
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Dec 29 02:08:13 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Dec 29 02:08:18 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5b0c283e

sys-apps/goawk: new package, add 1.21.0

Signed-off-by: Sam James <sam <AT> gentoo.org>

 sys-apps/goawk/Manifest            |  1 +
 sys-apps/goawk/goawk-1.21.0.ebuild | 28 ++++++++++++++++++++++++++++
 sys-apps/goawk/metadata.xml        | 11 +++++++++++
 3 files changed, 40 insertions(+)

diff --git a/sys-apps/goawk/Manifest b/sys-apps/goawk/Manifest
new file mode 100644
index 000000000000..445acde1b676
--- /dev/null
+++ b/sys-apps/goawk/Manifest
@@ -0,0 +1 @@
+DIST goawk-1.21.0.tar.gz 1674139 BLAKE2B 782cbba57efecd8cb707d5eeaf5021756b5472232a7ef9ce4a55645c31b46f90a187c65f05acc05ea39ca2a225cdc65e96d25c6ecb44d814b5f7c0a085c14712 SHA512 32d4ad87db9eb40ecd90dee5aa34c312c96d223d59298bab5781621fa3f933492a1fab9cc4738faf24fe8eb38c802224f9cbbcde368ea7c2f136cde82f7eeca5

diff --git a/sys-apps/goawk/goawk-1.21.0.ebuild b/sys-apps/goawk/goawk-1.21.0.ebuild
new file mode 100644
index 000000000000..7f7a8282cd24
--- /dev/null
+++ b/sys-apps/goawk/goawk-1.21.0.ebuild
@@ -0,0 +1,28 @@
+# 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
+}

diff --git a/sys-apps/goawk/metadata.xml b/sys-apps/goawk/metadata.xml
new file mode 100644
index 000000000000..65bd5f412a1b
--- /dev/null
+++ b/sys-apps/goawk/metadata.xml
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<maintainer type="person">
+		<email>sam@gentoo.org</email>
+		<name>Sam James</name>
+	</maintainer>
+	<upstream>
+		<remote-id type="github">benhoyt/goawk</remote-id>
+	</upstream>
+</pkgmetadata>


^ permalink raw reply related	[flat|nested] 18+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-apps/goawk/
@ 2023-04-25 19:01 Sam James
  0 siblings, 0 replies; 18+ messages in thread
From: Sam James @ 2023-04-25 19:01 UTC (permalink / raw
  To: gentoo-commits

commit:     c6201a502a47c10bd1a85c9920376a19fbeb5f7b
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Apr 25 19:01:24 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Apr 25 19:01:24 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c6201a50

sys-apps/goawk: Keyword 1.22.0 arm64, #905066

Signed-off-by: Sam James <sam <AT> gentoo.org>

 sys-apps/goawk/goawk-1.22.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-apps/goawk/goawk-1.22.0.ebuild b/sys-apps/goawk/goawk-1.22.0.ebuild
index b90cf873bc18..e138a7adbd3d 100644
--- a/sys-apps/goawk/goawk-1.22.0.ebuild
+++ b/sys-apps/goawk/goawk-1.22.0.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/benhoyt/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="~amd64 ~arm64"
 
 src_compile() {
 	ego build


^ permalink raw reply related	[flat|nested] 18+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-apps/goawk/
@ 2023-05-12 23:50 Sam James
  0 siblings, 0 replies; 18+ messages in thread
From: Sam James @ 2023-05-12 23:50 UTC (permalink / raw
  To: gentoo-commits

commit:     a2707d6ddfc0df5a930a68dd0d35319547875543
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri May 12 23:32:59 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> 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 <sam <AT> 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
+}


^ permalink raw reply related	[flat|nested] 18+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-apps/goawk/
@ 2023-05-12 23:50 Sam James
  0 siblings, 0 replies; 18+ messages in thread
From: Sam James @ 2023-05-12 23:50 UTC (permalink / raw
  To: gentoo-commits

commit:     7351721e4e65c74f49bb4905f2428f0421243db5
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri May 12 23:32:15 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> 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 <sam <AT> 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
-}


^ permalink raw reply related	[flat|nested] 18+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-apps/goawk/
@ 2023-05-31  0:29 Sam James
  0 siblings, 0 replies; 18+ messages in thread
From: Sam James @ 2023-05-31  0:29 UTC (permalink / raw
  To: gentoo-commits

commit:     82c77aeb2a74ef5df6623f9ccdf17148545d1eff
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed May 31 00:20:31 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed May 31 00:23:03 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=82c77aeb

sys-apps/goawk: drop 1.22.0, 1.23.0

Signed-off-by: Sam James <sam <AT> gentoo.org>

 sys-apps/goawk/Manifest            |  2 --
 sys-apps/goawk/goawk-1.22.0.ebuild | 28 ----------------------------
 sys-apps/goawk/goawk-1.23.0.ebuild | 28 ----------------------------
 3 files changed, 58 deletions(-)

diff --git a/sys-apps/goawk/Manifest b/sys-apps/goawk/Manifest
index 6bf08d24f59a..d3c61e23d915 100644
--- a/sys-apps/goawk/Manifest
+++ b/sys-apps/goawk/Manifest
@@ -1,3 +1 @@
-DIST goawk-1.22.0.tar.gz 1676447 BLAKE2B 315874b8ee6334dd74fc86727340d3e14e01aac08880d562bd6297bcf42ae577e2ab6aa187e2f82616029b2fea9c64074193869fed01a8baa4423a5bfe73f45c SHA512 4109ca6e73f2eb87ef9d5b123634fb01cc92e8867aeec19be3d5b4744c7bd07747330fc6a371adbb52f2cab1fb51b43e9be6d8a851a0f0c5287c6039d497147c
-DIST goawk-1.23.0.tar.gz 1678139 BLAKE2B 0289ff64bfcfc7f14e48fc7d0e60e287b52d78d48dc8b21687ccdd13ada1cc8f193b12a112ccb898ef89893cf0f9e5502271f1433d77f21b1db5b1e9df56a4a8 SHA512 e2a8dda1d2a8cad1aee5ec7107cac30ff9aa691c5d0d78d91691dba21921fcbdac1dde4c61aff8a7d1280f174caaefcb44e937df84e0bf46e7818085da26f902
 DIST goawk-1.23.1.tar.gz 1678471 BLAKE2B f87037cdb5f256d5c3848f7fb0e64d81672abfa03c15d9b778fac14804c252ea140b3b436a09ab2189364b180bd1b638ecd66e767dd72532cc0f051ca2255097 SHA512 64f56f5ffa512929aa83d4df0360894ef231fdffe1879a72ed723606db77bf001ee744b646221a6042ef2cd3cb79fc8c80e33cec992b0b8c61da9f41ba78650b

diff --git a/sys-apps/goawk/goawk-1.22.0.ebuild b/sys-apps/goawk/goawk-1.22.0.ebuild
deleted file mode 100644
index e138a7adbd3d..000000000000
--- a/sys-apps/goawk/goawk-1.22.0.ebuild
+++ /dev/null
@@ -1,28 +0,0 @@
-# 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
-}

diff --git a/sys-apps/goawk/goawk-1.23.0.ebuild b/sys-apps/goawk/goawk-1.23.0.ebuild
deleted file mode 100644
index e138a7adbd3d..000000000000
--- a/sys-apps/goawk/goawk-1.23.0.ebuild
+++ /dev/null
@@ -1,28 +0,0 @@
-# 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
-}


^ permalink raw reply related	[flat|nested] 18+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-apps/goawk/
@ 2023-05-31  0:29 Sam James
  0 siblings, 0 replies; 18+ messages in thread
From: Sam James @ 2023-05-31  0:29 UTC (permalink / raw
  To: gentoo-commits

commit:     a75ad4d2269a1a9233f9ba60059c2bcec685a587
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed May 31 00:20:09 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed May 31 00:23:02 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a75ad4d2

sys-apps/goawk: add 1.23.1

Signed-off-by: Sam James <sam <AT> gentoo.org>

 sys-apps/goawk/Manifest            |  1 +
 sys-apps/goawk/goawk-1.23.1.ebuild | 28 ++++++++++++++++++++++++++++
 2 files changed, 29 insertions(+)

diff --git a/sys-apps/goawk/Manifest b/sys-apps/goawk/Manifest
index 8d50b437d60f..6bf08d24f59a 100644
--- a/sys-apps/goawk/Manifest
+++ b/sys-apps/goawk/Manifest
@@ -1,2 +1,3 @@
 DIST goawk-1.22.0.tar.gz 1676447 BLAKE2B 315874b8ee6334dd74fc86727340d3e14e01aac08880d562bd6297bcf42ae577e2ab6aa187e2f82616029b2fea9c64074193869fed01a8baa4423a5bfe73f45c SHA512 4109ca6e73f2eb87ef9d5b123634fb01cc92e8867aeec19be3d5b4744c7bd07747330fc6a371adbb52f2cab1fb51b43e9be6d8a851a0f0c5287c6039d497147c
 DIST goawk-1.23.0.tar.gz 1678139 BLAKE2B 0289ff64bfcfc7f14e48fc7d0e60e287b52d78d48dc8b21687ccdd13ada1cc8f193b12a112ccb898ef89893cf0f9e5502271f1433d77f21b1db5b1e9df56a4a8 SHA512 e2a8dda1d2a8cad1aee5ec7107cac30ff9aa691c5d0d78d91691dba21921fcbdac1dde4c61aff8a7d1280f174caaefcb44e937df84e0bf46e7818085da26f902
+DIST goawk-1.23.1.tar.gz 1678471 BLAKE2B f87037cdb5f256d5c3848f7fb0e64d81672abfa03c15d9b778fac14804c252ea140b3b436a09ab2189364b180bd1b638ecd66e767dd72532cc0f051ca2255097 SHA512 64f56f5ffa512929aa83d4df0360894ef231fdffe1879a72ed723606db77bf001ee744b646221a6042ef2cd3cb79fc8c80e33cec992b0b8c61da9f41ba78650b

diff --git a/sys-apps/goawk/goawk-1.23.1.ebuild b/sys-apps/goawk/goawk-1.23.1.ebuild
new file mode 100644
index 000000000000..e138a7adbd3d
--- /dev/null
+++ b/sys-apps/goawk/goawk-1.23.1.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
+}


^ permalink raw reply related	[flat|nested] 18+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-apps/goawk/
@ 2023-06-09 13:40 Sam James
  0 siblings, 0 replies; 18+ messages in thread
From: Sam James @ 2023-06-09 13:40 UTC (permalink / raw
  To: gentoo-commits

commit:     03f451d0e392e8e3bce9c3654b8c1d56c84bd8e4
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Jun  9 13:23:27 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> 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 <sam <AT> 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
+}


^ permalink raw reply related	[flat|nested] 18+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-apps/goawk/
@ 2023-06-15 23:15 Sam James
  0 siblings, 0 replies; 18+ messages in thread
From: Sam James @ 2023-06-15 23:15 UTC (permalink / raw
  To: gentoo-commits

commit:     d7c9016f4914aff3b07f239e76bd74cc603288dc
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Jun 15 23:14:58 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Jun 15 23:14:58 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d7c9016f

sys-apps/goawk: add 1.23.3

Signed-off-by: Sam James <sam <AT> gentoo.org>

 sys-apps/goawk/Manifest            |  1 +
 sys-apps/goawk/goawk-1.23.3.ebuild | 28 ++++++++++++++++++++++++++++
 2 files changed, 29 insertions(+)

diff --git a/sys-apps/goawk/Manifest b/sys-apps/goawk/Manifest
index 3738f8c276aa..2a37ef963f8b 100644
--- a/sys-apps/goawk/Manifest
+++ b/sys-apps/goawk/Manifest
@@ -1,2 +1,3 @@
 DIST goawk-1.23.1.tar.gz 1678471 BLAKE2B f87037cdb5f256d5c3848f7fb0e64d81672abfa03c15d9b778fac14804c252ea140b3b436a09ab2189364b180bd1b638ecd66e767dd72532cc0f051ca2255097 SHA512 64f56f5ffa512929aa83d4df0360894ef231fdffe1879a72ed723606db77bf001ee744b646221a6042ef2cd3cb79fc8c80e33cec992b0b8c61da9f41ba78650b
 DIST goawk-1.23.2.tar.gz 1682245 BLAKE2B 6f7c87717ae3539272688c600705ca9757f38671dd2d73688ff4b3e345d66e2cf7b16f7bc6d0dd97340cf84b8a09bb116207ec5dfb361ff5721ffe99c048c118 SHA512 b448b99cb880b23de72fc77948217291b9da6733ad8538d7978e3dbd83e233ac6c558a39bc7d995002bb6b67c6b6ed5ac3a4131b90f43443bdd7c639b793f5ee
+DIST goawk-1.23.3.tar.gz 1682899 BLAKE2B e0ca6001b5adc78186549cbf11bc016294a996e8a1337227a1915e30b5f04786cf443c19c8daaae5e4e0604945783bc89a4a173f1f878685f7330f4f3933690e SHA512 06955b9cf53ac7a4a414ea18b4886fa71f1ec3ca1338a6648f9650f28ba5f52d672eddb7b5f8462fb404966b716f9a1ac8b6e075ab74883e6d1ad1a16314f4f8

diff --git a/sys-apps/goawk/goawk-1.23.3.ebuild b/sys-apps/goawk/goawk-1.23.3.ebuild
new file mode 100644
index 000000000000..e138a7adbd3d
--- /dev/null
+++ b/sys-apps/goawk/goawk-1.23.3.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
+}


^ permalink raw reply related	[flat|nested] 18+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-apps/goawk/
@ 2023-06-15 23:15 Sam James
  0 siblings, 0 replies; 18+ messages in thread
From: Sam James @ 2023-06-15 23:15 UTC (permalink / raw
  To: gentoo-commits

commit:     63f3e79ec19d28d79d2c2d36e214b2ecc4a90f73
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Jun 15 23:15:02 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Jun 15 23:15:02 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=63f3e79e

sys-apps/goawk: drop 1.23.1

Signed-off-by: Sam James <sam <AT> gentoo.org>

 sys-apps/goawk/Manifest            |  1 -
 sys-apps/goawk/goawk-1.23.1.ebuild | 28 ----------------------------
 2 files changed, 29 deletions(-)

diff --git a/sys-apps/goawk/Manifest b/sys-apps/goawk/Manifest
index 2a37ef963f8b..f111ee9ba3ff 100644
--- a/sys-apps/goawk/Manifest
+++ b/sys-apps/goawk/Manifest
@@ -1,3 +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
 DIST goawk-1.23.3.tar.gz 1682899 BLAKE2B e0ca6001b5adc78186549cbf11bc016294a996e8a1337227a1915e30b5f04786cf443c19c8daaae5e4e0604945783bc89a4a173f1f878685f7330f4f3933690e SHA512 06955b9cf53ac7a4a414ea18b4886fa71f1ec3ca1338a6648f9650f28ba5f52d672eddb7b5f8462fb404966b716f9a1ac8b6e075ab74883e6d1ad1a16314f4f8

diff --git a/sys-apps/goawk/goawk-1.23.1.ebuild b/sys-apps/goawk/goawk-1.23.1.ebuild
deleted file mode 100644
index e138a7adbd3d..000000000000
--- a/sys-apps/goawk/goawk-1.23.1.ebuild
+++ /dev/null
@@ -1,28 +0,0 @@
-# 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
-}


^ permalink raw reply related	[flat|nested] 18+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-apps/goawk/
@ 2023-07-20  2:26 Sam James
  0 siblings, 0 replies; 18+ messages in thread
From: Sam James @ 2023-07-20  2:26 UTC (permalink / raw
  To: gentoo-commits

commit:     dd271b5e7cbd9cd65f33b63d7be47ef35af880a2
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Jul 20 02:10:39 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Jul 20 02:10:39 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dd271b5e

sys-apps/goawk: add 1.24.0

Signed-off-by: Sam James <sam <AT> gentoo.org>

 sys-apps/goawk/Manifest            |  1 +
 sys-apps/goawk/goawk-1.24.0.ebuild | 28 ++++++++++++++++++++++++++++
 2 files changed, 29 insertions(+)

diff --git a/sys-apps/goawk/Manifest b/sys-apps/goawk/Manifest
index f111ee9ba3ff..faa3a5d561c6 100644
--- a/sys-apps/goawk/Manifest
+++ b/sys-apps/goawk/Manifest
@@ -1,2 +1,3 @@
 DIST goawk-1.23.2.tar.gz 1682245 BLAKE2B 6f7c87717ae3539272688c600705ca9757f38671dd2d73688ff4b3e345d66e2cf7b16f7bc6d0dd97340cf84b8a09bb116207ec5dfb361ff5721ffe99c048c118 SHA512 b448b99cb880b23de72fc77948217291b9da6733ad8538d7978e3dbd83e233ac6c558a39bc7d995002bb6b67c6b6ed5ac3a4131b90f43443bdd7c639b793f5ee
 DIST goawk-1.23.3.tar.gz 1682899 BLAKE2B e0ca6001b5adc78186549cbf11bc016294a996e8a1337227a1915e30b5f04786cf443c19c8daaae5e4e0604945783bc89a4a173f1f878685f7330f4f3933690e SHA512 06955b9cf53ac7a4a414ea18b4886fa71f1ec3ca1338a6648f9650f28ba5f52d672eddb7b5f8462fb404966b716f9a1ac8b6e075ab74883e6d1ad1a16314f4f8
+DIST goawk-1.24.0.tar.gz 1684298 BLAKE2B 4a13994ba99d35ebbf42077a68c21842ccd2ad85d0d31976fc0aa7c999d926a090e2d21c6313498b436d580d231449729e67a20717d0efd4f79e96a3bfb89c36 SHA512 2ae955fe35e6b08bf997c136aa7b8ece1de21bebc442a1757eeac44aa545be5eaa58d6a6b3c827dcfebff6a1d55332e1b0b48dbf07c39273f3d2bac221d8f218

diff --git a/sys-apps/goawk/goawk-1.24.0.ebuild b/sys-apps/goawk/goawk-1.24.0.ebuild
new file mode 100644
index 000000000000..e138a7adbd3d
--- /dev/null
+++ b/sys-apps/goawk/goawk-1.24.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
+}


^ permalink raw reply related	[flat|nested] 18+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-apps/goawk/
@ 2023-07-20  2:26 Sam James
  0 siblings, 0 replies; 18+ messages in thread
From: Sam James @ 2023-07-20  2:26 UTC (permalink / raw
  To: gentoo-commits

commit:     1d6f487da8bd3ee5badf77deecbe6f85cfda9aeb
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Jul 20 02:10:43 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Jul 20 02:10:43 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1d6f487d

sys-apps/goawk: drop 1.23.2

Signed-off-by: Sam James <sam <AT> gentoo.org>

 sys-apps/goawk/Manifest            |  1 -
 sys-apps/goawk/goawk-1.23.2.ebuild | 28 ----------------------------
 2 files changed, 29 deletions(-)

diff --git a/sys-apps/goawk/Manifest b/sys-apps/goawk/Manifest
index faa3a5d561c6..0bc5a956221e 100644
--- a/sys-apps/goawk/Manifest
+++ b/sys-apps/goawk/Manifest
@@ -1,3 +1,2 @@
-DIST goawk-1.23.2.tar.gz 1682245 BLAKE2B 6f7c87717ae3539272688c600705ca9757f38671dd2d73688ff4b3e345d66e2cf7b16f7bc6d0dd97340cf84b8a09bb116207ec5dfb361ff5721ffe99c048c118 SHA512 b448b99cb880b23de72fc77948217291b9da6733ad8538d7978e3dbd83e233ac6c558a39bc7d995002bb6b67c6b6ed5ac3a4131b90f43443bdd7c639b793f5ee
 DIST goawk-1.23.3.tar.gz 1682899 BLAKE2B e0ca6001b5adc78186549cbf11bc016294a996e8a1337227a1915e30b5f04786cf443c19c8daaae5e4e0604945783bc89a4a173f1f878685f7330f4f3933690e SHA512 06955b9cf53ac7a4a414ea18b4886fa71f1ec3ca1338a6648f9650f28ba5f52d672eddb7b5f8462fb404966b716f9a1ac8b6e075ab74883e6d1ad1a16314f4f8
 DIST goawk-1.24.0.tar.gz 1684298 BLAKE2B 4a13994ba99d35ebbf42077a68c21842ccd2ad85d0d31976fc0aa7c999d926a090e2d21c6313498b436d580d231449729e67a20717d0efd4f79e96a3bfb89c36 SHA512 2ae955fe35e6b08bf997c136aa7b8ece1de21bebc442a1757eeac44aa545be5eaa58d6a6b3c827dcfebff6a1d55332e1b0b48dbf07c39273f3d2bac221d8f218

diff --git a/sys-apps/goawk/goawk-1.23.2.ebuild b/sys-apps/goawk/goawk-1.23.2.ebuild
deleted file mode 100644
index e138a7adbd3d..000000000000
--- a/sys-apps/goawk/goawk-1.23.2.ebuild
+++ /dev/null
@@ -1,28 +0,0 @@
-# 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
-}


^ permalink raw reply related	[flat|nested] 18+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-apps/goawk/
@ 2023-08-01 12:44 Sam James
  0 siblings, 0 replies; 18+ messages in thread
From: Sam James @ 2023-08-01 12:44 UTC (permalink / raw
  To: gentoo-commits

commit:     0bcc73a84042fc673721a1704c57f27b72232908
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Aug  1 12:44:10 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Aug  1 12:44:23 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0bcc73a8

sys-apps/goawk: drop 1.23.3

Signed-off-by: Sam James <sam <AT> gentoo.org>

 sys-apps/goawk/Manifest            |  1 -
 sys-apps/goawk/goawk-1.23.3.ebuild | 28 ----------------------------
 2 files changed, 29 deletions(-)

diff --git a/sys-apps/goawk/Manifest b/sys-apps/goawk/Manifest
index 0bc5a956221e..552bbc88f599 100644
--- a/sys-apps/goawk/Manifest
+++ b/sys-apps/goawk/Manifest
@@ -1,2 +1 @@
-DIST goawk-1.23.3.tar.gz 1682899 BLAKE2B e0ca6001b5adc78186549cbf11bc016294a996e8a1337227a1915e30b5f04786cf443c19c8daaae5e4e0604945783bc89a4a173f1f878685f7330f4f3933690e SHA512 06955b9cf53ac7a4a414ea18b4886fa71f1ec3ca1338a6648f9650f28ba5f52d672eddb7b5f8462fb404966b716f9a1ac8b6e075ab74883e6d1ad1a16314f4f8
 DIST goawk-1.24.0.tar.gz 1684298 BLAKE2B 4a13994ba99d35ebbf42077a68c21842ccd2ad85d0d31976fc0aa7c999d926a090e2d21c6313498b436d580d231449729e67a20717d0efd4f79e96a3bfb89c36 SHA512 2ae955fe35e6b08bf997c136aa7b8ece1de21bebc442a1757eeac44aa545be5eaa58d6a6b3c827dcfebff6a1d55332e1b0b48dbf07c39273f3d2bac221d8f218

diff --git a/sys-apps/goawk/goawk-1.23.3.ebuild b/sys-apps/goawk/goawk-1.23.3.ebuild
deleted file mode 100644
index e138a7adbd3d..000000000000
--- a/sys-apps/goawk/goawk-1.23.3.ebuild
+++ /dev/null
@@ -1,28 +0,0 @@
-# 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
-}


^ permalink raw reply related	[flat|nested] 18+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-apps/goawk/
@ 2023-09-27  3:45 Sam James
  0 siblings, 0 replies; 18+ messages in thread
From: Sam James @ 2023-09-27  3:45 UTC (permalink / raw
  To: gentoo-commits

commit:     391ae978365af58aea0c01f1ffdb38ee48714e05
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Sep 27 03:43:55 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Sep 27 03:43:55 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=391ae978

sys-apps/goawk: add 1.25.0

Signed-off-by: Sam James <sam <AT> gentoo.org>

 sys-apps/goawk/Manifest            |  1 +
 sys-apps/goawk/goawk-1.25.0.ebuild | 30 ++++++++++++++++++++++++++++++
 2 files changed, 31 insertions(+)

diff --git a/sys-apps/goawk/Manifest b/sys-apps/goawk/Manifest
index 552bbc88f599..91898c976397 100644
--- a/sys-apps/goawk/Manifest
+++ b/sys-apps/goawk/Manifest
@@ -1 +1,2 @@
 DIST goawk-1.24.0.tar.gz 1684298 BLAKE2B 4a13994ba99d35ebbf42077a68c21842ccd2ad85d0d31976fc0aa7c999d926a090e2d21c6313498b436d580d231449729e67a20717d0efd4f79e96a3bfb89c36 SHA512 2ae955fe35e6b08bf997c136aa7b8ece1de21bebc442a1757eeac44aa545be5eaa58d6a6b3c827dcfebff6a1d55332e1b0b48dbf07c39273f3d2bac221d8f218
+DIST goawk-1.25.0.tar.gz 1685633 BLAKE2B e435393c17e6502a8642af53982ce964aaba86c3f72d373f69c0d7a4c6c163b6801c952d5e2cc7f2704df233d3eac9e5db8beb3e9379d05940711021c83dc6e5 SHA512 33a00063f6b12359da8d9d2788d893d149f5c14105de8899f5e44c3146b6b30ce778529bbeaac142f2f7fdd23ac1037ea9ef902569b0189eab3deabff54785bd

diff --git a/sys-apps/goawk/goawk-1.25.0.ebuild b/sys-apps/goawk/goawk-1.25.0.ebuild
new file mode 100644
index 000000000000..cc88fec202a1
--- /dev/null
+++ b/sys-apps/goawk/goawk-1.25.0.ebuild
@@ -0,0 +1,30 @@
+# 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"
+
+BDEPEND=">=dev-lang/go-1.16"
+
+src_compile() {
+	ego build
+}
+
+src_test() {
+	ego test
+}
+
+src_install() {
+	einstalldocs
+
+	dobin goawk
+}


^ permalink raw reply related	[flat|nested] 18+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-apps/goawk/
@ 2023-11-25  5:28 Sam James
  0 siblings, 0 replies; 18+ messages in thread
From: Sam James @ 2023-11-25  5:28 UTC (permalink / raw
  To: gentoo-commits

commit:     e08202267b460ee948e6f84d6a1c457f3382309f
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Nov 25 05:26:48 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Nov 25 05:27:15 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e0820226

sys-apps/goawk: drop 1.24.0

Signed-off-by: Sam James <sam <AT> gentoo.org>

 sys-apps/goawk/Manifest            |  1 -
 sys-apps/goawk/goawk-1.24.0.ebuild | 28 ----------------------------
 2 files changed, 29 deletions(-)

diff --git a/sys-apps/goawk/Manifest b/sys-apps/goawk/Manifest
index 91898c976397..b8874134554e 100644
--- a/sys-apps/goawk/Manifest
+++ b/sys-apps/goawk/Manifest
@@ -1,2 +1 @@
-DIST goawk-1.24.0.tar.gz 1684298 BLAKE2B 4a13994ba99d35ebbf42077a68c21842ccd2ad85d0d31976fc0aa7c999d926a090e2d21c6313498b436d580d231449729e67a20717d0efd4f79e96a3bfb89c36 SHA512 2ae955fe35e6b08bf997c136aa7b8ece1de21bebc442a1757eeac44aa545be5eaa58d6a6b3c827dcfebff6a1d55332e1b0b48dbf07c39273f3d2bac221d8f218
 DIST goawk-1.25.0.tar.gz 1685633 BLAKE2B e435393c17e6502a8642af53982ce964aaba86c3f72d373f69c0d7a4c6c163b6801c952d5e2cc7f2704df233d3eac9e5db8beb3e9379d05940711021c83dc6e5 SHA512 33a00063f6b12359da8d9d2788d893d149f5c14105de8899f5e44c3146b6b30ce778529bbeaac142f2f7fdd23ac1037ea9ef902569b0189eab3deabff54785bd

diff --git a/sys-apps/goawk/goawk-1.24.0.ebuild b/sys-apps/goawk/goawk-1.24.0.ebuild
deleted file mode 100644
index e138a7adbd3d..000000000000
--- a/sys-apps/goawk/goawk-1.24.0.ebuild
+++ /dev/null
@@ -1,28 +0,0 @@
-# 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
-}


^ permalink raw reply related	[flat|nested] 18+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-apps/goawk/
@ 2024-03-02  3:15 Sam James
  0 siblings, 0 replies; 18+ messages in thread
From: Sam James @ 2024-03-02  3:15 UTC (permalink / raw
  To: gentoo-commits

commit:     cf220106b9467924c4685b50fdf4f2228531088e
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Mar  2 03:11:31 2024 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Mar  2 03:11:31 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cf220106

sys-apps/goawk: add 1.26.0

Signed-off-by: Sam James <sam <AT> gentoo.org>

 sys-apps/goawk/Manifest            |  1 +
 sys-apps/goawk/goawk-1.26.0.ebuild | 30 ++++++++++++++++++++++++++++++
 2 files changed, 31 insertions(+)

diff --git a/sys-apps/goawk/Manifest b/sys-apps/goawk/Manifest
index b8874134554e..2bcb620c818f 100644
--- a/sys-apps/goawk/Manifest
+++ b/sys-apps/goawk/Manifest
@@ -1 +1,2 @@
 DIST goawk-1.25.0.tar.gz 1685633 BLAKE2B e435393c17e6502a8642af53982ce964aaba86c3f72d373f69c0d7a4c6c163b6801c952d5e2cc7f2704df233d3eac9e5db8beb3e9379d05940711021c83dc6e5 SHA512 33a00063f6b12359da8d9d2788d893d149f5c14105de8899f5e44c3146b6b30ce778529bbeaac142f2f7fdd23ac1037ea9ef902569b0189eab3deabff54785bd
+DIST goawk-1.26.0.tar.gz 1686762 BLAKE2B c627c9e182139d7c325f8da36985ddba596fd7c9900a6c59f6111ceb822231ed575ad133c1a242c668b4a8fd911889234c20d259a6d82830c09e2672f7751195 SHA512 d645aac503ad52e63fdc737aef45a52f58543554d7ecfad22a55b2626c509551cf09d091c7148762249ae57d97095c33ef8591684afdb410456d85240450c1fc

diff --git a/sys-apps/goawk/goawk-1.26.0.ebuild b/sys-apps/goawk/goawk-1.26.0.ebuild
new file mode 100644
index 000000000000..9b774e46f9c9
--- /dev/null
+++ b/sys-apps/goawk/goawk-1.26.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.16"
+
+src_compile() {
+	ego build
+}
+
+src_test() {
+	ego test
+}
+
+src_install() {
+	einstalldocs
+
+	dobin goawk
+}


^ permalink raw reply related	[flat|nested] 18+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-apps/goawk/
@ 2024-04-27  4:20 Sam James
  0 siblings, 0 replies; 18+ messages in thread
From: Sam James @ 2024-04-27  4:20 UTC (permalink / raw
  To: gentoo-commits

commit:     dbe772c7f7c464edf4389b89c5164ce92dec53eb
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Apr 27 04:09:58 2024 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Apr 27 04:19:41 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dbe772c7

sys-apps/goawk: add 1.27.0

Signed-off-by: Sam James <sam <AT> gentoo.org>

 sys-apps/goawk/Manifest            |  1 +
 sys-apps/goawk/goawk-1.27.0.ebuild | 30 ++++++++++++++++++++++++++++++
 2 files changed, 31 insertions(+)

diff --git a/sys-apps/goawk/Manifest b/sys-apps/goawk/Manifest
index 2bcb620c818f..577a1b3c407b 100644
--- a/sys-apps/goawk/Manifest
+++ b/sys-apps/goawk/Manifest
@@ -1,2 +1,3 @@
 DIST goawk-1.25.0.tar.gz 1685633 BLAKE2B e435393c17e6502a8642af53982ce964aaba86c3f72d373f69c0d7a4c6c163b6801c952d5e2cc7f2704df233d3eac9e5db8beb3e9379d05940711021c83dc6e5 SHA512 33a00063f6b12359da8d9d2788d893d149f5c14105de8899f5e44c3146b6b30ce778529bbeaac142f2f7fdd23ac1037ea9ef902569b0189eab3deabff54785bd
 DIST goawk-1.26.0.tar.gz 1686762 BLAKE2B c627c9e182139d7c325f8da36985ddba596fd7c9900a6c59f6111ceb822231ed575ad133c1a242c668b4a8fd911889234c20d259a6d82830c09e2672f7751195 SHA512 d645aac503ad52e63fdc737aef45a52f58543554d7ecfad22a55b2626c509551cf09d091c7148762249ae57d97095c33ef8591684afdb410456d85240450c1fc
+DIST goawk-1.27.0.tar.gz 1680488 BLAKE2B ba212963d1ee48016b81af342dbff9921874dded62473ca3f0abe5da1b01d9eafb799d7316f51870f38747db4ebe3435805e3e619e28bd2193bec54fb7754090 SHA512 7f86cb8f6e4e09bd5a3115ff18deecfdc76baac81f7c8a2e6e2a8a5031b3833272d9bbc15a22b6633ffd088b7a419f80b32338c5d7f58e790294ced14deb4156

diff --git a/sys-apps/goawk/goawk-1.27.0.ebuild b/sys-apps/goawk/goawk-1.27.0.ebuild
new file mode 100644
index 000000000000..9b774e46f9c9
--- /dev/null
+++ b/sys-apps/goawk/goawk-1.27.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.16"
+
+src_compile() {
+	ego build
+}
+
+src_test() {
+	ego test
+}
+
+src_install() {
+	einstalldocs
+
+	dobin goawk
+}


^ permalink raw reply related	[flat|nested] 18+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-apps/goawk/
@ 2024-09-20  8:39 Sam James
  0 siblings, 0 replies; 18+ messages in thread
From: Sam James @ 2024-09-20  8:39 UTC (permalink / raw
  To: gentoo-commits

commit:     e73ab0f1773f07d58802b1af7920fe8b767e5c95
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Sep 20 08:18:46 2024 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Sep 20 08:38:20 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e73ab0f1

sys-apps/goawk: drop 1.25.0, 1.26.0

Signed-off-by: Sam James <sam <AT> gentoo.org>

 sys-apps/goawk/Manifest            |  2 --
 sys-apps/goawk/goawk-1.25.0.ebuild | 30 ------------------------------
 sys-apps/goawk/goawk-1.26.0.ebuild | 30 ------------------------------
 3 files changed, 62 deletions(-)

diff --git a/sys-apps/goawk/Manifest b/sys-apps/goawk/Manifest
index 577a1b3c407b..5267061af9b8 100644
--- a/sys-apps/goawk/Manifest
+++ b/sys-apps/goawk/Manifest
@@ -1,3 +1 @@
-DIST goawk-1.25.0.tar.gz 1685633 BLAKE2B e435393c17e6502a8642af53982ce964aaba86c3f72d373f69c0d7a4c6c163b6801c952d5e2cc7f2704df233d3eac9e5db8beb3e9379d05940711021c83dc6e5 SHA512 33a00063f6b12359da8d9d2788d893d149f5c14105de8899f5e44c3146b6b30ce778529bbeaac142f2f7fdd23ac1037ea9ef902569b0189eab3deabff54785bd
-DIST goawk-1.26.0.tar.gz 1686762 BLAKE2B c627c9e182139d7c325f8da36985ddba596fd7c9900a6c59f6111ceb822231ed575ad133c1a242c668b4a8fd911889234c20d259a6d82830c09e2672f7751195 SHA512 d645aac503ad52e63fdc737aef45a52f58543554d7ecfad22a55b2626c509551cf09d091c7148762249ae57d97095c33ef8591684afdb410456d85240450c1fc
 DIST goawk-1.27.0.tar.gz 1680488 BLAKE2B ba212963d1ee48016b81af342dbff9921874dded62473ca3f0abe5da1b01d9eafb799d7316f51870f38747db4ebe3435805e3e619e28bd2193bec54fb7754090 SHA512 7f86cb8f6e4e09bd5a3115ff18deecfdc76baac81f7c8a2e6e2a8a5031b3833272d9bbc15a22b6633ffd088b7a419f80b32338c5d7f58e790294ced14deb4156

diff --git a/sys-apps/goawk/goawk-1.25.0.ebuild b/sys-apps/goawk/goawk-1.25.0.ebuild
deleted file mode 100644
index cc88fec202a1..000000000000
--- a/sys-apps/goawk/goawk-1.25.0.ebuild
+++ /dev/null
@@ -1,30 +0,0 @@
-# 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"
-
-BDEPEND=">=dev-lang/go-1.16"
-
-src_compile() {
-	ego build
-}
-
-src_test() {
-	ego test
-}
-
-src_install() {
-	einstalldocs
-
-	dobin goawk
-}

diff --git a/sys-apps/goawk/goawk-1.26.0.ebuild b/sys-apps/goawk/goawk-1.26.0.ebuild
deleted file mode 100644
index 9b774e46f9c9..000000000000
--- a/sys-apps/goawk/goawk-1.26.0.ebuild
+++ /dev/null
@@ -1,30 +0,0 @@
-# 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.16"
-
-src_compile() {
-	ego build
-}
-
-src_test() {
-	ego test
-}
-
-src_install() {
-	einstalldocs
-
-	dobin goawk
-}


^ permalink raw reply related	[flat|nested] 18+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-apps/goawk/
@ 2024-09-20  8:39 Sam James
  0 siblings, 0 replies; 18+ messages in thread
From: Sam James @ 2024-09-20  8:39 UTC (permalink / raw
  To: gentoo-commits

commit:     ea09604aed15935d5649063a78e0a5e814b10b50
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Sep 20 08:20:30 2024 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> 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 <sam <AT> 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
+}


^ permalink raw reply related	[flat|nested] 18+ messages in thread

end of thread, other threads:[~2024-09-20  8:39 UTC | newest]

Thread overview: 18+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-03-02  3:15 [gentoo-commits] repo/gentoo:master commit in: sys-apps/goawk/ Sam James
  -- strict thread matches above, loose matches on Subject: below --
2024-09-20  8:39 Sam James
2024-09-20  8:39 Sam James
2024-04-27  4:20 Sam James
2023-11-25  5:28 Sam James
2023-09-27  3:45 Sam James
2023-08-01 12:44 Sam James
2023-07-20  2:26 Sam James
2023-07-20  2:26 Sam James
2023-06-15 23:15 Sam James
2023-06-15 23:15 Sam James
2023-06-09 13:40 Sam James
2023-05-31  0:29 Sam James
2023-05-31  0:29 Sam James
2023-05-12 23:50 Sam James
2023-05-12 23:50 Sam James
2023-04-25 19:01 Sam James
2022-12-29  2:08 Sam James

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox