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