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 403DF138334 for ; Tue, 21 Aug 2018 02:11:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 10364E0882; Tue, 21 Aug 2018 02:11:13 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id DA3D8E0880 for ; Tue, 21 Aug 2018 02:11:12 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 3D908335D65 for ; Tue, 21 Aug 2018 02:11:11 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EED253B9 for ; Tue, 21 Aug 2018 02:11:07 +0000 (UTC) From: "Virgil Dupras" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Virgil Dupras" Message-ID: <1534817396.8f3b5766fed7c86b5f683f5f45907d56414f8c2c.vdupras@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/blinker/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/blinker/blinker-1.4-r1.ebuild X-VCS-Directories: dev-python/blinker/ X-VCS-Committer: vdupras X-VCS-Committer-Name: Virgil Dupras X-VCS-Revision: 8f3b5766fed7c86b5f683f5f45907d56414f8c2c X-VCS-Branch: master Date: Tue, 21 Aug 2018 02:11:07 +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: 4d9a46f6-4bb8-4db2-82b6-9d05be6593f9 X-Archives-Hash: 3787a623fcd33e0b12921af10ed6acdc commit: 8f3b5766fed7c86b5f683f5f45907d56414f8c2c Author: Virgil Dupras gentoo org> AuthorDate: Tue Aug 21 02:03:21 2018 +0000 Commit: Virgil Dupras gentoo org> CommitDate: Tue Aug 21 02:09:56 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8f3b5766 dev-python/blinker: add python 3.7 support Package-Manager: Portage-2.3.47, Repoman-2.3.10 dev-python/blinker/blinker-1.4-r1.ebuild | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/dev-python/blinker/blinker-1.4-r1.ebuild b/dev-python/blinker/blinker-1.4-r1.ebuild new file mode 100644 index 00000000000..4a0425067cd --- /dev/null +++ b/dev-python/blinker/blinker-1.4-r1.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python2_7 python3_{5,6,7} pypy pypy3 ) + +inherit distutils-r1 + +DESCRIPTION="Fast, simple object-to-object and broadcast signaling" +HOMEPAGE="https://pythonhosted.org/blinker/ https://pypi.org/project/blinker/" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux" +IUSE="doc test" + +DEPEND="test? ( dev-python/nose[${PYTHON_USEDEP}] )" + +python_test() { + nosetests -v || die "Testing failed with ${EPYTHON}" +} + +python_install_all() { + use doc && HTML_DOCS=( docs/html/. ) + distutils-r1_python_install_all +}