From: "Sam James" <sam@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/mawk/
Date: Tue, 04 Feb 2025 22:47:27 +0000 (UTC) [thread overview]
Message-ID: <1738709230.bd8026fe099be083e424b731953e702bfedaae2d.sam@gentoo> (raw)
commit: bd8026fe099be083e424b731953e702bfedaae2d
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Feb 4 22:46:59 2025 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Feb 4 22:47:10 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bd8026fe
sys-apps/mawk: add 1.3.4_p20250131
Signed-off-by: Sam James <sam <AT> gentoo.org>
sys-apps/mawk/Manifest | 2 ++
sys-apps/mawk/mawk-1.3.4_p20250131.ebuild | 52 +++++++++++++++++++++++++++++++
2 files changed, 54 insertions(+)
diff --git a/sys-apps/mawk/Manifest b/sys-apps/mawk/Manifest
index 275fea3d5bdb..000c3d4ebdf9 100644
--- a/sys-apps/mawk/Manifest
+++ b/sys-apps/mawk/Manifest
@@ -1,2 +1,4 @@
DIST mawk-1.3.4-20240905.tgz 423935 BLAKE2B 7c15dddeb4f7afa5a94eb6c3a1f3d84be0e6ccbb56e6ba337f44432a272fd1cf6b162ccfb520f6aeb2393b174a89ba945bb6a325c584721a2ea5b89c073851de SHA512 769ce73112cb912ea82ed18f9a106209c4284a32ede41a4d8af64e862857323a9515551a4e7420d0c0fb6ea5773340771c7d68b17794fb9a810d39783fbdc1d2
DIST mawk-1.3.4-20240905.tgz.asc 729 BLAKE2B d4db8a008cac7e0a274de689ebef9fe5d7e820937cf61f9bfcac5bfeeff6e70ab920d759e750c3f7248c63876cfa4230e51b0a50b213c91e85c7e59da3e03b24 SHA512 f30f560aeb58dfcb878c2a2d756a88d68c3ed62c3232e7ad9f20469a3bd1fae667276a20a0866dd481f08830551dee6368194421e9e0370d9daa33c520230c16
+DIST mawk-1.3.4-20250131.tgz 433213 BLAKE2B 7a23051cfdb23f2451c23b357e895e49532c2211bac8d092d1fff9f7ea08dc43661d1d78eca2cff2b45998854eb0f64265c400e8f9cb7df83769cb98f96ba716 SHA512 100b1f5ee190d2841d5dee449c53601a6d32453e47b232de919f3489f6f7040d0c6d21f6c7d30df616b04abde2db9799c5eb16570c1f88dbc10fcd75c5838042
+DIST mawk-1.3.4-20250131.tgz.asc 729 BLAKE2B 7432d1c06f0a5d9a4deec34bfb795f0b7b8e04d43e259b8baab5f033349bf331f94c3d541334ba886545855e682e7c7ec372e8f66585731b09ef3be44b426032 SHA512 0d8ac93bdafcd8915b0d2d2b675f8d5cf2aeba655cd04af4b4037336b74b320e02db360b7d18b796aedc09fbabc8a42e471766ea24219bad7a1cbff4f7679552
diff --git a/sys-apps/mawk/mawk-1.3.4_p20250131.ebuild b/sys-apps/mawk/mawk-1.3.4_p20250131.ebuild
new file mode 100644
index 000000000000..a42756dde618
--- /dev/null
+++ b/sys-apps/mawk/mawk-1.3.4_p20250131.ebuild
@@ -0,0 +1,52 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+VERIFY_SIG_OPENPGP_KEY_PATH=/usr/share/openpgp-keys/thomasdickey.asc
+inherit toolchain-funcs verify-sig
+
+MY_P="${P/_p/-}"
+DESCRIPTION="An (often faster than gawk) awk-interpreter"
+HOMEPAGE="https://invisible-island.net/mawk/mawk.html"
+SRC_URI="https://invisible-mirror.net/archives/${PN}/${MY_P}.tgz"
+SRC_URI+=" verify-sig? ( https://invisible-island.net/archives/${PN}/${MY_P}.tgz.asc )"
+S="${WORKDIR}/${MY_P}"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux"
+
+BDEPEND="verify-sig? ( >=sec-keys/openpgp-keys-thomasdickey-20240114 )"
+
+DOCS=( ACKNOWLEDGMENT CHANGES README )
+
+QA_CONFIG_IMPL_DECL_SKIP=(
+ arc4random # missing on musl but it handles it fine
+ arc4random_push # doesn't exist on Linux
+)
+
+src_configure() {
+ tc-export BUILD_CC
+ econf
+}
+
+src_install() {
+ default
+
+ exeinto /usr/share/doc/${PF}/examples
+ doexe examples/*
+ docompress -x /usr/share/doc/${PF}/examples
+}
+
+pkg_postinst() {
+ if has_version app-admin/eselect && has_version app-eselect/eselect-awk; then
+ eselect awk update ifunset
+ fi
+}
+
+pkg_postrm() {
+ if has_version app-admin/eselect && has_version app-eselect/eselect-awk; then
+ eselect awk update ifunset
+ fi
+}
next reply other threads:[~2025-02-04 22:47 UTC|newest]
Thread overview: 129+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-02-04 22:47 Sam James [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-03-21 20:50 [gentoo-commits] repo/gentoo:master commit in: sys-apps/mawk/ Sam James
2025-03-13 1:21 Sam James
2025-03-13 1:11 Sam James
2025-03-13 1:09 Sam James
2025-02-09 5:18 Sam James
2024-11-23 18:14 Sam James
2024-11-08 2:49 Sam James
2024-11-04 16:47 Arthur Zamarin
2024-11-04 3:28 Sam James
2024-11-04 3:28 Sam James
2024-11-04 3:28 Sam James
2024-11-04 3:05 Sam James
2024-11-04 3:05 Sam James
2024-11-02 22:46 Andreas K. Hüttel
2024-10-30 15:18 Sam James
2024-10-15 5:22 Sam James
2024-10-09 0:06 Jakov Smolić
2024-10-05 21:47 Jakov Smolić
2024-10-05 21:47 Jakov Smolić
2024-10-05 13:58 Arthur Zamarin
2024-10-05 12:58 Arthur Zamarin
2024-10-05 11:48 Arthur Zamarin
2024-09-18 6:27 Sam James
2024-08-28 10:06 Sam James
2024-06-24 1:16 Sam James
2024-04-13 6:26 Arthur Zamarin
2024-03-14 8:18 Arthur Zamarin
2024-03-14 7:58 Arthur Zamarin
2024-03-14 7:00 Arthur Zamarin
2024-03-14 6:44 Sam James
2024-03-14 6:11 Sam James
2024-03-14 6:07 Sam James
2024-03-14 6:07 Sam James
2024-03-04 10:36 Sam James
2024-01-26 13:01 Sam James
2024-01-26 12:51 Sam James
2024-01-23 4:38 Sam James
2024-01-18 0:28 Sam James
2024-01-17 8:53 Arthur Zamarin
2024-01-17 6:34 Sam James
2024-01-17 5:50 Sam James
2024-01-17 5:33 Sam James
2024-01-17 5:33 Sam James
2023-12-28 4:04 Sam James
2023-12-23 4:17 Ionen Wolkens
2023-12-15 13:21 Arthur Zamarin
2023-12-15 8:31 Sam James
2023-12-15 7:20 Sam James
2023-12-15 7:14 Sam James
2023-12-15 7:14 Sam James
2023-12-01 19:38 Arthur Zamarin
2023-11-30 3:49 Sam James
2023-11-04 19:40 Sam James
2023-09-23 16:50 Arthur Zamarin
2023-09-23 16:50 Arthur Zamarin
2023-09-23 16:50 Arthur Zamarin
2023-09-23 16:50 Arthur Zamarin
2023-09-23 16:50 Arthur Zamarin
2023-09-23 16:50 Arthur Zamarin
2023-09-23 15:57 Arthur Zamarin
2023-08-12 5:34 Sam James
2023-08-10 4:45 Sam James
2023-05-31 12:42 Arthur Zamarin
2023-05-31 5:01 Sam James
2023-05-31 3:36 Sam James
2023-05-31 3:36 Sam James
2023-05-31 2:18 Sam James
2023-05-31 2:18 Sam James
2023-05-31 2:18 Sam James
2023-05-31 0:29 Sam James
2023-05-31 0:29 Sam James
2023-04-23 22:35 Sam James
2023-04-23 20:42 Sam James
2023-04-23 20:32 Sam James
2023-04-23 20:23 Sam James
2023-04-23 20:08 Sam James
2023-04-23 20:07 Sam James
2023-04-23 20:05 Sam James
2023-04-23 20:00 Sam James
2023-04-07 2:29 Sam James
2023-03-24 14:07 Arthur Zamarin
2023-03-24 13:36 Arthur Zamarin
2023-03-23 5:58 Sam James
2023-03-22 22:36 Sam James
2023-03-22 5:49 Sam James
2023-02-08 20:32 Sam James
2023-02-05 19:54 Sam James
2022-12-02 18:44 WANG Xuerui
2022-12-01 19:38 Sam James
2022-10-17 16:03 Jakov Smolić
2022-08-10 20:29 Sam James
2022-07-03 18:13 Arthur Zamarin
2021-08-03 11:03 Sam James
2021-07-31 22:12 Sam James
2021-07-28 3:12 Sam James
2021-06-14 9:19 David Seifert
2021-06-13 6:32 Agostino Sarubbo
2021-06-13 6:10 Sam James
2021-06-12 15:49 Sam James
2021-06-12 15:49 Sam James
2021-05-09 12:53 David Seifert
2021-05-09 12:53 David Seifert
2021-05-09 12:53 David Seifert
2021-01-06 15:26 Fabian Groffen
2020-07-17 7:44 Agostino Sarubbo
2020-07-11 15:21 Sam James
2020-07-08 12:23 Michał Górny
2020-07-06 7:02 Sergei Trofimovich
2020-01-17 16:02 Mike Gilbert
2020-01-16 20:51 Tim Harder
2019-08-30 8:14 Lars Wendler
2019-08-30 8:14 Lars Wendler
2018-01-07 21:49 Mikle Kolyada
2018-01-07 21:44 Mikle Kolyada
2018-01-07 14:23 Sergei Trofimovich
2018-01-06 14:25 Sergei Trofimovich
2018-01-01 22:09 Sergei Trofimovich
2018-01-01 18:40 Thomas Deutschmann
2017-09-08 3:54 Tim Harder
2017-04-12 10:25 Tim Harder
2016-11-10 5:09 Mike Frysinger
2016-08-07 5:39 Tim Harder
2015-11-16 14:19 Agostino Sarubbo
2015-11-15 21:01 Matt Turner
2015-11-05 11:20 Agostino Sarubbo
2015-10-27 15:20 Agostino Sarubbo
2015-08-28 6:40 Tim Harder
2015-08-28 6:40 Tim Harder
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1738709230.bd8026fe099be083e424b731953e702bfedaae2d.sam@gentoo \
--to=sam@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox