Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/ripe-atlas-sagan/
Date: Sat, 30 Jul 2016 06:51:04
Message-Id: 1469861358.b87ce87928b776036cc19c05ab1e9ed3474c7004.monsieurp@gentoo
1 commit: b87ce87928b776036cc19c05ab1e9ed3474c7004
2 Author: Daniel Quinn <code <AT> danielquinn <DOT> org>
3 AuthorDate: Mon Jul 25 16:30:52 2016 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Sat Jul 30 06:49:18 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b87ce879
7
8 net-libs/ripe-atlas-sagan: Version bump to 1.1.11
9
10 Closes: https://github.com/gentoo/gentoo/pull/1965
11
12 Signed-off-by: Patrice Clement <monsieurp <AT> gentoo.org>
13
14 net-libs/ripe-atlas-sagan/Manifest | 1 +
15 .../ripe-atlas-sagan-1.1.11.ebuild | 37 ++++++++++++++++++++++
16 2 files changed, 38 insertions(+)
17
18 diff --git a/net-libs/ripe-atlas-sagan/Manifest b/net-libs/ripe-atlas-sagan/Manifest
19 index f42cec3..d2e621c 100644
20 --- a/net-libs/ripe-atlas-sagan/Manifest
21 +++ b/net-libs/ripe-atlas-sagan/Manifest
22 @@ -1,2 +1,3 @@
23 DIST ripe.atlas.sagan-1.1.10.tar.gz 128425 SHA256 3831bf2bc66188c5764b3d0b3c0e5387b3d670d0a8839ed464a244c6ffe5288b SHA512 dab5aa200a77ca4f4a29b2cef79df7c12cee4e6ff2583e5cdf1e6e381b9ca4de2e4bf8c56e9856f9b79ed196f72304d62b8cbaa76b0aa9a5d5294559b8f6bbce WHIRLPOOL 576de474f85db1c6eb22ed897a08deeae9d071b132ae67502ab849753d49760abf7a0facf20eabfe2c15f10331c245237d07149d3cf8e4243cd6a6a50bd73d57
24 +DIST ripe.atlas.sagan-1.1.11.tar.gz 102136 SHA256 b51c464b6ef4f2cca0621bb1c4a2c626b58afbe9c32c5292c6ab7c8c1b705d08 SHA512 4c2ba0774be46cf9dc9eafe5904dd7915f21bfa047fcf5867d6e1a41a4370f70cc837d398368efa2f4b24750f655514287dcd5b97a1b47e725fba3f17f49d477 WHIRLPOOL 10db92116c0d9b9e0c739ca7468a193d3acaf24594548c5e1ff2c75e48f8f15f93025af6f9c630766c093c6ebc39d2dc409e45b27a15bcca4169f3be87bde548
25 DIST ripe.atlas.sagan-1.1.8.tar.gz 100037 SHA256 bb394f738570b0b0c18257856b61c730375d91996c8c726f9dcd367fd618b3d8 SHA512 9e89eff270d58ac0d69abf5c589a129b468ad7adbe49144eae9e3ee1a73ada3278efbf395aea02b612fd3b3b3db2996d68587f5465b1cec29de79b112cb20b53 WHIRLPOOL 7bb747e21a0ab6030e9fa1de827bfecddc34e596aadea5f9de2f05b13d6aff221982ed3a7bdd13256c6686e644b611bc80d395a401eaa0c0fda95f856b543339
26
27 diff --git a/net-libs/ripe-atlas-sagan/ripe-atlas-sagan-1.1.11.ebuild b/net-libs/ripe-atlas-sagan/ripe-atlas-sagan-1.1.11.ebuild
28 new file mode 100644
29 index 0000000..bce60c5
30 --- /dev/null
31 +++ b/net-libs/ripe-atlas-sagan/ripe-atlas-sagan-1.1.11.ebuild
32 @@ -0,0 +1,37 @@
33 +# Copyright 1999-2016 Gentoo Foundation
34 +# Distributed under the terms of the GNU General Public License v2
35 +# $Id$
36 +
37 +EAPI=6
38 +
39 +PYTHON_COMPAT=( python2_7 python{3_4,3_5} )
40 +
41 +inherit distutils-r1
42 +
43 +MY_PN=${PN//-/.}
44 +DESCRIPTION="A parsing library for RIPE Atlas result strings"
45 +HOMEPAGE="https://atlas.ripe.net/"
46 +SRC_URI="mirror://pypi/${PN:0:1}/ripe.atlas.sagan/ripe.atlas.sagan-${PV}.tar.gz"
47 +
48 +LICENSE="GPL-3"
49 +SLOT="0"
50 +KEYWORDS="~amd64 ~x86"
51 +IUSE="test"
52 +DOCS=( CHANGES.rst README.rst )
53 +
54 +S="${WORKDIR}/${MY_PN}-${PVR}"
55 +
56 +RDEPEND="
57 + dev-python/python-dateutil[${PYTHON_USEDEP}]
58 + dev-python/pytz[${PYTHON_USEDEP}]
59 + dev-python/pyopenssl[${PYTHON_USEDEP}]
60 + dev-python/ujson[${PYTHON_USEDEP}]"
61 +DEPEND="
62 + dev-python/setuptools[${PYTHON_USEDEP}]
63 + test? (
64 + ${RDEPEND}
65 + dev-python/nose[${PYTHON_USEDEP}] )"
66 +
67 +python_test() {
68 + nosetests --verbose || die "Tests failed with ${EPYTHON}"
69 +}