From 90abbd9c70e279a04e9ce6368a4b0f94f0e25606 Mon Sep 17 00:00:00 2001 From: Thomas Oettli Date: Wed, 22 Jul 2026 15:41:31 +0200 Subject: [PATCH] Fix Gentoo ebuild when specific version is installed --- files/ddns-service-9999.ebuild | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/files/ddns-service-9999.ebuild b/files/ddns-service-9999.ebuild index 82e30f8..c9ede1f 100644 --- a/files/ddns-service-9999.ebuild +++ b/files/ddns-service-9999.ebuild @@ -14,18 +14,18 @@ fi inherit ${SCM} distutils-r1 systemd -DESCRIPTION="" +DESCRIPTION="Dynamic DNS update service with CLI administration" HOMEPAGE="https://git.ccc-rheintal.ch/spacefreak/ddns-service/" if [ "${PV#9999}" != "${PV}" ] ; then SRC_URI="" KEYWORDS="" # Needed for tests - S="${WORKDIR}/${PN}" EGIT_CHECKOUT_DIR="${S}" else - SRC_URI="https://git-ccc-rheintal.ch/spacefreak/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + SRC_URI="https://git.ccc-rheintal.ch/spacefreak/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" KEYWORDS="amd64 x86" fi +S="${WORKDIR}/${PN}" LICENSE="GPL-3" SLOT="0"