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