2016-10-04 12:50:52 +00:00
|
|
|
%ifarch %{ix86} x86_64 ppc ppc64 ppc64le s390x armv7hl aarch64
|
|
|
|
%bcond_without valgrind
|
|
|
|
%else
|
|
|
|
%bcond_with valgrind
|
|
|
|
%endif
|
|
|
|
|
2016-04-28 13:33:11 +00:00
|
|
|
Name: libdrm
|
|
|
|
Summary: Direct Rendering Manager runtime library
|
2017-07-19 15:11:59 +00:00
|
|
|
Version: 2.4.82
|
2017-07-26 18:44:03 +00:00
|
|
|
Release: 2%{?dist}
|
2016-04-28 13:33:11 +00:00
|
|
|
License: MIT
|
|
|
|
|
2016-07-24 06:49:28 +00:00
|
|
|
URL: https://dri.freedesktop.org
|
|
|
|
Source0: %{url}/libdrm/%{name}-%{version}.tar.bz2
|
2016-04-28 13:33:11 +00:00
|
|
|
Source2: 91-drm-modeset.rules
|
|
|
|
|
|
|
|
BuildRequires: pkgconfig automake autoconf libtool
|
|
|
|
BuildRequires: kernel-headers
|
|
|
|
BuildRequires: libxcb-devel
|
|
|
|
BuildRequires: systemd-devel
|
|
|
|
Requires: systemd
|
|
|
|
BuildRequires: libatomic_ops-devel
|
|
|
|
BuildRequires: libpciaccess-devel
|
|
|
|
BuildRequires: libxslt docbook-style-xsl
|
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
|
2016-04-28 13:33:11 +00:00
|
|
|
BuildRequires: xorg-x11-util-macros
|
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
|
2008-03-19 05:32:35 +00:00
|
|
|
Patch3: libdrm-make-dri-perms-okay.patch
|
2009-02-01 07:08:35 +00:00
|
|
|
# remove backwards compat not needed on Fedora
|
2008-06-12 04:01:31 +00:00
|
|
|
Patch4: libdrm-2.4.0-no-bc.patch
|
2011-04-18 16:04:25 +00:00
|
|
|
# make rule to print the list of test programs
|
|
|
|
Patch5: libdrm-2.4.25-check-programs.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
|
|
|
|
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.
|
|
|
|
|
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
|
2016-07-24 06:49:28 +00:00
|
|
|
autoreconf -vfi
|
2012-06-25 20:20:34 +00:00
|
|
|
%configure \
|
2016-10-04 12:50:52 +00:00
|
|
|
%if ! %{with valgrind}
|
2016-04-28 13:33:11 +00:00
|
|
|
--disable-valgrind \
|
2015-07-13 09:32:08 +00:00
|
|
|
%endif
|
2016-04-28 13:33:11 +00:00
|
|
|
--disable-vc4 \
|
2016-04-09 15:02:05 +00:00
|
|
|
%ifarch %{arm} aarch64
|
2017-01-21 12:37:43 +00:00
|
|
|
--enable-etnaviv-experimental-api \
|
2016-04-28 13:33:11 +00:00
|
|
|
--enable-exynos-experimental-api \
|
|
|
|
--enable-tegra-experimental-api \
|
|
|
|
--enable-vc4 \
|
2016-04-09 15:02:05 +00:00
|
|
|
%endif
|
|
|
|
%ifarch %{arm}
|
2016-04-28 13:33:11 +00:00
|
|
|
--enable-omap-experimental-api \
|
2012-05-12 02:55:27 +00:00
|
|
|
%endif
|
2016-04-28 13:33:11 +00:00
|
|
|
--enable-install-test-programs \
|
|
|
|
--enable-udev
|
2015-07-12 18:45:11 +00:00
|
|
|
|
2016-04-28 13:33:11 +00:00
|
|
|
%make_build V=1
|
2011-04-18 16:04:25 +00:00
|
|
|
pushd tests
|
2016-04-28 13:33:11 +00:00
|
|
|
%make_build `make check-programs` V=1
|
2011-04-18 16:04:25 +00:00
|
|
|
popd
|
2005-09-12 18:13:08 +00:00
|
|
|
|
|
|
|
%install
|
2016-04-28 13:33:11 +00:00
|
|
|
%make_install
|
2011-04-18 16:04:25 +00:00
|
|
|
pushd tests
|
2015-07-12 18:45:11 +00:00
|
|
|
mkdir -p %{buildroot}%{_bindir}
|
2011-04-20 18:07:02 +00:00
|
|
|
for foo in $(make check-programs) ; do
|
2016-02-19 06:00:10 +00:00
|
|
|
libtool --mode=install install -m 0755 $foo %{buildroot}%{_bindir}
|
2011-04-20 18:07:02 +00:00
|
|
|
done
|
2011-04-18 16:04:25 +00:00
|
|
|
popd
|
2008-08-01 06:53:20 +00:00
|
|
|
# SUBDIRS=libdrm
|
2017-07-19 22:42:50 +00:00
|
|
|
mkdir -p %{buildroot}/usr/lib/udev/rules.d/
|
|
|
|
install -m 0644 %{SOURCE2} %{buildroot}/usr/lib/udev/rules.d/
|
2005-09-12 18:13:08 +00:00
|
|
|
|
2006-06-19 17:16:20 +00:00
|
|
|
# NOTE: We intentionally don't ship *.la files
|
2015-07-12 18:45:11 +00:00
|
|
|
find %{buildroot} -type f -name "*.la" -delete
|
|
|
|
|
2016-07-24 06:49:28 +00:00
|
|
|
rm -f %{buildroot}%{_includedir}/%{name}/{r300_reg.h,via_3d_reg.h}
|
2005-09-12 18:13:08 +00:00
|
|
|
|
|
|
|
%post -p /sbin/ldconfig
|
|
|
|
%postun -p /sbin/ldconfig
|
|
|
|
|
|
|
|
%files
|
2005-09-30 04:53:20 +00:00
|
|
|
%doc README
|
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
|
2012-02-22 14:57:37 +00:00
|
|
|
%ifarch %{ix86} x86_64 ia64
|
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
|
2012-05-12 02:55:27 +00:00
|
|
|
%ifarch %{arm}
|
|
|
|
%{_libdir}/libdrm_omap.so.1
|
|
|
|
%{_libdir}/libdrm_omap.so.1.0.0
|
|
|
|
%endif
|
2014-07-07 12:38:00 +00:00
|
|
|
%ifarch %{arm} aarch64
|
2017-01-21 12:37:43 +00:00
|
|
|
%{_libdir}/libdrm_etnaviv.so.1
|
|
|
|
%{_libdir}/libdrm_etnaviv.so.1.0.0
|
2016-04-09 15:02:05 +00:00
|
|
|
%{_libdir}/libdrm_exynos.so.1
|
|
|
|
%{_libdir}/libdrm_exynos.so.1.0.0
|
2014-07-07 12:38:00 +00:00
|
|
|
%{_libdir}/libdrm_freedreno.so.1
|
|
|
|
%{_libdir}/libdrm_freedreno.so.1.0.0
|
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
|
2008-12-19 06:52:51 +00:00
|
|
|
%{_libdir}/libdrm_radeon.so.1
|
2012-08-14 01:18:22 +00:00
|
|
|
%{_libdir}/libdrm_radeon.so.1.0.1
|
2015-08-24 21:44:42 +00:00
|
|
|
%{_libdir}/libdrm_amdgpu.so.1
|
|
|
|
%{_libdir}/libdrm_amdgpu.so.1.0.0
|
2012-04-24 13:34:58 +00:00
|
|
|
%{_libdir}/libdrm_nouveau.so.2
|
|
|
|
%{_libdir}/libdrm_nouveau.so.2.0.0
|
2012-09-06 20:36:41 +00:00
|
|
|
%{_libdir}/libkms.so.1
|
|
|
|
%{_libdir}/libkms.so.1.0.0
|
2017-07-19 22:37:31 +00:00
|
|
|
%{_datadir}/libdrm/amdgpu.ids
|
2017-07-19 15:44:33 +00:00
|
|
|
%{_udevrulesdir}/91-drm-modeset.rules
|
2005-09-12 18:13:08 +00:00
|
|
|
|
2011-04-18 16:04:25 +00:00
|
|
|
%files -n drm-utils
|
2015-12-28 21:56:31 +00:00
|
|
|
%{_bindir}/drmdevice
|
2015-01-23 16:48:26 +00:00
|
|
|
%{_bindir}/modetest
|
|
|
|
%{_bindir}/modeprint
|
|
|
|
%{_bindir}/vbltest
|
|
|
|
%{_bindir}/kmstest
|
2015-12-28 21:56:31 +00:00
|
|
|
%{_bindir}/kms-steal-crtc
|
|
|
|
%{_bindir}/kms-universal-planes
|
2015-05-07 02:56:03 +00:00
|
|
|
%exclude %{_bindir}/drmsl
|
2017-01-28 04:12:24 +00:00
|
|
|
%ifarch %{arm} aarch64
|
2017-01-21 12:37:43 +00:00
|
|
|
%exclude %{_bindir}/etnaviv*
|
|
|
|
%exclude %{_bindir}/exynos*
|
2017-01-28 04:12:24 +00:00
|
|
|
%endif
|
2015-05-07 02:56:03 +00:00
|
|
|
%exclude %{_bindir}/hash
|
|
|
|
%exclude %{_bindir}/proptest
|
|
|
|
%exclude %{_bindir}/random
|
2011-04-18 16:04:25 +00:00
|
|
|
|
2005-09-12 18:13:08 +00:00
|
|
|
%files devel
|
2006-11-17 17:19:46 +00:00
|
|
|
# FIXME should be in drm/ too
|
2005-09-12 18:13:08 +00:00
|
|
|
%{_includedir}/xf86drm.h
|
2008-08-14 05:51:06 +00:00
|
|
|
%{_includedir}/xf86drmMode.h
|
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
|
2012-02-22 14:57:37 +00:00
|
|
|
%ifarch %{ix86} x86_64 ia64
|
2012-03-21 14:13:34 +00:00
|
|
|
%{_includedir}/libdrm/intel_aub.h
|
2010-03-25 03:58:26 +00:00
|
|
|
%{_includedir}/libdrm/intel_bufmgr.h
|
2011-11-01 17:09:23 +00:00
|
|
|
%{_includedir}/libdrm/intel_debug.h
|
2012-02-22 14:57:37 +00:00
|
|
|
%endif
|
2012-05-12 02:55:27 +00:00
|
|
|
%ifarch %{arm}
|
|
|
|
%{_includedir}/libdrm/omap_drmif.h
|
|
|
|
%{_includedir}/omap/
|
|
|
|
%endif
|
2014-07-07 12:38:00 +00:00
|
|
|
%ifarch %{arm} aarch64
|
2016-04-09 15:02:05 +00:00
|
|
|
%{_includedir}/exynos/
|
2014-07-07 12:38:00 +00:00
|
|
|
%{_includedir}/freedreno/
|
2017-01-21 12:37:43 +00:00
|
|
|
%{_includedir}/libdrm/etnaviv_drmif.h
|
2016-04-09 15:02:05 +00:00
|
|
|
%{_includedir}/libdrm/exynos_drmif.h
|
|
|
|
%{_includedir}/libdrm/tegra.h
|
|
|
|
%{_includedir}/libdrm/vc4_packet.h
|
|
|
|
%{_includedir}/libdrm/vc4_qpu_defines.h
|
2014-07-07 12:38:00 +00:00
|
|
|
%endif
|
2015-08-24 21:44:42 +00:00
|
|
|
%{_includedir}/libdrm/amdgpu.h
|
2011-11-01 17:09:23 +00:00
|
|
|
%{_includedir}/libdrm/radeon_bo.h
|
|
|
|
%{_includedir}/libdrm/radeon_bo_gem.h
|
|
|
|
%{_includedir}/libdrm/radeon_bo_int.h
|
|
|
|
%{_includedir}/libdrm/radeon_cs.h
|
|
|
|
%{_includedir}/libdrm/radeon_cs_gem.h
|
|
|
|
%{_includedir}/libdrm/radeon_cs_int.h
|
2012-02-07 17:29:38 +00:00
|
|
|
%{_includedir}/libdrm/radeon_surface.h
|
2012-02-07 20:13:20 +00:00
|
|
|
%{_includedir}/libdrm/r600_pci_ids.h
|
2015-12-28 21:56:31 +00:00
|
|
|
%{_includedir}/libdrm/nouveau/
|
2010-04-08 07:56:52 +00:00
|
|
|
%{_includedir}/libdrm/*_drm.h
|
2012-09-06 20:36:41 +00:00
|
|
|
%{_includedir}/libkms
|
2016-11-15 06:13:14 +00:00
|
|
|
%{_includedir}/libsync.h
|
2005-09-12 18:13:08 +00:00
|
|
|
%{_libdir}/libdrm.so
|
2012-02-22 14:57:37 +00:00
|
|
|
%ifarch %{ix86} x86_64 ia64
|
2008-09-30 07:43:43 +00:00
|
|
|
%{_libdir}/libdrm_intel.so
|
2012-02-22 14:57:37 +00:00
|
|
|
%endif
|
2012-05-12 02:55:27 +00:00
|
|
|
%ifarch %{arm}
|
|
|
|
%{_libdir}/libdrm_omap.so
|
2014-07-07 12:38:00 +00:00
|
|
|
%endif
|
|
|
|
%ifarch %{arm} aarch64
|
2017-01-21 12:37:43 +00:00
|
|
|
%{_libdir}/libdrm_etnaviv.so
|
2016-04-09 15:02:05 +00:00
|
|
|
%{_libdir}/libdrm_exynos.so
|
2013-04-21 11:46:11 +00:00
|
|
|
%{_libdir}/libdrm_freedreno.so
|
2016-04-09 15:02:05 +00:00
|
|
|
%{_libdir}/libdrm_tegra.so
|
2012-05-12 02:55:27 +00:00
|
|
|
%endif
|
2008-12-19 06:52:51 +00:00
|
|
|
%{_libdir}/libdrm_radeon.so
|
2015-08-24 21:49:31 +00:00
|
|
|
%{_libdir}/libdrm_amdgpu.so
|
2009-02-07 00:28:39 +00:00
|
|
|
%{_libdir}/libdrm_nouveau.so
|
2012-09-06 20:36:41 +00:00
|
|
|
%{_libdir}/libkms.so
|
2005-09-12 18:13:08 +00:00
|
|
|
%{_libdir}/pkgconfig/libdrm.pc
|
2012-02-22 14:57:37 +00:00
|
|
|
%ifarch %{ix86} x86_64 ia64
|
2009-02-24 16:37:29 +00:00
|
|
|
%{_libdir}/pkgconfig/libdrm_intel.pc
|
2012-02-22 14:57:37 +00:00
|
|
|
%endif
|
2012-05-12 02:55:27 +00:00
|
|
|
%ifarch %{arm}
|
|
|
|
%{_libdir}/pkgconfig/libdrm_omap.pc
|
|
|
|
%endif
|
2014-07-07 12:38:00 +00:00
|
|
|
%ifarch %{arm} aarch64
|
2017-01-21 12:37:43 +00:00
|
|
|
%{_libdir}/pkgconfig/libdrm_etnaviv.pc
|
2016-04-09 15:02:05 +00:00
|
|
|
%{_libdir}/pkgconfig/libdrm_exynos.pc
|
2014-07-07 12:38:00 +00:00
|
|
|
%{_libdir}/pkgconfig/libdrm_freedreno.pc
|
2016-04-09 15:02:05 +00:00
|
|
|
%{_libdir}/pkgconfig/libdrm_tegra.pc
|
|
|
|
%{_libdir}/pkgconfig/libdrm_vc4.pc
|
2014-07-07 12:38:00 +00:00
|
|
|
%endif
|
2009-02-17 23:46:52 +00:00
|
|
|
%{_libdir}/pkgconfig/libdrm_radeon.pc
|
2015-08-24 21:44:42 +00:00
|
|
|
%{_libdir}/pkgconfig/libdrm_amdgpu.pc
|
2009-02-07 00:28:39 +00:00
|
|
|
%{_libdir}/pkgconfig/libdrm_nouveau.pc
|
2012-09-06 20:36:41 +00:00
|
|
|
%{_libdir}/pkgconfig/libkms.pc
|
2012-11-06 10:14:11 +00:00
|
|
|
%{_mandir}/man3/drm*.3*
|
2013-01-17 19:11:14 +00:00
|
|
|
%{_mandir}/man7/drm*.7*
|
2005-09-12 18:13:08 +00:00
|
|
|
|
2013-11-08 04:43:40 +00:00
|
|
|
%changelog
|
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)
|