Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 1 | # DO NOT (entirely) modify this file manually, please read. |
| 2 | # |
| 3 | # IMPORTANT NOTE: |
| 4 | # Please keep in mind that the create_manifest task relies on the fact the the |
| 5 | # target and native Python packages are the same, and it also needs to be executed |
| 6 | # with a fully working native package (with all the PACKAGECONFIGs enabled and all |
| 7 | # and all the modules should be working, check log.do_compile), otherwise the script |
| 8 | # will fail to find dependencies correctly, this note is valid either if you are |
| 9 | # upgrading to a new Python version or adding a new package. |
| 10 | # |
| 11 | # |
| 12 | # If you are adding a new package please follow the next steps: |
| 13 | # How to add a new package: |
| 14 | # - If a user wants to add a new package all that has to be done is: |
| 15 | # Modify the python3-manifest.json file, and add the required file(s) to the FILES list, |
| 16 | # fill up the SUMMARY section as well, the script should handle all the rest. |
| 17 | # |
| 18 | # Real example: |
| 19 | # We want to add a web browser package, including the file webbrowser.py |
| 20 | # which at the moment is on python3-misc. |
| 21 | # "webbrowser": { |
| 22 | # "files": ["${libdir}/python${PYTHON_MAJMIN}/lib-dynload/webbrowser.py"], |
| 23 | # "rdepends": [], |
| 24 | # "summary": "Python Web Browser support"} |
| 25 | # |
| 26 | # * Note that the rdepends field was left empty |
| 27 | # |
| 28 | # We run $ bitbake python3 -c create_manifest and the resulting manifest |
| 29 | # should be completed after a few seconds, showing something like: |
| 30 | # "webbrowser": { |
| 31 | # "files": ["${libdir}/python${PYTHON_MAJMIN}/webbrowser.py"], |
| 32 | # "rdepends": ["core","fcntl","io","pickle","shell","subprocess"], |
| 33 | # "summary": "Python Web Browser support"} |
| 34 | # |
| 35 | # |
| 36 | # If you are upgrading Python to a new version please follow the next steps: |
| 37 | # After each Python upgrade, the create_manifest task should be executed, because we |
| 38 | # don't control what changes on upstream Python, so, some module dependency |
| 39 | # might have changed without us realizing it, a certain module can either have |
| 40 | # more or less dependencies, or could be depending on a new file that was just |
| 41 | # created on the new release and for obvious reasons we wouldn't have it on our |
| 42 | # old manifest, all of these issues would cause runtime errors on our system. |
| 43 | # |
| 44 | # - Upgrade both the native and target Python packages to a new version |
| 45 | # - Run the create_manifest task for the target Python package as its shown below: |
| 46 | # |
| 47 | # $ bitbake python3 -c create_manifest |
| 48 | # |
| 49 | # This will automatically replace your manifest file located under the Python directory |
| 50 | # with an new one, which contains the new dependencies (if any). |
| 51 | # |
| 52 | # Several things could have gone wrong here, I will try to explain a few: |
| 53 | # |
| 54 | # a) A new file was introduced on this release, e.g. sha3*.so: |
| 55 | # The task will check what its needed to import every module, more than one module would |
| 56 | # would probably depend on sha3*.so, although only one module should contain it. |
| 57 | # |
| 58 | # After running the task, the new manifest will have the sha3*.so file on more than one |
| 59 | # module, you need to manually decide which one of them should get it and delete it from |
| 60 | # the others, for example sha3*.so should likely be on ${PN}-crypt. |
| 61 | # Once you have deleted from the others you need to run the create_manifest task again, |
| 62 | # this will populate the other module's rdepends fields, with ${PN}-crypt and you should be |
| 63 | # good to go. |
| 64 | # |
| 65 | # b) The native package wasn't built correctly and its missing a certain module: |
| 66 | # As mentioned before, you need to make sure the native package was built with all the modules |
| 67 | # because it is used as base to build the manifest file, you need to manually check log.do_compile |
| 68 | # since it won't error out the compile function if its only missing a couple of modules. |
| 69 | # |
| 70 | # e.g. missing the _uuid module, log.do_compile would show the following: |
| 71 | # Python build finished successfully! |
| 72 | # The necessary bits to build these optional modules were not found: |
| 73 | # _uuid |
| 74 | # |
| 75 | # What will happen here is that the new manifest would not be aware that the _uuid module exists, so |
| 76 | # not only we won't know of any dependencies to it, but also, the _uuid* files will be packaged on |
| 77 | # the misc package (which is where any file that doesn't belong anywhere else ends up). |
| 78 | # |
| 79 | # This will eventually cause runtime errors on our system if we don't include the misc package on |
| 80 | # on our image, because the _uuid files will be missing. |
| 81 | # If we build the _uuid module correctly and run the create_manifest task the _uuid files will be |
| 82 | # detected correctly along with its dependencies, and we will get a working manifest. |
| 83 | # |
| 84 | # This is the reason why it is important to make sure we have a fully working native build, |
| 85 | # so we can avoid these errors. |
| 86 | # |
| 87 | # |
| 88 | # |
| 89 | # DO NOT MODIFY THE NEXT LINE!, IT IS USED AS A MARKER FOR THE ACTUAL JSON MANIFEST |
| 90 | # EOC |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 91 | { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 92 | "tests": { |
| 93 | "summary": "Python test suite", |
| 94 | "rdepends": [ |
| 95 | "core", |
| 96 | "modules" |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 97 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 98 | "files": [ |
| 99 | "${libdir}/python${PYTHON_MAJMIN}/*/test", |
| 100 | "${libdir}/python${PYTHON_MAJMIN}/*/tests", |
| 101 | "${libdir}/python${PYTHON_MAJMIN}/idlelib/idle_test/", |
| 102 | "${libdir}/python${PYTHON_MAJMIN}/test" |
| 103 | ], |
| 104 | "cached": [] |
| 105 | }, |
| 106 | "2to3": { |
| 107 | "summary": "Python automated Python 2 to 3 code translator", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 108 | "rdepends": [ |
| 109 | "core" |
| 110 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 111 | "files": [ |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 112 | "${bindir}/2to3*", |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 113 | "${libdir}/python${PYTHON_MAJMIN}/lib2to3" |
| 114 | ], |
| 115 | "cached": [] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 116 | }, |
| 117 | "asyncio": { |
Brad Bishop | 79641f2 | 2019-09-10 07:20:22 -0400 | [diff] [blame] | 118 | "summary": "Python Asynchronous I/O", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 119 | "rdepends": [ |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 120 | "core", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 121 | "io", |
| 122 | "logging", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 123 | "netclient", |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 124 | "numbers", |
| 125 | "stringold" |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 126 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 127 | "files": [ |
| 128 | "${libdir}/python${PYTHON_MAJMIN}/asyncio", |
| 129 | "${libdir}/python${PYTHON_MAJMIN}/concurrent", |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 130 | "${libdir}/python${PYTHON_MAJMIN}/concurrent/futures", |
| 131 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/_asyncio.*.so" |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 132 | ], |
| 133 | "cached": [] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 134 | }, |
| 135 | "audio": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 136 | "summary": "Python Audio Handling", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 137 | "rdepends": [ |
| 138 | "core" |
| 139 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 140 | "files": [ |
| 141 | "${libdir}/python${PYTHON_MAJMIN}/chunk.py", |
| 142 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/audioop.*.so", |
| 143 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/ossaudiodev.*.so", |
| 144 | "${libdir}/python${PYTHON_MAJMIN}/sndhdr.py", |
| 145 | "${libdir}/python${PYTHON_MAJMIN}/sunau.py", |
| 146 | "${libdir}/python${PYTHON_MAJMIN}/wave.py" |
| 147 | ], |
| 148 | "cached": [ |
| 149 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/chunk.*.pyc", |
| 150 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/sndhdr.*.pyc", |
| 151 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/sunau.*.pyc", |
| 152 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/wave.*.pyc" |
| 153 | ] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 154 | }, |
| 155 | "codecs": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 156 | "summary": "Python codec", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 157 | "rdepends": [ |
| 158 | "core" |
| 159 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 160 | "files": [ |
| 161 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/_multibytecodec.*.so", |
| 162 | "${libdir}/python${PYTHON_MAJMIN}/xdrlib.py" |
| 163 | ], |
| 164 | "cached": [ |
| 165 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/xdrlib.*.pyc" |
| 166 | ] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 167 | }, |
| 168 | "compile": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 169 | "summary": "Python bytecode compilation support", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 170 | "rdepends": [ |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 171 | "core" |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 172 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 173 | "files": [ |
| 174 | "${libdir}/python${PYTHON_MAJMIN}/compileall.py", |
| 175 | "${libdir}/python${PYTHON_MAJMIN}/py_compile.py" |
| 176 | ], |
| 177 | "cached": [ |
| 178 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/compileall.*.pyc", |
| 179 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/py_compile.*.pyc" |
| 180 | ] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 181 | }, |
| 182 | "compression": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 183 | "summary": "Python high-level compression support", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 184 | "rdepends": [ |
| 185 | "core", |
| 186 | "shell", |
| 187 | "unixadmin" |
| 188 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 189 | "files": [ |
| 190 | "${libdir}/python${PYTHON_MAJMIN}/_compression.py", |
| 191 | "${libdir}/python${PYTHON_MAJMIN}/bz2.py", |
| 192 | "${libdir}/python${PYTHON_MAJMIN}/gzip.py", |
| 193 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/_bz2.*.so", |
| 194 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/_lzma.*.so", |
| 195 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/zlib.*.so", |
| 196 | "${libdir}/python${PYTHON_MAJMIN}/lzma.py", |
| 197 | "${libdir}/python${PYTHON_MAJMIN}/tarfile.py", |
| 198 | "${libdir}/python${PYTHON_MAJMIN}/zipfile.py" |
| 199 | ], |
| 200 | "cached": [ |
| 201 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/_compression.*.pyc", |
| 202 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/bz2.*.pyc", |
| 203 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/gzip.*.pyc", |
| 204 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/lzma.*.pyc", |
| 205 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/tarfile.*.pyc", |
| 206 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/zipfile.*.pyc" |
| 207 | ] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 208 | }, |
| 209 | "core": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 210 | "summary": "Python interpreter and core modules", |
| 211 | "rdepends": [], |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 212 | "files": [ |
| 213 | "${bindir}/python*[!-config]", |
| 214 | "${includedir}/python${PYTHON_BINABI}/pyconfig*.h", |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 215 | "${prefix}/lib/python${PYTHON_MAJMIN}/config*/*[!.a]", |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 216 | "${libdir}/python${PYTHON_MAJMIN}/UserDict.py", |
| 217 | "${libdir}/python${PYTHON_MAJMIN}/UserList.py", |
| 218 | "${libdir}/python${PYTHON_MAJMIN}/UserString.py", |
| 219 | "${libdir}/python${PYTHON_MAJMIN}/__future__.py", |
| 220 | "${libdir}/python${PYTHON_MAJMIN}/_abcoll.py", |
| 221 | "${libdir}/python${PYTHON_MAJMIN}/_bootlocale.py", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 222 | "${libdir}/python${PYTHON_MAJMIN}/_collections_abc.py", |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 223 | "${libdir}/python${PYTHON_MAJMIN}/_markupbase.py", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 224 | "${libdir}/python${PYTHON_MAJMIN}/_sitebuiltins.py", |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 225 | "${libdir}/python${PYTHON_MAJMIN}/_sysconfigdata*.py", |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 226 | "${libdir}/python${PYTHON_MAJMIN}/_weakrefset.py", |
| 227 | "${libdir}/python${PYTHON_MAJMIN}/abc.py", |
| 228 | "${libdir}/python${PYTHON_MAJMIN}/argparse.py", |
| 229 | "${libdir}/python${PYTHON_MAJMIN}/ast.py", |
| 230 | "${libdir}/python${PYTHON_MAJMIN}/bisect.py", |
| 231 | "${libdir}/python${PYTHON_MAJMIN}/code.py", |
| 232 | "${libdir}/python${PYTHON_MAJMIN}/codecs.py", |
| 233 | "${libdir}/python${PYTHON_MAJMIN}/codeop.py", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 234 | "${libdir}/python${PYTHON_MAJMIN}/collections", |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 235 | "${libdir}/python${PYTHON_MAJMIN}/collections/abc.py", |
| 236 | "${libdir}/python${PYTHON_MAJMIN}/configparser.py", |
| 237 | "${libdir}/python${PYTHON_MAJMIN}/contextlib.py", |
| 238 | "${libdir}/python${PYTHON_MAJMIN}/copy.py", |
| 239 | "${libdir}/python${PYTHON_MAJMIN}/copyreg.py", |
| 240 | "${libdir}/python${PYTHON_MAJMIN}/csv.py", |
| 241 | "${libdir}/python${PYTHON_MAJMIN}/dis.py", |
| 242 | "${libdir}/python${PYTHON_MAJMIN}/encodings", |
| 243 | "${libdir}/python${PYTHON_MAJMIN}/encodings/aliases.py", |
| 244 | "${libdir}/python${PYTHON_MAJMIN}/encodings/latin_1.py", |
| 245 | "${libdir}/python${PYTHON_MAJMIN}/encodings/utf_8.py", |
| 246 | "${libdir}/python${PYTHON_MAJMIN}/enum.py", |
| 247 | "${libdir}/python${PYTHON_MAJMIN}/functools.py", |
| 248 | "${libdir}/python${PYTHON_MAJMIN}/genericpath.py", |
| 249 | "${libdir}/python${PYTHON_MAJMIN}/getopt.py", |
| 250 | "${libdir}/python${PYTHON_MAJMIN}/gettext.py", |
| 251 | "${libdir}/python${PYTHON_MAJMIN}/heapq.py", |
| 252 | "${libdir}/python${PYTHON_MAJMIN}/imp.py", |
| 253 | "${libdir}/python${PYTHON_MAJMIN}/importlib", |
| 254 | "${libdir}/python${PYTHON_MAJMIN}/importlib/_bootstrap.py", |
| 255 | "${libdir}/python${PYTHON_MAJMIN}/importlib/_bootstrap_external.py", |
| 256 | "${libdir}/python${PYTHON_MAJMIN}/importlib/abc.py", |
| 257 | "${libdir}/python${PYTHON_MAJMIN}/importlib/machinery.py", |
| 258 | "${libdir}/python${PYTHON_MAJMIN}/importlib/util.py", |
| 259 | "${libdir}/python${PYTHON_MAJMIN}/inspect.py", |
| 260 | "${libdir}/python${PYTHON_MAJMIN}/io.py", |
| 261 | "${libdir}/python${PYTHON_MAJMIN}/keyword.py", |
| 262 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/__pycache__/_struct.*.so", |
| 263 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/__pycache__/binascii.*.so", |
| 264 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/__pycache__/time.*.so", |
| 265 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/__pycache__/xreadlines.*.so", |
| 266 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/_bisect.*.so", |
| 267 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/_csv.*.so", |
| 268 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/_heapq.*.so", |
| 269 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/_opcode.*.so", |
| 270 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/_posixsubprocess.*.so", |
| 271 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/_struct.*.so", |
| 272 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/array.*.so", |
| 273 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/binascii.*.so", |
| 274 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/math.*.so", |
| 275 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/parser.*.so", |
| 276 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/readline.*.so", |
| 277 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/select.*.so", |
| 278 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/time.*.so", |
| 279 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/unicodedata.*.so", |
| 280 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/xreadlines.*.so", |
| 281 | "${libdir}/python${PYTHON_MAJMIN}/linecache.py", |
| 282 | "${libdir}/python${PYTHON_MAJMIN}/locale.py", |
| 283 | "${libdir}/python${PYTHON_MAJMIN}/new.py", |
Brad Bishop | c342db3 | 2019-05-15 21:57:59 -0400 | [diff] [blame] | 284 | "${libdir}/python${PYTHON_MAJMIN}/ntpath.py", |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 285 | "${libdir}/python${PYTHON_MAJMIN}/opcode.py", |
| 286 | "${libdir}/python${PYTHON_MAJMIN}/operator.py", |
| 287 | "${libdir}/python${PYTHON_MAJMIN}/optparse.py", |
| 288 | "${libdir}/python${PYTHON_MAJMIN}/os.py", |
| 289 | "${libdir}/python${PYTHON_MAJMIN}/platform.py", |
| 290 | "${libdir}/python${PYTHON_MAJMIN}/posixpath.py", |
| 291 | "${libdir}/python${PYTHON_MAJMIN}/re.py", |
| 292 | "${libdir}/python${PYTHON_MAJMIN}/reprlib.py", |
| 293 | "${libdir}/python${PYTHON_MAJMIN}/rlcompleter.py", |
Brad Bishop | 00e122a | 2019-10-05 11:10:57 -0400 | [diff] [blame] | 294 | "${libdir}/python${PYTHON_MAJMIN}/runpy.py", |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 295 | "${libdir}/python${PYTHON_MAJMIN}/selectors.py", |
| 296 | "${libdir}/python${PYTHON_MAJMIN}/signal.py", |
| 297 | "${libdir}/python${PYTHON_MAJMIN}/site.py", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 298 | "${libdir}/python${PYTHON_MAJMIN}/sitecustomize.py", |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 299 | "${libdir}/python${PYTHON_MAJMIN}/sre_compile.py", |
| 300 | "${libdir}/python${PYTHON_MAJMIN}/sre_constants.py", |
| 301 | "${libdir}/python${PYTHON_MAJMIN}/sre_parse.py", |
| 302 | "${libdir}/python${PYTHON_MAJMIN}/stat.py", |
| 303 | "${libdir}/python${PYTHON_MAJMIN}/stringprep.py", |
| 304 | "${libdir}/python${PYTHON_MAJMIN}/struct.py", |
| 305 | "${libdir}/python${PYTHON_MAJMIN}/subprocess.py", |
| 306 | "${libdir}/python${PYTHON_MAJMIN}/symbol.py", |
| 307 | "${libdir}/python${PYTHON_MAJMIN}/sysconfig.py", |
| 308 | "${libdir}/python${PYTHON_MAJMIN}/textwrap.py", |
| 309 | "${libdir}/python${PYTHON_MAJMIN}/threading.py", |
| 310 | "${libdir}/python${PYTHON_MAJMIN}/token.py", |
| 311 | "${libdir}/python${PYTHON_MAJMIN}/tokenize.py", |
| 312 | "${libdir}/python${PYTHON_MAJMIN}/traceback.py", |
| 313 | "${libdir}/python${PYTHON_MAJMIN}/types.py", |
| 314 | "${libdir}/python${PYTHON_MAJMIN}/warnings.py", |
| 315 | "${libdir}/python${PYTHON_MAJMIN}/weakref.py" |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 316 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 317 | "cached": [ |
| 318 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/__future__.*.pyc", |
| 319 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/_bootlocale.*.pyc", |
| 320 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/_collections_abc.*.pyc", |
| 321 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/_markupbase.*.pyc", |
| 322 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/_sitebuiltins.*.pyc", |
| 323 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/_sysconfigdata.*.pyc", |
| 324 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/_weakrefset.*.pyc", |
| 325 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/abc.*.pyc", |
| 326 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/argparse.*.pyc", |
| 327 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/ast.*.pyc", |
| 328 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/bisect.*.pyc", |
| 329 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/code.*.pyc", |
| 330 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/codecs.*.pyc", |
| 331 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/codeop.*.pyc", |
| 332 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/configparser.*.pyc", |
| 333 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/contextlib.*.pyc", |
| 334 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/copy.*.pyc", |
| 335 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/copyreg.*.pyc", |
| 336 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/csv.*.pyc", |
| 337 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/dis.*.pyc", |
| 338 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/enum.*.pyc", |
| 339 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/functools.*.pyc", |
| 340 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/genericpath.*.pyc", |
| 341 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/getopt.*.pyc", |
| 342 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/gettext.*.pyc", |
| 343 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/heapq.*.pyc", |
| 344 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/imp.*.pyc", |
| 345 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/inspect.*.pyc", |
| 346 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/io.*.pyc", |
| 347 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/keyword.*.pyc", |
| 348 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/linecache.*.pyc", |
| 349 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/locale.*.pyc", |
| 350 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/opcode.*.pyc", |
| 351 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/operator.*.pyc", |
| 352 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/optparse.*.pyc", |
| 353 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/os.*.pyc", |
| 354 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/platform.*.pyc", |
| 355 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/posixpath.*.pyc", |
| 356 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/re.*.pyc", |
| 357 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/reprlib.*.pyc", |
| 358 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/rlcompleter.*.pyc", |
Brad Bishop | 00e122a | 2019-10-05 11:10:57 -0400 | [diff] [blame] | 359 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/runpy.*.pyc", |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 360 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/selectors.*.pyc", |
| 361 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/signal.*.pyc", |
| 362 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/site.*.pyc", |
| 363 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/sre_compile.*.pyc", |
| 364 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/sre_constants.*.pyc", |
| 365 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/sre_parse.*.pyc", |
| 366 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/stat.*.pyc", |
| 367 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/stringprep.*.pyc", |
| 368 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/struct.*.pyc", |
| 369 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/subprocess.*.pyc", |
| 370 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/symbol.*.pyc", |
| 371 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/sysconfig.*.pyc", |
| 372 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/textwrap.*.pyc", |
| 373 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/threading.*.pyc", |
| 374 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/token.*.pyc", |
| 375 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/tokenize.*.pyc", |
| 376 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/traceback.*.pyc", |
| 377 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/types.*.pyc", |
| 378 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/warnings.*.pyc", |
| 379 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/weakref.*.pyc", |
| 380 | "${libdir}/python${PYTHON_MAJMIN}/collections/__pycache__", |
| 381 | "${libdir}/python${PYTHON_MAJMIN}/collections/__pycache__/abc.*.pyc", |
| 382 | "${libdir}/python${PYTHON_MAJMIN}/encodings/__pycache__", |
| 383 | "${libdir}/python${PYTHON_MAJMIN}/encodings/__pycache__/aliases.*.pyc", |
| 384 | "${libdir}/python${PYTHON_MAJMIN}/encodings/__pycache__/latin_1.*.pyc", |
| 385 | "${libdir}/python${PYTHON_MAJMIN}/encodings/__pycache__/utf_8.*.pyc", |
| 386 | "${libdir}/python${PYTHON_MAJMIN}/importlib/__pycache__", |
| 387 | "${libdir}/python${PYTHON_MAJMIN}/importlib/__pycache__/abc.*.pyc", |
| 388 | "${libdir}/python${PYTHON_MAJMIN}/importlib/__pycache__/machinery.*.pyc", |
| 389 | "${libdir}/python${PYTHON_MAJMIN}/importlib/__pycache__/util.*.pyc" |
| 390 | ] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 391 | }, |
| 392 | "crypt": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 393 | "summary": "Python basic cryptographic and hashing support", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 394 | "rdepends": [ |
| 395 | "core", |
| 396 | "math", |
| 397 | "stringold" |
| 398 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 399 | "files": [ |
| 400 | "${libdir}/python${PYTHON_MAJMIN}/crypt.py", |
| 401 | "${libdir}/python${PYTHON_MAJMIN}/hashlib.py", |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 402 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/_blake2.*.so", |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 403 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/_crypt.*.so", |
| 404 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/_hashlib.*.so", |
| 405 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/_sha256.*.so", |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 406 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/_sha3.*.so", |
| 407 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/_sha1.*.so", |
| 408 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/_md5.*.so", |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 409 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/_sha512.*.so" |
| 410 | ], |
| 411 | "cached": [ |
| 412 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/crypt.*.pyc", |
| 413 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/hashlib.*.pyc" |
| 414 | ] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 415 | }, |
| 416 | "ctypes": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 417 | "summary": "Python C types support", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 418 | "rdepends": [ |
| 419 | "core" |
| 420 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 421 | "files": [ |
| 422 | "${libdir}/python${PYTHON_MAJMIN}/ctypes", |
| 423 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/_ctypes.*.so", |
| 424 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/_ctypes_test.*.so" |
| 425 | ], |
| 426 | "cached": [] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 427 | }, |
| 428 | "curses": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 429 | "summary": "Python curses support", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 430 | "rdepends": [ |
| 431 | "core" |
| 432 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 433 | "files": [ |
| 434 | "${libdir}/python${PYTHON_MAJMIN}/curses", |
| 435 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/_curses.*.so", |
| 436 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/_curses_panel.*.so" |
| 437 | ], |
| 438 | "cached": [] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 439 | }, |
| 440 | "datetime": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 441 | "summary": "Python calendar and time support", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 442 | "rdepends": [ |
| 443 | "core" |
| 444 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 445 | "files": [ |
| 446 | "${libdir}/python${PYTHON_MAJMIN}/_strptime.py", |
| 447 | "${libdir}/python${PYTHON_MAJMIN}/calendar.py", |
| 448 | "${libdir}/python${PYTHON_MAJMIN}/datetime.py", |
| 449 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/_datetime.*.so" |
| 450 | ], |
| 451 | "cached": [ |
| 452 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/_strptime.*.pyc", |
| 453 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/calendar.*.pyc", |
| 454 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/datetime.*.pyc" |
| 455 | ] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 456 | }, |
| 457 | "db": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 458 | "summary": "Python file-based database support", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 459 | "rdepends": [ |
| 460 | "core" |
| 461 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 462 | "files": [ |
| 463 | "${libdir}/python${PYTHON_MAJMIN}/dbm", |
| 464 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/_dbm.*.so" |
| 465 | ], |
| 466 | "cached": [] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 467 | }, |
| 468 | "debugger": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 469 | "summary": "Python debugger", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 470 | "rdepends": [ |
| 471 | "core", |
| 472 | "pprint", |
| 473 | "shell", |
| 474 | "stringold" |
| 475 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 476 | "files": [ |
| 477 | "${libdir}/python${PYTHON_MAJMIN}/bdb.py", |
| 478 | "${libdir}/python${PYTHON_MAJMIN}/pdb.py" |
| 479 | ], |
| 480 | "cached": [ |
| 481 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/bdb.*.pyc", |
| 482 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/pdb.*.pyc" |
| 483 | ] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 484 | }, |
| 485 | "dev": { |
| 486 | "cached": [], |
| 487 | "files": [ |
| 488 | "${base_libdir}/*.a", |
| 489 | "${base_libdir}/*.o", |
| 490 | "${bindir}/python*-config", |
| 491 | "${datadir}/aclocal", |
| 492 | "${datadir}/pkgconfig", |
| 493 | "${includedir}", |
| 494 | "${libdir}/*.a", |
| 495 | "${libdir}/*.la", |
| 496 | "${libdir}/*.o", |
| 497 | "${libdir}/lib*${SOLIBSDEV}", |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 498 | "${libdir}/pkgconfig" |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 499 | ], |
| 500 | "rdepends": [ |
| 501 | "core" |
| 502 | ], |
| 503 | "summary": "Python development package" |
| 504 | }, |
| 505 | "difflib": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 506 | "summary": "Python helpers for computing deltas between objects", |
| 507 | "rdepends": [ |
| 508 | "core" |
| 509 | ], |
| 510 | "files": [ |
| 511 | "${libdir}/python${PYTHON_MAJMIN}/difflib.py" |
| 512 | ], |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 513 | "cached": [ |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 514 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/difflib.*.pyc" |
| 515 | ] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 516 | }, |
Brad Bishop | 08902b0 | 2019-08-20 09:16:51 -0400 | [diff] [blame] | 517 | "distutils-windows": { |
| 518 | "cached": [], |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 519 | "files": [ |
Brad Bishop | 08902b0 | 2019-08-20 09:16:51 -0400 | [diff] [blame] | 520 | "${libdir}/python${PYTHON_MAJMIN}/distutils/command/wininst-*.exe" |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 521 | ], |
| 522 | "rdepends": [ |
| 523 | "distutils" |
| 524 | ], |
Brad Bishop | 08902b0 | 2019-08-20 09:16:51 -0400 | [diff] [blame] | 525 | "summary": "Python distribution utilities (Windows installer stubs)" |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 526 | }, |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 527 | "distutils": { |
| 528 | "summary": "Python Distribution Utilities", |
| 529 | "rdepends": [ |
| 530 | "core" |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 531 | ], |
| 532 | "files": [ |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 533 | "${libdir}/python${PYTHON_MAJMIN}/distutils" |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 534 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 535 | "cached": [] |
| 536 | }, |
| 537 | "doctest": { |
| 538 | "summary": "Python framework for running examples in docstrings", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 539 | "rdepends": [ |
| 540 | "core", |
| 541 | "debugger", |
| 542 | "difflib", |
| 543 | "logging", |
| 544 | "pprint", |
| 545 | "shell", |
| 546 | "stringold", |
| 547 | "unittest" |
| 548 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 549 | "files": [ |
| 550 | "${libdir}/python${PYTHON_MAJMIN}/doctest.py" |
| 551 | ], |
| 552 | "cached": [ |
| 553 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/doctest.*.pyc" |
| 554 | ] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 555 | }, |
| 556 | "email": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 557 | "summary": "Python email support", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 558 | "rdepends": [ |
| 559 | "core", |
| 560 | "crypt", |
| 561 | "datetime", |
| 562 | "io", |
| 563 | "math", |
| 564 | "netclient" |
| 565 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 566 | "files": [ |
| 567 | "${libdir}/python${PYTHON_MAJMIN}/email", |
| 568 | "${libdir}/python${PYTHON_MAJMIN}/imaplib.py" |
| 569 | ], |
| 570 | "cached": [ |
| 571 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/imaplib.*.pyc" |
| 572 | ] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 573 | }, |
| 574 | "fcntl": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 575 | "summary": "Python's fcntl interface", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 576 | "rdepends": [ |
| 577 | "core" |
| 578 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 579 | "files": [ |
| 580 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/fcntl.*.so" |
| 581 | ], |
| 582 | "cached": [] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 583 | }, |
| 584 | "gdbm": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 585 | "summary": "Python GNU database support", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 586 | "rdepends": [ |
| 587 | "core" |
| 588 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 589 | "files": [ |
| 590 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/_gdbm.*.so" |
| 591 | ], |
| 592 | "cached": [] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 593 | }, |
| 594 | "html": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 595 | "summary": "Python HTML processing support", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 596 | "rdepends": [ |
| 597 | "core" |
| 598 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 599 | "files": [ |
| 600 | "${libdir}/python${PYTHON_MAJMIN}/formatter.py", |
| 601 | "${libdir}/python${PYTHON_MAJMIN}/html" |
| 602 | ], |
| 603 | "cached": [ |
| 604 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/formatter.*.pyc" |
| 605 | ] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 606 | }, |
| 607 | "idle": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 608 | "summary": "Python Integrated Development Environment", |
| 609 | "rdepends": [ |
| 610 | "core" |
| 611 | ], |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 612 | "files": [ |
| 613 | "${bindir}/idle*", |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 614 | "${libdir}/python${PYTHON_MAJMIN}/idlelib" |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 615 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 616 | "cached": [] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 617 | }, |
| 618 | "image": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 619 | "summary": "Python graphical image handling", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 620 | "rdepends": [ |
| 621 | "core" |
| 622 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 623 | "files": [ |
| 624 | "${libdir}/python${PYTHON_MAJMIN}/colorsys.py", |
| 625 | "${libdir}/python${PYTHON_MAJMIN}/imghdr.py" |
| 626 | ], |
| 627 | "cached": [ |
| 628 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/colorsys.*.pyc", |
| 629 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/imghdr.*.pyc" |
| 630 | ] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 631 | }, |
| 632 | "io": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 633 | "summary": "Python low-level I/O", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 634 | "rdepends": [ |
| 635 | "compression", |
| 636 | "core", |
| 637 | "crypt", |
| 638 | "math", |
| 639 | "netclient", |
| 640 | "shell", |
| 641 | "unixadmin" |
| 642 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 643 | "files": [ |
| 644 | "${libdir}/python${PYTHON_MAJMIN}/_pyio.py", |
| 645 | "${libdir}/python${PYTHON_MAJMIN}/ipaddress.py", |
| 646 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/_socket.*.so", |
| 647 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/_ssl.*.so", |
| 648 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/termios.*.so", |
| 649 | "${libdir}/python${PYTHON_MAJMIN}/pipes.py", |
| 650 | "${libdir}/python${PYTHON_MAJMIN}/socket.py", |
| 651 | "${libdir}/python${PYTHON_MAJMIN}/ssl.py", |
| 652 | "${libdir}/python${PYTHON_MAJMIN}/tempfile.py" |
| 653 | ], |
| 654 | "cached": [ |
| 655 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/_pyio.*.pyc", |
| 656 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/ipaddress.*.pyc", |
| 657 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/pipes.*.pyc", |
| 658 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/socket.*.pyc", |
| 659 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/ssl.*.pyc", |
| 660 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/tempfile.*.pyc" |
| 661 | ] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 662 | }, |
| 663 | "json": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 664 | "summary": "Python JSON support", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 665 | "rdepends": [ |
| 666 | "core" |
| 667 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 668 | "files": [ |
| 669 | "${libdir}/python${PYTHON_MAJMIN}/json", |
| 670 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/_json.*.so" |
| 671 | ], |
| 672 | "cached": [] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 673 | }, |
| 674 | "logging": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 675 | "summary": "Python logging support", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 676 | "rdepends": [ |
| 677 | "core", |
| 678 | "stringold" |
| 679 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 680 | "files": [ |
| 681 | "${libdir}/python${PYTHON_MAJMIN}/logging" |
| 682 | ], |
| 683 | "cached": [] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 684 | }, |
| 685 | "mailbox": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 686 | "summary": "Python mailbox format support", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 687 | "rdepends": [ |
| 688 | "core", |
| 689 | "crypt", |
| 690 | "datetime", |
| 691 | "email", |
| 692 | "fcntl", |
| 693 | "io", |
| 694 | "math", |
| 695 | "mime", |
| 696 | "netclient", |
| 697 | "stringold" |
| 698 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 699 | "files": [ |
| 700 | "${libdir}/python${PYTHON_MAJMIN}/mailbox.py" |
| 701 | ], |
| 702 | "cached": [ |
| 703 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/mailbox.*.pyc" |
| 704 | ] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 705 | }, |
| 706 | "math": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 707 | "summary": "Python math support", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 708 | "rdepends": [ |
| 709 | "core", |
| 710 | "crypt" |
| 711 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 712 | "files": [ |
| 713 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/_random.*.so", |
| 714 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/cmath.*.so", |
| 715 | "${libdir}/python${PYTHON_MAJMIN}/random.py" |
| 716 | ], |
| 717 | "cached": [ |
| 718 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/random.*.pyc" |
| 719 | ] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 720 | }, |
| 721 | "mime": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 722 | "summary": "Python MIME handling APIs", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 723 | "rdepends": [ |
| 724 | "core" |
| 725 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 726 | "files": [ |
| 727 | "${libdir}/python${PYTHON_MAJMIN}/quopri.py", |
| 728 | "${libdir}/python${PYTHON_MAJMIN}/uu.py" |
| 729 | ], |
| 730 | "cached": [ |
| 731 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/quopri.*.pyc", |
| 732 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/uu.*.pyc" |
| 733 | ] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 734 | }, |
| 735 | "mmap": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 736 | "summary": "Python memory-mapped file support", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 737 | "rdepends": [ |
| 738 | "core" |
| 739 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 740 | "files": [ |
| 741 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/mmap.*.so" |
| 742 | ], |
| 743 | "cached": [] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 744 | }, |
| 745 | "modules": { |
| 746 | "cached": [], |
| 747 | "files": [], |
| 748 | "rdepends": [ |
| 749 | "2to3", |
| 750 | "asyncio", |
| 751 | "audio", |
| 752 | "codecs", |
| 753 | "compile", |
| 754 | "compression", |
| 755 | "core", |
| 756 | "crypt", |
| 757 | "ctypes", |
| 758 | "curses", |
| 759 | "datetime", |
| 760 | "db", |
| 761 | "debugger", |
| 762 | "difflib", |
| 763 | "distutils", |
| 764 | "doctest", |
| 765 | "email", |
| 766 | "fcntl", |
| 767 | "html", |
| 768 | "idle", |
| 769 | "image", |
| 770 | "io", |
| 771 | "json", |
| 772 | "logging", |
| 773 | "mailbox", |
| 774 | "math", |
| 775 | "mime", |
| 776 | "mmap", |
| 777 | "multiprocessing", |
| 778 | "netclient", |
| 779 | "netserver", |
| 780 | "numbers", |
| 781 | "pickle", |
| 782 | "pkgutil", |
| 783 | "plistlib", |
| 784 | "pprint", |
| 785 | "profile", |
| 786 | "pydoc", |
| 787 | "resource", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 788 | "shell", |
| 789 | "smtpd", |
| 790 | "sqlite3", |
| 791 | "stringold", |
| 792 | "syslog", |
| 793 | "terminal", |
| 794 | "threading", |
| 795 | "tkinter", |
| 796 | "typing", |
| 797 | "unittest", |
| 798 | "unixadmin", |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 799 | "venv", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 800 | "xml", |
| 801 | "xmlrpc" |
| 802 | ], |
Brad Bishop | 08902b0 | 2019-08-20 09:16:51 -0400 | [diff] [blame] | 803 | "rrecommends": [ |
| 804 | "distutils-windows" |
| 805 | ], |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 806 | "summary": "All Python modules" |
| 807 | }, |
| 808 | "multiprocessing": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 809 | "summary": "Python multiprocessing support", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 810 | "rdepends": [ |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 811 | "core", |
| 812 | "io", |
| 813 | "pickle" |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 814 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 815 | "files": [ |
| 816 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/_multiprocessing.*.so", |
| 817 | "${libdir}/python${PYTHON_MAJMIN}/multiprocessing" |
| 818 | ], |
| 819 | "cached": [] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 820 | }, |
| 821 | "netclient": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 822 | "summary": "Python Internet Protocol clients", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 823 | "rdepends": [ |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 824 | "core", |
| 825 | "crypt", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 826 | "datetime", |
| 827 | "email", |
| 828 | "io", |
| 829 | "math", |
| 830 | "mime", |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 831 | "stringold" |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 832 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 833 | "files": [ |
| 834 | "${libdir}/python${PYTHON_MAJMIN}/base64.py", |
| 835 | "${libdir}/python${PYTHON_MAJMIN}/ftplib.py", |
| 836 | "${libdir}/python${PYTHON_MAJMIN}/hmac.py", |
| 837 | "${libdir}/python${PYTHON_MAJMIN}/http", |
| 838 | "${libdir}/python${PYTHON_MAJMIN}/http/__pycache__", |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 839 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/_uuid.*.so", |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 840 | "${libdir}/python${PYTHON_MAJMIN}/mimetypes.py", |
| 841 | "${libdir}/python${PYTHON_MAJMIN}/nntplib.py", |
| 842 | "${libdir}/python${PYTHON_MAJMIN}/poplib.py", |
| 843 | "${libdir}/python${PYTHON_MAJMIN}/smtplib.py", |
| 844 | "${libdir}/python${PYTHON_MAJMIN}/telnetlib.py", |
| 845 | "${libdir}/python${PYTHON_MAJMIN}/urllib", |
| 846 | "${libdir}/python${PYTHON_MAJMIN}/urllib/__pycache__", |
| 847 | "${libdir}/python${PYTHON_MAJMIN}/uuid.py" |
| 848 | ], |
| 849 | "cached": [ |
| 850 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/base64.*.pyc", |
| 851 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/ftplib.*.pyc", |
| 852 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/hmac.*.pyc", |
| 853 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/mimetypes.*.pyc", |
| 854 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/nntplib.*.pyc", |
| 855 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/poplib.*.pyc", |
| 856 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/smtplib.*.pyc", |
| 857 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/telnetlib.*.pyc", |
| 858 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/uuid.*.pyc" |
| 859 | ] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 860 | }, |
| 861 | "netserver": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 862 | "summary": "Python Internet Protocol servers", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 863 | "rdepends": [ |
| 864 | "compression", |
| 865 | "core", |
| 866 | "crypt", |
| 867 | "datetime", |
| 868 | "email", |
| 869 | "html", |
| 870 | "io", |
| 871 | "math", |
| 872 | "mime", |
| 873 | "netclient", |
| 874 | "shell", |
| 875 | "stringold", |
| 876 | "unixadmin" |
| 877 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 878 | "files": [ |
| 879 | "${libdir}/python${PYTHON_MAJMIN}/cgi.py", |
| 880 | "${libdir}/python${PYTHON_MAJMIN}/socketserver.py" |
| 881 | ], |
| 882 | "cached": [ |
| 883 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/cgi.*.pyc", |
| 884 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/socketserver.*.pyc" |
| 885 | ] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 886 | }, |
| 887 | "numbers": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 888 | "summary": "Python number APIs", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 889 | "rdepends": [ |
| 890 | "core" |
| 891 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 892 | "files": [ |
| 893 | "${libdir}/python${PYTHON_MAJMIN}/_pydecimal.py", |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 894 | "${libdir}/python${PYTHON_MAJMIN}/contextvars.py", |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 895 | "${libdir}/python${PYTHON_MAJMIN}/decimal.py", |
| 896 | "${libdir}/python${PYTHON_MAJMIN}/fractions.py", |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 897 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/_contextvars.*.so", |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 898 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/_decimal.*.so", |
| 899 | "${libdir}/python${PYTHON_MAJMIN}/numbers.py" |
| 900 | ], |
| 901 | "cached": [ |
| 902 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/_pydecimal.*.pyc", |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 903 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/contextvars.*.pyc", |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 904 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/decimal.*.pyc", |
| 905 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/fractions.*.pyc", |
| 906 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/numbers.*.pyc" |
| 907 | ] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 908 | }, |
| 909 | "pickle": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 910 | "summary": "Python serialisation/persistence support", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 911 | "rdepends": [ |
| 912 | "core" |
| 913 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 914 | "files": [ |
| 915 | "${libdir}/python${PYTHON_MAJMIN}/_compat_pickle.py", |
| 916 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/_pickle.*.so", |
| 917 | "${libdir}/python${PYTHON_MAJMIN}/pickle.py", |
| 918 | "${libdir}/python${PYTHON_MAJMIN}/pickletools.py", |
| 919 | "${libdir}/python${PYTHON_MAJMIN}/shelve.py" |
| 920 | ], |
| 921 | "cached": [ |
| 922 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/_compat_pickle.*.pyc", |
| 923 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/pickle.*.pyc", |
| 924 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/pickletools.*.pyc", |
| 925 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/shelve.*.pyc" |
| 926 | ] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 927 | }, |
| 928 | "pkgutil": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 929 | "summary": "Python package extension utility support", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 930 | "rdepends": [ |
| 931 | "core" |
| 932 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 933 | "files": [ |
| 934 | "${libdir}/python${PYTHON_MAJMIN}/pkgutil.py" |
| 935 | ], |
| 936 | "cached": [ |
| 937 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/pkgutil.*.pyc" |
| 938 | ] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 939 | }, |
| 940 | "plistlib": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 941 | "summary": "Generate and parse Mac OS X .plist files", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 942 | "rdepends": [ |
| 943 | "core", |
| 944 | "datetime", |
| 945 | "xml" |
| 946 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 947 | "files": [ |
| 948 | "${libdir}/python${PYTHON_MAJMIN}/plistlib.py" |
| 949 | ], |
| 950 | "cached": [ |
| 951 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/plistlib.*.pyc" |
| 952 | ] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 953 | }, |
| 954 | "pprint": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 955 | "summary": "Python pretty-print support", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 956 | "rdepends": [ |
| 957 | "core" |
| 958 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 959 | "files": [ |
| 960 | "${libdir}/python${PYTHON_MAJMIN}/pprint.py" |
| 961 | ], |
| 962 | "cached": [ |
| 963 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/pprint.*.pyc" |
| 964 | ] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 965 | }, |
| 966 | "profile": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 967 | "summary": "Python basic performance profiling support", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 968 | "rdepends": [ |
| 969 | "core" |
| 970 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 971 | "files": [ |
| 972 | "${libdir}/python${PYTHON_MAJMIN}/cProfile.py", |
| 973 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/_lsprof.*.so", |
| 974 | "${libdir}/python${PYTHON_MAJMIN}/profile.py", |
| 975 | "${libdir}/python${PYTHON_MAJMIN}/pstats.py" |
| 976 | ], |
| 977 | "cached": [ |
| 978 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/cProfile.*.pyc", |
| 979 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/profile.*.pyc", |
| 980 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/pstats.*.pyc" |
| 981 | ] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 982 | }, |
| 983 | "pydoc": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 984 | "summary": "Python interactive help support", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 985 | "rdepends": [ |
| 986 | "core", |
| 987 | "netclient", |
| 988 | "pkgutil" |
| 989 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 990 | "files": [ |
| 991 | "${bindir}/pydoc*", |
| 992 | "${libdir}/python${PYTHON_MAJMIN}/pydoc.py", |
| 993 | "${libdir}/python${PYTHON_MAJMIN}/pydoc_data" |
| 994 | ], |
| 995 | "cached": [ |
| 996 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/pydoc.*.pyc" |
| 997 | ] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 998 | }, |
| 999 | "resource": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1000 | "summary": "Python resource control interface", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 1001 | "rdepends": [ |
| 1002 | "core" |
| 1003 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1004 | "files": [ |
| 1005 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/resource.*.so" |
| 1006 | ], |
| 1007 | "cached": [] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 1008 | }, |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 1009 | "shell": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1010 | "summary": "Python shell-like functionality", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 1011 | "rdepends": [ |
| 1012 | "compression", |
| 1013 | "core", |
| 1014 | "stringold", |
| 1015 | "unixadmin" |
| 1016 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1017 | "files": [ |
| 1018 | "${libdir}/python${PYTHON_MAJMIN}/cmd.py", |
| 1019 | "${libdir}/python${PYTHON_MAJMIN}/fnmatch.py", |
| 1020 | "${libdir}/python${PYTHON_MAJMIN}/glob.py", |
| 1021 | "${libdir}/python${PYTHON_MAJMIN}/shlex.py", |
| 1022 | "${libdir}/python${PYTHON_MAJMIN}/shutil.py" |
| 1023 | ], |
| 1024 | "cached": [ |
| 1025 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/cmd.*.pyc", |
| 1026 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/fnmatch.*.pyc", |
| 1027 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/glob.*.pyc", |
| 1028 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/shlex.*.pyc", |
| 1029 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/shutil.*.pyc" |
| 1030 | ] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 1031 | }, |
| 1032 | "smtpd": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1033 | "summary": "Python Simple Mail Transport Daemon", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 1034 | "rdepends": [ |
| 1035 | "core", |
| 1036 | "crypt", |
| 1037 | "datetime", |
| 1038 | "email", |
| 1039 | "io", |
| 1040 | "math", |
| 1041 | "mime", |
| 1042 | "netclient", |
| 1043 | "stringold" |
| 1044 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1045 | "files": [ |
| 1046 | "${bindir}/smtpd.py", |
| 1047 | "${libdir}/python${PYTHON_MAJMIN}/asynchat.py", |
| 1048 | "${libdir}/python${PYTHON_MAJMIN}/asyncore.py", |
| 1049 | "${libdir}/python${PYTHON_MAJMIN}/smtpd.py" |
| 1050 | ], |
| 1051 | "cached": [ |
| 1052 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/asynchat.*.pyc", |
| 1053 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/asyncore.*.pyc", |
| 1054 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/smtpd.*.pyc" |
| 1055 | ] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 1056 | }, |
| 1057 | "sqlite3": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1058 | "summary": "Python Sqlite3 database support", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 1059 | "rdepends": [ |
| 1060 | "core", |
| 1061 | "datetime" |
| 1062 | ], |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 1063 | "files": [ |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1064 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/_sqlite3.*.so", |
| 1065 | "${libdir}/python${PYTHON_MAJMIN}/sqlite3" |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 1066 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1067 | "cached": [] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 1068 | }, |
| 1069 | "stringold": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1070 | "summary": "Python string APIs [deprecated]", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 1071 | "rdepends": [ |
| 1072 | "core" |
| 1073 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1074 | "files": [ |
| 1075 | "${libdir}/python${PYTHON_MAJMIN}/string.py" |
| 1076 | ], |
| 1077 | "cached": [ |
| 1078 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/string.*.pyc" |
| 1079 | ] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 1080 | }, |
| 1081 | "syslog": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1082 | "summary": "Python syslog interface", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 1083 | "rdepends": [ |
| 1084 | "core" |
| 1085 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1086 | "files": [ |
| 1087 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/syslog.*.so" |
| 1088 | ], |
| 1089 | "cached": [] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 1090 | }, |
| 1091 | "terminal": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1092 | "summary": "Python terminal controlling support", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 1093 | "rdepends": [ |
| 1094 | "core", |
| 1095 | "io" |
| 1096 | ], |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 1097 | "files": [ |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1098 | "${libdir}/python${PYTHON_MAJMIN}/pty.py", |
| 1099 | "${libdir}/python${PYTHON_MAJMIN}/tty.py" |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 1100 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1101 | "cached": [ |
| 1102 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/pty.*.pyc", |
| 1103 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/tty.*.pyc" |
| 1104 | ] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 1105 | }, |
| 1106 | "threading": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1107 | "summary": "Python threading & synchronization support", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 1108 | "rdepends": [ |
| 1109 | "core" |
| 1110 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1111 | "files": [ |
| 1112 | "${libdir}/python${PYTHON_MAJMIN}/_dummy_thread.py", |
| 1113 | "${libdir}/python${PYTHON_MAJMIN}/_threading_local.py", |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 1114 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/_queue.*.so", |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1115 | "${libdir}/python${PYTHON_MAJMIN}/queue.py" |
| 1116 | ], |
| 1117 | "cached": [ |
| 1118 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/_dummy_thread.*.pyc", |
| 1119 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/_threading_local.*.pyc", |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1120 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/queue.*.pyc" |
| 1121 | ] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 1122 | }, |
| 1123 | "tkinter": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1124 | "summary": "Python Tcl/Tk bindings", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 1125 | "rdepends": [ |
| 1126 | "core" |
| 1127 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1128 | "files": [ |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 1129 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/_tkinter.*.so", |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1130 | "${libdir}/python${PYTHON_MAJMIN}/tkinter" |
| 1131 | ], |
| 1132 | "cached": [] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 1133 | }, |
| 1134 | "typing": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1135 | "summary": "Python typing support", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 1136 | "rdepends": [ |
| 1137 | "core" |
| 1138 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1139 | "files": [ |
| 1140 | "${libdir}/python${PYTHON_MAJMIN}/typing.py" |
| 1141 | ], |
| 1142 | "cached": [ |
| 1143 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/typing.*.pyc" |
| 1144 | ] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 1145 | }, |
| 1146 | "unittest": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1147 | "summary": "Python unit testing framework", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 1148 | "rdepends": [ |
| 1149 | "core", |
| 1150 | "difflib", |
| 1151 | "logging", |
| 1152 | "pprint", |
| 1153 | "shell", |
| 1154 | "stringold" |
| 1155 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1156 | "files": [ |
| 1157 | "${libdir}/python${PYTHON_MAJMIN}/unittest", |
| 1158 | "${libdir}/python${PYTHON_MAJMIN}/unittest/", |
| 1159 | "${libdir}/python${PYTHON_MAJMIN}/unittest/__pycache__" |
| 1160 | ], |
| 1161 | "cached": [] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 1162 | }, |
| 1163 | "unixadmin": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1164 | "summary": "Python Unix administration support", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 1165 | "rdepends": [ |
| 1166 | "core", |
| 1167 | "io" |
| 1168 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1169 | "files": [ |
| 1170 | "${libdir}/python${PYTHON_MAJMIN}/getpass.py", |
| 1171 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/grp.*.so", |
| 1172 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/nis.*.so" |
| 1173 | ], |
| 1174 | "cached": [ |
| 1175 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/getpass.*.pyc" |
| 1176 | ] |
| 1177 | }, |
| 1178 | "venv": { |
| 1179 | "summary": "Provides support for creating lightweight virtual environments with their own site directories, optionally isolated from system site directories.", |
| 1180 | "rdepends": [ |
| 1181 | "compression", |
| 1182 | "core", |
| 1183 | "logging", |
| 1184 | "shell", |
| 1185 | "stringold", |
| 1186 | "unixadmin" |
| 1187 | ], |
| 1188 | "files": [ |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 1189 | "${bindir}/pyvenv*", |
| 1190 | "${libdir}/python${PYTHON_MAJMIN}/venv" |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1191 | ], |
| 1192 | "cached": [] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 1193 | }, |
| 1194 | "xml": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1195 | "summary": "Python basic XML support", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 1196 | "rdepends": [ |
| 1197 | "core" |
| 1198 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1199 | "files": [ |
| 1200 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/_elementtree.*.so", |
| 1201 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/pyexpat.*.so", |
| 1202 | "${libdir}/python${PYTHON_MAJMIN}/xml" |
| 1203 | ], |
| 1204 | "cached": [] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 1205 | }, |
| 1206 | "xmlrpc": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1207 | "summary": "Python XML-RPC support", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 1208 | "rdepends": [ |
| 1209 | "core", |
| 1210 | "xml" |
| 1211 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1212 | "files": [ |
| 1213 | "${libdir}/python${PYTHON_MAJMIN}/xmlrpc", |
| 1214 | "${libdir}/python${PYTHON_MAJMIN}/xmlrpc/__pycache__" |
| 1215 | ], |
| 1216 | "cached": [] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 1217 | } |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1218 | } |