2013-02-05 14:35:36 +00:00
|
|
|
#define gitdate 20130117
|
2008-02-15 19:17:14 +00:00
|
|
|
|
2007-02-19 19:44:34 +00:00
|
|
|
Summary: Direct Rendering Manager runtime library
|
2005-09-12 18:13:08 +00:00
|
|
|
Name: libdrm
|
2014-05-03 19:06:30 +00:00
|
|
|
Version: 2.4.54
|
2014-07-07 12:38:00 +00:00
|
|
|
Release: 3%{?dist}
|
2007-02-19 19:44:34 +00:00
|
|
|
License: MIT
|
2005-09-12 18:13:08 +00:00
|
|
|
Group: System Environment/Libraries
|
2005-09-30 04:53:20 +00:00
|
|
|
URL: http://dri.sourceforge.net
|
2013-01-17 19:11:14 +00:00
|
|
|
%if 0%{?gitdate}
|
|
|
|
Source0: %{name}-%{gitdate}.tar.bz2
|
|
|
|
%else
|
2012-05-12 16:41:37 +00:00
|
|
|
Source0: http://dri.freedesktop.org/libdrm/%{name}-%{version}.tar.bz2
|
2013-01-17 19:11:14 +00:00
|
|
|
%endif
|
2008-02-15 19:17:14 +00:00
|
|
|
Source1: make-git-snapshot.sh
|
2005-09-12 18:13:08 +00:00
|
|
|
|
2009-02-01 07:08:35 +00:00
|
|
|
Requires: udev
|
|
|
|
|
2006-11-17 17:41:35 +00:00
|
|
|
BuildRequires: pkgconfig automake autoconf libtool
|
2013-01-17 19:11:14 +00:00
|
|
|
BuildRequires: kernel-headers
|
2008-12-19 07:00:11 +00:00
|
|
|
BuildRequires: libxcb-devel
|
2012-06-05 15:28:22 +00:00
|
|
|
%if 0%{?fedora} > 17 || 0%{?rhel} > 6
|
|
|
|
BuildRequires: systemd-devel
|
|
|
|
%else
|
2009-04-07 13:21:30 +00:00
|
|
|
BuildRequires: libudev-devel
|
2012-06-05 15:28:22 +00:00
|
|
|
%endif
|
2010-10-19 20:03:51 +00:00
|
|
|
BuildRequires: libatomic_ops-devel
|
2011-06-06 15:35:19 +00:00
|
|
|
BuildRequires: libpciaccess-devel
|
2013-01-17 19:11:14 +00:00
|
|
|
BuildRequires: libxslt docbook-style-xsl
|
2008-12-19 07:00:11 +00:00
|
|
|
|
2008-03-05 04:13:07 +00:00
|
|
|
Source2: 91-drm-modeset.rules
|
|
|
|
|
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
|
2007-02-19 19:44:34 +00:00
|
|
|
Summary: Direct Rendering Manager development package
|
2005-09-12 18:13:08 +00:00
|
|
|
Group: Development/Libraries
|
|
|
|
Requires: %{name} = %{version}-%{release}
|
2008-07-16 23:06:17 +00:00
|
|
|
Requires: kernel-headers >= 2.6.27-0.144.rc0.git2.fc10
|
2009-02-01 07:08:35 +00:00
|
|
|
Requires: pkgconfig
|
2005-09-12 18:13:08 +00:00
|
|
|
|
|
|
|
%description devel
|
2007-02-19 19:44:34 +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
|
|
|
|
Summary: Direct Rendering Manager utilities
|
|
|
|
Group: Development/Tools
|
|
|
|
|
|
|
|
%description -n drm-utils
|
|
|
|
Utility programs for the kernel DRM interface. Will void your warranty.
|
|
|
|
|
2005-09-12 18:13:08 +00:00
|
|
|
%prep
|
2013-01-17 19:11:14 +00:00
|
|
|
%setup -q %{?gitdate:-n %{name}-%{gitdate}}
|
2008-03-19 05:32:35 +00:00
|
|
|
%patch3 -p1 -b .forceperms
|
2008-06-12 04:01:31 +00:00
|
|
|
%patch4 -p1 -b .no-bc
|
2011-04-18 16:04:25 +00:00
|
|
|
%patch5 -p1 -b .check
|
2005-09-12 18:13:08 +00:00
|
|
|
|
|
|
|
%build
|
2008-02-15 19:17:14 +00:00
|
|
|
autoreconf -v --install || exit 1
|
2012-06-25 20:20:34 +00:00
|
|
|
%configure \
|
2012-05-12 02:55:27 +00:00
|
|
|
%ifarch %{arm}
|
2012-10-08 14:59:49 +00:00
|
|
|
--enable-exynos-experimental-api \
|
2013-04-21 11:46:11 +00:00
|
|
|
--enable-omap-experimental-api \
|
2014-07-07 12:38:00 +00:00
|
|
|
%endif
|
|
|
|
%ifarch %{arm} aarch64
|
|
|
|
--enable-freedreno-experimental-api \
|
2012-05-12 02:55:27 +00:00
|
|
|
%endif
|
2012-09-06 20:36:41 +00:00
|
|
|
--enable-udev
|
2009-02-01 07:08:35 +00:00
|
|
|
make %{?_smp_mflags}
|
2011-04-18 16:04:25 +00:00
|
|
|
pushd tests
|
|
|
|
make %{?smp_mflags} `make check-programs`
|
|
|
|
popd
|
2005-09-12 18:13:08 +00:00
|
|
|
|
|
|
|
%install
|
2008-08-01 06:53:20 +00:00
|
|
|
make install DESTDIR=$RPM_BUILD_ROOT
|
2011-04-18 16:04:25 +00:00
|
|
|
pushd tests
|
|
|
|
mkdir -p $RPM_BUILD_ROOT%{_bindir}
|
2011-04-20 18:07:02 +00:00
|
|
|
for foo in $(make check-programs) ; do
|
|
|
|
install -m 0755 .libs/$foo $RPM_BUILD_ROOT%{_bindir}
|
|
|
|
done
|
2011-04-18 16:04:25 +00:00
|
|
|
popd
|
2008-08-01 06:53:20 +00:00
|
|
|
# SUBDIRS=libdrm
|
2011-10-25 17:48:20 +00:00
|
|
|
mkdir -p $RPM_BUILD_ROOT/lib/udev/rules.d/
|
|
|
|
install -m 0644 %{SOURCE2} $RPM_BUILD_ROOT/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
|
|
|
|
find $RPM_BUILD_ROOT -type f -name '*.la' | xargs rm -f -- || :
|
2010-04-01 03:29:52 +00:00
|
|
|
for i in r300_reg.h via_3d_reg.h
|
2008-08-01 06:53:20 +00:00
|
|
|
do
|
2010-03-25 03:58:26 +00:00
|
|
|
rm -f $RPM_BUILD_ROOT/usr/include/libdrm/$i
|
2008-08-01 06:53:20 +00:00
|
|
|
done
|
2005-09-12 18:13:08 +00:00
|
|
|
|
|
|
|
%post -p /sbin/ldconfig
|
|
|
|
%postun -p /sbin/ldconfig
|
|
|
|
|
|
|
|
%files
|
|
|
|
%defattr(-,root,root,-)
|
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}
|
2012-10-08 14:59:49 +00:00
|
|
|
%{_libdir}/libdrm_exynos.so.1
|
|
|
|
%{_libdir}/libdrm_exynos.so.1.0.0
|
2012-05-12 02:55:27 +00:00
|
|
|
%{_libdir}/libdrm_omap.so.1
|
|
|
|
%{_libdir}/libdrm_omap.so.1.0.0
|
|
|
|
%endif
|
2014-07-07 12:38:00 +00:00
|
|
|
%ifarch %{arm} aarch64
|
|
|
|
%{_libdir}/libdrm_freedreno.so.1
|
|
|
|
%{_libdir}/libdrm_freedreno.so.1.0.0
|
|
|
|
%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
|
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
|
2011-10-25 17:48:20 +00:00
|
|
|
/lib/udev/rules.d/91-drm-modeset.rules
|
2005-09-12 18:13:08 +00:00
|
|
|
|
2011-04-18 16:04:25 +00:00
|
|
|
%files -n drm-utils
|
|
|
|
%defattr(-,root,root,-)
|
|
|
|
%{_bindir}/dristat
|
|
|
|
%{_bindir}/drmstat
|
2012-02-25 16:30:00 +00:00
|
|
|
%ifarch %{ix86} x86_64 ia64
|
2011-04-18 16:04:25 +00:00
|
|
|
%{_bindir}/gem_basic
|
|
|
|
%{_bindir}/gem_flink
|
|
|
|
%{_bindir}/gem_mmap
|
|
|
|
%{_bindir}/gem_readwrite
|
2012-02-25 16:30:00 +00:00
|
|
|
%endif
|
2011-04-18 16:04:25 +00:00
|
|
|
%{_bindir}/getclient
|
|
|
|
%{_bindir}/getstats
|
|
|
|
%{_bindir}/getversion
|
|
|
|
%{_bindir}/name_from_fd
|
|
|
|
%{_bindir}/openclose
|
|
|
|
%{_bindir}/setversion
|
|
|
|
%{_bindir}/updatedraw
|
|
|
|
|
2005-09-12 18:13:08 +00:00
|
|
|
%files devel
|
|
|
|
%defattr(-,root,root,-)
|
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}
|
2012-10-08 14:59:49 +00:00
|
|
|
%{_includedir}/libdrm/exynos_drmif.h
|
2012-05-12 02:55:27 +00:00
|
|
|
%{_includedir}/libdrm/omap_drmif.h
|
2013-04-21 11:46:11 +00:00
|
|
|
%{_includedir}/exynos/
|
2012-05-12 02:55:27 +00:00
|
|
|
%{_includedir}/omap/
|
|
|
|
%endif
|
2014-07-07 12:38:00 +00:00
|
|
|
%ifarch %{arm} aarch64
|
|
|
|
%{_includedir}/freedreno/
|
|
|
|
%endif
|
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
|
2012-04-24 13:34:58 +00:00
|
|
|
%{_includedir}/libdrm/nouveau.h
|
2010-04-08 07:56:52 +00:00
|
|
|
%{_includedir}/libdrm/*_drm.h
|
2012-09-06 20:36:41 +00:00
|
|
|
%{_includedir}/libkms
|
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}
|
2012-10-08 14:59:49 +00:00
|
|
|
%{_libdir}/libdrm_exynos.so
|
2012-05-12 02:55:27 +00:00
|
|
|
%{_libdir}/libdrm_omap.so
|
2014-07-07 12:38:00 +00:00
|
|
|
%endif
|
|
|
|
%ifarch %{arm} aarch64
|
2013-04-21 11:46:11 +00:00
|
|
|
%{_libdir}/libdrm_freedreno.so
|
2012-05-12 02:55:27 +00:00
|
|
|
%endif
|
2008-12-19 06:52:51 +00:00
|
|
|
%{_libdir}/libdrm_radeon.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}
|
2012-10-08 14:59:49 +00:00
|
|
|
%{_libdir}/pkgconfig/libdrm_exynos.pc
|
2012-05-12 02:55:27 +00:00
|
|
|
%{_libdir}/pkgconfig/libdrm_omap.pc
|
|
|
|
%endif
|
2014-07-07 12:38:00 +00:00
|
|
|
%ifarch %{arm} aarch64
|
|
|
|
%{_libdir}/pkgconfig/libdrm_freedreno.pc
|
|
|
|
%endif
|
2009-02-17 23:46:52 +00:00
|
|
|
%{_libdir}/pkgconfig/libdrm_radeon.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
|
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)
|