commit: ef6a6d05fa9d20f5f4cebb5a67ebbc917a080377
Author: Daniel Quinn <code <AT> danielquinn <DOT> org>
AuthorDate: Sun Apr 3 12:41:41 2016 +0000
Commit: Michael Palimaka <kensington <AT> gentoo <DOT> org>
CommitDate: Sun Apr 3 18:46:54 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ef6a6d05
net-libs/ripe-atlas-sagan: Version bump to 1.1.10
net-libs/ripe-atlas-sagan/Manifest | 1 +
.../ripe-atlas-sagan-1.1.10.ebuild | 36 ++++++++++++++++++++++
2 files changed, 37 insertions(+)
diff --git a/net-libs/ripe-atlas-sagan/Manifest
b/net-libs/ripe-atlas-sagan/Manifest
index 25ea14e..f42cec3 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 0000000..3691913
--- /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}"
+}