Accepting request 479982 from home:pluskalm:branches:X11:XOrg

- Update to version 1.3.0:

OBS-URL: https://build.opensuse.org/request/show/479982
OBS-URL: https://build.opensuse.org/package/show/X11:XOrg/xf86-video-amdgpu?expand=0&rev=31
This commit is contained in:
Stefan Dirsch 2017-03-16 13:20:42 +00:00 committed by Git OBS Bridge
parent fdb214d4f0
commit c4bcd66c6c
6 changed files with 23 additions and 11 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:275b1aac5f127f55ba3d7480a1df89eace1d02650e24e46908067fc875e76c8f
size 388108

Binary file not shown.

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:c1630f228938be949273f72b29ae70822dde064ad79c3ccb14d55f427e3f4e70
size 386785

Binary file not shown.

View File

@ -1,3 +1,16 @@
-------------------------------------------------------------------
Thu Mar 16 11:57:28 UTC 2017 - mpluskal@suse.com
- Update to version 1.3.0:
* Allow TearFree to be toggled at runtime via an RandR output
property "TearFree". The xorg.conf option "TearFree" now
controls the default value of the output properties.
* Use libdrm_amdgpu functionality to determine the GPU marketing
name, remove corresponding tables from this driver.
* Use DRM render nodes for DRI3 clients when available.
* Plus many other improvements and fixes.
- Make building more verbose
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Feb 22 01:54:59 UTC 2017 - sndirsch@suse.com Wed Feb 22 01:54:59 UTC 2017 - sndirsch@suse.com

View File

@ -20,9 +20,8 @@
%if 0%{?suse_version} < 1330 %if 0%{?suse_version} < 1330
%define pci_ids_dir %{_sysconfdir}/X11/xorg_pci_ids %define pci_ids_dir %{_sysconfdir}/X11/xorg_pci_ids
%endif %endif
Name: xf86-video-amdgpu Name: xf86-video-amdgpu
Version: 1.2.0 Version: 1.3.0
Release: 0 Release: 0
Summary: AMDGPU video driver for the Xorg X server Summary: AMDGPU video driver for the Xorg X server
License: MIT License: MIT
@ -36,7 +35,7 @@ BuildRequires: Mesa-devel
BuildRequires: autoconf >= 2.6.0 BuildRequires: autoconf >= 2.6.0
BuildRequires: automake BuildRequires: automake
BuildRequires: libtool BuildRequires: libtool
BuildRequires: pkg-config BuildRequires: pkgconfig
BuildRequires: pkgconfig(fontsproto) BuildRequires: pkgconfig(fontsproto)
BuildRequires: pkgconfig(gbm) BuildRequires: pkgconfig(gbm)
BuildRequires: pkgconfig(libdrm) >= 2.4.58 BuildRequires: pkgconfig(libdrm) >= 2.4.58
@ -66,19 +65,19 @@ Its autodetects whether your hardware has a CI or newer AMD Graphics Card
%setup -q %setup -q
%build %build
autoreconf -fi autoreconf -fiv
%configure %configure
make %{?_smp_mflags} make %{?_smp_mflags} V=1
%install %install
%make_install %make_install
find %{buildroot} -type f -name "*.la" -delete -print find %{buildroot} -type f -name "*.la" -delete -print
%if 0%{?pci_ids_dir:1} %if 0%{?pci_ids_dir:1}
rm -f %{buildroot}%{_datadir}/X11/xorg.conf.d/10-amdgpu.conf rm -f %{buildroot}%{_datadir}/X11/xorg.conf.d/10-amdgpu.conf
%{__mkdir_p} %{buildroot}%{pci_ids_dir} mkdir -p %{buildroot}%{pci_ids_dir}
cp %{S:3} %{buildroot}%{pci_ids_dir}/ cp %{SOURCE3} %{buildroot}%{pci_ids_dir}/
%else %else
%{__mkdir_p} %{buildroot}%{_sysconfdir}/X11/xorg.conf.d mkdir -p %{buildroot}%{_sysconfdir}/X11/xorg.conf.d
mv %{buildroot}/%{_datadir}/X11/xorg.conf.d/10-amdgpu.conf \ mv %{buildroot}/%{_datadir}/X11/xorg.conf.d/10-amdgpu.conf \
%{buildroot}%{_sysconfdir}/X11/xorg.conf.d/ %{buildroot}%{_sysconfdir}/X11/xorg.conf.d/
%endif %endif