Compare commits
No commits in common. "rawhide" and "f16" have entirely different histories.
7 changed files with 134 additions and 264 deletions
4
.gitignore
vendored
4
.gitignore
vendored
|
|
@ -1,7 +1,3 @@
|
|||
vdrift-2009-06-15-src.tar.bz2
|
||||
/vdrift-2010-06-30.tar.bz2
|
||||
/vdrift-2011-10-22.tar.bz2
|
||||
/vdrift-2012-07-22.tar.bz2
|
||||
/vdrift-2014-10-20.tar.bz2
|
||||
/vdrift-5ae309f.tar.gz
|
||||
/vdrift-data-20210211.tar.xz
|
||||
|
|
|
|||
3
sources
3
sources
|
|
@ -1,2 +1 @@
|
|||
SHA512 (vdrift-5ae309f.tar.gz) = 54f578e70ef6a9b8d8697ad842b803adfff77230a392bb4e069469422f472571f2b47a6a87aecb46bf17f3d2cafce2a3989857fda43030ad67e5b6d9a8c13953
|
||||
SHA512 (vdrift-data-20210211.tar.xz) = d7beece201129b7be8cdca4d1d4e84c9656f2d6a03650f6576dad29d8231367402e7d32d4e24df22cbce2af842c930b8ed9492e4a1e7e480fe7569acdd992cf5
|
||||
6f8806ab1be303e9e1e47522c9eee890 vdrift-2011-10-22.tar.bz2
|
||||
|
|
|
|||
|
|
@ -1,13 +1,7 @@
|
|||
--- SConstruct~ 2014-08-04 07:43:04.000000000 -0500
|
||||
+++ SConstruct 2015-06-29 06:29:31.549810839 -0500
|
||||
@@ -29,8 +29,8 @@
|
||||
# define a list of CPPDEFINES so they don't get mangled...
|
||||
cppdefines = []
|
||||
default_settingsdir = ".vdrift"
|
||||
-default_prefix = "/usr/local"
|
||||
--- SConstruct~ 2009-06-30 13:31:08.000000000 -0500
|
||||
+++ SConstruct 2009-06-30 13:37:08.000000000 -0500
|
||||
@@ -38,2 +38,2 @@
|
||||
-default_datadir = "share/games/vdrift/data"
|
||||
+default_prefix = "/usr"
|
||||
+default_datadir = "share/vdrift"
|
||||
default_localedir = "share/locale"
|
||||
default_bindir = "bin"
|
||||
|
||||
-default_bindir = "bin"
|
||||
+default_datadir = "/share/vdrift"
|
||||
+default_bindir = "/bin"
|
||||
|
|
|
|||
11
vdrift-20090615-dsolink.patch
Normal file
11
vdrift-20090615-dsolink.patch
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
--- SConstruct~ 2010-07-01 16:07:10.000000000 -0500
|
||||
+++ SConstruct 2010-07-01 16:15:43.529291853 -0500
|
||||
@@ -138,7 +138,7 @@
|
||||
CPPPATH = ['#include', '#bullet'],
|
||||
CCFLAGS = ['-Wall', '-Wextra', '-Wno-unused-parameter', '-pthread'],
|
||||
LIBPATH = ['.', '#lib'],
|
||||
- LINKFLAGS = ['-pthread'],
|
||||
+ LINKFLAGS = ['-pthread','-lGLU','-lGL'],
|
||||
CC = 'gcc', CXX = 'g++',
|
||||
options = opts)
|
||||
check_headers = ['asio.hpp', 'boost/bind.hpp', 'GL/gl.h', 'GL/glu.h', 'SDL/SDL.h', 'SDL/SDL_image.h', 'SDL/SDL_rotozoom.h', 'vorbis/vorbisfile.h', 'GL/glew.h']
|
||||
34
vdrift-2010-06-30-unbundle.patch
Normal file
34
vdrift-2010-06-30-unbundle.patch
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
Index: include/cardynamics.h
|
||||
===================================================================
|
||||
--- include/cardynamics.h
|
||||
+++ include/cardynamics.h 2011-02-19 15:58:42.924055598 +0100
|
||||
@@ -20,6 +20,7 @@
|
||||
#include "collision_contact.h"
|
||||
#include "cartelemetry.h"
|
||||
#include "BulletDynamics/Dynamics/btActionInterface.h"
|
||||
+#include "BulletDynamics/Dynamics/btRigidBody.h"
|
||||
|
||||
class MODEL;
|
||||
class CONFIGFILE;
|
||||
--- src/SConscript.orig 2011-02-19 17:32:57.927061608 +0100
|
||||
+++ src/SConscript 2011-02-19 17:33:41.211055956 +0100
|
||||
@@ -233,7 +233,7 @@
|
||||
#--------------------------#
|
||||
appdir = ""
|
||||
vdrift_install = None
|
||||
-common_libs = ['SDL_image', 'SDL_gfx', 'vorbisfile', 'vdriftbullet']
|
||||
+common_libs = ['SDL_image', 'SDL_gfx', 'vorbisfile']
|
||||
|
||||
if (sys.platform == 'freebsd6') or (sys.platform == 'freebsd7') or (sys.platform == 'freebsd8'):
|
||||
common_libs.append('libbulletcollision')
|
||||
@@ -305,9 +305,8 @@
|
||||
# Compile Executable #
|
||||
#--------------------#
|
||||
#vdrift = local_env.Program(target='%s${EXECUTABLE_NAME}' % appdir, source=[src, vamosobjs, guiobjs])
|
||||
-vdriftbullet = local_env.Library('vdriftbullet', bullet_src);
|
||||
+local_env.ParseConfig('pkg-config bullet --libs --cflags')
|
||||
vdrift = local_env.Program(target='%s${EXECUTABLE_NAME}' % appdir, source=src)
|
||||
-Depends(vdrift, vdriftbullet)
|
||||
Default(Alias('vdrift', vdrift))
|
||||
|
||||
#---------#
|
||||
13
vdrift-SConstruct.patch
Normal file
13
vdrift-SConstruct.patch
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
--- SConstruct~ 2011-09-01 04:22:58.000000000 -0500
|
||||
+++ SConstruct 2012-01-18 14:40:08.535239681 -0600
|
||||
@@ -507,8 +507,8 @@
|
||||
# Subdirectories #
|
||||
#----------------#
|
||||
Export(['env', 'version', 'src_dir', 'bin_dir'])
|
||||
-if 'install' in COMMAND_LINE_TARGETS:
|
||||
- SConscript('data/SConscript')
|
||||
+#if 'install' in COMMAND_LINE_TARGETS:
|
||||
+# SConscript('data/SConscript')
|
||||
|
||||
if 'src-package' in COMMAND_LINE_TARGETS:
|
||||
SConscript('tools/SConscript')
|
||||
315
vdrift.spec
315
vdrift.spec
|
|
@ -1,29 +1,37 @@
|
|||
%global commit 5ae309f1048c863f4745cd50c8cd81f98340b1d4
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
|
||||
Name: vdrift
|
||||
Version: 20141020
|
||||
Release: 36.git%{shortcommit}%{?dist}
|
||||
Version: 20111022
|
||||
Release: 1%{?dist}
|
||||
Summary: Driving/drift racing simulation
|
||||
|
||||
License: GPL-3.0-or-later
|
||||
Group: Amusements/Games
|
||||
License: GPLv3+
|
||||
URL: http://vdrift.net
|
||||
Source0: https://github.com/VDrift/vdrift/archive/%{commit}/%{name}-%{shortcommit}.tar.gz
|
||||
#Source0: %{name}-2010-06-30.tar.bz2
|
||||
Source0: http://downloads.sourceforge.net/%{name}/%{name}-2011-10-22.tar.bz2
|
||||
#Original upstream:
|
||||
#Source0: http://downloads.sourceforge.net/%{name}/%{name}-2009-06-15-src.tar.bz2
|
||||
# Modified:
|
||||
# cd docs
|
||||
# rm SConscript INSTALL
|
||||
# cd ..
|
||||
# rm -rf tools/win
|
||||
|
||||
Source1: vdrift.desktop
|
||||
Source2: vdrift.png
|
||||
# Data
|
||||
# svn checkout https://svn.code.sf.net/p/vdrift/code/ vdrift-code
|
||||
# mv vdrift-code/vdrift-data data
|
||||
# tar cvfJ vdrift-data-20210211.tar.xz data
|
||||
Source3: vdrift-data-20210211.tar.xz
|
||||
|
||||
Patch0: vdrift-SConstruct.patch
|
||||
Patch1: vdrift-20071226-paths.patch
|
||||
|
||||
Patch4: vdrift-20090215-joepack-includes.patch
|
||||
BuildRequires: mesa-libGL-devel
|
||||
BuildRequires: SDL2-devel
|
||||
BuildRequires: SDL2_image-devel
|
||||
#Patch5: vdrift-20090615-dsolink.patch
|
||||
# patch to unbundle bullet, not upstreamable
|
||||
#Patch6: vdrift-2010-06-30-unbundle.patch
|
||||
#Patch7: vdrift-2011-09-09-curl.patch
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root%(%{__id_u} -n)
|
||||
BuildRequires: SDL-devel
|
||||
BuildRequires: SDL_image-devel
|
||||
BuildRequires: SDL_gfx-devel
|
||||
BuildRequires: python3-scons
|
||||
BuildRequires: scons
|
||||
BuildRequires: libGL-devel
|
||||
BuildRequires: libvorbis-devel
|
||||
BuildRequires: desktop-file-utils
|
||||
BuildRequires: glew-devel
|
||||
|
|
@ -32,11 +40,11 @@ BuildRequires: asio-devel
|
|||
BuildRequires: bullet-devel
|
||||
BuildRequires: libarchive-devel
|
||||
BuildRequires: libcurl-devel
|
||||
BuildRequires: python3-devel
|
||||
BuildRequires: gcc-c++
|
||||
BuildRequires: subversion
|
||||
|
||||
Requires: vdrift-data = %{version}
|
||||
#Obsoletes: vdrift-data <= 20071226
|
||||
#Provides: vdrift-data = %{version}-%{release}
|
||||
|
||||
|
||||
%description
|
||||
VDrift is a cross-platform, open source driving simulation made with drift
|
||||
|
|
@ -46,6 +54,7 @@ available for Linux, FreeBSD, Mac OS X and Windows (Cygwin).
|
|||
|
||||
%package data
|
||||
Summary: Driving/drift racing simulation data
|
||||
Group: Amusements/Games
|
||||
Requires: vdrift = %{version}
|
||||
BuildArch: noarch
|
||||
|
||||
|
|
@ -59,7 +68,7 @@ These are the data files.
|
|||
|
||||
%prep
|
||||
|
||||
%setup -qn vdrift-%{commit} -a 3
|
||||
%setup -qn vdrift-2011-10-22
|
||||
# unbundling
|
||||
rm -rf bullet
|
||||
|
||||
|
|
@ -67,18 +76,31 @@ rm -rf bullet
|
|||
sed -i 's/linuxx86/linuxppc/' src/SConscript
|
||||
%endif
|
||||
|
||||
%patch -P 1 -p0
|
||||
%patch -P 4 -p0
|
||||
%py3_shebang_fix .
|
||||
%patch0 -p0
|
||||
%patch1 -p0
|
||||
%patch4 -p0
|
||||
#%patch5 -p0
|
||||
#%patch6 -p0
|
||||
#%patch7 -p0
|
||||
|
||||
#/bin/chmod -x src/gamestate.cpp
|
||||
#/bin/chmod -x src/logo.cpp
|
||||
#/bin/chmod -x src/objects.cpp
|
||||
/bin/chmod -x src/main.cpp
|
||||
/bin/chmod -x src/game.cpp
|
||||
|
||||
|
||||
%build
|
||||
scons %{?_smp_mflags}
|
||||
CC="gcc" CXX="g++" CXXFLAGS="%{optflags}" \
|
||||
scons \
|
||||
bin=/bin prefix=/usr use_binreloc=0 \
|
||||
release=1 os_cc=1 os_cxx=1 os_cxxflags=1 \
|
||||
NLS=0 \
|
||||
verbose=1 \
|
||||
%{?_smp_mflags}
|
||||
|
||||
%install
|
||||
rm -rf %{buildroot}
|
||||
# As described in the README scons install is broken so DIY
|
||||
install -d %{buildroot}%{_bindir}
|
||||
install -d %{buildroot}%{_datadir}
|
||||
|
|
@ -87,7 +109,7 @@ cp -pr data %{buildroot}%{_datadir}/vdrift
|
|||
rm `find %{buildroot}%{_datadir}/vdrift -name "SConscript*"`
|
||||
|
||||
mkdir -p %{buildroot}%{_datadir}/applications
|
||||
desktop-file-install \
|
||||
desktop-file-install --vendor fedora \
|
||||
--dir %{buildroot}%{_datadir}/applications \
|
||||
%{SOURCE1}
|
||||
|
||||
|
|
@ -95,233 +117,34 @@ mkdir -p %{buildroot}%{_datadir}/icons/hicolor/32x32/apps
|
|||
install -p -m 644 %{SOURCE2} \
|
||||
%{buildroot}%{_datadir}/icons/hicolor/32x32/apps
|
||||
|
||||
# Register as an application to be visible in the software center
|
||||
#
|
||||
# NOTE: It would be *awesome* if this file was maintained by the upstream
|
||||
# project, translated and installed into the right place during `make install`.
|
||||
#
|
||||
# See http://www.freedesktop.org/software/appstream/docs/ for more details.
|
||||
#
|
||||
mkdir -p $RPM_BUILD_ROOT%{_datadir}/appdata
|
||||
cat > $RPM_BUILD_ROOT%{_datadir}/appdata/%{name}.appdata.xml <<EOF
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!-- Copyright 2014 Luya Tshimbalanga <luya@fedoraproject.org> -->
|
||||
<!--
|
||||
BugReportURL: https://github.com/VDrift/vdrift/issues/122
|
||||
SentUpstream: 2014-09-25
|
||||
-->
|
||||
<application>
|
||||
<id type="desktop">vdrift.desktop</id>
|
||||
<metadata_license>CC0-1.0</metadata_license>
|
||||
<summary>Drifting oriented racing simulation</summary>
|
||||
<description>
|
||||
<p>
|
||||
VDrift is a racing simulation oriented to drifting.
|
||||
</p>
|
||||
<p>
|
||||
It features over 45 tracks based on famous real-world circuits and 45 cars
|
||||
based on real-world vehicles.
|
||||
</p>
|
||||
</description>
|
||||
<url type="homepage">http://vdrift.net</url>
|
||||
<screenshots>
|
||||
<screenshot type="default"><!--screenshot url here--></screenshot>
|
||||
<screenshot><!--screenshot url here--></screenshot>
|
||||
<screenshot><!--screenshot url here--></screenshot>
|
||||
</screenshots>
|
||||
</application>
|
||||
EOF
|
||||
%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
|
||||
%license LICENSE
|
||||
%doc README.md
|
||||
%defattr(-,root,root,-)
|
||||
%doc README.md LICENSE
|
||||
%{_bindir}/vdrift
|
||||
%{_datadir}/appdata/%{name}.appdata.xml
|
||||
%{_datadir}/applications/vdrift.desktop
|
||||
%{_datadir}/applications/fedora-vdrift.desktop
|
||||
%{_datadir}/icons/hicolor/32x32/apps/vdrift.png
|
||||
|
||||
%files data
|
||||
%defattr(-,root,root,-)
|
||||
%{_datadir}/vdrift
|
||||
|
||||
%changelog
|
||||
* Fri Jul 17 2026 Fedora Release Engineering <releng@fedoraproject.org> - 20141020-36.git5ae309f
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_45_Mass_Rebuild
|
||||
|
||||
* Sat Jan 17 2026 Fedora Release Engineering <releng@fedoraproject.org> - 20141020-35.git5ae309f
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild
|
||||
|
||||
* Fri Jul 25 2025 Fedora Release Engineering <releng@fedoraproject.org> - 20141020-34.git5ae309f
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild
|
||||
|
||||
* Sun Jan 19 2025 Fedora Release Engineering <releng@fedoraproject.org> - 20141020-33.git5ae309f
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild
|
||||
|
||||
* Sat Jul 20 2024 Fedora Release Engineering <releng@fedoraproject.org> - 20141020-32.git5ae309f
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
|
||||
|
||||
* Sat Jan 27 2024 Fedora Release Engineering <releng@fedoraproject.org> - 20141020-31.git5ae309f
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||
|
||||
* Sat Jul 22 2023 Fedora Release Engineering <releng@fedoraproject.org> - 20141020-30.git5ae309f
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
||||
|
||||
* Sat Mar 04 2023 Gwyn Ciesla <gwync@protonmail.com> - 20141020-29.git5ae309f
|
||||
- migrated to SPDX license
|
||||
|
||||
* Sat Jan 21 2023 Fedora Release Engineering <releng@fedoraproject.org> - 20141020-28.git5ae309f
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
||||
|
||||
* Sat Jul 23 2022 Fedora Release Engineering <releng@fedoraproject.org> - 20141020-27.git5ae309f
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
||||
|
||||
* Sat Jan 22 2022 Fedora Release Engineering <releng@fedoraproject.org> - 20141020-26.git5ae309f
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
||||
|
||||
* Fri Jul 23 2021 Fedora Release Engineering <releng@fedoraproject.org> - 20141020-25.git5ae309f
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||||
|
||||
* Thu Feb 11 2021 Tom Callaway <spot@fedoraproject.org> - 20141020-24.git5ae309f
|
||||
- update code to latest git
|
||||
- update data from latest svn
|
||||
|
||||
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 20141020-23
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||
|
||||
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 20141020-22
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||
|
||||
* Mon Mar 23 2020 Gwyn Ciesla <gwync@protonmail.com> - 2014-1020-21
|
||||
- Change build options to fix crash.
|
||||
|
||||
* Fri Jan 31 2020 Fedora Release Engineering <releng@fedoraproject.org> - 20141020-20
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||
|
||||
* Fri Aug 02 2019 Gwyn Ciesla <gwync@protonmail.com> - 20141020-18
|
||||
- Fix FTBFS.
|
||||
|
||||
* Sat Jul 27 2019 Fedora Release Engineering <releng@fedoraproject.org> - 20141020-17
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||
|
||||
* Sun Feb 03 2019 Fedora Release Engineering <releng@fedoraproject.org> - 20141020-16
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||
|
||||
* Mon Sep 10 2018 Gwyn Ciesla <limburgher@gmail.com> - 20171020-15
|
||||
- Fix shebang.
|
||||
|
||||
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 20141020-14
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||
|
||||
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 20141020-13
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||
|
||||
* Thu Jan 18 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 20141020-12
|
||||
- Remove obsolete scriptlets
|
||||
|
||||
* Mon Dec 18 2017 Rich Mattes <richmattes@gmail.com> - 20141020-11
|
||||
- Rebuild for bullet-2.87
|
||||
- Force scons to run with python 2
|
||||
|
||||
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 20141020-10
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
||||
|
||||
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 20141020-9
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||
|
||||
* Mon May 15 2017 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 20141020-8
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_27_Mass_Rebuild
|
||||
|
||||
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 20141020-7
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
||||
|
||||
* Fri Jan 27 2017 Jonathan Wakely <jwakely@redhat.com> - 20141020-6
|
||||
- Rebuilt for Boost 1.63
|
||||
|
||||
* Fri Feb 05 2016 Fedora Release Engineering <releng@fedoraproject.org> - 20141020-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
||||
|
||||
* Sat Jan 16 2016 Jonathan Wakely <jwakely@redhat.com> - 20141020-4
|
||||
- Rebuilt for Boost 1.60
|
||||
|
||||
* Wed Jul 29 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 20141020-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Changes/F23Boost159
|
||||
|
||||
* Wed Jul 22 2015 David Tardon <dtardon@redhat.com> - 20141020-2
|
||||
- rebuild for Boost 1.58
|
||||
|
||||
* Sun Jun 28 2015 Jon Ciesla <limburgher@gmail.com> - 20141020-1
|
||||
- Latest upstream.
|
||||
- Fixed changelog dates.
|
||||
|
||||
* Fri Jun 19 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 20120722-16
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
||||
|
||||
* Sat May 02 2015 Kalev Lember <kalevlember@gmail.com> - 20120722-15
|
||||
- Rebuilt for GCC 5 C++11 ABI change
|
||||
|
||||
* Thu Mar 26 2015 Richard Hughes <rhughes@redhat.com> - 20120722-14
|
||||
- Add an AppData file for the software center
|
||||
|
||||
* Tue Jan 27 2015 Petr Machata <pmachata@redhat.com> - 20120722-13
|
||||
- Rebuild for boost 1.57.0
|
||||
|
||||
* Mon Aug 18 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 20120722-12
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
||||
|
||||
* Fri Jun 13 2014 Hans de Goede <hdegoede@redhat.com> - 20120722-11
|
||||
- Rebuild for new SDL_gfx
|
||||
|
||||
* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 20120722-10
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
||||
|
||||
* Fri May 23 2014 Petr Machata <pmachata@redhat.com> - 20120722-9
|
||||
- Rebuild for boost 1.55.0
|
||||
|
||||
* Sun Feb 09 2014 Rich Mattes <richmattes@gmail.com> - 20120722-8
|
||||
- Rebuild for bullet-2.82
|
||||
|
||||
* Mon Nov 18 2013 Dave Airlie <airlied@redhat.com> - 20120722-7
|
||||
- rebuilt for GLEW 1.10
|
||||
|
||||
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 20120722-6
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
||||
|
||||
* Tue Jul 30 2013 Petr Machata <pmachata@redhat.com> - 20120722-5
|
||||
- Rebuild for boost 1.54.0
|
||||
|
||||
* Sat Feb 09 2013 Parag Nemade <paragn AT fedoraproject DOT org> - 20120722-4
|
||||
- Remove vendor tag from desktop file as per https://fedorahosted.org/fesco/ticket/1077
|
||||
|
||||
* Thu Jan 17 2013 Tomas Bzatek <tbzatek@redhat.com> - 20120722-3
|
||||
- Rebuilt for new libarchive
|
||||
|
||||
* Thu Dec 13 2012 Adam Jackson <ajax@redhat.com> - 20120722-2
|
||||
- Rebuild for glew 1.9.0
|
||||
|
||||
* Wed Oct 24 2012 Jon Ciesla <limburgher@gmail.com> - 20120722-1
|
||||
- Latest upstream.
|
||||
|
||||
* Sat Oct 13 2012 Rich Mattes <richmattes@gmail.com> - 20111022-8
|
||||
- Rebuild for new bullet
|
||||
- Add fix for build error with new bullet
|
||||
|
||||
* Wed Aug 01 2012 Adam Jackson <ajax@redhat.com> - 20111022-7
|
||||
- Rebuild for new glew
|
||||
|
||||
* Thu Jul 26 2012 Jon Ciesla <limburgher@gmail.com> - 20111022-6
|
||||
- Rebuilt for boost 1.50.
|
||||
|
||||
* Sun Jul 22 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 20111022-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
||||
|
||||
* Mon May 28 2012 Rich Mattes <richmattes@gmail.com> - 20111022-4
|
||||
- Rebuild for bullet 2.80
|
||||
|
||||
* Tue Feb 28 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 20111022-3
|
||||
- Rebuilt for c++ ABI breakage
|
||||
|
||||
* Thu Jan 26 2012 Tomas Bzatek <tbzatek@redhat.com> - 20111022-2
|
||||
- Rebuilt for new libarchive
|
||||
|
||||
* Wed Jan 18 2012 Jon Ciesla <limburgher@gmail.com> - 20111022-1
|
||||
- New upstream.
|
||||
- License changed to GPLv3+.
|
||||
|
|
@ -398,8 +221,8 @@ EOF
|
|||
- Passing compiler flags to scons.
|
||||
- Turned off translations.
|
||||
|
||||
* Mon Apr 02 2007 Jon Ciesla <limb@jcomserv.net> - 20070323-2
|
||||
* Mon Apr 04 2007 Jon Ciesla <limb@jcomserv.net> - 20070323-2
|
||||
- Split out minimal data.
|
||||
|
||||
* Thu Mar 29 2007 Jon Ciesla <limb@jcomserv.net> - 20070323-1
|
||||
* Thu Mar 28 2007 Jon Ciesla <limb@jcomserv.net> - 20070323-1
|
||||
- Initial packaging
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue