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 90C401382C5 for ; Tue, 13 Feb 2018 22:03:56 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E9897E0D43; Tue, 13 Feb 2018 22:03:55 +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 BB2C7E0D43 for ; Tue, 13 Feb 2018 22:03:55 +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 C6B3E335C2C for ; Tue, 13 Feb 2018 22:03:54 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 54A121F1 for ; Tue, 13 Feb 2018 22:03:53 +0000 (UTC) From: "Matt Thode" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Thode" Message-ID: <1518559418.86064bd815171a841cba6261bbbb061ffcc1c2f5.prometheanfire@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/setuptools_scm/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/setuptools_scm/metadata.xml dev-python/setuptools_scm/setuptools_scm-1.15.6-r1.ebuild X-VCS-Directories: dev-python/setuptools_scm/ X-VCS-Committer: prometheanfire X-VCS-Committer-Name: Matt Thode X-VCS-Revision: 86064bd815171a841cba6261bbbb061ffcc1c2f5 X-VCS-Branch: master Date: Tue, 13 Feb 2018 22:03:53 +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: 9b433fb4-787d-4e68-808a-64210a42f870 X-Archives-Hash: 74c3c3d72063e4bfce3ae4ff05b007a5 commit: 86064bd815171a841cba6261bbbb061ffcc1c2f5 Author: Matthew Thode gentoo org> AuthorDate: Tue Feb 13 21:25:18 2018 +0000 Commit: Matt Thode gentoo org> CommitDate: Tue Feb 13 22:03:38 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=86064bd8 dev-python/setuptools_scm: splitting out test deps into use flags Package-Manager: Portage-2.3.19, Repoman-2.3.6 dev-python/setuptools_scm/metadata.xml | 3 ++ .../setuptools_scm/setuptools_scm-1.15.6-r1.ebuild | 39 ++++++++++++++++++++++ 2 files changed, 42 insertions(+) diff --git a/dev-python/setuptools_scm/metadata.xml b/dev-python/setuptools_scm/metadata.xml index 3aabcf57991..36c2a8fbd06 100644 --- a/dev-python/setuptools_scm/metadata.xml +++ b/dev-python/setuptools_scm/metadata.xml @@ -10,4 +10,7 @@ pypa/setuptools_scm pypa/setuptools_scm + + Enables mercurial backend + diff --git a/dev-python/setuptools_scm/setuptools_scm-1.15.6-r1.ebuild b/dev-python/setuptools_scm/setuptools_scm-1.15.6-r1.ebuild new file mode 100644 index 00000000000..006c5a9012f --- /dev/null +++ b/dev-python/setuptools_scm/setuptools_scm-1.15.6-r1.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +PYTHON_COMPAT=( python2_7 python3_{4,5,6} pypy pypy3 ) + +inherit distutils-r1 + +DESCRIPTION="package to manage versions by scm tags via setuptools" +HOMEPAGE="https://github.com/pypa/setuptools_scm https://pypi.python.org/pypi/setuptools_scm" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos" +IUSE="git mercurial test" + +DEPEND=" + dev-python/setuptools[${PYTHON_USEDEP}] + git? ( dev-vcs/git ) + mercurial? ( dev-vcs/mercurial ) + test? ( + dev-python/pytest[${PYTHON_USEDEP}] + )" + +python_test() { + distutils_install_for_testing + py.test -v -v -x -k testing/test_basic_api.py || die "tests failed under ${EPYTHON}" + py.test -v -v -x -k testing/test_functions.py || die "tests failed under ${EPYTHON}" + py.test -v -v -x -k testing/test_main.py || die "tests failed under ${EPYTHON}" + py.test -v -v -x -k testing/test_regressions.py || die "tests failed under ${EPYTHON}" + if use git; then + py.test -v -v -x -k testing/test_git.py || die "tests failed under ${EPYTHON}" + fi + if use mercurial; then + py.test -v -v -x -k testing/test_mercurial.py || die "tests failed under ${EPYTHON}" + fi +}