forked from Podshot/MCEdit-Unified
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mcedit-ci.spec
144 lines (114 loc) · 4.54 KB
/
mcedit-ci.spec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
# -*- mode: python -*-
import sys
sys.modules['FixTk'] = None
import glob
import os
import shutil
import json
import subprocess
hasPyClark = False
try:
import pyClark
hasByClark = True
except ImportError:
pass
try:
from PyInstaller.utils.hooks import collect_data_files, remove_prefix
except ImportError:
from PyInstaller.hooks.hookutils import collect_data_files, remove_prefix
def walk(directory):
files = []
for path, subdirs, ffiles in os.walk(directory):
for name in ffiles:
src = os.path.abspath(os.path.join(path, name))
dest = remove_prefix(path, os.path.abspath(os.getcwdu()))
files.append((src, dest.replace('./','')))
return files
block_cipher = None
SEVENZIP = r"C:\Program Files\7-Zip\7z.exe"
replace_map = {
"mcedit.ini": "mcedit_testing.ini",
"usercache.json": "usercache_testing.ini"
}
if os.environ.get('APPVEYOR_BUILD_VERSION'):
VERSION = os.environ.get('APPVEYOR_BUILD_VERSION')
else:
VERSION = "1.6.0.0-testing"
if os.environ.get('OVERRIDE_VERSION'):
VERSION = os.environ.get('OVERRIDE_VERSION')
if not os.environ.get("RELEASE"):
fp = open('directories.py', 'rb')
data = fp.read();
fp.close()
with open('directories.py', 'wb') as out:
new_data = data
for (key, value) in replace_map.iteritems():
new_data = new_data.replace(key, value)
out.write(new_data)
#subprocess.check_call([sys.executable, 'setup.py', 'all'])
a = Analysis(['mcedit.py'],
pathex=['C:\\Users\\gotharbg\\Documents\\Python Projects\\MCEdit-Unified'],
binaries=[], # ('./ENV/Lib/site-packages/OpenGL/DLLS/freeglut64.vc9.dll', 'freeglut64.vc9.dll'),
datas=[],
hiddenimports=['pkg_resources', 'PyOpenGL', 'PyOpenGL_accelerate', 'OpenGL', 'OpenGL_accelerate', 'OpenGL.platform.win32'],
hookspath=['.'],
runtime_hooks=[],
excludes=['Tkinter', 'tkinter', '_tkinter', 'Tcl', 'tcl', 'Tk', 'tk', 'wx', 'FixTk', 'pyClark'],
win_no_prefer_redirects=False,
win_private_assemblies=False,
cipher=block_cipher)
datas = []
base_files = glob.glob(r".\\*.json") + glob.glob(r'.\\*.png') + glob.glob(r'.\\*.fot') + glob.glob(r'.\\*.def') + [os.path.join('.', 'LICENSE.txt'),]
for f in base_files:
datas.append((os.path.basename(f), os.path.abspath(f), 'DATA'))
pymclevel_files = collect_data_files('pymclevel')
pymclevel_files = [(os.path.join(dest, os.path.basename(src)), src, 'DATA') for src, dest in pymclevel_files]
datas += pymclevel_files
misc_files = walk('fonts') + walk('item-textures') + walk('Items') + walk('lang') + walk('mcver') + walk('stock-filters')
misc_files += walk('stock-brushes') + walk('stock-schematics') + walk('toolicons') + walk('splashes')
misc_files = set([(os.path.join(dest, os.path.basename(src)), src, 'DATA') for src, dest in misc_files])
datas += misc_files
a.datas.extend(datas)
pyz = PYZ(a.pure, a.zipped_data,
cipher=block_cipher)
exe = EXE(pyz,
a.scripts,
exclude_binaries=True,
name='mcedit',
debug=False,
strip=False,
upx=True,
console=True , icon='mcedit.ico')
coll = COLLECT(exe,
a.binaries,
a.zipfiles,
a.datas,
strip=False,
upx=True,
name='mcedit')
fp = open(os.path.join('.', 'dist', 'mcedit', 'RELEASE-VERSION.json'),'rb')
version_data = json.load(fp)
fp.close()
version_data["tag_name"] = VERSION
fp = open(os.path.join('.', 'dist', 'mcedit', 'RELEASE-VERSION.json'), 'wb')
json.dump(version_data, fp)
fp.close()
if not os.environ.get("RELEASE"):
with open('directories.py', 'wb') as out:
out.write(data)
subprocess.check_call(['git', 'clone', 'https://github.com/Podshot/MCEdit-Unified-Preview.git'])
if str(os.environ.get('WHL_ARCH')) == '32' or not sys.maxsize > 2**32:
shutil.copy(os.path.join('.', 'MCEdit-Unified-Preview', 'freeglut32.vc9.dll'), os.path.join('.', 'dist', 'mcedit', 'freeglut32.dll'))
VERSION += '-win32'
elif str(os.environ.get('WHL_ARCH')) == '_amd64' or sys.maxsize > 2**32:
shutil.copy(os.path.join('.', 'MCEdit-Unified-Preview', 'freeglut64.vc9.dll'), os.path.join('.', 'dist', 'mcedit', 'freeglut64.dll'))
VERSION += '-win64'
if hasPyClark:
shutil.copytree(os.path.dirname(pyClark.__file__), os.path.join('dist', 'mcedit', 'pyClark'))
subprocess.check_call([
SEVENZIP,
'a',
'mcedit-unified-{}.zip'.format(VERSION),
os.path.join('.', 'mcedit', '*')
],
cwd='dist')