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 90A081388C0 for ; Thu, 18 Feb 2016 12:38:41 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1840721C0EA; Thu, 18 Feb 2016 12:38:40 +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 4337921C0EA for ; Thu, 18 Feb 2016 12:38:39 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 19E7E340D49 for ; Thu, 18 Feb 2016 12:38:38 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BA4AC15FD for ; Thu, 18 Feb 2016 12:38:36 +0000 (UTC) From: "Patrick Lauer" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Patrick Lauer" Message-ID: <1455799060.a1a54581e1af8c2213ea9ebab3a8a51178f8458e.patrick@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/contextlib2/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/contextlib2/Manifest dev-python/contextlib2/contextlib2-0.5.1.ebuild X-VCS-Directories: dev-python/contextlib2/ X-VCS-Committer: patrick X-VCS-Committer-Name: Patrick Lauer X-VCS-Revision: a1a54581e1af8c2213ea9ebab3a8a51178f8458e X-VCS-Branch: master Date: Thu, 18 Feb 2016 12:38:36 +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: 05a93ad4-7389-4d12-905b-ac551ecf6ead X-Archives-Hash: 34b29effdccafa1715a54d203acc9b99 commit: a1a54581e1af8c2213ea9ebab3a8a51178f8458e Author: Patrick Lauer gentoo org> AuthorDate: Thu Feb 18 12:28:34 2016 +0000 Commit: Patrick Lauer gentoo org> CommitDate: Thu Feb 18 12:37:40 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a1a54581 dev-python/contextlib2: Bump Package-Manager: portage-2.2.27 dev-python/contextlib2/Manifest | 1 + dev-python/contextlib2/contextlib2-0.5.1.ebuild | 24 ++++++++++++++++++++++++ 2 files changed, 25 insertions(+) diff --git a/dev-python/contextlib2/Manifest b/dev-python/contextlib2/Manifest index a2aa4e4..4317aad 100644 --- a/dev-python/contextlib2/Manifest +++ b/dev-python/contextlib2/Manifest @@ -1 +1,2 @@ DIST contextlib2-0.4.0.tar.gz 18741 SHA256 55a5dc78f7a742a0e756645134ffb39bbe11da0fea2bc0f7070d40dac208b732 SHA512 622762c5490f0ff3e4b421a63bccce8fe0753977112ee0db9640dad31093c40c8a331f3d7cade9925f17903eaeaa376925ef607d7a440170c7c5ec1c8e04f56a WHIRLPOOL b1b2b753b15cb5124ebc378acf6b959839e727a53d3a096eea5b04404fc059f6a1b49b9fa23cc6310ad1b9bcfa655a82088af0906a74f8326d7bf57f3793440c +DIST contextlib2-0.5.1.tar.gz 25186 SHA256 227c79e126e8a8904a81d162750581ed3d49af2395a3100be7067b7296d33d45 SHA512 da3a954a52a0f036e0b2d949bf4e73f4551eb637944eae5f6f421a1c22b2177dcfa56984a6c77692bb92713cf73a0df02b9159268b428550651fb7be97074613 WHIRLPOOL b970100478d107ce89ea9a21d670767cae8921acc095922fb82a3b1c19eeecb98bc326888e97ac9fd5b9dec71f2a69b769693f2a07ecb48060b3b76353ad1ade diff --git a/dev-python/contextlib2/contextlib2-0.5.1.ebuild b/dev-python/contextlib2/contextlib2-0.5.1.ebuild new file mode 100644 index 0000000..5d90531 --- /dev/null +++ b/dev-python/contextlib2/contextlib2-0.5.1.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +PYTHON_COMPAT=( python{2_7,3_3,3_4} pypy ) + +inherit distutils-r1 + +DESCRIPTION="Backports and enhancements for the contextlib module" +HOMEPAGE="https://pypi.python.org/pypi/contextlib2" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="PSF-2.4" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="test" + +DEPEND="test? ( dev-python/unittest2[${PYTHON_USEDEP}] )" + +python_test() { + "${PYTHON}" test_contextlib2.py || die "Tests fail for ${EPYTHON}" +}