2004-09-25 20:45:44 +00:00
|
|
|
# functions used for dir handling / preperation / cleaning
|
|
|
|
|
|
|
|
import os
|
|
|
|
import string
|
|
|
|
import sys
|
|
|
|
import bs_globals
|
|
|
|
|
|
|
|
def cleanCVS():
|
|
|
|
"""
|
|
|
|
walks the dist dir and removes all CVS dirs
|
|
|
|
"""
|
|
|
|
|
|
|
|
try:
|
|
|
|
import shutil
|
|
|
|
except:
|
|
|
|
print "no shutil available"
|
|
|
|
print "make sure you use python 2.3"
|
|
|
|
print
|
|
|
|
return 0
|
|
|
|
|
|
|
|
startdir = os.getcwd()
|
|
|
|
|
|
|
|
for root, dirs, files in os.walk("dist", topdown=False):
|
|
|
|
for name in dirs:
|
|
|
|
if name in ['CVS']:
|
|
|
|
if os.path.isdir(root + "/" + name):
|
|
|
|
shutil.rmtree(root + "/" + name)
|
|
|
|
|
|
|
|
os.chdir(startdir)
|
|
|
|
|
|
|
|
return 1
|
|
|
|
|
|
|
|
def preparedist():
|
|
|
|
"""
|
|
|
|
Prepare a directory for creating either archives or the installer
|
|
|
|
"""
|
|
|
|
|
|
|
|
try:
|
|
|
|
import shutil
|
|
|
|
import time
|
|
|
|
import stat
|
|
|
|
except:
|
|
|
|
print "no shutil available"
|
|
|
|
print "make sure you use python 2.3"
|
|
|
|
print
|
|
|
|
return 0
|
|
|
|
|
|
|
|
startdir = os.getcwd()
|
|
|
|
|
|
|
|
if os.path.isdir("dist") == 0:
|
|
|
|
os.makedirs("dist")
|
|
|
|
else:
|
|
|
|
shutil.rmtree("dist") # make sure we don't get old cruft
|
|
|
|
os.makedirs("dist")
|
|
|
|
|
|
|
|
# first copy binaries
|
|
|
|
|
2004-10-05 07:50:49 +00:00
|
|
|
if sys.platform == 'win32' or sys.platform == 'cygwin':
|
2004-09-25 20:45:44 +00:00
|
|
|
shutil.copy("blender.exe", "dist/blender.exe")
|
|
|
|
if bs_globals.user_options_dict['BUILD_BLENDER_PLAYER'] == 1:
|
|
|
|
shutil.copy("blenderplayer.exe", "dist/blenderplayer.exe")
|
2005-10-12 20:51:00 +00:00
|
|
|
shutil.copy("../lib/windows/python/lib/python24.dll", "dist/python24.dll")
|
2004-09-25 20:45:44 +00:00
|
|
|
shutil.copy("../lib/windows/sdl/lib/SDL.dll", "dist/SDL.dll")
|
|
|
|
shutil.copy("../lib/windows/gettext/lib/gnu_gettext.dll", "dist/gnu_gettext.dll")
|
2005-11-28 20:01:14 +00:00
|
|
|
shutil.copy("../lib/windows/tiff/lib/libtiff.dll", "dist/libtiff.dll")
|
2004-09-25 20:45:44 +00:00
|
|
|
elif sys.platform in ['linux2', 'linux-i386', 'freebsd4', 'freebsd5']:
|
|
|
|
shutil.copy("blender", "dist/blender")
|
|
|
|
if bs_globals.user_options_dict['BUILD_BLENDER_PLAYER'] == 1:
|
|
|
|
shutil.copy("blenderplayer", "dist/blenderplayer")
|
|
|
|
else:
|
|
|
|
print "update preparedist() for your platform!"
|
|
|
|
return 0
|
|
|
|
|
|
|
|
# now copy .blender and necessary extras for it
|
|
|
|
if os.path.isdir("dist/.blender"):
|
|
|
|
shutil.rmtree("dist/.blender")
|
|
|
|
os.chdir("bin")
|
|
|
|
shutil.copytree(".blender/", "../dist/.blender")
|
|
|
|
os.chdir(startdir)
|
|
|
|
if os.path.isdir("dist/.blender/scripts"):
|
2005-10-12 20:59:47 +00:00
|
|
|
shutil.rmtree("dist/.blender/scripts")
|
|
|
|
if os.path.isdir("dist/plugins"):
|
|
|
|
shutil.rmtree("dist/plugins")
|
2005-10-13 20:05:00 +00:00
|
|
|
os.makedirs("dist/plugins/include")
|
|
|
|
shutil.copy("source/blender/blenpluginapi/documentation.h", "dist/plugins/include/documentation.h")
|
|
|
|
shutil.copy("source/blender/blenpluginapi/floatpatch.h", "dist/plugins/include/floatpatch.h")
|
|
|
|
shutil.copy("source/blender/blenpluginapi/iff.h", "dist/plugins/include/iff.h")
|
|
|
|
shutil.copy("source/blender/blenpluginapi/plugin.h", "dist/plugins/include/plugin.h")
|
|
|
|
shutil.copy("source/blender/blenpluginapi/util.h", "dist/plugins/include/util.h")
|
2005-06-10 08:00:35 +00:00
|
|
|
|
2004-09-25 20:45:44 +00:00
|
|
|
os.chdir("release")
|
|
|
|
shutil.copytree("scripts/", "../dist/.blender/scripts")
|
|
|
|
# finally copy auxiliaries (readme, license, etc.)
|
|
|
|
if sys.platform == 'win32':
|
|
|
|
shutil.copy("windows/extra/Help.url", "../dist/Help.url")
|
2005-10-12 20:51:00 +00:00
|
|
|
shutil.copy("windows/extra/Python24.zip", "../dist/Python24.zip")
|
2004-09-25 20:45:44 +00:00
|
|
|
shutil.copy("windows/extra/zlib.pyd", "../dist/zlib.pyd")
|
|
|
|
shutil.copy("text/copyright.txt", "../dist/copyright.txt")
|
|
|
|
shutil.copy("text/blender.html", "../dist/blender.html")
|
|
|
|
shutil.copy("text/GPL-license.txt", "../dist/GPL-license.txt")
|
|
|
|
shutil.copy("text/Python-license.txt", "../dist/Python-license.txt")
|
|
|
|
|
|
|
|
reltext = "release_" + string.join(bs_globals.version.split("."), '') + ".txt"
|
|
|
|
shutil.copy("text/" + reltext, "../dist/" + reltext)
|
|
|
|
|
|
|
|
os.chdir(startdir)
|
|
|
|
|
|
|
|
if cleanCVS()==0:
|
|
|
|
return 0
|
|
|
|
return 1
|
|
|
|
|
|
|
|
def finalisedist(zipname):
|
|
|
|
"""
|
|
|
|
Fetch the package created and remove temp dir
|
|
|
|
"""
|
|
|
|
|
|
|
|
try:
|
|
|
|
import shutil
|
|
|
|
except:
|
|
|
|
print "no shutil available"
|
|
|
|
print "make sure you use python 2.3"
|
|
|
|
print
|
|
|
|
return 0
|
|
|
|
|
|
|
|
#shutil.copy("dist/" + zipname, zipname)
|
|
|
|
#shutil.rmtree("dist")
|
|
|
|
|
Updating build systems: folder release/bpydata/ moved to release/scripts/bpydata/
It seemed trivial enough, so I updated all systems (makefiles, xcode, scons, scons win installer), please complain if something went wrong. Mostly it was just removing release/bpydata references, since the release/scripts dir is already worked on recursevely, handling dirs inside it.
For the scons nsi file writer script I had to write code for each new dir, but it can be recoded recursively, too (in fact joining all release stuff in a single dir tree with nothing else would be a good idea, making installation code simpler). Since it's just python and I have a little more time now, I can help scons managers if they still need.
Thanks Campbell Barton for reporting.
2005-04-16 18:25:42 +00:00
|
|
|
return 1
|