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 DA39113829C for ; Sun, 12 Jun 2016 18:33:06 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 11156E0B57; Sun, 12 Jun 2016 18:33:06 +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 407CFE0B53 for ; Sun, 12 Jun 2016 18:33:05 +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 5D8C0340B53 for ; Sun, 12 Jun 2016 18:33:04 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8C6B82320 for ; Sun, 12 Jun 2016 18:33:01 +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: <1465756357.2e11d0ae21b1cc9a003ad33cd013ebefd5d3eb38.patrick@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/promise/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/promise/Manifest dev-python/promise/promise-0.4.1.ebuild X-VCS-Directories: dev-python/promise/ X-VCS-Committer: patrick X-VCS-Committer-Name: Patrick Lauer X-VCS-Revision: 2e11d0ae21b1cc9a003ad33cd013ebefd5d3eb38 X-VCS-Branch: master Date: Sun, 12 Jun 2016 18:33:01 +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: f7a649cb-23eb-4b15-b3eb-4a0df45d5249 X-Archives-Hash: d7b4a3e900799003d0e4ef18462b6af2 commit: 2e11d0ae21b1cc9a003ad33cd013ebefd5d3eb38 Author: Patrick Lauer gentoo org> AuthorDate: Sun Jun 12 17:40:50 2016 +0000 Commit: Patrick Lauer gentoo org> CommitDate: Sun Jun 12 18:32:37 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2e11d0ae dev-python/promise: Bump Package-Manager: portage-2.3.0_rc1 dev-python/promise/Manifest | 1 + dev-python/promise/promise-0.4.1.ebuild | 31 +++++++++++++++++++++++++++++++ 2 files changed, 32 insertions(+) diff --git a/dev-python/promise/Manifest b/dev-python/promise/Manifest index bfcc57b..b9c4091 100644 --- a/dev-python/promise/Manifest +++ b/dev-python/promise/Manifest @@ -1 +1,2 @@ DIST promise-0.2.2.tar.gz 19765 SHA256 1fb52a23bee47644819c4a11b0b7169474625c44629f9b76a04cf59e118f4f6c SHA512 271731b2be94ce65680079d3c43034e2ef5da37efc00c36e513cacc0e19a47ccfc43911c43f6c860789ddf86d96870ad8ca7c3cf0074f977727d630354d79840 WHIRLPOOL cbe48adf35a65cc737b85cbdc0a542dadd56b4e2e45d75567b03f1031dd39f229b0dbba26ed23ee4dfae4e1b0dd0e5f22592ddfa24dc457697895d9e7a5298fe +DIST promise-0.4.1.tar.gz 6877 SHA256 75a8427f8d2f670067154acb08048fd2b52f4f5c836f15c07a2c073b8d4eb1d4 SHA512 57cc594a75c542430aea3b12731319e377b1c5123d900ed7588088667c9ec6b17bec03d5d0300712ae887af8394c2bfaa23d98feac97944de4c04eca5d80825c WHIRLPOOL c0e163cbb58377eb8ae5e98fdb27b7fff6f4b668b6eeb03106db3ed4599f3bbf2c1cd32c38444cc210cc3fb5f61cede3fa20413075423bafdb84bf886d437ecf diff --git a/dev-python/promise/promise-0.4.1.ebuild b/dev-python/promise/promise-0.4.1.ebuild new file mode 100644 index 0000000..7b890dc --- /dev/null +++ b/dev-python/promise/promise-0.4.1.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +PYTHON_COMPAT=( python2_7 ) +DISTUTILS_SINGLE_IMPL=1 + +inherit distutils-r1 + +DESCRIPTION="Bytecode optimisation using staticness assertions" +HOMEPAGE="https://github.com/rfk/promise/ https://pypi.python.org/pypi/promise" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="test" + +DEPEND="test? ( dev-python/nose[${PYTHON_USEDEP}] )" +RDEPEND="${PYTHON_DEPS}" + +pkg_setup() { + python-single-r1_pkg_setup +} + +python_test() { + # Timing tests fail. + PROMISE_SKIP_TIMING_TESTS="1" nosetests || die "tests failed" +}