diff --git a/.gitignore b/.gitignore index 9239dfb..3d6775f 100644 --- a/.gitignore +++ b/.gitignore @@ -7,7 +7,6 @@ /.envrc /.pytest_cache/ /build/ -/deb_dist/ /dist/ /docs/_build/ /htmlcov/ diff --git a/Makefile b/Makefile index 0297eeb..265e06c 100644 --- a/Makefile +++ b/Makefile @@ -4,9 +4,6 @@ dist : python setup.py sdist --formats=gztar,zip python setup.py bdist_wheel --python-tag=py3 -deb_dist: - python setup.py --command-packages=stdeb.command bdist_deb - publish : twine upload dist/*.tar.gz dist/*.whl @@ -18,7 +15,7 @@ coverage: clean : find . -name "*pyc" | xargs rm -rf $1 - rm -rf build dist MANIFEST htmlcov deb_dist toot*.tar.gz + rm -rf build dist MANIFEST htmlcov toot*.tar.gz changelog: ./scripts/generate_changelog > CHANGELOG.md diff --git a/docs/install.rst b/docs/install.rst index e5cbfd6..af9d1a2 100644 --- a/docs/install.rst +++ b/docs/install.rst @@ -8,15 +8,6 @@ toot is packaged for various platforms. :local: :backlinks: none -.. warning:: - - There used to be an **APT package repository** at `bezdomni.net`, managed by - myself. Since toot is now available in the Debian and Ubuntu repos, the repo - is no longer required and will be removed soon. - - If you have previously added the repository, remove it by deleting the file - at: ``/etc/apt/sources.list.d/bezdomni.list``. - Overview -------- diff --git a/docs/release.rst b/docs/release.rst index 2ebfb02..d508427 100644 --- a/docs/release.rst +++ b/docs/release.rst @@ -31,6 +31,5 @@ GitHub release * Upload the assets generated in previous two steps to the release: * source dist (.zip and .tar.gz) * wheel distribution (.whl) - * debian package (.deb) TODO: this can be automated: https://developer.github.com/v3/repos/releases/ diff --git a/stdeb.cfg b/stdeb.cfg deleted file mode 100644 index 839a21d..0000000 --- a/stdeb.cfg +++ /dev/null @@ -1,3 +0,0 @@ -[DEFAULT] -X-Python3-Version: >= 3.4 -Copyright-File: LICENSE