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 70C86139694 for ; Thu, 9 Feb 2017 16:02:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A575421C038; Thu, 9 Feb 2017 16:02:48 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 8570D21C038 for ; Thu, 9 Feb 2017 16:02:48 +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 6BC50340E75 for ; Thu, 9 Feb 2017 16:02:47 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EABF93E8E for ; Thu, 9 Feb 2017 16:02:45 +0000 (UTC) From: "Manuel Rüger" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Manuel Rüger" Message-ID: <1486656105.61c9103becd32de558e93c6197254f007c19eb27.mrueg@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/repoze-lru/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/repoze-lru/repoze-lru-0.6-r2.ebuild X-VCS-Directories: dev-python/repoze-lru/ X-VCS-Committer: mrueg X-VCS-Committer-Name: Manuel Rüger X-VCS-Revision: 61c9103becd32de558e93c6197254f007c19eb27 X-VCS-Branch: master Date: Thu, 9 Feb 2017 16:02:45 +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: 5142edbc-71c3-486b-8d94-06ef843826b1 X-Archives-Hash: 66b0ea38cb994e267463724b49006530 commit: 61c9103becd32de558e93c6197254f007c19eb27 Author: Manuel Rüger gentoo org> AuthorDate: Thu Feb 9 16:01:45 2017 +0000 Commit: Manuel Rüger gentoo org> CommitDate: Thu Feb 9 16:01:45 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=61c9103b dev-python/repoze-lru: Add missing dependency on setuptools Package-Manager: Portage-2.3.3, Repoman-2.3.1 dev-python/repoze-lru/repoze-lru-0.6-r2.ebuild | 29 ++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/dev-python/repoze-lru/repoze-lru-0.6-r2.ebuild b/dev-python/repoze-lru/repoze-lru-0.6-r2.ebuild new file mode 100644 index 0000000000..bc97037760 --- /dev/null +++ b/dev-python/repoze-lru/repoze-lru-0.6-r2.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +PYTHON_COMPAT=( python{2_7,3_4,3_5} pypy ) + +inherit distutils-r1 + +MY_PN=${PN/-/.} +MY_P=${MY_PN}-${PV} + +DESCRIPTION="A tiny LRU cache implementation and decorator" +HOMEPAGE="http://www.repoze.org" +SRC_URI="mirror://pypi/${P:0:1}/${MY_PN}/${MY_P}.tar.gz" + +LICENSE="repoze" +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~x86" +IUSE="" + +S=${WORKDIR}/${MY_P} + +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" + +python_test() { + esetup.py test +}