Blame SPECS/SDL2.spec

dd468c
# For the generated library symbol suffix
dd468c
%if 0%{?__isa_bits} == 32
dd468c
%global libsymbolsuffix %{nil}
dd468c
%else
dd468c
%global libsymbolsuffix ()(%{__isa_bits}bit)
dd468c
%endif
dd468c
dd468c
# For declaring rich dependency on libdecor
dd468c
%global libdecor_majver 0
dd468c
d3c20e
Name:           SDL2
61f5a4
Version:        2.26.0
61f5a4
Release:        1%{?dist}
d3c20e
Summary:        Cross-platform multimedia library
d3c20e
License:        zlib and MIT
d3c20e
URL:            http://www.libsdl.org/
d3c20e
Source0:        http://www.libsdl.org/release/%{name}-%{version}.tar.gz
d3c20e
Source1:        SDL_config.h
dd468c
Source2:        SDL_revision.h
d3c20e
d3c20e
Patch0:         multilib.patch
61f5a4
# Prefer Wayland by default
61f5a4
Patch1:         SDL2-2.0.22-prefer-wayland.patch
d3c20e
dd468c
BuildRequires:  git-core
d3c20e
BuildRequires:  cmake
d3c20e
BuildRequires:  make
d3c20e
BuildRequires:  gcc
d3c20e
BuildRequires:  gcc-c++
d3c20e
BuildRequires:  alsa-lib-devel
d3c20e
BuildRequires:  mesa-libGL-devel
d3c20e
BuildRequires:  mesa-libGLU-devel
d3c20e
BuildRequires:  mesa-libEGL-devel
d3c20e
BuildRequires:  mesa-libGLES-devel
d3c20e
BuildRequires:  libXext-devel
d3c20e
BuildRequires:  libX11-devel
d3c20e
BuildRequires:  libXi-devel
d3c20e
BuildRequires:  libXrandr-devel
d3c20e
BuildRequires:  libXrender-devel
d3c20e
BuildRequires:  libXScrnSaver-devel
d3c20e
BuildRequires:  libXinerama-devel
d3c20e
BuildRequires:  libXcursor-devel
d3c20e
BuildRequires:  systemd-devel
61f5a4
BuildRequires:  pkgconfig(libusb-1.0)
d3c20e
# PulseAudio
d3c20e
BuildRequires:  pkgconfig(libpulse-simple)
d3c20e
# Jack
d3c20e
BuildRequires:  pkgconfig(jack)
d3c20e
# PipeWire
d3c20e
BuildRequires:  pkgconfig(libpipewire-0.3)
d3c20e
# D-Bus
d3c20e
BuildRequires:  pkgconfig(dbus-1)
d3c20e
# IBus
d3c20e
BuildRequires:  pkgconfig(ibus-1.0)
d3c20e
# Wayland
dd468c
BuildRequires:  pkgconfig(libdecor-%{libdecor_majver})
d3c20e
BuildRequires:  pkgconfig(wayland-client)
d3c20e
BuildRequires:  pkgconfig(wayland-egl)
d3c20e
BuildRequires:  pkgconfig(wayland-cursor)
d3c20e
BuildRequires:  pkgconfig(wayland-protocols)
d3c20e
BuildRequires:  pkgconfig(wayland-scanner)
d3c20e
BuildRequires:  pkgconfig(xkbcommon)
d3c20e
# Vulkan
d3c20e
BuildRequires:  vulkan-devel
d3c20e
# KMS
d3c20e
BuildRequires:  mesa-libgbm-devel
d3c20e
BuildRequires:  libdrm-devel
d3c20e
dd468c
# Ensure libdecor is pulled in when libwayland-client is (rhbz#1992804)
dd468c
Requires:       (libdecor-%{libdecor_majver}.so.%{libdecor_majver}%{libsymbolsuffix} if libwayland-client)
dd468c
d3c20e
%description
d3c20e
Simple DirectMedia Layer (SDL) is a cross-platform multimedia library designed
d3c20e
to provide fast access to the graphics frame buffer and audio device.
d3c20e
d3c20e
%package devel
d3c20e
Summary:        Files needed to develop Simple DirectMedia Layer applications
d3c20e
Requires:       %{name}%{?_isa} = %{version}-%{release}
d3c20e
Requires:       mesa-libEGL-devel%{?_isa}
d3c20e
Requires:       mesa-libGLES-devel%{?_isa}
d3c20e
Requires:       libX11-devel%{?_isa}
e54a86
# Conflict with versions before libSDLmain moved here
e54a86
Conflicts:      %{name}-static < 2.0.18-2
d3c20e
d3c20e
%description devel
d3c20e
Simple DirectMedia Layer (SDL) is a cross-platform multimedia library designed
d3c20e
to provide fast access to the graphics frame buffer and audio device. This
d3c20e
package provides the libraries, include files, and other resources needed for
d3c20e
developing SDL applications.
d3c20e
d3c20e
%package static
d3c20e
Summary:        Static libraries for SDL2
dd468c
# Needed to keep CMake happy
dd468c
Requires:       %{name}-devel%{?_isa} = %{version}-%{release}
e54a86
# Conflict with versions before libSDLmain moved to -devel
e54a86
Conflicts:      %{name}-devel < 2.0.18-2
d3c20e
d3c20e
%description static
d3c20e
Static libraries for SDL2.
d3c20e
d3c20e
%prep
dd468c
%autosetup -S git
d3c20e
sed -i -e 's/\r//g' TODO.txt README.md WhatsNew.txt BUGS.txt LICENSE.txt CREDITS.txt README-SDL.txt
d3c20e
d3c20e
%build
d3c20e
# Deal with new CMake policy around whitespace in LDFLAGS...
d3c20e
export LDFLAGS="%{shrink:%{build_ldflags}}"
d3c20e
d3c20e
%cmake \
d3c20e
    -DSDL_DLOPEN=ON \
