Files
xf86-video-amdgpu/xf86-video-amdgpu.spec
Stefan Dirsch 37d3dd30d3 - Update to version 25.0.0
* gitlab CI: add builds against server-21.1-branch
  * Revert "use dixDestroyPixmap() instead of direct driver call"
  * Improve man page formatting
  * Fix segfault on dock suspend, unplug, resume
  * Free output_ids
  * bump minimal xorg version to 1.18
  * drop compat with ancient xserver versions
  * dont check for HAS_DIRTYTRACKING_ROTATION: it's always enabled.
  * dont use obsolete pict_f_transform alias anymore
  * use XNFalloc() instead of xnfalloc
  * use XNFcallocarray() instead of xnfcalloc macro
  * use dixDestroyPixmap() instead of direct driver call
  * ci: compactify redundant declarations via matrix
  * Enable TearFree if it's set to auto and VariableRefresh is enabled
  * Fixed AMDGPUOptions_KMS for align structures 64bit
  * Check GFX12 swizzle mode correctly
  * Fix a crash when initializing with a property with no atoms
  * trivial: Add workflow rules
  * Add missing xorg-server.h header
  * Add support for the meson build system
  * Migrate CI over to meson
  * Drop support for autotools build system
  * trivial: drop unused gitignore
  * trivial: ignore .vscode directory
  * Bump version for 25.0.0 release
  * ci: switch from testing to bookworm
  * ci: use gfx-ci/ci-deb-repo to get latest libdrm
  * Use GBM_BO_USE_FRONT_RENDERING on front_buffer alloc
  * Handling of color management properties
- supersedes U_Fix-segfault-on-dock-suspend-unplug-resume.patch,
  U_Free-output_ids.patch
- adjusted N_amdgpu-present-Check-tiling-for-newer-versions-too.patch
- switched to meson build

OBS-URL: https://build.opensuse.org/package/show/X11:XOrg/xf86-video-amdgpu?expand=0&rev=78
2025-07-29 17:50:29 +00:00

101 lines
3.2 KiB
RPMSpec

#
# spec file for package xf86-video-amdgpu
#
# Copyright (c) 2025 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via https://bugs.opensuse.org/
#
#
%if 0%{?suse_version} < 1330
%define pci_ids_dir %{_sysconfdir}/X11/xorg_pci_ids
%endif
Name: xf86-video-amdgpu
Version: 25.0.0
Release: 0
Summary: AMDGPU video driver for the Xorg X server
License: MIT
Group: System/X11/Servers/XF86_4
URL: https://xorg.freedesktop.org/
Source: https://xorg.freedesktop.org/releases/individual/driver/%{name}-%{version}.tar.xz
Source1: https://xorg.freedesktop.org/releases/individual/driver/%{name}-%{version}.tar.xz.sig
Source2: %{name}.keyring
Source3: amdgpu.ids
# PATCH-FIX-OPENSUSE Workaround to fix crashes when an external monitor is connected bsc#1169222
Patch1: N_amdgpu-present-Check-tiling-for-newer-versions-too.patch
BuildRequires: autoconf >= 2.6.0
BuildRequires: automake
BuildRequires: libtool
BuildRequires: meson
BuildRequires: pkgconfig
BuildRequires: pkgconfig(damageproto)
BuildRequires: pkgconfig(fontsproto)
BuildRequires: pkgconfig(gbm)
BuildRequires: pkgconfig(gl)
BuildRequires: pkgconfig(libdrm) >= 2.4.58
BuildRequires: pkgconfig(libdrm_amdgpu)
BuildRequires: pkgconfig(libudev)
BuildRequires: pkgconfig(pciaccess) >= 0.8.0
BuildRequires: pkgconfig(randrproto)
BuildRequires: pkgconfig(renderproto)
BuildRequires: pkgconfig(videoproto)
BuildRequires: pkgconfig(xextproto)
BuildRequires: pkgconfig(xf86driproto)
BuildRequires: pkgconfig(xorg-macros) >= 1.8
BuildRequires: pkgconfig(xorg-server) >= 1.16
BuildRequires: pkgconfig(xproto)
# This was part of the xorg-x11-driver-video package up to version 7.6
Conflicts: xorg-x11-driver-video <= 7.6
ExcludeArch: s390 s390x
%{x11_abi_videodrv_req}
%description
amdgpu is an Xorg driver for AMD video cards.
Its autodetects whether your hardware has a CI or newer AMD Graphics Card
%prep
%autosetup -p1
%build
# We have some -z now related errors during X default startup (boo#1197994):
# this is directly visible on startup, so easy to test later on.
export SUSE_ZNOW=0
%meson
%meson_build
%install
%meson_install
find %{buildroot} -type f -name "*.la" -delete -print
%if 0%{?pci_ids_dir:1}
rm -f %{buildroot}%{_datadir}/X11/xorg.conf.d/10-amdgpu.conf
mkdir -p %{buildroot}%{pci_ids_dir}
cp %{SOURCE3} %{buildroot}%{pci_ids_dir}/
%endif
%files
%license COPYING
%doc README.md
%dir %{_libdir}/xorg/modules/drivers
%{_libdir}/xorg/modules/drivers/amdgpu_drv.so
%{_mandir}/man4/amdgpu.4%{?ext_man}
%if 0%{?pci_ids_dir:1}
%dir %{pci_ids_dir}
%{pci_ids_dir}/amdgpu.ids
%else
%dir %{_datadir}/X11/xorg.conf.d
%{_datadir}/X11/xorg.conf.d/10-amdgpu.conf
%endif
%changelog