dev-python/dkimpy: Bump to 1.1.5

Signed-off-by: Michał Górny <mgorny@gentoo.org>
This commit is contained in:
Michał Górny
2023-07-29 04:49:49 +02:00
parent fcc4d76ffa
commit ebf1bfaef8
2 changed files with 38 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST dkimpy-1.1.4.tar.gz 66966 BLAKE2B f07d1d704d08f5d812c3937622c4ab8a2359f9ffbb9188a5c66cdf96fc050427a9fcd58696e6f592b53026034038fe71d3f2ea2708705fe0289b26ccf36a521b SHA512 230808753228c0c3823bf7ef69f19e349dc03e734b534d3f941b1e3183a52b2b370dbbb7568f663095d003dcdbd649f2230d1548e0d140605f243350570b8830
DIST dkimpy-1.1.5.tar.gz 67064 BLAKE2B d4b192a08469be678b5f08cdf2a582ec5cbd4ada56a02de011c372518a3c863e2fea1976af507a1d202f6a36f9ccef8621ba882f542e26ba22acc2f64daaf735 SHA512 650476a54cb39d72fefe05a6fdd8167694cd6f1cf521efb7807713ccfa868dd5458732ee8501c4edea203f9726689c9632a92473698ee31889208d19891b7a13

View File

@@ -0,0 +1,37 @@
# Copyright 2020-2023 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
}