dd468c
    -DSDL_VIDEO_KMSDRM=ON \
dd468c
    -DSDL_ARTS=OFF \
dd468c
    -DSDL_ESD=OFF \
dd468c
    -DSDL_NAS=OFF \
dd468c
    -DSDL_PULSEAUDIO_SHARED=ON \
dd468c
    -DSDL_JACK_SHARED=ON \
dd468c
    -DSDL_PIPEWIRE_SHARED=ON \
dd468c
    -DSDL_ALSA=ON \
dd468c
    -DSDL_VIDEO_WAYLAND=ON \
dd468c
    -DSDL_LIBDECOR_SHARED=ON \
dd468c
    -DSDL_VIDEO_VULKAN=ON \
dd468c
    -DSDL_SSE3=OFF \
dd468c
    -DSDL_RPATH=OFF \
d3c20e
    -DSDL_STATIC=ON \
d3c20e
    -DSDL_STATIC_PIC=ON \
d3c20e
%ifarch ppc64le
dd468c
    -DSDL_ALTIVEC=OFF \
d3c20e
%endif
d3c20e
d3c20e
%cmake_build
d3c20e
d3c20e
%install
d3c20e
%cmake_install
d3c20e
d3c20e
# Rename SDL_config.h to SDL_config-<arch>.h to avoid file conflicts on
d3c20e
# multilib systems and install SDL_config.h wrapper
d3c20e
mv %{buildroot}%{_includedir}/SDL2/SDL_config.h %{buildroot}%{_includedir}/SDL2/SDL_config-%{_arch}.h
d3c20e
install -p -m 644 %{SOURCE1} %{buildroot}%{_includedir}/SDL2/SDL_config.h
d3c20e
dd468c
# Rename SDL_revision.h to SDL_revision-<arch>.h to avoid file conflicts on
dd468c
# multilib systems and install SDL_revision.h wrapper
dd468c
# TODO: Figure out how in the hell the SDL_REVISION changes between architectures on the same SRPM.
dd468c
mv %{buildroot}%{_includedir}/SDL2/SDL_revision.h %{buildroot}%{_includedir}/SDL2/SDL_revision-%{_arch}.h
dd468c
install -p -m 644 %{SOURCE2} %{buildroot}%{_includedir}/SDL2/SDL_revision.h
d3c20e
d3c20e
%files
d3c20e
%license LICENSE.txt
d3c20e
%doc BUGS.txt CREDITS.txt README-SDL.txt
d3c20e
%{_libdir}/libSDL2-2.0.so.0*
d3c20e
d3c20e
%files devel
d3c20e
%doc README.md TODO.txt WhatsNew.txt
d3c20e
%{_bindir}/*-config
d3c20e
%{_libdir}/lib*.so
e54a86
%{_libdir}/libSDL2main.a
d3c20e
%{_libdir}/pkgconfig/sdl2.pc
dd468c
%dir %{_libdir}/cmake/SDL2
dd468c
%{_libdir}/cmake/SDL2/SDL2Config*.cmake
dd468c
%{_libdir}/cmake/SDL2/SDL2Targets*.cmake
e54a86
%{_libdir}/cmake/SDL2/SDL2mainTargets*.cmake
d3c20e
%{_includedir}/SDL2
d3c20e
%{_datadir}/aclocal/*
61f5a4
%{_libdir}/libSDL2_test.a
61f5a4
%{_libdir}/cmake/SDL2/SDL2testTargets*.cmake
d3c20e
d3c20e
%files static
d3c20e
%license LICENSE.txt
e54a86
%{_libdir}/libSDL2.a
dd468c
%{_libdir}/cmake/SDL2/SDL2staticTargets*.cmake
d3c20e
d3c20e
%changelog
61f5a4
* Mon Aug 21 2022 Neal Gompa <ngompa@centosproject.org> - 2.26.0-1
61f5a4
- Update to 2.26.0
61f5a4
  Resolves: rhbz#2051959
61f5a4
- Drop backported patches included in this release
61f5a4
e54a86
* Tue Feb 08 2022 Neal Gompa <ngompa@centosproject.org> - 2.0.20-2
e54a86
- Backport Wayland fixes with Wayland-by-default from upstream
e54a86
  Resolves: rhbz#2051963
e54a86
e54a86
* Tue Jan 11 2022 Neal Gompa <ngompa@centosproject.org> - 2.0.20-1
e54a86
- Update to 2.0.20
e54a86
  Resolves: rhbz#2039137
e54a86
- Drop backported patches included in this release
e54a86
e54a86
* Fri Jan 07 2022 Neal Gompa <ngompa@centosproject.org> - 2.0.18-2
e54a86
- Move libSDL2main to -devel and refresh split CMake target patch
e54a86
  Resolves: rhbz#2038390
e54a86
dd468c
* Tue Jan 04 2022 Neal Gompa <ngompa@centosproject.org> - 2.0.18-1
dd468c
- Update to 2.0.18
dd468c
  Resolves: rhbz#2028076
dd468c
- Fix multilib conflict with SDL_revision.h (rhbz#2008838)
dd468c
- Backport fix for building against wayland-1.20+
dd468c
- Add patch to split SDL2 CMake targets for static libraries (rhbz#1965359)
dd468c
dd468c
* Wed Dec 01 2021 Neal Gompa <ngompa@centosproject.org> - 2.0.16-5
dd468c
- Re-enable libdecor support now that it's available in RHEL 9
dd468c
  Resolves: rhbz#2003471
dd468c
d3c20e
* Thu Aug 26 2021 Wim Taymans <wtaymans@redhat.com> - 2.0.16-4
d3c20e
- Build with SDL_STATIC_PIC and SDL_STATIC to actually make the
d3c20e
  static version of SDL2
d3c20e
d3c20e
* Thu Aug 26 2021 Wim Taymans <wtaymans@redhat.com> - 2.0.16-3
d3c20e
- Build with SDL_STATIC_PIC instead of SDL_STATIC
d3c20e
d3c20e
* Thu Aug 26 2021 Wim Taymans <wtaymans@redhat.com> - 2.0.16-2
d3c20e
- Disable libdecor until it is added to centos/RHEL9
d3c20e
d3c20e
* Thu Aug 26 2021 Neal Gompa <ngompa@fedoraproject.org> - 2.0.16-1
d3c20e
- Update to 2.0.16
d3c20e
d3c20e
* Thu Aug 26 2021 Tom Callaway <spot@fedoraproject.org> - 2.0.14-7
d3c20e
- add -static Requires to -devel to make CMake stop failing on missing files (bz1965359)
d3c20e
d3c20e
* Thu Aug 26 2021 Neal Gompa <ngompa13@gmail.com> - 2.0.14-6
d3c20e
- Switch to CMake to build SDL2
d3c20e
- Build JACK support unconditionally since PipeWire-JACK exists in RHEL 9
d3c20e
d3c20e
* Tue Aug 10 2021 Mohan Boddu <mboddu@redhat.com> - 2.0.14-5
d3c20e
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
d3c20e
  Related: rhbz#1991688
d3c20e
d3c20e
* Thu Apr 15 2021 Mohan Boddu <mboddu@redhat.com> - 2.0.14-4
d3c20e
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
d3c20e
d3c20e
* Mon Feb 22 2021 Hans de Goede <hdegoede@redhat.com> - 2.0.14-3
d3c20e
- SDL2 no longer uses audiofile, drop the audiofile-devel BuildRequires
d3c20e
d3c20e
* Mon Jan 25 2021 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.14-2
d3c20e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
d3c20e
d3c20e
* Thu Jan 21 2021 Pete Walter <pwalter@fedoraproject.org> - 2.0.14-1
d3c20e
- Update to 2.0.14
d3c20e
- Rebase multilib.patch
d3c20e
- Don't use globs in the form of libFOO.so.* for listing files
d3c20e
d3c20e
* Tue Jan 12 2021 Wim Taymans <wtaymans@redhat.com> - 2.0.12-5
d3c20e
- Disable JACK on rhel >= 8
d3c20e
d3c20e
* Sat Aug 01 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.12-4
d3c20e
- Second attempt - Rebuilt for
d3c20e
  https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
d3c20e
d3c20e
* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.12-3
d3c20e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
d3c20e
d3c20e
* Mon Jul 13 2020 Tom Stellard <tstellar@redhat.com> - 2.0.12-2
d3c20e
- Use make macros
d3c20e
- https://fedoraproject.org/wiki/Changes/UseMakeBuildInstallMacro
d3c20e
d3c20e
* Wed Mar 11 2020 Pete Walter <pwalter@fedoraproject.org> - 2.0.12-1
d3c20e
- Update to 2.0.12
d3c20e
d3c20e
* Tue Feb 11 2020 Tom Callaway <spot@fedoraproject.org> - 2.0.10-3
d3c20e
- apply upstream fix for FTBFS
d3c20e
d3c20e
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.10-2
d3c20e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
d3c20e
d3c20e
* Fri Jul 26 2019 Pete Walter <pwalter@fedoraproject.org> - 2.0.10-1
d3c20e
- Update to 2.0.10
d3c20e
d3c20e
* Wed Jul 24 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.9-4
d3c20e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
d3c20e
d3c20e
* Fri Feb 15 2019 Tom Callaway <spot@fedoraproject.org> - 2.0.9-3
d3c20e
- use khrplatform defines, not ptrdiff_t
d3c20e
d3c20e
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.9-2
d3c20e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
d3c20e
d3c20e
* Fri Nov  2 2018 Tom Callaway <spot@fedoraproject.org> - 2.0.9-1
d3c20e
- update to 2.0.9
d3c20e
d3c20e
* Thu Jul 12 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.8-6
d3c20e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
d3c20e
d3c20e
* Mon May 21 2018 Adam Jackson <ajax@redhat.com> - 2.0.8-5
d3c20e
- Backport a crash/hang fix from 2.0.9 (#1580541)
d3c20e
d3c20e
* Wed Apr 11 2018 Tom Callaway <spot@fedoraproject.org> - 2.0.8-4
d3c20e
- enable video-kmsdrm
d3c20e
d3c20e
* Fri Mar 30 2018 David Abdurachmanov <david.abdurachmanov@gmail.com> - 2.0.8-3
d3c20e
- Add riscv64 to SDL_config.h
d3c20e
d3c20e
* Sun Mar 04 2018 Miro Hrončok <mhroncok@redhat.com> - 2.0.8-2
d3c20e
- Disable altivec on ppc64le (RHBZ #1551338)
d3c20e
d3c20e
* Sun Mar  4 2018 Peter Robinson <pbrobinson@fedoraproject.org> 2.0.8-1
d3c20e
- Update to 2.0.8
d3c20e
d3c20e
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.7-4
d3c20e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
d3c20e
d3c20e
* Wed Jan 31 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 2.0.7-3
d3c20e
- Switch to %%ldconfig_scriptlets
d3c20e
d3c20e
* Sun Nov 05 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 2.0.7-2
d3c20e
- Fix IBus
d3c20e
d3c20e
* Tue Oct 24 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 2.0.7-1
d3c20e
- Update to 2.0.7
d3c20e
d3c20e
* Thu Oct 19 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 2.0.6-4
d3c20e
- Fully fix last overflow
d3c20e
d3c20e
* Wed Oct 11 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 2.0.6-3
d3c20e
- Fix potential overflow in surface allocation
d3c20e
d3c20e
* Thu Oct 05 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 2.0.6-2
d3c20e
- Fix invalid dbus arguments
d3c20e
d3c20e
* Sat Sep 23 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 2.0.6-1
d3c20e
- Update to 2.0.6
d3c20e
d3c20e
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.5-6
d3c20e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
d3c20e
d3c20e
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.5-5
d3c20e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
d3c20e
d3c20e
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.5-4
d3c20e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
d3c20e
d3c20e
* Fri Jan 27 2017 Igor Gnatenko <ignatenko@redhat.com> - 2.0.5-3
d3c20e
- Fix NULL dereference (RHBZ #1416945)
d3c20e
d3c20e
* Wed Oct 26 2016 Dan Horák <dan[at]danny.cz> - 2.0.5-2
d3c20e
- fix FTBFS on ppc64/ppc64le
d3c20e
d3c20e
* Thu Oct 20 2016 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 2.0.5-1
d3c20e
- Update to 2.0.5 (RHBZ #1387238)
d3c20e
d3c20e
* Mon Sep 05 2016 Kalev Lember <klember@redhat.com> - 2.0.4-9
d3c20e
- Backport Wayland fixes from upstream
d3c20e
d3c20e
* Sun Aug 14 2016 Igor Gnatenko <ignatenko@redhat.com> - 2.0.4-8
d3c20e
- Fix whitespaces in CMake file (RHBZ #1366868)
d3c20e
d3c20e
* Sun Jul 10 2016 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 2.0.4-7
d3c20e
- Remove useless Requirements from -devel subpkg
d3c20e
d3c20e
* Sun Jul 10 2016 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 2.0.4-6
d3c20e
- Add ibus support
d3c20e
d3c20e
* Sun Jul 10 2016 Joseph Mullally <jwmullally@gmail.com> - 2.0.4-5
d3c20e
- fix Wayland dynamic symbol loading (bz1354155)
d3c20e
d3c20e
* Thu Feb 25 2016 Tom Callaway <spot@fedoraproject.org> - 2.0.4-4
d3c20e
- enable static subpackage (bz1253930)
d3c20e
d3c20e
* Fri Feb  5 2016 Tom Callaway <spot@fedoraproject.org> - 2.0.4-3
d3c20e
- fix compile against latest wayland
d3c20e
d3c20e
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.4-2
d3c20e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
d3c20e
d3c20e
* Mon Jan 04 2016 Tom Callaway <spot@fedoraproject.org> - 2.0.4-1
d3c20e
- update to 2.0.4
d3c20e
d3c20e
* Fri Sep 04 2015 Michal Toman <mtoman@fedoraproject.org> - 2.0.3-7
d3c20e
- Add support for MIPS architecture to SDL_config.h
d3c20e
d3c20e
* Tue Jun 16 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.3-6
d3c20e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
d3c20e
d3c20e
* Tue Jun  2 2015 Tom Callaway <spot@fedoraproject.org> - 2.0.3-5
d3c20e
- remove code preventing builds with ancient gcc
d3c20e
d3c20e
* Fri Aug 15 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.3-4
d3c20e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
d3c20e
d3c20e
* Wed Jun 11 2014 Karsten Hopp <karsten@redhat.com> 2.0.3-3
d3c20e
- fix filename of SDL_config.h for ppc64le
d3c20e
d3c20e
* Fri Jun 06 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.3-2
d3c20e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
d3c20e
d3c20e
* Wed Mar 19 2014 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 2.0.3-1
d3c20e
- 2.0.3 upstream release
d3c20e
d3c20e
* Sat Mar 08 2014 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 2.0.2-1
d3c20e
- 2.0.2 upstream release
d3c20e
- Enable wayland backend
d3c20e
d3c20e
* Tue Dec 10 2013 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 2.0.1-2
d3c20e
- Add libXinerama, libudev, libXcursor support (RHBZ #1039702)
d3c20e
d3c20e
* Thu Oct 24 2013 Tom Callaway <spot@fedoraproject.org> - 2.0.1-1
d3c20e
- update to 2.0.1
d3c20e
d3c20e
* Sat Aug 24 2013 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 2.0.0-3
d3c20e
- Fix multilib issues
d3c20e
d3c20e
* Tue Aug 13 2013 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 2.0.0-2
d3c20e
- SDL2 is released. Announce:
d3c20e
- http://lists.libsdl.org/pipermail/sdl-libsdl.org/2013-August/089854.html
d3c20e
d3c20e
* Sat Aug 10 2013 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 2.0.0-1.rc4
d3c20e
- Update to latest SDL2 (08.08.2013)
d3c20e
d3c20e
* Tue Jul 30 2013 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 2.0.0-1.rc3
d3c20e
- Fix Licenses
d3c20e
- some cleanups in spec
d3c20e
d3c20e
* Tue Jul 30 2013 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 2.0.0-1.rc2
d3c20e
- Delete -static package
d3c20e
- Fix License tag
d3c20e
- Fix end-of-line in documents
d3c20e
- Remove all spike-nails EL-specify (if someone will want to do - 'patches are welcome')
d3c20e
- Change Release tag to .rcX%%{?dist} (maintainer has changed released tarballs)
d3c20e
d3c20e
* Mon Jul 29 2013 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 2.0.0-1.rc1
d3c20e
- Some fixes in spec and cleanup
d3c20e
d3c20e
* Mon Jul 29 2013 Jon Ciesla <limburgher@gmail.com> - 2.0.0-1
d3c20e
- Ported from SDL 1.2.15-10