diff options
author | V3n3RiX <venerix@koprulu.sector> | 2022-02-02 01:39:05 +0000 |
---|---|---|
committer | V3n3RiX <venerix@koprulu.sector> | 2022-02-02 01:39:05 +0000 |
commit | fcc5224904648a8e6eb528d7603154160a20022f (patch) | |
tree | 3bfce096b38a9cea8eed13fc70c1526c456e9abd /dev-python/pyspf | |
parent | 2fd57282f0262ca084e05b0f2c63fbada395d02b (diff) |
gentoo resync : 02.02.2022
Diffstat (limited to 'dev-python/pyspf')
-rw-r--r-- | dev-python/pyspf/Manifest | 1 | ||||
-rw-r--r-- | dev-python/pyspf/pyspf-2.0.14-r3.ebuild | 37 |
2 files changed, 38 insertions, 0 deletions
diff --git a/dev-python/pyspf/Manifest b/dev-python/pyspf/Manifest index 7cc2db6f9dee..e25d95cb0ef8 100644 --- a/dev-python/pyspf/Manifest +++ b/dev-python/pyspf/Manifest @@ -1,3 +1,4 @@ DIST pyspf-2.0.14.tar.gz 69446 BLAKE2B 95a3bf89ab85aad84dcbbe81ada7f19d23cc689893df1d1317c0e06eb1f6b6d21b1e805d68e7c0c84161d711b9c6067f115d78c8786ce384036f7d0c425269b9 SHA512 ca801a899a80c18cd2c6bb8c125817c29898189805040cce8d29ace7a5aa34b43b9d10545150a1f39abd7bc49cd8da4fe753a04ac9b911e7bb9d77473753eeee EBUILD pyspf-2.0.14-r2.ebuild 739 BLAKE2B a3a4c18a907486036340eb42d5faf20c415835719cb96bac0e89e8a23b4546dbfbe1fa25ce378cb51bf1300c4e1e3386a69b7496bdf2c12a2283a6bbbee3ebcf SHA512 ae00b6a3ef3e08d2b86715034f74cc8c38a93888c27880a1c6375185c52750248e2802ef54c467d7a78d37607c165414448371d581f54dfc3b7e9c8e66c354b2 +EBUILD pyspf-2.0.14-r3.ebuild 745 BLAKE2B 0144bffb17cb76e242b2ce5af5dd6594f0e7f412d287ff5254771bb30add4b609a13f6db2960b6e3d0ec3c3c82bf0ac68bf3bef098daa039eb6824199811dd76 SHA512 45063f73131636f6e759e359d7de7ebbef0e7b11d2b4750fdd4c42dc054cdb81128102eab384d5f900cd0efc0d9dd04c8735b635f7133f226e2b1f04008fa48e MISC metadata.xml 344 BLAKE2B 9ddbfce5bfcf70dc0d1fc3ee2653501b71f2c82b5e31a389588e0a765eca0e54f8a3f6073b6579f1e5645087e1193f73b48849055357f7e2b7a3ee69e32a94b2 SHA512 87bc7c44b7066730b3f18d6cc89245dfd3bc01fe00dd78ffdf84d5ebef731fa0e86114e8832f4631055acb3d1ac9ca2566517606ba6bc7f1377acb3ef4d64714 diff --git a/dev-python/pyspf/pyspf-2.0.14-r3.ebuild b/dev-python/pyspf/pyspf-2.0.14-r3.ebuild new file mode 100644 index 000000000000..c21474ff960f --- /dev/null +++ b/dev-python/pyspf/pyspf-2.0.14-r3.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{8..10} ) +PYTHON_REQ_USE="ipv6(+)" + +inherit distutils-r1 + +DESCRIPTION="Python implementation of the Sender Policy Framework (SPF)" +HOMEPAGE="https://pypi.org/project/pyspf/" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="PSF-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="test" +RESTRICT="!test? ( test )" + +RDEPEND=" + dev-python/authres[${PYTHON_USEDEP}] + dev-python/dnspython[${PYTHON_USEDEP}] +" + +BDEPEND=" + test? ( + ${RDEPEND} + dev-python/pyyaml[${PYTHON_USEDEP}] + ) +" + +python_test() { + cd test || die + "${EPYTHON}" testspf.py || die "Test fail with ${EPYTHON}" +} |