Files
gentoo/dev-python/pyspf/pyspf-2.0.12.ebuild
Michał Górny 68ccbcc4e7 dev-python/pyspf: Clean py2 deps up
Signed-off-by: Michał Górny <mgorny@gentoo.org>
2020-03-17 09:07:29 +01:00

34 lines
792 B
Bash

# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="5"
PYTHON_COMPAT=( python3_6 )
PYTHON_REQ_USE="ipv6?"
inherit distutils-r1
DESCRIPTION="Python implementation of the Sender Policy Framework (SPF) protocol"
HOMEPAGE="https://pypi.org/project/pyspf/"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}t.tar.gz"
LICENSE="PSF-2"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE="ipv6 test"
RESTRICT="!test? ( test )"
# >=python-3.3 comes with the built-in ipaddress module
RDEPEND="dev-python/authres[${PYTHON_USEDEP}]
dev-python/pydns:3[${PYTHON_USEDEP}]"
DEPEND="test? ( ${RDEPEND}
dev-python/pyyaml[${PYTHON_USEDEP}] )"
REQUIRED_USE="test? ( ipv6 )"
python_test() {
pushd test &> /dev/null
"${PYTHON}" testspf.py || die
popd &> /dev/null
}