platform for raspberry pi

This commit is contained in:
j 2016-06-24 14:50:10 +02:00
commit 73d4832b38
523 changed files with 190349 additions and 0 deletions

View file

@ -0,0 +1,17 @@
Metadata-Version: 1.1
Name: pycparser
Version: 2.14
Summary: C parser in Python
Home-page: https://github.com/eliben/pycparser
Author: Eli Bendersky
Author-email: eliben@gmail.com
License: BSD
Description:
pycparser is a complete parser of the C language, written in
pure Python using the PLY parsing library.
It parses C code into an AST and can serve as a front-end for
C compilers or analysis tools.
Platform: Cross Platform
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3

View file

@ -0,0 +1,121 @@
CHANGES
LICENSE
MANIFEST.in
README.rst
setup.cfg
setup.py
examples/c-to-c.py
examples/cdecl.py
examples/explore_ast.py
examples/func_calls.py
examples/func_defs.py
examples/rewrite_ast.py
examples/using_cpp_libc.py
examples/using_gcc_E_libc.py
examples/c_files/funky.c
examples/c_files/hash.c
examples/c_files/memmgr.c
examples/c_files/memmgr.h
examples/c_files/year.c
pycparser/__init__.py
pycparser/_ast_gen.py
pycparser/_build_tables.py
pycparser/_c_ast.cfg
pycparser/ast_transforms.py
pycparser/c_ast.py
pycparser/c_generator.py
pycparser/c_lexer.py
pycparser/c_parser.py
pycparser/lextab.py
pycparser/plyparser.py
pycparser/yacctab.py
pycparser.egg-info/PKG-INFO
pycparser.egg-info/SOURCES.txt
pycparser.egg-info/dependency_links.txt
pycparser.egg-info/top_level.txt
pycparser/ply/__init__.py
pycparser/ply/cpp.py
pycparser/ply/ctokens.py
pycparser/ply/lex.py
pycparser/ply/yacc.py
tests/all_tests.py
tests/test_c_ast.py
tests/test_c_generator.py
tests/test_c_lexer.py
tests/test_c_parser.py
tests/test_general.py
tests/c_files/cppd_with_stdio_h.c
tests/c_files/empty.h
tests/c_files/example_c_file.c
tests/c_files/memmgr.c
tests/c_files/memmgr.h
tests/c_files/memmgr_with_h.c
tests/c_files/simplemain.c
tests/c_files/year.c
tests/c_files/hdir/9/inc.h
utils/fake_libc_include/_ansi.h
utils/fake_libc_include/_fake_defines.h
utils/fake_libc_include/_fake_typedefs.h
utils/fake_libc_include/_syslist.h
utils/fake_libc_include/alloca.h
utils/fake_libc_include/ar.h
utils/fake_libc_include/argz.h
utils/fake_libc_include/assert.h
utils/fake_libc_include/complex.h
utils/fake_libc_include/ctype.h
utils/fake_libc_include/dirent.h
utils/fake_libc_include/dlfcn.h
utils/fake_libc_include/endian.h
utils/fake_libc_include/envz.h
utils/fake_libc_include/errno.h
utils/fake_libc_include/fastmath.h
utils/fake_libc_include/fcntl.h
utils/fake_libc_include/features.h
utils/fake_libc_include/fenv.h
utils/fake_libc_include/float.h
utils/fake_libc_include/getopt.h
utils/fake_libc_include/grp.h
utils/fake_libc_include/iconv.h
utils/fake_libc_include/ieeefp.h
utils/fake_libc_include/inttypes.h
utils/fake_libc_include/iso646.h
utils/fake_libc_include/langinfo.h
utils/fake_libc_include/libgen.h
utils/fake_libc_include/libintl.h
utils/fake_libc_include/limits.h
utils/fake_libc_include/locale.h
utils/fake_libc_include/malloc.h
utils/fake_libc_include/math.h
utils/fake_libc_include/netdb.h
utils/fake_libc_include/newlib.h
utils/fake_libc_include/paths.h
utils/fake_libc_include/process.h
utils/fake_libc_include/pthread.h
utils/fake_libc_include/pwd.h
utils/fake_libc_include/reent.h
utils/fake_libc_include/regdef.h
utils/fake_libc_include/regex.h
utils/fake_libc_include/sched.h
utils/fake_libc_include/search.h
utils/fake_libc_include/semaphore.h
utils/fake_libc_include/setjmp.h
utils/fake_libc_include/signal.h
utils/fake_libc_include/stdarg.h
utils/fake_libc_include/stdbool.h
utils/fake_libc_include/stddef.h
utils/fake_libc_include/stdint.h
utils/fake_libc_include/stdio.h
utils/fake_libc_include/stdlib.h
utils/fake_libc_include/string.h
utils/fake_libc_include/syslog.h
utils/fake_libc_include/tar.h
utils/fake_libc_include/termios.h
utils/fake_libc_include/tgmath.h
utils/fake_libc_include/time.h
utils/fake_libc_include/unctrl.h
utils/fake_libc_include/unistd.h
utils/fake_libc_include/utime.h
utils/fake_libc_include/utmp.h
utils/fake_libc_include/wchar.h
utils/fake_libc_include/wctype.h
utils/fake_libc_include/zlib.h

View file

@ -0,0 +1,38 @@
../pycparser/c_generator.py
../pycparser/c_parser.py
../pycparser/c_lexer.py
../pycparser/_ast_gen.py
../pycparser/c_ast.py
../pycparser/ast_transforms.py
../pycparser/__init__.py
../pycparser/yacctab.py
../pycparser/plyparser.py
../pycparser/lextab.py
../pycparser/_build_tables.py
../pycparser/ply/__init__.py
../pycparser/ply/lex.py
../pycparser/ply/ctokens.py
../pycparser/ply/cpp.py
../pycparser/ply/yacc.py
../pycparser/_c_ast.cfg
../pycparser/__pycache__/c_generator.cpython-34.pyc
../pycparser/__pycache__/c_parser.cpython-34.pyc
../pycparser/__pycache__/c_lexer.cpython-34.pyc
../pycparser/__pycache__/_ast_gen.cpython-34.pyc
../pycparser/__pycache__/c_ast.cpython-34.pyc
../pycparser/__pycache__/ast_transforms.cpython-34.pyc
../pycparser/__pycache__/__init__.cpython-34.pyc
../pycparser/__pycache__/yacctab.cpython-34.pyc
../pycparser/__pycache__/plyparser.cpython-34.pyc
../pycparser/__pycache__/lextab.cpython-34.pyc
../pycparser/__pycache__/_build_tables.cpython-34.pyc
../pycparser/ply/__pycache__/__init__.cpython-34.pyc
../pycparser/ply/__pycache__/lex.cpython-34.pyc
../pycparser/ply/__pycache__/ctokens.cpython-34.pyc
../pycparser/ply/__pycache__/cpp.cpython-34.pyc
../pycparser/ply/__pycache__/yacc.cpython-34.pyc
./
PKG-INFO
dependency_links.txt
SOURCES.txt
top_level.txt

View file

@ -0,0 +1 @@
pycparser