├── .coveragerc ├── .gitignore ├── .travis.yml ├── CHANGELOG.rst ├── LICENSE.txt ├── MANIFEST.in ├── Makefile ├── README.rst ├── check_doctest_examples.py ├── constraints.txt ├── deb_pkg_tools ├── __init__.py ├── cache.py ├── checks.py ├── cli.py ├── compat.py ├── config.py ├── control.py ├── deb822.py ├── deps.py ├── gpg.py ├── package.py ├── printer.py ├── repo.py ├── tests.py ├── utils.py └── version │ ├── __init__.py │ └── native.py ├── docs ├── api.rst ├── changelog.rst ├── conf.py ├── index.rst └── readme.rst ├── requirements-checks.txt ├── requirements-tests.txt ├── requirements-travis.txt ├── requirements.txt ├── scripts └── install-on-travis.sh ├── setup.cfg ├── setup.py ├── stdeb.cfg └── tox.ini /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xolox/python-deb-pkg-tools/HEAD/.coveragerc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | deb_pkg_tools.egg-info 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xolox/python-deb-pkg-tools/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xolox/python-deb-pkg-tools/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xolox/python-deb-pkg-tools/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xolox/python-deb-pkg-tools/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xolox/python-deb-pkg-tools/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xolox/python-deb-pkg-tools/HEAD/README.rst -------------------------------------------------------------------------------- /check_doctest_examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xolox/python-deb-pkg-tools/HEAD/check_doctest_examples.py -------------------------------------------------------------------------------- /constraints.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xolox/python-deb-pkg-tools/HEAD/constraints.txt -------------------------------------------------------------------------------- /deb_pkg_tools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xolox/python-deb-pkg-tools/HEAD/deb_pkg_tools/__init__.py -------------------------------------------------------------------------------- /deb_pkg_tools/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xolox/python-deb-pkg-tools/HEAD/deb_pkg_tools/cache.py -------------------------------------------------------------------------------- /deb_pkg_tools/checks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xolox/python-deb-pkg-tools/HEAD/deb_pkg_tools/checks.py -------------------------------------------------------------------------------- /deb_pkg_tools/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xolox/python-deb-pkg-tools/HEAD/deb_pkg_tools/cli.py -------------------------------------------------------------------------------- /deb_pkg_tools/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xolox/python-deb-pkg-tools/HEAD/deb_pkg_tools/compat.py -------------------------------------------------------------------------------- /deb_pkg_tools/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xolox/python-deb-pkg-tools/HEAD/deb_pkg_tools/config.py -------------------------------------------------------------------------------- /deb_pkg_tools/control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xolox/python-deb-pkg-tools/HEAD/deb_pkg_tools/control.py -------------------------------------------------------------------------------- /deb_pkg_tools/deb822.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xolox/python-deb-pkg-tools/HEAD/deb_pkg_tools/deb822.py -------------------------------------------------------------------------------- /deb_pkg_tools/deps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xolox/python-deb-pkg-tools/HEAD/deb_pkg_tools/deps.py -------------------------------------------------------------------------------- /deb_pkg_tools/gpg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xolox/python-deb-pkg-tools/HEAD/deb_pkg_tools/gpg.py -------------------------------------------------------------------------------- /deb_pkg_tools/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xolox/python-deb-pkg-tools/HEAD/deb_pkg_tools/package.py -------------------------------------------------------------------------------- /deb_pkg_tools/printer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xolox/python-deb-pkg-tools/HEAD/deb_pkg_tools/printer.py -------------------------------------------------------------------------------- /deb_pkg_tools/repo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xolox/python-deb-pkg-tools/HEAD/deb_pkg_tools/repo.py -------------------------------------------------------------------------------- /deb_pkg_tools/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xolox/python-deb-pkg-tools/HEAD/deb_pkg_tools/tests.py -------------------------------------------------------------------------------- /deb_pkg_tools/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xolox/python-deb-pkg-tools/HEAD/deb_pkg_tools/utils.py -------------------------------------------------------------------------------- /deb_pkg_tools/version/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xolox/python-deb-pkg-tools/HEAD/deb_pkg_tools/version/__init__.py -------------------------------------------------------------------------------- /deb_pkg_tools/version/native.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xolox/python-deb-pkg-tools/HEAD/deb_pkg_tools/version/native.py -------------------------------------------------------------------------------- /docs/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xolox/python-deb-pkg-tools/HEAD/docs/api.rst -------------------------------------------------------------------------------- /docs/changelog.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../CHANGELOG.rst 2 | -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xolox/python-deb-pkg-tools/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xolox/python-deb-pkg-tools/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/readme.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../README.rst 2 | -------------------------------------------------------------------------------- /requirements-checks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xolox/python-deb-pkg-tools/HEAD/requirements-checks.txt -------------------------------------------------------------------------------- /requirements-tests.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xolox/python-deb-pkg-tools/HEAD/requirements-tests.txt -------------------------------------------------------------------------------- /requirements-travis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xolox/python-deb-pkg-tools/HEAD/requirements-travis.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xolox/python-deb-pkg-tools/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/install-on-travis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xolox/python-deb-pkg-tools/HEAD/scripts/install-on-travis.sh -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xolox/python-deb-pkg-tools/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xolox/python-deb-pkg-tools/HEAD/setup.py -------------------------------------------------------------------------------- /stdeb.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xolox/python-deb-pkg-tools/HEAD/stdeb.cfg -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xolox/python-deb-pkg-tools/HEAD/tox.ini --------------------------------------------------------------------------------