From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-1695002-garchives=archives.gentoo.org@lists.gentoo.org>
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 (4096 bits) server-digest SHA256)
	(No client certificate requested)
	by finch.gentoo.org (Postfix) with ESMTPS id 4972C1581F3
	for <garchives@archives.gentoo.org>; Fri, 29 Nov 2024 05:54:06 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id 5675EE0801;
	Fri, 29 Nov 2024 05:54:05 +0000 (UTC)
Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4])
	(using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)
	 key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256)
	(No client certificate requested)
	by pigeon.gentoo.org (Postfix) with ESMTPS id 7078EE0801
	for <gentoo-commits@lists.gentoo.org>; Fri, 29 Nov 2024 05:54:04 +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) server-digest SHA256)
	(No client certificate requested)
	by smtp.gentoo.org (Postfix) with ESMTPS id 9D65E3430BC
	for <gentoo-commits@lists.gentoo.org>; Fri, 29 Nov 2024 05:54:03 +0000 (UTC)
Received: from localhost.localdomain (localhost [IPv6:::1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id AB42BAED
	for <gentoo-commits@lists.gentoo.org>; Fri, 29 Nov 2024 05:54:01 +0000 (UTC)
From: "Sam James" <sam@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Content-Transfer-Encoding: 8bit
Content-type: text/plain; charset=UTF-8
Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" <sam@gentoo.org>
Message-ID: <1732859620.b84eacaae940fcf16ce5c5ae5234d281f8297931.sam@gentoo>
Subject: [gentoo-commits] repo/gentoo:master commit in: app-emulation/virt-manager/
X-VCS-Repository: repo/gentoo
X-VCS-Files: app-emulation/virt-manager/virt-manager-9999.ebuild
X-VCS-Directories: app-emulation/virt-manager/
X-VCS-Committer: sam
X-VCS-Committer-Name: Sam James
X-VCS-Revision: b84eacaae940fcf16ce5c5ae5234d281f8297931
X-VCS-Branch: master
Date: Fri, 29 Nov 2024 05:54:01 +0000 (UTC)
Precedence: bulk
List-Post: <mailto:gentoo-commits@lists.gentoo.org>
List-Help: <mailto:gentoo-commits+help@lists.gentoo.org>
List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org>
List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org>
List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org>
X-BeenThere: gentoo-commits@lists.gentoo.org
X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply
X-Archives-Salt: 7800b628-bdc4-4984-b9cb-fe5fa0aab822
X-Archives-Hash: 628ad43116a5d1d789f45ae170fc3bee

commit:     b84eacaae940fcf16ce5c5ae5234d281f8297931
Author:     Michal Privoznik <michal.privoznik <AT> gmail <DOT> com>
AuthorDate: Fri Nov 29 03:57:54 2024 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Nov 29 05:53:40 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b84eacaa

app-emulation/virt-manager: Update SRC_URI in live ebuild

Ever since virt-manager switched to meson, the dist tar is
compressed using xz not gz. This is why the URI for downloading
new release changed [1]. Update SRC_URI in the live ebuild.

1: https://github.com/virt-manager/virt-manager-web/commit/845d874c8f79e43ee3c9c15a0ef67ee284f9d117
Signed-off-by: Michal Privoznik <michal.privoznik <AT> gmail.com>
Signed-off-by: Sam James <sam <AT> gentoo.org>

 app-emulation/virt-manager/virt-manager-9999.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-emulation/virt-manager/virt-manager-9999.ebuild b/app-emulation/virt-manager/virt-manager-9999.ebuild
index 054d03a48f7f..d31e6ccd1906 100644
--- a/app-emulation/virt-manager/virt-manager-9999.ebuild
+++ b/app-emulation/virt-manager/virt-manager-9999.ebuild
@@ -15,7 +15,7 @@ if [[ ${PV} == *9999* ]]; then
 	SRC_URI=""
 	inherit git-r3
 else
-	SRC_URI="https://releases.pagure.org/${PN}/${P}.tar.gz"
+	SRC_URI="https://releases.pagure.org/${PN}/${P}.tar.xz"
 	KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86"
 fi