mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 04:59:14 -07:00
@@ -4,3 +4,5 @@ DIST moor-2.1.1-deps.tar.xz 1456600 BLAKE2B bc0fe03321adfe2f57bc8920712cddb86f1f
|
||||
DIST moor-2.1.1.tar.gz 3013310 BLAKE2B b1627dba55aafff95f93ab16f66581a93385f3dfa921b6efc32d6dbf8c969c56883649292fc4534261ec56cb4c9ef833904c72b88bf3a59cb69571a0cb742ad8 SHA512 56569df932fdda4b23f59344c03d0d3f1aa749704ee993bb074117a53a6de5beb7cfe1e3cbd601f3997752cd8755d679b10ed22fa17e4c76a05d6b063e4ff787
|
||||
DIST moor-2.4.0-deps.tar.xz 1461024 BLAKE2B bcdccd79020a6c461ccc81a4e65af3d7efcd2c0c2101ac2896f779efd8ddd1272fac20125522d9a1528c21949783fe87046f15aef2088c6abcc0aeaa4f446583 SHA512 1f854a03fb58b82baf9ba5be6750c0a043c9d1460e75d775d2ae1acca1574927b5da25270247464ace182b7e2e46d3e447e3f36d345e5da957905b7ddebed14b
|
||||
DIST moor-2.4.0.tar.gz 3013760 BLAKE2B 068070c45b4c673cce9a2242b6c6b9b022dc7e3823cf0d9a074d3c790d17d2a3ba55e9bc16a58e217a1581c03277791bad4ee3261df25ab6ce52f4a338d2e14b SHA512 86b03094931556fc3b689225ea5460c12685c55bf7733efec944cc2f5363f4ef09a5104b0b4d3e8d15da48491cb1077fd4a2c703618c8694aeea69f681885764
|
||||
DIST moor-2.4.1-deps.tar.xz 1461024 BLAKE2B bcdccd79020a6c461ccc81a4e65af3d7efcd2c0c2101ac2896f779efd8ddd1272fac20125522d9a1528c21949783fe87046f15aef2088c6abcc0aeaa4f446583 SHA512 1f854a03fb58b82baf9ba5be6750c0a043c9d1460e75d775d2ae1acca1574927b5da25270247464ace182b7e2e46d3e447e3f36d345e5da957905b7ddebed14b
|
||||
DIST moor-2.4.1.tar.gz 3016333 BLAKE2B dbeae7a1f2d65f83e88c677490332a4c8480367c9934acd3b0277abc495905428934281faf03ab060f1abe0068dfb51d3d9c51121013ff40efa938421ec2f9c7 SHA512 3dcc3b48401853791ad6c38e2fb249c0dd45cd96b33b2e4bc765455b358d658f06ba9732214a778370cc33949d48fe7806445354913df23225d32c9657dd1fd0
|
||||
|
||||
57
sys-apps/moor/moor-2.4.1.ebuild
Normal file
57
sys-apps/moor/moor-2.4.1.ebuild
Normal 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
|
||||
}
|
||||
Reference in New Issue
Block a user