Blame SPECS/libdrm.spec

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