From 02ad1270aede79986317b7c2880bfe76b0ee7aea Mon Sep 17 00:00:00 2001 From: Lucio Sauer Date: Wed, 1 May 2024 17:45:54 +0200 Subject: [PATCH] gui-apps/darkman: fix permanent URL redirect for SRC_URI fix variable order Signed-off-by: Lucio Sauer --- gui-apps/darkman/darkman-1.5.4.ebuild | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/gui-apps/darkman/darkman-1.5.4.ebuild b/gui-apps/darkman/darkman-1.5.4.ebuild index 6f0b4c3430..86e6b45c85 100644 --- a/gui-apps/darkman/darkman-1.5.4.ebuild +++ b/gui-apps/darkman/darkman-1.5.4.ebuild @@ -1,4 +1,4 @@ -# Copyright 2019-2022 Gentoo Authors +# Copyright 2019-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -7,16 +7,16 @@ inherit systemd go-module DESCRIPTION="Framework for dark and light mode transitions" HOMEPAGE="https://gitlab.com/WhyNotHugo/darkman" -SRC_URI="https://gitlab.com/whynothugo/${PN}/-/archive/v${PV}/${PN}-v${PV}.tar.bz2" -SRC_URI+=" https://files.levelnine.at/${P}-vendor.tar.xz" +SRC_URI="https://gitlab.com/WhyNotHugo/${PN}/-/archive/v${PV}/${PN}-v${PV}.tar.bz2 + https://files.levelnine.at/${P}-vendor.tar.xz" + +S="${WORKDIR}/${PN}-v${PV}" LICENSE="ISC" SLOT="0" KEYWORDS="~amd64" IUSE="+man +examples" -S="${WORKDIR}/${PN}-v${PV}" - RDEPEND="app-misc/geoclue" BDEPEND="man? ( app-text/scdoc )"