https://git.schokokeks.org/derivepassphrase.git/tree/4b517365513d843948b8ead9f155b6590989f22f Recent commits to derivepassphrase.git (4b517365513d843948b8ead9f155b6590989f22f) 2025-02-11T16:30:37+01:00 tag:gitlist.org,2012:commit/4b517365513d843948b8ead9f155b6590989f22f Automatically check and build the translations on master via hatch-gettext 2025-02-11T16:30:37+01:00 Marco Ricci software@the13thletter.info <pre>Include the configuration for `hatch-gettext` to automatically build the translations during build time, and include them in the wheel. Further support a quality control check that tests the PO template for reproducability. The PO template generator now supports passing a specific build timestamp, and realistically, the reproducability check needs this timestamp to be specified (via `SOURCE_DATE_EPOCH`). Actually *using* these translations directly from the installed wheel is not yet supported, because it is actually somewhat difficult to use the `gettext` MO-finding machinery here directly: `gettext.find` requires the directories it searches to be on-disk directories, whereas the wheel installer does not guarantee that installed packages are present as files on the system (instead of, say, as a ZIP archive). The sanest way forward seems to be reimplementing `gettext.find` with support for `importlib.metadata.as_file`, and then constructing `gettext.GNUTranslations` objects directly. This would also be the correct time to introduce a new enum for all these automatically calculated platform-specific special locale directories. (TODO.) &lt;/pre&gt; tag:gitlist.org,2012:commit/f7608463671f7220e5fc9c1585a3af94b1496390 Fix multiple small issues with the CLI messages 2025-02-11T15:13:16+01:00 Marco Ricci software@the13thletter.info <pre> * Otherwise empty translators comments were being prefixed with `TRANSLATORS:`, making them non-empty. * `Label.DERIVEPASSPHRASE_VAULT_NOTES_INSTRUCTION_TEXT` is actually pre-wrapped, but it was missing the "no wrap" marker. * In `ErrMsgTemplate.CANNOT_UPDATE_SETTINGS_NO_SETTINGS`, `--notes` is also a valid setting to specify. * The previous locale code `en_DEBUG` suggests that "DEBUG" is [a territory, not a modifier or variant][1]. [1]: https://pubs.opengroup.org/onlinepubs/9699919799/basedefs/V1_chap08.html &lt;/pre&gt; tag:gitlist.org,2012:commit/0eb4c387b975bc396a46731f8da33368978a005f Allow forcing the branch name on the automatic quality control script 2025-02-11T13:57:22+01:00 Marco Ricci software@the13thletter.info <pre>Allow forcing the branch name via the `GIT_CURRENT_BRANCH` environment variable. This is useful when the script doubles as a pre-commit hook, and when we want to run the full set of checks normally reserved for 'master' only. &lt;/pre&gt; tag:gitlist.org,2012:commit/fb7d17d3c5629869cae528ce72f80dca4f433acf Make the manpages installable under pipx 2025-02-11T00:57:53+01:00 Marco Ricci software@the13thletter.info <pre>When using `pipx` to install `derivepassphrase`, `pipx` will now correctly locate the `derivepassphrase` manpages and make them available to the user. &lt;/pre&gt; tag:gitlist.org,2012:commit/6eed9899514c22872a8663e3e3016329f0f1a723 Merge topic branch 'quality-control-automation' into master 2025-02-10T00:20:26+01:00 Marco Ricci software@the13thletter.info <pre>* t/quality-control-automation: Document the addition of quality control tools in the changelog Fix automatic quality control handling of too-long lines Fix minor message deviations in the source tree and phrasing in the manpages Add message IDs (and missing entries) to the manpage diagnostics listings Add quality control scripts Prepare `bump-my-version` for this project Store the version only in pyproject.toml &lt;/pre&gt; tag:gitlist.org,2012:commit/b07a5d00772ffb89628ab3ce8d251eaef76a01f1 Document the addition of quality control tools in the changelog 2025-02-10T00:15:57+01:00 Marco Ricci software@the13thletter.info <pre>&lt;/pre&gt; tag:gitlist.org,2012:commit/09205797f62a19bf3f7dd9f203cf10f6b541e0ee Fix automatic quality control handling of too-long lines 2025-02-09T22:17:47+01:00 Marco Ricci software@the13thletter.info <pre>In general, we want the formatter to deal with too-long lines (E501) as much as possible by itself, and the linter to warn us on E501 lines the formatter *cannot* deal with. However, just naively running the linter and formatter causes the linter to abort on any E501 lines it encounters, because the linter cannot auto-fix them. So we want to run the linter twice, once before the formatter and once after the formatter, while ignoring E501 violations in the first run. (But because E501 noqa markers are now treated as unnecessary noqa markers during the first linting run, we actually need to ignore both E501 and RUF100 in the first run.) &lt;/pre&gt; tag:gitlist.org,2012:commit/947a212e444c7ccf03c5005b9ba270e9549794f2 Fix minor message deviations in the source tree and phrasing in the manpages 2025-02-09T20:58:40+01:00 Marco Ricci software@the13thletter.info <pre>&lt;/pre&gt; tag:gitlist.org,2012:commit/47322731c63f9323de73c468671f1ab77f21ee7e Add message IDs (and missing entries) to the manpage diagnostics listings 2025-02-09T20:47:17+01:00 Marco Ricci software@the13thletter.info <pre>Using the new quality control scripts, add message IDs to all diagnostic messages described in the manpages, and add the entries missing from the manpages as well. &lt;/pre&gt; tag:gitlist.org,2012:commit/7ad6f085929dbe15d25b9e1885948fdfc752c1ee Add quality control scripts 2025-02-09T20:47:17+01:00 Marco Ricci software@the13thletter.info <pre>Add a quality control script `qc_auto.py` that calls the linter, the formatter, the type checker, the test suite and the documentation builder, depending on what branch we are on. It is intended to be usable as a pre-commit hook. Add another quality control script `man_diagnostics.py` that checks that the diagnostics documented in the manpages are complete, and match the enum values within `derivepassphrase`. It relies on annotations (comments) in the manpages to map description texts to the respective enum values (the mapping is not one-to-one). It also does a (rudimentary) check that every warning and error message is mentioned somewhere in the source tree (besides the messages module that defines those messages). &lt;/pre&gt;