Compare commits

...
Sign in to create a new pull request.

24 commits

Author SHA1 Message Date
Miro Hrončok
98d4153fd2 Orphaned for 6+ weeks 2018-12-24 11:59:17 +01:00
Miro Hrončok
4b643753ee https://fedoraproject.org/wiki/Changes/No_more_automagic_Python_bytecompilation_phase_2 2018-11-15 12:53:54 +01:00
Fedora Release Engineering
7191323d87 - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
Signed-off-by: Fedora Release Engineering <releng@fedoraproject.org>
2018-07-12 20:01:33 +00:00
Miro Hrončok
6bb76fc2a8 Rebuilt for Python 3.7 2018-06-19 10:39:26 +02:00
Adam Williamson
6b9ae4b34e Rebuild to fix GCC 8 mis-compilation
See https://da.gd/YJVwk ("GCC 8 ABI change on x86_64")
2018-03-07 16:05:09 -08:00
Alexandre Moine
d677b09796 Add gcc-c++ as a builddep 2018-03-07 12:55:41 +01:00
Fedora Release Engineering
61ca77cb6c - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
Signed-off-by: Fedora Release Engineering <releng@fedoraproject.org>
2018-02-07 01:55:44 +00:00
Fedora Release Engineering
03edd535e2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild 2017-08-02 17:24:54 +00:00
Fedora Release Engineering
929549b45e - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild 2017-07-26 02:37:44 +00:00
Alexandre Moine
a9308ac6c0 Fixing bug #1420854 2017-02-10 18:10:16 +01:00
Fedora Release Engineering
46b9fc9c5c - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild 2017-02-10 05:46:25 +00:00
Miro Hrončok
2c2f329b4a Rebuild for Python 3.6 2016-12-19 18:20:36 +01:00
Alexandre Moine
6193a8c676 New, sadly, final, release 2016-10-08 21:28:57 +02:00
Alexandre Moine
6cbc68b46d Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild 2016-10-08 21:00:34 +02:00
Dennis Gilmore
9786e23d02 - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild 2016-02-03 16:00:16 +00:00
Alexandre Moine
ef15be8623 Some spec cleanup 2015-10-04 15:37:07 +02:00
Dennis Gilmore
25b41e2655 - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild 2015-06-16 23:38:48 +00:00
Kalev Lember
71b05bf93f Rebuilt for GCC 5 C++11 ABI change 2015-05-02 11:37:35 +02:00
085290f5d6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild 2014-08-15 20:03:13 +00:00
Dennis Gilmore
78c588ad1e - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild 2014-06-06 19:10:13 -05:00
Mathieu Bridon
cfe9250d10 Fix the build with -Werror=format-security
https://bugzilla.redhat.com/show_bug.cgi?id=1036981
2013-12-09 17:16:58 +08:00
Mathieu Bridon
136abd8055 Modernize the spec file
This removes a lot of old stuff which is not necessary any more in newer
versions of Fedora.
2013-12-04 12:26:06 +08:00
Mathieu Bridon
54a9ee7657 Fix the upstream URL 2013-12-04 12:24:48 +08:00
Mathieu Bridon
3eec08da73 Fix bogus date in changelog 2013-12-04 11:54:58 +08:00
6 changed files with 1 additions and 235 deletions

1
.gitignore vendored
View file

@ -1 +0,0 @@
adonthell-src-0.3.5.tar.gz

View file

