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 2693515817D for ; Wed, 5 Jun 2024 01:18:55 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 20C25E2BD5; Wed, 5 Jun 2024 01:18:54 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id EEE38E2BD5 for ; Wed, 5 Jun 2024 01:18:53 +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 E38E733BF60 for ; Wed, 5 Jun 2024 01:18:52 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 29BD71C6C for ; Wed, 5 Jun 2024 01:18:51 +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: <1717550326.6ab7542ccfc101733dba400444090ec13d31a49d.mattst88@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-drivers/xf86-video-intel/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-drivers/xf86-video-intel/xf86-video-intel-2.99.917_p20230201.ebuild x11-drivers/xf86-video-intel/xf86-video-intel-9999.ebuild X-VCS-Directories: x11-drivers/xf86-video-intel/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: 6ab7542ccfc101733dba400444090ec13d31a49d X-VCS-Branch: master Date: Wed, 5 Jun 2024 01:18:51 +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: de688327-ed0a-4fb8-bbc0-59cfce87854b X-Archives-Hash: 387c3e8f00665b6e6ac1920de251961a commit: 6ab7542ccfc101733dba400444090ec13d31a49d Author: Matt Turner gentoo org> AuthorDate: Wed Jun 5 01:16:13 2024 +0000 Commit: Matt Turner gentoo org> CommitDate: Wed Jun 5 01:18:46 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6ab7542c x11-drivers/xf86-video-intel: Remove empty global assignment Signed-off-by: Matt Turner gentoo.org> .../xf86-video-intel/xf86-video-intel-2.99.917_p20230201.ebuild | 4 +--- x11-drivers/xf86-video-intel/xf86-video-intel-9999.ebuild | 4 +--- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/x11-drivers/xf86-video-intel/xf86-video-intel-2.99.917_p20230201.ebuild b/x11-drivers/xf86-video-intel/xf86-video-intel-2.99.917_p20230201.ebuild index 56e21fb2c2f5..284517e9312b 100644 --- a/x11-drivers/xf86-video-intel/xf86-video-intel-2.99.917_p20230201.ebuild +++ b/x11-drivers/xf86-video-intel/xf86-video-intel-2.99.917_p20230201.ebuild @@ -7,9 +7,7 @@ XORG_DRI=dri XORG_EAUTORECONF=yes inherit linux-info xorg-3 flag-o-matic -if [[ ${PV} == 9999* ]]; then - SRC_URI="" -else +if [[ ${PV} != 9999* ]]; then KEYWORDS="amd64 x86" COMMIT_ID="b74b67f0f321875492968f7097b9d6e82a66d7df" SRC_URI="https://gitlab.freedesktop.org/xorg/driver/xf86-video-intel/-/archive/${COMMIT_ID}/${P}.tar.bz2" diff --git a/x11-drivers/xf86-video-intel/xf86-video-intel-9999.ebuild b/x11-drivers/xf86-video-intel/xf86-video-intel-9999.ebuild index bbf5645f7c9c..0fde7595ecff 100644 --- a/x11-drivers/xf86-video-intel/xf86-video-intel-9999.ebuild +++ b/x11-drivers/xf86-video-intel/xf86-video-intel-9999.ebuild @@ -7,9 +7,7 @@ XORG_DRI=dri XORG_EAUTORECONF=yes inherit linux-info xorg-3 flag-o-matic -if [[ ${PV} == 9999* ]]; then - SRC_URI="" -else +if [[ ${PV} != 9999* ]]; then KEYWORDS="~amd64 ~x86" COMMIT_ID="" SRC_URI="https://gitlab.freedesktop.org/xorg/driver/xf86-video-intel/-/archive/${COMMIT_ID}/${P}.tar.bz2"