45fb5f6
# The game contains a copy of these fonts, we replace these with symlinks to the system versions of these fonts
45fb5f6
%global fonts font(amiri) font(dejavusans) font(dejavusansmono) font(dejavuserif) font(widelands) font(gargi) font(wenquanyimicrohei) font(frankruehlclm)
f70d11b
c521a0d
Name:           widelands
01a266a
Version:        1.1
6ae07c9
Release:        6%{?dist}
c521a0d
Summary:        Open source realtime-strategy game
c521a0d
8b06edc
License:        GPLv2+
c521a0d
URL:            http://www.widelands.org
01a266a
Source0:        https://github.com/widelands/widelands/archive/v%{version}/%{name}-%{version}.tar.gz
45fb5f6
# gnu++11 fix in CMakeLists.txt for PPC64 little-endian
c362e4d
Patch0:         widelands-build19-ppc64le.patch
45fb5f6
# Fix failures on s390x due to uninitialized variables
45fb5f6
Patch1:         widelands-build20-gcc10.patch
19ea4fe
# widelands uses glew which atm is hardcoded to glx, see e.g.:
19ea4fe
# https://github.com/nigels-com/glew/issues/172
19ea4fe
# This can be fixed cleaner by switching to glewContextInit once we are
19ea4fe
# at glew 2.3, or maybe backport:
19ea4fe
# https://github.com/nigels-com/glew/commit/715afa0ff56c0eb12c23938b80aa2813daa10d81
19ea4fe
Patch2:         widelands-1.0-make-sdl2-use-x11.patch
01a266a
Patch3:         widelands-1.1-gcc13.patch
01a266a
Patch4:         widelands-1.1-f37-sys-minizip-buildfix.patch
9594c69
Patch5:         widelands-1.1-disable-some-tests.patch
9c89435
01a266a
BuildRequires: asio-devel
9c89435
BuildRequires: SDL2-devel
9c89435
BuildRequires: SDL2_image-devel
9c89435
BuildRequires: SDL2_mixer-devel
9c89435
BuildRequires: SDL2_ttf-devel
9c89435
BuildRequires: boost-devel >= 1.48.0
f70d11b
BuildRequires: cmake
f70d11b
BuildRequires: ctags
45fb5f6
BuildRequires: desktop-file-utils 
45fb5f6
BuildRequires: libappstream-glib
f70d11b
BuildRequires: gettext
012e3b4
BuildRequires: gcc
012e3b4
BuildRequires: gcc-c++
f70d11b
BuildRequires: glew-devel
f70d11b
BuildRequires: libpng-devel
19ea4fe
BuildRequires: libcurl-devel
f169758
BuildRequires: minizip-ng-compat-devel
19ea4fe
BuildRequires: python3
38bd356
# For the %%build part generating the symlinks
8ee7428
BuildRequires: fontconfig %{fonts}
45fb5f6
Requires:      hicolor-icon-theme
45fb5f6
Requires:      %{fonts}
c521a0d
c521a0d
%description
c521a0d
Widelands is an open source (GPLed), realtime-strategy game, using SDL and
c521a0d
other free libraries, which is still under development. Widelands is inspired
c521a0d
by Settlers II (Bluebyte) and is partly similar to it, so if you know it, you
f70d11b
perhaps will have a thought, what Widelands is all about.
c521a0d
c521a0d
c521a0d
%prep
d29b372
%setup -q
d29b372
%patch0 -p1
d29b372
%patch1 -p1
d29b372
%patch2 -p1
d29b372
%patch3 -p1
d29b372
%patch4 -p1
d29b372
%ifarch s390x
d29b372
%patch5 -p1
d29b372
%endif
c362e4d
c521a0d
c521a0d
%build
a8b4d28
%cmake \
9c89435
    -DCMAKE_BUILD_TYPE=Release \
9c89435
    -DWL_INSTALL_BASEDIR=%{_prefix}/share/%{name} \
9c89435
    -DWL_INSTALL_DATADIR=%{_prefix}/share/%{name} \
9c89435
    -DOPTION_BUILD_WEBSITE_TOOLS=OFF \
5c1cc67
    %{nil}
5c1cc67
%cmake_build
bde8cef
c521a0d
c521a0d
%install
5c1cc67
%cmake_install
c521a0d
01a266a
mkdir -p $RPM_BUILD_ROOT%{_bindir}
01a266a
mv $RPM_BUILD_ROOT%{_prefix}/games/%{name} \
01a266a
   $RPM_BUILD_ROOT%{_bindir}/%{name}
