dev-python/python-email-validator: new package of 1.1.1 version

Adds new package dev-python/python-email-validator-1.1.1

Signed-off-by: Viktar Patotski <xp.vit.blr@gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/15877
Signed-off-by: Michał Górny <mgorny@gentoo.org>
This commit is contained in:
Viktar Patotski
2020-05-19 14:01:16 +02:00
committed by Michał Górny
parent 47d7a66ef3
commit 3c0085f33b
3 changed files with 55 additions and 0 deletions

View File

@@ -0,0 +1 @@
DIST python-email-validator-1.1.1.tar.gz 18497 BLAKE2B a65a5603854920d022062fb4f1575eafe7274e5501ae00fdb58a53a75c6582353ce2c46e20a6a172e7a4a1bbe2b25515b543ace2af4151102c5201ff1ac27132 SHA512 fb4dc5b728adca6041129aa3eecb3efbb358ecf47bf383737936132df7b24c3b9e47e56918d375d8eb4a2535d56ce22c9e03dc126dafd8894911b43fe30f5162

View File

@@ -0,0 +1,21 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<email>andrewammerlaan@riseup.net</email>
<name>Andrew Ammerlaan</name>
</maintainer>
<maintainer type="person">
<email>xp.vit.blr@gmail.com</email>
<name>Viktar Patotski</name>
</maintainer>
<maintainer type="project">
<email>proxy-maint@gentoo.org</email>
<name>Proxy Maintainers</name>
</maintainer>
<upstream>
<remote-id type="github">JoshData/python-email-validator</remote-id>
<remote-id type="pypi">email-validator</remote-id>
</upstream>
</pkgmetadata>

View File

@@ -0,0 +1,33 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
PYTHON_COMPAT=( python3_{6,7,8} )
DISTUTILS_USE_SETUPTOOLS=rdepend
inherit distutils-r1
DESCRIPTION="A robust email syntax and deliverability validation library"
HOMEPAGE="https://github.com/JoshData/python-email-validator"
SRC_URI="https://github.com/JoshData/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/${PN}-${PV}"
LICENSE="CC0-1.0"
KEYWORDS="~amd64 ~x86"
SLOT="0"
RDEPEND="
>=dev-python/idna-2.0.0[${PYTHON_USEDEP}]
>=dev-python/dnspython-1.15.0[${PYTHON_USEDEP}]
"
distutils_enable_tests pytest
python_prepare_all() {
# deliverability tests fail within network-sandbox
sed -e 's:test_deliverability_:_&:' \
-i tests/test_main.py || die
distutils-r1_python_prepare_all
}