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-django/
Date: Wed, 02 Sep 2015 07:21:12
Message-Id: 1441178458.2b2fb2d705356ae5c3371922c77bb50683709289.jlec@gentoo
1 commit: 2b2fb2d705356ae5c3371922c77bb50683709289
2 Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
3 AuthorDate: Wed Sep 2 06:46:59 2015 +0000
4 Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
5 CommitDate: Wed Sep 2 07:20:58 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2b2fb2d7
7
8 dev-python/pytest-django: New package, ebuild written by me
9
10 Package-Manager: portage-2.2.20.1
11 Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>
12
13 dev-python/pytest-django/Manifest | 1 +
14 dev-python/pytest-django/metadata.xml | 9 +++++++++
15 .../pytest-django/pytest-django-2.8.0.ebuild | 22 ++++++++++++++++++++++
16 3 files changed, 32 insertions(+)
17
18 diff --git a/dev-python/pytest-django/Manifest b/dev-python/pytest-django/Manifest
19 new file mode 100644
20 index 0000000..1ef809c
21 --- /dev/null
22 +++ b/dev-python/pytest-django/Manifest
23 @@ -0,0 +1 @@
24 +DIST pytest-django-2.8.0.tar.gz 15405 SHA256 d145ac9dc7a557a719ab79770be0941004e1e038e137c34591919d9df2a790b1 SHA512 bc692f1b3112e07f435db746328fea18b78e71fecbded26a4e68f7dbd9b84698d193a3d191d1039a3ff23e88d2dbf4beb0d08e382fbde333033b8b54fbe99dee WHIRLPOOL 1bc9b446a826bfa5c842dc40efb9f51a16dba1e9a3e5f2c1cc7afb6a34ffd69ed2a4a3be197fbf23bc7425773acb71bda4bcfebae6189f06fc95ac2219250d13
25
26 diff --git a/dev-python/pytest-django/metadata.xml b/dev-python/pytest-django/metadata.xml
27 new file mode 100644
28 index 0000000..cdf82d1
29 --- /dev/null
30 +++ b/dev-python/pytest-django/metadata.xml
31 @@ -0,0 +1,9 @@
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 + <maintainer>
37 + <email>jlec@g.o</email>
38 + <name>Justin Lecher</name>
39 + </maintainer>
40 +</pkgmetadata>
41
42 diff --git a/dev-python/pytest-django/pytest-django-2.8.0.ebuild b/dev-python/pytest-django/pytest-django-2.8.0.ebuild
43 new file mode 100644
44 index 0000000..6380851
45 --- /dev/null
46 +++ b/dev-python/pytest-django/pytest-django-2.8.0.ebuild
47 @@ -0,0 +1,22 @@
48 +# Copyright 1999-2015 Gentoo Foundation
49 +# Distributed under the terms of the GNU General Public License v2
50 +# $Id$
51 +
52 +EAPI=5
53 +
54 +PYTHON_COMPAT=( python{2_7,3_3,3_4} pypy pypy3 )
55 +
56 +inherit distutils-r1
57 +
58 +DESCRIPTION="A Django plugin for py.test"
59 +HOMEPAGE="https://pypi.python.org/pypi/pytest-django https://pytest-django.readthedocs.org https://github.com/pytest-dev/pytest-django"
60 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
61 +
62 +LICENSE="BSD"
63 +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
64 +SLOT="0"
65 +
66 +RDEPEND=""
67 +DEPEND="${RDEPEND}
68 + dev-python/setuptools[${PYTHON_USEDEP}]
69 +"