forked from pool/gnuchess
Accepting request 254631 from games
1 OBS-URL: https://build.opensuse.org/request/show/254631 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/gnuchess?expand=0&rev=16
This commit is contained in:
commit
5973a903fd
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:67061516f62c9e9c2f812563bd84be716d602ca530d80223d56e3d5b0f09c791
|
|
||||||
size 445002
|
|
3
gnuchess-6.1.2.tar.gz
Normal file
3
gnuchess-6.1.2.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:14a1128f1cfa7d76a20d4f981d7e0dfc8e9da4548c1d754134a65ce65fe26696
|
||||||
|
size 720282
|
@ -1,3 +1,33 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Oct 5 23:09:57 UTC 2014 - andreas.stieger@gmx.de
|
||||||
|
|
||||||
|
- gnuchess 6.1.2:
|
||||||
|
* CFLAGS replaced by CPPFLAGS in info.
|
||||||
|
* Fix for correct handling of castling moves.
|
||||||
|
* Include translations to other languages.
|
||||||
|
- includes changes from 6.1.1:
|
||||||
|
* Include translations to other languages.
|
||||||
|
* Minor corrections in translatable strings.
|
||||||
|
* Migrate frontend to C++.
|
||||||
|
* Use autoconf 2.69 and require it in configure.ac.
|
||||||
|
* Use automake 1.14.
|
||||||
|
- includes changes from 6.1.0:
|
||||||
|
* Add support for package internationalization based on gettext
|
||||||
|
* Include first translations provided by the Translation Team.
|
||||||
|
* Graphic mode, a new board shape based on the unicode characters
|
||||||
|
for chess.
|
||||||
|
* pgnreplay command, similar to pgnload, with the capability of
|
||||||
|
manually showing a saved game step by step and moving backwards
|
||||||
|
* Fix bug in setboard.
|
||||||
|
* Avoid using 100% CPU in UCI mode.
|
||||||
|
* Rename the small book.bin as smallbook.bin.
|
||||||
|
- includes changes from 6.0.3:
|
||||||
|
* Update to autoconf 2.69, automake 1.13
|
||||||
|
* If in manual mode, keep it after undo.
|
||||||
|
* Remove some unused code.
|
||||||
|
* Avoid crashing when importing book_1.01.pgn
|
||||||
|
- licence is GPL-3.0+
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Oct 26 11:15:22 UTC 2012 - lars@linux-schulserver.de
|
Fri Oct 26 11:15:22 UTC 2012 - lars@linux-schulserver.de
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package gnuchess
|
# spec file for package gnuchess
|
||||||
#
|
#
|
||||||
# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -17,13 +17,13 @@
|
|||||||
|
|
||||||
|
|
||||||
Name: gnuchess
|
Name: gnuchess
|
||||||
Version: 6.0.2
|
Version: 6.1.2
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: GNU Chess Program
|
Summary: GNU Chess Program
|
||||||
License: GPL-2.0+
|
License: GPL-3.0+
|
||||||
Group: Amusements/Games/Board/Chess
|
Group: Amusements/Games/Board/Chess
|
||||||
Url: http://www.gnu.org/software/chess/
|
Url: http://www.gnu.org/software/chess/
|
||||||
Source0: %{name}-%{version}.tar.bz2
|
Source0: http://ftp.gnu.org/gnu/chess/%{name}-%{version}.tar.gz
|
||||||
# WARNING: Don't forget to re-generate book.dat manually before submit!
|
# WARNING: Don't forget to re-generate book.dat manually before submit!
|
||||||
# Simply remove the source and build, updated book will be generated.
|
# Simply remove the source and build, updated book will be generated.
|
||||||
Source1: book_1.02.pgn.bz2
|
Source1: book_1.02.pgn.bz2
|
||||||
@ -35,12 +35,13 @@ BuildRequires: bison
|
|||||||
BuildRequires: expect
|
BuildRequires: expect
|
||||||
BuildRequires: flex
|
BuildRequires: flex
|
||||||
BuildRequires: gcc-c++
|
BuildRequires: gcc-c++
|
||||||
|
BuildRequires: gettext-devel
|
||||||
BuildRequires: readline-devel
|
BuildRequires: readline-devel
|
||||||
Requires(post): info
|
Requires(post): info
|
||||||
Requires(preun):info
|
Requires(preun): info
|
||||||
|
Recommends: xboard
|
||||||
Provides: chess_backend
|
Provides: chess_backend
|
||||||
Provides: gchess
|
Provides: gchess
|
||||||
Recommends: xboard
|
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
|
|
||||||
%description
|
%description
|
||||||
@ -60,12 +61,13 @@ sh %{SOURCE3} %{SOURCE1}
|
|||||||
%if 0%{?suse_version} > 1110
|
%if 0%{?suse_version} > 1110
|
||||||
%make_install
|
%make_install
|
||||||
%else
|
%else
|
||||||
%makeinstall
|
make DESTDIR=%{buildroot} install %{?_smp_mflags}
|
||||||
%endif
|
%endif
|
||||||
mkdir -p %{buildroot}%{_mandir}/man6
|
mkdir -p %{buildroot}%{_mandir}/man6
|
||||||
cp %{SOURCE4} %{buildroot}%{_mandir}/man6
|
cp %{SOURCE4} %{buildroot}%{_mandir}/man6
|
||||||
# install xgnuchess
|
# install xgnuchess
|
||||||
install -m 755 %{SOURCE5} %{buildroot}/%{_bindir}
|
install -m 755 %{SOURCE5} %{buildroot}/%{_bindir}
|
||||||
|
%find_lang %{name}
|
||||||
|
|
||||||
%post
|
%post
|
||||||
%install_info --info-dir=%{_infodir} %{_infodir}/%{name}.info.gz
|
%install_info --info-dir=%{_infodir} %{_infodir}/%{name}.info.gz
|
||||||
@ -77,7 +79,7 @@ if [ $1 = 0 ] ; then
|
|||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
%files
|
%files -f %{name}.lang
|
||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
%doc AUTHORS COPYING ChangeLog NEWS README TODO
|
%doc AUTHORS COPYING ChangeLog NEWS README TODO
|
||||||
%{_bindir}/*
|
%{_bindir}/*
|
||||||
|
Loading…
Reference in New Issue
Block a user