2018-02-18 13:11:54 +00:00
|
|
|
%define bcond_meson() %{lua: do
|
|
|
|
local option = rpm.expand("%{1}")
|
|
|
|
local with = rpm.expand("%{?with_" .. option .. "}")
|
|
|
|
local value = (with ~= '') and "true" or "false"
|
|
|
|
option = option:gsub('_', '-')
|
|
|
|
print(string.format("-D%s=%s", option, value))
|
|
|
|
end}
|
|
|
|
|
|
|
|
%bcond_without libkms
|
|
|
|
%ifarch %{ix86} x86_64
|
|
|
|
%bcond_without intel
|
|
|
|
%else
|
|
|
|
%bcond_with intel
|
|
|
|
%endif
|
|
|
|
%bcond_without radeon
|
|
|
|
%bcond_without amdgpu
|
|
|
|
%bcond_without nouveau
|
|
|
|
%bcond_without vmwgfx
|
|
|
|
%ifarch %{arm}
|
|
|
|
%bcond_without omap
|
|
|
|
%else
|
|
|
|
%bcond_with omap
|
|
|
|
%endif
|
|
|
|
%ifarch %{arm} aarch64
|
|
|
|
%bcond_without exynos
|
|
|
|
%bcond_without freedreno
|
|
|
|
%bcond_without tegra
|
|
|
|
%bcond_without vc4
|
|
|
|
%bcond_without etnaviv
|
|
|
|
%else
|
|
|
|
%bcond_with exynos
|
|
|
|
%bcond_with freedreno
|
|
|
|
%bcond_with tegra
|
|
|
|
%bcond_with vc4
|
|
|
|
%bcond_with etnaviv
|
|
|
|
%endif
|
|
|
|
%bcond_with cairo_tests
|
|
|
|
%bcond_without man_pages
|
|
|
|
%ifarch %{valgrind_arches}
|
2016-10-04 12:50:52 +00:00
|
|
|
%bcond_without valgrind
|
|
|
|
%else
|
2018-02-18 13:11:54 +00:00
|
|
|
%bcond_with valgrind
|
2016-10-04 12:50:52 +00:00
|
|
|
%endif
|
2018-02-18 13:11:54 +00:00
|
|
|
%bcond_with freedreno_kgsl
|
|
|
|
%bcond_without install_test_programs
|
|
|
|
%bcond_without udev
|
2016-10-04 12:50:52 +00:00
|
|
|
|
2016-04-28 13:33:11 +00:00
|
|
|
Name: libdrm
|
|
|
|
Summary: Direct Rendering Manager runtime library
|
2021-07-06 00:56:30 +00:00
|
|
|
Version: 2.4.107
|
2021-04-16 16:24:14 +00:00
|
|
|
Release: 1%{?dist}
|
2016-04-28 13:33:11 +00:00
|
|
|
License: MIT
|
|
|
|
|
2016-07-24 06:49:28 +00:00
|
|
|
URL: https://dri.freedesktop.org
|
2020-05-14 02:53:32 +00:00
|
|
|
Source0: %{url}/libdrm/%{name}-%{version}.tar.xz
|
2019-01-29 01:20:52 +00:00
|
|
|
Source1: README.rst
|
2016-04-28 13:33:11 +00:00
|
|
|
Source2: 91-drm-modeset.rules
|
|
|
|
|
2018-02-18 13:11:54 +00:00
|
|
|
BuildRequires: meson >= 0.43
|
|
|
|
BuildRequires: gcc
|
2016-04-28 13:33:11 +00:00
|
|
|
BuildRequires: libatomic_ops-devel
|
2018-02-18 13:11:54 +00:00
|
|
|
BuildRequires: kernel-headers
|
|
|
|
%if %{with intel}
|
|
|
|
BuildRequires: pkgconfig(pciaccess) >= 0.10
|
|
|
|
%endif
|
|
|
|
#BuildRequires: pkgconfig(cunit) >= 2.1
|
|
|
|
%if %{with cairo_tests}
|
|
|
|
BuildRequires: pkgconfig(cairo)
|
|
|
|
%endif
|
|
|
|
%if %{with man_pages}
|
2021-04-16 16:24:14 +00:00
|
|
|
BuildRequires: python3-docutils
|
2018-02-18 13:11:54 +00:00
|
|
|
%endif
|
2016-10-04 12:50:52 +00:00
|
|
|
%if %{with valgrind}
|
2016-04-28 13:33:11 +00:00
|
|
|
BuildRequires: valgrind-devel
|
2014-11-19 08:50:31 +00:00
|
|
|
%endif
|
2018-02-18 13:11:54 +00:00
|
|
|
%if %{with udev}
|
|
|
|
BuildRequires: pkgconfig(udev)
|
|
|
|
%endif
|
2018-11-19 19:22:55 +00:00
|
|
|
BuildRequires: chrpath
|
2008-12-19 07:00:11 +00:00
|
|
|
|
2009-02-01 07:08:35 +00:00
|
|
|
# hardcode the 666 instead of 660 for device nodes
|
2018-03-06 08:08:33 +00:00
|
|
|
Patch1001: libdrm-make-dri-perms-okay.patch
|
2009-02-01 07:08:35 +00:00
|
|
|
# remove backwards compat not needed on Fedora
|
2018-03-06 08:08:33 +00:00
|
|
|
Patch1002: libdrm-2.4.0-no-bc.patch
|
2009-08-26 02:01:26 +00:00
|
|
|
|
2005-09-12 18:13:08 +00:00
|
|
|
%description
|
2007-02-19 19:44:34 +00:00
|
|
|
Direct Rendering Manager runtime library
|
2005-09-12 18:13:08 +00:00
|
|
|
|
|
|
|
%package devel
|
2016-04-28 13:33:11 +00:00
|
|
|
Summary: Direct Rendering Manager development package
|
|
|
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
2016-10-04 12:50:52 +00:00
|
|
|
Requires: kernel-headers
|
2005-09-12 18:13:08 +00:00
|
|
|
|
|
|
|
%description devel
|
2016-04-28 13:33:11 +00:00
|
|
|
Direct Rendering Manager development package.
|
2005-09-12 18:13:08 +00:00
|
|
|
|
2018-02-18 13:11:54 +00:00
|
|
|
%if %{with install_test_programs}
|
2011-04-18 16:04:25 +00:00
|
|
|
%package -n drm-utils
|
2016-04-28 13:33:11 +00:00
|
|
|
Summary: Direct Rendering Manager utilities
|
|
|
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
2011-04-18 16:04:25 +00:00
|
|
|
|
|
|
|
%description -n drm-utils
|
|
|
|
Utility programs for the kernel DRM interface. Will void your warranty.
|
2018-02-18 13:11:54 +00:00
|
|
|
%endif
|
2011-04-18 16:04:25 +00:00
|
|
|
|
2005-09-12 18:13:08 +00:00
|
|
|
%prep
|
2016-04-28 13:33:11 +00:00
|
|
|
%autosetup -p1
|
2005-09-12 18:13:08 +00:00
|
|
|
|
|
|
|
%build
|
2018-02-18 13:11:54 +00:00
|
|
|
%meson \
|
|
|
|
%{bcond_meson libkms} \
|
|
|
|
%{bcond_meson intel} \
|
|
|
|
%{bcond_meson radeon} \
|
|
|
|
%{bcond_meson amdgpu} \
|
|
|
|
%{bcond_meson nouveau} \
|
|
|
|
%{bcond_meson vmwgfx} \
|
|
|
|
%{bcond_meson omap} \
|
|
|
|
%{bcond_meson exynos} \
|
|
|
|
%{bcond_meson freedreno} \
|
|
|
|
%{bcond_meson tegra} \
|
|
|
|
%{bcond_meson vc4} \
|
|
|
|
%{bcond_meson etnaviv} \
|
|
|
|
%{bcond_meson cairo_tests} \
|
|
|
|
%{bcond_meson man_pages} \
|
|
|
|
%{bcond_meson valgrind} \
|
|
|
|
%{bcond_meson freedreno_kgsl} \
|
|
|
|
%{bcond_meson install_test_programs} \
|
|
|
|
%{bcond_meson udev} \
|
|
|
|
%{nil}
|
|
|
|
%meson_build
|
2005-09-12 18:13:08 +00:00
|
|
|
|
|
|
|
%install
|
2018-02-18 13:11:54 +00:00
|
|
|
%meson_install
|
|
|
|
%if %{with install_test_programs}
|
2018-11-19 19:22:55 +00:00
|
|
|
chrpath -d %{_vpath_builddir}/tests/drmdevice
|
2018-02-18 13:11:54 +00:00
|
|
|
install -Dpm0755 -t %{buildroot}%{_bindir} %{_vpath_builddir}/tests/drmdevice
|
|
|
|
%endif
|
|
|
|
%if %{with udev}
|
|
|
|
install -Dpm0644 -t %{buildroot}%{_udevrulesdir} %{S:2}
|
|
|
|
%endif
|
2019-01-29 01:20:52 +00:00
|
|
|
mkdir -p %{buildroot}%{_docdir}/libdrm
|
|
|
|
cp %{SOURCE1} %{buildroot}%{_docdir}/libdrm
|
2005-09-12 18:13:08 +00:00
|
|
|
|
2018-02-02 09:23:11 +00:00
|
|
|
%ldconfig_scriptlets
|
2005-09-12 18:13:08 +00:00
|
|
|
|
|
|
|
%files
|
2019-01-29 01:20:52 +00:00
|
|
|
%doc README.rst
|
2005-12-01 03:19:30 +00:00
|
|
|
%{_libdir}/libdrm.so.2
|
2008-12-19 06:52:51 +00:00
|
|
|
%{_libdir}/libdrm.so.2.4.0
|
2018-02-18 13:11:54 +00:00
|
|
|
%dir %{_datadir}/libdrm
|
|
|
|
%if %{with libkms}
|
|
|
|
%{_libdir}/libkms.so.1
|
|
|
|
%{_libdir}/libkms.so.1.0.0
|
|
|
|
%endif
|
|
|
|
%if %{with intel}
|
2008-09-30 07:43:43 +00:00
|
|
|
%{_libdir}/libdrm_intel.so.1
|
|
|
|
%{_libdir}/libdrm_intel.so.1.0.0
|
2012-02-22 14:57:37 +00:00
|
|
|
%endif
|
2018-02-18 13:11:54 +00:00
|
|
|
%if %{with radeon}
|
|
|
|
%{_libdir}/libdrm_radeon.so.1
|
|
|
|
%{_libdir}/libdrm_radeon.so.1.0.1
|
|
|
|
%endif
|
|
|
|
%if %{with amdgpu}
|
|
|
|
%{_libdir}/libdrm_amdgpu.so.1
|
|
|
|
%{_libdir}/libdrm_amdgpu.so.1.0.0
|
|
|
|
%{_datadir}/libdrm/amdgpu.ids
|
|
|
|
%endif
|
|
|
|
%if %{with nouveau}
|
|
|
|
%{_libdir}/libdrm_nouveau.so.2
|
|
|
|
%{_libdir}/libdrm_nouveau.so.2.0.0
|
|
|
|
%endif
|
|
|
|
%if %{with omap}
|
2012-05-12 02:55:27 +00:00
|
|
|
%{_libdir}/libdrm_omap.so.1
|
|
|
|
%{_libdir}/libdrm_omap.so.1.0.0
|
|
|
|
%endif
|
2018-02-18 13:11:54 +00:00
|
|
|
%if %{with exynos}
|
2016-04-09 15:02:05 +00:00
|
|
|
%{_libdir}/libdrm_exynos.so.1
|
|
|
|
%{_libdir}/libdrm_exynos.so.1.0.0
|
2018-02-18 13:11:54 +00:00
|
|
|
%endif
|
|
|
|
%if %{with freedreno}
|
2014-07-07 12:38:00 +00:00
|
|
|
%{_libdir}/libdrm_freedreno.so.1
|
|
|
|
%{_libdir}/libdrm_freedreno.so.1.0.0
|
2018-02-18 13:11:54 +00:00
|
|
|
%endif
|
|
|
|
%if %{with tegra}
|
2016-04-09 15:02:05 +00:00
|
|
|
%{_libdir}/libdrm_tegra.so.0
|
|
|
|
%{_libdir}/libdrm_tegra.so.0.0.0
|
2014-07-07 12:38:00 +00:00
|
|
|
%endif
|
2018-02-18 13:11:54 +00:00
|
|
|
%if %{with etnaviv}
|
|
|
|
%{_libdir}/libdrm_etnaviv.so.1
|
|
|
|
%{_libdir}/libdrm_etnaviv.so.1.0.0
|
|
|
|
%endif
|
|
|
|
%if %{with udev}
|
2017-07-19 15:44:33 +00:00
|
|
|
%{_udevrulesdir}/91-drm-modeset.rules
|
2017-01-28 04:12:24 +00:00
|
|
|
%endif
|
2011-04-18 16:04:25 +00:00
|
|
|
|
2005-09-12 18:13:08 +00:00
|
|
|
%files devel
|
2013-01-22 18:10:46 +00:00
|
|
|
%dir %{_includedir}/libdrm
|
2010-04-01 03:29:52 +00:00
|
|
|
%{_includedir}/libdrm/drm.h
|
2012-01-20 10:10:54 +00:00
|
|
|
%{_includedir}/libdrm/drm_fourcc.h
|
2010-04-01 03:29:52 +00:00
|
|
|
%{_includedir}/libdrm/drm_mode.h
|
|
|
|
%{_includedir}/libdrm/drm_sarea.h
|
2010-04-08 07:56:52 +00:00
|
|
|
%{_includedir}/libdrm/*_drm.h
|
2005-09-12 18:13:08 +00:00
|
|
|
%{_libdir}/libdrm.so
|
2018-02-18 13:11:54 +00:00
|
|
|
%{_libdir}/pkgconfig/libdrm.pc
|
|
|
|
%if %{with libkms}
|
|
|
|
%{_includedir}/libkms/
|
|
|
|
%{_libdir}/libkms.so
|
|
|
|
%{_libdir}/pkgconfig/libkms.pc
|
2014-07-07 12:38:00 +00:00
|
|
|
%endif
|
2018-02-18 13:11:54 +00:00
|
|
|
%if %{with intel}
|
|
|
|
%{_includedir}/libdrm/intel_*.h
|
|
|
|
%{_libdir}/libdrm_intel.so
|
|
|
|
%{_libdir}/pkgconfig/libdrm_intel.pc
|
2012-05-12 02:55:27 +00:00
|
|
|
%endif
|
2018-02-18 13:11:54 +00:00
|
|
|
%if %{with radeon}
|
|
|
|
%{_includedir}/libdrm/radeon_*.h
|
|
|
|
%{_includedir}/libdrm/r600_pci_ids.h
|
2008-12-19 06:52:51 +00:00
|
|
|
%{_libdir}/libdrm_radeon.so
|
2018-02-18 13:11:54 +00:00
|
|
|
%{_libdir}/pkgconfig/libdrm_radeon.pc
|
|
|
|
%endif
|
|
|
|
%if %{with amdgpu}
|
|
|
|
%{_includedir}/libdrm/amdgpu.h
|
2015-08-24 21:49:31 +00:00
|
|
|
%{_libdir}/libdrm_amdgpu.so
|
2018-02-18 13:11:54 +00:00
|
|
|
%{_libdir}/pkgconfig/libdrm_amdgpu.pc
|
|
|
|
%endif
|
|
|
|
%if %{with nouveau}
|
|
|
|
%{_includedir}/libdrm/nouveau/
|
2009-02-07 00:28:39 +00:00
|
|
|
%{_libdir}/libdrm_nouveau.so
|
2018-02-18 13:11:54 +00:00
|
|
|
%{_libdir}/pkgconfig/libdrm_nouveau.pc
|
2012-02-22 14:57:37 +00:00
|
|
|
%endif
|
2018-02-18 13:11:54 +00:00
|
|
|
%if %{with omap}
|
|
|
|
%{_includedir}/libdrm/omap_*.h
|
|
|
|
%{_includedir}/omap/
|
|
|
|
%{_libdir}/libdrm_omap.so
|
2012-05-12 02:55:27 +00:00
|
|
|
%{_libdir}/pkgconfig/libdrm_omap.pc
|
|
|
|
%endif
|
2018-02-18 13:11:54 +00:00
|
|
|
%if %{with exynos}
|
|
|
|
%{_includedir}/libdrm/exynos_*.h
|
|
|
|
%{_includedir}/exynos/
|
|
|
|
%{_libdir}/libdrm_exynos.so
|
2016-04-09 15:02:05 +00:00
|
|
|
%{_libdir}/pkgconfig/libdrm_exynos.pc
|
2018-02-18 13:11:54 +00:00
|
|
|
%endif
|
|
|
|
%if %{with freedreno}
|
|
|
|
%{_includedir}/freedreno/
|
|
|
|
%{_libdir}/libdrm_freedreno.so
|
2014-07-07 12:38:00 +00:00
|
|
|
%{_libdir}/pkgconfig/libdrm_freedreno.pc
|
2018-02-18 13:11:54 +00:00
|
|
|
%endif
|
|
|
|
%if %{with tegra}
|
|
|
|
%{_includedir}/libdrm/tegra.h
|
|
|
|
%{_libdir}/libdrm_tegra.so
|
2016-04-09 15:02:05 +00:00
|
|
|
%{_libdir}/pkgconfig/libdrm_tegra.pc
|
2018-02-18 13:11:54 +00:00
|
|
|
%endif
|
|
|
|
%if %{with vc4}
|
|
|
|
%{_includedir}/libdrm/vc4_*.h
|
2016-04-09 15:02:05 +00:00
|
|
|
%{_libdir}/pkgconfig/libdrm_vc4.pc
|
2014-07-07 12:38:00 +00:00
|
|
|
%endif
|
2018-02-18 13:11:54 +00:00
|
|
|
%if %{with etnaviv}
|
|
|
|
%{_includedir}/libdrm/etnaviv_*.h
|
|
|
|
%{_libdir}/libdrm_etnaviv.so
|
|
|
|
%{_libdir}/pkgconfig/libdrm_etnaviv.pc
|
|
|
|
%endif
|
|
|
|
%{_includedir}/libsync.h
|
|
|
|
%{_includedir}/xf86drm.h
|
|
|
|
%{_includedir}/xf86drmMode.h
|
|
|
|
%if %{with man_pages}
|
2012-11-06 10:14:11 +00:00
|
|
|
%{_mandir}/man3/drm*.3*
|
2013-01-17 19:11:14 +00:00
|
|
|
%{_mandir}/man7/drm*.7*
|
2018-02-18 13:11:54 +00:00
|
|
|
%endif
|
|
|
|
|
|
|
|
%if %{with install_test_programs}
|
|
|
|
%files -n drm-utils
|
|
|
|
%{_bindir}/drmdevice
|
|
|
|
%exclude %{_bindir}/etnaviv_*
|
|
|
|
%exclude %{_bindir}/exynos_*
|
|
|
|
%{_bindir}/kms-steal-crtc
|
|
|
|
%{_bindir}/kms-universal-planes
|
|
|
|
%if %{with libkms}
|
|
|
|
%{_bindir}/kmstest
|
|
|
|
%endif
|
|
|
|
%{_bindir}/modeprint
|
|
|
|
%{_bindir}/modetest
|
|
|
|
%{_bindir}/proptest
|
|
|
|
%{_bindir}/vbltest
|
|
|
|
%endif
|
2005-09-12 18:13:08 +00:00
|
|
|
|
2013-11-08 04:43:40 +00:00
|
|
|
%changelog
|
2021-07-06 00:56:30 +00:00
|
|
|
* Tue Jul 06 2021 Dave Airlie <airlied@redhat.com> - 2.4.107-1
|
|
|
|
- Update to 2.4.107
|
|
|
|
|
2021-04-16 16:24:14 +00:00
|
|
|
* Fri Apr 16 2021 Pete Walter <pwalter@fedoraproject.org> - 2.4.105-1
|
|
|
|
- Update to 2.4.105
|
|
|
|
|
2021-01-26 16:55:34 +00:00
|
|
|
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 2.4.103-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
|
|
|
|
2020-11-04 03:29:23 +00:00
|
|
|
* Wed Nov 04 2020 Dave Airlie <airlied@redhat.com> - 2.4.103-1
|
|
|
|
- Update to 2.4.103
|
|
|
|
|
2020-07-28 04:30:30 +00:00
|
|
|
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.4.102-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
|
|
|
|
2020-05-26 23:50:10 +00:00
|
|
|
* Wed May 27 2020 Dave Airlie <airlied@redhat.com> - 2.4.102-1
|
|
|
|
- Update to 2.4.102
|
|
|
|
|
2020-05-14 02:53:32 +00:00
|
|
|
* Thu May 14 2020 Dave Airlie <airlied@redhat.com> - 2.4.101-1
|
|
|
|
- Update to 2.4.101
|
|
|
|
|
2020-01-29 08:56:38 +00:00
|
|
|
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.4.100-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
|
|
|
|
2019-10-17 13:14:37 +00:00
|
|
|
* Thu Oct 17 2019 Pete Walter <pwalter@fedoraproject.org> - 2.4.100-1
|
|
|
|
- Update to 2.4.100
|
|
|
|
|
2019-07-25 13:06:25 +00:00
|
|
|
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.4.99-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
|
|
|
|
2019-07-04 00:49:13 +00:00
|
|
|
* Thu Jul 04 2019 Dave Airlie <airlied@redhat.com> - 2.4.99-1
|
|
|
|
- Update to 2.4.99
|
|
|
|
|
2019-05-01 08:03:13 +00:00
|
|
|
* Tue Apr 30 2019 Peter Robinson <pbrobinson@fedoraproject.org> 2.4.98-1
|
|
|
|
- Update to 2.4.98
|
|
|
|
|
2019-02-01 06:58:07 +00:00
|
|
|
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.4.97-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
|
|
|
|
2019-01-29 00:50:30 +00:00
|
|
|
* Tue Jan 29 2019 Dave Airlie <airlied@redhat.com> - 2.4.97-1
|
|
|
|
- Update to 2.4.97
|
|
|
|
|
2018-11-19 19:22:55 +00:00
|
|
|
* Mon Nov 19 2018 Adam Jackson <ajax@redhat.com> - 2.4.96-2
|
|
|
|
- Strip RPATH from %%{_bindir}/drmdevice
|
|
|
|
|
2018-10-28 15:48:57 +00:00
|
|
|
* Sun Oct 28 2018 Peter Robinson <pbrobinson@fedoraproject.org> 2.4.96-1
|
|
|
|
- Update to 2.4.96
|
|
|
|
|
2018-10-07 11:40:40 +00:00
|
|
|
* Sun Oct 7 2018 Peter Robinson <pbrobinson@fedoraproject.org> 2.4.95-1
|
|
|
|
- Update to 2.4.95
|
|
|
|
|
2018-09-18 22:15:26 +00:00
|
|
|
* Tue Sep 18 2018 Peter Robinson <pbrobinson@fedoraproject.org> 2.4.94-1
|
|
|
|
- Update to 2.4.94
|
|
|
|
|
2018-08-04 15:13:53 +00:00
|
|
|
* Sat Aug 04 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 2.4.93-1
|
|
|
|
- Update to 2.4.93
|
|
|
|
|
2018-07-13 08:00:07 +00:00
|
|
|
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.4.92-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
|
|
|
|
2018-05-10 07:01:12 +00:00
|
|
|
* Thu May 10 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 2.4.92-1
|
|
|
|
- Update to 2.4.92
|
|
|
|
|
2018-03-06 08:08:33 +00:00
|
|
|
* Tue Mar 06 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 2.4.91-1
|
|
|
|
- Update to 2.4.91
|
|
|
|
|
2018-03-01 16:22:27 +00:00
|
|
|
* Thu Mar 01 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 2.4.90-2
|
|
|
|
- Backport fix for broken amdgpu
|
|
|
|
|
2018-02-18 13:11:54 +00:00
|
|
|
* Sun Feb 18 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 2.4.90-1
|
|
|
|
- Update to 2.4.90
|
|
|
|
- Switch to meson buildsystem
|
|
|
|
|
2018-02-07 21:28:55 +00:00
|
|
|
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.4.89-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
|
|
|
|
2018-02-02 09:23:11 +00:00
|
|
|
* Fri Feb 02 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 2.4.89-2
|
|
|
|
- Switch to %%ldconfig_scriptlets
|
|
|
|
|
2017-12-18 01:43:19 +00:00
|
|
|
* Mon Dec 18 2017 Dave Airlie <airlied@redhat.com> - 2.4.89-1
|
|
|
|
- Update to 2.4.89
|
|
|
|
|
2017-11-05 23:42:39 +00:00
|
|
|
* Sun Nov 5 2017 Peter Robinson <pbrobinson@fedoraproject.org> 2.4.88-1
|
|
|
|
- Update to 2.4.88
|
|
|
|
|
2017-11-02 09:40:38 +00:00
|
|
|
* Thu Nov 02 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 2.4.87-1
|
|
|
|
- Update to 2.4.87
|
|
|
|
|
2017-10-22 07:21:27 +00:00
|
|
|
* Sun Oct 22 2017 Dave Airlie <airlied@redhat.com> - 2.4.85-1
|
|
|
|
- Update to 2.4.85
|
|
|
|
|
2017-08-12 12:27:18 +00:00
|
|
|
* Tue Oct 17 2017 Ville Skyttä <ville.skytta@iki.fi> - 2.4.84-2
|
|
|
|
- Own the %%{_datadir}/libdrm dir
|
|
|
|
|
2017-10-12 22:01:45 +00:00
|
|
|
* Fri Oct 13 2017 Dave Airlie <airlied@redhat.com> - 2.4.84-1
|
|
|
|
- Update to 2.4.84
|
|
|
|
|
2017-08-31 14:53:19 +00:00
|
|
|
* Thu Aug 31 2017 Adam Jackson <ajax@redhat.com> - 2.4.83-3
|
|
|
|
- Also fix the udev rule install
|
|
|
|
|
2017-08-30 21:27:21 +00:00
|
|
|
* Wed Aug 30 2017 Adam Jackson <ajax@redhat.com> - 2.4.83-2
|
|
|
|
- Fix the check-programs install line to work with older libtool
|
|
|
|
- Seriously, libtool is awful
|
|
|
|
|
2017-08-27 18:31:23 +00:00
|
|
|
* Sun Aug 27 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 2.4.83-1
|
|
|
|
- Update to 2.4.83
|
|
|
|
|
2017-08-03 01:21:55 +00:00
|
|
|
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.4.82-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
|
|
|
|
2017-07-26 18:44:03 +00:00
|
|
|
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.4.82-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
|
|
|
|
2017-07-19 15:11:59 +00:00
|
|
|
* Wed Jul 19 2017 Peter Robinson <pbrobinson@fedoraproject.org> 2.4.82-1
|
|
|
|
- Update to 2.4.82
|
|
|
|
|
2017-05-26 06:26:06 +00:00
|
|
|
* Fri May 26 2017 Dave Airlie <airlied@redhat.com> - 2.4.81-1
|
|
|
|
- Update to 2.4.81
|
|
|
|
|
2017-04-18 06:53:38 +00:00
|
|
|
* Tue Apr 18 2017 Igor Gnatenko <ignatenko@redhat.com> - 2.4.80-1
|
|
|
|
- Update to 2.4.80
|
|
|
|
|
2017-04-10 22:06:58 +00:00
|
|
|
* Tue Apr 11 2017 Dave Airlie <airlied@redhat.com> - 2.4.79-1
|
|
|
|
- Update to 2.4.79
|
|
|
|
|
2017-04-07 13:58:26 +00:00
|
|
|
* Fri Apr 07 2017 Igor Gnatenko <ignatenko@redhat.com> - 2.4.78-1
|
|
|
|
- Update to 2.4.78
|
|
|
|
|
2017-04-04 12:19:28 +00:00
|
|
|
* Tue Apr 04 2017 Igor Gnatenko <ignatenko@redhat.com> - 2.4.77-1
|
|
|
|
- Update to 2.4.77
|
|
|
|
|
2017-03-30 05:18:12 +00:00
|
|
|
* Thu Mar 30 2017 Igor Gnatenko <ignatenko@redhat.com> - 2.4.76-1
|
|
|
|
- Update to 2.4.76
|
|
|
|
|
2017-03-23 16:35:42 +00:00
|
|
|
* Thu Mar 23 2017 Adam Jackson <ajax@redhat.com> - 2.4.75-3
|
|
|
|
- Fix pkg-config detection on non-Intel
|
|
|
|
|
2017-02-10 18:33:18 +00:00
|
|
|
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.4.75-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
|
|
|
|
2017-01-28 04:12:24 +00:00
|
|
|
* Sat Jan 28 2017 Dave Airlie <airlied@redhat.com> - 2.4.75-1
|
|
|
|
- Update to 2.4.75
|
|
|
|
|
2017-01-21 12:37:43 +00:00
|
|
|
* Sat Jan 21 2017 Peter Robinson <pbrobinson@fedoraproject.org> 2.4.74-2
|
|
|
|
- Enable etnaviv support on aarch64 too
|
|
|
|
|
2016-12-01 10:44:56 +00:00
|
|
|
* Thu Dec 01 2016 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 2.4.74-1
|
|
|
|
- Update to 2.4.74 (RHBZ #1400154)
|
|
|
|
|
2016-11-15 05:53:19 +00:00
|
|
|
* Tue Nov 15 2016 Igor Gnatenko <ignatenko@redhat.com> - 2.4.73-1
|
|
|
|
- Update to 2.4.73 (RHBZ #1394986)
|
|
|
|
|
2016-10-05 11:01:14 +00:00
|
|
|
* Wed Oct 05 2016 Igor Gnatenko <ignatenko@redhat.com> - 2.4.71-2
|
|
|
|
- Enable etnaviv on ARM (RHBZ #1381898, billiboy@mt2015.com)
|
|
|
|
|
2016-10-04 12:50:52 +00:00
|
|
|
* Tue Oct 04 2016 Igor Gnatenko <ignatenko@redhat.com> - 2.4.71-1
|
|
|
|
- Update to 2.4.71 (RHBZ #1381543)
|
|
|
|
|
2016-08-11 19:13:06 +00:00
|
|
|
* Thu Aug 11 2016 Michal Toman <mtoman@fedoraproject.org> - 2.4.70-2
|
|
|
|
- No valgrind on MIPS
|
|
|
|
|
2016-07-24 06:49:28 +00:00
|
|
|
* Sun Jul 24 2016 Igor Gnatenko <ignatenko@redhat.com> - 2.4.70-1
|
|
|
|
- Update to 2.4.70 (RHBZ #1359449)
|
|
|
|
|
2016-07-21 05:58:07 +00:00
|
|
|
* Thu Jul 21 2016 Igor Gnatenko <ignatenko@redhat.com> - 2.4.69-1
|
|
|
|
- Update to 2.4.69 (RHBZ #1358549)
|
|
|
|
|
2016-04-28 13:33:11 +00:00
|
|
|
* Thu Apr 28 2016 Igor Gnatenko <ignatenko@redhat.com> - 2.4.68-1
|
|
|
|
- Update to 2.4.68
|
|
|
|
|
2016-04-09 15:02:05 +00:00
|
|
|
* Sat Apr 9 2016 Peter Robinson <pbrobinson@fedoraproject.org> 2.4.67-3
|
|
|
|
- Build some extra bits for aarch64
|
|
|
|
|
2016-02-21 10:56:59 +00:00
|
|
|
* Sun Feb 21 2016 Peter Robinson <pbrobinson@fedoraproject.org> 2.4.67-2
|
|
|
|
- Fix build on aarch64
|
|
|
|
|
2016-02-19 06:00:10 +00:00
|
|
|
* Fri Feb 19 2016 Dave Airlie <airlied@redhat.com> 2.4.67-2
|
|
|
|
- fix installing drm-utils properly - we were install libtool scripts
|
|
|
|
|
2016-02-16 14:13:38 +00:00
|
|
|
* Tue Feb 16 2016 Peter Robinson <pbrobinson@fedoraproject.org> 2.4.67-1
|
|
|
|
- Update to 2.4.67
|
|
|
|
- Enable VC4
|
|
|
|
|
2016-02-04 03:03:53 +00:00
|
|
|
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 2.4.66-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
|
|
|
|
2015-12-28 21:56:31 +00:00
|
|
|
* Mon Dec 28 2015 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 2.4.66-1
|
|
|
|
- Update to 2.4.66 (RHBZ #1294382)
|
|
|
|
|
2015-09-17 18:10:07 +00:00
|
|
|
* Thu Sep 17 2015 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 2.4.65-1
|
|
|
|
- Update to 2.4.65 (RHBZ #1263878)
|
|
|
|
|
2015-08-24 21:34:47 +00:00
|
|
|
* Tue Aug 25 2015 Dave Airlie <airlied@redhat.com> 2.4.64-1
|
|
|
|
- libdrm 2.4.64
|
|
|
|
|
2015-07-13 09:32:08 +00:00
|
|
|
* Mon Jul 13 2015 Dan Horák <dan[at]danny.cz> 2.4.62-2
|
|
|
|
- valgrind needs explicit disable if not available
|
|
|
|
|
2015-07-12 18:45:11 +00:00
|
|
|
* Sun Jul 12 2015 Peter Robinson <pbrobinson@fedoraproject.org> 2.4.62-1
|
|
|
|
- libdrm 2.4.62
|
|
|
|
- Minor spec cleanups
|
|
|
|
|
2015-06-17 15:09:05 +00:00
|
|
|
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.4.61-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
|
|
|
|
2015-05-07 03:08:03 +00:00
|
|
|
* Thu May 07 2015 Ben Skeggs <bskeggs@redhat.com> 2.4.61-3
|
|
|
|
- build needs xorg-x11-util-macros now...
|
|
|
|
|
2015-05-07 02:56:03 +00:00
|
|
|
* Thu May 07 2015 Ben Skeggs <bskeggs@redhat.com> 2.4.61-2
|
|
|
|
- fixup patch, don't ship extra tests
|
|
|
|
|
2015-05-07 02:01:53 +00:00
|
|
|
* Thu May 07 2015 Ben Skeggs <bskeggs@redhat.com> 2.4.61-1
|
|
|
|
- libdrm 2.4.61
|
|
|
|
|
2015-03-22 23:09:52 +00:00
|
|
|
* Mon Mar 23 2015 Dave Airlie <airlied@redhat.com> 2.4.60-1
|
|
|
|
- libdrm 2.4.60
|
|
|
|
|
2015-01-23 18:47:33 +00:00
|
|
|
* Fri Jan 23 2015 Rob Clark <rclark@redhat.com> 2.4.59-4
|
|
|
|
- No we don't actually want to install the exynos tests
|
|
|
|
|
2015-01-23 16:48:26 +00:00
|
|
|
* Fri Jan 23 2015 Rob Clark <rclark@redhat.com> 2.4.59-3
|
|
|
|
- Add test apps to drm-utils package
|
|
|
|
|
2015-01-22 03:43:24 +00:00
|
|
|
* Thu Jan 22 2015 Peter Robinson <pbrobinson@fedoraproject.org> 2.4.59-2
|
|
|
|
- Enable tegra
|
|
|
|
|
2015-01-22 01:54:02 +00:00
|
|
|
* Thu Jan 22 2015 Dave Airlie <airlied@redhat.com> 2.4.59-1
|
|
|
|
- libdrm 2.4.59
|
|
|
|
|
2014-11-19 08:50:31 +00:00
|
|
|
* Wed Nov 19 2014 Dan Horák <dan[at]danny.cz> 2.4.58-3
|
|
|
|
- valgrind available only on selected arches
|
|
|
|
|
2014-11-18 16:49:10 +00:00
|
|
|
* Tue Nov 18 2014 Adam Jackson <ajax@redhat.com> 2.4.58-2
|
|
|
|
- BR: valgrind-devel so we get ioctl annotations
|
|
|
|
|
2014-10-02 13:58:05 +00:00
|
|
|
* Thu Oct 02 2014 Adam Jackson <ajax@redhat.com> 2.4.58-1
|
|
|
|
- libdrm 2.4.58
|
|
|
|
|
2014-08-17 02:57:30 +00:00
|
|
|
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.4.56-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
|
|
|
|
2014-08-04 06:50:31 +00:00
|
|
|
* Mon Aug 04 2014 Dave Airlie <airlied@redhat.com> 2.4.56-1
|
|
|
|
- libdrm 2.4.56
|
|
|
|
|
2014-07-07 12:38:00 +00:00
|
|
|
* Mon Jul 7 2014 Peter Robinson <pbrobinson@fedoraproject.org> 2.4.54-3
|
|
|
|
- Build freedreno support on aarch64 too
|
|
|
|
|
2014-06-07 03:06:12 +00:00
|
|
|
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.4.54-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
|
|
|
2014-05-03 19:06:30 +00:00
|
|
|
* Sat May 03 2014 Dennis Gilmore <dennis@ausil.us> 2.4.54-1
|
|
|
|
- libdrm 2.4.54
|
|
|
|
|
2014-04-13 07:56:22 +00:00
|
|
|
* Sun Apr 13 2014 Dave Airlie <airlied@redhat.com> 2.4.53-1
|
|
|
|
- libdrm 2.4.53
|
|
|
|
|
2014-02-08 10:24:06 +00:00
|
|
|
* Sat Feb 08 2014 Adel Gadllah <adel.gadllah@gmail.com> 2.4.52-1
|
|
|
|
- libdrm 2.4.52
|
|
|
|
|
2013-12-05 01:26:14 +00:00
|
|
|
* Thu Dec 05 2013 Dave Airlie <airlied@redhat.com> 2.4.50-1
|
|
|
|
- libdrm 2.4.50
|
|
|
|
|
2013-12-01 23:01:21 +00:00
|
|
|
* Mon Dec 02 2013 Dave Airlie <airlied@redhat.com> 2.4.49-2
|
|
|
|
- backport two fixes from master
|
|
|
|
|
2013-11-24 06:41:58 +00:00
|
|
|
* Sun Nov 24 2013 Dave Airlie <airlied@redhat.com> 2.4.49-1
|
|
|
|
- libdrm 2.4.49
|
|
|
|
|
2013-11-08 04:23:23 +00:00
|
|
|
* Fri Nov 08 2013 Dave Airlie <airlied@redhat.com> 2.4.47-1
|
|
|
|
- libdrm 2.4.47
|
|
|
|
|
|
|
|
- add fix for nouveau with gcc 4.8
|
2013-08-03 05:13:33 +00:00
|
|
|
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.4.46-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
|
|
|
|
2013-07-03 04:29:07 +00:00
|
|
|
* Wed Jul 03 2013 Dave Airlie <airlied@redhat.com> 2.4.46-1
|
|
|
|
- libdrm 2.4.46
|
|
|
|
|
2013-06-18 17:32:47 +00:00
|
|
|
* Tue Jun 18 2013 Adam Jackson <ajax@redhat.com> 2.4.45-2
|
|
|
|
- Sync some Haswell updates from git
|
|
|
|
|
2013-05-15 22:17:35 +00:00
|
|
|
* Thu May 16 2013 Dave Airlie <airlied@redhat.com> 2.4.45-1
|
|
|
|
- libdrm 2.4.45
|
|
|
|
|
2013-04-21 11:46:11 +00:00
|
|
|
* Sun Apr 21 2013 Peter Robinson <pbrobinson@fedoraproject.org> 2.4.44-2
|
|
|
|
- enable freedreno support on ARM
|
|
|
|
|
2013-04-19 14:25:50 +00:00
|
|
|
* Fri Apr 19 2013 Jerome Glisse <jglisse@redhat.com> 2.4.44-1
|
|
|
|
- libdrm 2.4.44
|
|
|
|
|
2013-04-12 17:20:48 +00:00
|
|
|
* Fri Apr 12 2013 Adam Jackson <ajax@redhat.com> 2.4.43-1
|
|
|
|
- libdrm 2.4.43
|
|
|
|
|
2013-03-11 20:55:54 +00:00
|
|
|
* Tue Mar 12 2013 Dave Airlie <airlied@redhat.com> 2.4.42-2
|
|
|
|
- add qxl header file
|
|
|
|
|
2013-02-05 14:35:36 +00:00
|
|
|
* Tue Feb 05 2013 Adam Jackson <ajax@redhat.com> 2.4.42-1
|
|
|
|
- libdrm 2.4.42
|
|
|
|
|
2013-01-22 18:10:46 +00:00
|
|
|
* Tue Jan 22 2013 Adam Jackson <ajax@redhat.com> 2.4.41-2
|
|
|
|
- Fix directory ownership in -devel (#894468)
|
|
|
|
|
2013-01-17 19:11:14 +00:00
|
|
|
* Thu Jan 17 2013 Adam Jackson <ajax@redhat.com> 2.4.41-1
|
|
|
|
- libdrm 2.4.41 plus git. Done as a git snapshot instead of the released
|
|
|
|
2.4.41 since the release tarball is missing man/ entirely.
|
|
|
|
- Pre-F16 changelog trim
|
|
|
|
|
|
|
|
* Wed Jan 09 2013 Ben Skeggs <bskeggs@redhat.com> 2.4.40-2
|
2013-01-07 23:34:31 +00:00
|
|
|
- nouveau: fix bug causing kernel to reject certain command streams
|
|
|
|
|
2012-11-06 10:10:51 +00:00
|
|
|
* Tue Nov 06 2012 Dave Airlie <airlied@redhat.com> 2.4.40-1
|
|
|
|
- libdrm 2.4.40
|
|
|
|
|
2012-10-25 19:14:12 +00:00
|
|
|
* Thu Oct 25 2012 Adam Jackson <ajax@redhat.com> 2.4.39-4
|
|
|
|
- Rebuild to appease koji and get libkms on F18 again
|
|
|
|
|
2012-10-08 14:59:49 +00:00
|
|
|
* Mon Oct 08 2012 Adam Jackson <ajax@redhat.com> 2.4.39-3
|
|
|
|
- Add exynos to arm
|
2012-09-06 20:36:41 +00:00
|
|
|
|
2012-08-27 07:24:07 +00:00
|
|
|
* Mon Aug 27 2012 Dave Airlie <airlied@redhat.com> 2.4.39-1
|
2012-08-29 17:19:01 +00:00
|
|
|
- upstream 2.4.39 release
|
|
|
|
|
2012-08-14 01:18:22 +00:00
|
|
|
* Tue Aug 14 2012 Dave Airlie <airlied@redhat.com> 2.4.38-2
|
|
|
|
- add radeon prime support
|
|
|
|
|
2012-08-12 00:57:50 +00:00
|
|
|
* Sun Aug 12 2012 Dave Airlie <airlied@redhat.com> 2.4.38-1
|
|
|
|
- upstream 2.4.38 release
|
|
|
|
|
2012-07-27 05:48:19 +00:00
|
|
|
* Fri Jul 27 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.4.37-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
|
|
|
2012-07-25 06:07:00 +00:00
|
|
|
* Wed Jul 25 2012 Dave Airlie <airlied@redhat.com> 2.4.37-3
|
|
|
|
- add libdrm prime support for core, intel, nouveau
|
|
|
|
|
2012-07-23 21:22:04 +00:00
|
|
|
* Mon Jul 23 2012 Adam Jackson <ajax@redhat.com> 2.4.37-2
|
|
|
|
- libdrm-2.4.37-i915-hush.patch: Silence an excessive error message
|
|
|
|
|
2012-07-13 01:46:14 +00:00
|
|
|
* Fri Jul 13 2012 Dave Airlie <airlied@redhat.com> 2.4.37-1
|
|
|
|
- bump to libdrm 2.4.37
|
|
|
|
|
2012-06-28 08:52:26 +00:00
|
|
|
* Thu Jun 28 2012 Dave Airlie <airlied@redhat.com> 2.4.36-1
|
|
|
|
- bump to libdrm 2.4.36
|
|
|
|
|
2012-06-25 17:20:19 +00:00
|
|
|
* Mon Jun 25 2012 Adam Jackson <ajax@redhat.com> 2.4.35-2
|
|
|
|
- Drop libkms. Only used by plymouth, and even that's a mistake.
|
|
|
|
|
2012-06-15 08:50:14 +00:00
|
|
|
* Fri Jun 15 2012 Dave Airlie <airlied@redhat.com> 2.4.35-1
|
|
|
|
- bump to libdrm 2.4.35
|
|
|
|
|
2012-06-05 15:28:22 +00:00
|
|
|
* Tue Jun 05 2012 Adam Jackson <ajax@redhat.com> 2.4.34-2
|
|
|
|
- Rebuild for new libudev
|
|
|
|
- Conditional BuildReqs for {libudev,systemd}-devel
|
|
|
|
|
2012-05-12 16:41:37 +00:00
|
|
|
* Sat May 12 2012 Dave Airlie <airlied@redhat.com> 2.4.34-1
|
|
|
|
- libdrm 2.4.34
|
|
|
|
|
2012-05-12 02:55:27 +00:00
|
|
|
* Fri May 11 2012 Dennis Gilmore <dennis@ausil.us> 2.4.34-0.3
|
|
|
|
- enable libdrm_omap on arm arches
|
|
|
|
|
2012-05-10 14:15:44 +00:00
|
|
|
* Thu May 10 2012 Adam Jackson <ajax@redhat.com> 2.4.34-0.2
|
|
|
|
- Drop ancient kernel Requires.
|
|
|
|
|
2012-04-24 13:34:58 +00:00
|
|
|
* Tue Apr 24 2012 Richard Hughes <rhughes@redhat.com> - 2.4.34-0.1.20120424
|
|
|
|
- Update to a newer git snapshot
|
|
|
|
|
2012-03-31 07:11:46 +00:00
|
|
|
* Sat Mar 31 2012 Dave Airlie <airlied@redhat.com> 2.4.33-1
|
|
|
|
- libdrm 2.4.33
|
|
|
|
- drop libdrm-2.4.32-tn-surface.patch
|
|
|
|
|
2012-03-21 14:13:34 +00:00
|
|
|
* Wed Mar 21 2012 Adam Jackson <ajax@redhat.com> 2.4.32-1
|
|
|
|
- libdrm 2.4.32
|
|
|
|
- libdrm-2.4.32-tn-surface.patch: Sync with git.
|
|
|
|
|
2012-02-25 16:30:00 +00:00
|
|
|
* Sat Feb 25 2012 Peter Robinson <pbrobinson@fedoraproject.org> 2.4.31-4
|
|
|
|
- Add gem_ binaries to x86 only exclusion too
|
|
|
|
|
2012-02-22 14:57:37 +00:00
|
|
|
* Wed Feb 22 2012 Adam Jackson <ajax@redhat.com> 2.4.31-3
|
|
|
|
- Fix build on non-Intel arches
|
|
|
|
|
2012-02-07 20:13:20 +00:00
|
|
|
* Tue Feb 07 2012 Jerome Glisse <jglisse@redhat.com> 2.4.31-2
|
|
|
|
- Fix missing header file
|
|
|
|
|
2012-02-07 17:29:38 +00:00
|
|
|
* Tue Feb 07 2012 Jerome Glisse <jglisse@redhat.com> 2.4.31-1
|
|
|
|
- upstream 2.4.31 release
|
|
|
|
|
2012-01-20 10:10:54 +00:00
|
|
|
* Fri Jan 20 2012 Dave Airlie <airlied@redhat.com> 2.4.30-1
|
|
|
|
- upstream 2.4.30 release
|
|
|
|
|
2012-01-13 07:34:33 +00:00
|
|
|
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.4.27-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
|
|
|
|
2011-11-11 21:31:56 +00:00
|
|
|
* Fri Nov 11 2011 Adam Jackson <ajax@redhat.com> 2.4.27-2
|
|
|
|
- Fix typo in udev rule
|
|
|
|
|
2011-11-01 17:09:23 +00:00
|
|
|
* Tue Nov 01 2011 Adam Jackson <ajax@redhat.com> 2.4.27-1
|
|
|
|
- libdrm 2.4.27
|
|
|
|
|
2011-10-27 00:10:18 +00:00
|
|
|
* Wed Oct 26 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.4.26-4
|
|
|
|
- Rebuilt for glibc bug#747377
|
|
|
|
|
2011-10-25 17:48:20 +00:00
|
|
|
* Tue Oct 25 2011 Adam Jackson <ajax@redhat.com> 2.4.26-3
|
|
|
|
- Fix udev rule matching and install location (#748205)
|
|
|
|
|
2011-10-21 14:20:09 +00:00
|
|
|
* Fri Oct 21 2011 Dave Airlie <airlied@redhat.com> 2.4.26-2
|
|
|
|
- fix perms on control node in udev rule
|
|
|
|
|
2011-06-06 15:17:41 +00:00
|
|
|
* Mon Jun 06 2011 Adam Jackson <ajax@redhat.com> 2.4.26-1
|
|
|
|
- libdrm 2.4.26 (#711038)
|