summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2019-10-18openpgp: Reduce gpg debug options for gpg1.x compatMichał Górny
Signed-off-by: Michał Górny <mgorny@gentoo.org>
2019-10-18openpgp: Obtain debug logs from GnuPGMichał Górny
Signed-off-by: Michał Górny <mgorny@gentoo.org>
2019-10-18openpgp: Fix whitespaceMichał Górny
Signed-off-by: Michał Górny <mgorny@gentoo.org>
2019-10-18profile: Update default set of hashesMichał Górny
Update the default set of hashes to match current ::gentoo set. This incidentally fixes test failures with new CPython versions that seem to no longer include Whirlpool support. Bug: https://bugs.gentoo.org/697968 Signed-off-by: Michał Górny <mgorny@gentoo.org>
2019-04-27Bump to v14.1Michał Górny
Signed-off-by: Michał Górny <mgorny@gentoo.org>
2019-04-25openpgp: Also handle EBUSY for NFSMichał Górny
Signed-off-by: Michał Górny <mgorny@gentoo.org>
2019-04-24openpgp: Handle ENOTEMPTY in gpg-agent cleanupMichał Górny
Bug: https://bugs.gentoo.org/684172 Signed-off-by: Michał Górny <mgorny@gentoo.org>
2019-03-16tests: Fix MockedWKDOpenPGPEnvironment._spawn_gpg() return typesMichał Górny
2019-03-16openpgp: Fix decoding bytestrings for debugMichał Górny
Bug: https://bugs.gentoo.org/680524
2019-02-26openpgp: Add debug output to WKD routinesMichał Górny
2019-02-26cli: Support debug loggingMichał Górny
2018-08-02tox: Enable testing py37 by defaultMichał Górny
2018-08-01Bump to 14.0Michał Górny
2018-08-01setup.py: Use env-based shebangMichał Górny
2018-07-26openpgp: Process import status instead of export, for GnuPG-1.4Michał Górny
GnuPG 1.4 does not print machine-readable data when exporting keys. Rework the WKD code to process the data on import instead. This means that keys will be imported via WKD even if not all were exported -- however, that should cause no harm as invalid data still will not be accepted.
2018-07-26openpgp: Fix listing keys with GnuPG-1.4Michał Górny
2018-07-25tests: Add half-mocked tests for WKD-based refreshMichał Górny
2018-07-25tests: Add tests for keyserver-based refreshingMichał Górny
2018-07-24openpgp: Support specifying custom keyserver URLMichał Górny
2018-07-24openpgp: Support key refresh via WKDMichał Górny
Add support for using WKD to refetch keys instead of keyservers. This is experimental but should be more reliable and provide similar level of security (provided that we require that all keys can be fetched via WKD).
2018-07-16tox: Use pytest-xdist for concurrent testingMichał Górny
2018-07-16tox: Use pytest to run testsMichał Górny
2018-07-16tox: Simplify dependency specificationsMichał Górny
2018-06-26Bump to 13.1Michał Górny
2018-06-26gen_fast_metamanifest: Fix parallel processing of md5-cacheMichał Górny
2018-05-06Remove obsolete repo.postsync.d scriptMichał Górny
Remove the repo.postsync.d script for Portage that is obsolete now that Portage has built-in gemato verification code.
2018-04-13Bump to v13.0Michał Górny
2018-04-12Disable multiprocessing to avoid unresolved deadlocksMichał Górny
Remove the use of multiprocessing in order to avoid unresolved deadlocks some of our users are hitting. The wrapper class is preserved, so that multiprocessing can be reintroduced when the issue is resolved.
2018-04-04Bump to v12.2Michał Górny
2018-04-04Use imap_unordered()->map() fallback for all callsMichał Górny
Move the imap_unordered()->map() fallback for old Python versions into the utility module, and use it consistently for all calls. Previously, it was missing for Manifest loader.
2018-03-26gen_fast_metamanifest: Account for empty categoriesMichał Górny
2018-03-16Bump to v12.1Michał Górny
2018-03-16openpgp: Honor user's http_proxy settingMichał Górny
Solution suggested by Patrik Osgnach. Bug: https://bugs.gentoo.org/649642
2018-03-16Introduce a context manager for multiprocessing.PoolMichał Górny
2018-03-13tests: Fix one more cross-fs test to test for mountpointMichał Górny
2018-03-11Bump to v12.0Michał Górny
2018-02-22cli: Add -x option to prevent crossing filesystem boundariesMichał Górny
2018-02-22Allow cross-device Manifests by defaultMichał Górny
Default to allowing cross-device Manifests for better compatibility. This avoids issues with overlayfs, and also makes gemato behave more like other tools (rsync, find, cp) that allow crossing filesystems by default.
2018-02-22verify: Account for EOPNOTSUPP when opening sockets on FBSDMichał Górny
2018-02-22cli: Split common RecursiveManifestLoader options into mixinMichał Górny
2018-02-22cli: Remove __slots__ (they do not like mixins)Michał Górny
2018-02-22cli: Convert to mixin-styleMichał Górny
2018-02-22tests: Assert for /proc being a mountpoint for cross-fs testsMichał Górny
Skip cross-fs tests if /proc is not a mountpoint. This handles cases when /proc exists but is not mounted which is quite normal e.g. on Gentoo/FreeBSD.
2018-02-13Bump to 11.2Michał Górny
2018-02-13hash: Read small-ish files into memory via a single callMichał Górny
Read files that are known to be small-ish (up to 1 MiB) into the memory via a single read() call instead of reading in smaller parts. This is mostly meant to workaround a bug in PyPy that causes wrong data when small buffers are repeatedly passed to C extensions. Apparently slurping the whole file does not exhibit this problem in gemato.
2018-02-11cli: Attempt to fix Python 2 compatibilityMichał Górny
2018-02-11bin: Reuse setuptools_main()Michał Górny
2018-02-10README: document the utility functionsMichał Górny
2018-02-10README: document the two other main commandsMichał Górny
2018-02-10README: update requirementsMichał Górny