Blame SPECS/SDL2.spec

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