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 AF2DF1395E1 for ; Tue, 1 Nov 2016 23:55:48 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C116DE0B70; Tue, 1 Nov 2016 23:55:45 +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 A2B9AE0B70 for ; Tue, 1 Nov 2016 23:55:45 +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 55435341117 for ; Tue, 1 Nov 2016 23:55:43 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A69E4306 for ; Tue, 1 Nov 2016 23:55:41 +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: <1478044529.7bb31a183c542ba1646401f78f649ded9b7ee89f.mrueg@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/future/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/future/Manifest dev-python/future/future-0.16.0.ebuild X-VCS-Directories: dev-python/future/ X-VCS-Committer: mrueg X-VCS-Committer-Name: Manuel Rüger X-VCS-Revision: 7bb31a183c542ba1646401f78f649ded9b7ee89f X-VCS-Branch: master Date: Tue, 1 Nov 2016 23:55:41 +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: 3ce0ae0c-9679-432a-9c95-48c0955a5d13 X-Archives-Hash: f128c6c6727fa5e50a1f85195ec81c07 commit: 7bb31a183c542ba1646401f78f649ded9b7ee89f Author: Manuel Rüger gentoo org> AuthorDate: Tue Nov 1 23:55:29 2016 +0000 Commit: Manuel Rüger gentoo org> CommitDate: Tue Nov 1 23:55:29 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7bb31a18 dev-python/future: Version bump to 0.16.0 Package-Manager: portage-2.3.2 dev-python/future/Manifest | 1 + dev-python/future/future-0.16.0.ebuild | 22 ++++++++++++++++++++++ 2 files changed, 23 insertions(+) diff --git a/dev-python/future/Manifest b/dev-python/future/Manifest index feed344..d986df4 100644 --- a/dev-python/future/Manifest +++ b/dev-python/future/Manifest @@ -1 +1,2 @@ DIST future-0.15.2.tar.gz 1583441 SHA256 3d3b193f20ca62ba7d8782589922878820d0a023b885882deec830adbf639b97 SHA512 24a0eaf70795efe1644b098c5abbcb0103d9172a5243721f0d26b1cbd108872b6c0616180da8f5507855ddfc7b26bb10a606a64e59d307d39042b346700f77ee WHIRLPOOL 557b53495033d4586dc0f34837cc7f0cab12fb770abda56049fd90b5bac3e36db561e185d86e8a08b153869f0f692ccf0b305f5edc20871edde487faa1b1fc4f +DIST future-0.16.0.tar.gz 824484 SHA256 e39ced1ab767b5936646cedba8bcce582398233d6a627067d4c6a454c90cfedb SHA512 41c795cd1746a76df84de2da9fbc611fc6164322c1c712ec9e8a8626c21c2717cb4899ec150d95c5e0c037270e6bb71e099edd169609369aae619daea9df2e5f WHIRLPOOL 744ab7e228c608f49308609e18778e198804a7b6fea3a6285efcce14a4ea8d114e146e94779e084ac91916fb7cc560be2178806378305b40568d6bb7ff448951 diff --git a/dev-python/future/future-0.16.0.ebuild b/dev-python/future/future-0.16.0.ebuild new file mode 100644 index 00000000..d51f972 --- /dev/null +++ b/dev-python/future/future-0.16.0.ebuild @@ -0,0 +1,22 @@ +# Copyright 1999-2016 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} ) + +inherit distutils-r1 + +DESCRIPTION="Easy, clean, reliable Python 2/3 compatibility" +HOMEPAGE="http://python-future.org/" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~x86" +IUSE="" + +python_test() { + esetup.py test || die +}