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", |
Andrew Geissler | 6ce62a2 | 2020-11-30 19:58:47 -0600 | [diff] [blame] | 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 | }, |
Patrick Williams | e760df8 | 2023-05-26 11:10:49 -0500 | [diff] [blame] | 155 | "cgitb": { |
| 156 | "summary": "Special exception handler for Python scripts", |
| 157 | "rdepends": [ |
| 158 | "core", |
| 159 | "crypt", |
| 160 | "html", |
| 161 | "io", |
| 162 | "math", |
| 163 | "pydoc" |
| 164 | ], |
| 165 | "files": [ |
| 166 | "${libdir}/python${PYTHON_MAJMIN}/cgitb.py" |
| 167 | ], |
| 168 | "cached": [ |
| 169 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/cgitb.*.pyc" |
| 170 | ] |
| 171 | }, |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 172 | "codecs": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 173 | "summary": "Python codec", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 174 | "rdepends": [ |
| 175 | "core" |
| 176 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 177 | "files": [ |
| 178 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/_multibytecodec.*.so", |
| 179 | "${libdir}/python${PYTHON_MAJMIN}/xdrlib.py" |
| 180 | ], |
| 181 | "cached": [ |
| 182 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/xdrlib.*.pyc" |
| 183 | ] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 184 | }, |
| 185 | "compile": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 186 | "summary": "Python bytecode compilation support", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 187 | "rdepends": [ |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 188 | "core" |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 189 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 190 | "files": [ |
| 191 | "${libdir}/python${PYTHON_MAJMIN}/compileall.py", |
Andrew Geissler | 6ce62a2 | 2020-11-30 19:58:47 -0600 | [diff] [blame] | 192 | "${libdir}/python${PYTHON_MAJMIN}/filecmp.py", |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 193 | "${libdir}/python${PYTHON_MAJMIN}/py_compile.py" |
| 194 | ], |
| 195 | "cached": [ |
| 196 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/compileall.*.pyc", |
Andrew Geissler | 6ce62a2 | 2020-11-30 19:58:47 -0600 | [diff] [blame] | 197 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/filecmp.*.pyc", |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 198 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/py_compile.*.pyc" |
| 199 | ] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 200 | }, |
| 201 | "compression": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 202 | "summary": "Python high-level compression support", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 203 | "rdepends": [ |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 204 | "core" |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 205 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 206 | "files": [ |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 207 | "${libdir}/python${PYTHON_MAJMIN}/gzip.py", |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 208 | "${libdir}/python${PYTHON_MAJMIN}/tarfile.py", |
| 209 | "${libdir}/python${PYTHON_MAJMIN}/zipfile.py" |
| 210 | ], |
| 211 | "cached": [ |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 212 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/gzip.*.pyc", |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 213 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/tarfile.*.pyc", |
| 214 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/zipfile.*.pyc" |
| 215 | ] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 216 | }, |
| 217 | "core": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 218 | "summary": "Python interpreter and core modules", |
| 219 | "rdepends": [], |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 220 | "files": [ |
Brad Bishop | 64c979e | 2019-11-04 13:55:29 -0500 | [diff] [blame] | 221 | "${bindir}/python${PYTHON_MAJMIN}", |
| 222 | "${bindir}/python${PYTHON_MAJMIN}.real", |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 223 | "${bindir}/python3", |
| 224 | "${includedir}/python${PYTHON_MAJMIN}/pyconfig*.h", |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 225 | "${libdir}/python${PYTHON_MAJMIN}/UserDict.py", |
| 226 | "${libdir}/python${PYTHON_MAJMIN}/UserList.py", |
| 227 | "${libdir}/python${PYTHON_MAJMIN}/UserString.py", |
| 228 | "${libdir}/python${PYTHON_MAJMIN}/__future__.py", |
| 229 | "${libdir}/python${PYTHON_MAJMIN}/_abcoll.py", |
| 230 | "${libdir}/python${PYTHON_MAJMIN}/_bootlocale.py", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 231 | "${libdir}/python${PYTHON_MAJMIN}/_collections_abc.py", |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 232 | "${libdir}/python${PYTHON_MAJMIN}/_compression.py", |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 233 | "${libdir}/python${PYTHON_MAJMIN}/_markupbase.py", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 234 | "${libdir}/python${PYTHON_MAJMIN}/_sitebuiltins.py", |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 235 | "${libdir}/python${PYTHON_MAJMIN}/_sysconfigdata*.py", |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 236 | "${libdir}/python${PYTHON_MAJMIN}/_weakrefset.py", |
| 237 | "${libdir}/python${PYTHON_MAJMIN}/abc.py", |
| 238 | "${libdir}/python${PYTHON_MAJMIN}/argparse.py", |
| 239 | "${libdir}/python${PYTHON_MAJMIN}/ast.py", |
| 240 | "${libdir}/python${PYTHON_MAJMIN}/bisect.py", |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 241 | "${libdir}/python${PYTHON_MAJMIN}/bz2.py", |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 242 | "${libdir}/python${PYTHON_MAJMIN}/code.py", |
| 243 | "${libdir}/python${PYTHON_MAJMIN}/codecs.py", |
| 244 | "${libdir}/python${PYTHON_MAJMIN}/codeop.py", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 245 | "${libdir}/python${PYTHON_MAJMIN}/collections", |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 246 | "${libdir}/python${PYTHON_MAJMIN}/collections/abc.py", |
| 247 | "${libdir}/python${PYTHON_MAJMIN}/configparser.py", |
| 248 | "${libdir}/python${PYTHON_MAJMIN}/contextlib.py", |
| 249 | "${libdir}/python${PYTHON_MAJMIN}/copy.py", |
| 250 | "${libdir}/python${PYTHON_MAJMIN}/copyreg.py", |
| 251 | "${libdir}/python${PYTHON_MAJMIN}/csv.py", |
| 252 | "${libdir}/python${PYTHON_MAJMIN}/dis.py", |
| 253 | "${libdir}/python${PYTHON_MAJMIN}/encodings", |
| 254 | "${libdir}/python${PYTHON_MAJMIN}/encodings/aliases.py", |
| 255 | "${libdir}/python${PYTHON_MAJMIN}/encodings/latin_1.py", |
| 256 | "${libdir}/python${PYTHON_MAJMIN}/encodings/utf_8.py", |
| 257 | "${libdir}/python${PYTHON_MAJMIN}/enum.py", |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 258 | "${libdir}/python${PYTHON_MAJMIN}/fnmatch.py", |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 259 | "${libdir}/python${PYTHON_MAJMIN}/functools.py", |
| 260 | "${libdir}/python${PYTHON_MAJMIN}/genericpath.py", |
| 261 | "${libdir}/python${PYTHON_MAJMIN}/getopt.py", |
| 262 | "${libdir}/python${PYTHON_MAJMIN}/gettext.py", |
| 263 | "${libdir}/python${PYTHON_MAJMIN}/heapq.py", |
| 264 | "${libdir}/python${PYTHON_MAJMIN}/imp.py", |
| 265 | "${libdir}/python${PYTHON_MAJMIN}/importlib", |
Patrick Williams | 7784c42 | 2022-11-17 07:29:11 -0600 | [diff] [blame] | 266 | "${libdir}/python${PYTHON_MAJMIN}/importlib/_abc.py", |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 267 | "${libdir}/python${PYTHON_MAJMIN}/importlib/_bootstrap.py", |
| 268 | "${libdir}/python${PYTHON_MAJMIN}/importlib/_bootstrap_external.py", |
| 269 | "${libdir}/python${PYTHON_MAJMIN}/importlib/abc.py", |
| 270 | "${libdir}/python${PYTHON_MAJMIN}/importlib/machinery.py", |
| 271 | "${libdir}/python${PYTHON_MAJMIN}/importlib/util.py", |
| 272 | "${libdir}/python${PYTHON_MAJMIN}/inspect.py", |
| 273 | "${libdir}/python${PYTHON_MAJMIN}/io.py", |
| 274 | "${libdir}/python${PYTHON_MAJMIN}/keyword.py", |
| 275 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/__pycache__/_struct.*.so", |
| 276 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/__pycache__/binascii.*.so", |
| 277 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/__pycache__/time.*.so", |
| 278 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/__pycache__/xreadlines.*.so", |
| 279 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/_bisect.*.so", |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 280 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/_bz2.*.so", |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 281 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/_csv.*.so", |
| 282 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/_heapq.*.so", |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 283 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/_lzma.*.so", |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 284 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/_opcode.*.so", |
| 285 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/_posixsubprocess.*.so", |
| 286 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/_struct.*.so", |
Patrick Williams | 7784c42 | 2022-11-17 07:29:11 -0600 | [diff] [blame] | 287 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/_typing.*.so", |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 288 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/array.*.so", |
| 289 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/binascii.*.so", |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 290 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/grp.*.so", |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 291 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/math.*.so", |
| 292 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/parser.*.so", |
| 293 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/readline.*.so", |
| 294 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/select.*.so", |
| 295 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/time.*.so", |
| 296 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/unicodedata.*.so", |
| 297 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/xreadlines.*.so", |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 298 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/zlib.*.so", |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 299 | "${libdir}/python${PYTHON_MAJMIN}/linecache.py", |
| 300 | "${libdir}/python${PYTHON_MAJMIN}/locale.py", |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 301 | "${libdir}/python${PYTHON_MAJMIN}/lzma.py", |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 302 | "${libdir}/python${PYTHON_MAJMIN}/new.py", |
Brad Bishop | c342db3 | 2019-05-15 21:57:59 -0400 | [diff] [blame] | 303 | "${libdir}/python${PYTHON_MAJMIN}/ntpath.py", |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 304 | "${libdir}/python${PYTHON_MAJMIN}/opcode.py", |
| 305 | "${libdir}/python${PYTHON_MAJMIN}/operator.py", |
| 306 | "${libdir}/python${PYTHON_MAJMIN}/optparse.py", |
| 307 | "${libdir}/python${PYTHON_MAJMIN}/os.py", |
Andrew Geissler | 635e0e4 | 2020-08-21 15:58:33 -0500 | [diff] [blame] | 308 | "${libdir}/python${PYTHON_MAJMIN}/pathlib.py", |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 309 | "${libdir}/python${PYTHON_MAJMIN}/pkgutil.py", |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 310 | "${libdir}/python${PYTHON_MAJMIN}/platform.py", |
| 311 | "${libdir}/python${PYTHON_MAJMIN}/posixpath.py", |
Patrick Williams | 7784c42 | 2022-11-17 07:29:11 -0600 | [diff] [blame] | 312 | "${libdir}/python${PYTHON_MAJMIN}/re", |
| 313 | "${libdir}/python${PYTHON_MAJMIN}/re/_casefix.py", |
| 314 | "${libdir}/python${PYTHON_MAJMIN}/re/_compiler.py", |
| 315 | "${libdir}/python${PYTHON_MAJMIN}/re/_constants.py", |
| 316 | "${libdir}/python${PYTHON_MAJMIN}/re/_parser.py", |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 317 | "${libdir}/python${PYTHON_MAJMIN}/reprlib.py", |
| 318 | "${libdir}/python${PYTHON_MAJMIN}/rlcompleter.py", |
Brad Bishop | 00e122a | 2019-10-05 11:10:57 -0400 | [diff] [blame] | 319 | "${libdir}/python${PYTHON_MAJMIN}/runpy.py", |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 320 | "${libdir}/python${PYTHON_MAJMIN}/selectors.py", |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 321 | "${libdir}/python${PYTHON_MAJMIN}/shutil.py", |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 322 | "${libdir}/python${PYTHON_MAJMIN}/signal.py", |
| 323 | "${libdir}/python${PYTHON_MAJMIN}/site.py", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 324 | "${libdir}/python${PYTHON_MAJMIN}/sitecustomize.py", |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 325 | "${libdir}/python${PYTHON_MAJMIN}/sre_compile.py", |
| 326 | "${libdir}/python${PYTHON_MAJMIN}/sre_constants.py", |
| 327 | "${libdir}/python${PYTHON_MAJMIN}/sre_parse.py", |
| 328 | "${libdir}/python${PYTHON_MAJMIN}/stat.py", |
| 329 | "${libdir}/python${PYTHON_MAJMIN}/stringprep.py", |
| 330 | "${libdir}/python${PYTHON_MAJMIN}/struct.py", |
| 331 | "${libdir}/python${PYTHON_MAJMIN}/subprocess.py", |
| 332 | "${libdir}/python${PYTHON_MAJMIN}/symbol.py", |
| 333 | "${libdir}/python${PYTHON_MAJMIN}/sysconfig.py", |
| 334 | "${libdir}/python${PYTHON_MAJMIN}/textwrap.py", |
| 335 | "${libdir}/python${PYTHON_MAJMIN}/threading.py", |
| 336 | "${libdir}/python${PYTHON_MAJMIN}/token.py", |
| 337 | "${libdir}/python${PYTHON_MAJMIN}/tokenize.py", |
| 338 | "${libdir}/python${PYTHON_MAJMIN}/traceback.py", |
| 339 | "${libdir}/python${PYTHON_MAJMIN}/types.py", |
Andrew Geissler | 6ce62a2 | 2020-11-30 19:58:47 -0600 | [diff] [blame] | 340 | "${libdir}/python${PYTHON_MAJMIN}/typing.py", |
Patrick Williams | 7784c42 | 2022-11-17 07:29:11 -0600 | [diff] [blame] | 341 | "${libdir}/python${PYTHON_MAJMIN}/urllib", |
| 342 | "${libdir}/python${PYTHON_MAJMIN}/urllib/parse.py", |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 343 | "${libdir}/python${PYTHON_MAJMIN}/warnings.py", |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 344 | "${libdir}/python${PYTHON_MAJMIN}/weakref.py", |
Patrick Williams | 7784c42 | 2022-11-17 07:29:11 -0600 | [diff] [blame] | 345 | "${libdir}/python${PYTHON_MAJMIN}/zipimport.py", |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 346 | "${prefix}/lib/python${PYTHON_MAJMIN}/config*/*[!.a]" |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 347 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 348 | "cached": [ |
| 349 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/__future__.*.pyc", |
| 350 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/_bootlocale.*.pyc", |
| 351 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/_collections_abc.*.pyc", |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 352 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/_compression.*.pyc", |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 353 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/_markupbase.*.pyc", |
| 354 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/_sitebuiltins.*.pyc", |
Andrew Geissler | 635e0e4 | 2020-08-21 15:58:33 -0500 | [diff] [blame] | 355 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/_sysconfigdata*.*.pyc", |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 356 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/_weakrefset.*.pyc", |
| 357 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/abc.*.pyc", |
| 358 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/argparse.*.pyc", |
| 359 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/ast.*.pyc", |
| 360 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/bisect.*.pyc", |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 361 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/bz2.*.pyc", |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 362 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/code.*.pyc", |
| 363 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/codecs.*.pyc", |
| 364 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/codeop.*.pyc", |
| 365 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/configparser.*.pyc", |
| 366 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/contextlib.*.pyc", |
| 367 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/copy.*.pyc", |
| 368 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/copyreg.*.pyc", |
| 369 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/csv.*.pyc", |
| 370 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/dis.*.pyc", |
| 371 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/enum.*.pyc", |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 372 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/fnmatch.*.pyc", |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 373 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/functools.*.pyc", |
| 374 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/genericpath.*.pyc", |
| 375 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/getopt.*.pyc", |
| 376 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/gettext.*.pyc", |
| 377 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/heapq.*.pyc", |
| 378 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/imp.*.pyc", |
| 379 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/inspect.*.pyc", |
| 380 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/io.*.pyc", |
| 381 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/keyword.*.pyc", |
| 382 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/linecache.*.pyc", |
| 383 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/locale.*.pyc", |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 384 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/lzma.*.pyc", |
| 385 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/ntpath.*.pyc", |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 386 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/opcode.*.pyc", |
| 387 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/operator.*.pyc", |
| 388 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/optparse.*.pyc", |
| 389 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/os.*.pyc", |
Andrew Geissler | 635e0e4 | 2020-08-21 15:58:33 -0500 | [diff] [blame] | 390 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/pathlib.*.pyc", |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 391 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/pkgutil.*.pyc", |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 392 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/platform.*.pyc", |
| 393 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/posixpath.*.pyc", |
| 394 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/re.*.pyc", |
| 395 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/reprlib.*.pyc", |
| 396 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/rlcompleter.*.pyc", |
Brad Bishop | 00e122a | 2019-10-05 11:10:57 -0400 | [diff] [blame] | 397 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/runpy.*.pyc", |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 398 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/selectors.*.pyc", |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 399 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/shutil.*.pyc", |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 400 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/signal.*.pyc", |
| 401 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/site.*.pyc", |
| 402 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/sre_compile.*.pyc", |
| 403 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/sre_constants.*.pyc", |
| 404 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/sre_parse.*.pyc", |
| 405 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/stat.*.pyc", |
| 406 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/stringprep.*.pyc", |
| 407 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/struct.*.pyc", |
| 408 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/subprocess.*.pyc", |
| 409 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/symbol.*.pyc", |
| 410 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/sysconfig.*.pyc", |
| 411 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/textwrap.*.pyc", |
| 412 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/threading.*.pyc", |
| 413 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/token.*.pyc", |
| 414 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/tokenize.*.pyc", |
| 415 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/traceback.*.pyc", |
| 416 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/types.*.pyc", |
Andrew Geissler | 6ce62a2 | 2020-11-30 19:58:47 -0600 | [diff] [blame] | 417 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/typing.*.pyc", |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 418 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/warnings.*.pyc", |
| 419 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/weakref.*.pyc", |
| 420 | "${libdir}/python${PYTHON_MAJMIN}/collections/__pycache__", |
| 421 | "${libdir}/python${PYTHON_MAJMIN}/collections/__pycache__/abc.*.pyc", |
| 422 | "${libdir}/python${PYTHON_MAJMIN}/encodings/__pycache__", |
| 423 | "${libdir}/python${PYTHON_MAJMIN}/encodings/__pycache__/aliases.*.pyc", |
| 424 | "${libdir}/python${PYTHON_MAJMIN}/encodings/__pycache__/latin_1.*.pyc", |
| 425 | "${libdir}/python${PYTHON_MAJMIN}/encodings/__pycache__/utf_8.*.pyc", |
| 426 | "${libdir}/python${PYTHON_MAJMIN}/importlib/__pycache__", |
Patrick Williams | 7784c42 | 2022-11-17 07:29:11 -0600 | [diff] [blame] | 427 | "${libdir}/python${PYTHON_MAJMIN}/importlib/__pycache__/_abc.*.pyc", |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 428 | "${libdir}/python${PYTHON_MAJMIN}/importlib/__pycache__/abc.*.pyc", |
| 429 | "${libdir}/python${PYTHON_MAJMIN}/importlib/__pycache__/machinery.*.pyc", |
Patrick Williams | 7784c42 | 2022-11-17 07:29:11 -0600 | [diff] [blame] | 430 | "${libdir}/python${PYTHON_MAJMIN}/importlib/__pycache__/util.*.pyc", |
| 431 | "${libdir}/python${PYTHON_MAJMIN}/re/__pycache__", |
| 432 | "${libdir}/python${PYTHON_MAJMIN}/re/__pycache__/_casefix.*.pyc", |
| 433 | "${libdir}/python${PYTHON_MAJMIN}/re/__pycache__/_compiler.*.pyc", |
| 434 | "${libdir}/python${PYTHON_MAJMIN}/re/__pycache__/_constants.*.pyc", |
| 435 | "${libdir}/python${PYTHON_MAJMIN}/re/__pycache__/_parser.*.pyc", |
| 436 | "${libdir}/python${PYTHON_MAJMIN}/urllib/__pycache__", |
| 437 | "${libdir}/python${PYTHON_MAJMIN}/urllib/__pycache__/parse.*.pyc" |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 438 | ] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 439 | }, |
| 440 | "crypt": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 441 | "summary": "Python basic cryptographic and hashing support", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 442 | "rdepends": [ |
| 443 | "core", |
| 444 | "math", |
| 445 | "stringold" |
| 446 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 447 | "files": [ |
| 448 | "${libdir}/python${PYTHON_MAJMIN}/crypt.py", |
| 449 | "${libdir}/python${PYTHON_MAJMIN}/hashlib.py", |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 450 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/_blake2.*.so", |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 451 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/_crypt.*.so", |
| 452 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/_hashlib.*.so", |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 453 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/_md5.*.so", |
| 454 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/_sha1.*.so", |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 455 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/_sha256.*.so", |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 456 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/_sha3.*.so", |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 457 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/_sha512.*.so" |
| 458 | ], |
| 459 | "cached": [ |
| 460 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/crypt.*.pyc", |
| 461 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/hashlib.*.pyc" |
| 462 | ] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 463 | }, |
| 464 | "ctypes": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 465 | "summary": "Python C types support", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 466 | "rdepends": [ |
Andrew Geissler | 635e0e4 | 2020-08-21 15:58:33 -0500 | [diff] [blame] | 467 | "core", |
| 468 | "crypt", |
| 469 | "io", |
| 470 | "math" |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 471 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 472 | "files": [ |
| 473 | "${libdir}/python${PYTHON_MAJMIN}/ctypes", |
| 474 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/_ctypes.*.so", |
| 475 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/_ctypes_test.*.so" |
| 476 | ], |
| 477 | "cached": [] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 478 | }, |
| 479 | "curses": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 480 | "summary": "Python curses support", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 481 | "rdepends": [ |
| 482 | "core" |
| 483 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 484 | "files": [ |
| 485 | "${libdir}/python${PYTHON_MAJMIN}/curses", |
| 486 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/_curses.*.so", |
| 487 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/_curses_panel.*.so" |
| 488 | ], |
| 489 | "cached": [] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 490 | }, |
| 491 | "datetime": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 492 | "summary": "Python calendar and time support", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 493 | "rdepends": [ |
| 494 | "core" |
| 495 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 496 | "files": [ |
| 497 | "${libdir}/python${PYTHON_MAJMIN}/_strptime.py", |
| 498 | "${libdir}/python${PYTHON_MAJMIN}/calendar.py", |
| 499 | "${libdir}/python${PYTHON_MAJMIN}/datetime.py", |
| 500 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/_datetime.*.so" |
| 501 | ], |
| 502 | "cached": [ |
| 503 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/_strptime.*.pyc", |
| 504 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/calendar.*.pyc", |
| 505 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/datetime.*.pyc" |
| 506 | ] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 507 | }, |
| 508 | "db": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 509 | "summary": "Python file-based database support", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 510 | "rdepends": [ |
| 511 | "core" |
| 512 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 513 | "files": [ |
| 514 | "${libdir}/python${PYTHON_MAJMIN}/dbm", |
| 515 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/_dbm.*.so" |
| 516 | ], |
| 517 | "cached": [] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 518 | }, |
| 519 | "debugger": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 520 | "summary": "Python debugger", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 521 | "rdepends": [ |
| 522 | "core", |
| 523 | "pprint", |
Patrick Williams | 7784c42 | 2022-11-17 07:29:11 -0600 | [diff] [blame] | 524 | "profile", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 525 | "shell", |
| 526 | "stringold" |
| 527 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 528 | "files": [ |
| 529 | "${libdir}/python${PYTHON_MAJMIN}/bdb.py", |
| 530 | "${libdir}/python${PYTHON_MAJMIN}/pdb.py" |
| 531 | ], |
| 532 | "cached": [ |
| 533 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/bdb.*.pyc", |
| 534 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/pdb.*.pyc" |
| 535 | ] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 536 | }, |
| 537 | "dev": { |
| 538 | "cached": [], |
| 539 | "files": [ |
| 540 | "${base_libdir}/*.a", |
| 541 | "${base_libdir}/*.o", |
Brad Bishop | 64c979e | 2019-11-04 13:55:29 -0500 | [diff] [blame] | 542 | "${bindir}/python*-config*", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 543 | "${datadir}/aclocal", |
| 544 | "${datadir}/pkgconfig", |
| 545 | "${includedir}", |
| 546 | "${libdir}/*.a", |
| 547 | "${libdir}/*.la", |
| 548 | "${libdir}/*.o", |
| 549 | "${libdir}/lib*${SOLIBSDEV}", |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 550 | "${libdir}/pkgconfig" |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 551 | ], |
| 552 | "rdepends": [ |
Brad Bishop | 64c979e | 2019-11-04 13:55:29 -0500 | [diff] [blame] | 553 | "core", |
| 554 | "distutils" |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 555 | ], |
| 556 | "summary": "Python development package" |
| 557 | }, |
| 558 | "difflib": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 559 | "summary": "Python helpers for computing deltas between objects", |
| 560 | "rdepends": [ |
| 561 | "core" |
| 562 | ], |
| 563 | "files": [ |
| 564 | "${libdir}/python${PYTHON_MAJMIN}/difflib.py" |
| 565 | ], |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 566 | "cached": [ |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 567 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/difflib.*.pyc" |
| 568 | ] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 569 | }, |
Brad Bishop | 08902b0 | 2019-08-20 09:16:51 -0400 | [diff] [blame] | 570 | "distutils-windows": { |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 571 | "summary": "Python distribution utilities (Windows installer stubs)", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 572 | "rdepends": [ |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 573 | "core" |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 574 | ], |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 575 | "files": [], |
| 576 | "cached": [] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 577 | }, |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 578 | "distutils": { |
| 579 | "summary": "Python Distribution Utilities", |
| 580 | "rdepends": [ |
Andrew Geissler | 635e0e4 | 2020-08-21 15:58:33 -0500 | [diff] [blame] | 581 | "compression", |
| 582 | "core", |
| 583 | "email", |
| 584 | "stringold" |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 585 | ], |
| 586 | "files": [ |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 587 | "${libdir}/python${PYTHON_MAJMIN}/distutils" |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 588 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 589 | "cached": [] |
| 590 | }, |
| 591 | "doctest": { |
| 592 | "summary": "Python framework for running examples in docstrings", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 593 | "rdepends": [ |
| 594 | "core", |
| 595 | "debugger", |
| 596 | "difflib", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 597 | "pprint", |
Patrick Williams | 7784c42 | 2022-11-17 07:29:11 -0600 | [diff] [blame] | 598 | "profile", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 599 | "shell", |
| 600 | "stringold", |
| 601 | "unittest" |
| 602 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 603 | "files": [ |
| 604 | "${libdir}/python${PYTHON_MAJMIN}/doctest.py" |
| 605 | ], |
| 606 | "cached": [ |
| 607 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/doctest.*.pyc" |
| 608 | ] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 609 | }, |
| 610 | "email": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 611 | "summary": "Python email support", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 612 | "rdepends": [ |
| 613 | "core", |
| 614 | "crypt", |
| 615 | "datetime", |
| 616 | "io", |
| 617 | "math", |
Andrew Geissler | 635e0e4 | 2020-08-21 15:58:33 -0500 | [diff] [blame] | 618 | "mime", |
| 619 | "netclient", |
| 620 | "stringold" |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 621 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 622 | "files": [ |
| 623 | "${libdir}/python${PYTHON_MAJMIN}/email", |
| 624 | "${libdir}/python${PYTHON_MAJMIN}/imaplib.py" |
| 625 | ], |
| 626 | "cached": [ |
| 627 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/imaplib.*.pyc" |
| 628 | ] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 629 | }, |
Patrick Williams | 8e7b46e | 2023-05-01 14:19:06 -0500 | [diff] [blame] | 630 | "ensurepip": { |
| 631 | "summary": "Support for bootstrapping the pip installer", |
| 632 | "rdepends": [ |
| 633 | "asyncio", |
| 634 | "compile", |
| 635 | "core", |
| 636 | "ctypes", |
| 637 | "image", |
| 638 | "io", |
| 639 | "mmap", |
| 640 | "plistlib", |
| 641 | "pprint", |
| 642 | "unixadmin", |
| 643 | "xmlrpc" |
| 644 | ], |
| 645 | "files": [ |
| 646 | "${libdir}/python${PYTHON_MAJMIN}/ensurepip/" |
| 647 | ], |
| 648 | "cached": [ |
| 649 | "${libdir}/python${PYTHON_MAJMIN}/ensurepip/_uninstall.*.pyc" |
| 650 | ] |
| 651 | }, |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 652 | "fcntl": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 653 | "summary": "Python's fcntl interface", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 654 | "rdepends": [ |
| 655 | "core" |
| 656 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 657 | "files": [ |
| 658 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/fcntl.*.so" |
| 659 | ], |
| 660 | "cached": [] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 661 | }, |
| 662 | "gdbm": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 663 | "summary": "Python GNU database support", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 664 | "rdepends": [ |
| 665 | "core" |
| 666 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 667 | "files": [ |
| 668 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/_gdbm.*.so" |
| 669 | ], |
| 670 | "cached": [] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 671 | }, |
| 672 | "html": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 673 | "summary": "Python HTML processing support", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 674 | "rdepends": [ |
| 675 | "core" |
| 676 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 677 | "files": [ |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 678 | "${libdir}/python${PYTHON_MAJMIN}/html" |
| 679 | ], |
Patrick Williams | 7784c42 | 2022-11-17 07:29:11 -0600 | [diff] [blame] | 680 | "cached": [] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 681 | }, |
| 682 | "idle": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 683 | "summary": "Python Integrated Development Environment", |
| 684 | "rdepends": [ |
| 685 | "core" |
| 686 | ], |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 687 | "files": [ |
| 688 | "${bindir}/idle*", |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 689 | "${libdir}/python${PYTHON_MAJMIN}/idlelib" |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 690 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 691 | "cached": [] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 692 | }, |
| 693 | "image": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 694 | "summary": "Python graphical image handling", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 695 | "rdepends": [ |
| 696 | "core" |
| 697 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 698 | "files": [ |
| 699 | "${libdir}/python${PYTHON_MAJMIN}/colorsys.py", |
| 700 | "${libdir}/python${PYTHON_MAJMIN}/imghdr.py" |
| 701 | ], |
| 702 | "cached": [ |
| 703 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/colorsys.*.pyc", |
| 704 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/imghdr.*.pyc" |
| 705 | ] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 706 | }, |
| 707 | "io": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 708 | "summary": "Python low-level I/O", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 709 | "rdepends": [ |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 710 | "core", |
| 711 | "crypt", |
| 712 | "math", |
| 713 | "netclient", |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 714 | "shell" |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 715 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 716 | "files": [ |
| 717 | "${libdir}/python${PYTHON_MAJMIN}/_pyio.py", |
| 718 | "${libdir}/python${PYTHON_MAJMIN}/ipaddress.py", |
| 719 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/_socket.*.so", |
| 720 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/_ssl.*.so", |
| 721 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/termios.*.so", |
| 722 | "${libdir}/python${PYTHON_MAJMIN}/pipes.py", |
| 723 | "${libdir}/python${PYTHON_MAJMIN}/socket.py", |
| 724 | "${libdir}/python${PYTHON_MAJMIN}/ssl.py", |
| 725 | "${libdir}/python${PYTHON_MAJMIN}/tempfile.py" |
| 726 | ], |
| 727 | "cached": [ |
| 728 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/_pyio.*.pyc", |
| 729 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/ipaddress.*.pyc", |
| 730 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/pipes.*.pyc", |
| 731 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/socket.*.pyc", |
| 732 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/ssl.*.pyc", |
| 733 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/tempfile.*.pyc" |
| 734 | ] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 735 | }, |
| 736 | "json": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 737 | "summary": "Python JSON support", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 738 | "rdepends": [ |
| 739 | "core" |
| 740 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 741 | "files": [ |
| 742 | "${libdir}/python${PYTHON_MAJMIN}/json", |
| 743 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/_json.*.so" |
| 744 | ], |
| 745 | "cached": [] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 746 | }, |
| 747 | "logging": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 748 | "summary": "Python logging support", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 749 | "rdepends": [ |
| 750 | "core", |
Andrew Geissler | 635e0e4 | 2020-08-21 15:58:33 -0500 | [diff] [blame] | 751 | "io", |
| 752 | "netserver", |
| 753 | "pickle", |
| 754 | "stringold", |
| 755 | "threading" |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 756 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 757 | "files": [ |
| 758 | "${libdir}/python${PYTHON_MAJMIN}/logging" |
| 759 | ], |
| 760 | "cached": [] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 761 | }, |
| 762 | "mailbox": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 763 | "summary": "Python mailbox format support", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 764 | "rdepends": [ |
| 765 | "core", |
| 766 | "crypt", |
| 767 | "datetime", |
| 768 | "email", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 769 | "io", |
| 770 | "math", |
| 771 | "mime", |
| 772 | "netclient", |
| 773 | "stringold" |
| 774 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 775 | "files": [ |
| 776 | "${libdir}/python${PYTHON_MAJMIN}/mailbox.py" |
| 777 | ], |
| 778 | "cached": [ |
| 779 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/mailbox.*.pyc" |
| 780 | ] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 781 | }, |
| 782 | "math": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 783 | "summary": "Python math support", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 784 | "rdepends": [ |
| 785 | "core", |
| 786 | "crypt" |
| 787 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 788 | "files": [ |
| 789 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/_random.*.so", |
| 790 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/cmath.*.so", |
| 791 | "${libdir}/python${PYTHON_MAJMIN}/random.py" |
| 792 | ], |
| 793 | "cached": [ |
| 794 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/random.*.pyc" |
| 795 | ] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 796 | }, |
| 797 | "mime": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 798 | "summary": "Python MIME handling APIs", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 799 | "rdepends": [ |
| 800 | "core" |
| 801 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 802 | "files": [ |
| 803 | "${libdir}/python${PYTHON_MAJMIN}/quopri.py", |
| 804 | "${libdir}/python${PYTHON_MAJMIN}/uu.py" |
| 805 | ], |
| 806 | "cached": [ |
| 807 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/quopri.*.pyc", |
| 808 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/uu.*.pyc" |
| 809 | ] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 810 | }, |
| 811 | "mmap": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 812 | "summary": "Python memory-mapped file support", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 813 | "rdepends": [ |
| 814 | "core" |
| 815 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 816 | "files": [ |
| 817 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/mmap.*.so" |
| 818 | ], |
| 819 | "cached": [] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 820 | }, |
| 821 | "modules": { |
| 822 | "cached": [], |
| 823 | "files": [], |
| 824 | "rdepends": [ |
| 825 | "2to3", |
| 826 | "asyncio", |
| 827 | "audio", |
| 828 | "codecs", |
| 829 | "compile", |
| 830 | "compression", |
| 831 | "core", |
| 832 | "crypt", |
| 833 | "ctypes", |
| 834 | "curses", |
| 835 | "datetime", |
| 836 | "db", |
| 837 | "debugger", |
| 838 | "difflib", |
| 839 | "distutils", |
| 840 | "doctest", |
| 841 | "email", |
Patrick Williams | 8e7b46e | 2023-05-01 14:19:06 -0500 | [diff] [blame] | 842 | "ensurepip", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 843 | "fcntl", |
| 844 | "html", |
| 845 | "idle", |
| 846 | "image", |
| 847 | "io", |
| 848 | "json", |
| 849 | "logging", |
| 850 | "mailbox", |
| 851 | "math", |
| 852 | "mime", |
| 853 | "mmap", |
| 854 | "multiprocessing", |
| 855 | "netclient", |
| 856 | "netserver", |
| 857 | "numbers", |
| 858 | "pickle", |
| 859 | "pkgutil", |
| 860 | "plistlib", |
| 861 | "pprint", |
| 862 | "profile", |
| 863 | "pydoc", |
| 864 | "resource", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 865 | "shell", |
| 866 | "smtpd", |
| 867 | "sqlite3", |
Patrick Williams | 7784c42 | 2022-11-17 07:29:11 -0600 | [diff] [blame] | 868 | "statistics", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 869 | "stringold", |
| 870 | "syslog", |
| 871 | "terminal", |
Patrick Williams | 8e7b46e | 2023-05-01 14:19:06 -0500 | [diff] [blame] | 872 | "tomllib", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 873 | "threading", |
| 874 | "tkinter", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 875 | "unittest", |
| 876 | "unixadmin", |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 877 | "venv", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 878 | "xml", |
Andrew Geissler | fc113ea | 2023-03-31 09:59:46 -0500 | [diff] [blame] | 879 | "xmlrpc", |
| 880 | "zoneinfo" |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 881 | ], |
Brad Bishop | 08902b0 | 2019-08-20 09:16:51 -0400 | [diff] [blame] | 882 | "rrecommends": [ |
| 883 | "distutils-windows" |
| 884 | ], |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 885 | "summary": "All Python modules" |
| 886 | }, |
| 887 | "multiprocessing": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 888 | "summary": "Python multiprocessing support", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 889 | "rdepends": [ |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 890 | "core", |
Andrew Geissler | 635e0e4 | 2020-08-21 15:58:33 -0500 | [diff] [blame] | 891 | "crypt", |
| 892 | "ctypes", |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 893 | "io", |
Andrew Geissler | 635e0e4 | 2020-08-21 15:58:33 -0500 | [diff] [blame] | 894 | "math", |
| 895 | "mmap", |
| 896 | "netclient", |
| 897 | "pickle", |
| 898 | "threading" |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 899 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 900 | "files": [ |
| 901 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/_multiprocessing.*.so", |
Andrew Geissler | 635e0e4 | 2020-08-21 15:58:33 -0500 | [diff] [blame] | 902 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/_posixshmem.*.so", |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 903 | "${libdir}/python${PYTHON_MAJMIN}/multiprocessing" |
| 904 | ], |
| 905 | "cached": [] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 906 | }, |
| 907 | "netclient": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 908 | "summary": "Python Internet Protocol clients", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 909 | "rdepends": [ |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 910 | "core", |
| 911 | "crypt", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 912 | "datetime", |
| 913 | "email", |
| 914 | "io", |
| 915 | "math", |
| 916 | "mime", |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 917 | "stringold" |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 918 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 919 | "files": [ |
| 920 | "${libdir}/python${PYTHON_MAJMIN}/base64.py", |
| 921 | "${libdir}/python${PYTHON_MAJMIN}/ftplib.py", |
| 922 | "${libdir}/python${PYTHON_MAJMIN}/hmac.py", |
| 923 | "${libdir}/python${PYTHON_MAJMIN}/http", |
| 924 | "${libdir}/python${PYTHON_MAJMIN}/http/__pycache__", |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 925 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/_uuid.*.so", |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 926 | "${libdir}/python${PYTHON_MAJMIN}/mimetypes.py", |
| 927 | "${libdir}/python${PYTHON_MAJMIN}/nntplib.py", |
| 928 | "${libdir}/python${PYTHON_MAJMIN}/poplib.py", |
Andrew Geissler | 635e0e4 | 2020-08-21 15:58:33 -0500 | [diff] [blame] | 929 | "${libdir}/python${PYTHON_MAJMIN}/secrets.py", |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 930 | "${libdir}/python${PYTHON_MAJMIN}/smtplib.py", |
| 931 | "${libdir}/python${PYTHON_MAJMIN}/telnetlib.py", |
Patrick Williams | 2390b1b | 2022-11-03 13:47:49 -0500 | [diff] [blame] | 932 | "${libdir}/python${PYTHON_MAJMIN}/urllib", |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 933 | "${libdir}/python${PYTHON_MAJMIN}/uuid.py" |
| 934 | ], |
| 935 | "cached": [ |
| 936 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/base64.*.pyc", |
| 937 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/ftplib.*.pyc", |
| 938 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/hmac.*.pyc", |
| 939 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/mimetypes.*.pyc", |
| 940 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/nntplib.*.pyc", |
| 941 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/poplib.*.pyc", |
Andrew Geissler | 635e0e4 | 2020-08-21 15:58:33 -0500 | [diff] [blame] | 942 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/secrets.*.pyc", |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 943 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/smtplib.*.pyc", |
| 944 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/telnetlib.*.pyc", |
| 945 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/uuid.*.pyc" |
| 946 | ] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 947 | }, |
| 948 | "netserver": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 949 | "summary": "Python Internet Protocol servers", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 950 | "rdepends": [ |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 951 | "core", |
| 952 | "crypt", |
| 953 | "datetime", |
| 954 | "email", |
| 955 | "html", |
| 956 | "io", |
| 957 | "math", |
| 958 | "mime", |
| 959 | "netclient", |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 960 | "stringold" |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 961 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 962 | "files": [ |
| 963 | "${libdir}/python${PYTHON_MAJMIN}/cgi.py", |
| 964 | "${libdir}/python${PYTHON_MAJMIN}/socketserver.py" |
| 965 | ], |
| 966 | "cached": [ |
| 967 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/cgi.*.pyc", |
| 968 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/socketserver.*.pyc" |
| 969 | ] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 970 | }, |
| 971 | "numbers": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 972 | "summary": "Python number APIs", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 973 | "rdepends": [ |
| 974 | "core" |
| 975 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 976 | "files": [ |
| 977 | "${libdir}/python${PYTHON_MAJMIN}/_pydecimal.py", |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 978 | "${libdir}/python${PYTHON_MAJMIN}/contextvars.py", |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 979 | "${libdir}/python${PYTHON_MAJMIN}/decimal.py", |
| 980 | "${libdir}/python${PYTHON_MAJMIN}/fractions.py", |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 981 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/_contextvars.*.so", |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 982 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/_decimal.*.so", |
| 983 | "${libdir}/python${PYTHON_MAJMIN}/numbers.py" |
| 984 | ], |
| 985 | "cached": [ |
| 986 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/_pydecimal.*.pyc", |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 987 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/contextvars.*.pyc", |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 988 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/decimal.*.pyc", |
| 989 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/fractions.*.pyc", |
| 990 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/numbers.*.pyc" |
| 991 | ] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 992 | }, |
| 993 | "pickle": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 994 | "summary": "Python serialisation/persistence support", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 995 | "rdepends": [ |
| 996 | "core" |
| 997 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 998 | "files": [ |
| 999 | "${libdir}/python${PYTHON_MAJMIN}/_compat_pickle.py", |
| 1000 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/_pickle.*.so", |
| 1001 | "${libdir}/python${PYTHON_MAJMIN}/pickle.py", |
| 1002 | "${libdir}/python${PYTHON_MAJMIN}/pickletools.py", |
| 1003 | "${libdir}/python${PYTHON_MAJMIN}/shelve.py" |
| 1004 | ], |
| 1005 | "cached": [ |
| 1006 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/_compat_pickle.*.pyc", |
| 1007 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/pickle.*.pyc", |
| 1008 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/pickletools.*.pyc", |
| 1009 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/shelve.*.pyc" |
| 1010 | ] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 1011 | }, |
| 1012 | "pkgutil": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1013 | "summary": "Python package extension utility support", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 1014 | "rdepends": [ |
| 1015 | "core" |
| 1016 | ], |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 1017 | "files": [], |
| 1018 | "cached": [] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 1019 | }, |
| 1020 | "plistlib": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1021 | "summary": "Generate and parse Mac OS X .plist files", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 1022 | "rdepends": [ |
| 1023 | "core", |
| 1024 | "datetime", |
| 1025 | "xml" |
| 1026 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1027 | "files": [ |
| 1028 | "${libdir}/python${PYTHON_MAJMIN}/plistlib.py" |
| 1029 | ], |
| 1030 | "cached": [ |
| 1031 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/plistlib.*.pyc" |
| 1032 | ] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 1033 | }, |
| 1034 | "pprint": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1035 | "summary": "Python pretty-print support", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 1036 | "rdepends": [ |
Andrew Geissler | eff2747 | 2021-10-29 15:35:00 -0500 | [diff] [blame] | 1037 | "core", |
Patrick Williams | 7784c42 | 2022-11-17 07:29:11 -0600 | [diff] [blame] | 1038 | "profile" |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 1039 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1040 | "files": [ |
| 1041 | "${libdir}/python${PYTHON_MAJMIN}/pprint.py" |
| 1042 | ], |
| 1043 | "cached": [ |
| 1044 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/pprint.*.pyc" |
| 1045 | ] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 1046 | }, |
| 1047 | "profile": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1048 | "summary": "Python basic performance profiling support", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 1049 | "rdepends": [ |
| 1050 | "core" |
| 1051 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1052 | "files": [ |
| 1053 | "${libdir}/python${PYTHON_MAJMIN}/cProfile.py", |
Andrew Geissler | 6ce62a2 | 2020-11-30 19:58:47 -0600 | [diff] [blame] | 1054 | "${libdir}/python${PYTHON_MAJMIN}/dataclasses.py", |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1055 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/_lsprof.*.so", |
| 1056 | "${libdir}/python${PYTHON_MAJMIN}/profile.py", |
| 1057 | "${libdir}/python${PYTHON_MAJMIN}/pstats.py" |
| 1058 | ], |
| 1059 | "cached": [ |
| 1060 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/cProfile.*.pyc", |
Andrew Geissler | 6ce62a2 | 2020-11-30 19:58:47 -0600 | [diff] [blame] | 1061 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/dataclasses.*.pyc", |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1062 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/profile.*.pyc", |
| 1063 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/pstats.*.pyc" |
| 1064 | ] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 1065 | }, |
| 1066 | "pydoc": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1067 | "summary": "Python interactive help support", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 1068 | "rdepends": [ |
Andrew Geissler | 635e0e4 | 2020-08-21 15:58:33 -0500 | [diff] [blame] | 1069 | "core" |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 1070 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1071 | "files": [ |
| 1072 | "${bindir}/pydoc*", |
| 1073 | "${libdir}/python${PYTHON_MAJMIN}/pydoc.py", |
| 1074 | "${libdir}/python${PYTHON_MAJMIN}/pydoc_data" |
| 1075 | ], |
| 1076 | "cached": [ |
| 1077 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/pydoc.*.pyc" |
| 1078 | ] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 1079 | }, |
| 1080 | "resource": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1081 | "summary": "Python resource control interface", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 1082 | "rdepends": [ |
| 1083 | "core" |
| 1084 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1085 | "files": [ |
| 1086 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/resource.*.so" |
| 1087 | ], |
| 1088 | "cached": [] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 1089 | }, |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 1090 | "shell": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1091 | "summary": "Python shell-like functionality", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 1092 | "rdepends": [ |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 1093 | "core", |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 1094 | "stringold" |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 1095 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1096 | "files": [ |
| 1097 | "${libdir}/python${PYTHON_MAJMIN}/cmd.py", |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1098 | "${libdir}/python${PYTHON_MAJMIN}/glob.py", |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 1099 | "${libdir}/python${PYTHON_MAJMIN}/shlex.py" |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1100 | ], |
| 1101 | "cached": [ |
| 1102 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/cmd.*.pyc", |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1103 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/glob.*.pyc", |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 1104 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/shlex.*.pyc" |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1105 | ] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 1106 | }, |
| 1107 | "smtpd": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1108 | "summary": "Python Simple Mail Transport Daemon", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 1109 | "rdepends": [ |
| 1110 | "core", |
| 1111 | "crypt", |
| 1112 | "datetime", |
| 1113 | "email", |
| 1114 | "io", |
| 1115 | "math", |
| 1116 | "mime", |
| 1117 | "netclient", |
| 1118 | "stringold" |
| 1119 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1120 | "files": [ |
| 1121 | "${bindir}/smtpd.py", |
| 1122 | "${libdir}/python${PYTHON_MAJMIN}/asynchat.py", |
| 1123 | "${libdir}/python${PYTHON_MAJMIN}/asyncore.py", |
| 1124 | "${libdir}/python${PYTHON_MAJMIN}/smtpd.py" |
| 1125 | ], |
| 1126 | "cached": [ |
| 1127 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/asynchat.*.pyc", |
| 1128 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/asyncore.*.pyc", |
| 1129 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/smtpd.*.pyc" |
| 1130 | ] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 1131 | }, |
| 1132 | "sqlite3": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1133 | "summary": "Python Sqlite3 database support", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 1134 | "rdepends": [ |
| 1135 | "core", |
| 1136 | "datetime" |
| 1137 | ], |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 1138 | "files": [ |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1139 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/_sqlite3.*.so", |
| 1140 | "${libdir}/python${PYTHON_MAJMIN}/sqlite3" |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 1141 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1142 | "cached": [] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 1143 | }, |
Andrew Geissler | 0903674 | 2021-06-25 14:25:14 -0500 | [diff] [blame] | 1144 | "statistics": { |
Patrick Williams | 7784c42 | 2022-11-17 07:29:11 -0600 | [diff] [blame] | 1145 | "summary": "Basic statistics module", |
| 1146 | "rdepends": [ |
| 1147 | "core", |
| 1148 | "crypt", |
| 1149 | "math", |
| 1150 | "numbers" |
| 1151 | ], |
| 1152 | "files": [ |
| 1153 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/_statistics.*.so", |
| 1154 | "${libdir}/python${PYTHON_MAJMIN}/statistics.py" |
| 1155 | ], |
| 1156 | "cached": [ |
| 1157 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/statistics.*.pyc" |
| 1158 | ] |
Andrew Geissler | 0903674 | 2021-06-25 14:25:14 -0500 | [diff] [blame] | 1159 | }, |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 1160 | "stringold": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1161 | "summary": "Python string APIs [deprecated]", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 1162 | "rdepends": [ |
| 1163 | "core" |
| 1164 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1165 | "files": [ |
| 1166 | "${libdir}/python${PYTHON_MAJMIN}/string.py" |
| 1167 | ], |
| 1168 | "cached": [ |
| 1169 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/string.*.pyc" |
| 1170 | ] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 1171 | }, |
| 1172 | "syslog": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1173 | "summary": "Python syslog interface", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 1174 | "rdepends": [ |
| 1175 | "core" |
| 1176 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1177 | "files": [ |
| 1178 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/syslog.*.so" |
| 1179 | ], |
| 1180 | "cached": [] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 1181 | }, |
| 1182 | "terminal": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1183 | "summary": "Python terminal controlling support", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 1184 | "rdepends": [ |
| 1185 | "core", |
| 1186 | "io" |
| 1187 | ], |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 1188 | "files": [ |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1189 | "${libdir}/python${PYTHON_MAJMIN}/pty.py", |
| 1190 | "${libdir}/python${PYTHON_MAJMIN}/tty.py" |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 1191 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1192 | "cached": [ |
| 1193 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/pty.*.pyc", |
| 1194 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/tty.*.pyc" |
| 1195 | ] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 1196 | }, |
| 1197 | "threading": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1198 | "summary": "Python threading & synchronization support", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 1199 | "rdepends": [ |
| 1200 | "core" |
| 1201 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1202 | "files": [ |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1203 | "${libdir}/python${PYTHON_MAJMIN}/_threading_local.py", |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 1204 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/_queue.*.so", |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1205 | "${libdir}/python${PYTHON_MAJMIN}/queue.py" |
| 1206 | ], |
| 1207 | "cached": [ |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1208 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/_threading_local.*.pyc", |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1209 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/queue.*.pyc" |
| 1210 | ] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 1211 | }, |
| 1212 | "tkinter": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1213 | "summary": "Python Tcl/Tk bindings", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 1214 | "rdepends": [ |
| 1215 | "core" |
| 1216 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1217 | "files": [ |
Andrew Geissler | 517393d | 2023-01-13 08:55:19 -0600 | [diff] [blame] | 1218 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/_tkinter.*.so", |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1219 | "${libdir}/python${PYTHON_MAJMIN}/tkinter" |
| 1220 | ], |
| 1221 | "cached": [] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 1222 | }, |
Patrick Williams | 8e7b46e | 2023-05-01 14:19:06 -0500 | [diff] [blame] | 1223 | "tomllib": { |
| 1224 | "summary": "Provides an interface for parsing TOML", |
| 1225 | "rdepends": [ |
| 1226 | "core", |
| 1227 | "datetime", |
| 1228 | "stringold" |
| 1229 | ], |
| 1230 | "files": [ |
| 1231 | "${libdir}/python${PYTHON_MAJMIN}/tomllib/" |
| 1232 | ], |
| 1233 | "cached": [ |
| 1234 | "${libdir}/python${PYTHON_MAJMIN}/tomllib/_re.*.pyc", |
| 1235 | "${libdir}/python${PYTHON_MAJMIN}/tomllib/_types.*.pyc", |
| 1236 | "${libdir}/python${PYTHON_MAJMIN}/tomllib/_parser.*.pyc" |
| 1237 | ] |
| 1238 | }, |
Patrick Williams | e760df8 | 2023-05-26 11:10:49 -0500 | [diff] [blame] | 1239 | "turtle": { |
| 1240 | "summary": "Turtle graphics is a popular way for introducing programming to kids.", |
| 1241 | "rdepends": [ |
| 1242 | "tkinter" |
| 1243 | ], |
| 1244 | "files": [ |
| 1245 | "${libdir}/python${PYTHON_MAJMIN}/turtle.py" |
| 1246 | ], |
| 1247 | "cached": [ |
| 1248 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/turtle.*.pyc" |
| 1249 | ] |
| 1250 | }, |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 1251 | "unittest": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1252 | "summary": "Python unit testing framework", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 1253 | "rdepends": [ |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 1254 | "asyncio", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 1255 | "core", |
| 1256 | "difflib", |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 1257 | "io", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 1258 | "logging", |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 1259 | "netclient", |
| 1260 | "numbers", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 1261 | "pprint", |
Patrick Williams | 7784c42 | 2022-11-17 07:29:11 -0600 | [diff] [blame] | 1262 | "profile", |
Andrew Geissler | 6ce62a2 | 2020-11-30 19:58:47 -0600 | [diff] [blame] | 1263 | "stringold" |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 1264 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1265 | "files": [ |
| 1266 | "${libdir}/python${PYTHON_MAJMIN}/unittest", |
| 1267 | "${libdir}/python${PYTHON_MAJMIN}/unittest/", |
| 1268 | "${libdir}/python${PYTHON_MAJMIN}/unittest/__pycache__" |
| 1269 | ], |
| 1270 | "cached": [] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 1271 | }, |
| 1272 | "unixadmin": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1273 | "summary": "Python Unix administration support", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 1274 | "rdepends": [ |
| 1275 | "core", |
| 1276 | "io" |
| 1277 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1278 | "files": [ |
| 1279 | "${libdir}/python${PYTHON_MAJMIN}/getpass.py", |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1280 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/nis.*.so" |
| 1281 | ], |
| 1282 | "cached": [ |
| 1283 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/getpass.*.pyc" |
| 1284 | ] |
| 1285 | }, |
| 1286 | "venv": { |
| 1287 | "summary": "Provides support for creating lightweight virtual environments with their own site directories, optionally isolated from system site directories.", |
| 1288 | "rdepends": [ |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1289 | "core", |
| 1290 | "logging", |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 1291 | "stringold" |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1292 | ], |
| 1293 | "files": [ |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 1294 | "${bindir}/pyvenv*", |
| 1295 | "${libdir}/python${PYTHON_MAJMIN}/venv" |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1296 | ], |
| 1297 | "cached": [] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 1298 | }, |
| 1299 | "xml": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1300 | "summary": "Python basic XML support", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 1301 | "rdepends": [ |
| 1302 | "core" |
| 1303 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1304 | "files": [ |
| 1305 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/_elementtree.*.so", |
| 1306 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/pyexpat.*.so", |
| 1307 | "${libdir}/python${PYTHON_MAJMIN}/xml" |
| 1308 | ], |
| 1309 | "cached": [] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 1310 | }, |
| 1311 | "xmlrpc": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1312 | "summary": "Python XML-RPC support", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 1313 | "rdepends": [ |
Andrew Geissler | 635e0e4 | 2020-08-21 15:58:33 -0500 | [diff] [blame] | 1314 | "compression", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 1315 | "core", |
Andrew Geissler | 635e0e4 | 2020-08-21 15:58:33 -0500 | [diff] [blame] | 1316 | "crypt", |
| 1317 | "datetime", |
| 1318 | "email", |
Andrew Geissler | 635e0e4 | 2020-08-21 15:58:33 -0500 | [diff] [blame] | 1319 | "html", |
| 1320 | "io", |
| 1321 | "math", |
| 1322 | "mime", |
| 1323 | "netclient", |
| 1324 | "netserver", |
| 1325 | "numbers", |
| 1326 | "pydoc", |
| 1327 | "stringold", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 1328 | "xml" |
| 1329 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1330 | "files": [ |
| 1331 | "${libdir}/python${PYTHON_MAJMIN}/xmlrpc", |
| 1332 | "${libdir}/python${PYTHON_MAJMIN}/xmlrpc/__pycache__" |
| 1333 | ], |
| 1334 | "cached": [] |
Andrew Geissler | 87f5cff | 2022-09-30 13:13:31 -0500 | [diff] [blame] | 1335 | }, |
Patrick Williams | e760df8 | 2023-05-26 11:10:49 -0500 | [diff] [blame] | 1336 | "zipapp": { |
| 1337 | "summary": "Tools to manage the creation of zip files containing Python code", |
| 1338 | "rdepends": [ |
| 1339 | "compression", |
| 1340 | "core" |
| 1341 | ], |
| 1342 | "files": [ |
| 1343 | "${libdir}/python${PYTHON_MAJMIN}/zipapp.py" |
| 1344 | ], |
| 1345 | "cached": [ |
| 1346 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/zipapp.*.pyc" |
| 1347 | ] |
| 1348 | }, |
Andrew Geissler | 87f5cff | 2022-09-30 13:13:31 -0500 | [diff] [blame] | 1349 | "zoneinfo": { |
| 1350 | "summary": "IANA time zone support", |
| 1351 | "rdepends": [ |
Patrick Williams | 7784c42 | 2022-11-17 07:29:11 -0600 | [diff] [blame] | 1352 | "core", |
| 1353 | "datetime" |
Andrew Geissler | 87f5cff | 2022-09-30 13:13:31 -0500 | [diff] [blame] | 1354 | ], |
| 1355 | "files": [ |
Patrick Williams | 7784c42 | 2022-11-17 07:29:11 -0600 | [diff] [blame] | 1356 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/_zoneinfo.*.so", |
| 1357 | "${libdir}/python${PYTHON_MAJMIN}/zoneinfo" |
Andrew Geissler | 87f5cff | 2022-09-30 13:13:31 -0500 | [diff] [blame] | 1358 | ], |
Patrick Williams | 7784c42 | 2022-11-17 07:29:11 -0600 | [diff] [blame] | 1359 | "cached": [] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 1360 | } |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1361 | } |