diff --git a/net-nntp/nzb-monkey-go/nzb-monkey-go-0.3.3-r1.ebuild b/net-nntp/nzb-monkey-go/nzb-monkey-go-0.3.3-r1.ebuild new file mode 100644 index 0000000000..19e1f74b84 --- /dev/null +++ b/net-nntp/nzb-monkey-go/nzb-monkey-go-0.3.3-r1.ebuild @@ -0,0 +1,30 @@ +# 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" + +BDEPEND=">=dev-lang/go-1.25.0" + +src_compile() { + ego build -ldflags="-X main.appVersion=${PV}" +} + +src_install() { + dobin nzb-monkey-go + einstalldocs +}