From fe8ef7be3d7bb6ba9c70c393730147b8dc125fc7 Mon Sep 17 00:00:00 2001 From: brianl Date: Fri, 31 Aug 2007 06:31:45 +0000 Subject: [PATCH] - bring up to date with changes to versioning. git-svn-id: file:///home/shlomif/Backup/svn-dumps/PySolFC/svnsync-repos/pysolfc/PySolFC/trunk@203 efabe8c0-fbe8-4139-b769-b5e6d273206e --- setup_osx.py | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/setup_osx.py b/setup_osx.py index 5a3b5fde..afe737fb 100644 --- a/setup_osx.py +++ b/setup_osx.py @@ -7,7 +7,7 @@ import os, sys import shutil from subprocess import call from setuptools import setup -from pysollib.settings import PACKAGE, VERSION, FC_VERSION +from pysollib.settings import PACKAGE, VERSION # build the rule pages if not os.path.exists('data/html'): @@ -19,7 +19,10 @@ if not os.path.exists('data/html'): shutil.rmtree('data/html') except OSError: pass - shutil.move('html-src/html', 'data/html') + shutil.copytree('html-src/html', 'data/html') + +# build the HTML list of games +call("./scripts/all_games.py > docs/all_games.html", shell=True) # Use Tile widgets, if they are installed. # http://tktable.sourceforge.net/tile/ @@ -47,7 +50,7 @@ if not os.path.exists(SOLVER_LIB_PATH): GETINFO_STRING = "PySol Fan Club Edition \ %s %s, (C) 1998-2003 Markus F.X.J Oberhumer \ - %s, (C) 2006 Skomoroh" % (PACKAGE, VERSION, FC_VERSION) + (C) 2006-2007 Skomoroh" % (PACKAGE, VERSION) PLIST = dict( CFBundleDevelopmentRegion = 'en_US', CFBundleExecutable = PACKAGE, @@ -55,7 +58,7 @@ PLIST = dict( CFBundleGetInfoString = GETINFO_STRING, CFBundleIdentifier = 'org.pysol.PySol', CFBundleName = PACKAGE, - CFBundleVersion = '%s (%s)' % (VERSION, FC_VERSION), + CFBundleVersion = '%s' % VERSION, CFBundleShortVersionString = '%s' % VERSION, NSHumanReadableCopyright = "Copyright (C) 1998-2003 Markus F.X.J. Oberhumer", )