Compare commits
4 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
44b430989e | ||
|
|
c549f366f4 | ||
|
|
3334f0b52a | ||
|
|
45e2588448 |
8 changed files with 104 additions and 315 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
|
@ -1 +1 @@
|
||||||
adanaxisgpl-1.2.5.tar.gz
|
adanaxisgpl-1.2.4.tar.gz
|
||||||
|
|
|
||||||
|
|
@ -1,13 +0,0 @@
|
||||||
diff -ru adanaxisgpl-1.2.5.orig/src/Platform/X11/PlatformMiscUtils.cpp adanaxisgpl-1.2.5/src/Platform/X11/PlatformMiscUtils.cpp
|
|
||||||
--- adanaxisgpl-1.2.5.orig/src/Platform/X11/PlatformMiscUtils.cpp 2009-03-02 16:58:02.000000000 +0000
|
|
||||||
+++ adanaxisgpl-1.2.5/src/Platform/X11/PlatformMiscUtils.cpp 2009-03-02 16:59:05.000000000 +0000
|
|
||||||
@@ -1237,7 +1237,8 @@
|
|
||||||
char *
|
|
||||||
br_dirname (const char *path)
|
|
||||||
{
|
|
||||||
- char *end, *result;
|
|
||||||
+ const char *end;
|
|
||||||
+ char *result;
|
|
||||||
|
|
||||||
if (path == (const char *) NULL)
|
|
||||||
return (char *) NULL;
|
|
||||||
|
|
@ -1,12 +0,0 @@
|
||||||
diff -up adanaxisgpl-1.2.5/src/Mushcore/MushcoreSingleton.h~ adanaxisgpl-1.2.5/src/Mushcore/MushcoreSingleton.h
|
|
||||||
--- adanaxisgpl-1.2.5/src/Mushcore/MushcoreSingleton.h~ 2007-04-18 11:23:13.000000000 +0200
|
|
||||||
+++ adanaxisgpl-1.2.5/src/Mushcore/MushcoreSingleton.h 2012-01-13 10:36:18.638100466 +0100
|
|
||||||
@@ -83,7 +83,7 @@ template<class SingletonType>
|
|
||||||
inline void
|
|
||||||
MushcoreSingleton<SingletonType>::SingletonUncheckedNew(void)
|
|
||||||
{
|
|
||||||
- SingletonPtrSet(new SingletonType);
|
|
||||||
+ MushcoreSingleton::SingletonPtrSet(new SingletonType);
|
|
||||||
|
|
||||||
#ifdef MUSHCORE_SINGLETON_TESTING
|
|
||||||
cerr << "Created " << typeid(SingletonType).name() << " singleton " << endl;
|
|
||||||
|
|
@ -1,10 +0,0 @@
|
||||||
--- adanaxisgpl-1.2.5/src/Platform/X11/PlatformMiscUtils.cpp~ 2013-04-29 16:15:54.000000000 +0200
|
|
||||||
+++ adanaxisgpl-1.2.5/src/Platform/X11/PlatformMiscUtils.cpp 2013-04-29 16:16:29.356741339 +0200
|
|
||||||
@@ -429,6 +429,7 @@ PlatformMiscUtils::LaunchURL(const strin
|
|
||||||
{
|
|
||||||
browserCommands.push_back(browserVar);
|
|
||||||
}
|
|
||||||
+ browserCommands.push_back("xdg-open");
|
|
||||||
browserCommands.push_back("kfmclient openURL");
|
|
||||||
browserCommands.push_back("galeon --new-window");
|
|
||||||
browserCommands.push_back("opera -newbrowser");
|
|
||||||
|
|
@ -1,13 +0,0 @@
|
||||||
diff --git a/src/MushRuby/lex.c b/src/MushRuby/lex.c
|
|
||||||
index a851447..f2f8396 100644
|
|
||||||
--- a/src/MushRuby/lex.c
|
|
||||||
+++ b/src/MushRuby/lex.c
|
|
||||||
@@ -93,7 +93,7 @@ hash (str, len)
|
|
||||||
}
|
|
||||||
|
|
||||||
#ifdef __GNUC__
|
|
||||||
-__inline
|
|
||||||
+extern __inline
|
|
||||||
#endif
|
|
||||||
struct kwtable *
|
|
||||||
rb_reserved_word (str, len)
|
|
||||||
|
|
@ -1,53 +0,0 @@
|
||||||
diff -up adanaxisgpl-1.2.5/src/MushGame/MushGameMessageControlInfo.cpp.orig adanaxisgpl-1.2.5/src/MushGame/MushGameMessageControlInfo.cpp
|
|
||||||
--- adanaxisgpl-1.2.5/src/MushGame/MushGameMessageControlInfo.cpp.orig 2007-04-18 11:22:42.000000000 +0200
|
|
||||||
+++ adanaxisgpl-1.2.5/src/MushGame/MushGameMessageControlInfo.cpp 2022-03-07 18:25:24.986105136 +0100
|
|
||||||
@@ -65,13 +65,20 @@ MushcoreInstaller AutoInstaller(AutoInst
|
|
||||||
void
|
|
||||||
MushGameMessageControlInfo::AutoPrint(std::ostream& ioOut) const
|
|
||||||
{
|
|
||||||
+ MushcoreXMLOStream xmlOut(ioOut);
|
|
||||||
+ xmlOut.TagSet("");
|
|
||||||
+
|
|
||||||
ioOut << "[";
|
|
||||||
MushGameMessage::AutoPrint(ioOut);
|
|
||||||
- ioOut << "timestamp=" << m_timestamp << ", ";
|
|
||||||
- ioOut << "axisEvents=" << m_axisEvents << ", ";
|
|
||||||
- ioOut << "keyEvents=" << m_keyEvents;
|
|
||||||
+ ioOut << "timestamp=";
|
|
||||||
+ ioOut << m_timestamp;
|
|
||||||
+ ioOut << ", axisEvents=";
|
|
||||||
+ xmlOut << m_axisEvents;
|
|
||||||
+ ioOut << ", keyEvents=";
|
|
||||||
+ xmlOut << m_keyEvents;
|
|
||||||
ioOut << "]";
|
|
||||||
}
|
|
||||||
+
|
|
||||||
bool
|
|
||||||
MushGameMessageControlInfo::AutoXMLDataProcess(MushcoreXMLIStream& ioIn, const std::string& inTagStr)
|
|
||||||
{
|
|
||||||
diff -up adanaxisgpl-1.2.5/src/MushMesh/MushMesh4Face.cpp~ adanaxisgpl-1.2.5/src/MushMesh/MushMesh4Face.cpp
|
|
||||||
--- adanaxisgpl-1.2.5/src/MushMesh/MushMesh4Face.cpp~ 2007-04-18 11:22:45.000000000 +0200
|
|
||||||
+++ adanaxisgpl-1.2.5/src/MushMesh/MushMesh4Face.cpp 2022-03-07 22:45:52.675146721 +0100
|
|
||||||
@@ -297,6 +297,9 @@ MushcoreInstaller AutoInstaller(AutoInst
|
|
||||||
void
|
|
||||||
MushMesh4Face::AutoPrint(std::ostream& ioOut) const
|
|
||||||
{
|
|
||||||
+ MushcoreXMLOStream xmlOut(ioOut);
|
|
||||||
+ xmlOut.TagSet("");
|
|
||||||
+
|
|
||||||
ioOut << "[";
|
|
||||||
MushMeshFace::AutoPrint(ioOut);
|
|
||||||
ioOut << "faceType=" << m_faceType << ", ";
|
|
||||||
@@ -305,10 +308,10 @@ MushMesh4Face::AutoPrint(std::ostream& i
|
|
||||||
ioOut << "texCoordList=" << m_texCoordList << ", ";
|
|
||||||
ioOut << "materialNum=" << m_materialNum << ", ";
|
|
||||||
ioOut << "edgeSmoothness=" << m_edgeSmoothness << ", ";
|
|
||||||
- ioOut << "internal=" << m_internal << ", ";
|
|
||||||
+ xmlOut << "internal=" << m_internal << ", ";
|
|
||||||
ioOut << "extrusionMap=" << m_extrusionMap << ", ";
|
|
||||||
ioOut << "extrudedFaces=" << m_extrudedFaces << ", ";
|
|
||||||
- ioOut << "extrusionTransformList=" << m_extrusionTransformList << ", ";
|
|
||||||
+ xmlOut << "extrusionTransformList=" << m_extrusionTransformList << ", ";
|
|
||||||
ioOut << "uniqueVertexList=" << m_uniqueVertexList << ", ";
|
|
||||||
ioOut << "faceCentroid=" << m_faceCentroid << ", ";
|
|
||||||
ioOut << "boundingRadius=" << m_boundingRadius << ", ";
|
|
||||||
314
adanaxisgpl.spec
314
adanaxisgpl.spec
|
|
@ -1,28 +1,57 @@
|
||||||
|
# Spec file for Mandriva Linux
|
||||||
|
# $Id: adanaxisgpl.spec,v 1.1 2007/11/26 23:19:29 southa Exp $
|
||||||
|
# $Log: adanaxisgpl.spec,v $
|
||||||
|
# Revision 1.1 2007/11/26 23:19:29 southa
|
||||||
|
# Initial F-8 import
|
||||||
|
#
|
||||||
|
# Revision 1.4 2007/10/18 00:04:13 southa
|
||||||
|
# Fedora packaging review comments
|
||||||
|
#
|
||||||
|
# Revision 1.3 2007/10/17 23:44:50 southa
|
||||||
|
# Fedora packaging review comments
|
||||||
|
#
|
||||||
|
# Revision 1.2 2007/09/27 12:10:09 southa
|
||||||
|
# Fixed changelog
|
||||||
|
#
|
||||||
|
# Revision 1.1 2007/09/27 11:52:44 southa
|
||||||
|
# Fedora release
|
||||||
|
#
|
||||||
|
# Revision 1.1 2007/06/30 16:02:14 southa
|
||||||
|
# Generic packaging
|
||||||
|
#
|
||||||
|
# Revision 1.3 2007/06/29 16:48:30 southa
|
||||||
|
# Mandriva build
|
||||||
|
#
|
||||||
|
# Revision 1.2 2007/06/29 14:41:54 southa
|
||||||
|
# Mandriva release
|
||||||
|
#
|
||||||
|
# Revision 1.1 2007/06/29 12:05:04 southa
|
||||||
|
# Mandriva packaging
|
||||||
|
#
|
||||||
|
|
||||||
|
%define title Adanaxis GPL
|
||||||
|
%define longtitle Adanaxis GPL - an action game in four spatial dimensions
|
||||||
|
|
||||||
Summary: Action game in four spatial dimensions
|
Summary: Action game in four spatial dimensions
|
||||||
Name: adanaxisgpl
|
Name: adanaxisgpl
|
||||||
Version: 1.2.5
|
Version: 1.2.4
|
||||||
Release: 54%{?dist}
|
Release: 1%{?dist}
|
||||||
# Automatically converted from old format: GPLv2 - review is highly recommended.
|
License: GPLv2
|
||||||
License: GPL-2.0-only
|
Group: Amusements/Games
|
||||||
URL: http://www.mushware.com/
|
URL: http://www.mushware.com/
|
||||||
Source0: http://www.mushware.com/files/%{name}-1.2.5.tar.gz
|
|
||||||
Patch0: adanaxisgpl-1.2.5-const.patch
|
Source0: http://www.mushware.com/files/%{name}-1.2.4.tar.gz
|
||||||
Patch1: adanaxisgpl-1.2.5-gcc47.patch
|
|
||||||
Patch2: adanaxisgpl-1.2.5-xdg-open.patch
|
BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX)
|
||||||
Patch3: adanaxisgpl-gcc11.patch
|
|
||||||
Patch4: adanaxisgpl-gcc12.patch
|
BuildRequires: desktop-file-utils
|
||||||
BuildRequires: gcc
|
BuildRequires: freeglut-devel
|
||||||
BuildRequires: gcc-c++
|
BuildRequires: expat-devel
|
||||||
BuildRequires: make
|
BuildRequires: libjpeg-devel
|
||||||
BuildRequires: desktop-file-utils
|
BuildRequires: libtiff-devel
|
||||||
BuildRequires: freeglut-devel
|
BuildRequires: libvorbis-devel
|
||||||
BuildRequires: expat-devel
|
BuildRequires: pcre-devel
|
||||||
BuildRequires: libjpeg-devel
|
BuildRequires: SDL_mixer-devel
|
||||||
BuildRequires: libtiff-devel
|
|
||||||
BuildRequires: libvorbis-devel
|
|
||||||
BuildRequires: pcre-devel
|
|
||||||
BuildRequires: SDL_mixer-devel
|
|
||||||
BuildRequires: libxcrypt-devel
|
|
||||||
|
|
||||||
%description
|
%description
|
||||||
Adanaxis is a fast-moving first person shooter set in deep space, where the
|
Adanaxis is a fast-moving first person shooter set in deep space, where the
|
||||||
|
|
@ -38,25 +67,25 @@ http://www.mushware.com/.
|
||||||
Hardware-accelerated 3D is recommended, ideally with support for OpenGL
|
Hardware-accelerated 3D is recommended, ideally with support for OpenGL
|
||||||
Shading Language.
|
Shading Language.
|
||||||
|
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%autosetup -p1
|
%setup -q
|
||||||
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
# adanaxisgpl's MushRuby component does a lot of bad things with incomplete
|
|
||||||
# C function prototypes which -std=gnu23 breaks, keep building it with -std=gnu17
|
|
||||||
export CFLAGS="${CFLAGS-} -std=gnu17"
|
|
||||||
export CXXFLAGS="${CXXFLAGS-} -std=gnu17"
|
|
||||||
%configure
|
%configure
|
||||||
make %{?_smp_mflags}
|
make %{?_smp_mflags}
|
||||||
|
|
||||||
|
%install
|
||||||
|
rm -rf %{buildroot}
|
||||||
|
make DESTDIR=%{buildroot} INSTALL="install -p" CPPROG="cp -p" install
|
||||||
|
|
||||||
# Build .desktop files
|
# Build .desktop files
|
||||||
|
|
||||||
cat > %{name}.desktop <<EOF
|
cat > %{name}.desktop <<EOF
|
||||||
[Desktop Entry]
|
[Desktop Entry]
|
||||||
Name=Adanaxis GPL
|
Encoding=UTF-8
|
||||||
Comment=An action game in four spatial dimensions
|
Name=%{title}
|
||||||
Exec=%{name}
|
Comment=%{longtitle}
|
||||||
|
Exec=%{_bindir}/%{name}
|
||||||
Icon=%{name}
|
Icon=%{name}
|
||||||
Terminal=false
|
Terminal=false
|
||||||
Type=Application
|
Type=Application
|
||||||
|
|
@ -64,13 +93,28 @@ StartupNotify=false
|
||||||
Categories=Game;ActionGame;
|
Categories=Game;ActionGame;
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
|
cat > %{name}-recover.desktop <<EOF
|
||||||
%install
|
[Desktop Entry]
|
||||||
%make_install INSTALL="install -p" CPPROG="cp -p"
|
Encoding=UTF-8
|
||||||
|
Name=%{title} (Recovery Mode)
|
||||||
|
Comment=%{longtitle} (Launch in Recovery Mode)
|
||||||
|
Exec=%{_bindir}/%{name} --recover
|
||||||
|
Icon=%{name}
|
||||||
|
Terminal=false
|
||||||
|
Type=Application
|
||||||
|
StartupNotify=false
|
||||||
|
Categories=Game;ActionGame;
|
||||||
|
EOF
|
||||||
|
|
||||||
# Install desktop files
|
# Install desktop files
|
||||||
|
|
||||||
mkdir -p %{buildroot}%{_datadir}/applications
|
mkdir -p %{buildroot}%{_datadir}/applications
|
||||||
desktop-file-install --dir %{buildroot}%{_datadir}/applications %{name}.desktop
|
desktop-file-install --vendor=mushware \
|
||||||
|
--dir %{buildroot}%{_datadir}/applications \
|
||||||
|
%{name}.desktop
|
||||||
|
desktop-file-install --vendor=mushware \
|
||||||
|
--dir %{buildroot}%{_datadir}/applications \
|
||||||
|
%{name}-recover.desktop
|
||||||
|
|
||||||
# Icons
|
# Icons
|
||||||
mkdir -p -m 755 %{buildroot}%{_datadir}/icons/hicolor/16x16/apps
|
mkdir -p -m 755 %{buildroot}%{_datadir}/icons/hicolor/16x16/apps
|
||||||
|
|
@ -80,189 +124,35 @@ install -p -m 644 x11/icons/%{name}-16.png %{buildroot}%{_datadir}/icons/hicolor
|
||||||
install -p -m 644 x11/icons/%{name}-32.png %{buildroot}%{_datadir}/icons/hicolor/32x32/apps/%{name}.png
|
install -p -m 644 x11/icons/%{name}-32.png %{buildroot}%{_datadir}/icons/hicolor/32x32/apps/%{name}.png
|
||||||
install -p -m 644 x11/icons/%{name}-48.png %{buildroot}%{_datadir}/icons/hicolor/48x48/apps/%{name}.png
|
install -p -m 644 x11/icons/%{name}-48.png %{buildroot}%{_datadir}/icons/hicolor/48x48/apps/%{name}.png
|
||||||
|
|
||||||
|
%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
|
||||||
|
|
||||||
|
%clean
|
||||||
|
rm -rf %{buildroot}
|
||||||
|
|
||||||
%files
|
%files
|
||||||
%doc README ChangeLog AUTHORS
|
%defattr(0755,root,root,0755)
|
||||||
%license COPYING
|
%_bindir/*
|
||||||
%{_bindir}/%{name}
|
%defattr(0644,root,root,0755)
|
||||||
%{_datadir}/%{name}
|
%doc COPYING README INSTALL ChangeLog AUTHORS
|
||||||
%{_datadir}/applications/*%{name}.desktop
|
%dir %{_datadir}/%{name}
|
||||||
|
%{_datadir}/applications/*
|
||||||
|
%{_datadir}/%{name}/*
|
||||||
%{_datadir}/icons/hicolor/16x16/apps/%{name}.png
|
%{_datadir}/icons/hicolor/16x16/apps/%{name}.png
|
||||||
%{_datadir}/icons/hicolor/32x32/apps/%{name}.png
|
%{_datadir}/icons/hicolor/32x32/apps/%{name}.png
|
||||||
%{_datadir}/icons/hicolor/48x48/apps/%{name}.png
|
%{_datadir}/icons/hicolor/48x48/apps/%{name}.png
|
||||||
%{_mandir}/man6/%{name}*.6*
|
%_mandir/man6/%{name}*.6*
|
||||||
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
* Fri Jan 16 2026 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.5-54
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild
|
|
||||||
|
|
||||||
* Sun Sep 28 2025 Hans de Goede <hans@hansg.org> - 1.2.5-53
|
|
||||||
- Fix FTBFS (rhbz#2336268, rhbz#2339873, rhbz#2384448)
|
|
||||||
|
|
||||||
* Wed Jul 23 2025 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.5-52
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild
|
|
||||||
|
|
||||||
* Sat Feb 01 2025 Björn Esser <besser82@fedoraproject.org> - 1.2.5-51
|
|
||||||
- Add explicit BR: libxcrypt-devel
|
|
||||||
|
|
||||||
* Thu Jan 16 2025 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.5-50
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild
|
|
||||||
|
|
||||||
* Mon Jul 29 2024 Miroslav Suchý <msuchy@redhat.com> - 1.2.5-49
|
|
||||||
- convert license to SPDX
|
|
||||||
|
|
||||||
* Wed Jul 17 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.5-48
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
|
|
||||||
|
|
||||||
* Mon Jan 22 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.5-47
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
|
||||||
|
|
||||||
* Fri Jan 19 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.5-46
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
|
||||||
|
|
||||||
* Wed Jul 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.5-45
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
|
||||||
|
|
||||||
* Wed Jan 18 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.5-44
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
|
||||||
|
|
||||||
* Wed Jul 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.5-43
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
|
||||||
|
|
||||||
* Mon Mar 7 2022 Hans de Goede <hdegoede@redhat.com> - 1.2.5-42
|
|
||||||
- Fix FTBFS (#2045188)
|
|
||||||
|
|
||||||
* Wed Jan 19 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.5-41
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
|
||||||
|
|
||||||
* Wed Jul 21 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.5-40
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
|
||||||
|
|
||||||
* Mon Jan 25 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.5-39
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
|
||||||
|
|
||||||
* Fri Aug 28 2020 Jeff Law <law@redhat.com> - 1.2.5-38
|
|
||||||
- Re-enable LTO
|
|
||||||
|
|
||||||
* Fri Jul 31 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.5-37
|
|
||||||
- Second attempt - Rebuilt for
|
|
||||||
https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
|
||||||
|
|
||||||
* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.5-36
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
|
||||||
|
|
||||||
* Mon Jul 13 2020 Jeff Law <law@redhat.com> - 1.2.5-35
|
|
||||||
- Disable LTO
|
|
||||||
|
|
||||||
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.5-34
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
|
||||||
|
|
||||||
* Wed Jul 24 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.5-33
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
|
||||||
|
|
||||||
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.5-32
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
|
||||||
|
|
||||||
* Mon Jan 14 2019 Björn Esser <besser82@fedoraproject.org> - 1.2.5-31
|
|
||||||
- Rebuilt for libcrypt.so.2 (#1666033)
|
|
||||||
|
|
||||||
* Thu Jul 12 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.5-30
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
|
||||||
|
|
||||||
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.5-29
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
|
||||||
|
|
||||||
* Sat Jan 20 2018 Björn Esser <besser82@fedoraproject.org> - 1.2.5-28
|
|
||||||
- Rebuilt for switch to libxcrypt
|
|
||||||
|
|
||||||
* Sun Jan 07 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 1.2.5-27
|
|
||||||
- Remove obsolete scriptlets
|
|
||||||
|
|
||||||
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.5-26
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
|
||||||
|
|
||||||
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.5-25
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
|
||||||
|
|
||||||
* Mon May 15 2017 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.5-24
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_27_Mass_Rebuild
|
|
||||||
|
|
||||||
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.5-23
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
|
||||||
|
|
||||||
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.5-22
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
|
||||||
|
|
||||||
* Tue Jun 16 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.5-21
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
|
||||||
|
|
||||||
* Sat May 02 2015 Kalev Lember <kalevlember@gmail.com> - 1.2.5-20
|
|
||||||
- Rebuilt for GCC 5 C++11 ABI change
|
|
||||||
|
|
||||||
* Fri Aug 15 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.5-19
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
|
||||||
|
|
||||||
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.5-18
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
||||||
|
|
||||||
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.5-17
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
|
||||||
|
|
||||||
* Fri May 10 2013 Hans de Goede <hdegoede@redhat.com> - 1.2.5-16
|
|
||||||
- Remove no longer needed autoreconf call, %%configure from redhat-rpm-config
|
|
||||||
>= 9.1.0-42 updates config.guess and config.sub for new architecture support
|
|
||||||
- Remove vendor prefix from desktop files in F19+
|
|
||||||
- Drop recovery .desktop file, this just clutters the menu, and can be done
|
|
||||||
from the cmdline if needed
|
|
||||||
|
|
||||||
* Mon Apr 29 2013 Hans de Goede <hdegoede@redhat.com> - 1.2.5-15
|
|
||||||
- Run autoreconf for aarch64 support (rhbz#924970)
|
|
||||||
- Use xdg-open to open game manual
|
|
||||||
|
|
||||||
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.5-14
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
|
||||||
|
|
||||||
* Fri Jan 18 2013 Adam Tkac <atkac redhat com> - 1.2.5-13
|
|
||||||
- rebuild due to "jpeg8-ABI" feature drop
|
|
||||||
|
|
||||||
* Fri Dec 21 2012 Adam Tkac <atkac redhat com> - 1.2.5-12
|
|
||||||
- rebuild against new libjpeg
|
|
||||||
|
|
||||||
* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.5-11
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
||||||
|
|
||||||
* Fri Feb 10 2012 Petr Pisar <ppisar@redhat.com> - 1.2.5-10
|
|
||||||
- Rebuild against PCRE 8.30
|
|
||||||
|
|
||||||
* Fri Feb 10 2012 Petr Pisar <ppisar@redhat.com> - 1.2.5-9
|
|
||||||
- Rebuild against PCRE 8.30
|
|
||||||
|
|
||||||
* Thu Jan 12 2012 Hans de Goede <hdegoede@redhat.com> - 1.2.5-8
|
|
||||||
- Various specfile cleanups
|
|
||||||
- Fix building with gcc-4.7
|
|
||||||
|
|
||||||
* Thu Jan 12 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.5-7
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
|
||||||
|
|
||||||
* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.5-6
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
|
||||||
|
|
||||||
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.5-5
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
|
||||||
|
|
||||||
* Mon Mar 02 2009 Caolán McNamara <caolanm@redhat.com> - 1.2.5-4
|
|
||||||
- constify strchr
|
|
||||||
|
|
||||||
* Mon Feb 23 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.5-3
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
|
||||||
|
|
||||||
* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 1.2.5-2
|
|
||||||
- Autorebuild for GCC 4.3
|
|
||||||
|
|
||||||
* Sun Feb 17 2008 Andy Southgate <andy.southgate@mushware.com> 1.2.5-1
|
|
||||||
- Sync to upstream to pick up gcc 4.3 compatibility fixes
|
|
||||||
|
|
||||||
* Thu Oct 25 2007 Andy Southgate <andy.southgate@mushware.com> 1.2.4-1
|
* Thu Oct 25 2007 Andy Southgate <andy.southgate@mushware.com> 1.2.4-1
|
||||||
- Updates following further review (bugzilla #309061)
|
- Updates following further review (bugzilla #309061)
|
||||||
|
|
||||||
|
|
|
||||||
2
sources
2
sources
|
|
@ -1 +1 @@
|
||||||
bd890ac60c875f7b114d722d16d5eb71 adanaxisgpl-1.2.5.tar.gz
|
ae3e323d1fcefbd58c24f4a6adc9b625 adanaxisgpl-1.2.4.tar.gz
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue