ZTWHHH commited on
Commit
dce3b7d
·
verified ·
1 Parent(s): 56bca3d

Add files using upload-large-folder tool

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
Files changed (50) hide show
  1. parrot/lib/python3.10/collections/__pycache__/abc.cpython-310.pyc +0 -0
  2. parrot/lib/python3.10/distutils/__pycache__/__init__.cpython-310.pyc +0 -0
  3. parrot/lib/python3.10/distutils/__pycache__/archive_util.cpython-310.pyc +0 -0
  4. parrot/lib/python3.10/distutils/__pycache__/bcppcompiler.cpython-310.pyc +0 -0
  5. parrot/lib/python3.10/distutils/__pycache__/ccompiler.cpython-310.pyc +0 -0
  6. parrot/lib/python3.10/distutils/__pycache__/config.cpython-310.pyc +0 -0
  7. parrot/lib/python3.10/distutils/__pycache__/core.cpython-310.pyc +0 -0
  8. parrot/lib/python3.10/distutils/__pycache__/cygwinccompiler.cpython-310.pyc +0 -0
  9. parrot/lib/python3.10/distutils/__pycache__/debug.cpython-310.pyc +0 -0
  10. parrot/lib/python3.10/distutils/__pycache__/dep_util.cpython-310.pyc +0 -0
  11. parrot/lib/python3.10/distutils/__pycache__/dist.cpython-310.pyc +0 -0
  12. parrot/lib/python3.10/distutils/__pycache__/fancy_getopt.cpython-310.pyc +0 -0
  13. parrot/lib/python3.10/distutils/__pycache__/filelist.cpython-310.pyc +0 -0
  14. parrot/lib/python3.10/distutils/__pycache__/msvccompiler.cpython-310.pyc +0 -0
  15. parrot/lib/python3.10/distutils/__pycache__/spawn.cpython-310.pyc +0 -0
  16. parrot/lib/python3.10/distutils/__pycache__/sysconfig.cpython-310.pyc +0 -0
  17. parrot/lib/python3.10/distutils/__pycache__/text_file.cpython-310.pyc +0 -0
  18. parrot/lib/python3.10/distutils/__pycache__/unixccompiler.cpython-310.pyc +0 -0
  19. parrot/lib/python3.10/distutils/__pycache__/version.cpython-310.pyc +0 -0
  20. parrot/lib/python3.10/distutils/__pycache__/versionpredicate.cpython-310.pyc +0 -0
  21. parrot/lib/python3.10/distutils/archive_util.py +256 -0
  22. parrot/lib/python3.10/distutils/command/__init__.py +30 -0
  23. parrot/lib/python3.10/distutils/command/__pycache__/bdist.cpython-310.pyc +0 -0
  24. parrot/lib/python3.10/distutils/command/__pycache__/install_lib.cpython-310.pyc +0 -0
  25. parrot/lib/python3.10/distutils/command/__pycache__/register.cpython-310.pyc +0 -0
  26. parrot/lib/python3.10/distutils/command/__pycache__/sdist.cpython-310.pyc +0 -0
  27. parrot/lib/python3.10/distutils/command/bdist.py +141 -0
  28. parrot/lib/python3.10/distutils/command/bdist_dumb.py +123 -0
  29. parrot/lib/python3.10/distutils/command/bdist_rpm.py +579 -0
  30. parrot/lib/python3.10/distutils/command/build.py +157 -0
  31. parrot/lib/python3.10/distutils/command/build_py.py +416 -0
  32. parrot/lib/python3.10/distutils/command/build_scripts.py +160 -0
  33. parrot/lib/python3.10/distutils/command/check.py +148 -0
  34. parrot/lib/python3.10/distutils/command/clean.py +76 -0
  35. parrot/lib/python3.10/distutils/command/install.py +679 -0
  36. parrot/lib/python3.10/distutils/command/install_data.py +79 -0
  37. parrot/lib/python3.10/distutils/command/install_headers.py +47 -0
  38. parrot/lib/python3.10/distutils/command/install_scripts.py +60 -0
  39. parrot/lib/python3.10/distutils/command/sdist.py +494 -0
  40. parrot/lib/python3.10/distutils/command/upload.py +215 -0
  41. parrot/lib/python3.10/distutils/cygwinccompiler.py +406 -0
  42. parrot/lib/python3.10/distutils/fancy_getopt.py +457 -0
  43. parrot/lib/python3.10/distutils/file_util.py +238 -0
  44. parrot/lib/python3.10/distutils/log.py +77 -0
  45. parrot/lib/python3.10/distutils/spawn.py +129 -0
  46. parrot/lib/python3.10/distutils/tests/__pycache__/support.cpython-310.pyc +0 -0
  47. parrot/lib/python3.10/distutils/tests/__pycache__/test_archive_util.cpython-310.pyc +0 -0
  48. parrot/lib/python3.10/distutils/tests/__pycache__/test_build_clib.cpython-310.pyc +0 -0
  49. parrot/lib/python3.10/distutils/tests/__pycache__/test_build_py.cpython-310.pyc +0 -0
  50. parrot/lib/python3.10/distutils/tests/__pycache__/test_check.cpython-310.pyc +0 -0
parrot/lib/python3.10/collections/__pycache__/abc.cpython-310.pyc ADDED
Binary file (492 Bytes). View file
 
parrot/lib/python3.10/distutils/__pycache__/__init__.cpython-310.pyc ADDED
Binary file (875 Bytes). View file
 
parrot/lib/python3.10/distutils/__pycache__/archive_util.cpython-310.pyc ADDED
Binary file (6.5 kB). View file
 
parrot/lib/python3.10/distutils/__pycache__/bcppcompiler.cpython-310.pyc ADDED
Binary file (6.75 kB). View file
 
parrot/lib/python3.10/distutils/__pycache__/ccompiler.cpython-310.pyc ADDED
Binary file (33.3 kB). View file
 
parrot/lib/python3.10/distutils/__pycache__/config.cpython-310.pyc ADDED
Binary file (3.79 kB). View file
 
parrot/lib/python3.10/distutils/__pycache__/core.cpython-310.pyc ADDED
Binary file (6.86 kB). View file
 
parrot/lib/python3.10/distutils/__pycache__/cygwinccompiler.cpython-310.pyc ADDED
Binary file (8.49 kB). View file
 
parrot/lib/python3.10/distutils/__pycache__/debug.cpython-310.pyc ADDED
Binary file (451 Bytes). View file
 
parrot/lib/python3.10/distutils/__pycache__/dep_util.cpython-310.pyc ADDED
Binary file (2.97 kB). View file
 
parrot/lib/python3.10/distutils/__pycache__/dist.cpython-310.pyc ADDED
Binary file (34.2 kB). View file
 
parrot/lib/python3.10/distutils/__pycache__/fancy_getopt.cpython-310.pyc ADDED
Binary file (10.6 kB). View file
 
parrot/lib/python3.10/distutils/__pycache__/filelist.cpython-310.pyc ADDED
Binary file (10.1 kB). View file
 
parrot/lib/python3.10/distutils/__pycache__/msvccompiler.cpython-310.pyc ADDED
Binary file (15 kB). View file
 
parrot/lib/python3.10/distutils/__pycache__/spawn.cpython-310.pyc ADDED
Binary file (3.67 kB). View file
 
parrot/lib/python3.10/distutils/__pycache__/sysconfig.cpython-310.pyc ADDED
Binary file (7.06 kB). View file
 
parrot/lib/python3.10/distutils/__pycache__/text_file.cpython-310.pyc ADDED
Binary file (8.67 kB). View file
 
parrot/lib/python3.10/distutils/__pycache__/unixccompiler.cpython-310.pyc ADDED
Binary file (7.07 kB). View file
 
parrot/lib/python3.10/distutils/__pycache__/version.cpython-310.pyc ADDED
Binary file (7.56 kB). View file
 
parrot/lib/python3.10/distutils/__pycache__/versionpredicate.cpython-310.pyc ADDED
Binary file (5.39 kB). View file
 
parrot/lib/python3.10/distutils/archive_util.py ADDED
@@ -0,0 +1,256 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ """distutils.archive_util
2
+
3
+ Utility functions for creating archive files (tarballs, zip files,
4
+ that sort of thing)."""
5
+
6
+ import os
7
+ from warnings import warn
8
+ import sys
9
+
10
+ try:
11
+ import zipfile
12
+ except ImportError:
13
+ zipfile = None
14
+
15
+
16
+ from distutils.errors import DistutilsExecError
17
+ from distutils.spawn import spawn
18
+ from distutils.dir_util import mkpath
19
+ from distutils import log
20
+
21
+ try:
22
+ from pwd import getpwnam
23
+ except ImportError:
24
+ getpwnam = None
25
+
26
+ try:
27
+ from grp import getgrnam
28
+ except ImportError:
29
+ getgrnam = None
30
+
31
+ def _get_gid(name):
32
+ """Returns a gid, given a group name."""
33
+ if getgrnam is None or name is None:
34
+ return None
35
+ try:
36
+ result = getgrnam(name)
37
+ except KeyError:
38
+ result = None
39
+ if result is not None:
40
+ return result[2]
41
+ return None
42
+
43
+ def _get_uid(name):
44
+ """Returns an uid, given a user name."""
45
+ if getpwnam is None or name is None:
46
+ return None
47
+ try:
48
+ result = getpwnam(name)
49
+ except KeyError:
50
+ result = None
51
+ if result is not None:
52
+ return result[2]
53
+ return None
54
+
55
+ def make_tarball(base_name, base_dir, compress="gzip", verbose=0, dry_run=0,
56
+ owner=None, group=None):
57
+ """Create a (possibly compressed) tar file from all the files under
58
+ 'base_dir'.
59
+
60
+ 'compress' must be "gzip" (the default), "bzip2", "xz", "compress", or
61
+ None. ("compress" will be deprecated in Python 3.2)
62
+
63
+ 'owner' and 'group' can be used to define an owner and a group for the
64
+ archive that is being built. If not provided, the current owner and group
65
+ will be used.
66
+
67
+ The output tar file will be named 'base_dir' + ".tar", possibly plus
68
+ the appropriate compression extension (".gz", ".bz2", ".xz" or ".Z").
69
+
70
+ Returns the output filename.
71
+ """
72
+ tar_compression = {'gzip': 'gz', 'bzip2': 'bz2', 'xz': 'xz', None: '',
73
+ 'compress': ''}
74
+ compress_ext = {'gzip': '.gz', 'bzip2': '.bz2', 'xz': '.xz',
75
+ 'compress': '.Z'}
76
+
77
+ # flags for compression program, each element of list will be an argument
78
+ if compress is not None and compress not in compress_ext.keys():
79
+ raise ValueError(
80
+ "bad value for 'compress': must be None, 'gzip', 'bzip2', "
81
+ "'xz' or 'compress'")
82
+
83
+ archive_name = base_name + '.tar'
84
+ if compress != 'compress':
85
+ archive_name += compress_ext.get(compress, '')
86
+
87
+ mkpath(os.path.dirname(archive_name), dry_run=dry_run)
88
+
89
+ # creating the tarball
90
+ import tarfile # late import so Python build itself doesn't break
91
+
92
+ log.info('Creating tar archive')
93
+
94
+ uid = _get_uid(owner)
95
+ gid = _get_gid(group)
96
+
97
+ def _set_uid_gid(tarinfo):
98
+ if gid is not None:
99
+ tarinfo.gid = gid
100
+ tarinfo.gname = group
101
+ if uid is not None:
102
+ tarinfo.uid = uid
103
+ tarinfo.uname = owner
104
+ return tarinfo
105
+
106
+ if not dry_run:
107
+ tar = tarfile.open(archive_name, 'w|%s' % tar_compression[compress])
108
+ try:
109
+ tar.add(base_dir, filter=_set_uid_gid)
110
+ finally:
111
+ tar.close()
112
+
113
+ # compression using `compress`
114
+ if compress == 'compress':
115
+ warn("'compress' will be deprecated.", PendingDeprecationWarning)
116
+ # the option varies depending on the platform
117
+ compressed_name = archive_name + compress_ext[compress]
118
+ if sys.platform == 'win32':
119
+ cmd = [compress, archive_name, compressed_name]
120
+ else:
121
+ cmd = [compress, '-f', archive_name]
122
+ spawn(cmd, dry_run=dry_run)
123
+ return compressed_name
124
+
125
+ return archive_name
126
+
127
+ def make_zipfile(base_name, base_dir, verbose=0, dry_run=0):
128
+ """Create a zip file from all the files under 'base_dir'.
129
+
130
+ The output zip file will be named 'base_name' + ".zip". Uses either the
131
+ "zipfile" Python module (if available) or the InfoZIP "zip" utility
132
+ (if installed and found on the default search path). If neither tool is
133
+ available, raises DistutilsExecError. Returns the name of the output zip
134
+ file.
135
+ """
136
+ zip_filename = base_name + ".zip"
137
+ mkpath(os.path.dirname(zip_filename), dry_run=dry_run)
138
+
139
+ # If zipfile module is not available, try spawning an external
140
+ # 'zip' command.
141
+ if zipfile is None:
142
+ if verbose:
143
+ zipoptions = "-r"
144
+ else:
145
+ zipoptions = "-rq"
146
+
147
+ try:
148
+ spawn(["zip", zipoptions, zip_filename, base_dir],
149
+ dry_run=dry_run)
150
+ except DistutilsExecError:
151
+ # XXX really should distinguish between "couldn't find
152
+ # external 'zip' command" and "zip failed".
153
+ raise DistutilsExecError(("unable to create zip file '%s': "
154
+ "could neither import the 'zipfile' module nor "
155
+ "find a standalone zip utility") % zip_filename)
156
+
157
+ else:
158
+ log.info("creating '%s' and adding '%s' to it",
159
+ zip_filename, base_dir)
160
+
161
+ if not dry_run:
162
+ try:
163
+ zip = zipfile.ZipFile(zip_filename, "w",
164
+ compression=zipfile.ZIP_DEFLATED)
165
+ except RuntimeError:
166
+ zip = zipfile.ZipFile(zip_filename, "w",
167
+ compression=zipfile.ZIP_STORED)
168
+
169
+ with zip:
170
+ if base_dir != os.curdir:
171
+ path = os.path.normpath(os.path.join(base_dir, ''))
172
+ zip.write(path, path)
173
+ log.info("adding '%s'", path)
174
+ for dirpath, dirnames, filenames in os.walk(base_dir):
175
+ for name in dirnames:
176
+ path = os.path.normpath(os.path.join(dirpath, name, ''))
177
+ zip.write(path, path)
178
+ log.info("adding '%s'", path)
179
+ for name in filenames:
180
+ path = os.path.normpath(os.path.join(dirpath, name))
181
+ if os.path.isfile(path):
182
+ zip.write(path, path)
183
+ log.info("adding '%s'", path)
184
+
185
+ return zip_filename
186
+
187
+ ARCHIVE_FORMATS = {
188
+ 'gztar': (make_tarball, [('compress', 'gzip')], "gzip'ed tar-file"),
189
+ 'bztar': (make_tarball, [('compress', 'bzip2')], "bzip2'ed tar-file"),
190
+ 'xztar': (make_tarball, [('compress', 'xz')], "xz'ed tar-file"),
191
+ 'ztar': (make_tarball, [('compress', 'compress')], "compressed tar file"),
192
+ 'tar': (make_tarball, [('compress', None)], "uncompressed tar file"),
193
+ 'zip': (make_zipfile, [],"ZIP file")
194
+ }
195
+
196
+ def check_archive_formats(formats):
197
+ """Returns the first format from the 'format' list that is unknown.
198
+
199
+ If all formats are known, returns None
200
+ """
201
+ for format in formats:
202
+ if format not in ARCHIVE_FORMATS:
203
+ return format
204
+ return None
205
+
206
+ def make_archive(base_name, format, root_dir=None, base_dir=None, verbose=0,
207
+ dry_run=0, owner=None, group=None):
208
+ """Create an archive file (eg. zip or tar).
209
+
210
+ 'base_name' is the name of the file to create, minus any format-specific
211
+ extension; 'format' is the archive format: one of "zip", "tar", "gztar",
212
+ "bztar", "xztar", or "ztar".
213
+
214
+ 'root_dir' is a directory that will be the root directory of the
215
+ archive; ie. we typically chdir into 'root_dir' before creating the
216
+ archive. 'base_dir' is the directory where we start archiving from;
217
+ ie. 'base_dir' will be the common prefix of all files and
218
+ directories in the archive. 'root_dir' and 'base_dir' both default
219
+ to the current directory. Returns the name of the archive file.
220
+
221
+ 'owner' and 'group' are used when creating a tar archive. By default,
222
+ uses the current owner and group.
223
+ """
224
+ save_cwd = os.getcwd()
225
+ if root_dir is not None:
226
+ log.debug("changing into '%s'", root_dir)
227
+ base_name = os.path.abspath(base_name)
228
+ if not dry_run:
229
+ os.chdir(root_dir)
230
+
231
+ if base_dir is None:
232
+ base_dir = os.curdir
233
+
234
+ kwargs = {'dry_run': dry_run}
235
+
236
+ try:
237
+ format_info = ARCHIVE_FORMATS[format]
238
+ except KeyError:
239
+ raise ValueError("unknown archive format '%s'" % format)
240
+
241
+ func = format_info[0]
242
+ for arg, val in format_info[1]:
243
+ kwargs[arg] = val
244
+
245
+ if format != 'zip':
246
+ kwargs['owner'] = owner
247
+ kwargs['group'] = group
248
+
249
+ try:
250
+ filename = func(base_name, base_dir, **kwargs)
251
+ finally:
252
+ if root_dir is not None:
253
+ log.debug("changing back to '%s'", save_cwd)
254
+ os.chdir(save_cwd)
255
+
256
+ return filename
parrot/lib/python3.10/distutils/command/__init__.py ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ """distutils.command
2
+
3
+ Package containing implementation of all the standard Distutils
4
+ commands."""
5
+
6
+ __all__ = ['build',
7
+ 'build_py',
8
+ 'build_ext',
9
+ 'build_clib',
10
+ 'build_scripts',
11
+ 'clean',
12
+ 'install',
13
+ 'install_lib',
14
+ 'install_headers',
15
+ 'install_scripts',
16
+ 'install_data',
17
+ 'sdist',
18
+ 'register',
19
+ 'bdist',
20
+ 'bdist_dumb',
21
+ 'bdist_rpm',
22
+ 'check',
23
+ 'upload',
24
+ # These two are reserved for future use:
25
+ #'bdist_sdux',
26
+ #'bdist_pkgtool',
27
+ # Note:
28
+ # bdist_packager is not included because it only provides
29
+ # an abstract base class
30
+ ]
parrot/lib/python3.10/distutils/command/__pycache__/bdist.cpython-310.pyc ADDED
Binary file (3.8 kB). View file
 
parrot/lib/python3.10/distutils/command/__pycache__/install_lib.cpython-310.pyc ADDED
Binary file (5.11 kB). View file
 
parrot/lib/python3.10/distutils/command/__pycache__/register.cpython-310.pyc ADDED
Binary file (8.88 kB). View file
 
parrot/lib/python3.10/distutils/command/__pycache__/sdist.cpython-310.pyc ADDED
Binary file (14.7 kB). View file
 
