added make release scripts

This commit is contained in:
Magnus Auvinen 2007-08-04 22:51:41 +00:00
parent 56362977e3
commit 34291e79bd
2 changed files with 58 additions and 30 deletions

View file

@ -1,30 +0,0 @@
import zipfile
import os, os.path
from distutils.file_util import copy_file
# A bit of dir trickery to make sure we're referring to the right dir
# this makes it possible to run the script both from the teewars root and
# the scripts subdir
if os.getcwd().find("scripts") > -1:
dir = os.path.abspath("..")
else:
dir = os.getcwd()
data_dir = "%s\\%s" % (dir, 'data')
exe_file = "%s\\%s" % (dir, 'teewars.exe')
zip_file = "%s\\%s" % (dir, 'teewars.zip')
ns = os.listdir(data_dir)
try:
ns.remove('.svn')
except:
pass
zf = zipfile.ZipFile(zip_file, 'w', zipfile.ZIP_DEFLATED)
zf.write(exe_file, 'teewars.exe')
for n in ns:
zf.write(os.path.join(data_dir, n), "%s\\%s" % ('data', n))
print "Data written to zip-file:\n"
zf.printdir()
zf.close()

58
scripts/make_release.py Normal file
View file

@ -0,0 +1,58 @@
import shutil, os, sys, zipfile
valid_platforms = ["win32", "linux86", "linux86_64"]
if len(sys.argv) != 3:
print "wrong number of arguments"
print sys.argv[0], "VERSION PLATFORM"
sys.exit(-1)
name = "teewars"
version = sys.argv[1]
platform = sys.argv[2]
exe_ext = ""
use_zip = 0
if not platform in valid_platforms:
print "not a valid platform"
print valid_platforms
sys.exit(-1)
if platform == 'win32':
exe_ext = ".exe"
use_zip = 1
def copydir(src, dst):
for root, dirs, files in os.walk(src, topdown=True):
if "/." in root:
continue
for name in dirs:
if name[0] != '.':
os.mkdir(os.path.join(dst, root, name))
for name in files:
if name[0] != '.':
shutil.copy(os.path.join(root, name), os.path.join(dst, root, name))
package = "%s-%s-%s" %(name, version, platform)
package_dir = package
shutil.rmtree(package_dir, True)
os.mkdir(package_dir)
os.mkdir(os.path.join(package_dir, "data"))
copydir("data", package_dir)
shutil.copy("readme.txt", package_dir)
shutil.copy("teewars"+exe_ext, package_dir)
shutil.copy("teewars_srv"+exe_ext, package_dir)
if use_zip:
zf = zipfile.ZipFile("%s.zip" % package, 'w', zipfile.ZIP_DEFLATED)
for root, dirs, files in os.walk(package_dir, topdown=True):
for name in files:
n = os.path.join(root, name)
zf.write(n, n)
zf.printdir()
zf.close()
else:
os.system("tar czvf %s.tar.gz %s" % (package, package_dir))