From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id E0DC11399D4 for ; Wed, 2 Sep 2015 07:21:12 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 20C2C142E0; Wed, 2 Sep 2015 07:21:11 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 973FE142E9 for ; Wed, 2 Sep 2015 07:21:10 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 5907F340756 for ; Wed, 2 Sep 2015 07:21:09 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AE0A417D for ; Wed, 2 Sep 2015 07:21:07 +0000 (UTC) From: "Justin Lecher" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Justin Lecher" Message-ID: <1441178458.2b2fb2d705356ae5c3371922c77bb50683709289.jlec@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pytest-django/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pytest-django/Manifest dev-python/pytest-django/metadata.xml dev-python/pytest-django/pytest-django-2.8.0.ebuild X-VCS-Directories: dev-python/pytest-django/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: 2b2fb2d705356ae5c3371922c77bb50683709289 X-VCS-Branch: master Date: Wed, 2 Sep 2015 07:21:07 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 0a8306b9-45fa-4704-8f87-b40841111b81 X-Archives-Hash: 0423d428f8774e31b411c592d89ac733 commit: 2b2fb2d705356ae5c3371922c77bb50683709289 Author: Justin Lecher gentoo org> AuthorDate: Wed Sep 2 06:46:59 2015 +0000 Commit: Justin Lecher gentoo org> CommitDate: Wed Sep 2 07:20:58 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2b2fb2d7 dev-python/pytest-django: New package, ebuild written by me Package-Manager: portage-2.2.20.1 Signed-off-by: Justin Lecher gentoo.org> dev-python/pytest-django/Manifest | 1 + dev-python/pytest-django/metadata.xml | 9 +++++++++ .../pytest-django/pytest-django-2.8.0.ebuild | 22 ++++++++++++++++++++++ 3 files changed, 32 insertions(+) diff --git a/dev-python/pytest-django/Manifest b/dev-python/pytest-django/Manifest new file mode 100644 index 0000000..1ef809c --- /dev/null +++ b/dev-python/pytest-django/Manifest @@ -0,0 +1 @@ +DIST pytest-django-2.8.0.tar.gz 15405 SHA256 d145ac9dc7a557a719ab79770be0941004e1e038e137c34591919d9df2a790b1 SHA512 bc692f1b3112e07f435db746328fea18b78e71fecbded26a4e68f7dbd9b84698d193a3d191d1039a3ff23e88d2dbf4beb0d08e382fbde333033b8b54fbe99dee WHIRLPOOL 1bc9b446a826bfa5c842dc40efb9f51a16dba1e9a3e5f2c1cc7afb6a34ffd69ed2a4a3be197fbf23bc7425773acb71bda4bcfebae6189f06fc95ac2219250d13 diff --git a/dev-python/pytest-django/metadata.xml b/dev-python/pytest-django/metadata.xml new file mode 100644 index 0000000..cdf82d1 --- /dev/null +++ b/dev-python/pytest-django/metadata.xml @@ -0,0 +1,9 @@ + + + + python + + jlec@gentoo.org + Justin Lecher + + diff --git a/dev-python/pytest-django/pytest-django-2.8.0.ebuild b/dev-python/pytest-django/pytest-django-2.8.0.ebuild new file mode 100644 index 0000000..6380851 --- /dev/null +++ b/dev-python/pytest-django/pytest-django-2.8.0.ebuild @@ -0,0 +1,22 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +PYTHON_COMPAT=( python{2_7,3_3,3_4} pypy pypy3 ) + +inherit distutils-r1 + +DESCRIPTION="A Django plugin for py.test" +HOMEPAGE="https://pypi.python.org/pypi/pytest-django https://pytest-django.readthedocs.org https://github.com/pytest-dev/pytest-django" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="BSD" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" +SLOT="0" + +RDEPEND="" +DEPEND="${RDEPEND} + dev-python/setuptools[${PYTHON_USEDEP}] +"