commit:     6e6c68643c307371f3a30cc539bd719c205d5787
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Sep 14 11:14:41 2025 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Sep 14 11:16:05 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6e6c6864

sys-apps/moor: add 2.1.1

I've not installed the wrapper script but can do if someone requests it.

Closes: https://bugs.gentoo.org/961601
Signed-off-by: Sam James <sam <AT> gentoo.org>

 sys-apps/moor/Manifest          |  2 ++
 sys-apps/moor/moor-2.1.1.ebuild | 57 +++++++++++++++++++++++++++++++++++++++++
 2 files changed, 59 insertions(+)

diff --git a/sys-apps/moor/Manifest b/sys-apps/moor/Manifest
index 0ae349a67cb2..12d1eb96de47 100644
--- a/sys-apps/moor/Manifest
+++ b/sys-apps/moor/Manifest
@@ -1,2 +1,4 @@
 DIST moar-1.33.0-deps.tar.xz 1455220 BLAKE2B 
6cba60dd76f756aa1f7886908167980bdf07834940ef0843e20f7bf75b18860dac1ef5b4196c5b4215e91e6152656e12676ae061f1ca05b2c28553a153a9f278
 SHA512 
dbc1c19aec4188a07bfd676bf798ede215cf1c453204a9f2774772b5cc539e05d459f1fdf12f28bc61f0b079791c5fb8c6d0e5096d2b57db403090297def16f3
 DIST moar-1.33.0.tar.gz 2870767 BLAKE2B 
51f52d23245eed30951d0ba12ed3cff5b441d4d15ae308ede6324da64bbf7c46205b5ba1b1ebb1391af6e12f083297990dc412670262354285700f31d4e9ed23
 SHA512 
a24272f23da523c2fc0eb0887652c317a9d66d7fb757adcb22a5f1c61c0677480c85fe5ae16f385f15832f102bf248c357806323a006d52f519beabb5a529b20
+DIST moor-2.1.1-deps.tar.xz 1456600 BLAKE2B 
bc0fe03321adfe2f57bc8920712cddb86f1fb8745fc2c05a87b970ac874c5022812963ee3a223412acd2d308a97e583ba888bbaf058b152a8645343c2acf91b6
 SHA512 
c176c7fda29be5493811743e366ce2fa0f3185b578687c699010ae97e0fb38e9b6da93cb8ee1217280c3bf73b487441b69f1bb3c1a14460a20306f285138832d
+DIST moor-2.1.1.tar.gz 3013310 BLAKE2B 
b1627dba55aafff95f93ab16f66581a93385f3dfa921b6efc32d6dbf8c969c56883649292fc4534261ec56cb4c9ef833904c72b88bf3a59cb69571a0cb742ad8
 SHA512 
56569df932fdda4b23f59344c03d0d3f1aa749704ee993bb074117a53a6de5beb7cfe1e3cbd601f3997752cd8755d679b10ed22fa17e4c76a05d6b063e4ff787

diff --git a/sys-apps/moor/moor-2.1.1.ebuild b/sys-apps/moor/moor-2.1.1.ebuild
new file mode 100644
index 000000000000..b1b78a8298ed
--- /dev/null
+++ b/sys-apps/moor/moor-2.1.1.ebuild
@@ -0,0 +1,57 @@
+# Copyright 2023-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit go-env go-module eapi9-ver
+
+DESCRIPTION="Pager designed to do the right thing without any configuration"
+HOMEPAGE="https://github.com/walles/moor";
+SRC_URI="https://github.com/walles/moor/archive/refs/tags/v${PV}.tar.gz -> 
moor-${PV}.tar.gz"
+SRC_URI+=" 
https://dev.gentoo.org/~sam/distfiles/${CATEGORY}/moor/moor-${PV}-deps.tar.xz";
+
+LICENSE="BSD-2 BSD MIT"
+# Dependent licenses
+LICENSE+="  Apache-2.0 BSD BSD-2 MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc64"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+BDEPEND="
+       test? (
+               app-arch/bzip2
+               app-arch/xz-utils
+       )
+"
+
+src_unpack() {
+       default
+
+       if [[ -d "${WORKDIR}"/vendor ]] ; then
+               mv "${WORKDIR}"/vendor "${S}"/vendor || die
+       fi
+       go-env_set_compile_environment
+}
+
+src_compile() {
+       # https://github.com/walles/moor/blob/master/build.sh#L28
+       ego build -ldflags="-w -X main.versionString=${PV}" -o moor ./cmd/moor
+}
+
+src_test() {
+       # From test.sh (we don't run that because it has some linting etc)
+       ego test -timeout 20s ./...
+}
+
+src_install() {
+       dobin moor
+       doman moor.1
+       einstalldocs
+}
+
+pkg_postinst() {
+       if ver_replacing -lt 2 ; then
+               ewarn "moar has been renamed to moor, please update any 
scripts."
+       fi
+}

Reply via email to