public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Sam James" <sam@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/moar/
Date: Sun, 15 Oct 2023 08:26:26 +0000 (UTC)	[thread overview]
Message-ID: <1697358154.7d26314a84bc2fbaf297f38d99bb2e5bb3b271d2.sam@gentoo> (raw)

commit:     7d26314a84bc2fbaf297f38d99bb2e5bb3b271d2
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Oct 15 08:22:34 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Oct 15 08:22:34 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7d26314a

sys-apps/moar: add 1.18.1

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

 sys-apps/moar/Manifest           |  2 ++
 sys-apps/moar/moar-1.18.1.ebuild | 41 ++++++++++++++++++++++++++++++++++++++++
 2 files changed, 43 insertions(+)

diff --git a/sys-apps/moar/Manifest b/sys-apps/moar/Manifest
index 30b1c53a218b..bfe2fdeafc8d 100644
--- a/sys-apps/moar/Manifest
+++ b/sys-apps/moar/Manifest
@@ -4,3 +4,5 @@ DIST moar-1.17.1-deps.tar.xz 4760036 BLAKE2B 6fd72d710a620fdf104766be84f3fa68652
 DIST moar-1.17.1.tar.gz 2784584 BLAKE2B 486520a89969bde12bed683e28fd37a90d32b35ecc80261901595ccfe9d12deb26c307404ba0505919b1a35c237e07b59aa5469f04b51bd12d6e71e39571b648 SHA512 f502e930cf78c86eccacb4c23b1d4874bb39d5add2b36dbaa5426d269b5a315204782e1f539262f04adab510d177e374fcf9ff79df5ba2974f32e513e8d56fd6
 DIST moar-1.18.0-deps.tar.xz 4760036 BLAKE2B 6fd72d710a620fdf104766be84f3fa68652c760818cdee66bb8475cc8949872c82be026c04b54cb61c0108c5977cb1f787f9a4fa0316bde0293cdedb1f6f94f8 SHA512 f40520a1b2e94f4a3e97d6a4e19191484b66e13a57c7b30416c813d84cad3d29295e862d5b75870313cc905112425c731d052619d49e78b33fb3d5d8750df3df
 DIST moar-1.18.0.tar.gz 2784174 BLAKE2B 3d9ee7fda27419b419f47bae3336d9f0d7ae48bbdad1fb8c501c85b4ea34aaaf6cf1c865f1b56d195ec6e129333d63e552d96b147fb9c26c739482a546d6286e SHA512 a76f19465d03deec8f778fda213be6ab33fdd48d309231f4f0ad0cdd8ea2facc41e2bdb1b74771c4a9ce3a31c30a72754f790e5eb9edb06e19d26fe3e224b507
+DIST moar-1.18.1-deps.tar.xz 4760036 BLAKE2B 6fd72d710a620fdf104766be84f3fa68652c760818cdee66bb8475cc8949872c82be026c04b54cb61c0108c5977cb1f787f9a4fa0316bde0293cdedb1f6f94f8 SHA512 f40520a1b2e94f4a3e97d6a4e19191484b66e13a57c7b30416c813d84cad3d29295e862d5b75870313cc905112425c731d052619d49e78b33fb3d5d8750df3df
+DIST moar-1.18.1.tar.gz 2784232 BLAKE2B eee1b0d805150f5a0e09b3038dd13189d20886fbe8159e9fddea4ea97edfafba400b5ab542795ba222c2757e684e41e2db95774ad33a8039e62e1244cd69c16e SHA512 2dbe3b4f461f6ee77b8093e1783a06cf1703ec8c5682565cfb3d28d296296b562fd1032126f0f3ad835de9236d31e2930456b59ed8efb168c5243f4265c6b355

