Gentoo Archives: gentoo-commits

From: Alex Brandt <alunduil@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pytest-aiohttp/
Date: Sat, 24 Sep 2016 15:29:02
Message-Id: 1474730910.38d15791e6e281ca813f53d7796199e88553db51.alunduil@gentoo
1 commit: 38d15791e6e281ca813f53d7796199e88553db51
2 Author: Alex Brandt <alunduil <AT> gentoo <DOT> org>
3 AuthorDate: Sat Sep 24 15:28:30 2016 +0000
4 Commit: Alex Brandt <alunduil <AT> gentoo <DOT> org>
5 CommitDate: Sat Sep 24 15:28:30 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=38d15791
7
8 dev-python/pytest-aiohttp: add version 0.1.3
9
10 Package-Manager: portage-2.3.1
11
12 dev-python/pytest-aiohttp/Manifest | 1 +
13 dev-python/pytest-aiohttp/metadata.xml | 13 +++++++++++
14 .../pytest-aiohttp/pytest-aiohttp-0.1.3.ebuild | 25 ++++++++++++++++++++++
15 3 files changed, 39 insertions(+)
16
17 diff --git a/dev-python/pytest-aiohttp/Manifest b/dev-python/pytest-aiohttp/Manifest
18 new file mode 100644
19 index 00000000..0494d32
20 --- /dev/null
21 +++ b/dev-python/pytest-aiohttp/Manifest
22 @@ -0,0 +1 @@
23 +DIST pytest-aiohttp-0.1.3.tar.gz 6192 SHA256 c2391c424b5342f9234f5f56f15183d167050b50c08c96258c1816cdb5a0283f SHA512 2271f7730b91812a619e04522c13b7e2ff76353179a4588226d0b943b67f7397b966c1d3c24016861cc3eda3a541b3f0d3b2858a6ca3586f7707e10581c34e4c WHIRLPOOL 8bf1608b655db5cc3a932316e48fbff6ab4045971e5e0d2e7240219798bcffdb2f130a8270163b67d8f213a15242127721b128b0edb2a97fa8e07f1ce2026d98
24
25 diff --git a/dev-python/pytest-aiohttp/metadata.xml b/dev-python/pytest-aiohttp/metadata.xml
26 new file mode 100644
27 index 00000000..3e6df16
28 --- /dev/null
29 +++ b/dev-python/pytest-aiohttp/metadata.xml
30 @@ -0,0 +1,13 @@
31 +<?xml version="1.0" encoding="UTF-8"?>
32 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
33 +<pkgmetadata>
34 + <maintainer type="project">
35 + <email>python@g.o</email>
36 + </maintainer>
37 + <maintainer type="person">
38 + <email>alunduil@g.o</email>
39 + <name>Alex Brandt</name>
40 + </maintainer>
41 + <longdescription lang="en">
42 + </longdescription>
43 +</pkgmetadata>
44
45 diff --git a/dev-python/pytest-aiohttp/pytest-aiohttp-0.1.3.ebuild b/dev-python/pytest-aiohttp/pytest-aiohttp-0.1.3.ebuild
46 new file mode 100644
47 index 00000000..1552cc1
48 --- /dev/null
49 +++ b/dev-python/pytest-aiohttp/pytest-aiohttp-0.1.3.ebuild
50 @@ -0,0 +1,25 @@
51 +# Copyright 1999-2016 Gentoo Foundation
52 +# Distributed under the terms of the GNU General Public License v2
53 +# $Id$
54 +
55 +EAPI=6
56 +
57 +PYTHON_COMPAT=( python3_4 python3_5 )
58 +inherit distutils-r1
59 +
60 +DESCRIPTION="pytest plugin for aiohttp support"
61 +HOMEPAGE="https://github.com/aio-libs/pytest-aiohttp/"
62 +SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
63 +
64 +LICENSE="Apache-2.0"
65 +SLOT="0"
66 +KEYWORDS="~amd64 ~x86"
67 +IUSE=""
68 +
69 +CDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
70 +DEPEND="${CDEPEND}"
71 +RDEPEND="
72 + ${CDEPEND}
73 + dev-python/pytest[${PYTHON_USEDEP}]
74 + >=dev-python/aiohttp-0.22.0[${PYTHON_USEDEP}]
75 +"