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