From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 8B79B158064 for ; Wed, 1 May 2024 15:51:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D44902BC014; Wed, 1 May 2024 15:51:35 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B56442BC014 for ; Wed, 1 May 2024 15:51:35 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A5911335D6E for ; Wed, 1 May 2024 15:51:34 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 21B871776 for ; Wed, 1 May 2024 15:51:33 +0000 (UTC) From: "Lucio Sauer" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Lucio Sauer" Message-ID: <1714578354.02ad1270aede79986317b7c2880bfe76b0ee7aea.watermanpaint@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: gui-apps/darkman/ X-VCS-Repository: repo/proj/guru X-VCS-Files: gui-apps/darkman/darkman-1.5.4.ebuild X-VCS-Directories: gui-apps/darkman/ X-VCS-Committer: watermanpaint X-VCS-Committer-Name: Lucio Sauer X-VCS-Revision: 02ad1270aede79986317b7c2880bfe76b0ee7aea X-VCS-Branch: dev Date: Wed, 1 May 2024 15:51:33 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 65f584bd-9f23-488d-8406-11d4b2ff1c82 X-Archives-Hash: 4d46c1db6abd316ffb37aab681bb7650 commit: 02ad1270aede79986317b7c2880bfe76b0ee7aea Author: Lucio Sauer posteo net> AuthorDate: Wed May 1 15:45:54 2024 +0000 Commit: Lucio Sauer posteo net> CommitDate: Wed May 1 15:45:54 2024 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=02ad1270 gui-apps/darkman: fix permanent URL redirect for SRC_URI fix variable order Signed-off-by: Lucio Sauer posteo.net> 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 )"