Gentoo Archives: gentoo-commits

From: Justin Lecher <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pytest-httpbin/
Date: Thu, 17 Dec 2015 14:49:06
Message-Id: 1450363726.08f6bdac8b7b8c00bd92564fd51d2ee2a3b4a31a.jlec@gentoo
1 commit: 08f6bdac8b7b8c00bd92564fd51d2ee2a3b4a31a
2 Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
3 AuthorDate: Thu Dec 17 14:24:15 2015 +0000
4 Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
5 CommitDate: Thu Dec 17 14:48:46 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=08f6bdac
7
8 dev-python/pytest-httpbin: New package, ebuild written by me
9
10 Package-Manager: portage-2.2.26
11 Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>
12
13 dev-python/pytest-httpbin/Manifest | 1 +
14 dev-python/pytest-httpbin/metadata.xml | 12 +++++++
15 .../pytest-httpbin/pytest-httpbin-0.2.0.ebuild | 38 ++++++++++++++++++++++
16 3 files changed, 51 insertions(+)
17
18 diff --git a/dev-python/pytest-httpbin/Manifest b/dev-python/pytest-httpbin/Manifest
19 new file mode 100644
20 index 0000000..e18ea7a
21 --- /dev/null
22 +++ b/dev-python/pytest-httpbin/Manifest
23 @@ -0,0 +1 @@
24 +DIST pytest-httpbin-0.2.0.tar.gz 9372 SHA256 67a6d8e7890630b334e1cb38548a7118cb15930e218ece5b7a8bc94a8696ceed SHA512 a8e80979de59578a7cf16fa6cc08386bac9357bc8b48e34fc2a24cea18d531e61bf3c2474f8fc1b230dcd31641cb4bc960bab05e4bdbab98637c2fbf08671bfd WHIRLPOOL b5b532a1cc9e4b06f67787ca7ada0614b5145245934bcd796586fe0d18d186529388f608b24222a1b9372393e38f0a81df75ab205eafe134bb3287a34b122fec
25
26 diff --git a/dev-python/pytest-httpbin/metadata.xml b/dev-python/pytest-httpbin/metadata.xml
27 new file mode 100644
28 index 0000000..3748c0c
29 --- /dev/null
30 +++ b/dev-python/pytest-httpbin/metadata.xml
31 @@ -0,0 +1,12 @@
32 +<?xml version="1.0" encoding="UTF-8"?>
33 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
34 +<pkgmetadata>
35 + <herd>python</herd>
36 + <upstream>
37 + <remote-id type="pypi">pytest-httpbin</remote-id>
38 + <maintainer status="unknown">
39 + <email>me@×××××××××××××.org</email>
40 + <name>Kevin McCarthy</name>
41 + </maintainer>
42 + </upstream>
43 +</pkgmetadata>
44
45 diff --git a/dev-python/pytest-httpbin/pytest-httpbin-0.2.0.ebuild b/dev-python/pytest-httpbin/pytest-httpbin-0.2.0.ebuild
46 new file mode 100644
47 index 0000000..12fb946
48 --- /dev/null
49 +++ b/dev-python/pytest-httpbin/pytest-httpbin-0.2.0.ebuild
50 @@ -0,0 +1,38 @@
51 +# Copyright 1999-2015 Gentoo Foundation
52 +# Distributed under the terms of the GNU General Public License v2
53 +# $Id$
54 +
55 +EAPI=5
56 +
57 +PYTHON_COMPAT=( python2_7 python3_{3,4,5} pypy pypy3 )
58 +
59 +inherit distutils-r1
60 +
61 +DESCRIPTION="Easily test your HTTP library against a local copy of httpbin"
62 +HOMEPAGE="https://github.com/kevin1024/pytest-httpbin http://pypi.python.org/pypi/pytest-httpbin"
63 +SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
64 +
65 +LICENSE="MIT"
66 +SLOT="0"
67 +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
68 +IUSE="test"
69 +
70 +RDEPEND="
71 + dev-python/decorator[${PYTHON_USEDEP}]
72 + dev-python/flask[${PYTHON_USEDEP}]
73 + dev-python/httpbin[${PYTHON_USEDEP}]
74 + dev-python/six[${PYTHON_USEDEP}]
75 +"
76 +DEPEND="${REDEPEND}
77 + dev-python/setuptools[${PYTHON_USEDEP}]
78 + test? (
79 + dev-python/pytest[${PYTHON_USEDEP}]
80 + )"
81 +
82 +# Not includd
83 +RESTRICT=test
84 +
85 +python_test() {
86 + PYTEST_PLUGINS=pytest_httpbin \
87 + py.test -v -s || die
88 +}