01a266a
45fb5f6
# Validate desktop file (provided by upstream)
45fb5f6
desktop-file-validate $RPM_BUILD_ROOT%{_datadir}/applications/*.desktop
9c89435
45fb5f6
# Validate appdata (provided by upstream)
45fb5f6
appstream-util validate-relax --nonet $RPM_BUILD_ROOT%{_metainfodir}/*.appdata.xml
c521a0d
bde8cef
pushd $RPM_BUILD_ROOT
8ee7428
# Replace fonts with system fonts. We used to have symlinks directly from
8ee7428
# i18n/fonts/<widelands-name> to the /usr/share/fonts/<system-font-name> dir
8ee7428
# but with recent font packaging changes this no longer works because e.g.
8ee7428
# Widelands expects all DejaVu fonts in a single dir, where as now there are
8ee7428
# separate /usr/share/fonts dirs for the sans, sans-mono and serif versions.
8ee7428
#
8ee7428
# Replacing the symlinks at the dir level with keeping the
8ee7428
# i18n/fonts/<widelands-name> directory and then putting symlinks to the
8ee7428
# invidual font-files inside that directory does not work, because on upgrade
8ee7428
# that would mean replacing a symlink with a dir which breaks horribly.
8ee7428
# So for those cases where we used to have a symlink, we create a new dir
8ee7428
# under i18n/fonts with a different name, with symlinks to the individual
8ee7428
# files in that dir; and then point the symlink to this new dir, to avoid
8ee7428
# the replace a symlink with a dir problem.
9c89435
rm -r usr/share/%{name}/i18n/fonts/amiri
8ee7428
mkdir usr/share/%{name}/i18n/fonts/amiri-fonts
8ee7428
ln -s amiri-fonts usr/share/%{name}/i18n/fonts/amiri
8ee7428
ln -s $(fc-match -f "%{file}" "amiri") \
8ee7428
  usr/share/%{name}/i18n/fonts/amiri-fonts/amiri-regular.ttf
8ee7428
ln -s $(fc-match -f "%{file}" "amiri:bold") \
8ee7428
  usr/share/%{name}/i18n/fonts/amiri-fonts/amiri-bold.ttf
8ee7428
ln -s $(fc-match -f "%{file}" "amiri:italic") \
8ee7428
  usr/share/%{name}/i18n/fonts/amiri-fonts/amiri-slanted.ttf
8ee7428
ln -s $(fc-match -f "%{file}" "amiri:bold:italic") \
8ee7428
  usr/share/%{name}/i18n/fonts/amiri-fonts/amiri-boldslanted.ttf
8ee7428
8ee7428
rm -r usr/share/%{name}/i18n/fonts/DejaVu
8ee7428
mkdir usr/share/%{name}/i18n/fonts/dejavu-fonts
8ee7428
ln -s dejavu-fonts usr/share/%{name}/i18n/fonts/DejaVu
8ee7428
ln -s $(fc-match -f "%{file}" "sans") \
8ee7428
  usr/share/%{name}/i18n/fonts/dejavu-fonts/DejaVuSans.ttf
8ee7428
ln -s $(fc-match -f "%{file}" "sans:bold") \
8ee7428
  usr/share/%{name}/i18n/fonts/dejavu-fonts/DejaVuSans-Bold.ttf
8ee7428
ln -s $(fc-match -f "%{file}" "sans:italic") \
8ee7428
  usr/share/%{name}/i18n/fonts/dejavu-fonts/DejaVuSans-Oblique.ttf
8ee7428
ln -s $(fc-match -f "%{file}" "sans:bold:italic") \
8ee7428
  usr/share/%{name}/i18n/fonts/dejavu-fonts/DejaVuSans-BoldOblique.ttf
8ee7428
ln -s $(fc-match -f "%{file}" "serif") \
8ee7428
  usr/share/%{name}/i18n/fonts/dejavu-fonts/DejaVuSerif.ttf
8ee7428
ln -s $(fc-match -f "%{file}" "serif:bold") \
8ee7428
  usr/share/%{name}/i18n/fonts/dejavu-fonts/DejaVuSerif-Bold.ttf
8ee7428
ln -s $(fc-match -f "%{file}" "serif:italic") \
8ee7428
  usr/share/%{name}/i18n/fonts/dejavu-fonts/DejaVuSerif-Italic.ttf
8ee7428
ln -s $(fc-match -f "%{file}" "serif:bold:italic") \
8ee7428
  usr/share/%{name}/i18n/fonts/dejavu-fonts/DejaVuSerif-BoldItalic.ttf
8ee7428
ln -s $(fc-match -f "%{file}" "monospace") \
8ee7428
  usr/share/%{name}/i18n/fonts/dejavu-fonts/DejaVuSansMono.ttf
8ee7428
ln -s $(fc-match -f "%{file}" "monospace:bold") \
8ee7428
  usr/share/%{name}/i18n/fonts/dejavu-fonts/DejaVuSansMono-Bold.ttf
8ee7428
ln -s $(fc-match -f "%{file}" "monospace:italic") \
8ee7428
  usr/share/%{name}/i18n/fonts/dejavu-fonts/DejaVuSansMono-Oblique.ttf
8ee7428
ln -s $(fc-match -f "%{file}" "monospace:bold:italic") \
8ee7428
  usr/share/%{name}/i18n/fonts/dejavu-fonts/DejaVuSansMono-BoldOblique.ttf
8ee7428
45fb5f6
# Chinese fonts
9c89435
rm -r usr/share/%{name}/i18n/fonts/MicroHei
8ee7428
mkdir usr/share/%{name}/i18n/fonts/wqy-microhei-fonts
8ee7428
ln -s wqy-microhei-fonts usr/share/%{name}/i18n/fonts/MicroHei
8ee7428
ln -s $(fc-match -f "%{file}" "wenquanyimicrohei") \
8ee7428
   usr/share/%{name}/i18n/fonts/wqy-microhei-fonts/wqy-microhei.ttc
8ee7428
f098ac5
### IMPORTANT NOTE ###
f098ac5
# The fonts below never had a symlink to another font-dir shipped, so here we need
f098ac5
# to keep the usr/share/%%{name}/i18n/fonts/foo dir, rather then replace it with a link
f098ac5
45fb5f6
# Devanagari (Hindu) fonts
45fb5f6
# Fedora doesn't ship Nakula, but other Devanagari font sets.
45fb5f6
# Gargi is a TTF font set and should be compatible.
f098ac5
rm -r usr/share/%{name}/i18n/fonts/Nakula/*
45fb5f6
ln -s $(fc-match -f "%{file}" "gargi") \
f098ac5
   usr/share/%{name}/i18n/fonts/Nakula/nakula.ttf
f098ac5
f098ac5
# Hebrew fonts
f098ac5
rm -r usr/share/%{name}/i18n/fonts/Culmus/*
f098ac5
ln -s $(fc-match -f "%{file}" "frankruehlclm:bold") \
f098ac5
  usr/share/%{name}/i18n/fonts/Culmus/TaameyFrankCLM-Bold.ttf
f098ac5
ln -s $(fc-match -f "%{file}" "frankruehlclm:bold:italic") \
f098ac5
  usr/share/%{name}/i18n/fonts/Culmus/TaameyFrankCLM-BoldOblique.ttf
f098ac5
ln -s $(fc-match -f "%{file}" "frankruehlclm:medium") \
f098ac5
  usr/share/%{name}/i18n/fonts/Culmus/TaameyFrankCLM-Medium.ttf
f098ac5
ln -s $(fc-match -f "%{file}" "frankruehlclm:medium:italic") \
f098ac5
  usr/share/%{name}/i18n/fonts/Culmus/TaameyFrankCLM-MediumOblique.ttf
8ee7428
45fb5f6
# In-game Latin fonts - shipped as a separate package
9c89435
rm -r usr/share/%{name}/i18n/fonts/Widelands/*
8ee7428
ln -s $(fc-match -f "%{file}" "widelands") \
8ee7428
   usr/share/%{name}/i18n/fonts/Widelands/Widelands.ttf
9c89435
45fb5f6
9c89435
# Scripting magic to add proper %%lang() markings to the locale files
19ea4fe
find usr/share/widelands/locale/ -maxdepth 1 -type d -name \*_\* | sed -n 's#\(usr/share/widelands/locale/\(.*\)_.*\)#%lang(\2) /\1#p' > %{_builddir}/%{?buildsubdir}/%{name}.files
19ea4fe
find usr/share/widelands/locale/ -maxdepth 1 -type d ! -name "*_*" | sed -n -e 's#\(usr/share/widelands/locale/\(.\+\)\)#%lang(\2) /\1#p' >> %{_builddir}/%{?buildsubdir}/%{name}.files
19ea4fe
find usr/share/widelands/ -mindepth 1 -maxdepth 1 -not -name locale | sed -n 's#\(usr/share/widelands/*\)#/\1#p' >> %{_builddir}/%{?buildsubdir}/%{name}.files
bde8cef
popd
bde8cef
c521a0d
c521a0d
%files -f %{name}.files
6552238
%doc ChangeLog CREDITS
6552238
%license COPYING
45fb5f6
%{_mandir}/man6/widelands.6.gz
c521a0d
%{_bindir}/%{name}
45fb5f6
%{_datadir}/icons/hicolor/*/apps/*.png
45fb5f6
%{_metainfodir}/*.appdata.xml
45fb5f6
%{_datadir}/applications/*.desktop
c521a0d
%dir %{_datadir}/%{name}
c521a0d
%dir %{_datadir}/%{name}/locale
c521a0d
bde8cef
c521a0d
%changelog
6ae07c9
* Wed Jan 31 2024 Pete Walter <pwalter@fedoraproject.org> - 1.1-6
6ae07c9
- Rebuild for ICU 74
6ae07c9
e9167ef
* Sat Jan 27 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1.1-5
e9167ef
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
e9167ef
f169758
* Mon Dec 04 2023 Lukas Javorsky <ljavorsk@redhat.com> - 1.1-4
f169758
- Rebuilt for minizip-ng transition Fedora change
f169758
- Fedora Change: https://fedoraproject.org/wiki/Changes/MinizipNGTransition
f169758
59d1dc7
* Sat Jul 22 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1.1-3
59d1dc7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
59d1dc7
0d6898a
* Tue Jul 11 2023 FrantiĊĦek Zatloukal <fzatlouk@redhat.com> - 1.1-2
0d6898a
- Rebuilt for ICU 73.2
0d6898a
01a266a
* Mon Mar 27 2023 Hans de Goede <hdegoede@redhat.com> - 1.1-1
01a266a
- New upstream release 1.1 (rhbz#2135131)
01a266a
- Fix FTBFS (rhbz#2171759)
01a266a
7c8a596
* Sat Jan 21 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1.0-6
7c8a596
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
7c8a596
bf48c86
* Sat Dec 31 2022 Pete Walter <pwalter@fedoraproject.org> - 1.0-5
bf48c86
- Rebuild for ICU 72
bf48c86
461db30
* Sun Aug 14 2022 Hans de Goede <hdegoede@redhat.com> - 1.0-4
461db30
- Fix FTBFS (rhbz#2114565)
461db30
2991c31
* Mon Aug 01 2022 Frantisek Zatloukal <fzatlouk@redhat.com> - 1.0-3
2991c31
- Rebuilt for ICU 71.1
2991c31
9595603
* Sat Jul 23 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.0-2
9595603
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
9595603
19ea4fe
* Sun Mar  6 2022 Hans de Goede <hdegoede@redhat.com> - 1.0-1
19ea4fe
- New upstream release 1.0 (rhbz1974007)
19ea4fe
- Fix FTBFS (rhbz2047116)
19ea4fe
14316a2
* Thu Feb 10 2022 Orion Poplawski <orion@nwra.com> - 0-0.89.build21
14316a2
- Rebuild for glew 2.2
14316a2
fee9fd2
* Sat Jan 22 2022 Fedora Release Engineering <releng@fedoraproject.org> - 0-0.88.build21
fee9fd2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
fee9fd2
4405e13
* Sat Aug 07 2021 Jonathan Wakely <jwakely@redhat.com> - 0-0.87.build21
4405e13
- Rebuilt for Boost 1.76
4405e13
2ce7b0c
* Fri Jul 23 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0-0.86.build21
2ce7b0c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
2ce7b0c
812f150
* Thu May 20 2021 Pete Walter <pwalter@fedoraproject.org> - 0-0.85.build21
812f150
- Rebuild for ICU 69
812f150
f098ac5
* Mon Apr 19 2021 Hans de Goede <hdegoede@redhat.com> - 0-0.84.build21
f098ac5
- Stop replacing dirs with symlinks this breaks upgrades again (rhbz 1947182)
f098ac5
45fb5f6
* Sun Feb 7 2021 Andy Mender <andymenderunix@fedoraproject.org> - 0-0.83.build21
45fb5f6
- Unbundle Culmus fonts
45fb5f6
- Update to build21
45fb5f6
- Clean up patches
45fb5f6
- Point Source0 to GitHub release tarballs
45fb5f6
- Fix new issues with fonts
45fb5f6
- Use appdata and desktop file provided by upstream
45fb5f6
- Update records in %%files section
45fb5f6
dbf5248
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0-0.82.build20
dbf5248
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
dbf5248
3cf825e
* Fri Jan 22 2021 Jonathan Wakely <jwakely@redhat.com> - 0-0.81.build20
3cf825e
- Rebuilt for Boost 1.75
3cf825e
5707af8
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0-0.80.build20
5707af8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
5707af8
45fb5f6
* Wed Jun 03 2020 Jonathan Wakely <jwakely@redhat.com> - 0-0.79.build20
1ca620a
- Rebuilt for Boost 1.73
1ca620a
1f079fd
* Sat May 16 2020 Pete Walter <pwalter@fedoraproject.org> - 0-0.78.build20
1f079fd
- Rebuild for ICU 67
1f079fd
8ee7428
* Thu Mar 19 2020 Hans de Goede <hdegoede@redhat.com> - 0-0.77.build20
8ee7428
- Stop replacing symlinks with dirs this breaks upgrades (rhbz 1806272)
8ee7428
- Use fc-match to generate font file symlinks to future proof the package
8ee7428
  against future font file-path or name changes (rhbz 1806272)
8ee7428
38bd356
* Sat Mar  7 2020 Hans de Goede <hdegoede@redhat.com> - 0-0.76.build20
38bd356
- Adjust Dejavu font symlinks for dejavu font package path changes
38bd356
- Fix FTBFS (rhbz#1800251)
38bd356
cfa13bf
* Fri Jan 31 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0-0.75.build20
cfa13bf
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
cfa13bf
dc2bc88
* Fri Jan 17 2020 Jeff Law <law@redhat.com> - 0-0.74.build20
dc2bc88
- Work around false positive uninitialized variable warning from gcc10
dc2bc88
0abd928
* Fri Nov 01 2019 Pete Walter <pwalter@fedoraproject.org> - 0-0.73.build20
0abd928
- Rebuild for ICU 65
0abd928
bbfbfc3
* Sat Jul 27 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0-0.72.build20
bbfbfc3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
bbfbfc3
a80f563
* Sun Jul 14 2019 Hans de Goede <hdegoede@redhat.com> - 0-0.71.build20
a80f563
- Update to new upstream Build20 release
a80f563
89f7784
* Sun Feb 03 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0-0.70.build19
89f7784
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
89f7784
70cadc3
* Fri Jan 25 2019 Jonathan Wakely <jwakely@redhat.com> - 0-0.69.build19
70cadc3
- Rebuilt for Boost 1.69
70cadc3
84dbb56
* Wed Jan 23 2019 Pete Walter <pwalter@fedoraproject.org> - 0-0.68.build19
84dbb56
- Rebuild for ICU 63
84dbb56
53d5dc2
* Thu Aug 23 2018 Nicolas Chauvet <kwizart@gmail.com> - 0-0.67.build19
53d5dc2
- Rebuilt for glew 2.1.0
53d5dc2
6552238
* Tue Aug 14 2018 Hans de Goede <hdegoede@redhat.com> - 0-0.66.build19
6552238
- Fix FTBFS (rhbz#1606678)
6552238
- Add appdata
6552238
ebd46f9
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0-0.65.build19
ebd46f9
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
ebd46f9
f1e4481
* Tue Jul 10 2018 Pete Walter <pwalter@fedoraproject.org> - 0-0.64.build19
f1e4481
- Rebuild for ICU 62
f1e4481
8c10e79
* Mon Apr 30 2018 Pete Walter <pwalter@fedoraproject.org> - 0-0.63.build19
8c10e79
- Rebuild for ICU 61.1
8c10e79
012e3b4
* Tue Feb 20 2018 Nils Philippsen <nils@tiptoe.de> - 0-0.62.build19
012e3b4
- require gcc, gcc-c++ for building
c362e4d
- FTBFS: build with --std=gnu++11 on ppc64le
012e3b4
9c89435
* Thu Feb 08 2018 Hans de Goede <hdegoede@redhat.com> - 0-0.61.build19
9c89435
- Update to new upstream Build19 release (rhbz#1397883)
9c89435
- Strip 2012 and older changelog entries
9c89435
ccc7d54
* Thu Jan 18 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0-0.60.build18
ccc7d54
- Remove obsolete scriptlets
ccc7d54
b76a233
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0-0.59.build18
b76a233
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
b76a233
08b2f19
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0-0.58.build18
08b2f19
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
08b2f19
21c0def
* Mon May 15 2017 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0-0.57.build18
21c0def
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_27_Mass_Rebuild
21c0def
7eae8c2
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0-0.56.build18
7eae8c2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
7eae8c2
07552a1
* Fri Jan 27 2017 Jonathan Wakely <jwakely@redhat.com> - 0-0.55.build18
07552a1
- Rebuilt for Boost 1.63
07552a1
Orion Poplawski aba28da
* Tue Jan 10 2017 Orion Poplawski <orion@cora.nwra.com> - 0-0.54.build18
Orion Poplawski aba28da
- Rebuild for glew 2.0.0
Orion Poplawski aba28da
c2389ed
* Fri Feb 05 2016 Fedora Release Engineering <releng@fedoraproject.org> - 0-0.53.build18
c2389ed
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
c2389ed
9f1d133
* Sat Jan 16 2016 Jonathan Wakely <jwakely@redhat.com> - 0-0.52.build18
9f1d133
- Rebuilt for Boost 1.60
9f1d133
c7ef6ef
* Thu Jan 14 2016 Adam Jackson <ajax@redhat.com> - 0-0.51.build18
c7ef6ef
- Rebuild for glew 1.13
c7ef6ef
a7183ad
* Thu Aug 27 2015 Jonathan Wakely <jwakely@redhat.com> - 0-0.50.build18
a7183ad
- Rebuilt for Boost 1.59
a7183ad
6b5d7a6
* Wed Jul 29 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0-0.49.build18
6b5d7a6
- Rebuilt for https://fedoraproject.org/wiki/Changes/F23Boost159
6b5d7a6
f597747
* Wed Jul 22 2015 David Tardon <dtardon@redhat.com> - 0-0.48.build18
f597747
- rebuild for Boost 1.58
f597747
dfd29f9
* Fri Jun 19 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0-0.47.build18
dfd29f9
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
dfd29f9
a7690b1
* Sat May 02 2015 Kalev Lember <kalevlember@gmail.com> - 0-0.46.build18
a7690b1
- Rebuilt for GCC 5 C++11 ABI change
a7690b1
Petr Machata c9913cf
* Tue Jan 27 2015 Petr Machata <pmachata@redhat.com> - 0-0.45.build18
Petr Machata c9913cf
- Rebuild for boost 1.57.0
Petr Machata c9913cf
599a19a
* Mon Aug 18 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0-0.44.build18
599a19a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
599a19a
7d7bd04
* Fri Jun 13 2014 Hans de Goede <hdegoede@redhat.com> - 0-0.43.build18
7d7bd04
- Update to new upstream Build18 release (rhbz#1085517)
7d7bd04
- Rebuild for new SDL_gfx
7d7bd04
f09f799
* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0-0.42.build17
f09f799
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
f09f799
Petr Machata 6fbaf9c
* Fri May 23 2014 Petr Machata <pmachata@redhat.com> - 0-0.41.build17
Petr Machata 6fbaf9c
- Rebuild for boost 1.55.0
Petr Machata 6fbaf9c
2894f07
* Tue Dec 03 2013 Nils Philippsen <nils@redhat.com> - 0-0.40.build17
2894f07
- use string literals as format strings (#1037384)
2894f07
e29e70a
* Mon Nov 18 2013 Dave Airlie <airlied@redhat.com> - 0-0.39.build17
e29e70a
- rebuilt for GLEW 1.10
e29e70a
4e79bb1
* Sun Aug 04 2013 Hans de Goede <hdegoede@redhat.com> - 0-0.38.build17
4e79bb1
- Build with compat-lua on f20+
4e79bb1
69df1dc
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0-0.37.build17
69df1dc
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
69df1dc
Petr Machata 4c76cc0
* Tue Jul 30 2013 Petr Machata <pmachata@redhat.com> - 0-0.36.build17
Petr Machata 4c76cc0
- Rebuild for boost 1.54.0
Petr Machata 4c76cc0
Parag Nemade 34ccb85
* Sat Feb 09 2013 Parag Nemade <paragn AT fedoraproject DOT org> - 0-0.35.build17
Parag Nemade 34ccb85
- Remove vendor tag from desktop file as per https://fedorahosted.org/fesco/ticket/1077
Parag Nemade 34ccb85
- Cleanup spec as per recently changed packaging guidelines