parrot/lib/python3.10/distutils/command/bdist.py ADDED
@@ -0,0 +1,141 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ """distutils.command.bdist
2
+
3
+ Implements the Distutils 'bdist' command (create a built [binary]
4
+ distribution)."""
5
+
6
+ import os
7
+ from distutils.core import Command
8
+ from distutils.errors import *
9
+ from distutils.util import get_platform
10
+
11
+
12
+ def show_formats():
13
+ """Print list of available formats (arguments to "--format" option).
14
+ """
15
+ from distutils.fancy_getopt import FancyGetopt
16
+ formats = []
17
+ for format in bdist.format_commands:
18
+ formats.append(("formats=" + format, None,
19
+ bdist.format_command[format][1]))
20
+ pretty_printer = FancyGetopt(formats)
21
+ pretty_printer.print_help("List of available distribution formats:")
22
+
23
+
24
+ class bdist(Command):
25
+
26
+ description = "create a built (binary) distribution"
27
+
28
+ user_options = [('bdist-base=', 'b',
29
+ "temporary directory for creating built distributions"),
30
+ ('plat-name=', 'p',
31
+ "platform name to embed in generated filenames "
32
+ "(default: %s)" % get_platform()),
33
+ ('formats=', None,
34
+ "formats for distribution (comma-separated list)"),
35
+ ('dist-dir=', 'd',
36
+ "directory to put final built distributions in "
37
+ "[default: dist]"),
38
+ ('skip-build', None,
39
+ "skip rebuilding everything (for testing/debugging)"),
40
+ ('owner=', 'u',
41
+ "Owner name used when creating a tar file"
42
+ " [default: current user]"),
43
+ ('group=', 'g',
44
+ "Group name used when creating a tar file"
45
+ " [default: current group]"),
46
+ ]
47
+
48
+ boolean_options = ['skip-build']
49
+
50
+ help_options = [
51
+ ('help-formats', None,
52
+ "lists available distribution formats", show_formats),
53
+ ]
54
+
55
+ # The following commands do not take a format option from bdist
56
+ no_format_option = ('bdist_rpm',)
57
+
58
+ # This won't do in reality: will need to distinguish RPM-ish Linux,
59
+ # Debian-ish Linux, Solaris, FreeBSD, ..., Windows, Mac OS.
60
+ default_format = {'posix': 'gztar',
61
+ 'nt': 'zip'}
62
+
63
+ # Establish the preferred order (for the --help-formats option).
64
+ format_commands = ['rpm', 'gztar', 'bztar', 'xztar', 'ztar', 'tar',
65
+ 'zip', 'msi']
66
+
67
+ # And the real information.
68
+ format_command = {'rpm': ('bdist_rpm', "RPM distribution"),
69
+ 'gztar': ('bdist_dumb', "gzip'ed tar file"),
70
+ 'bztar': ('bdist_dumb', "bzip2'ed tar file"),
71
+ 'xztar': ('bdist_dumb', "xz'ed tar file"),
72
+ 'ztar': ('bdist_dumb', "compressed tar file"),
73
+ 'tar': ('bdist_dumb', "tar file"),
74
+ 'zip': ('bdist_dumb', "ZIP file"),
75
+ 'msi': ('bdist_msi', "Microsoft Installer")
76
+ }
77
+
78
+
79
+ def initialize_options(self):
80
+ self.bdist_base = None
81
+ self.plat_name = None
82
+ self.formats = None
83
+ self.dist_dir = None
84
+ self.skip_build = 0
85
+ self.group = None
86
+ self.owner = None
87
+
88
+ def finalize_options(self):
89
+ # have to finalize 'plat_name' before 'bdist_base'
90
+ if self.plat_name is None:
91
+ if self.skip_build:
92
+ self.plat_name = get_platform()
93
+ else:
94
+ self.plat_name = self.get_finalized_command('build').plat_name
95
+
96
+ # 'bdist_base' -- parent of per-built-distribution-format
97
+ # temporary directories (eg. we'll probably have
98
+ # "build/bdist.<plat>/dumb", "build/bdist.<plat>/rpm", etc.)
99
+ if self.bdist_base is None:
100
+ build_base = self.get_finalized_command('build').build_base
101
+ self.bdist_base = os.path.join(build_base,
102
+ 'bdist.' + self.plat_name)
103
+
104
+ self.ensure_string_list('formats')
105
+ if self.formats is None:
106
+ try:
107
+ self.formats = [self.default_format[os.name]]
108
+ except KeyError:
109
+ raise DistutilsPlatformError(
110
+ "don't know how to create built distributions "
111
+ "on platform %s" % os.name)
112
+
113
+ if self.dist_dir is None:
114
+ self.dist_dir = "dist"
115
+
116
+ def run(self):
117
+ # Figure out which sub-commands we need to run.
118
+ commands = []
119
+ for format in self.formats:
120
+ try:
121
+ commands.append(self.format_command[format][0])
122
+ except KeyError:
123
+ raise DistutilsOptionError("invalid format '%s'" % format)
124
+
125
+ # Reinitialize and run each command.
126
+ for i in range(len(self.formats)):
127
+ cmd_name = commands[i]
128
+ sub_cmd = self.reinitialize_command(cmd_name)
129
+ if cmd_name not in self.no_format_option:
130
+ sub_cmd.format = self.formats[i]
131
+
132
+ # passing the owner and group names for tar archiving
133
+ if cmd_name == 'bdist_dumb':
134
+ sub_cmd.owner = self.owner
135
+ sub_cmd.group = self.group
136
+
137
+ # If we're going to need to run this command again, tell it to
138
+ # keep its temporary files around so subsequent runs go faster.
139
+ if cmd_name in commands[i+1:]:
140
+ sub_cmd.keep_temp = 1
141
+ self.run_command(cmd_name)
parrot/lib/python3.10/distutils/command/bdist_dumb.py ADDED
@@ -0,0 +1,123 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ """distutils.command.bdist_dumb
2
+
3
+ Implements the Distutils 'bdist_dumb' command (create a "dumb" built
4
+ distribution -- i.e., just an archive to be unpacked under $prefix or
5
+ $exec_prefix)."""
6
+
7
+ import os
8
+ from distutils.core import Command
9
+ from distutils.util import get_platform
10
+ from distutils.dir_util import remove_tree, ensure_relative
11
+ from distutils.errors import *
12
+ from distutils.sysconfig import get_python_version
13
+ from distutils import log
14
+
15
+ class bdist_dumb(Command):
16
+
17
+ description = "create a \"dumb\" built distribution"
18
+
19
+ user_options = [('bdist-dir=', 'd',
20
+ "temporary directory for creating the distribution"),
21
+ ('plat-name=', 'p',
22
+ "platform name to embed in generated filenames "
23
+ "(default: %s)" % get_platform()),
24
+ ('format=', 'f',
25
+ "archive format to create (tar, gztar, bztar, xztar, "
26
+ "ztar, zip)"),
27
+ ('keep-temp', 'k',
28
+ "keep the pseudo-installation tree around after " +
29
+ "creating the distribution archive"),
30
+ ('dist-dir=', 'd',
31
+ "directory to put final built distributions in"),
32
+ ('skip-build', None,
33
+ "skip rebuilding everything (for testing/debugging)"),
34
+ ('relative', None,
35
+ "build the archive using relative paths "
36
+ "(default: false)"),
37
+ ('owner=', 'u',
38
+ "Owner name used when creating a tar file"
39
+ " [default: current user]"),
40
+ ('group=', 'g',
41
+ "Group name used when creating a tar file"
42
+ " [default: current group]"),
43
+ ]
44
+
45
+ boolean_options = ['keep-temp', 'skip-build', 'relative']
46
+
47
+ default_format = { 'posix': 'gztar',
48
+ 'nt': 'zip' }
49
+
50
+ def initialize_options(self):
51
+ self.bdist_dir = None
52
+ self.plat_name = None
53
+ self.format = None
54
+ self.keep_temp = 0
55
+ self.dist_dir = None
56
+ self.skip_build = None
57
+ self.relative = 0
58
+ self.owner = None
59
+ self.group = None
60
+
61
+ def finalize_options(self):
62
+ if self.bdist_dir is None:
63
+ bdist_base = self.get_finalized_command('bdist').bdist_base
64
+ self.bdist_dir = os.path.join(bdist_base, 'dumb')
65
+
66
+ if self.format is None:
67
+ try:
68
+ self.format = self.default_format[os.name]
69
+ except KeyError:
70
+ raise DistutilsPlatformError(
71
+ "don't know how to create dumb built distributions "
72
+ "on platform %s" % os.name)
73
+
74
+ self.set_undefined_options('bdist',
75
+ ('dist_dir', 'dist_dir'),
76
+ ('plat_name', 'plat_name'),
77
+ ('skip_build', 'skip_build'))
78
+
79
+ def run(self):
80
+ if not self.skip_build:
81
+ self.run_command('build')
82
+
83
+ install = self.reinitialize_command('install', reinit_subcommands=1)
84
+ install.root = self.bdist_dir
85
+ install.skip_build = self.skip_build
86
+ install.warn_dir = 0
87
+
88
+ log.info("installing to %s", self.bdist_dir)
89
+ self.run_command('install')
90
+
91
+ # And make an archive relative to the root of the
92
+ # pseudo-installation tree.
93
+ archive_basename = "%s.%s" % (self.distribution.get_fullname(),
94
+ self.plat_name)
95
+
96
+ pseudoinstall_root = os.path.join(self.dist_dir, archive_basename)
97
+ if not self.relative:
98
+ archive_root = self.bdist_dir
99
+ else:
100
+ if (self.distribution.has_ext_modules() and
101
+ (install.install_base != install.install_platbase)):
102
+ raise DistutilsPlatformError(
103
+ "can't make a dumb built distribution where "
104
+ "base and platbase are different (%s, %s)"
105
+ % (repr(install.install_base),
106
+ repr(install.install_platbase)))
107
+ else:
108
+ archive_root = os.path.join(self.bdist_dir,
109
+ ensure_relative(install.install_base))
110
+
111
+ # Make the archive
112
+ filename = self.make_archive(pseudoinstall_root,
113
+ self.format, root_dir=archive_root,
114
+ owner=self.owner, group=self.group)
115
+ if self.distribution.has_ext_modules():
116
+ pyversion = get_python_version()
117
+ else:
118
+ pyversion = 'any'
119
+ self.distribution.dist_files.append(('bdist_dumb', pyversion,
120
+ filename))
121
+
122
+ if not self.keep_temp:
123
+ remove_tree(self.bdist_dir, dry_run=self.dry_run)
parrot/lib/python3.10/distutils/command/bdist_rpm.py ADDED
@@ -0,0 +1,579 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ """distutils.command.bdist_rpm
2
+
3
+ Implements the Distutils 'bdist_rpm' command (create RPM source and binary
4
+ distributions)."""
5
+
6
+ import subprocess, sys, os
7
+ from distutils.core import Command
8
+ from distutils.debug import DEBUG
9
+ from distutils.file_util import write_file
10
+ from distutils.errors import *
11
+ from distutils.sysconfig import get_python_version
12
+ from distutils import log
13
+
14
+ class bdist_rpm(Command):
15
+
16
+ description = "create an RPM distribution"
17
+
18
+ user_options = [
19
+ ('bdist-base=', None,
20
+ "base directory for creating built distributions"),
21
+ ('rpm-base=', None,
22
+ "base directory for creating RPMs (defaults to \"rpm\" under "
23
+ "--bdist-base; must be specified for RPM 2)"),
24
+ ('dist-dir=', 'd',
25
+ "directory to put final RPM files in "
26
+ "(and .spec files if --spec-only)"),
27
+ ('python=', None,
28
+ "path to Python interpreter to hard-code in the .spec file "
29
+ "(default: \"python\")"),
30
+ ('fix-python', None,
31
+ "hard-code the exact path to the current Python interpreter in "
32
+ "the .spec file"),
33
+ ('spec-only', None,
34
+ "only regenerate spec file"),
35
+ ('source-only', None,
36
+ "only generate source RPM"),
37
+ ('binary-only', None,
38
+ "only generate binary RPM"),
39
+ ('use-bzip2', None,
40
+ "use bzip2 instead of gzip to create source distribution"),
41
+
42
+ # More meta-data: too RPM-specific to put in the setup script,
43
+ # but needs to go in the .spec file -- so we make these options
44
+ # to "bdist_rpm". The idea is that packagers would put this
45
+ # info in setup.cfg, although they are of course free to
46
+ # supply it on the command line.
47
+ ('distribution-name=', None,
48
+ "name of the (Linux) distribution to which this "
49
+ "RPM applies (*not* the name of the module distribution!)"),
50
+ ('group=', None,
51
+ "package classification [default: \"Development/Libraries\"]"),
52
+ ('release=', None,
53
+ "RPM release number"),
54
+ ('serial=', None,
55
+ "RPM serial number"),
56
+ ('vendor=', None,
57
+ "RPM \"vendor\" (eg. \"Joe Blow <joe@example.com>\") "
58
+ "[default: maintainer or author from setup script]"),
59
+ ('packager=', None,
60
+ "RPM packager (eg. \"Jane Doe <jane@example.net>\") "
61
+ "[default: vendor]"),
62
+ ('doc-files=', None,
63
+ "list of documentation files (space or comma-separated)"),
64
+ ('changelog=', None,
65
+ "RPM changelog"),
66
+ ('icon=', None,
67
+ "name of icon file"),
68
+ ('provides=', None,
69
+ "capabilities provided by this package"),
70
+ ('requires=', None,
71
+ "capabilities required by this package"),
72
+ ('conflicts=', None,
73
+ "capabilities which conflict with this package"),
74
+ ('build-requires=', None,
75
+ "capabilities required to build this package"),
76
+ ('obsoletes=', None,
77
+ "capabilities made obsolete by this package"),
78
+ ('no-autoreq', None,
79
+ "do not automatically calculate dependencies"),
80
+
81
+ # Actions to take when building RPM
82
+ ('keep-temp', 'k',
83
+ "don't clean up RPM build directory"),
84
+ ('no-keep-temp', None,
85
+ "clean up RPM build directory [default]"),
86
+ ('use-rpm-opt-flags', None,
87
+ "compile with RPM_OPT_FLAGS when building from source RPM"),
88
+ ('no-rpm-opt-flags', None,
89
+ "do not pass any RPM CFLAGS to compiler"),
90
+ ('rpm3-mode', None,
91
+ "RPM 3 compatibility mode (default)"),
92
+ ('rpm2-mode', None,
93
+ "RPM 2 compatibility mode"),
94
+
95
+ # Add the hooks necessary for specifying custom scripts
96
+ ('prep-script=', None,
97
+ "Specify a script for the PREP phase of RPM building"),
98
+ ('build-script=', None,
99
+ "Specify a script for the BUILD phase of RPM building"),
100
+
101
+ ('pre-install=', None,
102
+ "Specify a script for the pre-INSTALL phase of RPM building"),
103
+ ('install-script=', None,
104
+ "Specify a script for the INSTALL phase of RPM building"),
105
+ ('post-install=', None,
106
+ "Specify a script for the post-INSTALL phase of RPM building"),
107
+
108
+ ('pre-uninstall=', None,
109
+ "Specify a script for the pre-UNINSTALL phase of RPM building"),
110
+ ('post-uninstall=', None,
111
+ "Specify a script for the post-UNINSTALL phase of RPM building"),
112
+
113
+ ('clean-script=', None,
114
+ "Specify a script for the CLEAN phase of RPM building"),
115
+
116
+ ('verify-script=', None,
117
+ "Specify a script for the VERIFY phase of the RPM build"),
118
+
119
+ # Allow a packager to explicitly force an architecture
120
+ ('force-arch=', None,
121
+ "Force an architecture onto the RPM build process"),
122
+
123
+ ('quiet', 'q',
124
+ "Run the INSTALL phase of RPM building in quiet mode"),
125
+ ]
126
+
127
+ boolean_options = ['keep-temp', 'use-rpm-opt-flags', 'rpm3-mode',
128
+ 'no-autoreq', 'quiet']
129
+
130
+ negative_opt = {'no-keep-temp': 'keep-temp',
131
+ 'no-rpm-opt-flags': 'use-rpm-opt-flags',
132
+ 'rpm2-mode': 'rpm3-mode'}
133
+
134
+
135
+ def initialize_options(self):
136
+ self.bdist_base = None
137
+ self.rpm_base = None
138
+ self.dist_dir = None
139
+ self.python = None
140
+ self.fix_python = None
141
+ self.spec_only = None
142
+ self.binary_only = None
143
+ self.source_only = None
144
+ self.use_bzip2 = None
145
+
146
+ self.distribution_name = None
147
+ self.group = None
148
+ self.release = None
149
+ self.serial = None
150
+ self.vendor = None
151
+ self.packager = None
152
+ self.doc_files = None
153
+ self.changelog = None
154
+ self.icon = None
155
+
156
+ self.prep_script = None
157
+ self.build_script = None
158
+ self.install_script = None
159
+ self.clean_script = None
160
+ self.verify_script = None
161
+ self.pre_install = None
162
+ self.post_install = None
163
+ self.pre_uninstall = None
164
+ self.post_uninstall = None
165
+ self.prep = None
166
+ self.provides = None
167
+ self.requires = None
168
+ self.conflicts = None
169
+ self.build_requires = None
170
+ self.obsoletes = None
171
+
172
+ self.keep_temp = 0
173
+ self.use_rpm_opt_flags = 1
174
+ self.rpm3_mode = 1
175
+ self.no_autoreq = 0
176
+
177
+ self.force_arch = None
178
+ self.quiet = 0
179
+
180
+ def finalize_options(self):
181
+ self.set_undefined_options('bdist', ('bdist_base', 'bdist_base'))
182
+ if self.rpm_base is None:
183
+ if not self.rpm3_mode:
184
+ raise DistutilsOptionError(
185
+ "you must specify --rpm-base in RPM 2 mode")
186
+ self.rpm_base = os.path.join(self.bdist_base, "rpm")
187
+
188
+ if self.python is None:
189
+ if self.fix_python:
190
+ self.python = sys.executable
191
+ else:
192
+ self.python = "python3"
193
+ elif self.fix_python:
194
+ raise DistutilsOptionError(
195
+ "--python and --fix-python are mutually exclusive options")
196
+
197
+ if os.name != 'posix':
198
+ raise DistutilsPlatformError("don't know how to create RPM "
199
+ "distributions on platform %s" % os.name)
200
+ if self.binary_only and self.source_only:
201
+ raise DistutilsOptionError(
202
+ "cannot supply both '--source-only' and '--binary-only'")
203
+
204
+ # don't pass CFLAGS to pure python distributions
205
+ if not self.distribution.has_ext_modules():
206
+ self.use_rpm_opt_flags = 0
207
+
208
+ self.set_undefined_options('bdist', ('dist_dir', 'dist_dir'))
209
+ self.finalize_package_data()
210
+
211
+ def finalize_package_data(self):
212
+ self.ensure_string('group', "Development/Libraries")
213
+ self.ensure_string('vendor',
214
+ "%s <%s>" % (self.distribution.get_contact(),
215
+ self.distribution.get_contact_email()))
216
+ self.ensure_string('packager')
217
+ self.ensure_string_list('doc_files')
218
+ if isinstance(self.doc_files, list):
219
+ for readme in ('README', 'README.txt'):
220
+ if os.path.exists(readme) and readme not in self.doc_files:
221
+ self.doc_files.append(readme)
222
+
223
+ self.ensure_string('release', "1")
224
+ self.ensure_string('serial') # should it be an int?
225
+
226
+ self.ensure_string('distribution_name')
227
+
228
+ self.ensure_string('changelog')
229
+ # Format changelog correctly
230
+ self.changelog = self._format_changelog(self.changelog)
231
+
232
+ self.ensure_filename('icon')
233
+
234
+ self.ensure_filename('prep_script')
235
+ self.ensure_filename('build_script')
236
+ self.ensure_filename('install_script')
237
+ self.ensure_filename('clean_script')
238
+ self.ensure_filename('verify_script')
239
+ self.ensure_filename('pre_install')
240
+ self.ensure_filename('post_install')
241
+ self.ensure_filename('pre_uninstall')
242
+ self.ensure_filename('post_uninstall')
243
+
244
+ # XXX don't forget we punted on summaries and descriptions -- they
245
+ # should be handled here eventually!
246
+
247
+ # Now *this* is some meta-data that belongs in the setup script...
248
+ self.ensure_string_list('provides')
249
+ self.ensure_string_list('requires')
250
+ self.ensure_string_list('conflicts')
251
+ self.ensure_string_list('build_requires')
252
+ self.ensure_string_list('obsoletes')
253
+
254
+ self.ensure_string('force_arch')
255
+
256
+ def run(self):
257
+ if DEBUG:
258
+ print("before _get_package_data():")
259
+ print("vendor =", self.vendor)
260
+ print("packager =", self.packager)
261
+ print("doc_files =", self.doc_files)
262
+ print("changelog =", self.changelog)
263
+
264
+ # make directories
265
+ if self.spec_only:
266
+ spec_dir = self.dist_dir
267
+ self.mkpath(spec_dir)
268
+ else:
269
+ rpm_dir = {}
270
+ for d in ('SOURCES', 'SPECS', 'BUILD', 'RPMS', 'SRPMS'):
271
+ rpm_dir[d] = os.path.join(self.rpm_base, d)
272
+ self.mkpath(rpm_dir[d])
273
+ spec_dir = rpm_dir['SPECS']
274
+
275
+ # Spec file goes into 'dist_dir' if '--spec-only specified',
276
+ # build/rpm.<plat> otherwise.
277
+ spec_path = os.path.join(spec_dir,
278
+ "%s.spec" % self.distribution.get_name())
279
+ self.execute(write_file,
280
+ (spec_path,
281
+ self._make_spec_file()),
282
+ "writing '%s'" % spec_path)
283
+
284
+ if self.spec_only: # stop if requested
285
+ return
286
+
287
+ # Make a source distribution and copy to SOURCES directory with
288
+ # optional icon.
289
+ saved_dist_files = self.distribution.dist_files[:]
290
+ sdist = self.reinitialize_command('sdist')
291
+ if self.use_bzip2:
292
+ sdist.formats = ['bztar']
293
+ else:
294
+ sdist.formats = ['gztar']
295
+ self.run_command('sdist')
296
+ self.distribution.dist_files = saved_dist_files
297
+
298
+ source = sdist.get_archive_files()[0]
299
+ source_dir = rpm_dir['SOURCES']
300
+ self.copy_file(source, source_dir)
301
+
302
+ if self.icon:
303
+ if os.path.exists(self.icon):
304
+ self.copy_file(self.icon, source_dir)
305
+ else:
306
+ raise DistutilsFileError(
307
+ "icon file '%s' does not exist" % self.icon)
308
+
309
+ # build package
310
+ log.info("building RPMs")
311
+ rpm_cmd = ['rpmbuild']
312
+
313
+ if self.source_only: # what kind of RPMs?
314
+ rpm_cmd.append('-bs')
315
+ elif self.binary_only:
316
+ rpm_cmd.append('-bb')
317
+ else:
318
+ rpm_cmd.append('-ba')
319
+ rpm_cmd.extend(['--define', '__python %s' % self.python])
320
+ if self.rpm3_mode:
321
+ rpm_cmd.extend(['--define',
322
+ '_topdir %s' % os.path.abspath(self.rpm_base)])
323
+ if not self.keep_temp:
324
+ rpm_cmd.append('--clean')
325
+
326
+ if self.quiet:
327
+ rpm_cmd.append('--quiet')
328
+
329
+ rpm_cmd.append(spec_path)
330
+ # Determine the binary rpm names that should be built out of this spec
331
+ # file
332
+ # Note that some of these may not be really built (if the file
333
+ # list is empty)
334
+ nvr_string = "%{name}-%{version}-%{release}"
335
+ src_rpm = nvr_string + ".src.rpm"
336
+ non_src_rpm = "%{arch}/" + nvr_string + ".%{arch}.rpm"
337
+ q_cmd = r"rpm -q --qf '%s %s\n' --specfile '%s'" % (
338
+ src_rpm, non_src_rpm, spec_path)
339
+
340
+ out = os.popen(q_cmd)
341
+ try:
342
+ binary_rpms = []
343
+ source_rpm = None
344
+ while True:
345
+ line = out.readline()
346
+ if not line:
347
+ break
348
+ l = line.strip().split()
349
+ assert(len(l) == 2)
350
+ binary_rpms.append(l[1])
351
+ # The source rpm is named after the first entry in the spec file
352
+ if source_rpm is None:
353
+ source_rpm = l[0]
354
+
355
+ status = out.close()
356
+ if status:
357
+ raise DistutilsExecError("Failed to execute: %s" % repr(q_cmd))
358
+
359
+ finally:
360
+ out.close()
361
+
362
+ self.spawn(rpm_cmd)
363
+
364
+ if not self.dry_run:
365
+ if self.distribution.has_ext_modules():
366
+ pyversion = get_python_version()
367
+ else:
368
+ pyversion = 'any'
369
+
370
+ if not self.binary_only:
371
+ srpm = os.path.join(rpm_dir['SRPMS'], source_rpm)
372
+ assert(os.path.exists(srpm))
373
+ self.move_file(srpm, self.dist_dir)
374
+ filename = os.path.join(self.dist_dir, source_rpm)
375
+ self.distribution.dist_files.append(
376
+ ('bdist_rpm', pyversion, filename))
377
+
378
+ if not self.source_only:
379
+ for rpm in binary_rpms:
380
+ rpm = os.path.join(rpm_dir['RPMS'], rpm)
381
+ if os.path.exists(rpm):
382
+ self.move_file(rpm, self.dist_dir)
383
+ filename = os.path.join(self.dist_dir,
384
+ os.path.basename(rpm))
385
+ self.distribution.dist_files.append(
386
+ ('bdist_rpm', pyversion, filename))
387
+
388
+ def _dist_path(self, path):
389
+ return os.path.join(self.dist_dir, os.path.basename(path))
390
+
391
+ def _make_spec_file(self):
392
+ """Generate the text of an RPM spec file and return it as a
393
+ list of strings (one per line).
394
+ """
395
+ # definitions and headers
396
+ spec_file = [
397
+ '%define name ' + self.distribution.get_name(),
398
+ '%define version ' + self.distribution.get_version().replace('-','_'),
399
+ '%define unmangled_version ' + self.distribution.get_version(),
400
+ '%define release ' + self.release.replace('-','_'),
401
+ '',
402
+ 'Summary: ' + self.distribution.get_description(),
403
+ ]
404
+
405
+ # Workaround for #14443 which affects some RPM based systems such as
406
+ # RHEL6 (and probably derivatives)
407
+ vendor_hook = subprocess.getoutput('rpm --eval %{__os_install_post}')
408
+ # Generate a potential replacement value for __os_install_post (whilst
409
+ # normalizing the whitespace to simplify the test for whether the
410
+ # invocation of brp-python-bytecompile passes in __python):
411
+ vendor_hook = '\n'.join([' %s \\' % line.strip()
412
+ for line in vendor_hook.splitlines()])
413
+ problem = "brp-python-bytecompile \\\n"
414
+ fixed = "brp-python-bytecompile %{__python} \\\n"
415
+ fixed_hook = vendor_hook.replace(problem, fixed)
416
+ if fixed_hook != vendor_hook:
417
+ spec_file.append('# Workaround for http://bugs.python.org/issue14443')
418
+ spec_file.append('%define __os_install_post ' + fixed_hook + '\n')
419
+
420
+ # put locale summaries into spec file
421
+ # XXX not supported for now (hard to put a dictionary
422
+ # in a config file -- arg!)
423
+ #for locale in self.summaries.keys():
424
+ # spec_file.append('Summary(%s): %s' % (locale,
425
+ # self.summaries[locale]))
426
+
427
+ spec_file.extend([
428
+ 'Name: %{name}',
429
+ 'Version: %{version}',
430
+ 'Release: %{release}',])
431
+
432
+ # XXX yuck! this filename is available from the "sdist" command,
433
+ # but only after it has run: and we create the spec file before
434
+ # running "sdist", in case of --spec-only.
435
+ if self.use_bzip2:
436
+ spec_file.append('Source0: %{name}-%{unmangled_version}.tar.bz2')
437
+ else:
438
+ spec_file.append('Source0: %{name}-%{unmangled_version}.tar.gz')
439
+
440
+ spec_file.extend([
441
+ 'License: ' + self.distribution.get_license(),
442
+ 'Group: ' + self.group,
443
+ 'BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-buildroot',
444
+ 'Prefix: %{_prefix}', ])
445
+
446
+ if not self.force_arch:
447
+ # noarch if no extension modules
448
+ if not self.distribution.has_ext_modules():
449
+ spec_file.append('BuildArch: noarch')
450
+ else:
451
+ spec_file.append( 'BuildArch: %s' % self.force_arch )
452
+
453
+ for field in ('Vendor',
454
+ 'Packager',
455
+ 'Provides',
456
+ 'Requires',
457
+ 'Conflicts',
458
+ 'Obsoletes',
459
+ ):
460
+ val = getattr(self, field.lower())
461
+ if isinstance(val, list):
462
+ spec_file.append('%s: %s' % (field, ' '.join(val)))
463
+ elif val is not None:
464
+ spec_file.append('%s: %s' % (field, val))
465
+
466
+
467
+ if self.distribution.get_url() != 'UNKNOWN':
468
+ spec_file.append('Url: ' + self.distribution.get_url())
469
+
470
+ if self.distribution_name:
471
+ spec_file.append('Distribution: ' + self.distribution_name)
472
+
473
+ if self.build_requires:
474
+ spec_file.append('BuildRequires: ' +
475
+ ' '.join(self.build_requires))
476
+
477
+ if self.icon:
478
+ spec_file.append('Icon: ' + os.path.basename(self.icon))
479
+
480
+ if self.no_autoreq:
481
+ spec_file.append('AutoReq: 0')
482
+
483
+ spec_file.extend([
484
+ '',
485
+ '%description',
486
+ self.distribution.get_long_description()
487
+ ])
488
+
489
+ # put locale descriptions into spec file
490
+ # XXX again, suppressed because config file syntax doesn't
491
+ # easily support this ;-(
492
+ #for locale in self.descriptions.keys():
493
+ # spec_file.extend([
494
+ # '',
495
+ # '%description -l ' + locale,
496
+ # self.descriptions[locale],
497
+ # ])
498
+
499
+ # rpm scripts
500
+ # figure out default build script
501
+ def_setup_call = "%s %s" % (self.python,os.path.basename(sys.argv[0]))
502
+ def_build = "%s build" % def_setup_call
503
+ if self.use_rpm_opt_flags:
504
+ def_build = 'env CFLAGS="$RPM_OPT_FLAGS" ' + def_build
505
+
506
+ # insert contents of files
507
+
508
+ # XXX this is kind of misleading: user-supplied options are files
509
+ # that we open and interpolate into the spec file, but the defaults
510
+ # are just text that we drop in as-is. Hmmm.
511
+
512
+ install_cmd = ('%s install -O1 --root=$RPM_BUILD_ROOT '
513
+ '--record=INSTALLED_FILES') % def_setup_call
514
+
515
+ script_options = [
516
+ ('prep', 'prep_script', "%setup -n %{name}-%{unmangled_version}"),
517
+ ('build', 'build_script', def_build),
518
+ ('install', 'install_script', install_cmd),
519
+ ('clean', 'clean_script', "rm -rf $RPM_BUILD_ROOT"),
520
+ ('verifyscript', 'verify_script', None),
521
+ ('pre', 'pre_install', None),
522
+ ('post', 'post_install', None),
523
+ ('preun', 'pre_uninstall', None),
524
+ ('postun', 'post_uninstall', None),
525
+ ]
526
+
527
+ for (rpm_opt, attr, default) in script_options:
528
+ # Insert contents of file referred to, if no file is referred to
529
+ # use 'default' as contents of script
530
+ val = getattr(self, attr)
531
+ if val or default:
532
+ spec_file.extend([
533
+ '',
534
+ '%' + rpm_opt,])
535
+ if val:
536
+ with open(val) as f:
537
+ spec_file.extend(f.read().split('\n'))
538
+ else:
539
+ spec_file.append(default)
540
+
541
+
542
+ # files section
543
+ spec_file.extend([
544
+ '',
545
+ '%files -f INSTALLED_FILES',
546
+ '%defattr(-,root,root)',
547
+ ])
548
+
549
+ if self.doc_files:
550
+ spec_file.append('%doc ' + ' '.join(self.doc_files))
551
+
552
+ if self.changelog:
553
+ spec_file.extend([
554
+ '',
555
+ '%changelog',])
556
+ spec_file.extend(self.changelog)
557
+
558
+ return spec_file
559
+
560
+ def _format_changelog(self, changelog):
561
+ """Format the changelog correctly and convert it to a list of strings
562
+ """
563
+ if not changelog:
564
+ return changelog
565
+ new_changelog = []
566
+ for line in changelog.strip().split('\n'):
567
+ line = line.strip()
568
+ if line[0] == '*':
569
+ new_changelog.extend(['', line])
570
+ elif line[0] == '-':
571
+ new_changelog.append(line)
572
+ else:
573
+ new_changelog.append(' ' + line)
574
+
575
+ # strip trailing newline inserted by first changelog entry
576
+ if not new_changelog[0]:
577
+ del new_changelog[0]
578
+
579
+ return new_changelog
parrot/lib/python3.10/distutils/command/build.py ADDED
@@ -0,0 +1,157 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ """distutils.command.build
2
+
3
+ Implements the Distutils 'build' command."""
4
+
5
+ import sys, os
6
+ from distutils.core import Command
7
+ from distutils.errors import DistutilsOptionError
8
+ from distutils.util import get_platform
9
+
10
+
11
+ def show_compilers():
12
+ from distutils.ccompiler import show_compilers
13
+ show_compilers()
14
+
15
+
16
+ class build(Command):
17
+
18
+ description = "build everything needed to install"
19
+
20
+ user_options = [
21
+ ('build-base=', 'b',
22
+ "base directory for build library"),
23
+ ('build-purelib=', None,
24
+ "build directory for platform-neutral distributions"),
25
+ ('build-platlib=', None,
26
+ "build directory for platform-specific distributions"),
27
+ ('build-lib=', None,
28
+ "build directory for all distribution (defaults to either " +
29
+ "build-purelib or build-platlib"),
30
+ ('build-scripts=', None,
31
+ "build directory for scripts"),
32
+ ('build-temp=', 't',
33
+ "temporary build directory"),
34
+ ('plat-name=', 'p',
35
+ "platform name to build for, if supported "
36
+ "(default: %s)" % get_platform()),
37
+ ('compiler=', 'c',
38
+ "specify the compiler type"),
39
+ ('parallel=', 'j',
40
+ "number of parallel build jobs"),
41
+ ('debug', 'g',
42
+ "compile extensions and libraries with debugging information"),
43
+ ('force', 'f',
44
+ "forcibly build everything (ignore file timestamps)"),
45
+ ('executable=', 'e',
46
+ "specify final destination interpreter path (build.py)"),
47
+ ]
48
+
49
+ boolean_options = ['debug', 'force']
50
+
51
+ help_options = [
52
+ ('help-compiler', None,
53
+ "list available compilers", show_compilers),
54
+ ]
55
+
56
+ def initialize_options(self):
57
+ self.build_base = 'build'
58
+ # these are decided only after 'build_base' has its final value
59
+ # (unless overridden by the user or client)
60
+ self.build_purelib = None
61
+ self.build_platlib = None
62
+ self.build_lib = None
63
+ self.build_temp = None
64
+ self.build_scripts = None
65
+ self.compiler = None
66
+ self.plat_name = None
67
+ self.debug = None
68
+ self.force = 0
69
+ self.executable = None
70
+ self.parallel = None
71
+
72
+ def finalize_options(self):
73
+ if self.plat_name is None:
74
+ self.plat_name = get_platform()
75
+ else:
76
+ # plat-name only supported for windows (other platforms are
77
+ # supported via ./configure flags, if at all). Avoid misleading
78
+ # other platforms.
79
+ if os.name != 'nt':
80
+ raise DistutilsOptionError(
81
+ "--plat-name only supported on Windows (try "
82
+ "using './configure --help' on your platform)")
83
+
84
+ plat_specifier = ".%s-%d.%d" % (self.plat_name, *sys.version_info[:2])
85
+
86
+ # Make it so Python 2.x and Python 2.x with --with-pydebug don't
87
+ # share the same build directories. Doing so confuses the build
88
+ # process for C modules
89
+ if hasattr(sys, 'gettotalrefcount'):
90
+ plat_specifier += '-pydebug'
91
+
92
+ # 'build_purelib' and 'build_platlib' just default to 'lib' and
93
+ # 'lib.<plat>' under the base build directory. We only use one of
94
+ # them for a given distribution, though --
95
+ if self.build_purelib is None:
96
+ self.build_purelib = os.path.join(self.build_base, 'lib')
97
+ if self.build_platlib is None:
98
+ self.build_platlib = os.path.join(self.build_base,
99
+ 'lib' + plat_specifier)
100
+
101
+ # 'build_lib' is the actual directory that we will use for this
102
+ # particular module distribution -- if user didn't supply it, pick
103
+ # one of 'build_purelib' or 'build_platlib'.
104
+ if self.build_lib is None:
105
+ if self.distribution.ext_modules:
106
+ self.build_lib = self.build_platlib
107
+ else:
108
+ self.build_lib = self.build_purelib
109
+
110
+ # 'build_temp' -- temporary directory for compiler turds,
111
+ # "build/temp.<plat>"
112
+ if self.build_temp is None:
113
+ self.build_temp = os.path.join(self.build_base,
114
+ 'temp' + plat_specifier)
115
+ if self.build_scripts is None:
116
+ self.build_scripts = os.path.join(self.build_base,
117
+ 'scripts-%d.%d' % sys.version_info[:2])
118
+
119
+ if self.executable is None and sys.executable:
120
+ self.executable = os.path.normpath(sys.executable)
121
+
122
+ if isinstance(self.parallel, str):
123
+ try:
124
+ self.parallel = int(self.parallel)
125
+ except ValueError:
126
+ raise DistutilsOptionError("parallel should be an integer")
127
+
128
+ def run(self):
129
+ # Run all relevant sub-commands. This will be some subset of:
130
+ # - build_py - pure Python modules
131
+ # - build_clib - standalone C libraries
132
+ # - build_ext - Python extensions
133
+ # - build_scripts - (Python) scripts
134
+ for cmd_name in self.get_sub_commands():
135
+ self.run_command(cmd_name)
136
+
137
+
138
+ # -- Predicates for the sub-command list ---------------------------
139
+
140
+ def has_pure_modules(self):
141
+ return self.distribution.has_pure_modules()
142
+
143
+ def has_c_libraries(self):
144
+ return self.distribution.has_c_libraries()
145
+
146
+ def has_ext_modules(self):
147
+ return self.distribution.has_ext_modules()
148
+
149
+ def has_scripts(self):
150
+ return self.distribution.has_scripts()
151
+
152
+
153
+ sub_commands = [('build_py', has_pure_modules),
154
+ ('build_clib', has_c_libraries),
155
+ ('build_ext', has_ext_modules),
156
+ ('build_scripts', has_scripts),
157
+ ]
parrot/lib/python3.10/distutils/command/build_py.py ADDED
@@ -0,0 +1,416 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ """distutils.command.build_py
2
+
3
+ Implements the Distutils 'build_py' command."""
4
+
5
+ import os
6
+ import importlib.util
7
+ import sys
8
+ import glob
9
+
10
+ from distutils.core import Command
11
+ from distutils.errors import *
12
+ from distutils.util import convert_path, Mixin2to3
13
+ from distutils import log
14
+
15
+ class build_py (Command):
16
+
17
+ description = "\"build\" pure Python modules (copy to build directory)"
18
+
19
+ user_options = [
20
+ ('build-lib=', 'd', "directory to \"build\" (copy) to"),
21
+ ('compile', 'c', "compile .py to .pyc"),
22
+ ('no-compile', None, "don't compile .py files [default]"),
23
+ ('optimize=', 'O',
24
+ "also compile with optimization: -O1 for \"python -O\", "
25
+ "-O2 for \"python -OO\", and -O0 to disable [default: -O0]"),
26
+ ('force', 'f', "forcibly build everything (ignore file timestamps)"),
27
+ ]
28
+
29
+ boolean_options = ['compile', 'force']
30
+ negative_opt = {'no-compile' : 'compile'}
31
+
32
+ def initialize_options(self):
33
+ self.build_lib = None
34
+ self.py_modules = None
35
+ self.package = None
36
+ self.package_data = None
37
+ self.package_dir = None
38
+ self.compile = 0
39
+ self.optimize = 0
40
+ self.force = None
41
+
42
+ def finalize_options(self):
43
+ self.set_undefined_options('build',
44
+ ('build_lib', 'build_lib'),
45
+ ('force', 'force'))
46
+
47
+ # Get the distribution options that are aliases for build_py
48
+ # options -- list of packages and list of modules.
49
+ self.packages = self.distribution.packages
50
+ self.py_modules = self.distribution.py_modules
51
+ self.package_data = self.distribution.package_data
52
+ self.package_dir = {}
53
+ if self.distribution.package_dir:
54
+ for name, path in self.distribution.package_dir.items():
55
+ self.package_dir[name] = convert_path(path)
56
+ self.data_files = self.get_data_files()
57
+
58
+ # Ick, copied straight from install_lib.py (fancy_getopt needs a
59
+ # type system! Hell, *everything* needs a type system!!!)
60
+ if not isinstance(self.optimize, int):
61
+ try:
62
+ self.optimize = int(self.optimize)
63
+ assert 0 <= self.optimize <= 2
64
+ except (ValueError, AssertionError):
65
+ raise DistutilsOptionError("optimize must be 0, 1, or 2")
66
+
67
+ def run(self):
68
+ # XXX copy_file by default preserves atime and mtime. IMHO this is
69
+ # the right thing to do, but perhaps it should be an option -- in
70
+ # particular, a site administrator might want installed files to
71
+ # reflect the time of installation rather than the last
72
+ # modification time before the installed release.
73
+
74
+ # XXX copy_file by default preserves mode, which appears to be the
75
+ # wrong thing to do: if a file is read-only in the working
76
+ # directory, we want it to be installed read/write so that the next
77
+ # installation of the same module distribution can overwrite it
78
+ # without problems. (This might be a Unix-specific issue.) Thus
79
+ # we turn off 'preserve_mode' when copying to the build directory,
80
+ # since the build directory is supposed to be exactly what the
81
+ # installation will look like (ie. we preserve mode when
82
+ # installing).
83
+
84
+ # Two options control which modules will be installed: 'packages'
85
+ # and 'py_modules'. The former lets us work with whole packages, not
86
+ # specifying individual modules at all; the latter is for
87
+ # specifying modules one-at-a-time.
88
+
89
+ if self.py_modules:
90
+ self.build_modules()
91
+ if self.packages:
92
+ self.build_packages()
93
+ self.build_package_data()
94
+
95
+ self.byte_compile(self.get_outputs(include_bytecode=0))
96
+
97
+ def get_data_files(self):
98
+ """Generate list of '(package,src_dir,build_dir,filenames)' tuples"""
99
+ data = []
100
+ if not self.packages:
101
+ return data
102
+ for package in self.packages:
103
+ # Locate package source directory
104
+ src_dir = self.get_package_dir(package)
105
+
106
+ # Compute package build directory
107
+ build_dir = os.path.join(*([self.build_lib] + package.split('.')))
108
+
109
+ # Length of path to strip from found files
110
+ plen = 0
111
+ if src_dir:
112
+ plen = len(src_dir)+1
113
+
114
+ # Strip directory from globbed filenames
115
+ filenames = [
116
+ file[plen:] for file in self.find_data_files(package, src_dir)
117
+ ]
118
+ data.append((package, src_dir, build_dir, filenames))
119
+ return data
120
+
121
+ def find_data_files(self, package, src_dir):
122
+ """Return filenames for package's data files in 'src_dir'"""
123
+ globs = (self.package_data.get('', [])
124
+ + self.package_data.get(package, []))
125
+ files = []
126
+ for pattern in globs:
127
+ # Each pattern has to be converted to a platform-specific path
128
+ filelist = glob.glob(os.path.join(glob.escape(src_dir), convert_path(pattern)))
129
+ # Files that match more than one pattern are only added once
130
+ files.extend([fn for fn in filelist if fn not in files
131
+ and os.path.isfile(fn)])
132
+ return files
133
+
134
+ def build_package_data(self):
135
+ """Copy data files into build directory"""
136
+ lastdir = None
137
+ for package, src_dir, build_dir, filenames in self.data_files:
138
+ for filename in filenames:
139
+ target = os.path.join(build_dir, filename)
140
+ self.mkpath(os.path.dirname(target))
141
+ self.copy_file(os.path.join(src_dir, filename), target,
142
+ preserve_mode=False)
143
+
144
+ def get_package_dir(self, package):
145
+ """Return the directory, relative to the top of the source
146
+ distribution, where package 'package' should be found
147
+ (at least according to the 'package_dir' option, if any)."""
148
+ path = package.split('.')
149
+
150
+ if not self.package_dir:
151
+ if path:
152
+ return os.path.join(*path)
153
+ else:
154
+ return ''
155
+ else:
156
+ tail = []
157
+ while path:
158
+ try:
159
+ pdir = self.package_dir['.'.join(path)]
160
+ except KeyError:
161
+ tail.insert(0, path[-1])
162
+ del path[-1]
163
+ else:
164
+ tail.insert(0, pdir)
165
+ return os.path.join(*tail)
166
+ else:
167
+ # Oops, got all the way through 'path' without finding a
168
+ # match in package_dir. If package_dir defines a directory
169
+ # for the root (nameless) package, then fallback on it;
170
+ # otherwise, we might as well have not consulted
171
+ # package_dir at all, as we just use the directory implied
172
+ # by 'tail' (which should be the same as the original value
173
+ # of 'path' at this point).
174
+ pdir = self.package_dir.get('')
175
+ if pdir is not None:
176
+ tail.insert(0, pdir)
177
+
178
+ if tail:
179
+ return os.path.join(*tail)
180
+ else:
181
+ return ''
182
+
183
+ def check_package(self, package, package_dir):
184
+ # Empty dir name means current directory, which we can probably
185
+ # assume exists. Also, os.path.exists and isdir don't know about
186
+ # my "empty string means current dir" convention, so we have to
187
+ # circumvent them.
188
+ if package_dir != "":
189
+ if not os.path.exists(package_dir):
190
+ raise DistutilsFileError(
191
+ "package directory '%s' does not exist" % package_dir)
192
+ if not os.path.isdir(package_dir):
193
+ raise DistutilsFileError(
194
+ "supposed package directory '%s' exists, "
195
+ "but is not a directory" % package_dir)
196
+
197
+ # Require __init__.py for all but the "root package"
198
+ if package:
199
+ init_py = os.path.join(package_dir, "__init__.py")
200
+ if os.path.isfile(init_py):
201
+ return init_py
202
+ else:
203
+ log.warn(("package init file '%s' not found " +
204
+ "(or not a regular file)"), init_py)
205
+
206
+ # Either not in a package at all (__init__.py not expected), or
207
+ # __init__.py doesn't exist -- so don't return the filename.
208
+ return None
209
+
210
+ def check_module(self, module, module_file):
211
+ if not os.path.isfile(module_file):
212
+ log.warn("file %s (for module %s) not found", module_file, module)
213
+ return False
214
+ else:
215
+ return True
216
+
217
+ def find_package_modules(self, package, package_dir):
218
+ self.check_package(package, package_dir)
219
+ module_files = glob.glob(os.path.join(glob.escape(package_dir), "*.py"))
220
+ modules = []
221
+ setup_script = os.path.abspath(self.distribution.script_name)
222
+
223
+ for f in module_files:
224
+ abs_f = os.path.abspath(f)
225
+ if abs_f != setup_script:
226
+ module = os.path.splitext(os.path.basename(f))[0]
227
+ modules.append((package, module, f))
228
+ else:
229
+ self.debug_print("excluding %s" % setup_script)
230
+ return modules
231
+
232
+ def find_modules(self):
233
+ """Finds individually-specified Python modules, ie. those listed by
234
+ module name in 'self.py_modules'. Returns a list of tuples (package,
235
+ module_base, filename): 'package' is a tuple of the path through
236
+ package-space to the module; 'module_base' is the bare (no
237
+ packages, no dots) module name, and 'filename' is the path to the
238
+ ".py" file (relative to the distribution root) that implements the
239
+ module.
240
+ """
241
+ # Map package names to tuples of useful info about the package:
242
+ # (package_dir, checked)
243
+ # package_dir - the directory where we'll find source files for
244
+ # this package
245
+ # checked - true if we have checked that the package directory
246
+ # is valid (exists, contains __init__.py, ... ?)
247
+ packages = {}
248
+
249
+ # List of (package, module, filename) tuples to return
250
+ modules = []
251
+
252
+ # We treat modules-in-packages almost the same as toplevel modules,
253
+ # just the "package" for a toplevel is empty (either an empty
254
+ # string or empty list, depending on context). Differences:
255
+ # - don't check for __init__.py in directory for empty package
256
+ for module in self.py_modules:
257
+ path = module.split('.')
258
+ package = '.'.join(path[0:-1])
259
+ module_base = path[-1]
260
+
261
+ try:
262
+ (package_dir, checked) = packages[package]
263
+ except KeyError:
264
+ package_dir = self.get_package_dir(package)
265
+ checked = 0
266
+
267
+ if not checked:
268
+ init_py = self.check_package(package, package_dir)
269
+ packages[package] = (package_dir, 1)
270
+ if init_py:
271
+ modules.append((package, "__init__", init_py))
272
+
273
+ # XXX perhaps we should also check for just .pyc files
274
+ # (so greedy closed-source bastards can distribute Python
275
+ # modules too)
276
+ module_file = os.path.join(package_dir, module_base + ".py")
277
+ if not self.check_module(module, module_file):
278
+ continue
279
+
280
+ modules.append((package, module_base, module_file))
281
+
282
+ return modules
283
+
284
+ def find_all_modules(self):
285
+ """Compute the list of all modules that will be built, whether
286
+ they are specified one-module-at-a-time ('self.py_modules') or
287
+ by whole packages ('self.packages'). Return a list of tuples
288
+ (package, module, module_file), just like 'find_modules()' and
289
+ 'find_package_modules()' do."""
290
+ modules = []
291
+ if self.py_modules:
292
+ modules.extend(self.find_modules())
293
+ if self.packages:
294
+ for package in self.packages:
295
+ package_dir = self.get_package_dir(package)
296
+ m = self.find_package_modules(package, package_dir)
297
+ modules.extend(m)
298
+ return modules
299
+
300
+ def get_source_files(self):
301
+ return [module[-1] for module in self.find_all_modules()]
302
+
303
+ def get_module_outfile(self, build_dir, package, module):
304
+ outfile_path = [build_dir] + list(package) + [module + ".py"]
305
+ return os.path.join(*outfile_path)
306
+
307
+ def get_outputs(self, include_bytecode=1):
308
+ modules = self.find_all_modules()
309
+ outputs = []
310
+ for (package, module, module_file) in modules:
311
+ package = package.split('.')
312
+ filename = self.get_module_outfile(self.build_lib, package, module)
313
+ outputs.append(filename)
314
+ if include_bytecode:
315
+ if self.compile:
316
+ outputs.append(importlib.util.cache_from_source(
317
+ filename, optimization=''))
318
+ if self.optimize > 0:
319
+ outputs.append(importlib.util.cache_from_source(
320
+ filename, optimization=self.optimize))
321
+
322
+ outputs += [
323
+ os.path.join(build_dir, filename)
324
+ for package, src_dir, build_dir, filenames in self.data_files
325
+ for filename in filenames
326
+ ]
327
+
328
+ return outputs
329
+
330
+ def build_module(self, module, module_file, package):
331
+ if isinstance(package, str):
332
+ package = package.split('.')
333
+ elif not isinstance(package, (list, tuple)):
334
+ raise TypeError(
335
+ "'package' must be a string (dot-separated), list, or tuple")
336
+
337
+ # Now put the module source file into the "build" area -- this is
338
+ # easy, we just copy it somewhere under self.build_lib (the build
339
+ # directory for Python source).
340
+ outfile = self.get_module_outfile(self.build_lib, package, module)
341
+ dir = os.path.dirname(outfile)
342
+ self.mkpath(dir)
343
+ return self.copy_file(module_file, outfile, preserve_mode=0)
344
+
345
+ def build_modules(self):
346
+ modules = self.find_modules()
347
+ for (package, module, module_file) in modules:
348
+ # Now "build" the module -- ie. copy the source file to
349
+ # self.build_lib (the build directory for Python source).
350
+ # (Actually, it gets copied to the directory for this package
351
+ # under self.build_lib.)
352
+ self.build_module(module, module_file, package)
353
+
354
+ def build_packages(self):
355
+ for package in self.packages:
356
+ # Get list of (package, module, module_file) tuples based on
357
+ # scanning the package directory. 'package' is only included
358
+ # in the tuple so that 'find_modules()' and
359
+ # 'find_package_tuples()' have a consistent interface; it's
360
+ # ignored here (apart from a sanity check). Also, 'module' is
361
+ # the *unqualified* module name (ie. no dots, no package -- we
362
+ # already know its package!), and 'module_file' is the path to
363
+ # the .py file, relative to the current directory
364
+ # (ie. including 'package_dir').
365
+ package_dir = self.get_package_dir(package)
366
+ modules = self.find_package_modules(package, package_dir)
367
+
368
+ # Now loop over the modules we found, "building" each one (just
369
+ # copy it to self.build_lib).
370
+ for (package_, module, module_file) in modules:
371
+ assert package == package_
372
+ self.build_module(module, module_file, package)
373
+
374
+ def byte_compile(self, files):
375
+ if sys.dont_write_bytecode:
376
+ self.warn('byte-compiling is disabled, skipping.')
377
+ return
378
+
379
+ from distutils.util import byte_compile
380
+ prefix = self.build_lib
381
+ if prefix[-1] != os.sep:
382
+ prefix = prefix + os.sep
383
+
384
+ # XXX this code is essentially the same as the 'byte_compile()
385
+ # method of the "install_lib" command, except for the determination
386
+ # of the 'prefix' string. Hmmm.
387
+ if self.compile:
388
+ byte_compile(files, optimize=0,
389
+ force=self.force, prefix=prefix, dry_run=self.dry_run)
390
+ if self.optimize > 0:
391
+ byte_compile(files, optimize=self.optimize,
392
+ force=self.force, prefix=prefix, dry_run=self.dry_run)
393
+
394
+ class build_py_2to3(build_py, Mixin2to3):
395
+ def run(self):
396
+ self.updated_files = []
397
+
398
+ # Base class code
399
+ if self.py_modules:
400
+ self.build_modules()
401
+ if self.packages:
402
+ self.build_packages()
403
+ self.build_package_data()
404
+
405
+ # 2to3
406
+ self.run_2to3(self.updated_files)
407
+
408
+ # Remaining base class code
409
+ self.byte_compile(self.get_outputs(include_bytecode=0))
410
+
411
+ def build_module(self, module, module_file, package):
412
+ res = build_py.build_module(self, module, module_file, package)
413
+ if res[1]:
414
+ # file was copied
415
+ self.updated_files.append(res[0])
416
+ return res
parrot/lib/python3.10/distutils/command/build_scripts.py ADDED
@@ -0,0 +1,160 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ """distutils.command.build_scripts
2
+
3
+ Implements the Distutils 'build_scripts' command."""
4
+
5
+ import os, re
6
+ from stat import ST_MODE
7
+ from distutils import sysconfig
8
+ from distutils.core import Command
9
+ from distutils.dep_util import newer
10
+ from distutils.util import convert_path, Mixin2to3
11
+ from distutils import log
12
+ import tokenize
13
+
14
+ # check if Python is called on the first line with this expression
15
+ first_line_re = re.compile(b'^#!.*python[0-9.]*([ \t].*)?$')
16
+
17
+ class build_scripts(Command):
18
+
19
+ description = "\"build\" scripts (copy and fixup #! line)"
20
+
21
+ user_options = [
22
+ ('build-dir=', 'd', "directory to \"build\" (copy) to"),
23
+ ('force', 'f', "forcibly build everything (ignore file timestamps"),
24
+ ('executable=', 'e', "specify final destination interpreter path"),
25
+ ]
26
+
27
+ boolean_options = ['force']
28
+
29
+
30
+ def initialize_options(self):
31
+ self.build_dir = None
32
+ self.scripts = None
33
+ self.force = None
34
+ self.executable = None
35
+ self.outfiles = None
36
+
37
+ def finalize_options(self):
38
+ self.set_undefined_options('build',
39
+ ('build_scripts', 'build_dir'),
40
+ ('force', 'force'),
41
+ ('executable', 'executable'))
42
+ self.scripts = self.distribution.scripts
43
+
44
+ def get_source_files(self):
45
+ return self.scripts
46
+
47
+ def run(self):
48
+ if not self.scripts:
49
+ return
50
+ self.copy_scripts()
51
+
52
+
53
+ def copy_scripts(self):
54
+ r"""Copy each script listed in 'self.scripts'; if it's marked as a
55
+ Python script in the Unix way (first line matches 'first_line_re',
56
+ ie. starts with "\#!" and contains "python"), then adjust the first
57
+ line to refer to the current Python interpreter as we copy.
58
+ """
59
+ self.mkpath(self.build_dir)
60
+ outfiles = []
61
+ updated_files = []
62
+ for script in self.scripts:
63
+ adjust = False
64
+ script = convert_path(script)
65
+ outfile = os.path.join(self.build_dir, os.path.basename(script))
66
+ outfiles.append(outfile)
67
+
68
+ if not self.force and not newer(script, outfile):
69
+ log.debug("not copying %s (up-to-date)", script)
70
+ continue
71
+
72
+ # Always open the file, but ignore failures in dry-run mode --
73
+ # that way, we'll get accurate feedback if we can read the
74
+ # script.
75
+ try:
76
+ f = open(script, "rb")
77
+ except OSError:
78
+ if not self.dry_run:
79
+ raise
80
+ f = None
81
+ else:
82
+ encoding, lines = tokenize.detect_encoding(f.readline)
83
+ f.seek(0)
84
+ first_line = f.readline()
85
+ if not first_line:
86
+ self.warn("%s is an empty file (skipping)" % script)
87
+ continue
88
+
89
+ match = first_line_re.match(first_line)
90
+ if match:
91
+ adjust = True
92
+ post_interp = match.group(1) or b''
93
+
94
+ if adjust:
95
+ log.info("copying and adjusting %s -> %s", script,
96
+ self.build_dir)
97
+ updated_files.append(outfile)
98
+ if not self.dry_run:
99
+ if not sysconfig.python_build:
100
+ executable = self.executable
101
+ else:
102
+ executable = os.path.join(
103
+ sysconfig.get_config_var("BINDIR"),
104
+ "python%s%s" % (sysconfig.get_config_var("VERSION"),
105
+ sysconfig.get_config_var("EXE")))
106
+ executable = os.fsencode(executable)
107
+ shebang = b"#!" + executable + post_interp + b"\n"
108
+ # Python parser starts to read a script using UTF-8 until
109
+ # it gets a #coding:xxx cookie. The shebang has to be the
110
+ # first line of a file, the #coding:xxx cookie cannot be
111
+ # written before. So the shebang has to be decodable from
112
+ # UTF-8.
113
+ try:
114
+ shebang.decode('utf-8')
115
+ except UnicodeDecodeError:
116
+ raise ValueError(
117
+ "The shebang ({!r}) is not decodable "
118
+ "from utf-8".format(shebang))
119
+ # If the script is encoded to a custom encoding (use a
120
+ # #coding:xxx cookie), the shebang has to be decodable from
121
+ # the script encoding too.
122
+ try:
123
+ shebang.decode(encoding)
124
+ except UnicodeDecodeError:
125
+ raise ValueError(
126
+ "The shebang ({!r}) is not decodable "
127
+ "from the script encoding ({})"
128
+ .format(shebang, encoding))
129
+ with open(outfile, "wb") as outf:
130
+ outf.write(shebang)
131
+ outf.writelines(f.readlines())
132
+ if f:
133
+ f.close()
134
+ else:
135
+ if f:
136
+ f.close()
137
+ updated_files.append(outfile)
138
+ self.copy_file(script, outfile)
139
+
140
+ if os.name == 'posix':
141
+ for file in outfiles:
142
+ if self.dry_run:
143
+ log.info("changing mode of %s", file)
144
+ else:
145
+ oldmode = os.stat(file)[ST_MODE] & 0o7777
146
+ newmode = (oldmode | 0o555) & 0o7777
147
+ if newmode != oldmode:
148
+ log.info("changing mode of %s from %o to %o",
149
+ file, oldmode, newmode)
150
+ os.chmod(file, newmode)
151
+ # XXX should we modify self.outfiles?
152
+ return outfiles, updated_files
153
+
154
+ class build_scripts_2to3(build_scripts, Mixin2to3):
155
+
156
+ def copy_scripts(self):
157
+ outfiles, updated_files = build_scripts.copy_scripts(self)
158
+ if not self.dry_run:
159
+ self.run_2to3(updated_files)
160
+ return outfiles, updated_files
parrot/lib/python3.10/distutils/command/check.py ADDED
@@ -0,0 +1,148 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ """distutils.command.check
2
+
3
+ Implements the Distutils 'check' command.
4
+ """
5
+ from distutils.core import Command
6
+ from distutils.errors import DistutilsSetupError
7
+
8
+ try:
9
+ # docutils is installed
10
+ from docutils.utils import Reporter
11
+ from docutils.parsers.rst import Parser
12
+ from docutils import frontend
13
+ from docutils import nodes
14
+
15
+ class SilentReporter(Reporter):
16
+
17
+ def __init__(self, source, report_level, halt_level, stream=None,
18
+ debug=0, encoding='ascii', error_handler='replace'):
19
+ self.messages = []
20
+ Reporter.__init__(self, source, report_level, halt_level, stream,
21
+ debug, encoding, error_handler)
22
+
23
+ def system_message(self, level, message, *children, **kwargs):
24
+ self.messages.append((level, message, children, kwargs))
25
+ return nodes.system_message(message, level=level,
26
+ type=self.levels[level],
27
+ *children, **kwargs)
28
+
29
+ HAS_DOCUTILS = True
30
+ except Exception:
31
+ # Catch all exceptions because exceptions besides ImportError probably
32
+ # indicate that docutils is not ported to Py3k.
33
+ HAS_DOCUTILS = False
34
+
35
+ class check(Command):
36
+ """This command checks the meta-data of the package.
37
+ """
38
+ description = ("perform some checks on the package")
39
+ user_options = [('metadata', 'm', 'Verify meta-data'),
40
+ ('restructuredtext', 'r',
41
+ ('Checks if long string meta-data syntax '
42
+ 'are reStructuredText-compliant')),
43
+ ('strict', 's',
44
+ 'Will exit with an error if a check fails')]
45
+
46
+ boolean_options = ['metadata', 'restructuredtext', 'strict']
47
+
48
+ def initialize_options(self):
49
+ """Sets default values for options."""
50
+ self.restructuredtext = 0
51
+ self.metadata = 1
52
+ self.strict = 0
53
+ self._warnings = 0
54
+
55
+ def finalize_options(self):
56
+ pass
57
+
58
+ def warn(self, msg):
59
+ """Counts the number of warnings that occurs."""
60
+ self._warnings += 1
61
+ return Command.warn(self, msg)
62
+
63
+ def run(self):
64
+ """Runs the command."""
65
+ # perform the various tests
66
+ if self.metadata:
67
+ self.check_metadata()
68
+ if self.restructuredtext:
69
+ if HAS_DOCUTILS:
70
+ self.check_restructuredtext()
71
+ elif self.strict:
72
+ raise DistutilsSetupError('The docutils package is needed.')
73
+
74
+ # let's raise an error in strict mode, if we have at least
75
+ # one warning
76
+ if self.strict and self._warnings > 0:
77
+ raise DistutilsSetupError('Please correct your package.')
78
+
79
+ def check_metadata(self):
80
+ """Ensures that all required elements of meta-data are supplied.
81
+
82
+ Required fields:
83
+ name, version, URL
84
+
85
+ Recommended fields:
86
+ (author and author_email) or (maintainer and maintainer_email)
87
+
88
+ Warns if any are missing.
89
+ """
90
+ metadata = self.distribution.metadata
91
+
92
+ missing = []
93
+ for attr in ('name', 'version', 'url'):
94
+ if not (hasattr(metadata, attr) and getattr(metadata, attr)):
95
+ missing.append(attr)
96
+
97
+ if missing:
98
+ self.warn("missing required meta-data: %s" % ', '.join(missing))
99
+ if metadata.author:
100
+ if not metadata.author_email:
101
+ self.warn("missing meta-data: if 'author' supplied, " +
102
+ "'author_email' should be supplied too")
103
+ elif metadata.maintainer:
104
+ if not metadata.maintainer_email:
105
+ self.warn("missing meta-data: if 'maintainer' supplied, " +
106
+ "'maintainer_email' should be supplied too")
107
+ else:
108
+ self.warn("missing meta-data: either (author and author_email) " +
109
+ "or (maintainer and maintainer_email) " +
110
+ "should be supplied")
111
+
112
+ def check_restructuredtext(self):
113
+ """Checks if the long string fields are reST-compliant."""
114
+ data = self.distribution.get_long_description()
115
+ for warning in self._check_rst_data(data):
116
+ line = warning[-1].get('line')
117
+ if line is None:
118
+ warning = warning[1]
119
+ else:
120
+ warning = '%s (line %s)' % (warning[1], line)
121
+ self.warn(warning)
122
+
123
+ def _check_rst_data(self, data):
124
+ """Returns warnings when the provided data doesn't compile."""
125
+ # the include and csv_table directives need this to be a path
126
+ source_path = self.distribution.script_name or 'setup.py'
127
+ parser = Parser()
128
+ settings = frontend.OptionParser(components=(Parser,)).get_default_values()
129
+ settings.tab_width = 4
130
+ settings.pep_references = None
131
+ settings.rfc_references = None
132
+ reporter = SilentReporter(source_path,
133
+ settings.report_level,
134
+ settings.halt_level,
135
+ stream=settings.warning_stream,
136
+ debug=settings.debug,
137
+ encoding=settings.error_encoding,
138
+ error_handler=settings.error_encoding_error_handler)
139
+
140
+ document = nodes.document(settings, reporter, source=source_path)
141
+ document.note_source(source_path, -1)
142
+ try:
143
+ parser.parse(data, document)
144
+ except AttributeError as e:
145
+ reporter.messages.append(
146
+ (-1, 'Could not finish the parsing: %s.' % e, '', {}))
147
+
148
+ return reporter.messages
parrot/lib/python3.10/distutils/command/clean.py ADDED
@@ -0,0 +1,76 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ """distutils.command.clean
2
+
3
+ Implements the Distutils 'clean' command."""
4
+
5
+ # contributed by Bastian Kleineidam <calvin@cs.uni-sb.de>, added 2000-03-18
6
+
7
+ import os
8
+ from distutils.core import Command
9
+ from distutils.dir_util import remove_tree
10
+ from distutils import log
11
+
12
+ class clean(Command):
13
+
14
+ description = "clean up temporary files from 'build' command"
15
+ user_options = [
16
+ ('build-base=', 'b',
17
+ "base build directory (default: 'build.build-base')"),
18
+ ('build-lib=', None,
19
+ "build directory for all modules (default: 'build.build-lib')"),
20
+ ('build-temp=', 't',
21
+ "temporary build directory (default: 'build.build-temp')"),
22
+ ('build-scripts=', None,
23
+ "build directory for scripts (default: 'build.build-scripts')"),
24
+ ('bdist-base=', None,
25
+ "temporary directory for built distributions"),
26
+ ('all', 'a',
27
+ "remove all build output, not just temporary by-products")
28
+ ]
29
+
30
+ boolean_options = ['all']
31
+
32
+ def initialize_options(self):
33
+ self.build_base = None
34
+ self.build_lib = None
35
+ self.build_temp = None
36
+ self.build_scripts = None
37
+ self.bdist_base = None
38
+ self.all = None
39
+
40
+ def finalize_options(self):
41
+ self.set_undefined_options('build',
42
+ ('build_base', 'build_base'),
43
+ ('build_lib', 'build_lib'),
44
+ ('build_scripts', 'build_scripts'),
45
+ ('build_temp', 'build_temp'))
46
+ self.set_undefined_options('bdist',
47
+ ('bdist_base', 'bdist_base'))
48
+
49
+ def run(self):
50
+ # remove the build/temp.<plat> directory (unless it's already
51
+ # gone)
52
+ if os.path.exists(self.build_temp):
53
+ remove_tree(self.build_temp, dry_run=self.dry_run)
54
+ else:
55
+ log.debug("'%s' does not exist -- can't clean it",
56
+ self.build_temp)
57
+
58
+ if self.all:
59
+ # remove build directories
60
+ for directory in (self.build_lib,
61
+ self.bdist_base,
62
+ self.build_scripts):
63
+ if os.path.exists(directory):
64
+ remove_tree(directory, dry_run=self.dry_run)
65
+ else:
66
+ log.warn("'%s' does not exist -- can't clean it",
67
+ directory)
68
+
69
+ # just for the heck of it, try to remove the base build directory:
70
+ # we might have emptied it right now, but if not we don't care
71
+ if not self.dry_run:
72
+ try:
73
+ os.rmdir(self.build_base)
74
+ log.info("removing '%s'", self.build_base)
75
+ except OSError:
76
+ pass
parrot/lib/python3.10/distutils/command/install.py ADDED
@@ -0,0 +1,679 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ """distutils.command.install
2
+
3
+ Implements the Distutils 'install' command."""
4
+
5
+ import sys
6
+ import sysconfig
7
+ import os
8
+ import re
9
+
10
+ from distutils import log
11
+ from distutils.core import Command
12
+ from distutils.debug import DEBUG
13
+ from distutils.sysconfig import get_config_vars
14
+ from distutils.errors import DistutilsPlatformError
15
+ from distutils.file_util import write_file
16
+ from distutils.util import convert_path, subst_vars, change_root
17
+ from distutils.util import get_platform
18
+ from distutils.errors import DistutilsOptionError
19
+
20
+ from site import USER_BASE
21
+ from site import USER_SITE
22
+
23
+ HAS_USER_SITE = (USER_SITE is not None)
24
+
25
+ # The keys to an installation scheme; if any new types of files are to be
26
+ # installed, be sure to add an entry to every scheme in
27
+ # sysconfig._INSTALL_SCHEMES, and to SCHEME_KEYS here.
28
+ SCHEME_KEYS = ('purelib', 'platlib', 'headers', 'scripts', 'data')
29
+
30
+ # The following code provides backward-compatible INSTALL_SCHEMES
31
+ # while making the sysconfig module the single point of truth.
32
+ # This makes it easier for OS distributions where they need to
33
+ # alter locations for packages installations in a single place.
34
+ # Note that this module is deprecated (PEP 632); all consumers
35
+ # of this information should switch to using sysconfig directly.
36
+ INSTALL_SCHEMES = {"unix_prefix": {}, "unix_home": {}, "nt": {}}
37
+
38
+ # Copy from sysconfig._INSTALL_SCHEMES
39
+ for key in SCHEME_KEYS:
40
+ for distutils_scheme_name, sys_scheme_name in (
41
+ ("unix_prefix", "posix_prefix"), ("unix_home", "posix_home"),
42
+ ("nt", "nt")):
43
+ sys_key = key
44
+ sys_scheme = sysconfig._INSTALL_SCHEMES[sys_scheme_name]
45
+ if key == "headers" and key not in sys_scheme:
46
+ # On POSIX-y platforms, Python will:
47
+ # - Build from .h files in 'headers' (only there when
48
+ # building CPython)
49
+ # - Install .h files to 'include'
50
+ # When 'headers' is missing, fall back to 'include'
51
+ sys_key = 'include'
52
+ INSTALL_SCHEMES[distutils_scheme_name][key] = sys_scheme[sys_key]
53
+
54
+ # Transformation to different template format
55
+ for main_key in INSTALL_SCHEMES:
56
+ for key, value in INSTALL_SCHEMES[main_key].items():
57
+ # Change all ocurences of {variable} to $variable
58
+ value = re.sub(r"\{(.+?)\}", r"$\g<1>", value)
59
+ value = value.replace("$installed_base", "$base")
60
+ value = value.replace("$py_version_nodot_plat", "$py_version_nodot")
61
+ if key == "headers":
62
+ value += "/$dist_name"
63
+ if sys.version_info >= (3, 9) and key == "platlib":
64
+ # platlibdir is available since 3.9: bpo-1294959
65
+ value = value.replace("/lib/", "/$platlibdir/")
66
+ INSTALL_SCHEMES[main_key][key] = value
67
+
68
+ # The following part of INSTALL_SCHEMES has a different definition
69
+ # than the one in sysconfig, but because both depend on the site module,
70
+ # the outcomes should be the same.
71
+ if HAS_USER_SITE:
72
+ INSTALL_SCHEMES['nt_user'] = {
73
+ 'purelib': '$usersite',
74
+ 'platlib': '$usersite',
75
+ 'headers': '$userbase/Python$py_version_nodot/Include/$dist_name',
76
+ 'scripts': '$userbase/Python$py_version_nodot/Scripts',
77
+ 'data' : '$userbase',
78
+ }
79
+
80
+ INSTALL_SCHEMES['unix_user'] = {
81
+ 'purelib': '$usersite',
82
+ 'platlib': '$usersite',
83
+ 'headers':
84
+ '$userbase/include/python$py_version_short$abiflags/$dist_name',
85
+ 'scripts': '$userbase/bin',
86
+ 'data' : '$userbase',
87
+ }
88
+
89
+
90
+ class install(Command):
91
+
92
+ description = "install everything from build directory"
93
+
94
+ user_options = [
95
+ # Select installation scheme and set base director(y|ies)
96
+ ('prefix=', None,
97
+ "installation prefix"),
98
+ ('exec-prefix=', None,
99
+ "(Unix only) prefix for platform-specific files"),
100
+ ('home=', None,
101
+ "(Unix only) home directory to install under"),
102
+
103
+ # Or, just set the base director(y|ies)
104
+ ('install-base=', None,
105
+ "base installation directory (instead of --prefix or --home)"),
106
+ ('install-platbase=', None,
107
+ "base installation directory for platform-specific files " +
108
+ "(instead of --exec-prefix or --home)"),
109
+ ('root=', None,
110
+ "install everything relative to this alternate root directory"),
111
+
112
+ # Or, explicitly set the installation scheme
113
+ ('install-purelib=', None,
114
+ "installation directory for pure Python module distributions"),
115
+ ('install-platlib=', None,
116
+ "installation directory for non-pure module distributions"),
117
+ ('install-lib=', None,
118
+ "installation directory for all module distributions " +
119
+ "(overrides --install-purelib and --install-platlib)"),
120
+
121
+ ('install-headers=', None,
122
+ "installation directory for C/C++ headers"),
123
+ ('install-scripts=', None,
124
+ "installation directory for Python scripts"),
125
+ ('install-data=', None,
126
+ "installation directory for data files"),
127
+
128
+ # Byte-compilation options -- see install_lib.py for details, as
129
+ # these are duplicated from there (but only install_lib does
130
+ # anything with them).
131
+ ('compile', 'c', "compile .py to .pyc [default]"),
132
+ ('no-compile', None, "don't compile .py files"),
133
+ ('optimize=', 'O',
134
+ "also compile with optimization: -O1 for \"python -O\", "
135
+ "-O2 for \"python -OO\", and -O0 to disable [default: -O0]"),
136
+
137
+ # Miscellaneous control options
138
+ ('force', 'f',
139
+ "force installation (overwrite any existing files)"),
140
+ ('skip-build', None,
141
+ "skip rebuilding everything (for testing/debugging)"),
142
+
143
+ # Where to install documentation (eventually!)
144
+ #('doc-format=', None, "format of documentation to generate"),
145
+ #('install-man=', None, "directory for Unix man pages"),
146
+ #('install-html=', None, "directory for HTML documentation"),
147
+ #('install-info=', None, "directory for GNU info files"),
148
+
149
+ ('record=', None,
150
+ "filename in which to record list of installed files"),
151
+ ]
152
+
153
+ boolean_options = ['compile', 'force', 'skip-build']
154
+
155
+ if HAS_USER_SITE:
156
+ user_options.append(('user', None,
157
+ "install in user site-package '%s'" % USER_SITE))
158
+ boolean_options.append('user')
159
+
160
+ negative_opt = {'no-compile' : 'compile'}
161
+
162
+
163
+ def initialize_options(self):
164
+ """Initializes options."""
165
+ # High-level options: these select both an installation base
166
+ # and scheme.
167
+ self.prefix = None
168
+ self.exec_prefix = None
169
+ self.home = None
170
+ self.user = 0
171
+
172
+ # These select only the installation base; it's up to the user to
173
+ # specify the installation scheme (currently, that means supplying
174
+ # the --install-{platlib,purelib,scripts,data} options).
175
+ self.install_base = None
176
+ self.install_platbase = None
177
+ self.root = None
178
+
179
+ # These options are the actual installation directories; if not
180
+ # supplied by the user, they are filled in using the installation
181
+ # scheme implied by prefix/exec-prefix/home and the contents of
182
+ # that installation scheme.
183
+ self.install_purelib = None # for pure module distributions
184
+ self.install_platlib = None # non-pure (dists w/ extensions)
185
+ self.install_headers = None # for C/C++ headers
186
+ self.install_lib = None # set to either purelib or platlib
187
+ self.install_scripts = None
188
+ self.install_data = None
189
+ if HAS_USER_SITE:
190
+ self.install_userbase = USER_BASE
191
+ self.install_usersite = USER_SITE
192
+
193
+ self.compile = None
194
+ self.optimize = None
195
+
196
+ # Deprecated
197
+ # These two are for putting non-packagized distributions into their
198
+ # own directory and creating a .pth file if it makes sense.
199
+ # 'extra_path' comes from the setup file; 'install_path_file' can
200
+ # be turned off if it makes no sense to install a .pth file. (But
201
+ # better to install it uselessly than to guess wrong and not
202
+ # install it when it's necessary and would be used!) Currently,
203
+ # 'install_path_file' is always true unless some outsider meddles
204
+ # with it.
205
+ self.extra_path = None
206
+ self.install_path_file = 1
207
+
208
+ # 'force' forces installation, even if target files are not
209
+ # out-of-date. 'skip_build' skips running the "build" command,
210
+ # handy if you know it's not necessary. 'warn_dir' (which is *not*
211
+ # a user option, it's just there so the bdist_* commands can turn
212
+ # it off) determines whether we warn about installing to a
213
+ # directory not in sys.path.
214
+ self.force = 0
215
+ self.skip_build = 0
216
+ self.warn_dir = 1
217
+
218
+ # These are only here as a conduit from the 'build' command to the
219
+ # 'install_*' commands that do the real work. ('build_base' isn't
220
+ # actually used anywhere, but it might be useful in future.) They
221
+ # are not user options, because if the user told the install
222
+ # command where the build directory is, that wouldn't affect the
223
+ # build command.
224
+ self.build_base = None
225
+ self.build_lib = None
226
+
227
+ # Not defined yet because we don't know anything about
228
+ # documentation yet.
229
+ #self.install_man = None
230
+ #self.install_html = None
231
+ #self.install_info = None
232
+
233
+ self.record = None
234
+
235
+
236
+ # -- Option finalizing methods -------------------------------------
237
+ # (This is rather more involved than for most commands,
238
+ # because this is where the policy for installing third-
239
+ # party Python modules on various platforms given a wide
240
+ # array of user input is decided. Yes, it's quite complex!)
241
+
242
+ def finalize_options(self):
243
+ """Finalizes options."""
244
+ # This method (and its helpers, like 'finalize_unix()',
245
+ # 'finalize_other()', and 'select_scheme()') is where the default
246
+ # installation directories for modules, extension modules, and
247
+ # anything else we care to install from a Python module
248
+ # distribution. Thus, this code makes a pretty important policy
249
+ # statement about how third-party stuff is added to a Python
250
+ # installation! Note that the actual work of installation is done
251
+ # by the relatively simple 'install_*' commands; they just take
252
+ # their orders from the installation directory options determined
253
+ # here.
254
+
255
+ # Check for errors/inconsistencies in the options; first, stuff
256
+ # that's wrong on any platform.
257
+
258
+ if ((self.prefix or self.exec_prefix or self.home) and
259
+ (self.install_base or self.install_platbase)):
260
+ raise DistutilsOptionError(
261
+ "must supply either prefix/exec-prefix/home or " +
262
+ "install-base/install-platbase -- not both")
263
+
264
+ if self.home and (self.prefix or self.exec_prefix):
265
+ raise DistutilsOptionError(
266
+ "must supply either home or prefix/exec-prefix -- not both")
267
+
268
+ if self.user and (self.prefix or self.exec_prefix or self.home or
269
+ self.install_base or self.install_platbase):
270
+ raise DistutilsOptionError("can't combine user with prefix, "
271
+ "exec_prefix/home, or install_(plat)base")
272
+
273
+ # Next, stuff that's wrong (or dubious) only on certain platforms.
274
+ if os.name != "posix":
275
+ if self.exec_prefix:
276
+ self.warn("exec-prefix option ignored on this platform")
277
+ self.exec_prefix = None
278
+
279
+ # Now the interesting logic -- so interesting that we farm it out
280
+ # to other methods. The goal of these methods is to set the final
281
+ # values for the install_{lib,scripts,data,...} options, using as
282
+ # input a heady brew of prefix, exec_prefix, home, install_base,
283
+ # install_platbase, user-supplied versions of
284
+ # install_{purelib,platlib,lib,scripts,data,...}, and the
285
+ # INSTALL_SCHEME dictionary above. Phew!
286
+
287
+ self.dump_dirs("pre-finalize_{unix,other}")
288
+
289
+ if os.name == 'posix':
290
+ self.finalize_unix()
291
+ else:
292
+ self.finalize_other()
293
+
294
+ self.dump_dirs("post-finalize_{unix,other}()")
295
+
296
+ # Expand configuration variables, tilde, etc. in self.install_base
297
+ # and self.install_platbase -- that way, we can use $base or
298
+ # $platbase in the other installation directories and not worry
299
+ # about needing recursive variable expansion (shudder).
300
+
301
+ py_version = sys.version.split()[0]
302
+ (prefix, exec_prefix) = get_config_vars('prefix', 'exec_prefix')
303
+ try:
304
+ abiflags = sys.abiflags
305
+ except AttributeError:
306
+ # sys.abiflags may not be defined on all platforms.
307
+ abiflags = ''
308
+ self.config_vars = {'dist_name': self.distribution.get_name(),
309
+ 'dist_version': self.distribution.get_version(),
310
+ 'dist_fullname': self.distribution.get_fullname(),
311
+ 'py_version': py_version,
312
+ 'py_version_short': '%d.%d' % sys.version_info[:2],
313
+ 'py_version_nodot': '%d%d' % sys.version_info[:2],
314
+ 'sys_prefix': prefix,
315
+ 'prefix': prefix,
316
+ 'sys_exec_prefix': exec_prefix,
317
+ 'exec_prefix': exec_prefix,
318
+ 'abiflags': abiflags,
319
+ 'platlibdir': sys.platlibdir,
320
+ }
321
+
322
+ if HAS_USER_SITE:
323
+ self.config_vars['userbase'] = self.install_userbase
324
+ self.config_vars['usersite'] = self.install_usersite
325
+
326
+ if sysconfig.is_python_build(True):
327
+ self.config_vars['srcdir'] = sysconfig.get_config_var('srcdir')
328
+
329
+ self.expand_basedirs()
330
+
331
+ self.dump_dirs("post-expand_basedirs()")
332
+
333
+ # Now define config vars for the base directories so we can expand
334
+ # everything else.
335
+ self.config_vars['base'] = self.install_base
336
+ self.config_vars['platbase'] = self.install_platbase
337
+
338
+ if DEBUG:
339
+ from pprint import pprint
340
+ print("config vars:")
341
+ pprint(self.config_vars)
342
+
343
+ # Expand "~" and configuration variables in the installation
344
+ # directories.
345
+ self.expand_dirs()
346
+
347
+ self.dump_dirs("post-expand_dirs()")
348
+
349
+ # Create directories in the home dir:
350
+ if self.user:
351
+ self.create_home_path()
352
+
353
+ # Pick the actual directory to install all modules to: either
354
+ # install_purelib or install_platlib, depending on whether this
355
+ # module distribution is pure or not. Of course, if the user
356
+ # already specified install_lib, use their selection.
357
+ if self.install_lib is None:
358
+ if self.distribution.ext_modules: # has extensions: non-pure
359
+ self.install_lib = self.install_platlib
360
+ else:
361
+ self.install_lib = self.install_purelib
362
+
363
+
364
+ # Convert directories from Unix /-separated syntax to the local
365
+ # convention.
366
+ self.convert_paths('lib', 'purelib', 'platlib',
367
+ 'scripts', 'data', 'headers')
368
+ if HAS_USER_SITE:
369
+ self.convert_paths('userbase', 'usersite')
370
+
371
+ # Deprecated
372
+ # Well, we're not actually fully completely finalized yet: we still
373
+ # have to deal with 'extra_path', which is the hack for allowing
374
+ # non-packagized module distributions (hello, Numerical Python!) to
375
+ # get their own directories.
376
+ self.handle_extra_path()
377
+ self.install_libbase = self.install_lib # needed for .pth file
378
+ self.install_lib = os.path.join(self.install_lib, self.extra_dirs)
379
+
380
+ # If a new root directory was supplied, make all the installation
381
+ # dirs relative to it.
382
+ if self.root is not None:
383
+ self.change_roots('libbase', 'lib', 'purelib', 'platlib',
384
+ 'scripts', 'data', 'headers')
385
+
386
+ self.dump_dirs("after prepending root")
387
+
388
+ # Find out the build directories, ie. where to install from.
389
+ self.set_undefined_options('build',
390
+ ('build_base', 'build_base'),
391
+ ('build_lib', 'build_lib'))
392
+
393
+ # Punt on doc directories for now -- after all, we're punting on
394
+ # documentation completely!
395
+
396
+ def dump_dirs(self, msg):
397
+ """Dumps the list of user options."""
398
+ if not DEBUG:
399
+ return
400
+ from distutils.fancy_getopt import longopt_xlate
401
+ log.debug(msg + ":")
402
+ for opt in self.user_options:
403
+ opt_name = opt[0]
404
+ if opt_name[-1] == "=":
405
+ opt_name = opt_name[0:-1]
406
+ if opt_name in self.negative_opt:
407
+ opt_name = self.negative_opt[opt_name]
408
+ opt_name = opt_name.translate(longopt_xlate)
409
+ val = not getattr(self, opt_name)
410
+ else:
411
+ opt_name = opt_name.translate(longopt_xlate)
412
+ val = getattr(self, opt_name)
413
+ log.debug(" %s: %s", opt_name, val)
414
+
415
+ def finalize_unix(self):
416
+ """Finalizes options for posix platforms."""
417
+ if self.install_base is not None or self.install_platbase is not None:
418
+ if ((self.install_lib is None and
419
+ self.install_purelib is None and
420
+ self.install_platlib is None) or
421
+ self.install_headers is None or
422
+ self.install_scripts is None or
423
+ self.install_data is None):
424
+ raise DistutilsOptionError(
425
+ "install-base or install-platbase supplied, but "
426
+ "installation scheme is incomplete")
427
+ return
428
+
429
+ if self.user:
430
+ if self.install_userbase is None:
431
+ raise DistutilsPlatformError(
432
+ "User base directory is not specified")
433
+ self.install_base = self.install_platbase = self.install_userbase
434
+ self.select_scheme("unix_user")
435
+ elif self.home is not None:
436
+ self.install_base = self.install_platbase = self.home
437
+ self.select_scheme("unix_home")
438
+ else:
439
+ if self.prefix is None:
440
+ if self.exec_prefix is not None:
441
+ raise DistutilsOptionError(
442
+ "must not supply exec-prefix without prefix")
443
+
444
+ self.prefix = os.path.normpath(sys.prefix)
445
+ self.exec_prefix = os.path.normpath(sys.exec_prefix)
446
+
447
+ else:
448
+ if self.exec_prefix is None:
449
+ self.exec_prefix = self.prefix
450
+
451
+ self.install_base = self.prefix
452
+ self.install_platbase = self.exec_prefix
453
+ self.select_scheme("unix_prefix")
454
+
455
+ def finalize_other(self):
456
+ """Finalizes options for non-posix platforms"""
457
+ if self.user:
458
+ if self.install_userbase is None:
459
+ raise DistutilsPlatformError(
460
+ "User base directory is not specified")
461
+ self.install_base = self.install_platbase = self.install_userbase
462
+ self.select_scheme(os.name + "_user")
463
+ elif self.home is not None:
464
+ self.install_base = self.install_platbase = self.home
465
+ self.select_scheme("unix_home")
466
+ else:
467
+ if self.prefix is None:
468
+ self.prefix = os.path.normpath(sys.prefix)
469
+
470
+ self.install_base = self.install_platbase = self.prefix
471
+ try:
472
+ self.select_scheme(os.name)
473
+ except KeyError:
474
+ raise DistutilsPlatformError(
475
+ "I don't know how to install stuff on '%s'" % os.name)
476
+
477
+ def select_scheme(self, name):
478
+ """Sets the install directories by applying the install schemes."""
479
+ # it's the caller's problem if they supply a bad name!
480
+ scheme = INSTALL_SCHEMES[name]
481
+ for key in SCHEME_KEYS:
482
+ attrname = 'install_' + key
483
+ if getattr(self, attrname) is None:
484
+ setattr(self, attrname, scheme[key])
485
+
486
+ def _expand_attrs(self, attrs):
487
+ for attr in attrs:
488
+ val = getattr(self, attr)
489
+ if val is not None:
490
+ if os.name == 'posix' or os.name == 'nt':
491
+ val = os.path.expanduser(val)
492
+ val = subst_vars(val, self.config_vars)
493
+ setattr(self, attr, val)
494
+
495
+ def expand_basedirs(self):
496
+ """Calls `os.path.expanduser` on install_base, install_platbase and
497
+ root."""
498
+ self._expand_attrs(['install_base', 'install_platbase', 'root'])
499
+
500
+ def expand_dirs(self):
501
+ """Calls `os.path.expanduser` on install dirs."""
502
+ self._expand_attrs(['install_purelib', 'install_platlib',
503
+ 'install_lib', 'install_headers',
504
+ 'install_scripts', 'install_data',])
505
+
506
+ def convert_paths(self, *names):
507
+ """Call `convert_path` over `names`."""
508
+ for name in names:
509
+ attr = "install_" + name
510
+ setattr(self, attr, convert_path(getattr(self, attr)))
511
+
512
+ def handle_extra_path(self):
513
+ """Set `path_file` and `extra_dirs` using `extra_path`."""
514
+ if self.extra_path is None:
515
+ self.extra_path = self.distribution.extra_path
516
+
517
+ if self.extra_path is not None:
518
+ log.warn(
519
+ "Distribution option extra_path is deprecated. "
520
+ "See issue27919 for details."
521
+ )
522
+ if isinstance(self.extra_path, str):
523
+ self.extra_path = self.extra_path.split(',')
524
+
525
+ if len(self.extra_path) == 1:
526
+ path_file = extra_dirs = self.extra_path[0]
527
+ elif len(self.extra_path) == 2:
528
+ path_file, extra_dirs = self.extra_path
529
+ else:
530
+ raise DistutilsOptionError(
531
+ "'extra_path' option must be a list, tuple, or "
532
+ "comma-separated string with 1 or 2 elements")
533
+
534
+ # convert to local form in case Unix notation used (as it
535
+ # should be in setup scripts)
536
+ extra_dirs = convert_path(extra_dirs)
537
+ else:
538
+ path_file = None
539
+ extra_dirs = ''
540
+
541
+ # XXX should we warn if path_file and not extra_dirs? (in which
542
+ # case the path file would be harmless but pointless)
543
+ self.path_file = path_file
544
+ self.extra_dirs = extra_dirs
545
+
546
+ def change_roots(self, *names):
547
+ """Change the install directories pointed by name using root."""
548
+ for name in names:
549
+ attr = "install_" + name
550
+ setattr(self, attr, change_root(self.root, getattr(self, attr)))
551
+
552
+ def create_home_path(self):
553
+ """Create directories under ~."""
554
+ if not self.user:
555
+ return
556
+ home = convert_path(os.path.expanduser("~"))
557
+ for name, path in self.config_vars.items():
558
+ if path.startswith(home) and not os.path.isdir(path):
559
+ self.debug_print("os.makedirs('%s', 0o700)" % path)
560
+ os.makedirs(path, 0o700)
561
+
562
+ # -- Command execution methods -------------------------------------
563
+
564
+ def run(self):
565
+ """Runs the command."""
566
+ # Obviously have to build before we can install
567
+ if not self.skip_build:
568
+ self.run_command('build')
569
+ # If we built for any other platform, we can't install.
570
+ build_plat = self.distribution.get_command_obj('build').plat_name
571
+ # check warn_dir - it is a clue that the 'install' is happening
572
+ # internally, and not to sys.path, so we don't check the platform
573
+ # matches what we are running.
574
+ if self.warn_dir and build_plat != get_platform():
575
+ raise DistutilsPlatformError("Can't install when "
576
+ "cross-compiling")
577
+
578
+ # Run all sub-commands (at least those that need to be run)
579
+ for cmd_name in self.get_sub_commands():
580
+ self.run_command(cmd_name)
581
+
582
+ if self.path_file:
583
+ self.create_path_file()
584
+
585
+ # write list of installed files, if requested.
586
+ if self.record:
587
+ outputs = self.get_outputs()
588
+ if self.root: # strip any package prefix
589
+ root_len = len(self.root)
590
+ for counter in range(len(outputs)):
591
+ outputs[counter] = outputs[counter][root_len:]
592
+ self.execute(write_file,
593
+ (self.record, outputs),
594
+ "writing list of installed files to '%s'" %
595
+ self.record)
596
+
597
+ sys_path = map(os.path.normpath, sys.path)
598
+ sys_path = map(os.path.normcase, sys_path)
599
+ install_lib = os.path.normcase(os.path.normpath(self.install_lib))
600
+ if (self.warn_dir and
601
+ not (self.path_file and self.install_path_file) and
602
+ install_lib not in sys_path):
603
+ log.debug(("modules installed to '%s', which is not in "
604
+ "Python's module search path (sys.path) -- "
605
+ "you'll have to change the search path yourself"),
606
+ self.install_lib)
607
+
608
+ def create_path_file(self):
609
+ """Creates the .pth file"""
610
+ filename = os.path.join(self.install_libbase,
611
+ self.path_file + ".pth")
612
+ if self.install_path_file:
613
+ self.execute(write_file,
614
+ (filename, [self.extra_dirs]),
615
+ "creating %s" % filename)
616
+ else:
617
+ self.warn("path file '%s' not created" % filename)
618
+
619
+
620
+ # -- Reporting methods ---------------------------------------------
621
+
622
+ def get_outputs(self):
623
+ """Assembles the outputs of all the sub-commands."""
624
+ outputs = []
625
+ for cmd_name in self.get_sub_commands():
626
+ cmd = self.get_finalized_command(cmd_name)
627
+ # Add the contents of cmd.get_outputs(), ensuring
628
+ # that outputs doesn't contain duplicate entries
629
+ for filename in cmd.get_outputs():
630
+ if filename not in outputs:
631
+ outputs.append(filename)
632
+
633
+ if self.path_file and self.install_path_file:
634
+ outputs.append(os.path.join(self.install_libbase,
635
+ self.path_file + ".pth"))
636
+
637
+ return outputs
638
+
639
+ def get_inputs(self):
640
+ """Returns the inputs of all the sub-commands"""
641
+ # XXX gee, this looks familiar ;-(
642
+ inputs = []
643
+ for cmd_name in self.get_sub_commands():
644
+ cmd = self.get_finalized_command(cmd_name)
645
+ inputs.extend(cmd.get_inputs())
646
+
647
+ return inputs
648
+
649
+ # -- Predicates for sub-command list -------------------------------
650
+
651
+ def has_lib(self):
652
+ """Returns true if the current distribution has any Python
653
+ modules to install."""
654
+ return (self.distribution.has_pure_modules() or
655
+ self.distribution.has_ext_modules())
656
+
657
+ def has_headers(self):
658
+ """Returns true if the current distribution has any headers to
659
+ install."""
660
+ return self.distribution.has_headers()
661
+
662
+ def has_scripts(self):
663
+ """Returns true if the current distribution has any scripts to.
664
+ install."""
665
+ return self.distribution.has_scripts()
666
+
667
+ def has_data(self):
668
+ """Returns true if the current distribution has any data to.
669
+ install."""
670
+ return self.distribution.has_data_files()
671
+
672
+ # 'sub_commands': a list of commands this command might have to run to
673
+ # get its work done. See cmd.py for more info.
674
+ sub_commands = [('install_lib', has_lib),
675
+ ('install_headers', has_headers),
676
+ ('install_scripts', has_scripts),
677
+ ('install_data', has_data),
678
+ ('install_egg_info', lambda self:True),
679
+ ]
parrot/lib/python3.10/distutils/command/install_data.py ADDED
@@ -0,0 +1,79 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ """distutils.command.install_data
2
+
3
+ Implements the Distutils 'install_data' command, for installing
4
+ platform-independent data files."""
5
+
6
+ # contributed by Bastian Kleineidam
7
+
8
+ import os
9
+ from distutils.core import Command
10
+ from distutils.util import change_root, convert_path
11
+
12
+ class install_data(Command):
13
+
14
+ description = "install data files"
15
+
16
+ user_options = [
17
+ ('install-dir=', 'd',
18
+ "base directory for installing data files "
19
+ "(default: installation base dir)"),
20
+ ('root=', None,
21
+ "install everything relative to this alternate root directory"),
22
+ ('force', 'f', "force installation (overwrite existing files)"),
23
+ ]
24
+
25
+ boolean_options = ['force']
26
+
27
+ def initialize_options(self):
28
+ self.install_dir = None
29
+ self.outfiles = []
30
+ self.root = None
31
+ self.force = 0
32
+ self.data_files = self.distribution.data_files
33
+ self.warn_dir = 1
34
+
35
+ def finalize_options(self):
36
+ self.set_undefined_options('install',
37
+ ('install_data', 'install_dir'),
38
+ ('root', 'root'),
39
+ ('force', 'force'),
40
+ )
41
+
42
+ def run(self):
43
+ self.mkpath(self.install_dir)
44
+ for f in self.data_files:
45
+ if isinstance(f, str):
46
+ # it's a simple file, so copy it
47
+ f = convert_path(f)
48
+ if self.warn_dir:
49
+ self.warn("setup script did not provide a directory for "
50
+ "'%s' -- installing right in '%s'" %
51
+ (f, self.install_dir))
52
+ (out, _) = self.copy_file(f, self.install_dir)
53
+ self.outfiles.append(out)
54
+ else:
55
+ # it's a tuple with path to install to and a list of files
56
+ dir = convert_path(f[0])
57
+ if not os.path.isabs(dir):
58
+ dir = os.path.join(self.install_dir, dir)
59
+ elif self.root:
60
+ dir = change_root(self.root, dir)
61
+ self.mkpath(dir)
62
+
63
+ if f[1] == []:
64
+ # If there are no files listed, the user must be
65
+ # trying to create an empty directory, so add the
66
+ # directory to the list of output files.
67
+ self.outfiles.append(dir)
68
+ else:
69
+ # Copy files, adding them to the list of output files.
70
+ for data in f[1]:
71
+ data = convert_path(data)
72
+ (out, _) = self.copy_file(data, dir)
73
+ self.outfiles.append(out)
74
+
75
+ def get_inputs(self):
76
+ return self.data_files or []
77
+
78
+ def get_outputs(self):
79
+ return self.outfiles
parrot/lib/python3.10/distutils/command/install_headers.py ADDED
@@ -0,0 +1,47 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ """distutils.command.install_headers
2
+
3
+ Implements the Distutils 'install_headers' command, to install C/C++ header
4
+ files to the Python include directory."""
5
+
6
+ from distutils.core import Command
7
+
8
+
9
+ # XXX force is never used
10
+ class install_headers(Command):
11
+
12
+ description = "install C/C++ header files"
13
+
14
+ user_options = [('install-dir=', 'd',
15
+ "directory to install header files to"),
16
+ ('force', 'f',
17
+ "force installation (overwrite existing files)"),
18
+ ]
19
+
20
+ boolean_options = ['force']
21
+
22
+ def initialize_options(self):
23
+ self.install_dir = None
24
+ self.force = 0
25
+ self.outfiles = []
26
+
27
+ def finalize_options(self):
28
+ self.set_undefined_options('install',
29
+ ('install_headers', 'install_dir'),
30
+ ('force', 'force'))
31
+
32
+
33
+ def run(self):
34
+ headers = self.distribution.headers
35
+ if not headers:
36
+ return
37
+
38
+ self.mkpath(self.install_dir)
39
+ for header in headers:
40
+ (out, _) = self.copy_file(header, self.install_dir)
41
+ self.outfiles.append(out)
42
+
43
+ def get_inputs(self):
44
+ return self.distribution.headers or []
45
+
46
+ def get_outputs(self):
47
+ return self.outfiles
parrot/lib/python3.10/distutils/command/install_scripts.py ADDED
@@ -0,0 +1,60 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ """distutils.command.install_scripts
2
+
3
+ Implements the Distutils 'install_scripts' command, for installing
4
+ Python scripts."""
5
+
6
+ # contributed by Bastian Kleineidam
7
+
8
+ import os
9
+ from distutils.core import Command
10
+ from distutils import log
11
+ from stat import ST_MODE
12
+
13
+
14
+ class install_scripts(Command):
15
+
16
+ description = "install scripts (Python or otherwise)"
17
+
18
+ user_options = [
19
+ ('install-dir=', 'd', "directory to install scripts to"),
20
+ ('build-dir=','b', "build directory (where to install from)"),
21
+ ('force', 'f', "force installation (overwrite existing files)"),
22
+ ('skip-build', None, "skip the build steps"),
23
+ ]
24
+
25
+ boolean_options = ['force', 'skip-build']
26
+
27
+ def initialize_options(self):
28
+ self.install_dir = None
29
+ self.force = 0
30
+ self.build_dir = None
31
+ self.skip_build = None
32
+
33
+ def finalize_options(self):
34
+ self.set_undefined_options('build', ('build_scripts', 'build_dir'))
35
+ self.set_undefined_options('install',
36
+ ('install_scripts', 'install_dir'),
37
+ ('force', 'force'),
38
+ ('skip_build', 'skip_build'),
39
+ )
40
+
41
+ def run(self):
42
+ if not self.skip_build:
43
+ self.run_command('build_scripts')
44
+ self.outfiles = self.copy_tree(self.build_dir, self.install_dir)
45
+ if os.name == 'posix':
46
+ # Set the executable bits (owner, group, and world) on
47
+ # all the scripts we just installed.
48
+ for file in self.get_outputs():
49
+ if self.dry_run:
50
+ log.info("changing mode of %s", file)
51
+ else:
52
+ mode = ((os.stat(file)[ST_MODE]) | 0o555) & 0o7777
53
+ log.info("changing mode of %s to %o", file, mode)
54
+ os.chmod(file, mode)
55
+
56
+ def get_inputs(self):
57
+ return self.distribution.scripts or []
58
+
59
+ def get_outputs(self):
60
+ return self.outfiles or []
parrot/lib/python3.10/distutils/command/sdist.py ADDED
@@ -0,0 +1,494 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ """distutils.command.sdist
2
+
3
+ Implements the Distutils 'sdist' command (create a source distribution)."""
4
+
5
+ import os
6
+ import sys
7
+ from glob import glob
8
+ from warnings import warn
9
+
10
+ from distutils.core import Command
11
+ from distutils import dir_util
12
+ from distutils import file_util
13
+ from distutils import archive_util
14
+ from distutils.text_file import TextFile
15
+ from distutils.filelist import FileList
16
+ from distutils import log
17
+ from distutils.util import convert_path
18
+ from distutils.errors import DistutilsTemplateError, DistutilsOptionError
19
+
20
+
21
+ def show_formats():
22
+ """Print all possible values for the 'formats' option (used by
23
+ the "--help-formats" command-line option).
24
+ """
25
+ from distutils.fancy_getopt import FancyGetopt
26
+ from distutils.archive_util import ARCHIVE_FORMATS
27
+ formats = []
28
+ for format in ARCHIVE_FORMATS.keys():
29
+ formats.append(("formats=" + format, None,
30
+ ARCHIVE_FORMATS[format][2]))
31
+ formats.sort()
32
+ FancyGetopt(formats).print_help(
33
+ "List of available source distribution formats:")
34
+
35
+
36
+ class sdist(Command):
37
+
38
+ description = "create a source distribution (tarball, zip file, etc.)"
39
+
40
+ def checking_metadata(self):
41
+ """Callable used for the check sub-command.
42
+
43
+ Placed here so user_options can view it"""
44
+ return self.metadata_check
45
+
46
+ user_options = [
47
+ ('template=', 't',
48
+ "name of manifest template file [default: MANIFEST.in]"),
49
+ ('manifest=', 'm',
50
+ "name of manifest file [default: MANIFEST]"),
51
+ ('use-defaults', None,
52
+ "include the default file set in the manifest "
53
+ "[default; disable with --no-defaults]"),
54
+ ('no-defaults', None,
55
+ "don't include the default file set"),
56
+ ('prune', None,
57
+ "specifically exclude files/directories that should not be "
58
+ "distributed (build tree, RCS/CVS dirs, etc.) "
59
+ "[default; disable with --no-prune]"),
60
+ ('no-prune', None,
61
+ "don't automatically exclude anything"),
62
+ ('manifest-only', 'o',
63
+ "just regenerate the manifest and then stop "
64
+ "(implies --force-manifest)"),
65
+ ('force-manifest', 'f',
66
+ "forcibly regenerate the manifest and carry on as usual. "
67
+ "Deprecated: now the manifest is always regenerated."),
68
+ ('formats=', None,
69
+ "formats for source distribution (comma-separated list)"),
70
+ ('keep-temp', 'k',
71
+ "keep the distribution tree around after creating " +
72
+ "archive file(s)"),
73
+ ('dist-dir=', 'd',
74
+ "directory to put the source distribution archive(s) in "
75
+ "[default: dist]"),
76
+ ('metadata-check', None,
77
+ "Ensure that all required elements of meta-data "
78
+ "are supplied. Warn if any missing. [default]"),
79
+ ('owner=', 'u',
80
+ "Owner name used when creating a tar file [default: current user]"),
81
+ ('group=', 'g',
82
+ "Group name used when creating a tar file [default: current group]"),
83
+ ]
84
+
85
+ boolean_options = ['use-defaults', 'prune',
86
+ 'manifest-only', 'force-manifest',
87
+ 'keep-temp', 'metadata-check']
88
+
89
+ help_options = [
90
+ ('help-formats', None,
91
+ "list available distribution formats", show_formats),
92
+ ]
93
+
94
+ negative_opt = {'no-defaults': 'use-defaults',
95
+ 'no-prune': 'prune' }
96
+
97
+ sub_commands = [('check', checking_metadata)]
98
+
99
+ READMES = ('README', 'README.txt', 'README.rst')
100
+
101
+ def initialize_options(self):
102
+ # 'template' and 'manifest' are, respectively, the names of
103
+ # the manifest template and manifest file.
104
+ self.template = None
105
+ self.manifest = None
106
+
107
+ # 'use_defaults': if true, we will include the default file set
108
+ # in the manifest
109
+ self.use_defaults = 1
110
+ self.prune = 1
111
+
112
+ self.manifest_only = 0
113
+ self.force_manifest = 0
114
+
115
+ self.formats = ['gztar']
116
+ self.keep_temp = 0
117
+ self.dist_dir = None
118
+
119
+ self.archive_files = None
120
+ self.metadata_check = 1
121
+ self.owner = None
122
+ self.group = None
123
+
124
+ def finalize_options(self):
125
+ if self.manifest is None:
126
+ self.manifest = "MANIFEST"
127
+ if self.template is None:
128
+ self.template = "MANIFEST.in"
129
+
130
+ self.ensure_string_list('formats')
131
+
132
+ bad_format = archive_util.check_archive_formats(self.formats)
133
+ if bad_format:
134
+ raise DistutilsOptionError(
135
+ "unknown archive format '%s'" % bad_format)
136
+
137
+ if self.dist_dir is None:
138
+ self.dist_dir = "dist"
139
+
140
+ def run(self):
141
+ # 'filelist' contains the list of files that will make up the
142
+ # manifest
143
+ self.filelist = FileList()
144
+
145
+ # Run sub commands
146
+ for cmd_name in self.get_sub_commands():
147
+ self.run_command(cmd_name)
148
+
149
+ # Do whatever it takes to get the list of files to process
150
+ # (process the manifest template, read an existing manifest,
151
+ # whatever). File list is accumulated in 'self.filelist'.
152
+ self.get_file_list()
153
+
154
+ # If user just wanted us to regenerate the manifest, stop now.
155
+ if self.manifest_only:
156
+ return
157
+
158
+ # Otherwise, go ahead and create the source distribution tarball,
159
+ # or zipfile, or whatever.
160
+ self.make_distribution()
161
+
162
+ def check_metadata(self):
163
+ """Deprecated API."""
164
+ warn("distutils.command.sdist.check_metadata is deprecated, \
165
+ use the check command instead", PendingDeprecationWarning)
166
+ check = self.distribution.get_command_obj('check')
167
+ check.ensure_finalized()
168
+ check.run()
169
+
170
+ def get_file_list(self):
171
+ """Figure out the list of files to include in the source
172
+ distribution, and put it in 'self.filelist'. This might involve
173
+ reading the manifest template (and writing the manifest), or just
174
+ reading the manifest, or just using the default file set -- it all
175
+ depends on the user's options.
176
+ """
177
+ # new behavior when using a template:
178
+ # the file list is recalculated every time because
179
+ # even if MANIFEST.in or setup.py are not changed
180
+ # the user might have added some files in the tree that
181
+ # need to be included.
182
+ #
183
+ # This makes --force the default and only behavior with templates.
184
+ template_exists = os.path.isfile(self.template)
185
+ if not template_exists and self._manifest_is_not_generated():
186
+ self.read_manifest()
187
+ self.filelist.sort()
188
+ self.filelist.remove_duplicates()
189
+ return
190
+
191
+ if not template_exists:
192
+ self.warn(("manifest template '%s' does not exist " +
193
+ "(using default file list)") %
194
+ self.template)
195
+ self.filelist.findall()
196
+
197
+ if self.use_defaults:
198
+ self.add_defaults()
199
+
200
+ if template_exists:
201
+ self.read_template()
202
+
203
+ if self.prune:
204
+ self.prune_file_list()
205
+
206
+ self.filelist.sort()
207
+ self.filelist.remove_duplicates()
208
+ self.write_manifest()
209
+
210
+ def add_defaults(self):
211
+ """Add all the default files to self.filelist:
212
+ - README or README.txt
213
+ - setup.py
214
+ - test/test*.py
215
+ - all pure Python modules mentioned in setup script
216
+ - all files pointed by package_data (build_py)
217
+ - all files defined in data_files.
218
+ - all files defined as scripts.
219
+ - all C sources listed as part of extensions or C libraries
220
+ in the setup script (doesn't catch C headers!)
221
+ Warns if (README or README.txt) or setup.py are missing; everything
222
+ else is optional.
223
+ """
224
+ self._add_defaults_standards()
225
+ self._add_defaults_optional()
226
+ self._add_defaults_python()
227
+ self._add_defaults_data_files()
228
+ self._add_defaults_ext()
229
+ self._add_defaults_c_libs()
230
+ self._add_defaults_scripts()
231
+
232
+ @staticmethod
233
+ def _cs_path_exists(fspath):
234
+ """
235
+ Case-sensitive path existence check
236
+
237
+ >>> sdist._cs_path_exists(__file__)
238
+ True
239
+ >>> sdist._cs_path_exists(__file__.upper())
240
+ False
241
+ """
242
+ if not os.path.exists(fspath):
243
+ return False
244
+ # make absolute so we always have a directory
245
+ abspath = os.path.abspath(fspath)
246
+ directory, filename = os.path.split(abspath)
247
+ return filename in os.listdir(directory)
248
+
249
+ def _add_defaults_standards(self):
250
+ standards = [self.READMES, self.distribution.script_name]
251
+ for fn in standards:
252
+ if isinstance(fn, tuple):
253
+ alts = fn
254
+ got_it = False
255
+ for fn in alts:
256
+ if self._cs_path_exists(fn):
257
+ got_it = True
258
+ self.filelist.append(fn)
259
+ break
260
+
261
+ if not got_it:
262
+ self.warn("standard file not found: should have one of " +
263
+ ', '.join(alts))
264
+ else:
265
+ if self._cs_path_exists(fn):
266
+ self.filelist.append(fn)
267
+ else:
268
+ self.warn("standard file '%s' not found" % fn)
269
+
270
+ def _add_defaults_optional(self):
271
+ optional = ['test/test*.py', 'setup.cfg']
272
+ for pattern in optional:
273
+ files = filter(os.path.isfile, glob(pattern))
274
+ self.filelist.extend(files)
275
+
276
+ def _add_defaults_python(self):
277
+ # build_py is used to get:
278
+ # - python modules
279
+ # - files defined in package_data
280
+ build_py = self.get_finalized_command('build_py')
281
+
282
+ # getting python files
283
+ if self.distribution.has_pure_modules():
284
+ self.filelist.extend(build_py.get_source_files())
285
+
286
+ # getting package_data files
287
+ # (computed in build_py.data_files by build_py.finalize_options)
288
+ for pkg, src_dir, build_dir, filenames in build_py.data_files:
289
+ for filename in filenames:
290
+ self.filelist.append(os.path.join(src_dir, filename))
291
+
292
+ def _add_defaults_data_files(self):
293
+ # getting distribution.data_files
294
+ if self.distribution.has_data_files():
295
+ for item in self.distribution.data_files:
296
+ if isinstance(item, str):
297
+ # plain file
298
+ item = convert_path(item)
299
+ if os.path.isfile(item):
300
+ self.filelist.append(item)
301
+ else:
302
+ # a (dirname, filenames) tuple
303
+ dirname, filenames = item
304
+ for f in filenames:
305
+ f = convert_path(f)
306
+ if os.path.isfile(f):
307
+ self.filelist.append(f)
308
+
309
+ def _add_defaults_ext(self):
310
+ if self.distribution.has_ext_modules():
311
+ build_ext = self.get_finalized_command('build_ext')
312
+ self.filelist.extend(build_ext.get_source_files())
313
+
314
+ def _add_defaults_c_libs(self):
315
+ if self.distribution.has_c_libraries():
316
+ build_clib = self.get_finalized_command('build_clib')
317
+ self.filelist.extend(build_clib.get_source_files())
318
+
319
+ def _add_defaults_scripts(self):
320
+ if self.distribution.has_scripts():
321
+ build_scripts = self.get_finalized_command('build_scripts')
322
+ self.filelist.extend(build_scripts.get_source_files())
323
+
324
+ def read_template(self):
325
+ """Read and parse manifest template file named by self.template.
326
+
327
+ (usually "MANIFEST.in") The parsing and processing is done by
328
+ 'self.filelist', which updates itself accordingly.
329
+ """
330
+ log.info("reading manifest template '%s'", self.template)
331
+ template = TextFile(self.template, strip_comments=1, skip_blanks=1,
332
+ join_lines=1, lstrip_ws=1, rstrip_ws=1,
333
+ collapse_join=1)
334
+
335
+ try:
336
+ while True:
337
+ line = template.readline()
338
+ if line is None: # end of file
339
+ break
340
+
341
+ try:
342
+ self.filelist.process_template_line(line)
343
+ # the call above can raise a DistutilsTemplateError for
344
+ # malformed lines, or a ValueError from the lower-level
345
+ # convert_path function
346
+ except (DistutilsTemplateError, ValueError) as msg:
347
+ self.warn("%s, line %d: %s" % (template.filename,
348
+ template.current_line,
349
+ msg))
350
+ finally:
351
+ template.close()
352
+
353
+ def prune_file_list(self):
354
+ """Prune off branches that might slip into the file list as created
355
+ by 'read_template()', but really don't belong there:
356
+ * the build tree (typically "build")
357
+ * the release tree itself (only an issue if we ran "sdist"
358
+ previously with --keep-temp, or it aborted)
359
+ * any RCS, CVS, .svn, .hg, .git, .bzr, _darcs directories
360
+ """
361
+ build = self.get_finalized_command('build')
362
+ base_dir = self.distribution.get_fullname()
363
+
364
+ self.filelist.exclude_pattern(None, prefix=build.build_base)
365
+ self.filelist.exclude_pattern(None, prefix=base_dir)
366
+
367
+ if sys.platform == 'win32':
368
+ seps = r'/|\\'
369
+ else:
370
+ seps = '/'
371
+
372
+ vcs_dirs = ['RCS', 'CVS', r'\.svn', r'\.hg', r'\.git', r'\.bzr',
373
+ '_darcs']
374
+ vcs_ptrn = r'(^|%s)(%s)(%s).*' % (seps, '|'.join(vcs_dirs), seps)
375
+ self.filelist.exclude_pattern(vcs_ptrn, is_regex=1)
376
+
377
+ def write_manifest(self):
378
+ """Write the file list in 'self.filelist' (presumably as filled in
379
+ by 'add_defaults()' and 'read_template()') to the manifest file
380
+ named by 'self.manifest'.
381
+ """
382
+ if self._manifest_is_not_generated():
383
+ log.info("not writing to manually maintained "
384
+ "manifest file '%s'" % self.manifest)
385
+ return
386
+
387
+ content = self.filelist.files[:]
388
+ content.insert(0, '# file GENERATED by distutils, do NOT edit')
389
+ self.execute(file_util.write_file, (self.manifest, content),
390
+ "writing manifest file '%s'" % self.manifest)
391
+
392
+ def _manifest_is_not_generated(self):
393
+ # check for special comment used in 3.1.3 and higher
394
+ if not os.path.isfile(self.manifest):
395
+ return False
396
+
397
+ fp = open(self.manifest)
398
+ try:
399
+ first_line = fp.readline()
400
+ finally:
401
+ fp.close()
402
+ return first_line != '# file GENERATED by distutils, do NOT edit\n'
403
+
404
+ def read_manifest(self):
405
+ """Read the manifest file (named by 'self.manifest') and use it to
406
+ fill in 'self.filelist', the list of files to include in the source
407
+ distribution.
408
+ """
409
+ log.info("reading manifest file '%s'", self.manifest)
410
+ with open(self.manifest) as manifest:
411
+ for line in manifest:
412
+ # ignore comments and blank lines
413
+ line = line.strip()
414
+ if line.startswith('#') or not line:
415
+ continue
416
+ self.filelist.append(line)
417
+
418
+ def make_release_tree(self, base_dir, files):
419
+ """Create the directory tree that will become the source
420
+ distribution archive. All directories implied by the filenames in
421
+ 'files' are created under 'base_dir', and then we hard link or copy
422
+ (if hard linking is unavailable) those files into place.
423
+ Essentially, this duplicates the developer's source tree, but in a
424
+ directory named after the distribution, containing only the files
425
+ to be distributed.
426
+ """
427
+ # Create all the directories under 'base_dir' necessary to
428
+ # put 'files' there; the 'mkpath()' is just so we don't die
429
+ # if the manifest happens to be empty.
430
+ self.mkpath(base_dir)
431
+ dir_util.create_tree(base_dir, files, dry_run=self.dry_run)
432
+
433
+ # And walk over the list of files, either making a hard link (if
434
+ # os.link exists) to each one that doesn't already exist in its
435
+ # corresponding location under 'base_dir', or copying each file
436
+ # that's out-of-date in 'base_dir'. (Usually, all files will be
437
+ # out-of-date, because by default we blow away 'base_dir' when
438
+ # we're done making the distribution archives.)
439
+
440
+ if hasattr(os, 'link'): # can make hard links on this system
441
+ link = 'hard'
442
+ msg = "making hard links in %s..." % base_dir
443
+ else: # nope, have to copy
444
+ link = None
445
+ msg = "copying files to %s..." % base_dir
446
+
447
+ if not files:
448
+ log.warn("no files to distribute -- empty manifest?")
449
+ else:
450
+ log.info(msg)
451
+ for file in files:
452
+ if not os.path.isfile(file):
453
+ log.warn("'%s' not a regular file -- skipping", file)
454
+ else:
455
+ dest = os.path.join(base_dir, file)
456
+ self.copy_file(file, dest, link=link)
457
+
458
+ self.distribution.metadata.write_pkg_info(base_dir)
459
+
460
+ def make_distribution(self):
461
+ """Create the source distribution(s). First, we create the release
462
+ tree with 'make_release_tree()'; then, we create all required
463
+ archive files (according to 'self.formats') from the release tree.
464
+ Finally, we clean up by blowing away the release tree (unless
465
+ 'self.keep_temp' is true). The list of archive files created is
466
+ stored so it can be retrieved later by 'get_archive_files()'.
467
+ """
468
+ # Don't warn about missing meta-data here -- should be (and is!)
469
+ # done elsewhere.
470
+ base_dir = self.distribution.get_fullname()
471
+ base_name = os.path.join(self.dist_dir, base_dir)
472
+
473
+ self.make_release_tree(base_dir, self.filelist.files)
474
+ archive_files = [] # remember names of files we create
475
+ # tar archive must be created last to avoid overwrite and remove
476
+ if 'tar' in self.formats:
477
+ self.formats.append(self.formats.pop(self.formats.index('tar')))
478
+
479
+ for fmt in self.formats:
480
+ file = self.make_archive(base_name, fmt, base_dir=base_dir,
481
+ owner=self.owner, group=self.group)
482
+ archive_files.append(file)
483
+ self.distribution.dist_files.append(('sdist', '', file))
484
+
485
+ self.archive_files = archive_files
486
+
487
+ if not self.keep_temp:
488
+ dir_util.remove_tree(base_dir, dry_run=self.dry_run)
489
+
490
+ def get_archive_files(self):
491
+ """Return the list of archive files created when the command
492
+ was run, or None if the command hasn't run yet.
493
+ """
494
+ return self.archive_files
parrot/lib/python3.10/distutils/command/upload.py ADDED
@@ -0,0 +1,215 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ """
2
+ distutils.command.upload
3
+
4
+ Implements the Distutils 'upload' subcommand (upload package to a package
5
+ index).
6
+ """
7
+
8
+ import os
9
+ import io
10
+ import hashlib
11
+ from base64 import standard_b64encode
12
+ from urllib.error import HTTPError
13
+ from urllib.request import urlopen, Request
14
+ from urllib.parse import urlparse
15
+ from distutils.errors import DistutilsError, DistutilsOptionError
16
+ from distutils.core import PyPIRCCommand
17
+ from distutils.spawn import spawn
18
+ from distutils import log
19
+
20
+
21
+ # PyPI Warehouse supports MD5, SHA256, and Blake2 (blake2-256)
22
+ # https://bugs.python.org/issue40698
23
+ _FILE_CONTENT_DIGESTS = {
24
+ "md5_digest": getattr(hashlib, "md5", None),
25
+ "sha256_digest": getattr(hashlib, "sha256", None),
26
+ "blake2_256_digest": getattr(hashlib, "blake2b", None),
27
+ }
28
+
29
+
30
+ class upload(PyPIRCCommand):
31
+
32
+ description = "upload binary package to PyPI"
33
+
34
+ user_options = PyPIRCCommand.user_options + [
35
+ ('sign', 's',
36
+ 'sign files to upload using gpg'),
37
+ ('identity=', 'i', 'GPG identity used to sign files'),
38
+ ]
39
+
40
+ boolean_options = PyPIRCCommand.boolean_options + ['sign']
41
+
42
+ def initialize_options(self):
43
+ PyPIRCCommand.initialize_options(self)
44
+ self.username = ''
45
+ self.password = ''
46
+ self.show_response = 0
47
+ self.sign = False
48
+ self.identity = None
49
+
50
+ def finalize_options(self):
51
+ PyPIRCCommand.finalize_options(self)
52
+ if self.identity and not self.sign:
53
+ raise DistutilsOptionError(
54
+ "Must use --sign for --identity to have meaning"
55
+ )
56
+ config = self._read_pypirc()
57
+ if config != {}:
58
+ self.username = config['username']
59
+ self.password = config['password']
60
+ self.repository = config['repository']
61
+ self.realm = config['realm']
62
+
63
+ # getting the password from the distribution
64
+ # if previously set by the register command
65
+ if not self.password and self.distribution.password:
66
+ self.password = self.distribution.password
67
+
68
+ def run(self):
69
+ if not self.distribution.dist_files:
70
+ msg = ("Must create and upload files in one command "
71
+ "(e.g. setup.py sdist upload)")
72
+ raise DistutilsOptionError(msg)
73
+ for command, pyversion, filename in self.distribution.dist_files:
74
+ self.upload_file(command, pyversion, filename)
75
+
76
+ def upload_file(self, command, pyversion, filename):
77
+ # Makes sure the repository URL is compliant
78
+ schema, netloc, url, params, query, fragments = \
79
+ urlparse(self.repository)
80
+ if params or query or fragments:
81
+ raise AssertionError("Incompatible url %s" % self.repository)
82
+
83
+ if schema not in ('http', 'https'):
84
+ raise AssertionError("unsupported schema " + schema)
85
+
86
+ # Sign if requested
87
+ if self.sign:
88
+ gpg_args = ["gpg", "--detach-sign", "-a", filename]
89
+ if self.identity:
90
+ gpg_args[2:2] = ["--local-user", self.identity]
91
+ spawn(gpg_args,
92
+ dry_run=self.dry_run)
93
+
94
+ # Fill in the data - send all the meta-data in case we need to
95
+ # register a new release
96
+ f = open(filename,'rb')
97
+ try:
98
+ content = f.read()
99
+ finally:
100
+ f.close()
101
+
102
+ meta = self.distribution.metadata
103
+ data = {
104
+ # action
105
+ ':action': 'file_upload',
106
+ 'protocol_version': '1',
107
+
108
+ # identify release
109
+ 'name': meta.get_name(),
110
+ 'version': meta.get_version(),
111
+
112
+ # file content
113
+ 'content': (os.path.basename(filename),content),
114
+ 'filetype': command,
115
+ 'pyversion': pyversion,
116
+
117
+ # additional meta-data
118
+ 'metadata_version': '1.0',
119
+ 'summary': meta.get_description(),
120
+ 'home_page': meta.get_url(),
121
+ 'author': meta.get_contact(),
122
+ 'author_email': meta.get_contact_email(),
123
+ 'license': meta.get_licence(),
124
+ 'description': meta.get_long_description(),
125
+ 'keywords': meta.get_keywords(),
126
+ 'platform': meta.get_platforms(),
127
+ 'classifiers': meta.get_classifiers(),
128
+ 'download_url': meta.get_download_url(),
129
+ # PEP 314
130
+ 'provides': meta.get_provides(),
131
+ 'requires': meta.get_requires(),
132
+ 'obsoletes': meta.get_obsoletes(),
133
+ }
134
+
135
+ data['comment'] = ''
136
+
137
+ # file content digests
138
+ for digest_name, digest_cons in _FILE_CONTENT_DIGESTS.items():
139
+ if digest_cons is None:
140
+ continue
141
+ try:
142
+ data[digest_name] = digest_cons(content).hexdigest()
143
+ except ValueError:
144
+ # hash digest not available or blocked by security policy
145
+ pass
146
+
147
+ if self.sign:
148
+ with open(filename + ".asc", "rb") as f:
149
+ data['gpg_signature'] = (os.path.basename(filename) + ".asc",
150
+ f.read())
151
+
152
+ # set up the authentication
153
+ user_pass = (self.username + ":" + self.password).encode('ascii')
154
+ # The exact encoding of the authentication string is debated.
155
+ # Anyway PyPI only accepts ascii for both username or password.
156
+ auth = "Basic " + standard_b64encode(user_pass).decode('ascii')
157
+
158
+ # Build up the MIME payload for the POST data
159
+ boundary = '--------------GHSKFJDLGDS7543FJKLFHRE75642756743254'
160
+ sep_boundary = b'\r\n--' + boundary.encode('ascii')
161
+ end_boundary = sep_boundary + b'--\r\n'
162
+ body = io.BytesIO()
163
+ for key, value in data.items():
164
+ title = '\r\nContent-Disposition: form-data; name="%s"' % key
165
+ # handle multiple entries for the same name
166
+ if not isinstance(value, list):
167
+ value = [value]
168
+ for value in value:
169
+ if type(value) is tuple:
170
+ title += '; filename="%s"' % value[0]
171
+ value = value[1]
172
+ else:
173
+ value = str(value).encode('utf-8')
174
+ body.write(sep_boundary)
175
+ body.write(title.encode('utf-8'))
176
+ body.write(b"\r\n\r\n")
177
+ body.write(value)
178
+ body.write(end_boundary)
179
+ body = body.getvalue()
180
+
181
+ msg = "Submitting %s to %s" % (filename, self.repository)
182
+ self.announce(msg, log.INFO)
183
+
184
+ # build the Request
185
+ headers = {
186
+ 'Content-type': 'multipart/form-data; boundary=%s' % boundary,
187
+ 'Content-length': str(len(body)),
188
+ 'Authorization': auth,
189
+ }
190
+
191
+ request = Request(self.repository, data=body,
192
+ headers=headers)
193
+ # send the data
194
+ try:
195
+ result = urlopen(request)
196
+ status = result.getcode()
197
+ reason = result.msg
198
+ except HTTPError as e:
199
+ status = e.code
200
+ reason = e.msg
201
+ except OSError as e:
202
+ self.announce(str(e), log.ERROR)
203
+ raise
204
+
205
+ if status == 200:
206
+ self.announce('Server response (%s): %s' % (status, reason),
207
+ log.INFO)
208
+ if self.show_response:
209
+ text = self._read_pypi_response(result)
210
+ msg = '\n'.join(('-' * 75, text, '-' * 75))
211
+ self.announce(msg, log.INFO)
212
+ else:
213
+ msg = 'Upload failed (%s): %s' % (status, reason)
214
+ self.announce(msg, log.ERROR)
215
+ raise DistutilsError(msg)
parrot/lib/python3.10/distutils/cygwinccompiler.py ADDED
@@ -0,0 +1,406 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ """distutils.cygwinccompiler
2
+
3
+ Provides the CygwinCCompiler class, a subclass of UnixCCompiler that
4
+ handles the Cygwin port of the GNU C compiler to Windows. It also contains
5
+ the Mingw32CCompiler class which handles the mingw32 port of GCC (same as
6
+ cygwin in no-cygwin mode).
7
+ """
8
+
9
+ # problems:
10
+ #
11
+ # * if you use a msvc compiled python version (1.5.2)
12
+ # 1. you have to insert a __GNUC__ section in its config.h
13
+ # 2. you have to generate an import library for its dll
14
+ # - create a def-file for python??.dll
15
+ # - create an import library using
16
+ # dlltool --dllname python15.dll --def python15.def \
17
+ # --output-lib libpython15.a
18
+ #
19
+ # see also http://starship.python.net/crew/kernr/mingw32/Notes.html
20
+ #
21
+ # * We put export_symbols in a def-file, and don't use
22
+ # --export-all-symbols because it doesn't worked reliable in some
23
+ # tested configurations. And because other windows compilers also
24
+ # need their symbols specified this no serious problem.
25
+ #
26
+ # tested configurations:
27
+ #
28
+ # * cygwin gcc 2.91.57/ld 2.9.4/dllwrap 0.2.4 works
29
+ # (after patching python's config.h and for C++ some other include files)
30
+ # see also http://starship.python.net/crew/kernr/mingw32/Notes.html
31
+ # * mingw32 gcc 2.95.2/ld 2.9.4/dllwrap 0.2.4 works
32
+ # (ld doesn't support -shared, so we use dllwrap)
33
+ # * cygwin gcc 2.95.2/ld 2.10.90/dllwrap 2.10.90 works now
34
+ # - its dllwrap doesn't work, there is a bug in binutils 2.10.90
35
+ # see also http://sources.redhat.com/ml/cygwin/2000-06/msg01274.html
36
+ # - using gcc -mdll instead dllwrap doesn't work without -static because
37
+ # it tries to link against dlls instead their import libraries. (If
38
+ # it finds the dll first.)
39
+ # By specifying -static we force ld to link against the import libraries,
40
+ # this is windows standard and there are normally not the necessary symbols
41
+ # in the dlls.
42
+ # *** only the version of June 2000 shows these problems
43
+ # * cygwin gcc 3.2/ld 2.13.90 works
44
+ # (ld supports -shared)
45
+ # * mingw gcc 3.2/ld 2.13 works
46
+ # (ld supports -shared)
47
+
48
+ import os
49
+ import sys
50
+ import copy
51
+ from subprocess import Popen, PIPE, check_output
52
+ import re
53
+
54
+ from distutils.unixccompiler import UnixCCompiler
55
+ from distutils.file_util import write_file
56
+ from distutils.errors import (DistutilsExecError, CCompilerError,
57
+ CompileError, UnknownFileError)
58
+ from distutils.version import LooseVersion
59
+ from distutils.spawn import find_executable
60
+
61
+ def get_msvcr():
62
+ """Include the appropriate MSVC runtime library if Python was built
63
+ with MSVC 7.0 or later.
64
+ """
65
+ msc_pos = sys.version.find('MSC v.')
66
+ if msc_pos != -1:
67
+ msc_ver = sys.version[msc_pos+6:msc_pos+10]
68
+ if msc_ver == '1300':
69
+ # MSVC 7.0
70
+ return ['msvcr70']
71
+ elif msc_ver == '1310':
72
+ # MSVC 7.1
73
+ return ['msvcr71']
74
+ elif msc_ver == '1400':
75
+ # VS2005 / MSVC 8.0
76
+ return ['msvcr80']
77
+ elif msc_ver == '1500':
78
+ # VS2008 / MSVC 9.0
79
+ return ['msvcr90']
80
+ elif msc_ver == '1600':
81
+ # VS2010 / MSVC 10.0
82
+ return ['msvcr100']
83
+ elif int(msc_ver) >= 1900:
84
+ # VS2015 / MSVC 14.0
85
+ return ['msvcr140']
86
+ else:
87
+ raise ValueError("Unknown MS Compiler version %s " % msc_ver)
88
+
89
+
90
+ class CygwinCCompiler(UnixCCompiler):
91
+ """ Handles the Cygwin port of the GNU C compiler to Windows.
92
+ """
93
+ compiler_type = 'cygwin'
94
+ obj_extension = ".o"
95
+ static_lib_extension = ".a"
96
+ shared_lib_extension = ".dll"
97
+ static_lib_format = "lib%s%s"
98
+ shared_lib_format = "%s%s"
99
+ exe_extension = ".exe"
100
+
101
+ def __init__(self, verbose=0, dry_run=0, force=0):
102
+
103
+ UnixCCompiler.__init__(self, verbose, dry_run, force)
104
+
105
+ status, details = check_config_h()
106
+ self.debug_print("Python's GCC status: %s (details: %s)" %
107
+ (status, details))
108
+ if status is not CONFIG_H_OK:
109
+ self.warn(
110
+ "Python's pyconfig.h doesn't seem to support your compiler. "
111
+ "Reason: %s. "
112
+ "Compiling may fail because of undefined preprocessor macros."
113
+ % details)
114
+
115
+ self.gcc_version, self.ld_version, self.dllwrap_version = \
116
+ get_versions()
117
+ self.debug_print(self.compiler_type + ": gcc %s, ld %s, dllwrap %s\n" %
118
+ (self.gcc_version,
119
+ self.ld_version,
120
+ self.dllwrap_version) )
121
+
122
+ # ld_version >= "2.10.90" and < "2.13" should also be able to use
123
+ # gcc -mdll instead of dllwrap
124
+ # Older dllwraps had own version numbers, newer ones use the
125
+ # same as the rest of binutils ( also ld )
126
+ # dllwrap 2.10.90 is buggy
127
+ if self.ld_version >= "2.10.90":
128
+ self.linker_dll = "gcc"
129
+ else:
130
+ self.linker_dll = "dllwrap"
131
+
132
+ # ld_version >= "2.13" support -shared so use it instead of
133
+ # -mdll -static
134
+ if self.ld_version >= "2.13":
135
+ shared_option = "-shared"
136
+ else:
137
+ shared_option = "-mdll -static"
138
+
139
+ # Hard-code GCC because that's what this is all about.
140
+ # XXX optimization, warnings etc. should be customizable.
141
+ self.set_executables(compiler='gcc -mcygwin -O -Wall',
142
+ compiler_so='gcc -mcygwin -mdll -O -Wall',
143
+ compiler_cxx='g++ -mcygwin -O -Wall',
144
+ linker_exe='gcc -mcygwin',
145
+ linker_so=('%s -mcygwin %s' %
146
+ (self.linker_dll, shared_option)))
147
+
148
+ # cygwin and mingw32 need different sets of libraries
149
+ if self.gcc_version == "2.91.57":
150
+ # cygwin shouldn't need msvcrt, but without the dlls will crash
151
+ # (gcc version 2.91.57) -- perhaps something about initialization
152
+ self.dll_libraries=["msvcrt"]
153
+ self.warn(
154
+ "Consider upgrading to a newer version of gcc")
155
+ else:
156
+ # Include the appropriate MSVC runtime library if Python was built
157
+ # with MSVC 7.0 or later.
158
+ self.dll_libraries = get_msvcr()
159
+
160
+ def _compile(self, obj, src, ext, cc_args, extra_postargs, pp_opts):
161
+ """Compiles the source by spawning GCC and windres if needed."""
162
+ if ext == '.rc' or ext == '.res':
163
+ # gcc needs '.res' and '.rc' compiled to object files !!!
164
+ try:
165
+ self.spawn(["windres", "-i", src, "-o", obj])
166
+ except DistutilsExecError as msg:
167
+ raise CompileError(msg)
168
+ else: # for other files use the C-compiler
169
+ try:
170
+ self.spawn(self.compiler_so + cc_args + [src, '-o', obj] +
171
+ extra_postargs)
172
+ except DistutilsExecError as msg:
173
+ raise CompileError(msg)
174
+
175
+ def link(self, target_desc, objects, output_filename, output_dir=None,
176
+ libraries=None, library_dirs=None, runtime_library_dirs=None,
177
+ export_symbols=None, debug=0, extra_preargs=None,
178
+ extra_postargs=None, build_temp=None, target_lang=None):
179
+ """Link the objects."""
180
+ # use separate copies, so we can modify the lists
181
+ extra_preargs = copy.copy(extra_preargs or [])
182
+ libraries = copy.copy(libraries or [])
183
+ objects = copy.copy(objects or [])
184
+
185
+ # Additional libraries
186
+ libraries.extend(self.dll_libraries)
187
+
188
+ # handle export symbols by creating a def-file
189
+ # with executables this only works with gcc/ld as linker
190
+ if ((export_symbols is not None) and
191
+ (target_desc != self.EXECUTABLE or self.linker_dll == "gcc")):
192
+ # (The linker doesn't do anything if output is up-to-date.
193
+ # So it would probably better to check if we really need this,
194
+ # but for this we had to insert some unchanged parts of
195
+ # UnixCCompiler, and this is not what we want.)
196
+
197
+ # we want to put some files in the same directory as the
198
+ # object files are, build_temp doesn't help much
199
+ # where are the object files
200
+ temp_dir = os.path.dirname(objects[0])
201
+ # name of dll to give the helper files the same base name
202
+ (dll_name, dll_extension) = os.path.splitext(
203
+ os.path.basename(output_filename))
204
+
205
+ # generate the filenames for these files
206
+ def_file = os.path.join(temp_dir, dll_name + ".def")
207
+ lib_file = os.path.join(temp_dir, 'lib' + dll_name + ".a")
208
+
209
+ # Generate .def file
210
+ contents = [
211
+ "LIBRARY %s" % os.path.basename(output_filename),
212
+ "EXPORTS"]
213
+ for sym in export_symbols:
214
+ contents.append(sym)
215
+ self.execute(write_file, (def_file, contents),
216
+ "writing %s" % def_file)
217
+
218
+ # next add options for def-file and to creating import libraries
219
+
220
+ # dllwrap uses different options than gcc/ld
221
+ if self.linker_dll == "dllwrap":
222
+ extra_preargs.extend(["--output-lib", lib_file])
223
+ # for dllwrap we have to use a special option
224
+ extra_preargs.extend(["--def", def_file])
225
+ # we use gcc/ld here and can be sure ld is >= 2.9.10
226
+ else:
227
+ # doesn't work: bfd_close build\...\libfoo.a: Invalid operation
228
+ #extra_preargs.extend(["-Wl,--out-implib,%s" % lib_file])
229
+ # for gcc/ld the def-file is specified as any object files
230
+ objects.append(def_file)
231
+
232
+ #end: if ((export_symbols is not None) and
233
+ # (target_desc != self.EXECUTABLE or self.linker_dll == "gcc")):
234
+
235
+ # who wants symbols and a many times larger output file
236
+ # should explicitly switch the debug mode on
237
+ # otherwise we let dllwrap/ld strip the output file
238
+ # (On my machine: 10KiB < stripped_file < ??100KiB
239
+ # unstripped_file = stripped_file + XXX KiB
240
+ # ( XXX=254 for a typical python extension))
241
+ if not debug:
242
+ extra_preargs.append("-s")
243
+
244
+ UnixCCompiler.link(self, target_desc, objects, output_filename,
245
+ output_dir, libraries, library_dirs,
246
+ runtime_library_dirs,
247
+ None, # export_symbols, we do this in our def-file
248
+ debug, extra_preargs, extra_postargs, build_temp,
249
+ target_lang)
250
+
251
+ # -- Miscellaneous methods -----------------------------------------
252
+
253
+ def object_filenames(self, source_filenames, strip_dir=0, output_dir=''):
254
+ """Adds supports for rc and res files."""
255
+ if output_dir is None:
256
+ output_dir = ''
257
+ obj_names = []
258
+ for src_name in source_filenames:
259
+ # use normcase to make sure '.rc' is really '.rc' and not '.RC'
260
+ base, ext = os.path.splitext(os.path.normcase(src_name))
261
+ if ext not in (self.src_extensions + ['.rc','.res']):
262
+ raise UnknownFileError("unknown file type '%s' (from '%s')" % \
263
+ (ext, src_name))
264
+ if strip_dir:
265
+ base = os.path.basename (base)
266
+ if ext in ('.res', '.rc'):
267
+ # these need to be compiled to object files
268
+ obj_names.append (os.path.join(output_dir,
269
+ base + ext + self.obj_extension))
270
+ else:
271
+ obj_names.append (os.path.join(output_dir,
272
+ base + self.obj_extension))
273
+ return obj_names
274
+
275
+ # the same as cygwin plus some additional parameters
276
+ class Mingw32CCompiler(CygwinCCompiler):
277
+ """ Handles the Mingw32 port of the GNU C compiler to Windows.
278
+ """
279
+ compiler_type = 'mingw32'
280
+
281
+ def __init__(self, verbose=0, dry_run=0, force=0):
282
+
283
+ CygwinCCompiler.__init__ (self, verbose, dry_run, force)
284
+
285
+ # ld_version >= "2.13" support -shared so use it instead of
286
+ # -mdll -static
287
+ if self.ld_version >= "2.13":
288
+ shared_option = "-shared"
289
+ else:
290
+ shared_option = "-mdll -static"
291
+
292
+ # A real mingw32 doesn't need to specify a different entry point,
293
+ # but cygwin 2.91.57 in no-cygwin-mode needs it.
294
+ if self.gcc_version <= "2.91.57":
295
+ entry_point = '--entry _DllMain@12'
296
+ else:
297
+ entry_point = ''
298
+
299
+ if is_cygwingcc():
300
+ raise CCompilerError(
301
+ 'Cygwin gcc cannot be used with --compiler=mingw32')
302
+
303
+ self.set_executables(compiler='gcc -O -Wall',
304
+ compiler_so='gcc -mdll -O -Wall',
305
+ compiler_cxx='g++ -O -Wall',
306
+ linker_exe='gcc',
307
+ linker_so='%s %s %s'
308
+ % (self.linker_dll, shared_option,
309
+ entry_point))
310
+ # Maybe we should also append -mthreads, but then the finished
311
+ # dlls need another dll (mingwm10.dll see Mingw32 docs)
312
+ # (-mthreads: Support thread-safe exception handling on `Mingw32')
313
+
314
+ # no additional libraries needed
315
+ self.dll_libraries=[]
316
+
317
+ # Include the appropriate MSVC runtime library if Python was built
318
+ # with MSVC 7.0 or later.
319
+ self.dll_libraries = get_msvcr()
320
+
321
+ # Because these compilers aren't configured in Python's pyconfig.h file by
322
+ # default, we should at least warn the user if he is using an unmodified
323
+ # version.
324
+
325
+ CONFIG_H_OK = "ok"
326
+ CONFIG_H_NOTOK = "not ok"
327
+ CONFIG_H_UNCERTAIN = "uncertain"
328
+
329
+ def check_config_h():
330
+ """Check if the current Python installation appears amenable to building
331
+ extensions with GCC.
332
+
333
+ Returns a tuple (status, details), where 'status' is one of the following
334
+ constants:
335
+
336
+ - CONFIG_H_OK: all is well, go ahead and compile
337
+ - CONFIG_H_NOTOK: doesn't look good
338
+ - CONFIG_H_UNCERTAIN: not sure -- unable to read pyconfig.h
339
+
340
+ 'details' is a human-readable string explaining the situation.
341
+
342
+ Note there are two ways to conclude "OK": either 'sys.version' contains
343
+ the string "GCC" (implying that this Python was built with GCC), or the
344
+ installed "pyconfig.h" contains the string "__GNUC__".
345
+ """
346
+
347
+ # XXX since this function also checks sys.version, it's not strictly a
348
+ # "pyconfig.h" check -- should probably be renamed...
349
+
350
+ from distutils import sysconfig
351
+
352
+ # if sys.version contains GCC then python was compiled with GCC, and the
353
+ # pyconfig.h file should be OK
354
+ if "GCC" in sys.version:
355
+ return CONFIG_H_OK, "sys.version mentions 'GCC'"
356
+
357
+ # let's see if __GNUC__ is mentioned in python.h
358
+ fn = sysconfig.get_config_h_filename()
359
+ try:
360
+ config_h = open(fn)
361
+ try:
362
+ if "__GNUC__" in config_h.read():
363
+ return CONFIG_H_OK, "'%s' mentions '__GNUC__'" % fn
364
+ else:
365
+ return CONFIG_H_NOTOK, "'%s' does not mention '__GNUC__'" % fn
366
+ finally:
367
+ config_h.close()
368
+ except OSError as exc:
369
+ return (CONFIG_H_UNCERTAIN,
370
+ "couldn't read '%s': %s" % (fn, exc.strerror))
371
+
372
+ RE_VERSION = re.compile(br'(\d+\.\d+(\.\d+)*)')
373
+
374
+ def _find_exe_version(cmd):
375
+ """Find the version of an executable by running `cmd` in the shell.
376
+
377
+ If the command is not found, or the output does not match
378
+ `RE_VERSION`, returns None.
379
+ """
380
+ executable = cmd.split()[0]
381
+ if find_executable(executable) is None:
382
+ return None
383
+ out = Popen(cmd, shell=True, stdout=PIPE).stdout
384
+ try:
385
+ out_string = out.read()
386
+ finally:
387
+ out.close()
388
+ result = RE_VERSION.search(out_string)
389
+ if result is None:
390
+ return None
391
+ # LooseVersion works with strings
392
+ # so we need to decode our bytes
393
+ return LooseVersion(result.group(1).decode())
394
+
395
+ def get_versions():
396
+ """ Try to find out the versions of gcc, ld and dllwrap.
397
+
398
+ If not possible it returns None for it.
399
+ """
400
+ commands = ['gcc -dumpversion', 'ld -v', 'dllwrap --version']
401
+ return tuple([_find_exe_version(cmd) for cmd in commands])
402
+
403
+ def is_cygwingcc():
404
+ '''Try to determine if the gcc that would be used is from cygwin.'''
405
+ out_string = check_output(['gcc', '-dumpmachine'])
406
+ return out_string.strip().endswith(b'cygwin')
parrot/lib/python3.10/distutils/fancy_getopt.py ADDED
@@ -0,0 +1,457 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ """distutils.fancy_getopt
2
+
3
+ Wrapper around the standard getopt module that provides the following
4
+ additional features:
5
+ * short and long options are tied together
6
+ * options have help strings, so fancy_getopt could potentially
7
+ create a complete usage summary
8
+ * options set attributes of a passed-in object
9
+ """
10
+
11
+ import sys, string, re
12
+ import getopt
13
+ from distutils.errors import *
14
+
15
+ # Much like command_re in distutils.core, this is close to but not quite
16
+ # the same as a Python NAME -- except, in the spirit of most GNU
17
+ # utilities, we use '-' in place of '_'. (The spirit of LISP lives on!)
18
+ # The similarities to NAME are again not a coincidence...
19
+ longopt_pat = r'[a-zA-Z](?:[a-zA-Z0-9-]*)'
20
+ longopt_re = re.compile(r'^%s$' % longopt_pat)
21
+
22
+ # For recognizing "negative alias" options, eg. "quiet=!verbose"
23
+ neg_alias_re = re.compile("^(%s)=!(%s)$" % (longopt_pat, longopt_pat))
24
+
25
+ # This is used to translate long options to legitimate Python identifiers
26
+ # (for use as attributes of some object).
27
+ longopt_xlate = str.maketrans('-', '_')
28
+
29
+ class FancyGetopt:
30
+ """Wrapper around the standard 'getopt()' module that provides some
31
+ handy extra functionality:
32
+ * short and long options are tied together
33
+ * options have help strings, and help text can be assembled
34
+ from them
35
+ * options set attributes of a passed-in object
36
+ * boolean options can have "negative aliases" -- eg. if
37
+ --quiet is the "negative alias" of --verbose, then "--quiet"
38
+ on the command line sets 'verbose' to false
39
+ """
40
+
41
+ def __init__(self, option_table=None):
42
+ # The option table is (currently) a list of tuples. The
43
+ # tuples may have 3 or four values:
44
+ # (long_option, short_option, help_string [, repeatable])
45
+ # if an option takes an argument, its long_option should have '='
46
+ # appended; short_option should just be a single character, no ':'
47
+ # in any case. If a long_option doesn't have a corresponding
48
+ # short_option, short_option should be None. All option tuples
49
+ # must have long options.
50
+ self.option_table = option_table
51
+
52
+ # 'option_index' maps long option names to entries in the option
53
+ # table (ie. those 3-tuples).
54
+ self.option_index = {}
55
+ if self.option_table:
56
+ self._build_index()
57
+
58
+ # 'alias' records (duh) alias options; {'foo': 'bar'} means
59
+ # --foo is an alias for --bar
60
+ self.alias = {}
61
+
62
+ # 'negative_alias' keeps track of options that are the boolean
63
+ # opposite of some other option
64
+ self.negative_alias = {}
65
+
66
+ # These keep track of the information in the option table. We
67
+ # don't actually populate these structures until we're ready to
68
+ # parse the command-line, since the 'option_table' passed in here
69
+ # isn't necessarily the final word.
70
+ self.short_opts = []
71
+ self.long_opts = []
72
+ self.short2long = {}
73
+ self.attr_name = {}
74
+ self.takes_arg = {}
75
+
76
+ # And 'option_order' is filled up in 'getopt()'; it records the
77
+ # original order of options (and their values) on the command-line,
78
+ # but expands short options, converts aliases, etc.
79
+ self.option_order = []
80
+
81
+ def _build_index(self):
82
+ self.option_index.clear()
83
+ for option in self.option_table:
84
+ self.option_index[option[0]] = option
85
+
86
+ def set_option_table(self, option_table):
87
+ self.option_table = option_table
88
+ self._build_index()
89
+
90
+ def add_option(self, long_option, short_option=None, help_string=None):
91
+ if long_option in self.option_index:
92
+ raise DistutilsGetoptError(
93
+ "option conflict: already an option '%s'" % long_option)
94
+ else:
95
+ option = (long_option, short_option, help_string)
96
+ self.option_table.append(option)
97
+ self.option_index[long_option] = option
98
+
99
+ def has_option(self, long_option):
100
+ """Return true if the option table for this parser has an
101
+ option with long name 'long_option'."""
102
+ return long_option in self.option_index
103
+
104
+ def get_attr_name(self, long_option):
105
+ """Translate long option name 'long_option' to the form it
106
+ has as an attribute of some object: ie., translate hyphens
107
+ to underscores."""
108
+ return long_option.translate(longopt_xlate)
109
+
110
+ def _check_alias_dict(self, aliases, what):
111
+ assert isinstance(aliases, dict)
112
+ for (alias, opt) in aliases.items():
113
+ if alias not in self.option_index:
114
+ raise DistutilsGetoptError(("invalid %s '%s': "
115
+ "option '%s' not defined") % (what, alias, alias))
116
+ if opt not in self.option_index:
117
+ raise DistutilsGetoptError(("invalid %s '%s': "
118
+ "aliased option '%s' not defined") % (what, alias, opt))
119
+
120
+ def set_aliases(self, alias):
121
+ """Set the aliases for this option parser."""
122
+ self._check_alias_dict(alias, "alias")
123
+ self.alias = alias
124
+
125
+ def set_negative_aliases(self, negative_alias):
126
+ """Set the negative aliases for this option parser.
127
+ 'negative_alias' should be a dictionary mapping option names to
128
+ option names, both the key and value must already be defined
129
+ in the option table."""
130
+ self._check_alias_dict(negative_alias, "negative alias")
131
+ self.negative_alias = negative_alias
132
+
133
+ def _grok_option_table(self):
134
+ """Populate the various data structures that keep tabs on the
135
+ option table. Called by 'getopt()' before it can do anything
136
+ worthwhile.
137
+ """
138
+ self.long_opts = []
139
+ self.short_opts = []
140
+ self.short2long.clear()
141
+ self.repeat = {}
142
+
143
+ for option in self.option_table:
144
+ if len(option) == 3:
145
+ long, short, help = option
146
+ repeat = 0
147
+ elif len(option) == 4:
148
+ long, short, help, repeat = option
149
+ else:
150
+ # the option table is part of the code, so simply
151
+ # assert that it is correct
152
+ raise ValueError("invalid option tuple: %r" % (option,))
153
+
154
+ # Type- and value-check the option names
155
+ if not isinstance(long, str) or len(long) < 2:
156
+ raise DistutilsGetoptError(("invalid long option '%s': "
157
+ "must be a string of length >= 2") % long)
158
+
159
+ if (not ((short is None) or
160
+ (isinstance(short, str) and len(short) == 1))):
161
+ raise DistutilsGetoptError("invalid short option '%s': "
162
+ "must a single character or None" % short)
163
+
164
+ self.repeat[long] = repeat
165
+ self.long_opts.append(long)
166
+
167
+ if long[-1] == '=': # option takes an argument?
168
+ if short: short = short + ':'
169
+ long = long[0:-1]
170
+ self.takes_arg[long] = 1
171
+ else:
172
+ # Is option is a "negative alias" for some other option (eg.
173
+ # "quiet" == "!verbose")?
174
+ alias_to = self.negative_alias.get(long)
175
+ if alias_to is not None:
176
+ if self.takes_arg[alias_to]:
177
+ raise DistutilsGetoptError(
178
+ "invalid negative alias '%s': "
179
+ "aliased option '%s' takes a value"
180
+ % (long, alias_to))
181
+
182
+ self.long_opts[-1] = long # XXX redundant?!
183
+ self.takes_arg[long] = 0
184
+
185
+ # If this is an alias option, make sure its "takes arg" flag is
186
+ # the same as the option it's aliased to.
187
+ alias_to = self.alias.get(long)
188
+ if alias_to is not None:
189
+ if self.takes_arg[long] != self.takes_arg[alias_to]:
190
+ raise DistutilsGetoptError(
191
+ "invalid alias '%s': inconsistent with "
192
+ "aliased option '%s' (one of them takes a value, "
193
+ "the other doesn't"
194
+ % (long, alias_to))
195
+
196
+ # Now enforce some bondage on the long option name, so we can
197
+ # later translate it to an attribute name on some object. Have
198
+ # to do this a bit late to make sure we've removed any trailing
199
+ # '='.
200
+ if not longopt_re.match(long):
201
+ raise DistutilsGetoptError(
202
+ "invalid long option name '%s' "
203
+ "(must be letters, numbers, hyphens only" % long)
204
+
205
+ self.attr_name[long] = self.get_attr_name(long)
206
+ if short:
207
+ self.short_opts.append(short)
208
+ self.short2long[short[0]] = long
209
+
210
+ def getopt(self, args=None, object=None):
211
+ """Parse command-line options in args. Store as attributes on object.
212
+
213
+ If 'args' is None or not supplied, uses 'sys.argv[1:]'. If
214
+ 'object' is None or not supplied, creates a new OptionDummy
215
+ object, stores option values there, and returns a tuple (args,
216
+ object). If 'object' is supplied, it is modified in place and
217
+ 'getopt()' just returns 'args'; in both cases, the returned
218
+ 'args' is a modified copy of the passed-in 'args' list, which
219
+ is left untouched.
220
+ """
221
+ if args is None:
222
+ args = sys.argv[1:]
223
+ if object is None:
224
+ object = OptionDummy()
225
+ created_object = True
226
+ else:
227
+ created_object = False
228
+
229
+ self._grok_option_table()
230
+
231
+ short_opts = ' '.join(self.short_opts)
232
+ try:
233
+ opts, args = getopt.getopt(args, short_opts, self.long_opts)
234
+ except getopt.error as msg:
235
+ raise DistutilsArgError(msg)
236
+
237
+ for opt, val in opts:
238
+ if len(opt) == 2 and opt[0] == '-': # it's a short option
239
+ opt = self.short2long[opt[1]]
240
+ else:
241
+ assert len(opt) > 2 and opt[:2] == '--'
242
+ opt = opt[2:]
243
+
244
+ alias = self.alias.get(opt)
245
+ if alias:
246
+ opt = alias
247
+
248
+ if not self.takes_arg[opt]: # boolean option?
249
+ assert val == '', "boolean option can't have value"
250
+ alias = self.negative_alias.get(opt)
251
+ if alias:
252
+ opt = alias
253
+ val = 0
254
+ else:
255
+ val = 1
256
+
257
+ attr = self.attr_name[opt]
258
+ # The only repeating option at the moment is 'verbose'.
259
+ # It has a negative option -q quiet, which should set verbose = 0.
260
+ if val and self.repeat.get(attr) is not None:
261
+ val = getattr(object, attr, 0) + 1
262
+ setattr(object, attr, val)
263
+ self.option_order.append((opt, val))
264
+
265
+ # for opts
266
+ if created_object:
267
+ return args, object
268
+ else:
269
+ return args
270
+
271
+ def get_option_order(self):
272
+ """Returns the list of (option, value) tuples processed by the
273
+ previous run of 'getopt()'. Raises RuntimeError if
274
+ 'getopt()' hasn't been called yet.
275
+ """
276
+ if self.option_order is None:
277
+ raise RuntimeError("'getopt()' hasn't been called yet")
278
+ else:
279
+ return self.option_order
280
+
281
+ def generate_help(self, header=None):
282
+ """Generate help text (a list of strings, one per suggested line of
283
+ output) from the option table for this FancyGetopt object.
284
+ """
285
+ # Blithely assume the option table is good: probably wouldn't call
286
+ # 'generate_help()' unless you've already called 'getopt()'.
287
+
288
+ # First pass: determine maximum length of long option names
289
+ max_opt = 0
290
+ for option in self.option_table:
291
+ long = option[0]
292
+ short = option[1]
293
+ l = len(long)
294
+ if long[-1] == '=':
295
+ l = l - 1
296
+ if short is not None:
297
+ l = l + 5 # " (-x)" where short == 'x'
298
+ if l > max_opt:
299
+ max_opt = l
300
+
301
+ opt_width = max_opt + 2 + 2 + 2 # room for indent + dashes + gutter
302
+
303
+ # Typical help block looks like this:
304
+ # --foo controls foonabulation
305
+ # Help block for longest option looks like this:
306
+ # --flimflam set the flim-flam level
307
+ # and with wrapped text:
308
+ # --flimflam set the flim-flam level (must be between
309
+ # 0 and 100, except on Tuesdays)
310
+ # Options with short names will have the short name shown (but
311
+ # it doesn't contribute to max_opt):
312
+ # --foo (-f) controls foonabulation
313
+ # If adding the short option would make the left column too wide,
314
+ # we push the explanation off to the next line
315
+ # --flimflam (-l)
316
+ # set the flim-flam level
317
+ # Important parameters:
318
+ # - 2 spaces before option block start lines
319
+ # - 2 dashes for each long option name
320
+ # - min. 2 spaces between option and explanation (gutter)
321
+ # - 5 characters (incl. space) for short option name
322
+
323
+ # Now generate lines of help text. (If 80 columns were good enough
324
+ # for Jesus, then 78 columns are good enough for me!)
325
+ line_width = 78
326
+ text_width = line_width - opt_width
327
+ big_indent = ' ' * opt_width
328
+ if header:
329
+ lines = [header]
330
+ else:
331
+ lines = ['Option summary:']
332
+
333
+ for option in self.option_table:
334
+ long, short, help = option[:3]
335
+ text = wrap_text(help, text_width)
336
+ if long[-1] == '=':
337
+ long = long[0:-1]
338
+
339
+ # Case 1: no short option at all (makes life easy)
340
+ if short is None:
341
+ if text:
342
+ lines.append(" --%-*s %s" % (max_opt, long, text[0]))
343
+ else:
344
+ lines.append(" --%-*s " % (max_opt, long))
345
+
346
+ # Case 2: we have a short option, so we have to include it
347
+ # just after the long option
348
+ else:
349
+ opt_names = "%s (-%s)" % (long, short)
350
+ if text:
351
+ lines.append(" --%-*s %s" %
352
+ (max_opt, opt_names, text[0]))
353
+ else:
354
+ lines.append(" --%-*s" % opt_names)
355
+
356
+ for l in text[1:]:
357
+ lines.append(big_indent + l)
358
+ return lines
359
+
360
+ def print_help(self, header=None, file=None):
361
+ if file is None:
362
+ file = sys.stdout
363
+ for line in self.generate_help(header):
364
+ file.write(line + "\n")
365
+
366
+
367
+ def fancy_getopt(options, negative_opt, object, args):
368
+ parser = FancyGetopt(options)
369
+ parser.set_negative_aliases(negative_opt)
370
+ return parser.getopt(args, object)
371
+
372
+
373
+ WS_TRANS = {ord(_wschar) : ' ' for _wschar in string.whitespace}
374
+
375
+ def wrap_text(text, width):
376
+ """wrap_text(text : string, width : int) -> [string]
377
+
378
+ Split 'text' into multiple lines of no more than 'width' characters
379
+ each, and return the list of strings that results.
380
+ """
381
+ if text is None:
382
+ return []
383
+ if len(text) <= width:
384
+ return [text]
385
+
386
+ text = text.expandtabs()
387
+ text = text.translate(WS_TRANS)
388
+ chunks = re.split(r'( +|-+)', text)
389
+ chunks = [ch for ch in chunks if ch] # ' - ' results in empty strings
390
+ lines = []
391
+
392
+ while chunks:
393
+ cur_line = [] # list of chunks (to-be-joined)
394
+ cur_len = 0 # length of current line
395
+
396
+ while chunks:
397
+ l = len(chunks[0])
398
+ if cur_len + l <= width: # can squeeze (at least) this chunk in
399
+ cur_line.append(chunks[0])
400
+ del chunks[0]
401
+ cur_len = cur_len + l
402
+ else: # this line is full
403
+ # drop last chunk if all space
404
+ if cur_line and cur_line[-1][0] == ' ':
405
+ del cur_line[-1]
406
+ break
407
+
408
+ if chunks: # any chunks left to process?
409
+ # if the current line is still empty, then we had a single
410
+ # chunk that's too big too fit on a line -- so we break
411
+ # down and break it up at the line width
412
+ if cur_len == 0:
413
+ cur_line.append(chunks[0][0:width])
414
+ chunks[0] = chunks[0][width:]
415
+
416
+ # all-whitespace chunks at the end of a line can be discarded
417
+ # (and we know from the re.split above that if a chunk has
418
+ # *any* whitespace, it is *all* whitespace)
419
+ if chunks[0][0] == ' ':
420
+ del chunks[0]
421
+
422
+ # and store this line in the list-of-all-lines -- as a single
423
+ # string, of course!
424
+ lines.append(''.join(cur_line))
425
+
426
+ return lines
427
+
428
+
429
+ def translate_longopt(opt):
430
+ """Convert a long option name to a valid Python identifier by
431
+ changing "-" to "_".
432
+ """
433
+ return opt.translate(longopt_xlate)
434
+
435
+
436
+ class OptionDummy:
437
+ """Dummy class just used as a place to hold command-line option
438
+ values as instance attributes."""
439
+
440
+ def __init__(self, options=[]):
441
+ """Create a new OptionDummy instance. The attributes listed in
442
+ 'options' will be initialized to None."""
443
+ for opt in options:
444
+ setattr(self, opt, None)
445
+
446
+
447
+ if __name__ == "__main__":
448
+ text = """\
449
+ Tra-la-la, supercalifragilisticexpialidocious.
450
+ How *do* you spell that odd word, anyways?
451
+ (Someone ask Mary -- she'll know [or she'll
452
+ say, "How should I know?"].)"""
453
+
454
+ for w in (10, 20, 30, 40):
455
+ print("width: %d" % w)
456
+ print("\n".join(wrap_text(text, w)))
457
+ print()
parrot/lib/python3.10/distutils/file_util.py ADDED
@@ -0,0 +1,238 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ """distutils.file_util
2
+
3
+ Utility functions for operating on single files.
4
+ """
5
+
6
+ import os
7
+ from distutils.errors import DistutilsFileError
8
+ from distutils import log
9
+
10
+ # for generating verbose output in 'copy_file()'
11
+ _copy_action = { None: 'copying',
12
+ 'hard': 'hard linking',
13
+ 'sym': 'symbolically linking' }
14
+
15
+
16
+ def _copy_file_contents(src, dst, buffer_size=16*1024):
17
+ """Copy the file 'src' to 'dst'; both must be filenames. Any error
18
+ opening either file, reading from 'src', or writing to 'dst', raises
19
+ DistutilsFileError. Data is read/written in chunks of 'buffer_size'
20
+ bytes (default 16k). No attempt is made to handle anything apart from
21
+ regular files.
22
+ """
23
+ # Stolen from shutil module in the standard library, but with
24
+ # custom error-handling added.
25
+ fsrc = None
26
+ fdst = None
27
+ try:
28
+ try:
29
+ fsrc = open(src, 'rb')
30
+ except OSError as e:
31
+ raise DistutilsFileError("could not open '%s': %s" % (src, e.strerror))
32
+
33
+ if os.path.exists(dst):
34
+ try:
35
+ os.unlink(dst)
36
+ except OSError as e:
37
+ raise DistutilsFileError(
38
+ "could not delete '%s': %s" % (dst, e.strerror))
39
+
40
+ try:
41
+ fdst = open(dst, 'wb')
42
+ except OSError as e:
43
+ raise DistutilsFileError(
44
+ "could not create '%s': %s" % (dst, e.strerror))
45
+
46
+ while True:
47
+ try:
48
+ buf = fsrc.read(buffer_size)
49
+ except OSError as e:
50
+ raise DistutilsFileError(
51
+ "could not read from '%s': %s" % (src, e.strerror))
52
+
53
+ if not buf:
54
+ break
55
+
56
+ try:
57
+ fdst.write(buf)
58
+ except OSError as e:
59
+ raise DistutilsFileError(
60
+ "could not write to '%s': %s" % (dst, e.strerror))
61
+ finally:
62
+ if fdst:
63
+ fdst.close()
64
+ if fsrc:
65
+ fsrc.close()
66
+
67
+ def copy_file(src, dst, preserve_mode=1, preserve_times=1, update=0,
68
+ link=None, verbose=1, dry_run=0):
69
+ """Copy a file 'src' to 'dst'. If 'dst' is a directory, then 'src' is
70
+ copied there with the same name; otherwise, it must be a filename. (If
71
+ the file exists, it will be ruthlessly clobbered.) If 'preserve_mode'
72
+ is true (the default), the file's mode (type and permission bits, or
73
+ whatever is analogous on the current platform) is copied. If
74
+ 'preserve_times' is true (the default), the last-modified and
75
+ last-access times are copied as well. If 'update' is true, 'src' will
76
+ only be copied if 'dst' does not exist, or if 'dst' does exist but is
77
+ older than 'src'.
78
+
79
+ 'link' allows you to make hard links (os.link) or symbolic links
80
+ (os.symlink) instead of copying: set it to "hard" or "sym"; if it is
81
+ None (the default), files are copied. Don't set 'link' on systems that
82
+ don't support it: 'copy_file()' doesn't check if hard or symbolic
83
+ linking is available. If hardlink fails, falls back to
84
+ _copy_file_contents().
85
+
86
+ Under Mac OS, uses the native file copy function in macostools; on
87
+ other systems, uses '_copy_file_contents()' to copy file contents.
88
+
89
+ Return a tuple (dest_name, copied): 'dest_name' is the actual name of
90
+ the output file, and 'copied' is true if the file was copied (or would
91
+ have been copied, if 'dry_run' true).
92
+ """
93
+ # XXX if the destination file already exists, we clobber it if
94
+ # copying, but blow up if linking. Hmmm. And I don't know what
95
+ # macostools.copyfile() does. Should definitely be consistent, and
96
+ # should probably blow up if destination exists and we would be
97
+ # changing it (ie. it's not already a hard/soft link to src OR
98
+ # (not update) and (src newer than dst).
99
+
100
+ from distutils.dep_util import newer
101
+ from stat import ST_ATIME, ST_MTIME, ST_MODE, S_IMODE
102
+
103
+ if not os.path.isfile(src):
104
+ raise DistutilsFileError(
105
+ "can't copy '%s': doesn't exist or not a regular file" % src)
106
+
107
+ if os.path.isdir(dst):
108
+ dir = dst
109
+ dst = os.path.join(dst, os.path.basename(src))
110
+ else:
111
+ dir = os.path.dirname(dst)
112
+
113
+ if update and not newer(src, dst):
114
+ if verbose >= 1:
115
+ log.debug("not copying %s (output up-to-date)", src)
116
+ return (dst, 0)
117
+
118
+ try:
119
+ action = _copy_action[link]
120
+ except KeyError:
121
+ raise ValueError("invalid value '%s' for 'link' argument" % link)
122
+
123
+ if verbose >= 1:
124
+ if os.path.basename(dst) == os.path.basename(src):
125
+ log.info("%s %s -> %s", action, src, dir)
126
+ else:
127
+ log.info("%s %s -> %s", action, src, dst)
128
+
129
+ if dry_run:
130
+ return (dst, 1)
131
+
132
+ # If linking (hard or symbolic), use the appropriate system call
133
+ # (Unix only, of course, but that's the caller's responsibility)
134
+ elif link == 'hard':
135
+ if not (os.path.exists(dst) and os.path.samefile(src, dst)):
136
+ try:
137
+ os.link(src, dst)
138
+ return (dst, 1)
139
+ except OSError:
140
+ # If hard linking fails, fall back on copying file
141
+ # (some special filesystems don't support hard linking
142
+ # even under Unix, see issue #8876).
143
+ pass
144
+ elif link == 'sym':
145
+ if not (os.path.exists(dst) and os.path.samefile(src, dst)):
146
+ os.symlink(src, dst)
147
+ return (dst, 1)
148
+
149
+ # Otherwise (non-Mac, not linking), copy the file contents and
150
+ # (optionally) copy the times and mode.
151
+ _copy_file_contents(src, dst)
152
+ if preserve_mode or preserve_times:
153
+ st = os.stat(src)
154
+
155
+ # According to David Ascher <da@ski.org>, utime() should be done
156
+ # before chmod() (at least under NT).
157
+ if preserve_times:
158
+ os.utime(dst, (st[ST_ATIME], st[ST_MTIME]))
159
+ if preserve_mode:
160
+ os.chmod(dst, S_IMODE(st[ST_MODE]))
161
+
162
+ return (dst, 1)
163
+
164
+
165
+ # XXX I suspect this is Unix-specific -- need porting help!
166
+ def move_file (src, dst,
167
+ verbose=1,
168
+ dry_run=0):
169
+
170
+ """Move a file 'src' to 'dst'. If 'dst' is a directory, the file will
171
+ be moved into it with the same name; otherwise, 'src' is just renamed
172
+ to 'dst'. Return the new full name of the file.
173
+
174
+ Handles cross-device moves on Unix using 'copy_file()'. What about
175
+ other systems???
176
+ """
177
+ from os.path import exists, isfile, isdir, basename, dirname
178
+ import errno
179
+
180
+ if verbose >= 1:
181
+ log.info("moving %s -> %s", src, dst)
182
+
183
+ if dry_run:
184
+ return dst
185
+
186
+ if not isfile(src):
187
+ raise DistutilsFileError("can't move '%s': not a regular file" % src)
188
+
189
+ if isdir(dst):
190
+ dst = os.path.join(dst, basename(src))
191
+ elif exists(dst):
192
+ raise DistutilsFileError(
193
+ "can't move '%s': destination '%s' already exists" %
194
+ (src, dst))
195
+
196
+ if not isdir(dirname(dst)):
197
+ raise DistutilsFileError(
198
+ "can't move '%s': destination '%s' not a valid path" %
199
+ (src, dst))
200
+
201
+ copy_it = False
202
+ try:
203
+ os.rename(src, dst)
204
+ except OSError as e:
205
+ (num, msg) = e.args
206
+ if num == errno.EXDEV:
207
+ copy_it = True
208
+ else:
209
+ raise DistutilsFileError(
210
+ "couldn't move '%s' to '%s': %s" % (src, dst, msg))
211
+
212
+ if copy_it:
213
+ copy_file(src, dst, verbose=verbose)
214
+ try:
215
+ os.unlink(src)
216
+ except OSError as e:
217
+ (num, msg) = e.args
218
+ try:
219
+ os.unlink(dst)
220
+ except OSError:
221
+ pass
222
+ raise DistutilsFileError(
223
+ "couldn't move '%s' to '%s' by copy/delete: "
224
+ "delete '%s' failed: %s"
225
+ % (src, dst, src, msg))
226
+ return dst
227
+
228
+
229
+ def write_file (filename, contents):
230
+ """Create a file with the specified name and write 'contents' (a
231
+ sequence of strings without line terminators) to it.
232
+ """
233
+ f = open(filename, "w")
234
+ try:
235
+ for line in contents:
236
+ f.write(line + "\n")
237
+ finally:
238
+ f.close()
parrot/lib/python3.10/distutils/log.py ADDED
@@ -0,0 +1,77 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ """A simple log mechanism styled after PEP 282."""
2
+
3
+ # The class here is styled after PEP 282 so that it could later be
4
+ # replaced with a standard Python logging implementation.
5
+
6
+ DEBUG = 1
7
+ INFO = 2
8
+ WARN = 3
9
+ ERROR = 4
10
+ FATAL = 5
11
+
12
+ import sys
13
+
14
+ class Log:
15
+
16
+ def __init__(self, threshold=WARN):
17
+ self.threshold = threshold
18
+
19
+ def _log(self, level, msg, args):
20
+ if level not in (DEBUG, INFO, WARN, ERROR, FATAL):
21
+ raise ValueError('%s wrong log level' % str(level))
22
+
23
+ if level >= self.threshold:
24
+ if args:
25
+ msg = msg % args
26
+ if level in (WARN, ERROR, FATAL):
27
+ stream = sys.stderr
28
+ else:
29
+ stream = sys.stdout
30
+ try:
31
+ stream.write('%s\n' % msg)
32
+ except UnicodeEncodeError:
33
+ # emulate backslashreplace error handler
34
+ encoding = stream.encoding
35
+ msg = msg.encode(encoding, "backslashreplace").decode(encoding)
36
+ stream.write('%s\n' % msg)
37
+ stream.flush()
38
+
39
+ def log(self, level, msg, *args):
40
+ self._log(level, msg, args)
41
+
42
+ def debug(self, msg, *args):
43
+ self._log(DEBUG, msg, args)
44
+
45
+ def info(self, msg, *args):
46
+ self._log(INFO, msg, args)
47
+
48
+ def warn(self, msg, *args):
49
+ self._log(WARN, msg, args)
50
+
51
+ def error(self, msg, *args):
52
+ self._log(ERROR, msg, args)
53
+
54
+ def fatal(self, msg, *args):
55
+ self._log(FATAL, msg, args)
56
+
57
+ _global_log = Log()
58
+ log = _global_log.log
59
+ debug = _global_log.debug
60
+ info = _global_log.info
61
+ warn = _global_log.warn
62
+ error = _global_log.error
63
+ fatal = _global_log.fatal
64
+
65
+ def set_threshold(level):
66
+ # return the old threshold for use from tests
67
+ old = _global_log.threshold
68
+ _global_log.threshold = level
69
+ return old
70
+
71
+ def set_verbosity(v):
72
+ if v <= 0:
73
+ set_threshold(WARN)
74
+ elif v == 1:
75
+ set_threshold(INFO)
76
+ elif v >= 2:
77
+ set_threshold(DEBUG)
parrot/lib/python3.10/distutils/spawn.py ADDED
@@ -0,0 +1,129 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ """distutils.spawn
2
+
3
+ Provides the 'spawn()' function, a front-end to various platform-
4
+ specific functions for launching another program in a sub-process.
5
+ Also provides the 'find_executable()' to search the path for a given
6
+ executable name.
7
+ """
8
+
9
+ import sys
10
+ import os
11
+ import subprocess
12
+
13
+ from distutils.errors import DistutilsPlatformError, DistutilsExecError
14
+ from distutils.debug import DEBUG
15
+ from distutils import log
16
+
17
+
18
+ if sys.platform == 'darwin':
19
+ _cfg_target = None
20
+ _cfg_target_split = None
21
+
22
+
23
+ def spawn(cmd, search_path=1, verbose=0, dry_run=0):
24
+ """Run another program, specified as a command list 'cmd', in a new process.
25
+
26
+ 'cmd' is just the argument list for the new process, ie.
27
+ cmd[0] is the program to run and cmd[1:] are the rest of its arguments.
28
+ There is no way to run a program with a name different from that of its
29
+ executable.
30
+
31
+ If 'search_path' is true (the default), the system's executable
32
+ search path will be used to find the program; otherwise, cmd[0]
33
+ must be the exact path to the executable. If 'dry_run' is true,
34
+ the command will not actually be run.
35
+
36
+ Raise DistutilsExecError if running the program fails in any way; just
37
+ return on success.
38
+ """
39
+ # cmd is documented as a list, but just in case some code passes a tuple
40
+ # in, protect our %-formatting code against horrible death
41
+ cmd = list(cmd)
42
+
43
+ log.info(' '.join(cmd))
44
+ if dry_run:
45
+ return
46
+
47
+ if search_path:
48
+ executable = find_executable(cmd[0])
49
+ if executable is not None:
50
+ cmd[0] = executable
51
+
52
+ env = None
53
+ if sys.platform == 'darwin':
54
+ global _cfg_target, _cfg_target_split
55
+ if _cfg_target is None:
56
+ from distutils import sysconfig
57
+ _cfg_target = sysconfig.get_config_var(
58
+ 'MACOSX_DEPLOYMENT_TARGET') or ''
59
+ if _cfg_target:
60
+ _cfg_target_split = [int(x) for x in _cfg_target.split('.')]
61
+ if _cfg_target:
62
+ # Ensure that the deployment target of the build process is not
63
+ # less than 10.3 if the interpreter was built for 10.3 or later.
64
+ # This ensures extension modules are built with correct
65
+ # compatibility values, specifically LDSHARED which can use
66
+ # '-undefined dynamic_lookup' which only works on >= 10.3.
67
+ cur_target = os.environ.get('MACOSX_DEPLOYMENT_TARGET', _cfg_target)
68
+ cur_target_split = [int(x) for x in cur_target.split('.')]
69
+ if _cfg_target_split[:2] >= [10, 3] and cur_target_split[:2] < [10, 3]:
70
+ my_msg = ('$MACOSX_DEPLOYMENT_TARGET mismatch: '
71
+ 'now "%s" but "%s" during configure;'
72
+ 'must use 10.3 or later'
73
+ % (cur_target, _cfg_target))
74
+ raise DistutilsPlatformError(my_msg)
75
+ env = dict(os.environ,
76
+ MACOSX_DEPLOYMENT_TARGET=cur_target)
77
+
78
+ try:
79
+ proc = subprocess.Popen(cmd, env=env)
80
+ proc.wait()
81
+ exitcode = proc.returncode
82
+ except OSError as exc:
83
+ if not DEBUG:
84
+ cmd = cmd[0]
85
+ raise DistutilsExecError(
86
+ "command %r failed: %s" % (cmd, exc.args[-1])) from exc
87
+
88
+ if exitcode:
89
+ if not DEBUG:
90
+ cmd = cmd[0]
91
+ raise DistutilsExecError(
92
+ "command %r failed with exit code %s" % (cmd, exitcode))
93
+
94
+
95
+ def find_executable(executable, path=None):
96
+ """Tries to find 'executable' in the directories listed in 'path'.
97
+
98
+ A string listing directories separated by 'os.pathsep'; defaults to
99
+ os.environ['PATH']. Returns the complete filename or None if not found.
100
+ """
101
+ _, ext = os.path.splitext(executable)
102
+ if (sys.platform == 'win32') and (ext != '.exe'):
103
+ executable = executable + '.exe'
104
+
105
+ if os.path.isfile(executable):
106
+ return executable
107
+
108
+ if path is None:
109
+ path = os.environ.get('PATH', None)
110
+ if path is None:
111
+ try:
112
+ path = os.confstr("CS_PATH")
113
+ except (AttributeError, ValueError):
114
+ # os.confstr() or CS_PATH is not available
115
+ path = os.defpath
116
+ # bpo-35755: Don't use os.defpath if the PATH environment variable is
117
+ # set to an empty string
118
+
119
+ # PATH='' doesn't match, whereas PATH=':' looks in the current directory
120
+ if not path:
121
+ return None
122
+
123
+ paths = path.split(os.pathsep)
124
+ for p in paths:
125
+ f = os.path.join(p, executable)
126
+ if os.path.isfile(f):
127
+ # the file exists, we have a shot at spawn working
128
+ return f
129
+ return None
parrot/lib/python3.10/distutils/tests/__pycache__/support.cpython-310.pyc ADDED
Binary file (7.73 kB). View file
 
parrot/lib/python3.10/distutils/tests/__pycache__/test_archive_util.cpython-310.pyc ADDED
Binary file (11.6 kB). View file
 
parrot/lib/python3.10/distutils/tests/__pycache__/test_build_clib.cpython-310.pyc ADDED
Binary file (4.43 kB). View file
 
parrot/lib/python3.10/distutils/tests/__pycache__/test_build_py.cpython-310.pyc ADDED
Binary file (5.02 kB). View file
 
parrot/lib/python3.10/distutils/tests/__pycache__/test_check.cpython-310.pyc ADDED
Binary file (4.45 kB). View file