Merge branch 'master' of ssh://git.berlios.de/gitroot/sst
authorEric S. Raymond <esr@thyrsus.com>
Fri, 17 Feb 2012 02:46:10 +0000 (21:46 -0500)
committerEric S. Raymond <esr@thyrsus.com>
Fri, 17 Feb 2012 02:46:10 +0000 (21:46 -0500)
.gitignore [new file with mode: 0644]
Makefile
NEWS
control
doc/HACKING
doc/Makefile
doc/sst-doc.xml
sst.py

diff --git a/.gitignore b/.gitignore
new file mode 100644 (file)
index 0000000..85f7995
--- /dev/null
@@ -0,0 +1,5 @@
+sst.pyc
+doc/sst.6
+doc/sst.doc
+doc/sst-doc.txt
+www/sst-doc.html
index f04a38d780438af1fc30e9b5aea847a5005f9c68..147e1f38bd0962a510c34c1b06e16742550382f0 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -37,4 +37,5 @@ clean:
        rm -f *.6 MANIFEST index.html SHIPPER.*
 
 release: sst-$(VERS).tar.gz sst.html
-       shipper -u -m -t; make clean
+       shipper -u -t; make clean
+       cd www; upload
diff --git a/NEWS b/NEWS
index 17657eabd139231a13ac1b74ea1ecdebcf65c7df..a551cedb54d4c5ab185801e0d1b5c360a08f114c 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -1,5 +1,8 @@
                        SST2K project news.
 
+2.1 @ 2012-02-16
+    Packaging fixes, pychecker cleanup, cope with Freshmeat name changes.
+
 2.0 @ 2010-11-30
     Game code moved to Python. Many bug fixes.
 
diff --git a/control b/control
index b6ffbf8ea8da8e6d502701cd6c8617269dc6eb46..02370be20eeff9214f72bd1c658f51d5b2bc791e 100644 (file)
--- a/control
+++ b/control
@@ -4,7 +4,7 @@
 Package: sst
 XBS-Freshmeat-Name: strek
 
-Destinations: ~,berlios,freshmeat
+Destinations: ~,berlios,freecode
 
 Description: Super Star Trek, a timeless classic of computer games
  Save the Federation from the invading Klingons!  Visit exotic planets and
index 0babf5cd6fe110ea5a6558d2265b70ffa8f0e6f7..32bccdcec4ec69cde1a0e0aaa9dea3c70b6397e2 100644 (file)
@@ -191,7 +191,7 @@ probability of being damaged."
 This is one place where OPTION_PLAIN does not restore the original
 behavior, which was equiprobable damage across all devices.  If we
 wanted that, we'd return randrange(NDEVICES) and have done with it.
-Also, in the original game, DNAVYS and DCOMPTR were the same device.
+Also, in the original game, DNAVSYS and DCOMPTR were the same device.
 
 Instead, we use a table of weights similar to the one from BSD Trek.
 BSD doesn't have the shuttle, shield controller, death ray, or probes.
index 11d93db7222824e6e3f4136a10af646292d71da6..6d5909dfdde44a5cf1a02e2f8ee61c106c719302 100644 (file)
@@ -1,4 +1,4 @@
-# From this directory, distribute rge following files:
+# From this directory, distribute the following files:
 # HACKING makehelp.py sst-doc.xml sst-layer.xsl sst.xml
 
 sst.6: sst.xml
index c50cd831eb115ead5475dcb40b857ac1b26e49a8..a7469a714c3752bf5cd0f3a7c1305d4079df0e3f 100644 (file)
@@ -1883,7 +1883,7 @@ command descriptions, and changed some logic in sst.c to match.
 <listitem><para>
 I've cleaned up a lot of grubby FORTRANisms in the code internals &mdash;
 used sizeof(), replaced magic numeric constants with #defines,
-that sort of thing.
+that sort of thing.  Later I translated the code from C to Python.
 </para></listitem>
 <listitem><para>
 I fixed a surprising number of typos in the code and documentation.
diff --git a/sst.py b/sst.py
index 35d1433b7b5b036afac60481ff79ee22f6625519..bf13aa9d436cfc54a46e97c2a891facee1b7eb2c 100755 (executable)
--- a/sst.py
+++ b/sst.py
@@ -13,7 +13,7 @@ on how to modify (and how not to modify!) this code.
 """
 import os, sys, math, curses, time, readline, cPickle, random, copy, gettext, getpass
 
-version="2.0"
+version="2.1"
 
 docpath        = (".", "../doc", "/usr/share/doc/sst")
 
@@ -6369,3 +6369,5 @@ if __name__ == '__main__':
         if logfp:
             logfp.close()
         print ""
+
+# End.