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 5CCCE138BED for ; Sun, 11 Oct 2015 11:25:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id ABB85E07E8; Sun, 11 Oct 2015 11:25:14 +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 479D3E07E8 for ; Sun, 11 Oct 2015 11:25:14 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 5B1BF340676 for ; Sun, 11 Oct 2015 11:25:13 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E7394D10 for ; Sun, 11 Oct 2015 11:25:10 +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: <1444562669.3358fec373ec19ff65e7441560e279cadfaf0cb2.jlec@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pretend/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pretend/pretend-1.0.8-r1.ebuild X-VCS-Directories: dev-python/pretend/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: 3358fec373ec19ff65e7441560e279cadfaf0cb2 X-VCS-Branch: master Date: Sun, 11 Oct 2015 11:25:10 +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: 4b17ce1e-d191-48a2-a55a-0b64d2f3781b X-Archives-Hash: 6963ece3efe08c02767ee4a02ce3c8d9 commit: 3358fec373ec19ff65e7441560e279cadfaf0cb2 Author: Justin Lecher gentoo org> AuthorDate: Sun Oct 11 10:32:32 2015 +0000 Commit: Justin Lecher gentoo org> CommitDate: Sun Oct 11 11:24:29 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3358fec3 dev-python/pretend: Add python3.5 support Package-Manager: portage-2.2.23 Signed-off-by: Justin Lecher gentoo.org> dev-python/pretend/pretend-1.0.8-r1.ebuild | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/dev-python/pretend/pretend-1.0.8-r1.ebuild b/dev-python/pretend/pretend-1.0.8-r1.ebuild new file mode 100644 index 0000000..fa1f8d0 --- /dev/null +++ b/dev-python/pretend/pretend-1.0.8-r1.ebuild @@ -0,0 +1,20 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +PYTHON_COMPAT=( python2_7 python3_{3,4,5} pypy pypy3 ) + +inherit distutils-r1 + +DESCRIPTION="A library for stubbing in Python" +HOMEPAGE="https://github.com/alex/pretend/ https://pypi.python.org/pypi/pretend/" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris" +IUSE="" + +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"