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 D646F138350 for ; Sun, 1 Mar 2020 04:42:24 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 16F42E09A6; Sun, 1 Mar 2020 04:42:24 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 F1AE4E09A6 for ; Sun, 1 Mar 2020 04:42:23 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 B30F134EF26 for ; Sun, 1 Mar 2020 04:42:22 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2BD8F2B for ; Sun, 1 Mar 2020 04:42:20 +0000 (UTC) From: "Andrey Grozin" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andrey Grozin" Message-ID: <1583037429.4655132bed49431553eaf71c251f245752270929.grozin@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/nose-exclude/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/nose-exclude/nose-exclude-0.5.0-r1.ebuild X-VCS-Directories: dev-python/nose-exclude/ X-VCS-Committer: grozin X-VCS-Committer-Name: Andrey Grozin X-VCS-Revision: 4655132bed49431553eaf71c251f245752270929 X-VCS-Branch: master Date: Sun, 1 Mar 2020 04:42:20 +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: f1aa0599-57ae-4734-a064-05eb477d99e9 X-Archives-Hash: 5695114c71107f81a85fbf4f96000ce5 commit: 4655132bed49431553eaf71c251f245752270929 Author: Andrey Grozin gentoo org> AuthorDate: Sun Mar 1 04:37:09 2020 +0000 Commit: Andrey Grozin gentoo org> CommitDate: Sun Mar 1 04:37:09 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4655132b dev-python/nose-exclude: add python3_8 Package-Manager: Portage-2.3.89, Repoman-2.3.20 Signed-off-by: Andrey Grozin gentoo.org> .../nose-exclude/nose-exclude-0.5.0-r1.ebuild | 23 ++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/dev-python/nose-exclude/nose-exclude-0.5.0-r1.ebuild b/dev-python/nose-exclude/nose-exclude-0.5.0-r1.ebuild new file mode 100644 index 00000000000..b3b7db5f4d8 --- /dev/null +++ b/dev-python/nose-exclude/nose-exclude-0.5.0-r1.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{6,7,8} pypy3 ) + +inherit distutils-r1 + +DESCRIPTION="Exclude specific directories from nosetests runs" +HOMEPAGE="https://github.com/kgrandis/nose-exclude" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86" + +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" +RDEPEND="dev-python/nose[${PYTHON_USEDEP}]" + +python_test() { + esetup.py test +}