sys-apps/moor: add 2.6.1

Signed-off-by: Sam James <sam@gentoo.org>
This commit is contained in:
Sam James
2025-10-18 18:36:37 +01:00
parent 6132201c4a
commit b626d1df4f
2 changed files with 59 additions and 0 deletions

View File

@@ -8,3 +8,5 @@ DIST moor-2.4.1-deps.tar.xz 1461024 BLAKE2B bcdccd79020a6c461ccc81a4e65af3d7efcd
DIST moor-2.4.1.tar.gz 3016333 BLAKE2B dbeae7a1f2d65f83e88c677490332a4c8480367c9934acd3b0277abc495905428934281faf03ab060f1abe0068dfb51d3d9c51121013ff40efa938421ec2f9c7 SHA512 3dcc3b48401853791ad6c38e2fb249c0dd45cd96b33b2e4bc765455b358d658f06ba9732214a778370cc33949d48fe7806445354913df23225d32c9657dd1fd0
DIST moor-2.6.0-deps.tar.xz 1461024 BLAKE2B bcdccd79020a6c461ccc81a4e65af3d7efcd2c0c2101ac2896f779efd8ddd1272fac20125522d9a1528c21949783fe87046f15aef2088c6abcc0aeaa4f446583 SHA512 1f854a03fb58b82baf9ba5be6750c0a043c9d1460e75d775d2ae1acca1574927b5da25270247464ace182b7e2e46d3e447e3f36d345e5da957905b7ddebed14b
DIST moor-2.6.0.tar.gz 3023478 BLAKE2B 2ba710a28ae57878e16a55ae920283aabb6db5d66c23ba6a73470dd7abe51c22add00d1e5f8901e9fb78ec6510c056bf7e6c12011b4abcedb53fa52e7e164398 SHA512 e61ef478a949d62eb20345449a866e3c812ad13de24d84b33929d0b02c2bae4b0517deb4f5a92d2b79cac7b461f214c38ef7873e6b7a840f0bc853bfa282c4d4
DIST moor-2.6.1-deps.tar.xz 1461024 BLAKE2B bcdccd79020a6c461ccc81a4e65af3d7efcd2c0c2101ac2896f779efd8ddd1272fac20125522d9a1528c21949783fe87046f15aef2088c6abcc0aeaa4f446583 SHA512 1f854a03fb58b82baf9ba5be6750c0a043c9d1460e75d775d2ae1acca1574927b5da25270247464ace182b7e2e46d3e447e3f36d345e5da957905b7ddebed14b
DIST moor-2.6.1.tar.gz 3023891 BLAKE2B 977abc18ac7fd12fffbdb8ad93bf19531df0ea00b3ab51dce092d4879f67b5e79f1ca556393d06f71ad020b3978092ec6141acefc3aa67c71af7ccccc681d60f SHA512 e80c4cdefdc1a11d219d2962f5849b337794fae3201da2ae382b8a7fc39c7ba3674760c73ab8b8a8acd289eaf6f62c72a559a8624483cbce6836f2a75ecf92c7

View File

@@ -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
}