- Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathproject.py
194 lines (139 loc) · 6.63 KB
/
project.py
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
# SPDX-License-Identifier: BSD-2-Clause
# Copyright (c) 2024 Phil Thompson <phil@riverbankcomputing.com>
importos
importsys
fromsipbuildimportOption, Project, UserException
classPyQtProject(Project):
""" Encapsulate a PyQt based project. """
defapply_nonuser_defaults(self, tool):
""" Set default values for non-user options that haven't been set yet.
"""
ifself.bindings_factoryisNone:
from .bindingsimportPyQtBindings
self.bindings_factory=PyQtBindings
ifself.builder_factoryisNone:
from .builderimportQmakeBuilder
self.builder_factory=QmakeBuilder
ifself.sip_files_dirisNone:
self.sip_files_dir='sip'
# The tag prefix defaults to the meta-data name without any 'Py'
# prefix.
ifself.tag_prefixisNone:
self.tag_prefix=self.metadata['name']
ifself.tag_prefix.startswith('Py'):
self.tag_prefix=self.tag_prefix[2:]
ifself.tests_dirisNone:
self.tests_dir='config-tests'
# Make sure relevent paths are absolute and use native separators.
self.tests_dir=self.tests_dir.replace('/', os.sep)
ifnotos.path.isabs(self.tests_dir):
self.tests_dir=os.path.join(self.root_dir, self.tests_dir)
super().apply_nonuser_defaults(tool)
defapply_user_defaults(self, tool):
""" Set default values for user options that haven't been set yet. """
super().apply_user_defaults(tool)
major=self.py_major_version
minor=self.py_minor_version
# Get the details of the default Python interpreter library. Note that
# these are actually non-user options but we need the 'link_full_dll'
# user option in order to set them.
ifself.py_platform=='win32':
pylib_dir=os.path.join(sys.base_prefix, 'libs')
debug_suffix='_d'ifself.py_debugelse''
# See if we are using the limited API.
ifself.py_debugorself.link_full_dll:
pylib_lib=f'python{major}{minor}{debug_suffix}'
else:
pylib_lib=f'python{major}{debug_suffix}'
# Assume Python is a DLL on Windows.
pylib_shlib=pylib_lib
else:
abi=getattr(sys, 'abiflags', '')
pylib_lib=f'python{major}.{minor}{abi}'
pylib_dir=pylib_shlib=''
# Get the additional configuration.
fromglobimportglob
fromsysconfigimportget_config_vars
ducfg=get_config_vars()
config_args=ducfg.get('CONFIG_ARGS', '')
dynamic_pylib='--enable-shared'inconfig_args
ifnotdynamic_pylib:
dynamic_pylib='--enable-framework'inconfig_args
ifdynamic_pylib:
exec_prefix=ducfg['exec_prefix']
multiarch=ducfg.get('MULTIARCH', '')
libdir=ducfg['LIBDIR']
pattern=f'libpython{major}.{minor}*'
ifglob(os.path.join(exec_prefix, 'lib', pattern)):
pylib_dir=os.path.join(exec_prefix, 'lib')
elifmultiarch!=''andglob(os.path.join(exec_prefix, 'lib', multiarch, pattern)):
pylib_dir=os.path.join(exec_prefix, 'lib', multiarch)
elifglob(os.path.join(libdir, pattern)):
pylib_dir=libdir
ifpylib_dir!='':
pylib_shlib=os.path.join(pylib_dir, 'lib'+pylib_lib)
# Apply the defaults if necessary.
ifself.py_pylib_dir=='':
self.py_pylib_dir=pylib_dir
ifself.py_pylib_lib=='':
self.py_pylib_lib=pylib_lib
ifself.py_pylib_shlib=='':
self.py_pylib_shlib=pylib_shlib
defget_platform_tag(self):
""" Return the platform tag to use in a wheel name. This calls the
default implementation and applied the target Apple build type.
"""
platform_tag=super().get_platform_tag()
ifsys.platform=='darwin':
parts=platform_tag.split('_')
# We assume the format is 'macosx_major_minor_arch'.
iflen(parts) ==4:
ifself.apple_universal2:
arch='universal2'
else:
fromplatformimportmachine
arch=machine()
# For arm64 binaries enforce a valid minimum macOS version.
ifarch=='arm64':
ifint(parts[1]) <11:
parts[1] ='11'
parts[2] ='0'
parts[3] =arch
platform_tag='_'.join(parts)
returnplatform_tag
defget_options(self):
""" Return the list of configurable options. """
options=super().get_options()
# The directory containing the target Python interpreter library.
options.append(Option('py_pylib_dir'))
# The name of the target Python interpreter library.
options.append(Option('py_pylib_lib'))
# The name of the target Python interpreter library if it is a shared
# library.
options.append(Option('py_pylib_shlib'))
# The prefix of the version tag to use (with the Qt version
# automatically appended). By default the meta-data name is used with
# any leading 'Py' removed.
options.append(Option('tag_prefix'))
# The name of the directory, relative to the project directory,
# containing any external test programs.
options.append(Option('tests_dir', default='config-tests'))
# The user options.
options.append(
Option('android_abis', option_type=list,
help="the target Android ABI", metavar="ABI"))
options.append(
Option('apple_universal2', option_type=bool,
help="build a universal2 project"))
options.append(
Option('link_full_dll', option_type=bool,
help="on Windows link against the full Python DLL "
"rather than the limited API DLL"))
options.append(
Option('qml_debug', option_type=bool,
help="enable the QML debugging infrastructure"))
options.append(Option('target_qt_dir',
help="the Qt libraries will be found in DIR when the wheel is "
"installed",
metavar="DIR", tools=['wheel']))
returnoptions