diff options
author | Zac Medico <zmedico@gentoo.org> | 2017-02-23 19:40:49 -0800 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2017-02-23 19:40:49 -0800 |
commit | 011bfe3f17cbc88758436891821d2870b46f6cfd (patch) | |
tree | d4142bc984cba3ff31c260920b6dd247cd48fbe6 /dev-python/ntplib/ntplib-0.3.3.ebuild | |
parent | 7819b1ab4f30ecba101788a70aad0e8938cee39c (diff) | |
download | gentoo-011bfe3f17cbc88758436891821d2870b46f6cfd.tar.gz gentoo-011bfe3f17cbc88758436891821d2870b46f6cfd.tar.xz |
dev-python/ntplib: add package
Package-Manager: Portage-2.3.3, Repoman-2.3.1
Diffstat (limited to 'dev-python/ntplib/ntplib-0.3.3.ebuild')
-rw-r--r-- | dev-python/ntplib/ntplib-0.3.3.ebuild | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/dev-python/ntplib/ntplib-0.3.3.ebuild b/dev-python/ntplib/ntplib-0.3.3.ebuild new file mode 100644 index 00000000000..7e568f6d969 --- /dev/null +++ b/dev-python/ntplib/ntplib-0.3.3.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 +PYTHON_COMPAT=( python{2_7,3_{4,5,6}} ) + +inherit distutils-r1 + +DESCRIPTION="Python NTP library" +HOMEPAGE="https://pypi.python.org/pypi/ntplib/" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" +# tests fail with network-sandbox +RESTRICT="test" + +python_test() { + "${PYTHON:-python}" ./test_ntplib.py +} |