97 lines
2.6 KiB
Python
97 lines
2.6 KiB
Python
|
import os
|
||
|
import shutil
|
||
|
import sys
|
||
|
import sysconfig
|
||
|
from pathlib import Path
|
||
|
|
||
|
import cx_Freeze
|
||
|
|
||
|
is_64bits = sys.maxsize > 2 ** 32
|
||
|
|
||
|
folder = "exe.{platform}-{version}".format(platform=sysconfig.get_platform(),
|
||
|
version=sysconfig.get_python_version())
|
||
|
buildfolder = Path("build", folder)
|
||
|
sbuildfolder = str(buildfolder)
|
||
|
libfolder = Path(buildfolder, "lib")
|
||
|
library = Path(libfolder, "library.zip")
|
||
|
print("Outputting to: " + str(buildfolder))
|
||
|
build_resources = "exe_resources"
|
||
|
compress = False
|
||
|
holoviews = False
|
||
|
from hashlib import sha3_512
|
||
|
import base64
|
||
|
|
||
|
def _threaded_hash(filepath):
|
||
|
hasher = sha3_512()
|
||
|
hasher.update(open(filepath, "rb").read())
|
||
|
return base64.b85encode(hasher.digest()).decode()
|
||
|
|
||
|
os.makedirs(buildfolder, exist_ok=True)
|
||
|
|
||
|
def manifest_creation():
|
||
|
hashes = {}
|
||
|
manifestpath = os.path.join(buildfolder, "manifest.json")
|
||
|
from concurrent.futures import ThreadPoolExecutor
|
||
|
pool = ThreadPoolExecutor()
|
||
|
for dirpath, dirnames, filenames in os.walk(buildfolder):
|
||
|
for filename in filenames:
|
||
|
path = os.path.join(dirpath, filename)
|
||
|
hashes[os.path.relpath(path, start=buildfolder)] = pool.submit(_threaded_hash, path)
|
||
|
import json
|
||
|
manifest = {"buildtime": buildtime.isoformat(sep=" ", timespec="seconds")}
|
||
|
manifest["hashes"] = {path: hash.result() for path, hash in hashes.items()}
|
||
|
json.dump(manifest, open(manifestpath, "wt"), indent=4)
|
||
|
print("Created Manifest")
|
||
|
|
||
|
EXE = cx_Freeze.Executable(
|
||
|
script="MultiClient.py",
|
||
|
targetName="BerserkerMultiClient" if sys.platform == "linux" else "BerserkerMultiClient.exe"
|
||
|
)
|
||
|
|
||
|
|
||
|
import datetime
|
||
|
|
||
|
buildtime = datetime.datetime.now()
|
||
|
|
||
|
cx_Freeze.setup(
|
||
|
name="HonorarPlus",
|
||
|
version=f"{buildtime.year}.{buildtime.month}.{buildtime.day}.{buildtime.hour}",
|
||
|
description="HonorarPlus",
|
||
|
executables=[EXE],
|
||
|
options={
|
||
|
"build_exe": {
|
||
|
"zip_include_packages": ["*"],
|
||
|
"zip_exclude_packages": [],
|
||
|
"include_files": [],
|
||
|
"include_msvcr": True,
|
||
|
"replace_paths": [("*", "")],
|
||
|
"optimize": 2,
|
||
|
"build_exe": buildfolder
|
||
|
},
|
||
|
},
|
||
|
)
|
||
|
|
||
|
|
||
|
|
||
|
def installfile(path):
|
||
|
lbuildfolder = buildfolder
|
||
|
print('copying', path, '->', lbuildfolder)
|
||
|
if path.is_dir():
|
||
|
lbuildfolder /= path.name
|
||
|
if lbuildfolder.is_dir():
|
||
|
shutil.rmtree(lbuildfolder)
|
||
|
shutil.copytree(path, lbuildfolder)
|
||
|
elif path.is_file():
|
||
|
shutil.copy(path, lbuildfolder)
|
||
|
else:
|
||
|
print('Warning,', path, 'not found')
|
||
|
|
||
|
|
||
|
extra_data = ["LICENSE"]
|
||
|
|
||
|
for data in extra_data:
|
||
|
installfile(Path(data))
|
||
|
|
||
|
|
||
|
manifest_creation()
|