gitextract_q6urh6ag/ ├── .github/ │ └── workflows/ │ └── test.yml ├── .gitignore ├── .readthedocs.yaml ├── CHANGELOG.md ├── CITATION.cff ├── CITATION.txt ├── CONTRIBUTING.md ├── LICENSE.txt ├── README.md ├── Vagrantfile ├── allsetups.sh ├── docs/ │ ├── Makefile │ ├── conf.py │ ├── developerguide.rst │ ├── faq.rst │ ├── glossary.rst │ ├── graph.rst │ ├── gui.rst │ ├── index.rst │ ├── install.rst │ ├── jupyter.rst │ ├── make.bat │ ├── man/ │ │ ├── reprounzip-docker.1 │ │ ├── reprounzip-vagrant.1 │ │ ├── reprounzip.1 │ │ └── reprozip.1 │ ├── packing.rst │ ├── reprozip.rst │ ├── traceschema.rst │ ├── troubleshooting.rst │ ├── unpacked-format.rst │ ├── unpacking.rst │ └── vistrails.rst ├── file-format.md ├── reprounzip/ │ ├── LICENSE.txt │ ├── MANIFEST.in │ ├── README.rst │ ├── reprounzip/ │ │ ├── __init__.py │ │ ├── common.py │ │ ├── main.py │ │ ├── orderedset.py │ │ ├── pack_info.py │ │ ├── parameters.py │ │ ├── plugins/ │ │ │ └── __init__.py │ │ ├── signals.py │ │ ├── unpackers/ │ │ │ ├── __init__.py │ │ │ ├── common/ │ │ │ │ ├── __init__.py │ │ │ │ ├── misc.py │ │ │ │ ├── packages.py │ │ │ │ └── x11.py │ │ │ ├── default.py │ │ │ ├── graph.py │ │ │ └── provviewer.py │ │ └── utils.py │ ├── setup.cfg │ └── setup.py ├── reprounzip-docker/ │ ├── LICENSE.txt │ ├── MANIFEST.in │ ├── README.rst │ ├── reprounzip/ │ │ ├── __init__.py │ │ └── unpackers/ │ │ ├── __init__.py │ │ └── docker.py │ ├── setup.cfg │ └── setup.py ├── reprounzip-qt/ │ ├── LICENSE.txt │ ├── MANIFEST.in │ ├── README.rst │ ├── reprounzip_qt/ │ │ ├── __init__.py │ │ ├── gui/ │ │ │ ├── __init__.py │ │ │ ├── common.py │ │ │ ├── run.py │ │ │ └── unpack.py │ │ ├── main.py │ │ ├── qt_terminal.py │ │ ├── reprounzip_interface.py │ │ └── usage.py │ ├── setup.cfg │ └── setup.py ├── reprounzip-vagrant/ │ ├── LICENSE.txt │ ├── MANIFEST.in │ ├── README.rst │ ├── reprounzip/ │ │ ├── __init__.py │ │ └── unpackers/ │ │ ├── __init__.py │ │ └── vagrant/ │ │ ├── __init__.py │ │ ├── interaction.py │ │ └── run_command.py │ ├── setup.cfg │ └── setup.py ├── reprounzip-vistrails/ │ ├── LICENSE.txt │ ├── MANIFEST.in │ ├── README.rst │ ├── reprounzip/ │ │ ├── __init__.py │ │ └── plugins/ │ │ ├── __init__.py │ │ └── vistrails.py │ ├── setup.cfg │ └── setup.py ├── reprozip/ │ ├── LICENSE.txt │ ├── MANIFEST.in │ ├── README.rst │ ├── native/ │ │ ├── config.h │ │ ├── database.c │ │ ├── database.h │ │ ├── log.h │ │ ├── ptrace_utils.c │ │ ├── ptrace_utils.h │ │ ├── pylog.c │ │ ├── pytracer.c │ │ ├── syscalls.c │ │ ├── syscalls.h │ │ ├── tracer.c │ │ ├── tracer.h │ │ ├── utils.c │ │ └── utils.h │ ├── reprozip/ │ │ ├── __init__.py │ │ ├── common.py │ │ ├── filters.py │ │ ├── main.py │ │ ├── pack.py │ │ ├── tracer/ │ │ │ ├── __init__.py │ │ │ ├── linux_pkgs.py │ │ │ └── trace.py │ │ ├── traceutils.py │ │ └── utils.py │ └── setup.py ├── reprozip-jupyter/ │ ├── LICENSE.txt │ ├── MANIFEST.in │ ├── README.rst │ ├── reprozip_jupyter/ │ │ ├── __init__.py │ │ ├── main.py │ │ ├── notebook-extension.js │ │ ├── run.py │ │ ├── server_extension.py │ │ └── trace.py │ ├── setup.cfg │ └── setup.py ├── scripts/ │ ├── RELEASE │ ├── linux-wheels.sh │ ├── macos/ │ │ ├── README.txt │ │ ├── ReproUnzip.pkgproj │ │ ├── app-shim/ │ │ │ ├── ReproUnzip_app/ │ │ │ │ └── Contents/ │ │ │ │ ├── Info.plist │ │ │ │ └── Resources/ │ │ │ │ └── icon.icns │ │ │ ├── reprounzip-qt.c │ │ │ └── reprounzip-qt.debug.c │ │ ├── instructions.txt │ │ ├── reprounzip │ │ ├── reprounzip-qt │ │ └── reprozip-jupyter │ ├── register-linux.sh │ ├── test_bug_13676.py │ ├── test_bug_23058.py │ └── windows/ │ ├── input/ │ │ ├── reprounzip-qt.bat │ │ ├── reprounzip.bat │ │ └── reprozip-jupyter.bat │ └── reprounzip.iss ├── syscalls.txt └── tests/ ├── __init__.py ├── __main__.py ├── check_images.py ├── common.py ├── connect.c ├── exec_echo.c ├── functional.py ├── readwrite.c ├── rename.c ├── segv.c ├── simple.c ├── simple_input.txt ├── simple_input2.txt ├── test_graph.py ├── test_parameters.py ├── test_rails_filter.py ├── test_reprounzip.py ├── test_reprozip.py ├── test_unpackers_common.py ├── test_utils.py ├── threads.c ├── threads2.c └── vfork.c