Gentoo Archives: gentoo-commits

From: Matt Turner <mattst88@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-drivers/xf86-video-amdgpu/
Date: Mon, 27 Feb 2023 18:44:12
Message-Id: 1677523444.2062aa29f67ca52c65e690e6034aba6b1dec343a.mattst88@gentoo
1 commit: 2062aa29f67ca52c65e690e6034aba6b1dec343a
2 Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
3 AuthorDate: Mon Feb 27 18:37:21 2023 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Mon Feb 27 18:44:04 2023 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2062aa29
7
8 x11-drivers/xf86-video-amdgpu: Version bump to 23.0.0
9
10 Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
11
12 x11-drivers/xf86-video-amdgpu/Manifest | 1 +
13 .../xf86-video-amdgpu-23.0.0.ebuild | 30 ++++++++++++++++++++++
14 2 files changed, 31 insertions(+)
15
16 diff --git a/x11-drivers/xf86-video-amdgpu/Manifest b/x11-drivers/xf86-video-amdgpu/Manifest
17 index 697730a8d769..3557b19982df 100644
18 --- a/x11-drivers/xf86-video-amdgpu/Manifest
19 +++ b/x11-drivers/xf86-video-amdgpu/Manifest
20 @@ -1 +1,2 @@
21 DIST xf86-video-amdgpu-22.0.0.tar.xz 376956 BLAKE2B 30936b45cce499791272e9194d5180c208e5159d1b3643ce6f261b2e92a30127a55096cdb07391cb4e91b9b47bbc9a4c5673ee66bdca5cd6f86fc74c7e3d6077 SHA512 95c64e3fef7729ced6e7adc5e81c60cc218f6d8b6604f7b290e86ff52c917426b5102decbf8be8a66c9181ccde6e5dff7083dca8cc0c493a39e82625b5c7cb2a
22 +DIST xf86-video-amdgpu-23.0.0.tar.xz 381268 BLAKE2B f2d6c4e3548d4a5befb3f24d2a73924522ad111d85be4cd8520987d16b24de4ca80a22159f52d1f5cef3812628f14070dd62e013ab07603e053865a5975c8ab4 SHA512 bf26f147629a34e84a0ae8435119e170b9c95edafcab1995b63bb8f55abef32f2efbf4536eb070e64b2ae1460424b1b27a4206cb9836d33ddc6dfbee404f718b
23
24 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
25 new file mode 100644
26 index 000000000000..d495e0b881f3
27 --- /dev/null
28 +++ b/x11-drivers/xf86-video-amdgpu/xf86-video-amdgpu-23.0.0.ebuild
29 @@ -0,0 +1,30 @@
30 +# Copyright 1999-2023 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=7
34 +XORG_DRI="always"
35 +XORG_TARBALL_SUFFIX="xz"
36 +inherit xorg-3
37 +
38 +if [[ ${PV} == 9999* ]]; then
39 + SRC_URI=""
40 +else
41 + KEYWORDS="~amd64 ~loong ~ppc64 ~riscv ~x86"
42 +fi
43 +
44 +DESCRIPTION="Accelerated Open Source driver for AMDGPU cards"
45 +
46 +IUSE="udev"
47 +
48 +RDEPEND=">=x11-libs/libdrm-2.4.89[video_cards_amdgpu]
49 + x11-base/xorg-server[-minimal]
50 + udev? ( virtual/libudev:= )"
51 +DEPEND="${RDEPEND}"
52 +
53 +src_configure() {
54 + local XORG_CONFIGURE_OPTIONS=(
55 + --enable-glamor
56 + $(use_enable udev)
57 + )
58 + xorg-3_src_configure
59 +}