From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 8FDDA1382C5 for ; Fri, 16 Apr 2021 18:25:09 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A7046E0821; Fri, 16 Apr 2021 18:25:08 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 216C6E0821 for ; Fri, 16 Apr 2021 18:25:08 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id DC1CC335C9C for ; Fri, 16 Apr 2021 18:25:06 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7A5785D2 for ; Fri, 16 Apr 2021 18:25:05 +0000 (UTC) From: "Marek Szuba" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Marek Szuba" Message-ID: <1618597458.2250f3a16a7a19a627c05851f64768d1ad7317a0.marecki@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pytest-env/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pytest-env/Manifest dev-python/pytest-env/metadata.xml dev-python/pytest-env/pytest-env-0.6.2.ebuild X-VCS-Directories: dev-python/pytest-env/ X-VCS-Committer: marecki X-VCS-Committer-Name: Marek Szuba X-VCS-Revision: 2250f3a16a7a19a627c05851f64768d1ad7317a0 X-VCS-Branch: master Date: Fri, 16 Apr 2021 18:25:05 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 6944d91a-fc7d-45d8-8615-1a077da897ab X-Archives-Hash: be71b9f51ca86a8df8a2848fbca6bd52 commit: 2250f3a16a7a19a627c05851f64768d1ad7317a0 Author: Marek Szuba gentoo org> AuthorDate: Fri Apr 16 15:45:19 2021 +0000 Commit: Marek Szuba gentoo org> CommitDate: Fri Apr 16 18:24:18 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2250f3a1 dev-python/pytest-env: new package Test dependency of dev-vcs/pre-commit. Signed-off-by: Marek Szuba gentoo.org> dev-python/pytest-env/Manifest | 1 + dev-python/pytest-env/metadata.xml | 12 ++++++++++++ dev-python/pytest-env/pytest-env-0.6.2.ebuild | 17 +++++++++++++++++ 3 files changed, 30 insertions(+) diff --git a/dev-python/pytest-env/Manifest b/dev-python/pytest-env/Manifest new file mode 100644 index 00000000000..217812163a3 --- /dev/null +++ b/dev-python/pytest-env/Manifest @@ -0,0 +1 @@ +DIST pytest-env-0.6.2.tar.gz 1693 BLAKE2B b303b8b2b486cd5f6c6273fefe709e3986183a56b6758b05f8bde973c561ebba9646538d38783749305740d8bd637966966a109fcd600cd6f6ee059449ffb328 SHA512 0b3bb21fc881023c102b584593c6e28840400ce8190810f33f9a421df4141e17dcfad2943c4159aaab82376b7b47b07b45f97c9cb232a7d17c4d35b55966596d diff --git a/dev-python/pytest-env/metadata.xml b/dev-python/pytest-env/metadata.xml new file mode 100644 index 00000000000..fbf280e5526 --- /dev/null +++ b/dev-python/pytest-env/metadata.xml @@ -0,0 +1,12 @@ + + + + + marecki@gentoo.org + Marek Szuba + + + MobileDynasty/pytest-env + pytest-env + + diff --git a/dev-python/pytest-env/pytest-env-0.6.2.ebuild b/dev-python/pytest-env/pytest-env-0.6.2.ebuild new file mode 100644 index 00000000000..ae67df12a29 --- /dev/null +++ b/dev-python/pytest-env/pytest-env-0.6.2.ebuild @@ -0,0 +1,17 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{8..9} ) +inherit distutils-r1 + +DESCRIPTION="py.test plugin that allows you to add environment variables" +HOMEPAGE="https://github.com/MobileDynasty/pytest-env" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64" + +RDEPEND="dev-python/pytest[${PYTHON_USEDEP}]"