From b40fb0ec4f59124803b5cc765393b14912784922 Mon Sep 17 00:00:00 2001 From: Adam Jackson Date: Tue, 6 Dec 2011 01:29:43 -0500 Subject: [PATCH 01/11] Rebuild for new libpng --- wormux.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/wormux.spec b/wormux.spec index 5a1ec62..e69de62 100644 --- a/wormux.spec +++ b/wormux.spec @@ -1,6 +1,6 @@ Name: wormux Version: 0.9.2.1 -Release: 5%{?dist} +Release: 6%{?dist} Summary: 2D convivial mass murder game Group: Amusements/Games @@ -105,6 +105,9 @@ fi %{_datadir}/%{name} %changelog +* Tue Dec 06 2011 Adam Jackson - 0.9.2.1-6 +- Rebuild for new libpng + * Tue Jul 26 2011 Bruno Wolff III - 0.9.2.1-5 - Rebuild for SDL_gfx soname bump. From 3c5c609bc243a1f96ed3a0c3f0b6707a1eb71f35 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Sat, 14 Jan 2012 02:29:10 -0600 Subject: [PATCH 02/11] - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild --- wormux.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/wormux.spec b/wormux.spec index e69de62..1d97bad 100644 --- a/wormux.spec +++ b/wormux.spec @@ -1,6 +1,6 @@ Name: wormux Version: 0.9.2.1 -Release: 6%{?dist} +Release: 7%{?dist} Summary: 2D convivial mass murder game Group: Amusements/Games @@ -105,6 +105,9 @@ fi %{_datadir}/%{name} %changelog +* Sat Jan 14 2012 Fedora Release Engineering - 0.9.2.1-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild + * Tue Dec 06 2011 Adam Jackson - 0.9.2.1-6 - Rebuild for new libpng From b118699c2edf469c4540dd905f26892eddffe585 Mon Sep 17 00:00:00 2001 From: Bruno Wolff III Date: Sun, 26 Feb 2012 10:45:38 -0600 Subject: [PATCH 03/11] We don't need the old source to do a current build --- sources | 1 - 1 file changed, 1 deletion(-) diff --git a/sources b/sources index a391672..2859b44 100644 --- a/sources +++ b/sources @@ -1,2 +1 @@ -2f4bee4b11091da81af4338c1fcce211 wormux-0.9.2.tar.bz2 e49621b9b4ac7c8d1b11657989df61db wormux-0.9.2.1.tar.bz2 From f68d159e96f2c36b0f91281b8dbe4dfb5002f0d4 Mon Sep 17 00:00:00 2001 From: Bruno Wolff III Date: Sun, 26 Feb 2012 10:55:04 -0600 Subject: [PATCH 04/11] gcc 4.7 has a problem casting away const We need to ast to void * to drop const before SDL does its cast. Though really the SDL cast should include const for read operations. --- wormux-gcc47.patch | 17 +++++++++++++++++ wormux.spec | 7 ++++++- 2 files changed, 23 insertions(+), 1 deletion(-) create mode 100644 wormux-gcc47.patch diff --git a/wormux-gcc47.patch b/wormux-gcc47.patch new file mode 100644 index 0000000..c0b6db9 --- /dev/null +++ b/wormux-gcc47.patch @@ -0,0 +1,17 @@ +--- lib/wormux/action/action.cpp.orig 2012-02-26 10:50:43.367360110 -0600 ++++ lib/wormux/action/action.cpp 2012-02-26 10:51:37.459234926 -0600 +@@ -70,11 +70,11 @@ + + var.clear(); + buffer += 4; // skip the buffer len +- m_type = (Action_t)SDLNet_Read32(buffer); ++ m_type = (Action_t)SDLNet_Read32((void *)buffer); + buffer += 4; +- m_timestamp = (uint)SDLNet_Read32(buffer); ++ m_timestamp = (uint)SDLNet_Read32((void *)buffer); + buffer += 4; +- int m_length = SDLNet_Read32(buffer); ++ int m_length = SDLNet_Read32((void *)buffer); + buffer += 4; + + for(int i=0; i < m_length; i++) diff --git a/wormux.spec b/wormux.spec index 1d97bad..01b0a4f 100644 --- a/wormux.spec +++ b/wormux.spec @@ -1,6 +1,6 @@ Name: wormux Version: 0.9.2.1 -Release: 7%{?dist} +Release: 8%{?dist} Summary: 2D convivial mass murder game Group: Amusements/Games @@ -8,6 +8,7 @@ License: GPLv2+ URL: http://www.wormux.org Source0: http://download.gna.org/wormux/%{name}-%{version}.tar.bz2 Patch0: wormux-0.8.3-cflags.patch +Patch1: wormux-gcc47.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: SDL_image-devel SDL_gfx-devel SDL_mixer-devel @@ -44,6 +45,7 @@ Fichier de données pour wormux %prep %setup -q %patch0 -p1 +%patch1 -p0 # Remove a backup file rm -f data/game_mode/rope_objects.xml~ @@ -105,6 +107,9 @@ fi %{_datadir}/%{name} %changelog +* Sun Feb 26 2012 Bruno Wolff III - 0.9.2.1-8 +- Fix building with gcc 4.7 + * Sat Jan 14 2012 Fedora Release Engineering - 0.9.2.1-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild From eff8a25d33a154bd12535fd7747c040be3c7c07d Mon Sep 17 00:00:00 2001 From: Bruno Wolff III Date: Sun, 26 Feb 2012 11:03:09 -0600 Subject: [PATCH 05/11] Make adjusting patches easier --- wormux.spec | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wormux.spec b/wormux.spec index 01b0a4f..d852c24 100644 --- a/wormux.spec +++ b/wormux.spec @@ -44,8 +44,8 @@ Fichier de données pour wormux %prep %setup -q -%patch0 -p1 -%patch1 -p0 +%patch0 -p1 -b .cflags +%patch1 -p0 -b .gcc47 # Remove a backup file rm -f data/game_mode/rope_objects.xml~ From f424ab4b032c3a5e2029e135e23fb67db1b73af7 Mon Sep 17 00:00:00 2001 From: Bruno Wolff III Date: Sun, 26 Feb 2012 11:08:09 -0600 Subject: [PATCH 06/11] Missed another needed cast --- wormux-gcc47.patch | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/wormux-gcc47.patch b/wormux-gcc47.patch index c0b6db9..24d1ad0 100644 --- a/wormux-gcc47.patch +++ b/wormux-gcc47.patch @@ -1,6 +1,6 @@ ---- lib/wormux/action/action.cpp.orig 2012-02-26 10:50:43.367360110 -0600 -+++ lib/wormux/action/action.cpp 2012-02-26 10:51:37.459234926 -0600 -@@ -70,11 +70,11 @@ +--- ./lib/wormux/action/action.cpp.gcc47 2010-04-05 10:09:44.000000000 -0500 ++++ ./lib/wormux/action/action.cpp 2012-02-26 11:07:36.046066366 -0600 +@@ -70,16 +70,16 @@ var.clear(); buffer += 4; // skip the buffer len @@ -15,3 +15,9 @@ buffer += 4; for(int i=0; i < m_length; i++) + { +- uint32_t val = SDLNet_Read32(buffer); ++ uint32_t val = SDLNet_Read32((void *)buffer); + var.push_back(val); + buffer += 4; + } From cf148710cc04c4ad66064617c05affe364639bcc Mon Sep 17 00:00:00 2001 From: Bruno Wolff III Date: Sun, 26 Feb 2012 11:13:35 -0600 Subject: [PATCH 07/11] Fix potential truncation of buffer lengths Saving a 32 bit unsigned int in an int might result in truncation on some arches. Most likely the buffers weren't long enough for this to be a problem in practice, but it's still a bad thing to do. --- wormux-length-fix.patch | 15 +++++++++++++++ wormux.spec | 2 ++ 2 files changed, 17 insertions(+) create mode 100644 wormux-length-fix.patch diff --git a/wormux-length-fix.patch b/wormux-length-fix.patch new file mode 100644 index 0000000..aeaae5c --- /dev/null +++ b/wormux-length-fix.patch @@ -0,0 +1,15 @@ +--- ./lib/wormux/action/action.cpp.orig 2012-02-26 11:10:20.199929478 -0600 ++++ ./lib/wormux/action/action.cpp 2012-02-26 11:11:44.368626889 -0600 +@@ -74,10 +74,10 @@ + buffer += 4; + m_timestamp = (uint)SDLNet_Read32((void *)buffer); + buffer += 4; +- int m_length = SDLNet_Read32((void *)buffer); ++ uint32_t m_length = SDLNet_Read32((void *)buffer); + buffer += 4; + +- for(int i=0; i < m_length; i++) ++ for(uint32_t i=0; i < m_length; i++) + { + uint32_t val = SDLNet_Read32((void *)buffer); + var.push_back(val); diff --git a/wormux.spec b/wormux.spec index d852c24..5c72a9f 100644 --- a/wormux.spec +++ b/wormux.spec @@ -9,6 +9,7 @@ URL: http://www.wormux.org Source0: http://download.gna.org/wormux/%{name}-%{version}.tar.bz2 Patch0: wormux-0.8.3-cflags.patch Patch1: wormux-gcc47.patch +Patch2: wormux-length-fix.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: SDL_image-devel SDL_gfx-devel SDL_mixer-devel @@ -46,6 +47,7 @@ Fichier de données pour wormux %setup -q %patch0 -p1 -b .cflags %patch1 -p0 -b .gcc47 +%patch2 -p0 -b .lengthfix # Remove a backup file rm -f data/game_mode/rope_objects.xml~ From 8f7880927d5ea0aebeeb9de96b5a56880ccea7f7 Mon Sep 17 00:00:00 2001 From: Bruno Wolff III Date: Sun, 26 Feb 2012 11:19:08 -0600 Subject: [PATCH 08/11] png.h no longer includes zlib.h --- wormux-libpng15.patch | 10 ++++++++++ wormux.spec | 3 +++ 2 files changed, 13 insertions(+) create mode 100644 wormux-libpng15.patch diff --git a/wormux-libpng15.patch b/wormux-libpng15.patch new file mode 100644 index 0000000..066f707 --- /dev/null +++ b/wormux-libpng15.patch @@ -0,0 +1,10 @@ +--- ./src/graphic/surface.cpp.orig 2012-02-26 11:17:09.621964916 -0600 ++++ ./src/graphic/surface.cpp 2012-02-26 11:17:25.752014962 -0600 +@@ -25,6 +25,7 @@ + #include + #include + #include ++#include + + #include "graphic/surface.h" + #include "tool/math_tools.h" diff --git a/wormux.spec b/wormux.spec index 5c72a9f..19d2b82 100644 --- a/wormux.spec +++ b/wormux.spec @@ -10,6 +10,7 @@ Source0: http://download.gna.org/wormux/%{name}-%{version}.tar.bz2 Patch0: wormux-0.8.3-cflags.patch Patch1: wormux-gcc47.patch Patch2: wormux-length-fix.patch +Patch3: wormux-libpng.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: SDL_image-devel SDL_gfx-devel SDL_mixer-devel @@ -48,6 +49,7 @@ Fichier de données pour wormux %patch0 -p1 -b .cflags %patch1 -p0 -b .gcc47 %patch2 -p0 -b .lengthfix +%patch3 -p0 -b .libpng15 # Remove a backup file rm -f data/game_mode/rope_objects.xml~ @@ -111,6 +113,7 @@ fi %changelog * Sun Feb 26 2012 Bruno Wolff III - 0.9.2.1-8 - Fix building with gcc 4.7 +- Fix building with libpng 1.5 * Sat Jan 14 2012 Fedora Release Engineering - 0.9.2.1-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild From 53876f5d9c2720288d10d8303a2fc140f72ddabc Mon Sep 17 00:00:00 2001 From: Bruno Wolff III Date: Sun, 26 Feb 2012 11:19:53 -0600 Subject: [PATCH 09/11] Fix typo in patch file name --- wormux.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wormux.spec b/wormux.spec index 19d2b82..e0d1bac 100644 --- a/wormux.spec +++ b/wormux.spec @@ -10,7 +10,7 @@ Source0: http://download.gna.org/wormux/%{name}-%{version}.tar.bz2 Patch0: wormux-0.8.3-cflags.patch Patch1: wormux-gcc47.patch Patch2: wormux-length-fix.patch -Patch3: wormux-libpng.patch +Patch3: wormux-libpng15.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: SDL_image-devel SDL_gfx-devel SDL_mixer-devel From b7358703ceb716acf9ec656b549efea23a6f5d6d Mon Sep 17 00:00:00 2001 From: Bruno Wolff III Date: Sun, 26 Feb 2012 11:24:31 -0600 Subject: [PATCH 10/11] stdio.h no longer includes unistd.h --- wormux-gcc47.patch | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/wormux-gcc47.patch b/wormux-gcc47.patch index 24d1ad0..8191b12 100644 --- a/wormux-gcc47.patch +++ b/wormux-gcc47.patch @@ -21,3 +21,11 @@ var.push_back(val); buffer += 4; } +--- tools/list_games/main.cpp.orig 2012-02-26 11:22:38.113714541 -0600 ++++ tools/list_games/main.cpp 2012-02-26 11:24:01.264282537 -0600 +@@ -1,4 +1,5 @@ + #include ++#include + #include + #include + #include From 5147eecb79e4093a67da3448e6cadedf7270989a Mon Sep 17 00:00:00 2001 From: Jiri Popelka Date: Fri, 23 Mar 2012 16:08:32 +0100 Subject: [PATCH 11/11] Renamed to warmux (#773419) --- .gitignore | 3 - dead.package | 1 + sources | 1 - wormux-0.8.3-cflags.patch | 11 -- wormux-gcc47.patch | 31 ------ wormux-length-fix.patch | 15 --- wormux-libpng15.patch | 10 -- wormux.spec | 222 -------------------------------------- 8 files changed, 1 insertion(+), 293 deletions(-) delete mode 100644 .gitignore create mode 100644 dead.package delete mode 100644 sources delete mode 100644 wormux-0.8.3-cflags.patch delete mode 100644 wormux-gcc47.patch delete mode 100644 wormux-length-fix.patch delete mode 100644 wormux-libpng15.patch delete mode 100644 wormux.spec diff --git a/.gitignore b/.gitignore deleted file mode 100644 index d75b25c..0000000 --- a/.gitignore +++ /dev/null @@ -1,3 +0,0 @@ -wormux-0.9.0.tar.bz2 -/wormux-0.9.2.tar.bz2 -/wormux-0.9.2.1.tar.bz2 diff --git a/dead.package b/dead.package new file mode 100644 index 0000000..fda6e65 --- /dev/null +++ b/dead.package @@ -0,0 +1 @@ +Renamed to warmux (#773419) diff --git a/sources b/sources deleted file mode 100644 index 2859b44..0000000 --- a/sources +++ /dev/null @@ -1 +0,0 @@ -e49621b9b4ac7c8d1b11657989df61db wormux-0.9.2.1.tar.bz2 diff --git a/wormux-0.8.3-cflags.patch b/wormux-0.8.3-cflags.patch deleted file mode 100644 index 6dfd262..0000000 --- a/wormux-0.8.3-cflags.patch +++ /dev/null @@ -1,11 +0,0 @@ -diff -up wormux-0.8.3/configure~ wormux-0.8.3/configure ---- wormux-0.8.3/configure~ 2009-03-05 22:24:17.000000000 +0200 -+++ wormux-0.8.3/configure 2009-05-07 20:41:31.000000000 +0300 -@@ -7608,6 +7608,7 @@ echo "${ECHO_T}$gccver" >&6; } - GCC_FLAGS="$GCC_FLAGS -DWMX_LOG" - fi - -+ GCC_FLAGS="$GCC_FLAGS $CFLAGS" - CFLAGS="$GCC_FLAGS" - CXXFLAGS="$GCC_FLAGS" - diff --git a/wormux-gcc47.patch b/wormux-gcc47.patch deleted file mode 100644 index 8191b12..0000000 --- a/wormux-gcc47.patch +++ /dev/null @@ -1,31 +0,0 @@ ---- ./lib/wormux/action/action.cpp.gcc47 2010-04-05 10:09:44.000000000 -0500 -+++ ./lib/wormux/action/action.cpp 2012-02-26 11:07:36.046066366 -0600 -@@ -70,16 +70,16 @@ - - var.clear(); - buffer += 4; // skip the buffer len -- m_type = (Action_t)SDLNet_Read32(buffer); -+ m_type = (Action_t)SDLNet_Read32((void *)buffer); - buffer += 4; -- m_timestamp = (uint)SDLNet_Read32(buffer); -+ m_timestamp = (uint)SDLNet_Read32((void *)buffer); - buffer += 4; -- int m_length = SDLNet_Read32(buffer); -+ int m_length = SDLNet_Read32((void *)buffer); - buffer += 4; - - for(int i=0; i < m_length; i++) - { -- uint32_t val = SDLNet_Read32(buffer); -+ uint32_t val = SDLNet_Read32((void *)buffer); - var.push_back(val); - buffer += 4; - } ---- tools/list_games/main.cpp.orig 2012-02-26 11:22:38.113714541 -0600 -+++ tools/list_games/main.cpp 2012-02-26 11:24:01.264282537 -0600 -@@ -1,4 +1,5 @@ - #include -+#include - #include - #include - #include diff --git a/wormux-length-fix.patch b/wormux-length-fix.patch deleted file mode 100644 index aeaae5c..0000000 --- a/wormux-length-fix.patch +++ /dev/null @@ -1,15 +0,0 @@ ---- ./lib/wormux/action/action.cpp.orig 2012-02-26 11:10:20.199929478 -0600 -+++ ./lib/wormux/action/action.cpp 2012-02-26 11:11:44.368626889 -0600 -@@ -74,10 +74,10 @@ - buffer += 4; - m_timestamp = (uint)SDLNet_Read32((void *)buffer); - buffer += 4; -- int m_length = SDLNet_Read32((void *)buffer); -+ uint32_t m_length = SDLNet_Read32((void *)buffer); - buffer += 4; - -- for(int i=0; i < m_length; i++) -+ for(uint32_t i=0; i < m_length; i++) - { - uint32_t val = SDLNet_Read32((void *)buffer); - var.push_back(val); diff --git a/wormux-libpng15.patch b/wormux-libpng15.patch deleted file mode 100644 index 066f707..0000000 --- a/wormux-libpng15.patch +++ /dev/null @@ -1,10 +0,0 @@ ---- ./src/graphic/surface.cpp.orig 2012-02-26 11:17:09.621964916 -0600 -+++ ./src/graphic/surface.cpp 2012-02-26 11:17:25.752014962 -0600 -@@ -25,6 +25,7 @@ - #include - #include - #include -+#include - - #include "graphic/surface.h" - #include "tool/math_tools.h" diff --git a/wormux.spec b/wormux.spec deleted file mode 100644 index e0d1bac..0000000 --- a/wormux.spec +++ /dev/null @@ -1,222 +0,0 @@ -Name: wormux -Version: 0.9.2.1 -Release: 8%{?dist} -Summary: 2D convivial mass murder game - -Group: Amusements/Games -License: GPLv2+ -URL: http://www.wormux.org -Source0: http://download.gna.org/wormux/%{name}-%{version}.tar.bz2 -Patch0: wormux-0.8.3-cflags.patch -Patch1: wormux-gcc47.patch -Patch2: wormux-length-fix.patch -Patch3: wormux-libpng15.patch -BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) - -BuildRequires: SDL_image-devel SDL_gfx-devel SDL_mixer-devel -BuildRequires: SDL_ttf-devel SDL_net-devel curl-devel libpng-devel -BuildRequires: gettext libxml++-devel desktop-file-utils -Requires: wormux-data dejavu-sans-fonts -Requires(post): coreutils -Requires(postun): coreutils - -%description -Battle your favorite free software mascots in the Wormux arena. With big -sticks of dynamite, grenades, baseball bats, and bazookas you can exterminate -your opponent in a 2D cartoon style scenery. The goal of the game is to -destroy all of your opponents' mascots. - -%description -l fr -Faites des batailles épic dans l'arène Wormux avec vos mascote préféré. Avec -de gros baton de dynamites, grenades, bats de baseball et basookas tu dois -exterminer tes ennemis dans un style cartoon 2D. Le but du jeu est de détruire -toutes les macotees ennemies. - - -%package data -Summary: Data files for wormux -Group: Amusements/Games -Requires: %{name} = %{version} -BuildArch: noarch -%description data -Data files for wormux - -%description -l fr data -Fichier de données pour wormux - -%prep -%setup -q -%patch0 -p1 -b .cflags -%patch1 -p0 -b .gcc47 -%patch2 -p0 -b .lengthfix -%patch3 -p0 -b .libpng15 - -# Remove a backup file -rm -f data/game_mode/rope_objects.xml~ -rm -f data/game_mode/skin_viewer.xml~ - -%build -%configure --disable-nls --disable-dependency-tracking -make %{?_smp_mflags} - - -%install -rm -rf $RPM_BUILD_ROOT -make install DESTDIR=$RPM_BUILD_ROOT - -sed -i -e 's/Icon=.*/Icon=wormux.png/' \ - $RPM_BUILD_ROOT%{_datadir}/applications/%{name}.desktop -desktop-file-install --vendor fedora \ - --dir $RPM_BUILD_ROOT/%{_datadir}/applications/ \ - --remove-category=Application \ - --remove-category=ArcadeGame \ - --add-category=StrategyGame \ - --delete-original \ - $RPM_BUILD_ROOT%{_datadir}/applications/%{name}.desktop - -install -d $RPM_BUILD_ROOT/%{_datadir}/icons/hicolor/32x32/apps/ -install -p -m 644 data/%{name}_32x32.png $RPM_BUILD_ROOT/%{_datadir}/icons/hicolor/32x32/apps/%{name}.png - -rm -f $RPM_BUILD_ROOT%{_datadir}/%{name}/font/DejaVuSans.ttf -ln -s %{_datadir}/fonts/dejavu/DejaVuSans.ttf $RPM_BUILD_ROOT%{_datadir}/%{name}/font/DejaVuSans.ttf - -%clean -rm -rf $RPM_BUILD_ROOT - -%post -touch --no-create %{_datadir}/icons/hicolor || : -if [ -x %{_bindir}/gtk-update-icon-cache ]; then - %{_bindir}/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor || : -fi - -%postun -touch --no-create %{_datadir}/icons/hicolor || : -if [ -x %{_bindir}/gtk-update-icon-cache ]; then - %{_bindir}/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor || : -fi - - -%files -%defattr(-,root,root,-) -%doc AUTHORS COPYING ChangeLog -%{_bindir}/%{name} -%{_bindir}/%{name}-list-games -%{_datadir}/applications/*.desktop -%{_datadir}/icons/hicolor/32x32/apps/%{name}.png -%{_datadir}/pixmaps/wormux*.png -%{_mandir}/man6/*.6.gz - -%files data -%defattr(-,root,root,-) -%{_datadir}/%{name} - -%changelog -* Sun Feb 26 2012 Bruno Wolff III - 0.9.2.1-8 -- Fix building with gcc 4.7 -- Fix building with libpng 1.5 - -* Sat Jan 14 2012 Fedora Release Engineering - 0.9.2.1-7 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild - -* Tue Dec 06 2011 Adam Jackson - 0.9.2.1-6 -- Rebuild for new libpng - -* Tue Jul 26 2011 Bruno Wolff III - 0.9.2.1-5 -- Rebuild for SDL_gfx soname bump. - -* Mon Feb 07 2011 Fedora Release Engineering - 0.9.2.1-4 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild - -* Wed Sep 29 2010 jkeating - 0.9.2.1-3 -- Rebuilt for gcc bug 634757 - -* Mon Sep 13 2010 Wart 0.9.2.1-2 -- Re-add french translations that had gone missing - -* Sun Sep 12 2010 Wart 0.9.2.1-1 -- Update to 0.9.2.1 with fix for 64-bit builds - -* Sat Sep 11 2010 Wart 0.9.2-1 -- Update to 0.9.2 - -* Sat Feb 6 2010 Wart 0.9.0-1 -- Update to 0.9.0 - -* Sat Oct 10 2009 Wart 0.8.5-1 -- Update to 0.8.5 - -* Mon Jul 27 2009 Fedora Release Engineering - 0.8.4-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild - -* Wed Jul 18 2009 Wart 0.8.4-1 -- Update to 0.8.4 - -* Thu May 7 2009 Ville Skyttä - 0.8.3-2 -- Build with $RPM_OPT_FLAGS. - -* Wed May 6 2009 Wart 0.8.3-1 -- Update to 0.8.3 -- Make -data subpackage noarch - -* Wed Feb 25 2009 Fedora Release Engineering - 0.8.2-5 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild - -* Thu Jan 29 2009 Wart 0.8.2-4 -- Yet another font package rename - -* Thu Jan 1 2009 Wart 0.8.2-3 -- Fix font package name for F11 - -* Wed Dec 24 2008 Wart 0.8.2-2 -- Add coreutils requirement for rpm post scripts -- Replace bundled font with a symlink to an identical system font (BZ #477484) - -* Fri Nov 7 2008 Wart 0.8.2-1 -- Update to 0.8.2 - -* Thu May 29 2008 Wart 0.8-1 -- Update to 0.8 - -* Fri Feb 8 2008 Wart 0.7.9-6 -- Rebuild for gcc 4.3 - -* Tue Aug 21 2007 Wart 0.7.9-5 -- License tag clarification - -* Tue Jun 19 2007 Matthias Saou 0.7.9-4 -- Rebuild against SDL_gfx 2.0.16. - -* Wed Mar 28 2007 Wart 0.7.9-3 -- Enable use of $RPM_OPT_FLAGS - -* Fri Mar 9 2007 Wart 0.7.9-2 -- Clean up desktop file categories -- Use upstream's desktop file and icon - -* Sat Feb 17 2007 Wart 0.7.9-1 -- Update to 0.7.9 - -* Fri Sep 1 2006 Wart 0.7.4-1 -- Update to 0.7.4 - -* Fri Aug 04 2006 Wart 0.7.2-6 -- Add 'ArcadeGame' category to .desktop file - -* Fri Jun 09 2006 Wart 0.7.2-5 -- Improve grammar in description - -* Fri Jun 09 2006 Wart 0.7.2-4 -- Fix broken path to desktop icon -- Fix typo in description - -* Fri Jun 09 2006 Wart 0.7.2-3 -- Use RPM_BUILD_ROOT consistently -- Put the wormux icon in a size-specific directory -- Removed INSTALL from the documentation files - -* Fri Jun 09 2006 Wart 0.7.2-2 -- Expanded the description -- Separated game data into a subpackage - -* Fri Jun 02 2006 Wart 0.7.2-1 -- Initial Fedora Extras package