diff options
author | Daniel Quinn <code@danielquinn.org> | 2016-04-03 13:41:41 +0100 |
---|---|---|
committer | Michael Palimaka <kensington@gentoo.org> | 2016-04-04 04:46:54 +1000 |
commit | ef6a6d05fa9d20f5f4cebb5a67ebbc917a080377 (patch) | |
tree | d8bedfb8b6328baf7a6147d175a003640cad799c /net-libs/ripe-atlas-sagan | |
parent | app-backup/kfoldersync: version bump (diff) | |
download | gentoo-ef6a6d05fa9d20f5f4cebb5a67ebbc917a080377.tar.gz gentoo-ef6a6d05fa9d20f5f4cebb5a67ebbc917a080377.tar.bz2 gentoo-ef6a6d05fa9d20f5f4cebb5a67ebbc917a080377.zip |
net-libs/ripe-atlas-sagan: Version bump to 1.1.10
Diffstat (limited to 'net-libs/ripe-atlas-sagan')
-rw-r--r-- | net-libs/ripe-atlas-sagan/Manifest | 1 | ||||
-rw-r--r-- | net-libs/ripe-atlas-sagan/ripe-atlas-sagan-1.1.10.ebuild | 36 |
2 files changed, 37 insertions, 0 deletions
diff --git a/net-libs/ripe-atlas-sagan/Manifest b/net-libs/ripe-atlas-sagan/Manifest index 25ea14e833e4..f42cec37ce28 100644 --- a/net-libs/ripe-atlas-sagan/Manifest +++ b/net-libs/ripe-atlas-sagan/Manifest @@ -1 +1,2 @@ +DIST ripe.atlas.sagan-1.1.10.tar.gz 128425 SHA256 3831bf2bc66188c5764b3d0b3c0e5387b3d670d0a8839ed464a244c6ffe5288b SHA512 dab5aa200a77ca4f4a29b2cef79df7c12cee4e6ff2583e5cdf1e6e381b9ca4de2e4bf8c56e9856f9b79ed196f72304d62b8cbaa76b0aa9a5d5294559b8f6bbce WHIRLPOOL 576de474f85db1c6eb22ed897a08deeae9d071b132ae67502ab849753d49760abf7a0facf20eabfe2c15f10331c245237d07149d3cf8e4243cd6a6a50bd73d57 DIST ripe.atlas.sagan-1.1.8.tar.gz 100037 SHA256 bb394f738570b0b0c18257856b61c730375d91996c8c726f9dcd367fd618b3d8 SHA512 9e89eff270d58ac0d69abf5c589a129b468ad7adbe49144eae9e3ee1a73ada3278efbf395aea02b612fd3b3b3db2996d68587f5465b1cec29de79b112cb20b53 WHIRLPOOL 7bb747e21a0ab6030e9fa1de827bfecddc34e596aadea5f9de2f05b13d6aff221982ed3a7bdd13256c6686e644b611bc80d395a401eaa0c0fda95f856b543339 diff --git a/net-libs/ripe-atlas-sagan/ripe-atlas-sagan-1.1.10.ebuild b/net-libs/ripe-atlas-sagan/ripe-atlas-sagan-1.1.10.ebuild new file mode 100644 index 000000000000..3691913a271a --- /dev/null +++ b/net-libs/ripe-atlas-sagan/ripe-atlas-sagan-1.1.10.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +PYTHON_COMPAT=( python2_7 python3_4 ) + +inherit distutils-r1 + +MY_PN=${PN//-/.} +DESCRIPTION="A parsing library for RIPE Atlas result strings" +HOMEPAGE="https://atlas.ripe.net/" +SRC_URI="mirror://pypi/${PN:0:1}/ripe.atlas.sagan/ripe.atlas.sagan-${PVR}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="test" + +S="${WORKDIR}/${MY_PN}-${PVR}" + +RDEPEND=" + dev-python/python-dateutil[${PYTHON_USEDEP}] + dev-python/pytz[${PYTHON_USEDEP}] + dev-python/pyopenssl[${PYTHON_USEDEP}] + dev-python/ujson[${PYTHON_USEDEP}]" +DEPEND=" + dev-python/setuptools[${PYTHON_USEDEP}] + test? ( + "${RDEPEND}" + dev-python/nose[${PYTHON_USEDEP}] )" + +python_test() { + nosetests --verbose || die "Tests failed with ${EPYTHON}" +} |