README: document GPG-enabled development setup - #64
Open
gcomneno wants to merge 1 commit into
Open
Conversation
Document how Debian and Ubuntu contributors can expose the distro-provided python3-gpg bindings to the development virtual environment so the GPG-specific tests are exercised instead of skipped. AI-Generated: ChatGPT Signed-off-by: Giancarlo Cicellyn Comneno <126195429+gcomneno@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Document how Debian and Ubuntu contributors can make the distro-provided
python3-gpgbindings available inside the development virtual environment sothat the GPG-specific tests are exercised instead of skipped.
The original report in #37 concerned the removal of
gpgme-configandgpg-error-config. On current Ubuntu 24.04 these helpers are still absent, butthey no longer block the documented editable development install.
What remains reproducible is a documentation gap: the standard isolated virtual
environment cannot see the distro-provided
python3-gpgmodule, causing theGPG-specific tests to be skipped.
Verification
Tested on Ubuntu 24.04:
python3-gpgvisibility, 8 GPG-specific tests are skipped;python3-gpginstalled and a virtual environment created using--system-site-packages, bothbmaptoolandgpgare available;This also matches the project's native CI job, which uses the distro-provided
python3-gpgpackage to exercise the GPG tests.Closes #37