From: Eric S. Raymond Date: Thu, 16 Feb 2012 22:52:27 +0000 (-0500) Subject: Packaging changes and version bump. X-Git-Tag: 2.1^0 X-Git-Url: https://jxself.org/git/?p=super-star-trek.git;a=commitdiff_plain;h=2b60ee942cfa8c86db7bb57a701d0371c640b434;hp=8083dcb0ec0693dd5112ba89f4b40f6bd86cb89d Packaging changes and version bump. --- diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..85f7995 --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +sst.pyc +doc/sst.6 +doc/sst.doc +doc/sst-doc.txt +www/sst-doc.html diff --git a/Makefile b/Makefile index f04a38d..147e1f3 100644 --- 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 17657ea..a551ced 100644 --- 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 b6ffbf8..02370be 100644 --- 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 diff --git a/doc/Makefile b/doc/Makefile index 11d93db..6d5909d 100644 --- a/doc/Makefile +++ b/doc/Makefile @@ -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 diff --git a/sst.py b/sst.py index 966795c..4940817 100755 --- 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") @@ -6355,3 +6355,5 @@ if __name__ == '__main__': if logfp: logfp.close() print "" + +# End.