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 CA55659CAF for ; Fri, 1 Apr 2016 16:37:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E86CD21C011; Fri, 1 Apr 2016 16:37:36 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 641D621C011 for ; Fri, 1 Apr 2016 16:37:36 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 09804340DE3 for ; Fri, 1 Apr 2016 16:37:35 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 474BF81 for ; Fri, 1 Apr 2016 16:37:32 +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: <1459527920.bc1cef9f99c07c68ed0203336bd15eae94536d77.grozin@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/docopt/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/docopt/docopt-0.6.2-r1.ebuild X-VCS-Directories: dev-python/docopt/ X-VCS-Committer: grozin X-VCS-Committer-Name: Andrey Grozin X-VCS-Revision: bc1cef9f99c07c68ed0203336bd15eae94536d77 X-VCS-Branch: master Date: Fri, 1 Apr 2016 16:37:32 +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: db48b59e-5646-40a5-98eb-c9ac09217797 X-Archives-Hash: f2ba13551800484228ceecf6bf0cd576 commit: bc1cef9f99c07c68ed0203336bd15eae94536d77 Author: Andrey Grozin gentoo org> AuthorDate: Fri Apr 1 16:25:20 2016 +0000 Commit: Andrey Grozin gentoo org> CommitDate: Fri Apr 1 16:25:20 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bc1cef9f dev-python/docopt: added python3_5 Package-Manager: portage-2.2.28 dev-python/docopt/docopt-0.6.2-r1.ebuild | 33 ++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/dev-python/docopt/docopt-0.6.2-r1.ebuild b/dev-python/docopt/docopt-0.6.2-r1.ebuild new file mode 100644 index 0000000..8161713 --- /dev/null +++ b/dev-python/docopt/docopt-0.6.2-r1.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +PYTHON_COMPAT=( python2_7 python3_{3,4,5} ) + +inherit distutils-r1 + +DESCRIPTION="Pythonic argument parser, that will make you smile" +HOMEPAGE="https://pypi.python.org/pypi/docopt https://github.com/docopt/docopt" +SRC_URI=" + mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz + https://github.com/docopt/docopt/archive/${PV}.tar.gz -> ${P}.tar.gz" + +SLOT="0" +LICENSE="MIT" +KEYWORDS="~amd64 ~arm ~x86 ~amd64-linux ~x86-linux" +IUSE="test" + +RDEPEND="" +DEPEND="${RDEPEND} + dev-python/setuptools[${PYTHON_USEDEP}] + test? ( dev-python/pytest[${PYTHON_USEDEP}] ) +" + +# not implemented in this version, git already has it +RESTRICT=test + +python_test() { + esetup.py test +}