Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 1 | # DO NOT (entirely) modify this file manually, please read. |
| 2 | # |
| 3 | # IMPORTANT NOTE: |
| 4 | # Please keep in mind that the create_manifest task relies on the fact the the |
| 5 | # target and native Python packages are the same, and it also needs to be executed |
| 6 | # with a fully working native package (with all the PACKAGECONFIGs enabled and all |
| 7 | # and all the modules should be working, check log.do_compile), otherwise the script |
| 8 | # will fail to find dependencies correctly, this note is valid either if you are |
| 9 | # upgrading to a new Python version or adding a new package. |
| 10 | # |
| 11 | # |
| 12 | # If you are adding a new package please follow the next steps: |
| 13 | # How to add a new package: |
| 14 | # - If a user wants to add a new package all that has to be done is: |
| 15 | # Modify the python3-manifest.json file, and add the required file(s) to the FILES list, |
| 16 | # fill up the SUMMARY section as well, the script should handle all the rest. |
| 17 | # |
| 18 | # Real example: |
| 19 | # We want to add a web browser package, including the file webbrowser.py |
| 20 | # which at the moment is on python3-misc. |
| 21 | # "webbrowser": { |
| 22 | # "files": ["${libdir}/python${PYTHON_MAJMIN}/lib-dynload/webbrowser.py"], |
| 23 | # "rdepends": [], |
| 24 | # "summary": "Python Web Browser support"} |
| 25 | # |
| 26 | # * Note that the rdepends field was left empty |
| 27 | # |
| 28 | # We run $ bitbake python3 -c create_manifest and the resulting manifest |
| 29 | # should be completed after a few seconds, showing something like: |
| 30 | # "webbrowser": { |
| 31 | # "files": ["${libdir}/python${PYTHON_MAJMIN}/webbrowser.py"], |
| 32 | # "rdepends": ["core","fcntl","io","pickle","shell","subprocess"], |
| 33 | # "summary": "Python Web Browser support"} |
| 34 | # |
| 35 | # |
| 36 | # If you are upgrading Python to a new version please follow the next steps: |
| 37 | # After each Python upgrade, the create_manifest task should be executed, because we |
| 38 | # don't control what changes on upstream Python, so, some module dependency |
| 39 | # might have changed without us realizing it, a certain module can either have |
| 40 | # more or less dependencies, or could be depending on a new file that was just |
| 41 | # created on the new release and for obvious reasons we wouldn't have it on our |
| 42 | # old manifest, all of these issues would cause runtime errors on our system. |
| 43 | # |
| 44 | # - Upgrade both the native and target Python packages to a new version |
| 45 | # - Run the create_manifest task for the target Python package as its shown below: |
| 46 | # |
| 47 | # $ bitbake python3 -c create_manifest |
| 48 | # |
| 49 | # This will automatically replace your manifest file located under the Python directory |
| 50 | # with an new one, which contains the new dependencies (if any). |
| 51 | # |
| 52 | # Several things could have gone wrong here, I will try to explain a few: |
| 53 | # |
| 54 | # a) A new file was introduced on this release, e.g. sha3*.so: |
| 55 | # The task will check what its needed to import every module, more than one module would |
| 56 | # would probably depend on sha3*.so, although only one module should contain it. |
| 57 | # |
| 58 | # After running the task, the new manifest will have the sha3*.so file on more than one |
| 59 | # module, you need to manually decide which one of them should get it and delete it from |
| 60 | # the others, for example sha3*.so should likely be on ${PN}-crypt. |
| 61 | # Once you have deleted from the others you need to run the create_manifest task again, |
| 62 | # this will populate the other module's rdepends fields, with ${PN}-crypt and you should be |
| 63 | # good to go. |
| 64 | # |
| 65 | # b) The native package wasn't built correctly and its missing a certain module: |
| 66 | # As mentioned before, you need to make sure the native package was built with all the modules |
| 67 | # because it is used as base to build the manifest file, you need to manually check log.do_compile |
| 68 | # since it won't error out the compile function if its only missing a couple of modules. |
| 69 | # |
| 70 | # e.g. missing the _uuid module, log.do_compile would show the following: |
| 71 | # Python build finished successfully! |
| 72 | # The necessary bits to build these optional modules were not found: |
| 73 | # _uuid |
| 74 | # |
| 75 | # What will happen here is that the new manifest would not be aware that the _uuid module exists, so |
| 76 | # not only we won't know of any dependencies to it, but also, the _uuid* files will be packaged on |
| 77 | # the misc package (which is where any file that doesn't belong anywhere else ends up). |
| 78 | # |
| 79 | # This will eventually cause runtime errors on our system if we don't include the misc package on |
| 80 | # on our image, because the _uuid files will be missing. |
| 81 | # If we build the _uuid module correctly and run the create_manifest task the _uuid files will be |
| 82 | # detected correctly along with its dependencies, and we will get a working manifest. |
| 83 | # |
| 84 | # This is the reason why it is important to make sure we have a fully working native build, |
| 85 | # so we can avoid these errors. |
| 86 | # |
| 87 | # |
| 88 | # |
| 89 | # DO NOT MODIFY THE NEXT LINE!, IT IS USED AS A MARKER FOR THE ACTUAL JSON MANIFEST |
| 90 | # EOC |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 91 | { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 92 | "tests": { |
| 93 | "summary": "Python test suite", |
| 94 | "rdepends": [ |
| 95 | "core", |
| 96 | "modules" |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 97 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 98 | "files": [ |
| 99 | "${libdir}/python${PYTHON_MAJMIN}/*/test", |
| 100 | "${libdir}/python${PYTHON_MAJMIN}/*/tests", |
| 101 | "${libdir}/python${PYTHON_MAJMIN}/idlelib/idle_test/", |
| 102 | "${libdir}/python${PYTHON_MAJMIN}/test" |
| 103 | ], |
| 104 | "cached": [] |
| 105 | }, |
| 106 | "2to3": { |
| 107 | "summary": "Python automated Python 2 to 3 code translator", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 108 | "rdepends": [ |
| 109 | "core" |
| 110 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 111 | "files": [ |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 112 | "${bindir}/2to3*", |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 113 | "${libdir}/python${PYTHON_MAJMIN}/lib2to3" |
| 114 | ], |
| 115 | "cached": [] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 116 | }, |
| 117 | "asyncio": { |
Brad Bishop | 79641f2 | 2019-09-10 07:20:22 -0400 | [diff] [blame] | 118 | "summary": "Python Asynchronous I/O", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 119 | "rdepends": [ |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 120 | "core", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 121 | "io", |
| 122 | "logging", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 123 | "netclient", |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 124 | "numbers", |
| 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": [ |
Brad Bishop | 64c979e | 2019-11-04 13:55:29 -0500 | [diff] [blame^] | 213 | "${bindir}/python3", |
| 214 | "${bindir}/python${PYTHON_MAJMIN}", |
| 215 | "${bindir}/python${PYTHON_MAJMIN}.real", |
| 216 | "${bindir}/python${PYTHON_BINABI}", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 217 | "${includedir}/python${PYTHON_BINABI}/pyconfig*.h", |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 218 | "${prefix}/lib/python${PYTHON_MAJMIN}/config*/*[!.a]", |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 219 | "${libdir}/python${PYTHON_MAJMIN}/UserDict.py", |
| 220 | "${libdir}/python${PYTHON_MAJMIN}/UserList.py", |
| 221 | "${libdir}/python${PYTHON_MAJMIN}/UserString.py", |
| 222 | "${libdir}/python${PYTHON_MAJMIN}/__future__.py", |
| 223 | "${libdir}/python${PYTHON_MAJMIN}/_abcoll.py", |
| 224 | "${libdir}/python${PYTHON_MAJMIN}/_bootlocale.py", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 225 | "${libdir}/python${PYTHON_MAJMIN}/_collections_abc.py", |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 226 | "${libdir}/python${PYTHON_MAJMIN}/_markupbase.py", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 227 | "${libdir}/python${PYTHON_MAJMIN}/_sitebuiltins.py", |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 228 | "${libdir}/python${PYTHON_MAJMIN}/_sysconfigdata*.py", |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 229 | "${libdir}/python${PYTHON_MAJMIN}/_weakrefset.py", |
| 230 | "${libdir}/python${PYTHON_MAJMIN}/abc.py", |
| 231 | "${libdir}/python${PYTHON_MAJMIN}/argparse.py", |
| 232 | "${libdir}/python${PYTHON_MAJMIN}/ast.py", |
| 233 | "${libdir}/python${PYTHON_MAJMIN}/bisect.py", |
| 234 | "${libdir}/python${PYTHON_MAJMIN}/code.py", |
| 235 | "${libdir}/python${PYTHON_MAJMIN}/codecs.py", |
| 236 | "${libdir}/python${PYTHON_MAJMIN}/codeop.py", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 237 | "${libdir}/python${PYTHON_MAJMIN}/collections", |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 238 | "${libdir}/python${PYTHON_MAJMIN}/collections/abc.py", |
| 239 | "${libdir}/python${PYTHON_MAJMIN}/configparser.py", |
| 240 | "${libdir}/python${PYTHON_MAJMIN}/contextlib.py", |
| 241 | "${libdir}/python${PYTHON_MAJMIN}/copy.py", |
| 242 | "${libdir}/python${PYTHON_MAJMIN}/copyreg.py", |
| 243 | "${libdir}/python${PYTHON_MAJMIN}/csv.py", |
| 244 | "${libdir}/python${PYTHON_MAJMIN}/dis.py", |
| 245 | "${libdir}/python${PYTHON_MAJMIN}/encodings", |
| 246 | "${libdir}/python${PYTHON_MAJMIN}/encodings/aliases.py", |
| 247 | "${libdir}/python${PYTHON_MAJMIN}/encodings/latin_1.py", |
| 248 | "${libdir}/python${PYTHON_MAJMIN}/encodings/utf_8.py", |
| 249 | "${libdir}/python${PYTHON_MAJMIN}/enum.py", |
| 250 | "${libdir}/python${PYTHON_MAJMIN}/functools.py", |
| 251 | "${libdir}/python${PYTHON_MAJMIN}/genericpath.py", |
| 252 | "${libdir}/python${PYTHON_MAJMIN}/getopt.py", |
| 253 | "${libdir}/python${PYTHON_MAJMIN}/gettext.py", |
| 254 | "${libdir}/python${PYTHON_MAJMIN}/heapq.py", |
| 255 | "${libdir}/python${PYTHON_MAJMIN}/imp.py", |
| 256 | "${libdir}/python${PYTHON_MAJMIN}/importlib", |
| 257 | "${libdir}/python${PYTHON_MAJMIN}/importlib/_bootstrap.py", |
| 258 | "${libdir}/python${PYTHON_MAJMIN}/importlib/_bootstrap_external.py", |
| 259 | "${libdir}/python${PYTHON_MAJMIN}/importlib/abc.py", |
| 260 | "${libdir}/python${PYTHON_MAJMIN}/importlib/machinery.py", |
| 261 | "${libdir}/python${PYTHON_MAJMIN}/importlib/util.py", |
| 262 | "${libdir}/python${PYTHON_MAJMIN}/inspect.py", |
| 263 | "${libdir}/python${PYTHON_MAJMIN}/io.py", |
| 264 | "${libdir}/python${PYTHON_MAJMIN}/keyword.py", |
| 265 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/__pycache__/_struct.*.so", |
| 266 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/__pycache__/binascii.*.so", |
| 267 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/__pycache__/time.*.so", |
| 268 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/__pycache__/xreadlines.*.so", |
| 269 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/_bisect.*.so", |
| 270 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/_csv.*.so", |
| 271 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/_heapq.*.so", |
| 272 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/_opcode.*.so", |
| 273 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/_posixsubprocess.*.so", |
| 274 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/_struct.*.so", |
| 275 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/array.*.so", |
| 276 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/binascii.*.so", |
| 277 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/math.*.so", |
| 278 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/parser.*.so", |
| 279 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/readline.*.so", |
| 280 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/select.*.so", |
| 281 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/time.*.so", |
| 282 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/unicodedata.*.so", |
| 283 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/xreadlines.*.so", |
| 284 | "${libdir}/python${PYTHON_MAJMIN}/linecache.py", |
| 285 | "${libdir}/python${PYTHON_MAJMIN}/locale.py", |
| 286 | "${libdir}/python${PYTHON_MAJMIN}/new.py", |
Brad Bishop | c342db3 | 2019-05-15 21:57:59 -0400 | [diff] [blame] | 287 | "${libdir}/python${PYTHON_MAJMIN}/ntpath.py", |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 288 | "${libdir}/python${PYTHON_MAJMIN}/opcode.py", |
| 289 | "${libdir}/python${PYTHON_MAJMIN}/operator.py", |
| 290 | "${libdir}/python${PYTHON_MAJMIN}/optparse.py", |
| 291 | "${libdir}/python${PYTHON_MAJMIN}/os.py", |
| 292 | "${libdir}/python${PYTHON_MAJMIN}/platform.py", |
| 293 | "${libdir}/python${PYTHON_MAJMIN}/posixpath.py", |
| 294 | "${libdir}/python${PYTHON_MAJMIN}/re.py", |
| 295 | "${libdir}/python${PYTHON_MAJMIN}/reprlib.py", |
| 296 | "${libdir}/python${PYTHON_MAJMIN}/rlcompleter.py", |
Brad Bishop | 00e122a | 2019-10-05 11:10:57 -0400 | [diff] [blame] | 297 | "${libdir}/python${PYTHON_MAJMIN}/runpy.py", |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 298 | "${libdir}/python${PYTHON_MAJMIN}/selectors.py", |
| 299 | "${libdir}/python${PYTHON_MAJMIN}/signal.py", |
| 300 | "${libdir}/python${PYTHON_MAJMIN}/site.py", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 301 | "${libdir}/python${PYTHON_MAJMIN}/sitecustomize.py", |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 302 | "${libdir}/python${PYTHON_MAJMIN}/sre_compile.py", |
| 303 | "${libdir}/python${PYTHON_MAJMIN}/sre_constants.py", |
| 304 | "${libdir}/python${PYTHON_MAJMIN}/sre_parse.py", |
| 305 | "${libdir}/python${PYTHON_MAJMIN}/stat.py", |
| 306 | "${libdir}/python${PYTHON_MAJMIN}/stringprep.py", |
| 307 | "${libdir}/python${PYTHON_MAJMIN}/struct.py", |
| 308 | "${libdir}/python${PYTHON_MAJMIN}/subprocess.py", |
| 309 | "${libdir}/python${PYTHON_MAJMIN}/symbol.py", |
| 310 | "${libdir}/python${PYTHON_MAJMIN}/sysconfig.py", |
| 311 | "${libdir}/python${PYTHON_MAJMIN}/textwrap.py", |
| 312 | "${libdir}/python${PYTHON_MAJMIN}/threading.py", |
| 313 | "${libdir}/python${PYTHON_MAJMIN}/token.py", |
| 314 | "${libdir}/python${PYTHON_MAJMIN}/tokenize.py", |
| 315 | "${libdir}/python${PYTHON_MAJMIN}/traceback.py", |
| 316 | "${libdir}/python${PYTHON_MAJMIN}/types.py", |
| 317 | "${libdir}/python${PYTHON_MAJMIN}/warnings.py", |
| 318 | "${libdir}/python${PYTHON_MAJMIN}/weakref.py" |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 319 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 320 | "cached": [ |
| 321 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/__future__.*.pyc", |
| 322 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/_bootlocale.*.pyc", |
| 323 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/_collections_abc.*.pyc", |
| 324 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/_markupbase.*.pyc", |
| 325 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/_sitebuiltins.*.pyc", |
| 326 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/_sysconfigdata.*.pyc", |
| 327 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/_weakrefset.*.pyc", |
| 328 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/abc.*.pyc", |
| 329 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/argparse.*.pyc", |
| 330 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/ast.*.pyc", |
| 331 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/bisect.*.pyc", |
| 332 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/code.*.pyc", |
| 333 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/codecs.*.pyc", |
| 334 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/codeop.*.pyc", |
| 335 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/configparser.*.pyc", |
| 336 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/contextlib.*.pyc", |
| 337 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/copy.*.pyc", |
| 338 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/copyreg.*.pyc", |
| 339 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/csv.*.pyc", |
| 340 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/dis.*.pyc", |
| 341 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/enum.*.pyc", |
| 342 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/functools.*.pyc", |
| 343 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/genericpath.*.pyc", |
| 344 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/getopt.*.pyc", |
| 345 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/gettext.*.pyc", |
| 346 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/heapq.*.pyc", |
| 347 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/imp.*.pyc", |
| 348 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/inspect.*.pyc", |
| 349 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/io.*.pyc", |
| 350 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/keyword.*.pyc", |
| 351 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/linecache.*.pyc", |
| 352 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/locale.*.pyc", |
| 353 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/opcode.*.pyc", |
| 354 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/operator.*.pyc", |
| 355 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/optparse.*.pyc", |
| 356 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/os.*.pyc", |
| 357 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/platform.*.pyc", |
| 358 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/posixpath.*.pyc", |
| 359 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/re.*.pyc", |
| 360 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/reprlib.*.pyc", |
| 361 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/rlcompleter.*.pyc", |
Brad Bishop | 00e122a | 2019-10-05 11:10:57 -0400 | [diff] [blame] | 362 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/runpy.*.pyc", |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 363 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/selectors.*.pyc", |
| 364 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/signal.*.pyc", |
| 365 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/site.*.pyc", |
| 366 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/sre_compile.*.pyc", |
| 367 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/sre_constants.*.pyc", |
| 368 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/sre_parse.*.pyc", |
| 369 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/stat.*.pyc", |
| 370 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/stringprep.*.pyc", |
| 371 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/struct.*.pyc", |
| 372 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/subprocess.*.pyc", |
| 373 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/symbol.*.pyc", |
| 374 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/sysconfig.*.pyc", |
| 375 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/textwrap.*.pyc", |
| 376 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/threading.*.pyc", |
| 377 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/token.*.pyc", |
| 378 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/tokenize.*.pyc", |
| 379 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/traceback.*.pyc", |
| 380 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/types.*.pyc", |
| 381 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/warnings.*.pyc", |
| 382 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/weakref.*.pyc", |
| 383 | "${libdir}/python${PYTHON_MAJMIN}/collections/__pycache__", |
| 384 | "${libdir}/python${PYTHON_MAJMIN}/collections/__pycache__/abc.*.pyc", |
| 385 | "${libdir}/python${PYTHON_MAJMIN}/encodings/__pycache__", |
| 386 | "${libdir}/python${PYTHON_MAJMIN}/encodings/__pycache__/aliases.*.pyc", |
| 387 | "${libdir}/python${PYTHON_MAJMIN}/encodings/__pycache__/latin_1.*.pyc", |
| 388 | "${libdir}/python${PYTHON_MAJMIN}/encodings/__pycache__/utf_8.*.pyc", |
| 389 | "${libdir}/python${PYTHON_MAJMIN}/importlib/__pycache__", |
| 390 | "${libdir}/python${PYTHON_MAJMIN}/importlib/__pycache__/abc.*.pyc", |
| 391 | "${libdir}/python${PYTHON_MAJMIN}/importlib/__pycache__/machinery.*.pyc", |
| 392 | "${libdir}/python${PYTHON_MAJMIN}/importlib/__pycache__/util.*.pyc" |
| 393 | ] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 394 | }, |
| 395 | "crypt": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 396 | "summary": "Python basic cryptographic and hashing support", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 397 | "rdepends": [ |
| 398 | "core", |
| 399 | "math", |
| 400 | "stringold" |
| 401 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 402 | "files": [ |
| 403 | "${libdir}/python${PYTHON_MAJMIN}/crypt.py", |
| 404 | "${libdir}/python${PYTHON_MAJMIN}/hashlib.py", |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 405 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/_blake2.*.so", |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 406 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/_crypt.*.so", |
| 407 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/_hashlib.*.so", |
| 408 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/_sha256.*.so", |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 409 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/_sha3.*.so", |
| 410 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/_sha1.*.so", |
| 411 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/_md5.*.so", |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 412 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/_sha512.*.so" |
| 413 | ], |
| 414 | "cached": [ |
| 415 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/crypt.*.pyc", |
| 416 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/hashlib.*.pyc" |
| 417 | ] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 418 | }, |
| 419 | "ctypes": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 420 | "summary": "Python C types support", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 421 | "rdepends": [ |
| 422 | "core" |
| 423 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 424 | "files": [ |
| 425 | "${libdir}/python${PYTHON_MAJMIN}/ctypes", |
| 426 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/_ctypes.*.so", |
| 427 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/_ctypes_test.*.so" |
| 428 | ], |
| 429 | "cached": [] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 430 | }, |
| 431 | "curses": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 432 | "summary": "Python curses support", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 433 | "rdepends": [ |
| 434 | "core" |
| 435 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 436 | "files": [ |
| 437 | "${libdir}/python${PYTHON_MAJMIN}/curses", |
| 438 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/_curses.*.so", |
| 439 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/_curses_panel.*.so" |
| 440 | ], |
| 441 | "cached": [] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 442 | }, |
| 443 | "datetime": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 444 | "summary": "Python calendar and time support", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 445 | "rdepends": [ |
| 446 | "core" |
| 447 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 448 | "files": [ |
| 449 | "${libdir}/python${PYTHON_MAJMIN}/_strptime.py", |
| 450 | "${libdir}/python${PYTHON_MAJMIN}/calendar.py", |
| 451 | "${libdir}/python${PYTHON_MAJMIN}/datetime.py", |
| 452 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/_datetime.*.so" |
| 453 | ], |
| 454 | "cached": [ |
| 455 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/_strptime.*.pyc", |
| 456 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/calendar.*.pyc", |
| 457 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/datetime.*.pyc" |
| 458 | ] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 459 | }, |
| 460 | "db": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 461 | "summary": "Python file-based database support", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 462 | "rdepends": [ |
| 463 | "core" |
| 464 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 465 | "files": [ |
| 466 | "${libdir}/python${PYTHON_MAJMIN}/dbm", |
| 467 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/_dbm.*.so" |
| 468 | ], |
| 469 | "cached": [] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 470 | }, |
| 471 | "debugger": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 472 | "summary": "Python debugger", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 473 | "rdepends": [ |
| 474 | "core", |
| 475 | "pprint", |
| 476 | "shell", |
| 477 | "stringold" |
| 478 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 479 | "files": [ |
| 480 | "${libdir}/python${PYTHON_MAJMIN}/bdb.py", |
| 481 | "${libdir}/python${PYTHON_MAJMIN}/pdb.py" |
| 482 | ], |
| 483 | "cached": [ |
| 484 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/bdb.*.pyc", |
| 485 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/pdb.*.pyc" |
| 486 | ] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 487 | }, |
| 488 | "dev": { |
| 489 | "cached": [], |
| 490 | "files": [ |
| 491 | "${base_libdir}/*.a", |
| 492 | "${base_libdir}/*.o", |
Brad Bishop | 64c979e | 2019-11-04 13:55:29 -0500 | [diff] [blame^] | 493 | "${bindir}/python*-config*", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 494 | "${datadir}/aclocal", |
| 495 | "${datadir}/pkgconfig", |
| 496 | "${includedir}", |
| 497 | "${libdir}/*.a", |
| 498 | "${libdir}/*.la", |
| 499 | "${libdir}/*.o", |
| 500 | "${libdir}/lib*${SOLIBSDEV}", |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 501 | "${libdir}/pkgconfig" |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 502 | ], |
| 503 | "rdepends": [ |
Brad Bishop | 64c979e | 2019-11-04 13:55:29 -0500 | [diff] [blame^] | 504 | "core", |
| 505 | "distutils" |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 506 | ], |
| 507 | "summary": "Python development package" |
| 508 | }, |
| 509 | "difflib": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 510 | "summary": "Python helpers for computing deltas between objects", |
| 511 | "rdepends": [ |
| 512 | "core" |
| 513 | ], |
| 514 | "files": [ |
| 515 | "${libdir}/python${PYTHON_MAJMIN}/difflib.py" |
| 516 | ], |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 517 | "cached": [ |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 518 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/difflib.*.pyc" |
| 519 | ] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 520 | }, |
Brad Bishop | 08902b0 | 2019-08-20 09:16:51 -0400 | [diff] [blame] | 521 | "distutils-windows": { |
| 522 | "cached": [], |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 523 | "files": [ |
Brad Bishop | 08902b0 | 2019-08-20 09:16:51 -0400 | [diff] [blame] | 524 | "${libdir}/python${PYTHON_MAJMIN}/distutils/command/wininst-*.exe" |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 525 | ], |
| 526 | "rdepends": [ |
| 527 | "distutils" |
| 528 | ], |
Brad Bishop | 08902b0 | 2019-08-20 09:16:51 -0400 | [diff] [blame] | 529 | "summary": "Python distribution utilities (Windows installer stubs)" |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 530 | }, |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 531 | "distutils": { |
| 532 | "summary": "Python Distribution Utilities", |
| 533 | "rdepends": [ |
| 534 | "core" |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 535 | ], |
| 536 | "files": [ |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 537 | "${libdir}/python${PYTHON_MAJMIN}/distutils" |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 538 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 539 | "cached": [] |
| 540 | }, |
| 541 | "doctest": { |
| 542 | "summary": "Python framework for running examples in docstrings", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 543 | "rdepends": [ |
| 544 | "core", |
| 545 | "debugger", |
| 546 | "difflib", |
| 547 | "logging", |
| 548 | "pprint", |
| 549 | "shell", |
| 550 | "stringold", |
| 551 | "unittest" |
| 552 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 553 | "files": [ |
| 554 | "${libdir}/python${PYTHON_MAJMIN}/doctest.py" |
| 555 | ], |
| 556 | "cached": [ |
| 557 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/doctest.*.pyc" |
| 558 | ] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 559 | }, |
| 560 | "email": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 561 | "summary": "Python email support", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 562 | "rdepends": [ |
| 563 | "core", |
| 564 | "crypt", |
| 565 | "datetime", |
| 566 | "io", |
| 567 | "math", |
| 568 | "netclient" |
| 569 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 570 | "files": [ |
| 571 | "${libdir}/python${PYTHON_MAJMIN}/email", |
| 572 | "${libdir}/python${PYTHON_MAJMIN}/imaplib.py" |
| 573 | ], |
| 574 | "cached": [ |
| 575 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/imaplib.*.pyc" |
| 576 | ] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 577 | }, |
| 578 | "fcntl": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 579 | "summary": "Python's fcntl interface", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 580 | "rdepends": [ |
| 581 | "core" |
| 582 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 583 | "files": [ |
| 584 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/fcntl.*.so" |
| 585 | ], |
| 586 | "cached": [] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 587 | }, |
| 588 | "gdbm": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 589 | "summary": "Python GNU database support", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 590 | "rdepends": [ |
| 591 | "core" |
| 592 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 593 | "files": [ |
| 594 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/_gdbm.*.so" |
| 595 | ], |
| 596 | "cached": [] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 597 | }, |
| 598 | "html": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 599 | "summary": "Python HTML processing support", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 600 | "rdepends": [ |
| 601 | "core" |
| 602 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 603 | "files": [ |
| 604 | "${libdir}/python${PYTHON_MAJMIN}/formatter.py", |
| 605 | "${libdir}/python${PYTHON_MAJMIN}/html" |
| 606 | ], |
| 607 | "cached": [ |
| 608 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/formatter.*.pyc" |
| 609 | ] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 610 | }, |
| 611 | "idle": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 612 | "summary": "Python Integrated Development Environment", |
| 613 | "rdepends": [ |
| 614 | "core" |
| 615 | ], |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 616 | "files": [ |
| 617 | "${bindir}/idle*", |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 618 | "${libdir}/python${PYTHON_MAJMIN}/idlelib" |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 619 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 620 | "cached": [] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 621 | }, |
| 622 | "image": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 623 | "summary": "Python graphical image handling", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 624 | "rdepends": [ |
| 625 | "core" |
| 626 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 627 | "files": [ |
| 628 | "${libdir}/python${PYTHON_MAJMIN}/colorsys.py", |
| 629 | "${libdir}/python${PYTHON_MAJMIN}/imghdr.py" |
| 630 | ], |
| 631 | "cached": [ |
| 632 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/colorsys.*.pyc", |
| 633 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/imghdr.*.pyc" |
| 634 | ] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 635 | }, |
| 636 | "io": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 637 | "summary": "Python low-level I/O", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 638 | "rdepends": [ |
| 639 | "compression", |
| 640 | "core", |
| 641 | "crypt", |
| 642 | "math", |
| 643 | "netclient", |
| 644 | "shell", |
| 645 | "unixadmin" |
| 646 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 647 | "files": [ |
| 648 | "${libdir}/python${PYTHON_MAJMIN}/_pyio.py", |
| 649 | "${libdir}/python${PYTHON_MAJMIN}/ipaddress.py", |
| 650 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/_socket.*.so", |
| 651 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/_ssl.*.so", |
| 652 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/termios.*.so", |
| 653 | "${libdir}/python${PYTHON_MAJMIN}/pipes.py", |
| 654 | "${libdir}/python${PYTHON_MAJMIN}/socket.py", |
| 655 | "${libdir}/python${PYTHON_MAJMIN}/ssl.py", |
| 656 | "${libdir}/python${PYTHON_MAJMIN}/tempfile.py" |
| 657 | ], |
| 658 | "cached": [ |
| 659 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/_pyio.*.pyc", |
| 660 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/ipaddress.*.pyc", |
| 661 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/pipes.*.pyc", |
| 662 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/socket.*.pyc", |
| 663 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/ssl.*.pyc", |
| 664 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/tempfile.*.pyc" |
| 665 | ] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 666 | }, |
| 667 | "json": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 668 | "summary": "Python JSON support", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 669 | "rdepends": [ |
| 670 | "core" |
| 671 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 672 | "files": [ |
| 673 | "${libdir}/python${PYTHON_MAJMIN}/json", |
| 674 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/_json.*.so" |
| 675 | ], |
| 676 | "cached": [] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 677 | }, |
| 678 | "logging": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 679 | "summary": "Python logging support", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 680 | "rdepends": [ |
| 681 | "core", |
| 682 | "stringold" |
| 683 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 684 | "files": [ |
| 685 | "${libdir}/python${PYTHON_MAJMIN}/logging" |
| 686 | ], |
| 687 | "cached": [] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 688 | }, |
| 689 | "mailbox": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 690 | "summary": "Python mailbox format support", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 691 | "rdepends": [ |
| 692 | "core", |
| 693 | "crypt", |
| 694 | "datetime", |
| 695 | "email", |
| 696 | "fcntl", |
| 697 | "io", |
| 698 | "math", |
| 699 | "mime", |
| 700 | "netclient", |
| 701 | "stringold" |
| 702 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 703 | "files": [ |
| 704 | "${libdir}/python${PYTHON_MAJMIN}/mailbox.py" |
| 705 | ], |
| 706 | "cached": [ |
| 707 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/mailbox.*.pyc" |
| 708 | ] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 709 | }, |
| 710 | "math": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 711 | "summary": "Python math support", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 712 | "rdepends": [ |
| 713 | "core", |
| 714 | "crypt" |
| 715 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 716 | "files": [ |
| 717 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/_random.*.so", |
| 718 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/cmath.*.so", |
| 719 | "${libdir}/python${PYTHON_MAJMIN}/random.py" |
| 720 | ], |
| 721 | "cached": [ |
| 722 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/random.*.pyc" |
| 723 | ] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 724 | }, |
| 725 | "mime": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 726 | "summary": "Python MIME handling APIs", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 727 | "rdepends": [ |
| 728 | "core" |
| 729 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 730 | "files": [ |
| 731 | "${libdir}/python${PYTHON_MAJMIN}/quopri.py", |
| 732 | "${libdir}/python${PYTHON_MAJMIN}/uu.py" |
| 733 | ], |
| 734 | "cached": [ |
| 735 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/quopri.*.pyc", |
| 736 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/uu.*.pyc" |
| 737 | ] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 738 | }, |
| 739 | "mmap": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 740 | "summary": "Python memory-mapped file support", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 741 | "rdepends": [ |
| 742 | "core" |
| 743 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 744 | "files": [ |
| 745 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/mmap.*.so" |
| 746 | ], |
| 747 | "cached": [] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 748 | }, |
| 749 | "modules": { |
| 750 | "cached": [], |
| 751 | "files": [], |
| 752 | "rdepends": [ |
| 753 | "2to3", |
| 754 | "asyncio", |
| 755 | "audio", |
| 756 | "codecs", |
| 757 | "compile", |
| 758 | "compression", |
| 759 | "core", |
| 760 | "crypt", |
| 761 | "ctypes", |
| 762 | "curses", |
| 763 | "datetime", |
| 764 | "db", |
| 765 | "debugger", |
| 766 | "difflib", |
| 767 | "distutils", |
| 768 | "doctest", |
| 769 | "email", |
| 770 | "fcntl", |
| 771 | "html", |
| 772 | "idle", |
| 773 | "image", |
| 774 | "io", |
| 775 | "json", |
| 776 | "logging", |
| 777 | "mailbox", |
| 778 | "math", |
| 779 | "mime", |
| 780 | "mmap", |
| 781 | "multiprocessing", |
| 782 | "netclient", |
| 783 | "netserver", |
| 784 | "numbers", |
| 785 | "pickle", |
| 786 | "pkgutil", |
| 787 | "plistlib", |
| 788 | "pprint", |
| 789 | "profile", |
| 790 | "pydoc", |
| 791 | "resource", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 792 | "shell", |
| 793 | "smtpd", |
| 794 | "sqlite3", |
| 795 | "stringold", |
| 796 | "syslog", |
| 797 | "terminal", |
| 798 | "threading", |
| 799 | "tkinter", |
| 800 | "typing", |
| 801 | "unittest", |
| 802 | "unixadmin", |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 803 | "venv", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 804 | "xml", |
| 805 | "xmlrpc" |
| 806 | ], |
Brad Bishop | 08902b0 | 2019-08-20 09:16:51 -0400 | [diff] [blame] | 807 | "rrecommends": [ |
| 808 | "distutils-windows" |
| 809 | ], |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 810 | "summary": "All Python modules" |
| 811 | }, |
| 812 | "multiprocessing": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 813 | "summary": "Python multiprocessing support", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 814 | "rdepends": [ |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 815 | "core", |
| 816 | "io", |
| 817 | "pickle" |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 818 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 819 | "files": [ |
| 820 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/_multiprocessing.*.so", |
| 821 | "${libdir}/python${PYTHON_MAJMIN}/multiprocessing" |
| 822 | ], |
| 823 | "cached": [] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 824 | }, |
| 825 | "netclient": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 826 | "summary": "Python Internet Protocol clients", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 827 | "rdepends": [ |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 828 | "core", |
| 829 | "crypt", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 830 | "datetime", |
| 831 | "email", |
| 832 | "io", |
| 833 | "math", |
| 834 | "mime", |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 835 | "stringold" |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 836 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 837 | "files": [ |
| 838 | "${libdir}/python${PYTHON_MAJMIN}/base64.py", |
| 839 | "${libdir}/python${PYTHON_MAJMIN}/ftplib.py", |
| 840 | "${libdir}/python${PYTHON_MAJMIN}/hmac.py", |
| 841 | "${libdir}/python${PYTHON_MAJMIN}/http", |
| 842 | "${libdir}/python${PYTHON_MAJMIN}/http/__pycache__", |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 843 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/_uuid.*.so", |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 844 | "${libdir}/python${PYTHON_MAJMIN}/mimetypes.py", |
| 845 | "${libdir}/python${PYTHON_MAJMIN}/nntplib.py", |
| 846 | "${libdir}/python${PYTHON_MAJMIN}/poplib.py", |
| 847 | "${libdir}/python${PYTHON_MAJMIN}/smtplib.py", |
| 848 | "${libdir}/python${PYTHON_MAJMIN}/telnetlib.py", |
| 849 | "${libdir}/python${PYTHON_MAJMIN}/urllib", |
| 850 | "${libdir}/python${PYTHON_MAJMIN}/urllib/__pycache__", |
| 851 | "${libdir}/python${PYTHON_MAJMIN}/uuid.py" |
| 852 | ], |
| 853 | "cached": [ |
| 854 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/base64.*.pyc", |
| 855 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/ftplib.*.pyc", |
| 856 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/hmac.*.pyc", |
| 857 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/mimetypes.*.pyc", |
| 858 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/nntplib.*.pyc", |
| 859 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/poplib.*.pyc", |
| 860 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/smtplib.*.pyc", |
| 861 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/telnetlib.*.pyc", |
| 862 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/uuid.*.pyc" |
| 863 | ] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 864 | }, |
| 865 | "netserver": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 866 | "summary": "Python Internet Protocol servers", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 867 | "rdepends": [ |
| 868 | "compression", |
| 869 | "core", |
| 870 | "crypt", |
| 871 | "datetime", |
| 872 | "email", |
| 873 | "html", |
| 874 | "io", |
| 875 | "math", |
| 876 | "mime", |
| 877 | "netclient", |
| 878 | "shell", |
| 879 | "stringold", |
| 880 | "unixadmin" |
| 881 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 882 | "files": [ |
| 883 | "${libdir}/python${PYTHON_MAJMIN}/cgi.py", |
| 884 | "${libdir}/python${PYTHON_MAJMIN}/socketserver.py" |
| 885 | ], |
| 886 | "cached": [ |
| 887 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/cgi.*.pyc", |
| 888 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/socketserver.*.pyc" |
| 889 | ] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 890 | }, |
| 891 | "numbers": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 892 | "summary": "Python number APIs", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 893 | "rdepends": [ |
| 894 | "core" |
| 895 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 896 | "files": [ |
| 897 | "${libdir}/python${PYTHON_MAJMIN}/_pydecimal.py", |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 898 | "${libdir}/python${PYTHON_MAJMIN}/contextvars.py", |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 899 | "${libdir}/python${PYTHON_MAJMIN}/decimal.py", |
| 900 | "${libdir}/python${PYTHON_MAJMIN}/fractions.py", |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 901 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/_contextvars.*.so", |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 902 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/_decimal.*.so", |
| 903 | "${libdir}/python${PYTHON_MAJMIN}/numbers.py" |
| 904 | ], |
| 905 | "cached": [ |
| 906 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/_pydecimal.*.pyc", |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 907 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/contextvars.*.pyc", |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 908 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/decimal.*.pyc", |
| 909 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/fractions.*.pyc", |
| 910 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/numbers.*.pyc" |
| 911 | ] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 912 | }, |
| 913 | "pickle": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 914 | "summary": "Python serialisation/persistence support", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 915 | "rdepends": [ |
| 916 | "core" |
| 917 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 918 | "files": [ |
| 919 | "${libdir}/python${PYTHON_MAJMIN}/_compat_pickle.py", |
| 920 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/_pickle.*.so", |
| 921 | "${libdir}/python${PYTHON_MAJMIN}/pickle.py", |
| 922 | "${libdir}/python${PYTHON_MAJMIN}/pickletools.py", |
| 923 | "${libdir}/python${PYTHON_MAJMIN}/shelve.py" |
| 924 | ], |
| 925 | "cached": [ |
| 926 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/_compat_pickle.*.pyc", |
| 927 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/pickle.*.pyc", |
| 928 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/pickletools.*.pyc", |
| 929 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/shelve.*.pyc" |
| 930 | ] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 931 | }, |
| 932 | "pkgutil": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 933 | "summary": "Python package extension utility support", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 934 | "rdepends": [ |
| 935 | "core" |
| 936 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 937 | "files": [ |
| 938 | "${libdir}/python${PYTHON_MAJMIN}/pkgutil.py" |
| 939 | ], |
| 940 | "cached": [ |
| 941 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/pkgutil.*.pyc" |
| 942 | ] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 943 | }, |
| 944 | "plistlib": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 945 | "summary": "Generate and parse Mac OS X .plist files", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 946 | "rdepends": [ |
| 947 | "core", |
| 948 | "datetime", |
| 949 | "xml" |
| 950 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 951 | "files": [ |
| 952 | "${libdir}/python${PYTHON_MAJMIN}/plistlib.py" |
| 953 | ], |
| 954 | "cached": [ |
| 955 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/plistlib.*.pyc" |
| 956 | ] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 957 | }, |
| 958 | "pprint": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 959 | "summary": "Python pretty-print support", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 960 | "rdepends": [ |
| 961 | "core" |
| 962 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 963 | "files": [ |
| 964 | "${libdir}/python${PYTHON_MAJMIN}/pprint.py" |
| 965 | ], |
| 966 | "cached": [ |
| 967 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/pprint.*.pyc" |
| 968 | ] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 969 | }, |
| 970 | "profile": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 971 | "summary": "Python basic performance profiling support", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 972 | "rdepends": [ |
| 973 | "core" |
| 974 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 975 | "files": [ |
| 976 | "${libdir}/python${PYTHON_MAJMIN}/cProfile.py", |
| 977 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/_lsprof.*.so", |
| 978 | "${libdir}/python${PYTHON_MAJMIN}/profile.py", |
| 979 | "${libdir}/python${PYTHON_MAJMIN}/pstats.py" |
| 980 | ], |
| 981 | "cached": [ |
| 982 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/cProfile.*.pyc", |
| 983 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/profile.*.pyc", |
| 984 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/pstats.*.pyc" |
| 985 | ] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 986 | }, |
| 987 | "pydoc": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 988 | "summary": "Python interactive help support", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 989 | "rdepends": [ |
| 990 | "core", |
| 991 | "netclient", |
| 992 | "pkgutil" |
| 993 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 994 | "files": [ |
| 995 | "${bindir}/pydoc*", |
| 996 | "${libdir}/python${PYTHON_MAJMIN}/pydoc.py", |
| 997 | "${libdir}/python${PYTHON_MAJMIN}/pydoc_data" |
| 998 | ], |
| 999 | "cached": [ |
| 1000 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/pydoc.*.pyc" |
| 1001 | ] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 1002 | }, |
| 1003 | "resource": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1004 | "summary": "Python resource control interface", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 1005 | "rdepends": [ |
| 1006 | "core" |
| 1007 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1008 | "files": [ |
| 1009 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/resource.*.so" |
| 1010 | ], |
| 1011 | "cached": [] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 1012 | }, |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 1013 | "shell": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1014 | "summary": "Python shell-like functionality", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 1015 | "rdepends": [ |
| 1016 | "compression", |
| 1017 | "core", |
| 1018 | "stringold", |
| 1019 | "unixadmin" |
| 1020 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1021 | "files": [ |
| 1022 | "${libdir}/python${PYTHON_MAJMIN}/cmd.py", |
| 1023 | "${libdir}/python${PYTHON_MAJMIN}/fnmatch.py", |
| 1024 | "${libdir}/python${PYTHON_MAJMIN}/glob.py", |
| 1025 | "${libdir}/python${PYTHON_MAJMIN}/shlex.py", |
| 1026 | "${libdir}/python${PYTHON_MAJMIN}/shutil.py" |
| 1027 | ], |
| 1028 | "cached": [ |
| 1029 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/cmd.*.pyc", |
| 1030 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/fnmatch.*.pyc", |
| 1031 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/glob.*.pyc", |
| 1032 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/shlex.*.pyc", |
| 1033 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/shutil.*.pyc" |
| 1034 | ] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 1035 | }, |
| 1036 | "smtpd": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1037 | "summary": "Python Simple Mail Transport Daemon", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 1038 | "rdepends": [ |
| 1039 | "core", |
| 1040 | "crypt", |
| 1041 | "datetime", |
| 1042 | "email", |
| 1043 | "io", |
| 1044 | "math", |
| 1045 | "mime", |
| 1046 | "netclient", |
| 1047 | "stringold" |
| 1048 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1049 | "files": [ |
| 1050 | "${bindir}/smtpd.py", |
| 1051 | "${libdir}/python${PYTHON_MAJMIN}/asynchat.py", |
| 1052 | "${libdir}/python${PYTHON_MAJMIN}/asyncore.py", |
| 1053 | "${libdir}/python${PYTHON_MAJMIN}/smtpd.py" |
| 1054 | ], |
| 1055 | "cached": [ |
| 1056 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/asynchat.*.pyc", |
| 1057 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/asyncore.*.pyc", |
| 1058 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/smtpd.*.pyc" |
| 1059 | ] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 1060 | }, |
| 1061 | "sqlite3": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1062 | "summary": "Python Sqlite3 database support", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 1063 | "rdepends": [ |
| 1064 | "core", |
| 1065 | "datetime" |
| 1066 | ], |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 1067 | "files": [ |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1068 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/_sqlite3.*.so", |
| 1069 | "${libdir}/python${PYTHON_MAJMIN}/sqlite3" |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 1070 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1071 | "cached": [] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 1072 | }, |
| 1073 | "stringold": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1074 | "summary": "Python string APIs [deprecated]", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 1075 | "rdepends": [ |
| 1076 | "core" |
| 1077 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1078 | "files": [ |
| 1079 | "${libdir}/python${PYTHON_MAJMIN}/string.py" |
| 1080 | ], |
| 1081 | "cached": [ |
| 1082 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/string.*.pyc" |
| 1083 | ] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 1084 | }, |
| 1085 | "syslog": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1086 | "summary": "Python syslog interface", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 1087 | "rdepends": [ |
| 1088 | "core" |
| 1089 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1090 | "files": [ |
| 1091 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/syslog.*.so" |
| 1092 | ], |
| 1093 | "cached": [] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 1094 | }, |
| 1095 | "terminal": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1096 | "summary": "Python terminal controlling support", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 1097 | "rdepends": [ |
| 1098 | "core", |
| 1099 | "io" |
| 1100 | ], |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 1101 | "files": [ |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1102 | "${libdir}/python${PYTHON_MAJMIN}/pty.py", |
| 1103 | "${libdir}/python${PYTHON_MAJMIN}/tty.py" |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 1104 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1105 | "cached": [ |
| 1106 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/pty.*.pyc", |
| 1107 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/tty.*.pyc" |
| 1108 | ] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 1109 | }, |
| 1110 | "threading": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1111 | "summary": "Python threading & synchronization support", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 1112 | "rdepends": [ |
| 1113 | "core" |
| 1114 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1115 | "files": [ |
| 1116 | "${libdir}/python${PYTHON_MAJMIN}/_dummy_thread.py", |
| 1117 | "${libdir}/python${PYTHON_MAJMIN}/_threading_local.py", |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 1118 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/_queue.*.so", |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1119 | "${libdir}/python${PYTHON_MAJMIN}/queue.py" |
| 1120 | ], |
| 1121 | "cached": [ |
| 1122 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/_dummy_thread.*.pyc", |
| 1123 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/_threading_local.*.pyc", |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1124 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/queue.*.pyc" |
| 1125 | ] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 1126 | }, |
| 1127 | "tkinter": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1128 | "summary": "Python Tcl/Tk bindings", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 1129 | "rdepends": [ |
| 1130 | "core" |
| 1131 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1132 | "files": [ |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 1133 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/_tkinter.*.so", |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1134 | "${libdir}/python${PYTHON_MAJMIN}/tkinter" |
| 1135 | ], |
| 1136 | "cached": [] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 1137 | }, |
| 1138 | "typing": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1139 | "summary": "Python typing support", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 1140 | "rdepends": [ |
| 1141 | "core" |
| 1142 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1143 | "files": [ |
| 1144 | "${libdir}/python${PYTHON_MAJMIN}/typing.py" |
| 1145 | ], |
| 1146 | "cached": [ |
| 1147 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/typing.*.pyc" |
| 1148 | ] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 1149 | }, |
| 1150 | "unittest": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1151 | "summary": "Python unit testing framework", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 1152 | "rdepends": [ |
| 1153 | "core", |
| 1154 | "difflib", |
| 1155 | "logging", |
| 1156 | "pprint", |
| 1157 | "shell", |
| 1158 | "stringold" |
| 1159 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1160 | "files": [ |
| 1161 | "${libdir}/python${PYTHON_MAJMIN}/unittest", |
| 1162 | "${libdir}/python${PYTHON_MAJMIN}/unittest/", |
| 1163 | "${libdir}/python${PYTHON_MAJMIN}/unittest/__pycache__" |
| 1164 | ], |
| 1165 | "cached": [] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 1166 | }, |
| 1167 | "unixadmin": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1168 | "summary": "Python Unix administration support", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 1169 | "rdepends": [ |
| 1170 | "core", |
| 1171 | "io" |
| 1172 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1173 | "files": [ |
| 1174 | "${libdir}/python${PYTHON_MAJMIN}/getpass.py", |
| 1175 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/grp.*.so", |
| 1176 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/nis.*.so" |
| 1177 | ], |
| 1178 | "cached": [ |
| 1179 | "${libdir}/python${PYTHON_MAJMIN}/__pycache__/getpass.*.pyc" |
| 1180 | ] |
| 1181 | }, |
| 1182 | "venv": { |
| 1183 | "summary": "Provides support for creating lightweight virtual environments with their own site directories, optionally isolated from system site directories.", |
| 1184 | "rdepends": [ |
| 1185 | "compression", |
| 1186 | "core", |
| 1187 | "logging", |
| 1188 | "shell", |
| 1189 | "stringold", |
| 1190 | "unixadmin" |
| 1191 | ], |
| 1192 | "files": [ |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 1193 | "${bindir}/pyvenv*", |
| 1194 | "${libdir}/python${PYTHON_MAJMIN}/venv" |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1195 | ], |
| 1196 | "cached": [] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 1197 | }, |
| 1198 | "xml": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1199 | "summary": "Python basic XML support", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 1200 | "rdepends": [ |
| 1201 | "core" |
| 1202 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1203 | "files": [ |
| 1204 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/_elementtree.*.so", |
| 1205 | "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/pyexpat.*.so", |
| 1206 | "${libdir}/python${PYTHON_MAJMIN}/xml" |
| 1207 | ], |
| 1208 | "cached": [] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 1209 | }, |
| 1210 | "xmlrpc": { |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1211 | "summary": "Python XML-RPC support", |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 1212 | "rdepends": [ |
| 1213 | "core", |
| 1214 | "xml" |
| 1215 | ], |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1216 | "files": [ |
| 1217 | "${libdir}/python${PYTHON_MAJMIN}/xmlrpc", |
| 1218 | "${libdir}/python${PYTHON_MAJMIN}/xmlrpc/__pycache__" |
| 1219 | ], |
| 1220 | "cached": [] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 1221 | } |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1222 | } |