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

Signed-off-by: Sebastian Engel <sighunter@gmx.de>
This commit is contained in:
Sebastian Engel
2025-05-22 23:59:10 +02:00
parent 62f5cec216
commit 0c03ae3d5c
2 changed files with 30 additions and 0 deletions

View File

@@ -1,2 +1,4 @@
DIST nzb-monkey-go-0.1.16-deps.tar.xz 20887516 BLAKE2B aa63a96686dab538158005cb20a128cce64292b228621111f20dd56171c43ab1e60314b74217586eb61fce31d79c79153560bea09eae1d7c2de97573183d6468 SHA512 974c51b4cd5876713c52717eb802a676a90dcd56657939f94bcfb550940fa7262bc125f0e6063e60c0ff5c94446a59352ffd3cceacd31796f3dba72f003be872
DIST nzb-monkey-go-0.1.16.tar.gz 604216 BLAKE2B d494be3e737421bb1556355b9bdb61cb8fa702334deab0b243df66b782b95af760612a837ec33896635e1d25588933aa54580d48ff6bc91b20ad2c5ec56f7c16 SHA512 b2409c031b85c4811390f090ccd1e146d8c6d32d8f5a48a1d533610157f9398989e1841bfdc6dcdda95229c75be942426376af613eb6e327ee0a245fd7d7a54c
DIST nzb-monkey-go-0.1.17-deps.tar.xz 20641124 BLAKE2B b06627978c112ae7391f01dca409d8dee420975e97659306cd1aa39c4c4c90e4cc4dfee9497480e45592f974245dfe0178e36661e7022c1b4f9486cf75fe4886 SHA512 af80b223098f9413ab6f4950d3d141edbe961c3b6a63207987cb8b1db0b8fe47529db8ec4729520ae95bf9945e67118d71db2ce91504ee88a30c0f93075dd556
DIST nzb-monkey-go-0.1.17.tar.gz 604441 BLAKE2B 9b05bf584a726680375a19bb286f213b90d5cc6471f64f16afc42928a7c7d84d8db26446dc907abcf1fdf0d5304e3fa5ae20585901632a3ab13830cc02b5eb0a SHA512 840cb2758abe644262247ace45ef910fe2ad93664ea6f3bdae9b2116c17231564e9a817cd03e270098221e1015004b7718101849d9f0d3beb75e5e1640fb0a8e

View File

@@ -0,0 +1,28 @@
# Copyright 2024 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
}