./security/py-gnupg, Wrapper for the Gnu Privacy Guard

[ CVSweb ] [ Homepage ] [ RSS ] [ Required by ] [ Add to tracker ]


Branch: CURRENT, Version: 0.5.2, Package name: py311-gnupg-0.5.2, Maintainer: pkgsrc-users

This module allows easy access to GnuPG's key management, encryption and
signature functionality from Python programs.


Required to run:
[security/gnupg] [lang/python27]

Required to build:
[pkgtools/cwrappers]

Master sites:

Filesize: 63.019 KB

Version history: (Expand)


CVS history: (Expand)


   2023-12-17 17:13:59 by Adam Ciarcinski | Files touched by this commit (2) | Package updated
Log message:
py-gnupg: updated to 0.5.2

0.5.2

* Fix 228: Clarify documentation for encryption/decryption.
* Make I/O buffer size configurable via ``buffer_size`` attribute on a ``GPG`` \ 
instance.
   2023-10-28 21:57:26 by Thomas Klausner | Files touched by this commit (516) | Package updated
Log message:
python/wheel.mk: simplify a lot, and switch to 'installer' for installation

This follows the recommended bootstrap method (flit_core, build, installer).

However, installer installs different files than pip, so update PLISTs
for all packages using wheel.mk and bump their PKGREVISIONs.
   2023-07-25 10:08:54 by Adam Ciarcinski | Files touched by this commit (3) | Package updated
Log message:
py-gnupg: updated to 0.5.1

0.5.1

Released: 2023-07-22

Added TRUST_EXPIRED to trust_keys. Thanks to Leif Liddy for the patch.
Fix 206: Remove deprecated --always-trust in favour of --trust-model always
Fix 208: Add status_detail attribute to result objects which is populated when \ 
the status is 'invalid recipient' (encryption/decryption) or 'invalid signer' \ 
(signing). This attribute will be set when the result object's status attribute \ 
is set to invalid recipient and will contain more information about the failure \ 
in the form of reason:ident where reason is a text description of the reason, \ 
and ident identifies the recipient key.
Add scan_keys_mem() function to scan keys in a string. Thanks to Sky Moore for \ 
the patch.
Fix 214: Handle multiple signatures when one of them is invalid or unverified.
A problems attribute was added which holds problems reported by gpg during \ 
verification. This is a list of dictionaries, one for each reported problem. \ 
Each dictionary will have status and keyid keys indicating the problem and the \ 
corresponding key; other information in the dictionaries will be error specific.
Fix 217: Use machine-readable interface to query the gpg version. Thanks to \ 
Justus Winter for the patch.
Added the ability to export keys to a file. Thanks to Leif Liddy for the patch.
   2023-06-06 14:42:56 by Taylor R Campbell | Files touched by this commit (1319)
Log message:
Mass-change BUILD_DEPENDS to TOOL_DEPENDS outside mk/.

Almost all uses, if not all of them, are wrong, according to the
semantics of BUILD_DEPENDS (packages built for target available for
use _by_ tools at build-time) and TOOL_DEPEPNDS (packages built for
host available for use _as_ tools at build-time).

No change to BUILD_DEPENDS as used correctly inside buildlink3.

As proposed on tech-pkg:
https://mail-index.netbsd.org/tech-pkg/2023/06/03/msg027632.html
   2022-08-24 09:02:07 by Adam Ciarcinski | Files touched by this commit (2) | Package updated
Log message:
py-gnupg: updated to 0.5.0

0.5.0
This is an enhancement and bug-fix release, and all users are encouraged to
upgrade.
   2022-05-23 03:02:26 by David H. Gutteridge | Files touched by this commit (1)
Log message:
py-gnupg: incompatible with Python 2.7 (un-break bulk builds)
   2022-05-22 14:17:38 by Adam Ciarcinski | Files touched by this commit (4) | Package updated
Log message:
py-gnupg: updated to 0.4.9

0.4.9

Added a status attribute to the returned object from gen_key() which is set to \ 
'ok' if a key was successfully created, or 'key not created' if that was \ 
reported by gpg, or None in any other case.
Provided the ability to add subkeys. Thanks to Daniel Kilimnik for the feature \ 
request and patch.
Added keygrip values to the information collected when keys are listed. Thanks \ 
to Daniel Kilimnik for the feature request and patch.
Added extra_args to send_keys(), recv_keys() and search_keys() to allow passing \ 
options relating to key servers.
   2022-01-11 09:45:11 by Adam Ciarcinski | Files touched by this commit (5) | Package updated
Log message:
py-gnupg: updated to 0.4.8

Switch to python-gnupg.

This module allows easy access to GnuPG’s key management, encryption and \ 
signature functionality from Python programs. It is intended for use with Python \ 
2.4 or greater.