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