diff options
author | Zac Medico <zmedico@gentoo.org> | 2018-01-14 16:15:39 -0800 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2018-01-14 16:16:50 -0800 |
commit | c10a55943f3e3df1d01b9cf9ae333f0182237267 (patch) | |
tree | 44593b9e7479b517ab8073f00ebf00e8ab643df4 /dev-python/pycares | |
parent | net-misc/youtube-dl: Old. (diff) | |
download | gentoo-c10a55943f3e3df1d01b9cf9ae333f0182237267.tar.gz gentoo-c10a55943f3e3df1d01b9cf9ae333f0182237267.tar.bz2 gentoo-c10a55943f3e3df1d01b9cf9ae333f0182237267.zip |
dev-python/pycares: version bump to 2.3.0
Package-Manager: Portage-2.3.19, Repoman-2.3.6
Diffstat (limited to 'dev-python/pycares')
-rw-r--r-- | dev-python/pycares/Manifest | 1 | ||||
-rw-r--r-- | dev-python/pycares/pycares-2.3.0.ebuild | 25 |
2 files changed, 26 insertions, 0 deletions
diff --git a/dev-python/pycares/Manifest b/dev-python/pycares/Manifest index 67dfbfad206d..b12e52f87bc2 100644 --- a/dev-python/pycares/Manifest +++ b/dev-python/pycares/Manifest @@ -1 +1,2 @@ DIST pycares-2.1.1.tar.gz 226787 BLAKE2B 26716906e78a3fa16bcbd143f63e633ffe4664706b2230f698ea933c15d057f92a0fedc45927743690e9ef8f84191e40f4215878ff2845fd1fb4bcf91f49b765 SHA512 c3524a49f5abe4222c9371ca269918eecf30a77bd52258187766833b4663be861678ebe6f1cb2f50e824d36e75938162d5528abd5445c477f23fb85c24572403 +DIST pycares-2.3.0.tar.gz 224941 BLAKE2B 9ab59f8f7294930b5ff97c7340c3f64cd039c4b291b7b33d00da85168638cdfc75552508a72afd91db28c4c1b823a018b45c346a3daf8da15d5160fd691b6c4a SHA512 dc707ab0320e03fb20e728e2e2e52e92ed3388afcf19e4553bc2a15c33a129abee39a9bc423edb7be7113d42989286ab8e8ad48699cc7433a6d8823460fd4678 diff --git a/dev-python/pycares/pycares-2.3.0.ebuild b/dev-python/pycares/pycares-2.3.0.ebuild new file mode 100644 index 000000000000..79fbb935df77 --- /dev/null +++ b/dev-python/pycares/pycares-2.3.0.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +PYTHON_COMPAT=( python2_7 python3_{4,5,6} ) + +inherit distutils-r1 + +DESCRIPTION="Python interface for c-ares" +HOMEPAGE="https://github.com/saghul/pycares/" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" +# Tests fail with network-sandbox, since they try to resolve google.com +RESTRICT="test" + +# uses bundled/patched c-ares +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" + +python_test() { + "${PYTHON:-python}" tests/tests.py || die +} |