]> git.notmuchmail.org Git - notmuch/commit
python: move legacy python bindings to contrib.
authorDavid Bremner <david@tethera.net>
Sat, 15 Feb 2025 19:30:43 +0000 (15:30 -0400)
committerDavid Bremner <david@tethera.net>
Sat, 22 Feb 2025 11:01:47 +0000 (07:01 -0400)
commitd526797ad198e394bb8b4909f43976b76fb347f1
treeb924eefb8a1278afb988387a67e9fe413738003e
parent9782c8651192c1496541bd8949b7991c41528b3f
python: move legacy python bindings to contrib.

This forces us to verify the build and test suite completes without
the legacy python bindings.

As of this commit the legacy python bindings are unsupported by
notmuch. They are provided in contrib/ for now, but will most likely
eventually be removed from there as well. We recommend that
downstream/distro packagers phase out their packages for the legacy
python bindings.
66 files changed:
bindings/python/.gitignore [deleted file]
bindings/python/MANIFEST.in [deleted file]
bindings/python/README [deleted file]
bindings/python/docs/COPYING [deleted file]
bindings/python/docs/Makefile [deleted file]
bindings/python/docs/source/conf.py [deleted file]
bindings/python/docs/source/database.rst [deleted file]
bindings/python/docs/source/filesystem.rst [deleted file]
bindings/python/docs/source/index.rst [deleted file]
bindings/python/docs/source/message.rst [deleted file]
bindings/python/docs/source/messages.rst [deleted file]
bindings/python/docs/source/notes.rst [deleted file]
bindings/python/docs/source/query.rst [deleted file]
bindings/python/docs/source/quickstart.rst [deleted file]
bindings/python/docs/source/status_and_errors.rst [deleted file]
bindings/python/docs/source/tags.rst [deleted file]
bindings/python/docs/source/thread.rst [deleted file]
bindings/python/docs/source/threads.rst [deleted file]
bindings/python/notmuch/__init__.py [deleted file]
bindings/python/notmuch/compat.py [deleted file]
bindings/python/notmuch/database.py [deleted file]
bindings/python/notmuch/directory.py [deleted file]
bindings/python/notmuch/errors.py [deleted file]
bindings/python/notmuch/filenames.py [deleted file]
bindings/python/notmuch/globals.py [deleted file]
bindings/python/notmuch/message.py [deleted file]
bindings/python/notmuch/messages.py [deleted file]
bindings/python/notmuch/query.py [deleted file]
bindings/python/notmuch/tag.py [deleted file]
bindings/python/notmuch/thread.py [deleted file]
bindings/python/notmuch/threads.py [deleted file]
bindings/python/notmuch/version.py [deleted file]
bindings/python/setup.py [deleted file]
contrib/python-legacy/.gitignore [new file with mode: 0644]
contrib/python-legacy/MANIFEST.in [new file with mode: 0644]
contrib/python-legacy/README [new file with mode: 0644]
contrib/python-legacy/docs/COPYING [new file with mode: 0644]
contrib/python-legacy/docs/Makefile [new file with mode: 0644]
contrib/python-legacy/docs/source/conf.py [new file with mode: 0644]
contrib/python-legacy/docs/source/database.rst [new file with mode: 0644]
contrib/python-legacy/docs/source/filesystem.rst [new file with mode: 0644]
contrib/python-legacy/docs/source/index.rst [new file with mode: 0644]
contrib/python-legacy/docs/source/message.rst [new file with mode: 0644]
contrib/python-legacy/docs/source/messages.rst [new file with mode: 0644]
contrib/python-legacy/docs/source/notes.rst [new file with mode: 0644]
contrib/python-legacy/docs/source/query.rst [new file with mode: 0644]
contrib/python-legacy/docs/source/quickstart.rst [new file with mode: 0644]
contrib/python-legacy/docs/source/status_and_errors.rst [new file with mode: 0644]
contrib/python-legacy/docs/source/tags.rst [new file with mode: 0644]
contrib/python-legacy/docs/source/thread.rst [new file with mode: 0644]
contrib/python-legacy/docs/source/threads.rst [new file with mode: 0644]
contrib/python-legacy/notmuch/__init__.py [new file with mode: 0644]
contrib/python-legacy/notmuch/compat.py [new file with mode: 0644]
contrib/python-legacy/notmuch/database.py [new file with mode: 0644]
contrib/python-legacy/notmuch/directory.py [new file with mode: 0644]
contrib/python-legacy/notmuch/errors.py [new file with mode: 0644]
contrib/python-legacy/notmuch/filenames.py [new file with mode: 0644]
contrib/python-legacy/notmuch/globals.py [new file with mode: 0644]
contrib/python-legacy/notmuch/message.py [new file with mode: 0644]
contrib/python-legacy/notmuch/messages.py [new file with mode: 0644]
contrib/python-legacy/notmuch/query.py [new file with mode: 0644]
contrib/python-legacy/notmuch/tag.py [new file with mode: 0644]
contrib/python-legacy/notmuch/thread.py [new file with mode: 0644]
contrib/python-legacy/notmuch/threads.py [new file with mode: 0644]
contrib/python-legacy/notmuch/version.py [new file with mode: 0644]
contrib/python-legacy/setup.py [new file with mode: 0644]