diff --git a/sys-apps/moar/moar-1.18.1.ebuild b/sys-apps/moar/moar-1.18.1.ebuild
new file mode 100644
index 000000000000..091d314e2ac3
--- /dev/null
+++ b/sys-apps/moar/moar-1.18.1.ebuild
@@ -0,0 +1,41 @@
+# Copyright 2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit go-module
+
+DESCRIPTION="Pager designed to do the right thing without any configuration"
+HOMEPAGE="https://github.com/walles/moar"
+SRC_URI="https://github.com/walles/moar/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
+SRC_URI+=" https://dev.gentoo.org/~sam/distfiles/${CATEGORY}/${PN}/${P}-deps.tar.xz"
+
+LICENSE="BSD-2 BSD MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="!dev-lang/moarvm"
+BDEPEND="
+	test? (
+		app-arch/bzip2
+		app-arch/xz-utils
+	)
+"
+
+src_compile() {
+	# https://github.com/walles/moar/blob/master/build.sh#L28
+	ego build -ldflags="-w -X main.versionString=${PV}" -o moar
+}
+
+src_test() {
+	# From test.sh (we don't run that because it has some linting etc)
+	ego test -timeout 20s ./...
+}
+
+src_install() {
+	dobin moar
+	doman moar.1
+	einstalldocs
+}


             reply	other threads:[~2023-10-15  8:26 UTC|newest]

Thread overview: 82+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-10-15  8:26 Sam James [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-10-25  5:46 [gentoo-commits] repo/gentoo:master commit in: sys-apps/moar/ Arthur Zamarin
2024-10-24 15:21 Arthur Zamarin
2024-09-22 10:10 Sam James
2024-09-20  8:42 Sam James
2024-09-20  8:42 Sam James
2024-08-29  6:34 Jakov Smolić
2024-08-29  5:10 Jakov Smolić
2024-08-15  0:26 Sam James
2024-07-04  0:49 Sam James
2024-06-28 16:01 Sam James
2024-06-25  4:14 Sam James
2024-06-24  5:39 Sam James
2024-06-24  4:00 Sam James
2024-06-24  4:00 Sam James
2024-06-24  4:00 Sam James
2024-06-23  2:42 Sam James
2024-06-23  2:42 Sam James
2024-06-23  2:38 Sam James
2024-05-28  1:06 Sam James
2024-05-16  2:39 Sam James
2024-05-11 20:59 Sam James
2024-05-11 20:59 Sam James
2024-05-06  5:03 Sam James
2024-05-03  8:57 Sam James
2024-05-03  8:57 Sam James
2024-04-17  4:42 Sam James
2024-04-15  7:30 Arthur Zamarin
2024-04-15  7:27 Sam James
2024-03-28  1:47 Sam James
2024-03-15  6:24 Sam James
2024-02-27 23:00 Sam James
2024-02-27 23:00 Sam James
2024-02-21 10:17 Sam James
2024-02-02  1:18 Sam James
2024-02-02  1:02 Sam James
2024-01-19 23:27 Sam James
2024-01-19 13:39 Arthur Zamarin
2024-01-19 10:07 Sam James
2024-01-14  3:56 Sam James
2024-01-14  3:56 Sam James
2024-01-05 14:16 Sam James
2024-01-05 13:37 Sam James
2024-01-05 11:38 Sam James
2024-01-05 11:38 Sam James
2024-01-02  6:54 Sam James
2023-12-28  3:43 Sam James
2023-12-20 10:04 Sam James
2023-12-14  9:31 Sam James
2023-12-14  9:31 Sam James
2023-12-03  8:24 Sam James
2023-11-25  5:28 Sam James
2023-11-25  4:49 Sam James
2023-11-12  6:36 Sam James
2023-11-12  6:35 Sam James
2023-10-20  3:49 Sam James
2023-10-20  0:51 Sam James
2023-10-11 11:37 Sam James
2023-09-30  5:59 Sam James
2023-09-29 23:54 Sam James
2023-09-29 23:54 Sam James
2023-09-16 12:25 Sam James
2023-09-13  5:38 Sam James
2023-09-01  8:04 Sam James
2023-08-28  4:05 Sam James
2023-08-01 12:44 Sam James
2023-07-09  7:59 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-19  0:56 Sam James
2023-05-19  0:56 Sam James
2023-05-04  4:36 Sam James
2023-05-02 15:21 Arthur Zamarin
2023-03-20  5:06 Sam James
2023-03-20  5:06 Sam James
2023-03-01  2:30 Sam James
2023-02-10 23:29 Sam James
2023-01-11 13:22 Sam James
2023-01-04  9:17 Sam James
2023-01-04  5:03 Sam James
2023-01-04  4:56 Sam James

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=1697358154.7d26314a84bc2fbaf297f38d99bb2e5bb3b271d2.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