Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: www-client/ripe-atlas-cousteau/
Date: Thu, 17 Dec 2015 07:56:58
Message-Id: 1450314625.c6f1f438fbcb0a81c7474fb05ddc95a45fa545a9.monsieurp@gentoo
1 commit: c6f1f438fbcb0a81c7474fb05ddc95a45fa545a9
2 Author: Daniel Quinn <code <AT> danielquinn <DOT> org>
3 AuthorDate: Wed Dec 16 15:36:45 2015 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Thu Dec 17 01:10:25 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c6f1f438
7
8 www-client/ripe-atlas-cousteau: Initial commit
9
10 www-client/ripe-atlas-cousteau/Manifest | 2 ++
11 www-client/ripe-atlas-cousteau/metadata.xml | 10 ++++++
12 .../ripe-atlas-cousteau-1.0.6.ebuild | 37 ++++++++++++++++++++++
13 3 files changed, 49 insertions(+)
14
15 diff --git a/www-client/ripe-atlas-cousteau/Manifest b/www-client/ripe-atlas-cousteau/Manifest
16 new file mode 100644
17 index 0000000..5f4cfa2
18 --- /dev/null
19 +++ b/www-client/ripe-atlas-cousteau/Manifest
20 @@ -0,0 +1,2 @@
21 +DIST ripe.atlas.cousteau-1.0.6.tar.gz 45467 SHA256 1407b003a03f359739d35010812af2841bc9df2784cd2078e55ac34d0a858ad6 SHA512 212c9890af269f945d01a1b587ba87583cbde87ce0a64b09e053644f9fa4cd01414a1092a39d0d21d68b3bd5977e0159c6a32196aaadbd78940fd4675b791daf WHIRLPOOL b65e12a89a3cfee2ca5da4311392a1ecca4fc11c4b38ca911a526cc925491b799d1504581a955dd5bd5c1feb3e71d5a73c06e5b07c26a8fbfdb28bcc748f6a1d
22 +EBUILD ripe-atlas-cousteau-1.0.6.ebuild 937 SHA256 b8b08a040230a6c3bc45a388c71c0dde74f47894bccfc656066dc0e80c264ca7 SHA512 fefda75c507fe675e44784ed6a0c2045b057288bd68a4ff36a449c7a207bc9c04d8add2112748ff55d4e77c5f8d54c417017fc74958b7c95f5d3d371e670df62 WHIRLPOOL 27ba1bb1b85f7f3b146f5d02924e7158c371500c4766f348232faab031a7a776682227ea4757e9877ef49aa517e15ee1d57e8d9d243c653ec868543f91312b38
23
24 diff --git a/www-client/ripe-atlas-cousteau/metadata.xml b/www-client/ripe-atlas-cousteau/metadata.xml
25 new file mode 100644
26 index 0000000..46c5726
27 --- /dev/null
28 +++ b/www-client/ripe-atlas-cousteau/metadata.xml
29 @@ -0,0 +1,10 @@
30 +<?xml version="1.0" encoding="UTF-8"?>
31 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
32 +<pkgmetadata>
33 + <herd>proxy-maintainers</herd>
34 + <maintainer>
35 + <email>gentoo@×××××××××××.org</email>
36 + <name>Daniel Quinn</name>
37 + <description>Proxied maintainer; set to assignee in all bugs</description>
38 + </maintainer>
39 +</pkgmetadata>
40
41 diff --git a/www-client/ripe-atlas-cousteau/ripe-atlas-cousteau-1.0.6.ebuild b/www-client/ripe-atlas-cousteau/ripe-atlas-cousteau-1.0.6.ebuild
42 new file mode 100644
43 index 0000000..157abbe
44 --- /dev/null
45 +++ b/www-client/ripe-atlas-cousteau/ripe-atlas-cousteau-1.0.6.ebuild
46 @@ -0,0 +1,37 @@
47 +# Copyright 1999-2015 Gentoo Foundation
48 +# Distributed under the terms of the GNU General Public License v2
49 +# $Id$
50 +
51 +EAPI=5
52 +
53 +PYTHON_COMPAT=( python2_7 python3_4 )
54 +
55 +inherit distutils-r1
56 +
57 +MY_PN=${PN//-/.}
58 +DESCRIPTION="A Python wrapper around the RIPE Atlas API"
59 +HOMEPAGE="https://atlas.ripe.net/"
60 +SRC_URI="mirror://pypi/${PN:0:1}/ripe.atlas.cousteau/ripe.atlas.cousteau-${PVR}.tar.gz"
61 +
62 +LICENSE="GPL-3"
63 +SLOT="0"
64 +KEYWORDS="~amd64 ~x86"
65 +IUSE="test"
66 +
67 +S="${WORKDIR}/${MY_PN}-${PVR}"
68 +
69 +RDEPEND="
70 + >=dev-python/socketio-client-0.6.5[${PYTHON_USEDEP}]
71 + >=dev-python/requests-2.7.0[${PYTHON_USEDEP}]
72 + dev-python/python-dateutil[${PYTHON_USEDEP}]"
73 +DEPEND="
74 + dev-python/setuptools[${PYTHON_USEDEP}]
75 + test? (
76 + "${RDEPEND}"
77 + dev-python/nose[${PYTHON_USEDEP}]
78 + dev-python/jsonschema[${PYTHON_USEDEP}]
79 + $(python_gen_cond_dep 'dev-python/mock[${PYTHON_USEDEP}]' python2_7) )"
80 +
81 +python_test() {
82 + nosetests --verbose || die "Tests failed with ${EPYTHON}"
83 +}