Package: beaker / 1.11.0-1.1

Metadata

Package Version Patches format
beaker 1.11.0-1.1 3.0 (quilt)

Patch series

view the series file
Patch File delta Description
0001 Use cryptodomex instead of cryptodome.patch | (download)

beaker/crypto/pycrypto.py | 4 2 2 - 0 !
beaker/crypto/util.py | 4 2 2 - 0 !
setup.py | 2 1 1 - 0 !
3 files changed, 5 insertions( ), 5 deletions(-)

 use cryptodomex instead of cryptodome

The http://www.pycryptodome.org/ project is a fork of venerable
PyCrypto (which provides "import Crypto").

pycryptodome.org provides two PyPI packages: cryptodome and
cryptodomex.

- cryptodome is a drop-in replacement for PyCrypto: it also provides
"import Crypto".  However, this also means that it cannot be installed
at the same time as PyCrypto.

- cryptodomex is a "clean" alternative to PyCrypto: it provides the
same features but as "import Cryptodome", so it can be installed
side-by-side with PyCrypto.

The beaker upstream uses cryptodome, but there is no Debian package
for that.  There is only Debian package python3-pycryptodome, which
provides cryptodomex.

This patch modifies the upstream sources to use cryptodomex instead of
cryptodome.