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 DD00815808B for ; Mon, 7 Feb 2022 19:03:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2AAA72BC01F; Mon, 7 Feb 2022 19:03:36 +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 E51DA2BC01F for ; Mon, 7 Feb 2022 19:03:35 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 E6027342FBB for ; Mon, 7 Feb 2022 19:03:33 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 444E02DD for ; Mon, 7 Feb 2022 19:03:31 +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: <1644260600.a9634067c53a2f3eb3aec8b607cbfda31ae2431e.mattst88@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-drivers/xf86-video-ati/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-drivers/xf86-video-ati/xf86-video-ati-19.1.0.ebuild X-VCS-Directories: x11-drivers/xf86-video-ati/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: a9634067c53a2f3eb3aec8b607cbfda31ae2431e X-VCS-Branch: master Date: Mon, 7 Feb 2022 19:03:31 +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: 4138afb7-0cc8-448f-99ea-da01724b1191 X-Archives-Hash: 734b83dabbcf20ced8f3f40667a173b5 commit: a9634067c53a2f3eb3aec8b607cbfda31ae2431e Author: Matt Turner gentoo org> AuthorDate: Mon Feb 7 19:01:17 2022 +0000 Commit: Matt Turner gentoo org> CommitDate: Mon Feb 7 19:03:20 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a9634067 x11-drivers/xf86-video-ati: Drop old versions Signed-off-by: Matt Turner gentoo.org> .../xf86-video-ati/xf86-video-ati-19.1.0.ebuild | 53 ---------------------- 1 file changed, 53 deletions(-) diff --git a/x11-drivers/xf86-video-ati/xf86-video-ati-19.1.0.ebuild b/x11-drivers/xf86-video-ati/xf86-video-ati-19.1.0.ebuild deleted file mode 100644 index 70b6b7db0934..000000000000 --- a/x11-drivers/xf86-video-ati/xf86-video-ati-19.1.0.ebuild +++ /dev/null @@ -1,53 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -XORG_DRI=always -inherit linux-info xorg-3 - -if [[ ${PV} == 9999* ]]; then - SRC_URI="" -else - KEYWORDS="~alpha amd64 ~ia64 ppc ppc64 ~riscv sparc x86" -fi - -DESCRIPTION="ATI video driver" -HOMEPAGE="https://www.x.org/wiki/ati/" - -IUSE="udev" - -RDEPEND=">=x11-libs/libdrm-2.4.89[video_cards_radeon] - >=x11-libs/libpciaccess-0.8.0 - x11-base/xorg-server[-minimal] - udev? ( virtual/libudev:= )" -DEPEND="${RDEPEND} - x11-base/xorg-proto" - -PATCHES=( - "${FILESDIR}"/${P}-Fix-link-failure-with-gcc-10.patch -) - -pkg_pretend() { - if use kernel_linux; then - if kernel_is -ge 3 9; then - CONFIG_CHECK="~!DRM_RADEON_UMS ~!FB_RADEON" - else - CONFIG_CHECK="~DRM_RADEON_KMS ~!FB_RADEON" - fi - fi - check_extra_config -} - -pkg_setup() { - linux-info_pkg_setup - xorg-3_pkg_setup -} - -src_configure() { - local XORG_CONFIGURE_OPTIONS=( - --enable-glamor - $(use_enable udev) - ) - xorg-3_src_configure -}