net-nntp/nzb-monkey-go: add 0.2.1

Signed-off-by: Sebastian Engel <sighunter@gmx.de>
This commit is contained in:
Sebastian Engel
2026-02-04 10:50:55 +01:00
parent 3e0a01fb86
commit ace51ee8b5
2 changed files with 30 additions and 0 deletions

View File

@@ -1,2 +1,4 @@
DIST nzb-monkey-go-0.1.19-deps.tar.xz 20850076 BLAKE2B 91a19e5320e0d7fbf5e57410f5c88d2b65ca7a43a0ba8a646289bf4fafb7db2b146a51fc4b21f7604ee32e66f4bd0c72557a112d3820a1c579a1b0b840ea8ca6 SHA512 4c4746d2e1136723ca3ee127c9a78fe7007a044af595bf0410e071f75417dd6238bf4fdff9e2275111237572dbd1d6fae45a17166e39ff9d27fc69374bc1854e
DIST nzb-monkey-go-0.1.19.tar.gz 605758 BLAKE2B dfef4da395628f8e9bef082b834c77cb162d23e909dd24765b0a0228bd92e035b617f72e8f4efe3dfffcdc9ffbf37727677f895725c44173491aca97d7cc6392 SHA512 0a47704185b677762738966ecc62952557995fc73f002a3221262d261fd4a1a975b03598b3514132d513275c2646f204cac08681cdb26ddb459add84f8601701
DIST nzb-monkey-go-0.2.1-deps.tar.xz 20948748 BLAKE2B 89ac641de7988a86f1fd67f676f3cdeb95e8985b3e41225a0830aa0ba54e9d89d9a5db3d77a9870cd683496bd80b35553b95124d3b0ed664873aaddfad358e68 SHA512 6e37fd47e4edad6aaba0e72e4dc50a37de82eaffeda3276cb127faa4e24d8e1e050e9c41acb9bfb03992680f2ddb5b46af62bd51ef741677e8a89c7bb71e4dda
DIST nzb-monkey-go-0.2.1.tar.gz 608279 BLAKE2B eca485b8574fbb4caa486c46926f475103f8ce76b1585c9e166544c63d6b399b285de06cf0ea2924b6f022542bf879b24cc83707e7b490048af290a4bf350d23 SHA512 589ab48b4520cefd22bf27b62bbf1a1cea33f092722c8b78b7d2a684994feba6607a3d8020786994f651fc8e182e9b092a18f38390e6a9dd6cac594a837868bf

View File

@@ -0,0 +1,28 @@
# Copyright 2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit go-module
DESCRIPTION="Golang version of the NZB Monkey with included NZB direct search"
HOMEPAGE="https://github.com/Tensai75/nzb-monkey-go"
SRC_URI="
https://github.com/Tensai75/nzb-monkey-go/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz
https://gitlab.com/api/v4/projects/64330835/packages/generic/${PN}/${PV}/${P}-deps.tar.xz
"
LICENSE="MIT"
# vendored licenses
LICENSE+=" Apache-2.0 BSD BSD-2 MIT"
SLOT="0"
KEYWORDS="~amd64"
src_compile() {
ego build -ldflags="-X main.appVersion=${PV}"
}
src_install() {
dobin nzb-monkey-go
einstalldocs
}