Blame SPECS/libdrm.spec

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