1
0
mirror of https://git.zap.org.au/git/trader.git synced 2025-02-02 15:08:13 -05:00

Merge branch master into po-testing

This commit is contained in:
John Zaitseff 2019-11-13 09:33:21 +11:00
commit cd6724a968
19 changed files with 104 additions and 85 deletions

87
INSTALL
View File

@ -142,11 +142,11 @@ This feature requires GNU Make and allows you to keep the source code
tree from being modified by the compilation process. To use this option,
create a separate `build` directory, then run ``configure``. For
example, if you placed the Star Traders source code tree in
`$HOME/src/trader-7.13`, you could run something like::
`$HOME/src/trader-7.14`, you could run something like::
mkdir $HOME/build/trader-build-7.13
cd $HOME/build/trader-build-7.13
$HOME/src/trader-7.13/configure
mkdir $HOME/build/trader-build-7.14
cd $HOME/build/trader-build-7.14
$HOME/src/trader-7.14/configure
Once again, the `Autoconf manual`__ describes these options (and many
others).
@ -204,34 +204,39 @@ Tested Systems
The following operating systems and compilers have been successfully
tested with this version of Star Traders:
==================== ====== ===== ======================= =====
Linux distribution Arch Glibc Compiler Notes
==================== ====== ===== ======================= =====
Debian GNU/Linux Sid x86_64 2.27 GNU C Compiler 8.2.0
Debian GNU/Linux Sid i686 2.27 GNU C Compiler 8.2.0
Debian GNU/Linux 9.5 x86_64 2.24 GNU C Compiler 6.3.0
Ubuntu 18.04 x86_64 2.27 GNU C Compiler 7.3.0
Ubuntu 18.04 x86_64 2.27 Clang (LLVM) 6.0.0
Ubuntu 18.04 x86_64 2.27 Portland PGI C/C++ 18.5
Fedora 28 x86_64 2.27 GNU C Compiler 8.1.1
CentOS 7.5 x86_64 2.17 GNU C Compiler 4.8.5
CentOS 6.10 x86_64 2.12 GNU C Compiler 4.4.7
CentOS 6.10 x86_64 2.12 Portland PGI C/C++ 18.3
CentOS 6.9 x86_64 2.12 Intel C/C++ 18.0.3
OpenSUSE Leap 15.0 x86_64 2.26 GNU C Compiler 7.3.1
==================== ====== ===== ======================= =====
===================== ====== ===== ========================
Linux distribution Arch Glibc Compiler
===================== ====== ===== ========================
Debian GNU/Linux Sid x86_64 2.29 GNU C Compiler 9.2.1
Debian GNU/Linux Sid x86_64 2.29 Clang (LLVM) 8.0.1
Debian GNU/Linux Sid i686 2.29 GNU C Compiler 9.2.1
Debian GNU/Linux Sid i686 2.29 Clang (LLVM) 8.0.1
Debian GNU/Linux 10.1 x86_64 2.28 GNU C Compiler 8.3.0
Debian GNU/Linux 10.1 x86_64 2.28 Clang (LLVM) 7.0.1
Ubuntu 19.10 x86_64 2.30 GNU C Compiler 9.2.1
Ubuntu 19.10 x86_64 2.30 Clang (LLVM) 9.0.0
Ubuntu 19.10 x86_64 2.30 Portland PGI C/C++ 19.10
Ubuntu 18.04.3 LTS x86_64 2.27 GNU C Compiler 7.4.0
Ubuntu 18.04.3 LTS x86_64 2.27 Clang (LLVM) 6.0.0
Fedora 31 x86_64 2.30 GNU C Compiler 9.2.1
CentOS 8.0 x86_64 2.28 GNU C Compiler 8.2.1
CentOS 7.7 x86_64 2.17 GNU C Compiler 4.8.5
CentOS 6.10 x86_64 2.12 GNU C Compiler 4.4.7
CentOS 6.10 x86_64 2.12 Intel C/C++ 19.0.3.199
OpenSUSE Leap 15.1 x86_64 2.26 GNU C Compiler 7.4.1
===================== ====== ===== ========================
======================= ====== ============================ ============
Operating system Arch Compiler Notes
Operating system Arch Compiler Notes
======================= ====== ============================ ============
FreeBSD 11.2 x86_64 Clang (LLVM) 6.0.0 [#freebsd1]_
NetBSD 8.0 x86_64 GNU C Compiler 5.5.0 [#netbsd1]_
macOS 10.13 x86_64 Apple Clang (LLVM) 9.1.0 [#macos1]_
Solaris 11.3 (x86_64) i386 GNU C Compiler 4.8.2
Solaris 11.3 (x86_64) x86_64 GNU C Compiler 4.8.2 [#solaris1]_
Solaris 11.3 (x86_64) i386 Oracle Developer Studio 12.6 [#solaris2]_
Solaris 11.3 (x86_64) x86_64 Oracle Developer Studio 12.6 [#solaris3]_
Cygwin 2.10.0 (Win7SP1) i686 GNU C Compiler 7.3.0
FreeBSD 12.1 x86_64 Clang (LLVM) 8.0.1 [#freebsd1]_
NetBSD 8.1 x86_64 GNU C Compiler 5.5.0 [#netbsd1]_
macOS 10.14 x86_64 Apple Clang (LLVM) 11.0.0 [#macos1]_
macOS 10.14 x86_64 Apple Clang (LLVM) 11.0.0 [#macos2]_
Solaris 11.4 (x86_64) x86_64 GNU C Compiler 7.3.0 [#solaris1]_
Solaris 11.4 (x86_64) i386 Oracle Developer Studio 12.6 [#solaris2]_
Solaris 11.4 (x86_64) x86_64 Oracle Developer Studio 12.6 [#solaris3]_
Cygwin 3.0.7 (Win7 SP1) i686 GNU C Compiler 7.4.0
======================= ====== ============================ ============
Notes:
@ -252,17 +257,25 @@ Notes:
CURSES_CFLAGS=-I/usr/pkg/include \
LDFLAGS=-L/usr/pkg/lib
.. [#macos1] macOS with the ``gettext`` package installed with Homebrew,
using::
.. [#macos1] macOS with Xcode command line tools, with the ``gettext``
package installed with Homebrew, using::
./configure --with-libintl-prefix=/usr/local/opt/gettext
.. [#solaris1] Using ``./configure CC='gcc -m64'`` for 64-bit user-space.
.. [#macos2] macOS with Xcode command line tools, with the ``gettext``,
``ncurses`` and ``pkg-config`` packages installed with Homebrew,
using::
.. [#solaris2] Using ``./configure CC='/opt/developerstudio12.6/bin/cc'``.
./configure --with-libintl-prefix=/usr/local/opt/gettext \
PKG_CONFIG_PATH=/usr/local/opt/ncurses/lib/pkgconfig
.. [#solaris3] Using ``./configure CC='/opt/developerstudio12.6/bin/cc
-m64'``.
.. [#solaris1] Using ``./configure CURSES_CFLAGS=-I/usr/include/ncurses``
.. [#solaris2] Using ``./configure CURSES_CFLAGS=-I/usr/include/ncurses
CC='/opt/developerstudio12.6/bin/cc'``
.. [#solaris3] Using ``./configure CURSES_CFLAGS=-I/usr/include/ncurses
CC='/opt/developerstudio12.6/bin/cc -m64'``
The following systems are known *not* to work at the current time; this
list is almost certainly not exhaustive:
@ -270,8 +283,8 @@ list is almost certainly not exhaustive:
================ ====== ==================== ============
Operating system Arch Compiler Notes
================ ====== ==================== ============
OpenBSD 6.3 x86_64 GNU C Compiler 4.2.1 [#openbsd1]_
OpenBSD 6.3 x86_64 Clang (LLVM) 5.0.1 [#openbsd1]_
OpenBSD 6.6 x86_64 GNU C Compiler 4.2.1 [#openbsd1]_
OpenBSD 6.6 x86_64 Clang (LLVM) 8.0.1 [#openbsd1]_
================ ====== ==================== ============
Notes:

8
NEWS
View File

@ -20,9 +20,15 @@ __ https://www.zap.org.au/
.. contents::
Version 7.13 (not yet released)
Version 7.14 (not yet released)
-------------------------------
(No changes yet)
Version 7.13 (13th November, 2019)
----------------------------------
Converted all text files to reStructuredText (ReST) format. This format
is still quite readable as raw text, and is much more capable than the
myriad all-slightly-incompatible variants of Markdown.

View File

@ -26,7 +26,7 @@ dnl You should have received a copy of the GNU General Public License
dnl along with this program. If not, see https://www.gnu.org/licenses/.
AC_INIT([Star Traders], [7.13], [J.Zaitseff@zap.org.au], [trader],
AC_INIT([Star Traders], [7.14], [J.Zaitseff@zap.org.au], [trader],
[https://www.zap.org.au/projects/trader/])
AC_DEFINE([PACKAGE_AUTHOR], ["John Zaitseff"], [Package author])

View File

@ -41,7 +41,7 @@
.if \n[.g] .mso www.tmac
.\"
.\" *********************************************************************
.TH TRADER 6 "12th April, 2019" "Unix-like systems"
.TH TRADER 6 "13th November, 2019" "Unix-like systems"
.SH NAME
trader \- a game of interstellar trading
.\" *********************************************************************

View File

@ -12,10 +12,10 @@
#
msgid ""
msgstr ""
"Project-Id-Version: trader 7.13\n"
"Project-Id-Version: trader 7.14\n"
"Report-Msgid-Bugs-To: J.Zaitseff@zap.org.au\n"
"POT-Creation-Date: 2019-04-12 05:12+1000\n"
"PO-Revision-Date: 2019-01-05 07:34+1100\n"
"POT-Creation-Date: 2019-11-13 08:14+1100\n"
"PO-Revision-Date: 2019-11-13 09:29+1100\n"
"Last-Translator: Joe Hansen <joedalton2@yahoo.dk>\n"
"Language-Team: Danish <dansk@dansk-gruppen.dk>\n"
"Language: da\n"

View File

@ -12,10 +12,10 @@
#
msgid ""
msgstr ""
"Project-Id-Version: trader 7.13\n"
"Project-Id-Version: trader 7.14\n"
"Report-Msgid-Bugs-To: J.Zaitseff@zap.org.au\n"
"POT-Creation-Date: 2019-04-12 05:12+1000\n"
"PO-Revision-Date: 2019-01-05 07:35+1100\n"
"POT-Creation-Date: 2019-11-13 08:14+1100\n"
"PO-Revision-Date: 2019-11-13 09:30+1100\n"
"Last-Translator: Philipp Thomas <pth@suse.de>\n"
"Language-Team: German <translation-team-de@lists.sourceforge.net>\n"
"Language: de\n"

View File

@ -12,10 +12,10 @@
#
msgid ""
msgstr ""
"Project-Id-Version: trader 7.13\n"
"Project-Id-Version: trader 7.14\n"
"Report-Msgid-Bugs-To: J.Zaitseff@zap.org.au\n"
"POT-Creation-Date: 2019-04-12 05:12+1000\n"
"PO-Revision-Date: 2019-01-05 07:35+1100\n"
"POT-Creation-Date: 2019-11-13 08:14+1100\n"
"PO-Revision-Date: 2019-11-13 09:28+1100\n"
"Last-Translator: John Zaitseff <J.Zaitseff@zap.org.au>\n"
"Language-Team: English (Australian) <(nothing)>\n"
"Language: en_AU\n"

View File

@ -12,10 +12,10 @@
#
msgid ""
msgstr ""
"Project-Id-Version: trader 7.13\n"
"Project-Id-Version: trader 7.14\n"
"Report-Msgid-Bugs-To: J.Zaitseff@zap.org.au\n"
"POT-Creation-Date: 2019-04-12 05:12+1000\n"
"PO-Revision-Date: 2019-01-05 07:35+1100\n"
"POT-Creation-Date: 2019-11-13 08:14+1100\n"
"PO-Revision-Date: 2019-11-13 09:30+1100\n"
"Last-Translator: John Zaitseff <J.Zaitseff@zap.org.au>\n"
"Language-Team: English (Canadian) <(nothing)>\n"
"Language: en_CA\n"

View File

@ -12,10 +12,10 @@
#
msgid ""
msgstr ""
"Project-Id-Version: trader 7.13\n"
"Project-Id-Version: trader 7.14\n"
"Report-Msgid-Bugs-To: J.Zaitseff@zap.org.au\n"
"POT-Creation-Date: 2019-04-12 05:12+1000\n"
"PO-Revision-Date: 2019-01-05 07:35+1100\n"
"POT-Creation-Date: 2019-11-13 08:14+1100\n"
"PO-Revision-Date: 2019-11-13 09:30+1100\n"
"Last-Translator: John Zaitseff <J.Zaitseff@zap.org.au>\n"
"Language-Team: English (British) <(nothing)>\n"
"Language: en_GB\n"

View File

@ -12,10 +12,10 @@
#
msgid ""
msgstr ""
"Project-Id-Version: trader 7.13\n"
"Project-Id-Version: trader 7.14\n"
"Report-Msgid-Bugs-To: J.Zaitseff@zap.org.au\n"
"POT-Creation-Date: 2019-04-12 05:12+1000\n"
"PO-Revision-Date: 2019-01-05 07:35+1100\n"
"POT-Creation-Date: 2019-11-13 08:14+1100\n"
"PO-Revision-Date: 2019-11-13 09:29+1100\n"
"Last-Translator: John Zaitseff <J.Zaitseff@zap.org.au>\n"
"Language-Team: English (US) <(nothing)>\n"
"Language: en_US\n"

View File

@ -13,10 +13,10 @@
#
msgid ""
msgstr ""
"Project-Id-Version: trader 7.13\n"
"Project-Id-Version: trader 7.14\n"
"Report-Msgid-Bugs-To: J.Zaitseff@zap.org.au\n"
"POT-Creation-Date: 2019-04-12 05:12+1000\n"
"PO-Revision-Date: 2019-01-05 07:36+1100\n"
"POT-Creation-Date: 2019-11-13 08:14+1100\n"
"PO-Revision-Date: 2019-11-13 09:29+1100\n"
"Last-Translator: Felipe Castro <fefcas@gmail.com>\n"
"Language-Team: Esperanto <translation-team-eo@lists.sourceforge.net>\n"
"Language: eo\n"

View File

@ -13,10 +13,10 @@
#
msgid ""
msgstr ""
"Project-Id-Version: trader 7.13\n"
"Project-Id-Version: trader 7.14\n"
"Report-Msgid-Bugs-To: J.Zaitseff@zap.org.au\n"
"POT-Creation-Date: 2019-04-12 05:12+1000\n"
"PO-Revision-Date: 2019-01-05 07:37+1100\n"
"POT-Creation-Date: 2019-11-13 08:14+1100\n"
"PO-Revision-Date: 2019-11-13 09:30+1100\n"
"Last-Translator: Jorma Karvonen <karvonen.jorma@gmail.com>\n"
"Language-Team: Finnish <translation-team-fi@lists.sourceforge.net>\n"
"Language: fi\n"

View File

@ -19,10 +19,10 @@
#
msgid ""
msgstr ""
"Project-Id-Version: trader 7.13\n"
"Project-Id-Version: trader 7.14\n"
"Report-Msgid-Bugs-To: J.Zaitseff@zap.org.au\n"
"POT-Creation-Date: 2019-04-12 05:12+1000\n"
"PO-Revision-Date: 2019-01-05 07:37+1100\n"
"POT-Creation-Date: 2019-11-13 08:14+1100\n"
"PO-Revision-Date: 2019-11-13 09:30+1100\n"
"Last-Translator: Frédéric Marchal <fmarchal@perso.be>\n"
"Language-Team: French <traduc@traduc.org>\n"
"Language: fr\n"

View File

@ -12,10 +12,10 @@
#
msgid ""
msgstr ""
"Project-Id-Version: trader 7.13\n"
"Project-Id-Version: trader 7.14\n"
"Report-Msgid-Bugs-To: J.Zaitseff@zap.org.au\n"
"POT-Creation-Date: 2019-04-12 05:12+1000\n"
"PO-Revision-Date: 2019-01-05 07:37+1100\n"
"POT-Creation-Date: 2019-11-13 08:14+1100\n"
"PO-Revision-Date: 2019-11-13 09:29+1100\n"
"Last-Translator: Tomislav Krznar <tomislav.krznar@gmail.com>\n"
"Language-Team: Croatian <lokalizacija@linux.hr>\n"
"Language: hr\n"

View File

@ -12,10 +12,10 @@
#
msgid ""
msgstr ""
"Project-Id-Version: trader 7.13\n"
"Project-Id-Version: trader 7.14\n"
"Report-Msgid-Bugs-To: J.Zaitseff@zap.org.au\n"
"POT-Creation-Date: 2019-04-12 05:12+1000\n"
"PO-Revision-Date: 2019-01-05 07:37+1100\n"
"POT-Creation-Date: 2019-11-13 08:14+1100\n"
"PO-Revision-Date: 2019-11-13 09:30+1100\n"
"Last-Translator: Balázs Úr <urbalazs@gmail.com>\n"
"Language-Team: Hungarian <translation-team-hu@lists.sourceforge.net>\n"
"Language: hu\n"

View File

@ -12,10 +12,10 @@
#
msgid ""
msgstr ""
"Project-Id-Version: trader 7.13\n"
"Project-Id-Version: trader 7.14\n"
"Report-Msgid-Bugs-To: J.Zaitseff@zap.org.au\n"
"POT-Creation-Date: 2019-04-12 05:12+1000\n"
"PO-Revision-Date: 2019-01-05 07:37+1100\n"
"POT-Creation-Date: 2019-11-13 08:14+1100\n"
"PO-Revision-Date: 2019-11-13 09:30+1100\n"
"Last-Translator: Johnny A. Solbu <johnny@solbu.net>\n"
"Language-Team: Norwegian Bokmaal <i18n-nb@lister.ping.uio.no>\n"
"Language: nb\n"

View File

@ -15,10 +15,10 @@
#
msgid ""
msgstr ""
"Project-Id-Version: trader 7.13\n"
"Project-Id-Version: trader 7.14\n"
"Report-Msgid-Bugs-To: J.Zaitseff@zap.org.au\n"
"POT-Creation-Date: 2019-04-12 05:12+1000\n"
"PO-Revision-Date: 2019-01-05 07:38+1100\n"
"POT-Creation-Date: 2019-11-13 08:14+1100\n"
"PO-Revision-Date: 2019-11-13 09:30+1100\n"
"Last-Translator: Pavel Maryanov <acid@jack.kiev.ua>\n"
"Language-Team: Russian <gnu@d07.ru>\n"
"Language: ru\n"

View File

@ -13,10 +13,10 @@
#
msgid ""
msgstr ""
"Project-Id-Version: trader 7.13\n"
"Project-Id-Version: trader 7.14\n"
"Report-Msgid-Bugs-To: J.Zaitseff@zap.org.au\n"
"POT-Creation-Date: 2019-04-12 05:12+1000\n"
"PO-Revision-Date: 2019-01-05 07:38+1100\n"
"POT-Creation-Date: 2019-11-13 08:14+1100\n"
"PO-Revision-Date: 2019-11-13 09:30+1100\n"
"Last-Translator: Мирослав Николић <miroslavnikolic@rocketmail.com>\n"
"Language-Team: Serbian <(nothing)>\n"
"Language: sr\n"

View File

@ -12,10 +12,10 @@
#
msgid ""
msgstr ""
"Project-Id-Version: trader 7.13\n"
"Project-Id-Version: trader 7.14\n"
"Report-Msgid-Bugs-To: J.Zaitseff@zap.org.au\n"
"POT-Creation-Date: 2019-04-12 05:12+1000\n"
"PO-Revision-Date: 2019-01-05 07:38+1100\n"
"POT-Creation-Date: 2019-11-13 08:14+1100\n"
"PO-Revision-Date: 2019-11-13 09:29+1100\n"
"Last-Translator: Anders Jonsson <anders.jonsson@norsjovallen.se>\n"
"Language-Team: Swedish <tp-sv@listor.tp-sv.se>\n"
"Language: sv\n"