forked from conda/constructor
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathwinexe.py
More file actions
228 lines (199 loc) · 8.11 KB
/
Copy pathwinexe.py
File metadata and controls
228 lines (199 loc) · 8.11 KB
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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
# (c) 2016 Anaconda, Inc. / https://anaconda.com
# All Rights Reserved
#
# constructor is distributed under the terms of the BSD 3-clause license.
# Consult LICENSE.txt or http://opensource.org/licenses/BSD-3-Clause.
from __future__ import absolute_import, division, print_function
import os
from os.path import abspath, dirname, isfile, join
import shutil
from subprocess import Popen, PIPE, check_call, check_output
import sys
import math
import tempfile
from .construct import ns_platform
from .imaging import write_images
from .preconda import write_files as preconda_write_files
from .utils import (filename_dist, fill_template, make_VIProductVersion,
preprocess, add_condarc, get_final_channels)
THIS_DIR = abspath(dirname(__file__))
NSIS_DIR = join(THIS_DIR, 'nsis')
MAKENSIS_EXE = abspath(join(sys.prefix, 'NSIS', 'makensis.exe'))
def str_esc(s):
for a, b in [('$', '$$'), ('"', '$\\"'), ('\n', '$\\n'), ('\t', '$\\t')]:
s = s.replace(a, b)
return '"%s"' % s
def read_nsi_tmpl(info):
path = abspath(info.get('nsis_template', join(NSIS_DIR, 'main.nsi.tmpl')))
print('Reading: %s' % path)
with open(path) as fi:
return fi.read()
def pkg_commands(download_dir, dists):
for fn in dists:
yield 'File %s' % str_esc(join(download_dir, fn))
def make_nsi(info, dir_path):
"Creates the tmp/main.nsi from the template file"
name = info['name']
download_dir = info['_download_dir']
dists = info['_dists']
py_name, py_version, unused_build = filename_dist(dists[0]).rsplit('-', 2)
assert py_name == 'python'
arch = int(info['_platform'].split('-')[1])
info['post_install_desc'] = info.get('post_install_desc', "")
# these appear as __<key>__ in the template, and get escaped
replace = {
'NAME': name,
'VERSION': info['version'],
'COMPANY': info.get('company', 'Unknown, Inc.'),
'ARCH': '%d-bit' % arch,
'PY_VER': py_version[:3],
'PYVERSION_JUSTDIGITS': ''.join(py_version.split('.')),
'PYVERSION': py_version,
'PYVERSION_MAJOR': py_version.split('.')[0],
'DEFAULT_PREFIX': info.get('default_prefix', join('%USERPROFILE%', name.lower())),
'DEFAULT_PREFIX_DOMAIN_USER': info.get('default_prefix_domain_user',
join('%LOCALAPPDATA%', name.lower())),
'DEFAULT_PREFIX_ALL_USERS': info.get('default_prefix_all_users',
join('%ALLUSERSPROFILE%', name.lower())),
'POST_INSTALL_DESC': info['post_install_desc'],
'OUTFILE': info['_outpath'],
'VIPV': make_VIProductVersion(info['version']),
'ICONFILE': '@icon.ico',
'HEADERIMAGE': '@header.bmp',
'WELCOMEIMAGE': '@welcome.bmp',
'LICENSEFILE': abspath(info.get('license_file', join(NSIS_DIR, 'placeholder_license.txt'))),
'CONDA_HISTORY': '@' + join('conda-meta', 'history'),
'CONDA_EXE': '@_conda.exe',
'ENV_TXT': '@env.txt',
'URLS_FILE': '@urls',
'URLS_TXT_FILE': '@urls.txt',
'POST_INSTALL': '@post_install.bat',
'PRE_UNINSTALL': '@pre_uninstall.bat',
'INDEX_CACHE': '@cache',
'REPODATA_RECORD': '@repodata_record.json',
'CHANNELS': ','.join(get_final_channels(info))
}
for key, value in replace.items():
if value.startswith('@'):
value = join(dir_path, value[1:])
replace[key] = str_esc(value)
data = read_nsi_tmpl(info)
ppd = ns_platform(info['_platform'])
ppd['initialize_by_default'] = info.get('initialize_by_default', None)
ppd['register_python_default'] = info.get('register_python_default', None)
ppd['check_path_length'] = info.get('check_path_length', None)
ppd['check_path_spaces'] = info.get('check_path_spaces', True)
ppd['keep_pkgs'] = info.get('keep_pkgs') or False
ppd['post_install_exists'] = bool(info.get('post_install'))
data = preprocess(data, ppd)
data = fill_template(data, replace)
if info['_platform'].startswith("win") and sys.platform != 'win32':
# Branding /TRIM commannd is unsupported on non win platform
data_lines = data.split("\n")
for i, line in enumerate(data_lines):
if "/TRIM" in line:
del data_lines[i]
break
data = "\n".join(data_lines)
# division by 10^3 instead of 2^10 is deliberate here. gives us more room
approx_pkgs_size_kb = int(
math.ceil(info.get('_approx_pkgs_size', 0) / 1000))
# these are unescaped (and unquoted)
for key, value in [
('@NAME@', name),
('@NSIS_DIR@', NSIS_DIR),
('@BITS@', str(arch)),
('@PKG_COMMANDS@', '\n '.join(pkg_commands(download_dir, dists))),
('@WRITE_CONDARC@', '\n '.join(add_condarc(info))),
('@MENU_PKGS@', ' '.join(info.get('menu_packages', []))),
('@SIZE@', str(approx_pkgs_size_kb)),
('@UNINSTALL_NAME@', info.get('uninstall_name',
'${NAME} ${VERSION} (Python ${PYVERSION} ${ARCH})'
)),
]:
data = data.replace(key, value)
nsi_path = join(dir_path, 'main.nsi')
with open(nsi_path, 'w') as fo:
fo.write(data)
# Uncomment to see the file for debugging
# with open('main.nsi', 'w') as fo:
# fo.write(data)
# Copy all the NSIS header files (*.nsh)
for fn in os.listdir(NSIS_DIR):
if fn.endswith('.nsh'):
shutil.copy(join(NSIS_DIR, fn),
join(dir_path, fn))
print('Created %s file' % nsi_path)
return nsi_path
def verify_nsis_install():
print("Checking for '%s'" % MAKENSIS_EXE)
if not isfile(MAKENSIS_EXE):
sys.exit("""
Error: no file %s
please make sure nsis is installed:
> conda install nsis
""" % MAKENSIS_EXE)
if sys.platform == "win32":
out = check_output([MAKENSIS_EXE, '/VERSION'])
else:
out = check_output([MAKENSIS_EXE, '-VERSION'])
out = out.decode('utf-8').strip()
print("NSIS version: %s" % out)
for dn in 'x86-unicode', 'x86-ansi', '.':
untgz_dll = abspath(join(sys.prefix, 'NSIS',
'Plugins', dn, 'untgz.dll'))
if isfile(untgz_dll):
break
else:
sys.exit("Error: no file untgz.dll")
def create(info, verbose=False):
verify_nsis_install()
tmp_dir = tempfile.mkdtemp()
preconda_write_files(info, tmp_dir)
shutil.copyfile(info['_conda_exe'], join(tmp_dir, '_conda.exe'))
if 'pre_install' in info:
sys.exit("Error: Cannot run pre install on Windows, sorry.\n")
post_dst = join(tmp_dir, 'post_install.bat')
try:
shutil.copy(info['post_install'], post_dst)
except KeyError:
with open(post_dst, 'w') as fo:
fo.write(":: this is an empty post install .bat script\n")
pre_dst = join(tmp_dir, 'pre_uninstall.bat')
try:
shutil.copy(info['pre_uninstall'], pre_dst)
except KeyError:
with open(pre_dst, 'w') as fo:
fo.write(":: this is an empty pre uninstall .bat script\n")
write_images(info, tmp_dir)
nsi = make_nsi(info, tmp_dir)
if verbose:
verbosity = 'V4'
else:
verbosity = 'V2'
if sys.platform == "win32":
verbosity = "/" + verbosity
else:
verbosity = "-" + verbosity
args = [MAKENSIS_EXE, verbosity, nsi]
print('Calling: %s' % args)
if verbose:
sub = Popen(args, stdout=PIPE, stderr=PIPE)
stdout, stderr = sub.communicate()
for msg, information in zip((stdout, stderr), ('stdout', 'stderr')):
# on Python3 we're getting bytes
if hasattr(msg, 'decode'):
msg = msg.decode()
print('makensis {}:'.format(information))
print(msg)
else:
check_call(args)
shutil.rmtree(tmp_dir)
if __name__ == '__main__':
make_nsi({'name': 'Maxi', 'version': '1.2',
'_platform': 'win-64',
'_outpath': 'dummy.exe',
'_download_dir': 'dummy',
'_dists': ['python-2.7.9-0.tar.bz2',
'vs2008_runtime-1.0-1.tar.bz2']},
'.')