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: Sat, 31 Jul 2021 18:01:20
Message-Id: 1627754433.5ab2e9296272ba9d4fe4b798cc0c59b0c0486fb5.mattst88@gentoo
1 commit: 5ab2e9296272ba9d4fe4b798cc0c59b0c0486fb5
2 Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jul 31 17:57:48 2021 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Sat Jul 31 18:00:33 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5ab2e929
7
8 x11-drivers/xf86-video-amdgpu: Version bump to 21.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-21.0.0.ebuild | 29 ++++++++++++++++++++++
14 2 files changed, 30 insertions(+)
15
16 diff --git a/x11-drivers/xf86-video-amdgpu/Manifest b/x11-drivers/xf86-video-amdgpu/Manifest
17 index 6507037239e..65e0f75d74a 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-19.1.0.tar.bz2 441746 BLAKE2B 75906c9b2200174711360e8cf095b8537e62618747afe5ec13f5a36ad8b61001b94e9df675df2026a61e66b6ea05e0e022640d487851d62ca4ed5ce61dd5aae7 SHA512 ccdaa2378492da1a2f3d18fedacd1318c4708da534a8a959276a82730d5420619d83ad1ec8d7835c55655fe56123cd9bffb44e6223c5a97033c01f598af4a173
22 +DIST xf86-video-amdgpu-21.0.0.tar.bz2 448400 BLAKE2B c7a90606b37b646b946f76d083b3d59755df331ffb7e83e4e65a821a8c0e556504b20207d6bb86e80ea98646184549b6388727df543e1e2cbab37600e243fa72 SHA512 44ccc8ddc36f09d1608cf58b6cf85dda090671c46c5643e9453f7d67f4d6850c3c9753eba43539d45773198b8042898a50153b5225780e4b2852410c5521314a
23
24 diff --git a/x11-drivers/xf86-video-amdgpu/xf86-video-amdgpu-21.0.0.ebuild b/x11-drivers/xf86-video-amdgpu/xf86-video-amdgpu-21.0.0.ebuild
25 new file mode 100644
26 index 00000000000..5dc34b7fecc
27 --- /dev/null
28 +++ b/x11-drivers/xf86-video-amdgpu/xf86-video-amdgpu-21.0.0.ebuild
29 @@ -0,0 +1,29 @@
30 +# Copyright 1999-2021 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=7
34 +XORG_DRI="always"
35 +inherit xorg-3
36 +
37 +if [[ ${PV} == 9999* ]]; then
38 + SRC_URI=""
39 +else
40 + KEYWORDS="~amd64 ~ppc64 ~riscv ~x86"
41 +fi
42 +
43 +DESCRIPTION="Accelerated Open Source driver for AMDGPU cards"
44 +
45 +IUSE="udev"
46 +
47 +RDEPEND=">=x11-libs/libdrm-2.4.89[video_cards_amdgpu]
48 + x11-base/xorg-server[-minimal]
49 + udev? ( virtual/libudev:= )"
50 +DEPEND="${RDEPEND}"
51 +
52 +src_configure() {
53 + local XORG_CONFIGURE_OPTIONS=(
54 + --enable-glamor
55 + $(use_enable udev)
56 + )
57 + xorg-3_src_configure
58 +}