diff options
author | Michał Górny <mgorny@gentoo.org> | 2024-06-24 04:09:45 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2024-06-24 04:41:01 +0200 |
commit | 2ffed5577bccfa2a767545e92e56195ebab67511 (patch) | |
tree | cddbcd1ed416fe16aaba8b75f633b14d2a06961b /dev-python/dkimpy | |
parent | net-misc/tuba: Bump to 0.8.1 (diff) | |
download | gentoo-2ffed5577bccfa2a767545e92e56195ebab67511.tar.gz gentoo-2ffed5577bccfa2a767545e92e56195ebab67511.tar.bz2 gentoo-2ffed5577bccfa2a767545e92e56195ebab67511.zip |
dev-python/dkimpy: Bump to 1.1.7
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/dkimpy')
-rw-r--r-- | dev-python/dkimpy/Manifest | 1 | ||||
-rw-r--r-- | dev-python/dkimpy/dkimpy-1.1.7.ebuild | 37 |
2 files changed, 38 insertions, 0 deletions
diff --git a/dev-python/dkimpy/Manifest b/dev-python/dkimpy/Manifest index b252cae67397..23c1ceaf100a 100644 --- a/dev-python/dkimpy/Manifest +++ b/dev-python/dkimpy/Manifest @@ -1 +1,2 @@ DIST dkimpy-1.1.6.tar.gz 66557 BLAKE2B 89e6752b97611eba5ecf0f487d10b3210f7b898131e465639aa0a8f2120c3a2901ad844db275748148574cbfcd1a5eeaf3319c09172b51d7a79342a0ee16f285 SHA512 d61331cc7baa3bd5156d919a4a88ad792ac3c3077381585f8b5aa1a35dc50761b86286312e13f3514496ab50bdc6f2dac469f4b5419b49053c1c9204d569d317 +DIST dkimpy-1.1.7.tar.gz 66735 BLAKE2B 2cca9b23761a6b87cc94d441eb65788971338a53301d00b077e767b0f0591c1db88e64fb57a16e8d78cbdaa0fd8218cb32eb4f1fae2b6760bbbf80ae42e067cf SHA512 79f25bb9f83b3d75aa21aa5521b17679228cd196d26ca35afb8aaf44dd0454bc7dfa50802d33800b410ee680305f2b60da052a9fd9ed6d0aa5838e8093b9236e diff --git a/dev-python/dkimpy/dkimpy-1.1.7.ebuild b/dev-python/dkimpy/dkimpy-1.1.7.ebuild new file mode 100644 index 000000000000..58eb09537432 --- /dev/null +++ b/dev-python/dkimpy/dkimpy-1.1.7.ebuild @@ -0,0 +1,37 @@ +# Copyright 2020-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{10..12} ) + +inherit distutils-r1 optfeature pypi + +DESCRIPTION="DKIM and ARC email signing and verification library" +HOMEPAGE=" + https://launchpad.net/dkimpy/ + https://pypi.org/project/dkimpy/ +" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~x86" + +RDEPEND=" + >=dev-python/dnspython-2.0.0[${PYTHON_USEDEP}] +" +BDEPEND=" + test? ( + dev-python/authres[${PYTHON_USEDEP}] + dev-python/pynacl[${PYTHON_USEDEP}] + ) +" + +distutils_enable_tests unittest + +pkg_postinst() { + optfeature "ARC support" dev-python/authres + optfeature "ed25519 capability" dev-python/pynacl + optfeature "asyncio support" dev-python/aiodns +} |