@ -1,34 +0,0 @@
Index: adonthell-0.3/src/dialog.cc
===================================================================
RCS file: /sources/adonthell/adonthell-0.3/src/dialog.cc,v
retrieving revision 1.36
retrieving revision 1.37
diff -u -r1.36 -r1.37
--- adonthell-0.3/src/dialog.cc 13 Oct 2007 19:47:25 -0000 1.36
+++ adonthell-0.3/src/dialog.cc 1 Mar 2009 12:26:14 -0000 1.37
@@ -1,5 +1,5 @@
/*
- $Id: dialog.cc,v 1.36 2007/10/13 19:47:25 ksterker Exp $
+ $Id: dialog.cc,v 1.37 2009/03/01 12:26:14 ksterker Exp $
(C) Copyright 2000/2001/2002 Kai Sterker <kaisterker@linuxgames.com>
Part of the Adonthell Project http://adonthell.linuxgames.com
@@ -265,7 +265,8 @@
{
u_int32 begin, end, len;
PyObject *result;
- char *tmp, *start, *mid, *str = NULL;
+ const char *start;
+ char *tmp, *mid, *str = NULL;
character *the_player = data::the_player;
string newstr (s);
@@ -318,7 +319,7 @@
// Error!
cout << "\n*** Error, unknown macro " << start << flush;
- start[0] = ' ';
+ newstr[newstr.length () - strlen (start)] = ' ';
}
// execute python functions

View file

@ -1,26 +0,0 @@
Index: adonthell-0.3/src/win_event.cc
===================================================================
RCS file: /sources/adonthell/adonthell-0.3/src/win_event.cc,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- adonthell-0.3/src/win_event.cc 16 Dec 2002 19:09:54 -0000 1.5
+++ adonthell-0.3/src/win_event.cc 11 Feb 2011 20:50:27 -0000 1.6
@@ -1,5 +1,5 @@
/*
- $Id: win_event.cc,v 1.5 2002/12/16 19:09:54 ksterker Exp $
+ $Id: win_event.cc,v 1.6 2011/02/11 20:50:27 ksterker Exp $
(C) Copyright 2001 Joel Vennin
Part of the Adonthell Project http://adonthell.linuxgames.com
@@ -34,8 +34,9 @@
case DESTROY:
{
+ Functor0wRet<bool> func0ret;
set_callback_destroy (
- makeFunctor (&Functor0wRet<bool>(), *callback, &py_callback::callback_func0ret));
+ makeFunctor (&func0ret, *callback, &py_callback::callback_func0ret));
break;
}

View file

@ -1,173 +0,0 @@
%{!?python_sitearch: %define python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")}
Name: adonthell
Version: 0.3.5
Release: 0.16%{?dist}
Summary: A 2D graphical RPG game
Group: Amusements/Games
License: GPLv2+
URL: http://adonthell.linuxgames.com/
Source0: http://savannah.nongnu.org/download/%{name}/%{name}-src-%{version}.tar.gz
## Fixes from CVS, no new release yet.
# Patch was obtained with:
# cvs diff -u -r 1.36 -r 1.37 adonthell-0.3/src/dialog.cc
Patch0: %{name}-0.3.5-fix-build-with-gcc-4.4.patch
# Patch was obtained with:
# cvs diff -u -r 1.5 -r 1.6 adonthell-0.3/src/win_event.cc
Patch1: %{name}-0.3.5-fix-build-with-gcc-4.6.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: python-devel
BuildRequires: freetype-devel
BuildRequires: libxml2-devel
BuildRequires: libogg-devel
BuildRequires: libvorbis-devel
BuildRequires: SDL_mixer-devel
BuildRequires: SDL_ttf-devel
BuildRequires: libpng-devel
BuildRequires: swig
BuildRequires: doxygen
BuildRequires: graphviz
%description
A 2D, graphical, single player role playing game inspired by good old
console RPGs from the 16 bit console gaming era.
This package contains the Adonthell engine. You will also need a game
package to play Adonthell. For this release, the official package is
Waste's Edge.
%package doc
Summary: API documentation for %{name}
Group: Documentation
Requires: %{name} = %{version}-%{release}
%description doc
API documentation for %{name} generated by doxygen in HTML format.
%prep
%setup -q
# install locale files in the right place
sed -i 's|myconfig.gamedir + "/locale"|"%{_datadir}/locale"|' src/nls.cc
# remove hardcoded CFLAGS
sed -i 's|^CFLAGS|^#CFLAGS|g' configure
# build with GCC 4.4
%patch0 -p1
%patch1 -p1
%build
%configure --enable-doc
make %{?_smp_mflags}
%install
rm -rf $RPM_BUILD_ROOT
make install DESTDIR=$RPM_BUILD_ROOT INSTALL="install -p"
%clean
rm -rf $RPM_BUILD_ROOT
%files
%defattr(-,root,root,-)
%doc AUTHORS COPYING FULLSCREEN.howto NEWBIE NEWS README
%{_bindir}/%{name}
%{_bindir}/%{name}-0.3
%{_datadir}/%{name}/
%files doc
%defattr(-,root,root,-)
%doc doc/devel/html
%changelog
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.3.5-0.16
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.3.5-0.15
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.3.5-0.14
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
* Tue Feb 28 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.3.5-0.13
- Rebuilt for c++ ABI breakage
* Thu Jan 12 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.3.5-0.12
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
* Tue Feb 15 2011 Mathieu Bridon <bochecha@fedoraproject.org> - 0.3.5-0.11
- Fix GCC-4.6 build failure
- Remake GCC-4.4 build failure patch from 0.3.5-0.6:
- use cvs to generate a proper patch
- name it properly
* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.3.5-0.10
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
* Tue Jul 27 2010 David Malcolm <dmalcolm@redhat.com> - 0.3.5-0.9
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
* Tue Aug 11 2009 Mathieu Bridon <bochecha@fedoraproject.org> - 0.3.5-0.8
- Upstream changed source URL.
- Added defattr for -doc subpackage.
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.3.5-0.7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
* Sun Mar 01 2009 Mathieu Bridon <bochecha@fedoraproject.org> - 0.3.5-0.6
- Fixed building with GCC 4.4
* Mon Feb 23 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.3.5-0.5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
* Sun Nov 30 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 0.3.5-0.4
- Rebuild for Python 2.6
* Tue Jun 03 2008 Mathieu Bridon <bochecha@no-log.org> 0.3.5-0.3
- added -p option to install
* Sat May 31 2008 Mathieu Bridon <bochecha@no-log.org> 0.3.5-0.2
- applied patch to configure instead of configure.in
- removed trademarks names from description
- removed explicit requires
* Tue May 27 2008 Mathieu Bridon <bochecha@no-log.org> 0.3.5-0.1
- switched to 0.3.5 release (includes bug fixes and fixes for building RPM for
fedora like pythin finding and errors with fedora specific flags)
* Fri May 22 2008 Mathieu Bridon <bochecha@no-log.org> 0.3.4-0.8
- fixed license tag (GPLv2 to GPLv2+)
- removed explicit requires
- fixed directories ownership
* Thu Apr 17 2008 Mathieu Bridon <bochecha@no-log.org> 0.3.4-0.7
- fixed building on 64 bits arch (/lib was hard coded in configure.in)
* Fri Apr 04 2008 Mathieu Bridon <bochecha@no-log.org> 0.3.4-0.6
- fixed typo in doc description
* Fri Feb 22 2008 Mathieu Bridon <bochecha@no-log.org> 0.3.4-0.5
- search for translations in the right place so that wastesedge
package can install them in the right place
* Thu Feb 21 2008 Mathieu Bridon <bochecha@no-log.org> 0.3.4-0.4
- separated the doc in a dedicated package
* Thu Feb 21 2008 Mathieu Bridon <bochecha@no-log.org> 0.3.4-0.3
- cleaned the spec file again
* Thu Feb 21 2008 Mathieu Bridon <bochecha@no-log.org> 0.3.4-0.2
- cleaned the spec file
* Mon Feb 18 2008 Mathieu Bridon <bochecha@no-log.org> 0.3.4-0.1
- first version of the SPEC file

1
dead.package Normal file
View file

@ -0,0 +1 @@
Orphaned for 6+ weeks

View file

@ -1 +0,0 @@
64a344b1ed8a7808d7adafa337120a00 adonthell-src-0.3.5.tar.gz