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 5EFAF158083 for ; Wed, 25 Sep 2024 02:32:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6AC892BC0BC; Wed, 25 Sep 2024 02:32:43 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 54C512BC0BC for ; Wed, 25 Sep 2024 02:32:43 +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 9DD313430A9 for ; Wed, 25 Sep 2024 02:32:42 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 25D0827ED for ; Wed, 25 Sep 2024 02:32:39 +0000 (UTC) From: "Matt Turner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Turner" Message-ID: <1727231552.d017aced1c9e11f9cfa5fffbad654966a26411d7.mattst88@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-drivers/xf86-video-amdgpu/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-drivers/xf86-video-amdgpu/xf86-video-amdgpu-23.0.0.ebuild x11-drivers/xf86-video-amdgpu/xf86-video-amdgpu-9999.ebuild X-VCS-Directories: x11-drivers/xf86-video-amdgpu/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: d017aced1c9e11f9cfa5fffbad654966a26411d7 X-VCS-Branch: master Date: Wed, 25 Sep 2024 02:32:39 +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: e3fcbe85-877f-4598-b2ac-b9c3ec3ab0d8 X-Archives-Hash: 6865a0d8bb64b99714385251987ff849 commit: d017aced1c9e11f9cfa5fffbad654966a26411d7 Author: Matt Turner gentoo org> AuthorDate: Wed Sep 25 02:25:07 2024 +0000 Commit: Matt Turner gentoo org> CommitDate: Wed Sep 25 02:32:32 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d017aced x11-drivers/xf86-video-amdgpu: Drop empty global assignments Signed-off-by: Matt Turner gentoo.org> x11-drivers/xf86-video-amdgpu/xf86-video-amdgpu-23.0.0.ebuild | 4 +--- x11-drivers/xf86-video-amdgpu/xf86-video-amdgpu-9999.ebuild | 4 +--- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/x11-drivers/xf86-video-amdgpu/xf86-video-amdgpu-23.0.0.ebuild b/x11-drivers/xf86-video-amdgpu/xf86-video-amdgpu-23.0.0.ebuild index 1d64aae7a7e5..9c0594c08fcc 100644 --- a/x11-drivers/xf86-video-amdgpu/xf86-video-amdgpu-23.0.0.ebuild +++ b/x11-drivers/xf86-video-amdgpu/xf86-video-amdgpu-23.0.0.ebuild @@ -6,9 +6,7 @@ XORG_DRI="always" XORG_TARBALL_SUFFIX="xz" inherit xorg-3 -if [[ ${PV} == 9999* ]]; then - SRC_URI="" -else +if [[ ${PV} != 9999* ]]; then KEYWORDS="amd64 arm64 ~loong ppc64 ~riscv x86" fi diff --git a/x11-drivers/xf86-video-amdgpu/xf86-video-amdgpu-9999.ebuild b/x11-drivers/xf86-video-amdgpu/xf86-video-amdgpu-9999.ebuild index be87b71005b9..a240e314aea0 100644 --- a/x11-drivers/xf86-video-amdgpu/xf86-video-amdgpu-9999.ebuild +++ b/x11-drivers/xf86-video-amdgpu/xf86-video-amdgpu-9999.ebuild @@ -6,9 +6,7 @@ XORG_DRI="always" XORG_TARBALL_SUFFIX="xz" inherit xorg-3 -if [[ ${PV} == 9999* ]]; then - SRC_URI="" -else +if [[ ${PV} != 9999* ]]; then KEYWORDS="~amd64 ~arm64 ~loong ~ppc64 ~riscv ~x86" fi