Packaging changes and version bump. 2.1
authorEric S. Raymond <esr@thyrsus.com>
Thu, 16 Feb 2012 22:52:27 +0000 (17:52 -0500)
committerEric S. Raymond <esr@thyrsus.com>
Thu, 16 Feb 2012 22:52:27 +0000 (17:52 -0500)
.gitignore [new file with mode: 0644]
Makefile
NEWS
control
doc/Makefile
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
        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.
 
                        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.
 
 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
 
 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
 
 Description: Super Star Trek, a timeless classic of computer games
  Save the Federation from the invading Klingons!  Visit exotic planets and
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
 # HACKING makehelp.py sst-doc.xml sst-layer.xsl sst.xml
 
 sst.6: sst.xml
diff --git a/sst.py b/sst.py
index 966795cf654b93d490dc529fe57ab63760065feb..49408172c85c2a4626727cf771adbdd0f9e704f8 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
 
 """
 import os, sys, math, curses, time, readline, cPickle, random, copy, gettext, getpass
 
-version="2.0"
+version="2.1"
 
 docpath        = (".", "../doc", "/usr/share/doc/sst")
 
 
 docpath        = (".", "../doc", "/usr/share/doc/sst")
 
@@ -6355,3 +6355,5 @@ if __name__ == '__main__':
         if logfp:
             logfp.close()
         print ""
         if logfp:
             logfp.close()
         print ""
+
+# End.