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