blob: 1e7004e05eab1994485f2ddbca7a5bdcc593faae [file] [log] [blame]
Brad Bishop316dfdd2018-06-25 12:45:53 -04001{
Andrew Geisslerff545b22018-09-19 09:22:29 -07002 "tests": {
3 "summary": "Python test suite",
4 "rdepends": [
5 "core",
6 "modules"
7 ],
8 "files": [
9 "${libdir}/python2.7/*/test",
10 "${libdir}/python2.7/*/tests",
11 "${libdir}/python2.7/idlelib/idle_test/",
12 "${libdir}/python2.7/test"
13 ],
14 "cached": []
15 },
Brad Bishop316dfdd2018-06-25 12:45:53 -040016 "2to3": {
Andrew Geissler730fed82018-09-19 09:22:27 -070017 "summary": "Python automated Python 2 to 3 code translator",
Brad Bishop316dfdd2018-06-25 12:45:53 -040018 "rdepends": [
19 "core"
Andrew Geissler730fed82018-09-19 09:22:27 -070020 ],
21 "files": [
22 "${bindir}/2to3",
23 "${libdir}/python2.7/lib2to3"
24 ]
25 },
Brad Bishop316dfdd2018-06-25 12:45:53 -040026 "argparse": {
Andrew Geissler730fed82018-09-19 09:22:27 -070027 "summary": "Python command line argument parser",
28 "rdepends": [
29 "codecs",
30 "core",
31 "lang",
32 "textutils"
33 ],
Brad Bishop316dfdd2018-06-25 12:45:53 -040034 "files": [
35 "${libdir}/python2.7/argparse.py"
Andrew Geissler730fed82018-09-19 09:22:27 -070036 ]
37 },
Brad Bishop316dfdd2018-06-25 12:45:53 -040038 "audio": {
Andrew Geissler730fed82018-09-19 09:22:27 -070039 "summary": "Python Audio Handling",
Brad Bishop316dfdd2018-06-25 12:45:53 -040040 "rdepends": [
Andrew Geissler730fed82018-09-19 09:22:27 -070041 "core",
42 "crypt",
43 "fcntl",
44 "io",
Brad Bishop316dfdd2018-06-25 12:45:53 -040045 "math"
Andrew Geissler730fed82018-09-19 09:22:27 -070046 ],
47 "files": [
48 "${libdir}/python2.7/audiodev.py",
49 "${libdir}/python2.7/chunk.py",
50 "${libdir}/python2.7/lib-dynload/audioop.so",
51 "${libdir}/python2.7/lib-dynload/ossaudiodev.so",
52 "${libdir}/python2.7/sndhdr.py",
53 "${libdir}/python2.7/sunau.py",
54 "${libdir}/python2.7/sunaudio.py",
55 "${libdir}/python2.7/toaiff.py",
56 "${libdir}/python2.7/wave.py"
57 ]
58 },
Brad Bishop316dfdd2018-06-25 12:45:53 -040059 "bsddb": {
Andrew Geissler730fed82018-09-19 09:22:27 -070060 "summary": "Python bindings for the Berkeley Database",
61 "rdepends": [
62 "core"
63 ],
Brad Bishop316dfdd2018-06-25 12:45:53 -040064 "files": [
Andrew Geissler730fed82018-09-19 09:22:27 -070065 "${libdir}/python2.7/bsddb",
Brad Bishop316dfdd2018-06-25 12:45:53 -040066 "${libdir}/python2.7/lib-dynload/_bsddb.so"
Andrew Geissler730fed82018-09-19 09:22:27 -070067 ]
68 },
Brad Bishop316dfdd2018-06-25 12:45:53 -040069 "codecs": {
Andrew Geissler730fed82018-09-19 09:22:27 -070070 "summary": "Python codec",
Brad Bishop316dfdd2018-06-25 12:45:53 -040071 "rdepends": [
Andrew Geissler730fed82018-09-19 09:22:27 -070072 "core",
73 "io",
Brad Bishop316dfdd2018-06-25 12:45:53 -040074 "lang"
Andrew Geissler730fed82018-09-19 09:22:27 -070075 ],
Brad Bishop316dfdd2018-06-25 12:45:53 -040076 "files": [
Andrew Geissler730fed82018-09-19 09:22:27 -070077 "${libdir}/python2.7/gettext.py",
78 "${libdir}/python2.7/lib-dynload/_codecs_cn.so",
79 "${libdir}/python2.7/lib-dynload/_codecs_hk.so",
80 "${libdir}/python2.7/lib-dynload/_codecs_iso2022.so",
81 "${libdir}/python2.7/lib-dynload/_codecs_jp.so",
82 "${libdir}/python2.7/lib-dynload/_codecs_kr.so",
83 "${libdir}/python2.7/lib-dynload/_codecs_tw.so",
84 "${libdir}/python2.7/lib-dynload/_multibytecodec.so",
85 "${libdir}/python2.7/lib-dynload/unicodedata.so",
86 "${libdir}/python2.7/locale.py",
87 "${libdir}/python2.7/stringprep.py",
88 "${libdir}/python2.7/xdrlib.py"
89 ]
90 },
91 "compile": {
92 "summary": "Python bytecode compilation support",
Brad Bishop316dfdd2018-06-25 12:45:53 -040093 "rdepends": [
94 "core"
Andrew Geissler730fed82018-09-19 09:22:27 -070095 ],
96 "files": [
97 "${libdir}/python2.7/compileall.py",
98 "${libdir}/python2.7/py_compile.py"
99 ]
100 },
Brad Bishop316dfdd2018-06-25 12:45:53 -0400101 "compiler": {
Andrew Geissler730fed82018-09-19 09:22:27 -0700102 "summary": "Python compiler support",
103 "rdepends": [
104 "core",
105 "io",
106 "lang"
107 ],
Brad Bishop316dfdd2018-06-25 12:45:53 -0400108 "files": [
109 "${libdir}/python2.7/compiler"
Andrew Geissler730fed82018-09-19 09:22:27 -0700110 ]
111 },
Brad Bishop316dfdd2018-06-25 12:45:53 -0400112 "compression": {
Andrew Geissler730fed82018-09-19 09:22:27 -0700113 "summary": "Python high-level compression support",
Brad Bishop316dfdd2018-06-25 12:45:53 -0400114 "rdepends": [
Andrew Geissler730fed82018-09-19 09:22:27 -0700115 "core",
116 "io",
117 "shell",
118 "unixadmin",
Brad Bishop316dfdd2018-06-25 12:45:53 -0400119 "zlib"
Andrew Geissler730fed82018-09-19 09:22:27 -0700120 ],
121 "files": [
122 "${libdir}/python2.7/gzip.py",
123 "${libdir}/python2.7/lib-dynload/bz2.so",
124 "${libdir}/python2.7/tarfile.py",
125 "${libdir}/python2.7/zipfile.py"
126 ]
127 },
Brad Bishop316dfdd2018-06-25 12:45:53 -0400128 "contextlib": {
Andrew Geissler730fed82018-09-19 09:22:27 -0700129 "summary": "Python utilities for with-statementcontexts.",
130 "rdepends": [
131 "core",
132 "lang"
133 ],
Brad Bishop316dfdd2018-06-25 12:45:53 -0400134 "files": [
135 "${libdir}/python2.7/contextlib.py"
Andrew Geissler730fed82018-09-19 09:22:27 -0700136 ]
137 },
Brad Bishop316dfdd2018-06-25 12:45:53 -0400138 "core": {
Andrew Geissler730fed82018-09-19 09:22:27 -0700139 "summary": "Python interpreter and core modules",
140 "rdepends": [],
Brad Bishop316dfdd2018-06-25 12:45:53 -0400141 "files": [
Andrew Geissler730fed82018-09-19 09:22:27 -0700142 "${bindir}/python*",
143 "${includedir}/python2.7/pyconfig*.h",
144 "${libdir}/python2.7/ConfigParser.py",
145 "${libdir}/python2.7/UserDict.py",
146 "${libdir}/python2.7/UserList.py",
147 "${libdir}/python2.7/UserString.py",
148 "${libdir}/python2.7/__future__.py",
149 "${libdir}/python2.7/_abcoll.py",
150 "${libdir}/python2.7/_sysconfigdata.py",
151 "${libdir}/python2.7/_weakrefset.py",
152 "${libdir}/python2.7/abc.py",
153 "${libdir}/python2.7/ast.py",
154 "${libdir}/python2.7/atexit.py",
155 "${libdir}/python2.7/codecs.py",
156 "${libdir}/python2.7/collections.py",
157 "${libdir}/python2.7/copy.py",
158 "${libdir}/python2.7/copy_reg.py",
159 "${libdir}/python2.7/encodings",
160 "${libdir}/python2.7/encodings/aliases.py",
161 "${libdir}/python2.7/encodings/utf_8.py",
162 "${libdir}/python2.7/genericpath.py",
163 "${libdir}/python2.7/getopt.py",
164 "${libdir}/python2.7/heapq.py",
165 "${libdir}/python2.7/importlib",
166 "${libdir}/python2.7/keyword.py",
167 "${libdir}/python2.7/lib-dynload/_collections.so",
168 "${libdir}/python2.7/lib-dynload/_heapq.so",
169 "${libdir}/python2.7/lib-dynload/_locale.so",
170 "${libdir}/python2.7/lib-dynload/_struct.so",
171 "${libdir}/python2.7/lib-dynload/binascii.so",
172 "${libdir}/python2.7/lib-dynload/itertools.so",
173 "${libdir}/python2.7/lib-dynload/operator.so",
174 "${libdir}/python2.7/lib-dynload/readline.so",
175 "${libdir}/python2.7/lib-dynload/strop.so",
176 "${libdir}/python2.7/lib-dynload/time.so",
177 "${libdir}/python2.7/lib-dynload/xreadlines.so",
178 "${libdir}/python2.7/linecache.py",
179 "${libdir}/python2.7/new.py",
180 "${libdir}/python2.7/os.py",
181 "${libdir}/python2.7/platform.py",
182 "${libdir}/python2.7/posixpath.py",
183 "${libdir}/python2.7/re.py",
184 "${libdir}/python2.7/rlcompleter.py",
185 "${libdir}/python2.7/site.py",
186 "${libdir}/python2.7/sitecustomize.py",
187 "${libdir}/python2.7/sre_compile.py",
188 "${libdir}/python2.7/sre_constants.py",
189 "${libdir}/python2.7/sre_parse.py",
190 "${libdir}/python2.7/stat.py",
191 "${libdir}/python2.7/string.py",
192 "${libdir}/python2.7/struct.py",
193 "${libdir}/python2.7/sysconfig.py",
194 "${libdir}/python2.7/traceback.py",
195 "${libdir}/python2.7/types.py",
196 "${libdir}/python2.7/warnings.py",
Brad Bishop316dfdd2018-06-25 12:45:53 -0400197 "${libdir}/python2.7/weakref.py"
Andrew Geissler730fed82018-09-19 09:22:27 -0700198 ]
199 },
Brad Bishop316dfdd2018-06-25 12:45:53 -0400200 "crypt": {
Andrew Geissler730fed82018-09-19 09:22:27 -0700201 "summary": "Python basic cryptographic and hashing support",
202 "rdepends": [
203 "core"
204 ],
Brad Bishop316dfdd2018-06-25 12:45:53 -0400205 "files": [
Andrew Geissler730fed82018-09-19 09:22:27 -0700206 "${libdir}/python2.7/hashlib.py",
207 "${libdir}/python2.7/lib-dynload/_hashlib.so",
208 "${libdir}/python2.7/lib-dynload/crypt.so",
209 "${libdir}/python2.7/md5.py",
Brad Bishop316dfdd2018-06-25 12:45:53 -0400210 "${libdir}/python2.7/sha.py"
Andrew Geissler730fed82018-09-19 09:22:27 -0700211 ]
212 },
Brad Bishop316dfdd2018-06-25 12:45:53 -0400213 "ctypes": {
Andrew Geissler730fed82018-09-19 09:22:27 -0700214 "summary": "Python C types support",
215 "rdepends": [
216 "core"
217 ],
Brad Bishop316dfdd2018-06-25 12:45:53 -0400218 "files": [
Andrew Geissler730fed82018-09-19 09:22:27 -0700219 "${libdir}/python2.7/ctypes",
220 "${libdir}/python2.7/lib-dynload/_ctypes.so",
Brad Bishop316dfdd2018-06-25 12:45:53 -0400221 "${libdir}/python2.7/lib-dynload/_ctypes_test.so"
Andrew Geissler730fed82018-09-19 09:22:27 -0700222 ]
223 },
Brad Bishop316dfdd2018-06-25 12:45:53 -0400224 "curses": {
Andrew Geissler730fed82018-09-19 09:22:27 -0700225 "summary": "Python curses support",
Brad Bishop316dfdd2018-06-25 12:45:53 -0400226 "rdepends": [
227 "core"
Andrew Geissler730fed82018-09-19 09:22:27 -0700228 ],
229 "files": [
230 "${libdir}/python2.7/curses",
231 "${libdir}/python2.7/lib-dynload/_curses.so",
232 "${libdir}/python2.7/lib-dynload/_curses_panel.so"
233 ]
234 },
Brad Bishop316dfdd2018-06-25 12:45:53 -0400235 "datetime": {
Andrew Geissler730fed82018-09-19 09:22:27 -0700236 "summary": "Python calendar and time support",
Brad Bishop316dfdd2018-06-25 12:45:53 -0400237 "rdepends": [
Andrew Geissler730fed82018-09-19 09:22:27 -0700238 "codecs",
239 "core",
Brad Bishop316dfdd2018-06-25 12:45:53 -0400240 "lang"
Andrew Geissler730fed82018-09-19 09:22:27 -0700241 ],
242 "files": [
243 "${libdir}/python2.7/_strptime.py",
244 "${libdir}/python2.7/calendar.py",
245 "${libdir}/python2.7/lib-dynload/datetime.so"
246 ]
247 },
Brad Bishop316dfdd2018-06-25 12:45:53 -0400248 "db": {
Andrew Geissler730fed82018-09-19 09:22:27 -0700249 "summary": "Python file-based database support",
Brad Bishop316dfdd2018-06-25 12:45:53 -0400250 "rdepends": [
Andrew Geissler730fed82018-09-19 09:22:27 -0700251 "bsddb",
252 "core",
Brad Bishop316dfdd2018-06-25 12:45:53 -0400253 "gdbm"
Andrew Geissler730fed82018-09-19 09:22:27 -0700254 ],
Brad Bishop316dfdd2018-06-25 12:45:53 -0400255 "files": [
Andrew Geissler730fed82018-09-19 09:22:27 -0700256 "${libdir}/python2.7/anydbm.py",
257 "${libdir}/python2.7/dbhash.py",
258 "${libdir}/python2.7/dumbdbm.py",
259 "${libdir}/python2.7/lib-dynload/dbm.so",
260 "${libdir}/python2.7/whichdb.py"
261 ]
262 },
263 "debugger": {
264 "summary": "Python debugger",
Brad Bishop316dfdd2018-06-25 12:45:53 -0400265 "rdepends": [
Andrew Geissler730fed82018-09-19 09:22:27 -0700266 "core",
267 "io",
268 "lang",
269 "pprint",
Brad Bishop316dfdd2018-06-25 12:45:53 -0400270 "shell"
Andrew Geissler730fed82018-09-19 09:22:27 -0700271 ],
272 "files": [
273 "${libdir}/python2.7/bdb.py",
274 "${libdir}/python2.7/pdb.py"
275 ]
276 },
Brad Bishop316dfdd2018-06-25 12:45:53 -0400277 "dev": {
278 "files": [
Andrew Geissler730fed82018-09-19 09:22:27 -0700279 "${base_libdir}/*.a",
280 "${base_libdir}/*.o",
281 "${datadir}/aclocal",
282 "${datadir}/pkgconfig",
283 "${includedir}",
284 "${libdir}/*.a",
285 "${libdir}/*.la",
286 "${libdir}/*.o",
287 "${libdir}/lib*${SOLIBSDEV}",
288 "${libdir}/pkgconfig",
Brad Bishop316dfdd2018-06-25 12:45:53 -0400289 "${libdir}/python2.7/config/Makefile"
Andrew Geissler730fed82018-09-19 09:22:27 -0700290 ],
Brad Bishop316dfdd2018-06-25 12:45:53 -0400291 "rdepends": [
292 "core"
Andrew Geissler730fed82018-09-19 09:22:27 -0700293 ],
Brad Bishop316dfdd2018-06-25 12:45:53 -0400294 "summary": "Python development package"
Andrew Geissler730fed82018-09-19 09:22:27 -0700295 },
Brad Bishop316dfdd2018-06-25 12:45:53 -0400296 "difflib": {
Andrew Geissler730fed82018-09-19 09:22:27 -0700297 "summary": "Python helpers for computing deltas between objects",
298 "rdepends": [
299 "core",
300 "lang"
301 ],
Brad Bishop316dfdd2018-06-25 12:45:53 -0400302 "files": [
303 "${libdir}/python2.7/difflib.py"
Andrew Geissler730fed82018-09-19 09:22:27 -0700304 ]
305 },
Brad Bishop316dfdd2018-06-25 12:45:53 -0400306 "distutils-staticdev": {
307 "files": [
308 "${libdir}/python2.7/config/lib*.a"
Andrew Geissler730fed82018-09-19 09:22:27 -0700309 ],
Brad Bishop316dfdd2018-06-25 12:45:53 -0400310 "rdepends": [
311 "distutils"
Andrew Geissler730fed82018-09-19 09:22:27 -0700312 ],
Brad Bishop316dfdd2018-06-25 12:45:53 -0400313 "summary": "Python distribution utilities (static libraries)"
Andrew Geissler730fed82018-09-19 09:22:27 -0700314 },
315 "distutils": {
316 "summary": "Python Distribution Utilities",
317 "rdepends": [
318 "core"
319 ],
320 "files": [
321 "${libdir}/python2.7/config",
322 "${libdir}/python2.7/distutils"
323 ]
324 },
Brad Bishop316dfdd2018-06-25 12:45:53 -0400325 "doctest": {
Andrew Geissler730fed82018-09-19 09:22:27 -0700326 "summary": "Python framework for running examples in docstrings",
327 "rdepends": [
328 "core",
329 "crypt",
330 "debugger",
331 "difflib",
332 "fcntl",
333 "io",
334 "lang",
335 "math",
336 "pprint",
337 "shell",
338 "unittest"
339 ],
Brad Bishop316dfdd2018-06-25 12:45:53 -0400340 "files": [
341 "${libdir}/python2.7/doctest.py"
Andrew Geissler730fed82018-09-19 09:22:27 -0700342 ]
343 },
Brad Bishop316dfdd2018-06-25 12:45:53 -0400344 "email": {
Andrew Geissler730fed82018-09-19 09:22:27 -0700345 "summary": "Python email support",
Brad Bishop316dfdd2018-06-25 12:45:53 -0400346 "rdepends": [
Andrew Geissler730fed82018-09-19 09:22:27 -0700347 "contextlib",
348 "core",
349 "crypt",
350 "fcntl",
351 "io",
352 "lang",
353 "math",
354 "netclient",
355 "pickle",
356 "subprocess",
357 "textutils",
358 "threading"
359 ],
360 "files": [
361 "${libdir}/python2.7/email",
362 "${libdir}/python2.7/imaplib.py"
363 ]
364 },
Brad Bishop316dfdd2018-06-25 12:45:53 -0400365 "fcntl": {
Andrew Geissler730fed82018-09-19 09:22:27 -0700366 "summary": "Python's fcntl interface",
367 "rdepends": [
368 "core"
369 ],
Brad Bishop316dfdd2018-06-25 12:45:53 -0400370 "files": [
371 "${libdir}/python2.7/lib-dynload/fcntl.so"
Andrew Geissler730fed82018-09-19 09:22:27 -0700372 ]
373 },
374 "gdbm": {
375 "summary": "Python GNU database support",
Brad Bishop316dfdd2018-06-25 12:45:53 -0400376 "rdepends": [
377 "core"
Andrew Geissler730fed82018-09-19 09:22:27 -0700378 ],
Brad Bishop316dfdd2018-06-25 12:45:53 -0400379 "files": [
380 "${libdir}/python2.7/lib-dynload/gdbm.so"
Andrew Geissler730fed82018-09-19 09:22:27 -0700381 ]
382 },
Brad Bishop316dfdd2018-06-25 12:45:53 -0400383 "hotshot": {
Andrew Geissler730fed82018-09-19 09:22:27 -0700384 "summary": "Python hotshot performance profiler",
385 "rdepends": [
386 "core"
387 ],
Brad Bishop316dfdd2018-06-25 12:45:53 -0400388 "files": [
Andrew Geissler730fed82018-09-19 09:22:27 -0700389 "${libdir}/python2.7/hotshot",
Brad Bishop316dfdd2018-06-25 12:45:53 -0400390 "${libdir}/python2.7/lib-dynload/_hotshot.so"
Andrew Geissler730fed82018-09-19 09:22:27 -0700391 ]
392 },
Brad Bishop316dfdd2018-06-25 12:45:53 -0400393 "html": {
Andrew Geissler730fed82018-09-19 09:22:27 -0700394 "summary": "Python HTML processing support",
395 "rdepends": [
396 "core"
397 ],
Brad Bishop316dfdd2018-06-25 12:45:53 -0400398 "files": [
Andrew Geissler730fed82018-09-19 09:22:27 -0700399 "${libdir}/python2.7/HTMLParser.py",
400 "${libdir}/python2.7/formatter.py",
401 "${libdir}/python2.7/htmlentitydefs.py",
402 "${libdir}/python2.7/htmllib.py",
403 "${libdir}/python2.7/markupbase.py",
Brad Bishop316dfdd2018-06-25 12:45:53 -0400404 "${libdir}/python2.7/sgmllib.py"
Andrew Geissler730fed82018-09-19 09:22:27 -0700405 ]
406 },
Brad Bishop316dfdd2018-06-25 12:45:53 -0400407 "idle": {
Andrew Geissler730fed82018-09-19 09:22:27 -0700408 "summary": "Python Integrated Development Environment",
409 "rdepends": [
410 "core"
411 ],
Brad Bishop316dfdd2018-06-25 12:45:53 -0400412 "files": [
Andrew Geissler730fed82018-09-19 09:22:27 -0700413 "${bindir}/idle",
Brad Bishop316dfdd2018-06-25 12:45:53 -0400414 "${libdir}/python2.7/idlelib"
Andrew Geissler730fed82018-09-19 09:22:27 -0700415 ]
416 },
Brad Bishop316dfdd2018-06-25 12:45:53 -0400417 "image": {
Andrew Geissler730fed82018-09-19 09:22:27 -0700418 "summary": "Python graphical image handling",
419 "rdepends": [
420 "core"
421 ],
Brad Bishop316dfdd2018-06-25 12:45:53 -0400422 "files": [
Andrew Geissler730fed82018-09-19 09:22:27 -0700423 "${libdir}/python2.7/colorsys.py",
Brad Bishop316dfdd2018-06-25 12:45:53 -0400424 "${libdir}/python2.7/imghdr.py"
Andrew Geissler730fed82018-09-19 09:22:27 -0700425 ]
426 },
Brad Bishop316dfdd2018-06-25 12:45:53 -0400427 "io": {
Andrew Geissler730fed82018-09-19 09:22:27 -0700428 "summary": "Python low-level I/O",
Brad Bishop316dfdd2018-06-25 12:45:53 -0400429 "rdepends": [
Andrew Geissler730fed82018-09-19 09:22:27 -0700430 "contextlib",
431 "core",
432 "crypt",
433 "fcntl",
434 "lang",
435 "math",
436 "netclient",
Brad Bishop316dfdd2018-06-25 12:45:53 -0400437 "textutils"
Andrew Geissler730fed82018-09-19 09:22:27 -0700438 ],
439 "files": [
440 "${libdir}/python2.7/StringIO.py",
441 "${libdir}/python2.7/_pyio.py",
442 "${libdir}/python2.7/io.py",
443 "${libdir}/python2.7/lib-dynload/_io.so",
444 "${libdir}/python2.7/lib-dynload/_socket.so",
445 "${libdir}/python2.7/lib-dynload/_ssl.so",
446 "${libdir}/python2.7/lib-dynload/cStringIO.so",
447 "${libdir}/python2.7/lib-dynload/select.so",
448 "${libdir}/python2.7/lib-dynload/termios.so",
449 "${libdir}/python2.7/pipes.py",
450 "${libdir}/python2.7/socket.py",
451 "${libdir}/python2.7/ssl.py",
452 "${libdir}/python2.7/tempfile.py"
453 ]
454 },
Brad Bishop316dfdd2018-06-25 12:45:53 -0400455 "json": {
Andrew Geissler730fed82018-09-19 09:22:27 -0700456 "summary": "Python JSON support",
457 "rdepends": [
458 "core"
459 ],
Brad Bishop316dfdd2018-06-25 12:45:53 -0400460 "files": [
Andrew Geissler730fed82018-09-19 09:22:27 -0700461 "${libdir}/python2.7/json",
Brad Bishop316dfdd2018-06-25 12:45:53 -0400462 "${libdir}/python2.7/lib-dynload/_json.so"
Andrew Geissler730fed82018-09-19 09:22:27 -0700463 ]
464 },
Brad Bishop316dfdd2018-06-25 12:45:53 -0400465 "lang": {
Andrew Geissler730fed82018-09-19 09:22:27 -0700466 "summary": "Python low-level language support",
Brad Bishop316dfdd2018-06-25 12:45:53 -0400467 "rdepends": [
468 "core"
Andrew Geissler730fed82018-09-19 09:22:27 -0700469 ],
470 "files": [
471 "${libdir}/python2.7/bisect.py",
472 "${libdir}/python2.7/code.py",
473 "${libdir}/python2.7/codeop.py",
474 "${libdir}/python2.7/dis.py",
475 "${libdir}/python2.7/functools.py",
476 "${libdir}/python2.7/inspect.py",
477 "${libdir}/python2.7/lib-dynload/_bisect.so",
478 "${libdir}/python2.7/lib-dynload/_functools.so",
479 "${libdir}/python2.7/lib-dynload/array.so",
480 "${libdir}/python2.7/lib-dynload/parser.so",
481 "${libdir}/python2.7/opcode.py",
482 "${libdir}/python2.7/repr.py",
483 "${libdir}/python2.7/symbol.py",
484 "${libdir}/python2.7/token.py",
485 "${libdir}/python2.7/tokenize.py"
486 ]
487 },
Brad Bishop316dfdd2018-06-25 12:45:53 -0400488 "logging": {
Andrew Geissler730fed82018-09-19 09:22:27 -0700489 "summary": "Python logging support",
490 "rdepends": [
491 "core",
492 "io",
493 "threading"
494 ],
Brad Bishop316dfdd2018-06-25 12:45:53 -0400495 "files": [
496 "${libdir}/python2.7/logging"
Andrew Geissler730fed82018-09-19 09:22:27 -0700497 ]
498 },
Brad Bishop316dfdd2018-06-25 12:45:53 -0400499 "mailbox": {
Andrew Geissler730fed82018-09-19 09:22:27 -0700500 "summary": "Python mailbox format support",
501 "rdepends": [
502 "codecs",
503 "contextlib",
504 "core",
505 "crypt",
506 "datetime",
507 "email",
508 "fcntl",
509 "io",
510 "lang",
511 "math",
512 "mime",
513 "netclient",
514 "textutils"
515 ],
Brad Bishop316dfdd2018-06-25 12:45:53 -0400516 "files": [
517 "${libdir}/python2.7/mailbox.py"
Andrew Geissler730fed82018-09-19 09:22:27 -0700518 ]
519 },
Brad Bishop316dfdd2018-06-25 12:45:53 -0400520 "math": {
Andrew Geissler730fed82018-09-19 09:22:27 -0700521 "summary": "Python math support",
Brad Bishop316dfdd2018-06-25 12:45:53 -0400522 "rdepends": [
Andrew Geissler730fed82018-09-19 09:22:27 -0700523 "core",
Brad Bishop316dfdd2018-06-25 12:45:53 -0400524 "crypt"
Andrew Geissler730fed82018-09-19 09:22:27 -0700525 ],
Brad Bishop316dfdd2018-06-25 12:45:53 -0400526 "files": [
Andrew Geissler730fed82018-09-19 09:22:27 -0700527 "${libdir}/python2.7/lib-dynload/_random.so",
528 "${libdir}/python2.7/lib-dynload/cmath.so",
529 "${libdir}/python2.7/lib-dynload/math.so",
530 "${libdir}/python2.7/random.py",
531 "${libdir}/python2.7/sets.py"
532 ]
533 },
534 "mime": {
535 "summary": "Python MIME handling APIs",
Brad Bishop316dfdd2018-06-25 12:45:53 -0400536 "rdepends": [
Andrew Geissler730fed82018-09-19 09:22:27 -0700537 "contextlib",
538 "core",
539 "crypt",
540 "fcntl",
541 "io",
542 "lang",
543 "math",
544 "netclient",
Brad Bishop316dfdd2018-06-25 12:45:53 -0400545 "textutils"
Andrew Geissler730fed82018-09-19 09:22:27 -0700546 ],
547 "files": [
548 "${libdir}/python2.7/MimeWriter.py",
549 "${libdir}/python2.7/mimetools.py",
550 "${libdir}/python2.7/mimetypes.py",
551 "${libdir}/python2.7/quopri.py",
552 "${libdir}/python2.7/rfc822.py",
553 "${libdir}/python2.7/uu.py"
554 ]
555 },
Brad Bishop316dfdd2018-06-25 12:45:53 -0400556 "mmap": {
Andrew Geissler730fed82018-09-19 09:22:27 -0700557 "summary": "Python memory-mapped file support",
558 "rdepends": [
559 "core"
560 ],
Brad Bishop316dfdd2018-06-25 12:45:53 -0400561 "files": [
562 "${libdir}/python2.7/lib-dynload/mmap.so"
Andrew Geissler730fed82018-09-19 09:22:27 -0700563 ]
564 },
565 "modules": {
566 "files": [],
567 "rdepends": [
568 "2to3",
569 "argparse",
570 "audio",
571 "bsddb",
572 "codecs",
573 "compile",
574 "compiler",
575 "compression",
576 "contextlib",
577 "core",
578 "crypt",
579 "ctypes",
580 "curses",
581 "datetime",
582 "db",
583 "debugger",
584 "difflib",
585 "distutils",
586 "doctest",
587 "email",
588 "fcntl",
589 "gdbm",
590 "hotshot",
591 "html",
592 "idle",
593 "image",
594 "io",
595 "json",
596 "lang",
597 "logging",
598 "mailbox",
599 "math",
600 "mime",
601 "mmap",
602 "multiprocessing",
603 "netclient",
604 "netserver",
605 "numbers",
606 "pickle",
607 "pkgutil",
608 "plistlib",
609 "pprint",
610 "profile",
611 "pydoc",
612 "re",
613 "resource",
614 "robotparser",
615 "runpy",
616 "shell",
617 "smtpd",
618 "sqlite3",
619 "sqlite3",
620 "stringold",
621 "subprocess",
622 "syslog",
623 "terminal",
624 "textutils",
625 "threading",
626 "tkinter",
627 "unittest",
628 "unixadmin",
629 "xml",
630 "xmlrpc",
631 "zlib"
632 ],
633 "summary": "All Python modules"
634 },
635 "multiprocessing": {
636 "summary": "Python multiprocessing support",
637 "rdepends": [
638 "core",
639 "fcntl",
640 "io",
641 "pickle",
642 "subprocess",
643 "threading"
644 ],
645 "files": [
646 "${libdir}/python2.7/lib-dynload/_multiprocessing.so",
647 "${libdir}/python2.7/multiprocessing"
648 ]
649 },
650 "netclient": {
651 "summary": "Python Internet Protocol clients",
652 "rdepends": [
653 "codecs",
654 "contextlib",
655 "core",
656 "crypt",
657 "ctypes",
658 "datetime",
659 "email",
660 "fcntl",
661 "io",
662 "lang",
663 "math",
664 "mime",
665 "pickle",
666 "subprocess",
667 "textutils",
668 "threading"
669 ],
670 "files": [
671 "${libdir}/python2.7/Cookie.py",
672 "${libdir}/python2.7/_LWPCookieJar.py",
673 "${libdir}/python2.7/_MozillaCookieJar.py",
674 "${libdir}/python2.7/base64.py",
675 "${libdir}/python2.7/cookielib.py",
676 "${libdir}/python2.7/ftplib.py",
677 "${libdir}/python2.7/hmac.py",
678 "${libdir}/python2.7/httplib.py",
679 "${libdir}/python2.7/nntplib.py",
680 "${libdir}/python2.7/poplib.py",
681 "${libdir}/python2.7/smtplib.py",
682 "${libdir}/python2.7/telnetlib.py",
683 "${libdir}/python2.7/urllib.py",
684 "${libdir}/python2.7/urllib2.py",
685 "${libdir}/python2.7/urlparse.py",
686 "${libdir}/python2.7/uuid.py"
687 ]
688 },
689 "netserver": {
690 "summary": "Python Internet Protocol servers",
691 "rdepends": [
692 "compression",
693 "contextlib",
694 "core",
695 "crypt",
696 "fcntl",
697 "io",
698 "lang",
699 "math",
700 "mime",
701 "netclient",
702 "shell",
703 "textutils",
704 "threading",
705 "unixadmin",
706 "zlib"
707 ],
708 "files": [
709 "${libdir}/python2.7/BaseHTTPServer.py",
710 "${libdir}/python2.7/CGIHTTPServer.py",
711 "${libdir}/python2.7/SimpleHTTPServer.py",
712 "${libdir}/python2.7/SocketServer.py",
713 "${libdir}/python2.7/cgi.py"
714 ]
715 },
716 "numbers": {
717 "summary": "Python number APIs",
718 "rdepends": [
719 "codecs",
720 "core",
721 "lang",
722 "math",
723 "threading"
724 ],
725 "files": [
726 "${libdir}/python2.7/decimal.py",
727 "${libdir}/python2.7/fractions.py",
728 "${libdir}/python2.7/numbers.py"
729 ]
730 },
731 "pickle": {
732 "summary": "Python serialisation/persistence support",
733 "rdepends": [
734 "core",
735 "io"
736 ],
737 "files": [
738 "${libdir}/python2.7/lib-dynload/cPickle.so",
739 "${libdir}/python2.7/pickle.py",
740 "${libdir}/python2.7/pickletools.py",
741 "${libdir}/python2.7/shelve.py"
742 ]
743 },
744 "pkgutil": {
745 "summary": "Python package extension utility support",
Brad Bishop316dfdd2018-06-25 12:45:53 -0400746 "rdepends": [
747 "core"
Andrew Geissler730fed82018-09-19 09:22:27 -0700748 ],
Brad Bishop316dfdd2018-06-25 12:45:53 -0400749 "files": [
750 "${libdir}/python2.7/pkgutil.py"
Andrew Geissler730fed82018-09-19 09:22:27 -0700751 ]
752 },
Brad Bishop316dfdd2018-06-25 12:45:53 -0400753 "plistlib": {
Andrew Geissler730fed82018-09-19 09:22:27 -0700754 "summary": "Generate and parse Mac OS X .plist files",
755 "rdepends": [
756 "core",
757 "datetime",
758 "io"
759 ],
Brad Bishop316dfdd2018-06-25 12:45:53 -0400760 "files": [
761 "${libdir}/python2.7/plistlib.py"
Andrew Geissler730fed82018-09-19 09:22:27 -0700762 ]
763 },
Brad Bishop316dfdd2018-06-25 12:45:53 -0400764 "pprint": {
Andrew Geissler730fed82018-09-19 09:22:27 -0700765 "summary": "Python pretty-print support",
766 "rdepends": [
767 "core",
768 "io"
769 ],
Brad Bishop316dfdd2018-06-25 12:45:53 -0400770 "files": [
771 "${libdir}/python2.7/pprint.py"
Andrew Geissler730fed82018-09-19 09:22:27 -0700772 ]
773 },
Brad Bishop316dfdd2018-06-25 12:45:53 -0400774 "profile": {
Andrew Geissler730fed82018-09-19 09:22:27 -0700775 "summary": "Python basic performance profiling support",
Brad Bishop316dfdd2018-06-25 12:45:53 -0400776 "rdepends": [
Andrew Geissler730fed82018-09-19 09:22:27 -0700777 "codecs",
778 "core",
779 "lang",
780 "resource",
Brad Bishop316dfdd2018-06-25 12:45:53 -0400781 "textutils"
Andrew Geissler730fed82018-09-19 09:22:27 -0700782 ],
Brad Bishop316dfdd2018-06-25 12:45:53 -0400783 "files": [
Andrew Geissler730fed82018-09-19 09:22:27 -0700784 "${libdir}/python2.7/cProfile.py",
785 "${libdir}/python2.7/lib-dynload/_lsprof.so",
786 "${libdir}/python2.7/profile.py",
787 "${libdir}/python2.7/pstats.py"
788 ]
789 },
790 "pydoc": {
791 "summary": "Python interactive help support",
Brad Bishop316dfdd2018-06-25 12:45:53 -0400792 "rdepends": [
Andrew Geissler730fed82018-09-19 09:22:27 -0700793 "codecs",
794 "core",
795 "lang",
Brad Bishop316dfdd2018-06-25 12:45:53 -0400796 "pkgutil"
Andrew Geissler730fed82018-09-19 09:22:27 -0700797 ],
798 "files": [
799 "${bindir}/pydoc",
800 "${libdir}/python2.7/pydoc.py",
801 "${libdir}/python2.7/pydoc_data"
802 ]
803 },
Brad Bishop316dfdd2018-06-25 12:45:53 -0400804 "re": {
Andrew Geissler730fed82018-09-19 09:22:27 -0700805 "summary": "Python Regular Expression APIs",
806 "rdepends": [
807 "core"
808 ],
Brad Bishop316dfdd2018-06-25 12:45:53 -0400809 "files": [
810 "${libdir}/python2.7/sre.py"
Andrew Geissler730fed82018-09-19 09:22:27 -0700811 ]
812 },
813 "resource": {
814 "summary": "Python resource control interface",
Brad Bishop316dfdd2018-06-25 12:45:53 -0400815 "rdepends": [
816 "core"
Andrew Geissler730fed82018-09-19 09:22:27 -0700817 ],
Brad Bishop316dfdd2018-06-25 12:45:53 -0400818 "files": [
819 "${libdir}/python2.7/lib-dynload/resource.so"
Andrew Geissler730fed82018-09-19 09:22:27 -0700820 ]
821 },
Brad Bishop316dfdd2018-06-25 12:45:53 -0400822 "robotparser": {
Andrew Geissler730fed82018-09-19 09:22:27 -0700823 "summary": "Python robots.txt parser",
824 "rdepends": [
825 "contextlib",
826 "core",
827 "io",
828 "lang",
829 "netclient",
830 "textutils"
831 ],
Brad Bishop316dfdd2018-06-25 12:45:53 -0400832 "files": [
833 "${libdir}/python2.7/robotparser.py"
Andrew Geissler730fed82018-09-19 09:22:27 -0700834 ]
835 },
Brad Bishop316dfdd2018-06-25 12:45:53 -0400836 "runpy": {
Andrew Geissler730fed82018-09-19 09:22:27 -0700837 "summary": "Python helper for locating/executing scripts in module namespace",
838 "rdepends": [
839 "core",
840 "pkgutil"
841 ],
Brad Bishop316dfdd2018-06-25 12:45:53 -0400842 "files": [
843 "${libdir}/python2.7/runpy.py"
Andrew Geissler730fed82018-09-19 09:22:27 -0700844 ]
845 },
Brad Bishop316dfdd2018-06-25 12:45:53 -0400846 "shell": {
Andrew Geissler730fed82018-09-19 09:22:27 -0700847 "summary": "Python shell-like functionality",
Brad Bishop316dfdd2018-06-25 12:45:53 -0400848 "rdepends": [
Andrew Geissler730fed82018-09-19 09:22:27 -0700849 "compression",
850 "core",
851 "io",
852 "unixadmin",
Brad Bishop316dfdd2018-06-25 12:45:53 -0400853 "zlib"
Andrew Geissler730fed82018-09-19 09:22:27 -0700854 ],
Brad Bishop316dfdd2018-06-25 12:45:53 -0400855 "files": [
Andrew Geissler730fed82018-09-19 09:22:27 -0700856 "${libdir}/python2.7/cmd.py",
857 "${libdir}/python2.7/commands.py",
858 "${libdir}/python2.7/dircache.py",
859 "${libdir}/python2.7/fnmatch.py",
860 "${libdir}/python2.7/glob.py",
861 "${libdir}/python2.7/popen2.py",
862 "${libdir}/python2.7/shlex.py",
863 "${libdir}/python2.7/shutil.py"
864 ]
865 },
866 "smtpd": {
867 "summary": "Python Simple Mail Transport Daemon",
Brad Bishop316dfdd2018-06-25 12:45:53 -0400868 "rdepends": [
Andrew Geissler730fed82018-09-19 09:22:27 -0700869 "core",
870 "fcntl",
871 "io",
Brad Bishop316dfdd2018-06-25 12:45:53 -0400872 "lang"
Andrew Geissler730fed82018-09-19 09:22:27 -0700873 ],
874 "files": [
875 "${bindir}/smtpd.py",
876 "${libdir}/python2.7/asynchat.py",
877 "${libdir}/python2.7/asyncore.py",
878 "${libdir}/python2.7/smtpd.py"
879 ]
880 },
Brad Bishop316dfdd2018-06-25 12:45:53 -0400881 "sqlite3": {
Andrew Geissler730fed82018-09-19 09:22:27 -0700882 "summary": "Python Sqlite3 database support",
883 "rdepends": [
884 "core"
885 ],
Brad Bishop316dfdd2018-06-25 12:45:53 -0400886 "files": [
887 "${libdir}/python2.7/lib-dynload/_sqlite3.so"
Andrew Geissler730fed82018-09-19 09:22:27 -0700888 ]
889 },
Brad Bishop316dfdd2018-06-25 12:45:53 -0400890 "stringold": {
Andrew Geissler730fed82018-09-19 09:22:27 -0700891 "summary": "Python string APIs [deprecated]",
892 "rdepends": [
893 "core"
894 ],
Brad Bishop316dfdd2018-06-25 12:45:53 -0400895 "files": [
896 "${libdir}/python2.7/stringold.py"
Andrew Geissler730fed82018-09-19 09:22:27 -0700897 ]
898 },
Brad Bishop316dfdd2018-06-25 12:45:53 -0400899 "subprocess": {
Andrew Geissler730fed82018-09-19 09:22:27 -0700900 "summary": "Python subprocess support",
901 "rdepends": [
902 "core",
903 "fcntl",
904 "io",
905 "pickle",
906 "threading"
907 ],
Brad Bishop316dfdd2018-06-25 12:45:53 -0400908 "files": [
909 "${libdir}/python2.7/subprocess.py"
Andrew Geissler730fed82018-09-19 09:22:27 -0700910 ]
911 },
Brad Bishop316dfdd2018-06-25 12:45:53 -0400912 "syslog": {
Andrew Geissler730fed82018-09-19 09:22:27 -0700913 "summary": "Python syslog interface",
914 "rdepends": [
915 "core"
916 ],
Brad Bishop316dfdd2018-06-25 12:45:53 -0400917 "files": [
918 "${libdir}/python2.7/lib-dynload/syslog.so"
Andrew Geissler730fed82018-09-19 09:22:27 -0700919 ]
920 },
921 "terminal": {
922 "summary": "Python terminal controlling support",
923 "rdepends": [
924 "core",
925 "io"
926 ],
927 "files": [
928 "${libdir}/python2.7/pty.py",
929 "${libdir}/python2.7/tty.py"
930 ]
931 },
Brad Bishop316dfdd2018-06-25 12:45:53 -0400932 "textutils": {
Andrew Geissler730fed82018-09-19 09:22:27 -0700933 "summary": "Python option parsin",
Brad Bishop316dfdd2018-06-25 12:45:53 -0400934 "rdepends": [
Andrew Geissler730fed82018-09-19 09:22:27 -0700935 "codecs",
936 "core",
937 "io",
Brad Bishop316dfdd2018-06-25 12:45:53 -0400938 "lang"
Andrew Geissler730fed82018-09-19 09:22:27 -0700939 ],
Brad Bishop316dfdd2018-06-25 12:45:53 -0400940 "files": [
Andrew Geissler730fed82018-09-19 09:22:27 -0700941 "${libdir}/python2.7/csv.py",
942 "${libdir}/python2.7/lib-dynload/_csv.so",
943 "${libdir}/python2.7/optparse.py",
944 "${libdir}/python2.7/textwrap.py"
945 ]
946 },
947 "threading": {
948 "summary": "Python threading & synchronization support",
Brad Bishop316dfdd2018-06-25 12:45:53 -0400949 "rdepends": [
950 "core"
Andrew Geissler730fed82018-09-19 09:22:27 -0700951 ],
952 "files": [
953 "${libdir}/python2.7/Queue.py",
954 "${libdir}/python2.7/_threading_local.py",
955 "${libdir}/python2.7/dummy_thread.py",
956 "${libdir}/python2.7/dummy_threading.py",
957 "${libdir}/python2.7/mutex.py",
958 "${libdir}/python2.7/threading.py"
959 ]
960 },
Brad Bishop316dfdd2018-06-25 12:45:53 -0400961 "tkinter": {
Andrew Geissler730fed82018-09-19 09:22:27 -0700962 "summary": "Python Tcl/Tk bindings",
963 "rdepends": [
964 "core"
965 ],
Brad Bishop316dfdd2018-06-25 12:45:53 -0400966 "files": [
967 "${libdir}/python2.7/lib-tk"
Andrew Geissler730fed82018-09-19 09:22:27 -0700968 ]
969 },
Brad Bishop316dfdd2018-06-25 12:45:53 -0400970 "unittest": {
Andrew Geissler730fed82018-09-19 09:22:27 -0700971 "summary": "Python unit testing framework",
972 "rdepends": [
973 "core",
974 "difflib",
975 "io",
976 "lang",
977 "pprint",
978 "shell"
979 ],
Brad Bishop316dfdd2018-06-25 12:45:53 -0400980 "files": [
981 "${libdir}/python2.7/unittest"
Andrew Geissler730fed82018-09-19 09:22:27 -0700982 ]
983 },
Brad Bishop316dfdd2018-06-25 12:45:53 -0400984 "unixadmin": {
Andrew Geissler730fed82018-09-19 09:22:27 -0700985 "summary": "Python Unix administration support",
Brad Bishop316dfdd2018-06-25 12:45:53 -0400986 "rdepends": [
Andrew Geissler730fed82018-09-19 09:22:27 -0700987 "core",
Brad Bishop316dfdd2018-06-25 12:45:53 -0400988 "io"
Andrew Geissler730fed82018-09-19 09:22:27 -0700989 ],
Brad Bishop316dfdd2018-06-25 12:45:53 -0400990 "files": [
Andrew Geissler730fed82018-09-19 09:22:27 -0700991 "${libdir}/python2.7/getpass.py",
992 "${libdir}/python2.7/lib-dynload/grp.so",
993 "${libdir}/python2.7/lib-dynload/nis.so"
994 ]
995 },
996 "xml": {
997 "summary": "Python basic XML support",
Brad Bishop316dfdd2018-06-25 12:45:53 -0400998 "rdepends": [
999 "core"
Andrew Geissler730fed82018-09-19 09:22:27 -07001000 ],
Brad Bishop316dfdd2018-06-25 12:45:53 -04001001 "files": [
Andrew Geissler730fed82018-09-19 09:22:27 -07001002 "${libdir}/python2.7/lib-dynload/_elementtree.so",
1003 "${libdir}/python2.7/lib-dynload/pyexpat.so",
1004 "${libdir}/python2.7/xml"
1005 ]
1006 },
1007 "xmlrpc": {
1008 "summary": "Python XML-RPC support",
Brad Bishop316dfdd2018-06-25 12:45:53 -04001009 "rdepends": [
Andrew Geissler730fed82018-09-19 09:22:27 -07001010 "codecs",
1011 "compression",
1012 "contextlib",
1013 "core",
1014 "crypt",
1015 "datetime",
1016 "fcntl",
1017 "io",
1018 "lang",
1019 "math",
1020 "mime",
1021 "netclient",
1022 "netserver",
1023 "pkgutil",
1024 "pydoc",
1025 "textutils",
1026 "threading",
1027 "xml",
Brad Bishop316dfdd2018-06-25 12:45:53 -04001028 "zlib"
Andrew Geissler730fed82018-09-19 09:22:27 -07001029 ],
1030 "files": [
1031 "${libdir}/python2.7/DocXMLRPCServer.py",
1032 "${libdir}/python2.7/SimpleXMLRPCServer.py"
1033 ]
1034 },
Brad Bishop316dfdd2018-06-25 12:45:53 -04001035 "zlib": {
Andrew Geissler730fed82018-09-19 09:22:27 -07001036 "summary": "Python zlib compression support",
1037 "rdepends": [
1038 "core"
1039 ],
Brad Bishop316dfdd2018-06-25 12:45:53 -04001040 "files": [
1041 "${libdir}/python2.7/lib-dynload/zlib.so"
Andrew Geissler730fed82018-09-19 09:22:27 -07001042 ]
Brad Bishop316dfdd2018-06-25 12:45:53 -04001043 }
1044}