├── .coveragerc ├── .github └── workflows │ ├── doc.yml │ ├── release.yml │ └── test.yml ├── .gitignore ├── .pylintrc ├── LICENSE ├── MANIFEST.in ├── NEWS.rst ├── README.rst ├── bin └── pychroot ├── doc ├── Makefile ├── conf.py ├── index.rst └── man │ └── pychroot.rst ├── pyproject.toml ├── requirements ├── ci.txt ├── dev.txt ├── dist.txt ├── docs.txt ├── install.txt ├── pyproject.toml ├── test.txt └── tox.txt ├── setup.cfg ├── setup.py ├── src └── pychroot │ ├── __init__.py │ ├── base.py │ ├── exceptions.py │ ├── scripts │ ├── __init__.py │ └── pychroot.py │ └── utils.py ├── tests ├── test_chroot.py ├── test_chroot_utils.py ├── test_cli.py └── test_script.py └── tox.ini /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkgcore/pychroot/HEAD/.coveragerc -------------------------------------------------------------------------------- /.github/workflows/doc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkgcore/pychroot/HEAD/.github/workflows/doc.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkgcore/pychroot/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkgcore/pychroot/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkgcore/pychroot/HEAD/.gitignore -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkgcore/pychroot/HEAD/.pylintrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkgcore/pychroot/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkgcore/pychroot/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /NEWS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkgcore/pychroot/HEAD/NEWS.rst -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkgcore/pychroot/HEAD/README.rst -------------------------------------------------------------------------------- /bin/pychroot: -------------------------------------------------------------------------------- 1 | ../src/pychroot/scripts/__init__.py -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkgcore/pychroot/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkgcore/pychroot/HEAD/doc/conf.py -------------------------------------------------------------------------------- /doc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkgcore/pychroot/HEAD/doc/index.rst -------------------------------------------------------------------------------- /doc/man/pychroot.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkgcore/pychroot/HEAD/doc/man/pychroot.rst -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkgcore/pychroot/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements/ci.txt: -------------------------------------------------------------------------------- 1 | pytest-cov 2 | -------------------------------------------------------------------------------- /requirements/dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkgcore/pychroot/HEAD/requirements/dev.txt -------------------------------------------------------------------------------- /requirements/dist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkgcore/pychroot/HEAD/requirements/dist.txt -------------------------------------------------------------------------------- /requirements/docs.txt: -------------------------------------------------------------------------------- 1 | sphinx 2 | -------------------------------------------------------------------------------- /requirements/install.txt: -------------------------------------------------------------------------------- 1 | snakeoil~=0.9.3 2 | -------------------------------------------------------------------------------- /requirements/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkgcore/pychroot/HEAD/requirements/pyproject.toml -------------------------------------------------------------------------------- /requirements/test.txt: -------------------------------------------------------------------------------- 1 | pytest 2 | -------------------------------------------------------------------------------- /requirements/tox.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkgcore/pychroot/HEAD/requirements/tox.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkgcore/pychroot/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkgcore/pychroot/HEAD/setup.py -------------------------------------------------------------------------------- /src/pychroot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkgcore/pychroot/HEAD/src/pychroot/__init__.py -------------------------------------------------------------------------------- /src/pychroot/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkgcore/pychroot/HEAD/src/pychroot/base.py -------------------------------------------------------------------------------- /src/pychroot/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkgcore/pychroot/HEAD/src/pychroot/exceptions.py -------------------------------------------------------------------------------- /src/pychroot/scripts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkgcore/pychroot/HEAD/src/pychroot/scripts/__init__.py -------------------------------------------------------------------------------- /src/pychroot/scripts/pychroot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkgcore/pychroot/HEAD/src/pychroot/scripts/pychroot.py -------------------------------------------------------------------------------- /src/pychroot/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkgcore/pychroot/HEAD/src/pychroot/utils.py -------------------------------------------------------------------------------- /tests/test_chroot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkgcore/pychroot/HEAD/tests/test_chroot.py -------------------------------------------------------------------------------- /tests/test_chroot_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkgcore/pychroot/HEAD/tests/test_chroot_utils.py -------------------------------------------------------------------------------- /tests/test_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkgcore/pychroot/HEAD/tests/test_cli.py -------------------------------------------------------------------------------- /tests/test_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkgcore/pychroot/HEAD/tests/test_script.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkgcore/pychroot/HEAD/tox.ini --------------------------------------------------------------------------------