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 B02F6138350 for ; Sun, 19 Jan 2020 19:54:23 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 52495E09BC; Sun, 19 Jan 2020 19:54:22 +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 37B14E09BC for ; Sun, 19 Jan 2020 19:54:22 +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 2E01934E279 for ; Sun, 19 Jan 2020 19:54:21 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4E831D7 for ; Sun, 19 Jan 2020 19:54:19 +0000 (UTC) From: "Pacho Ramos" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Pacho Ramos" Message-ID: <1579463652.1f5c1a4b00f79b9bc042e49021a5ad0359dc02e2.pacho@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/bottleneck/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/bottleneck/bottleneck-1.2.1-r1.ebuild X-VCS-Directories: dev-python/bottleneck/ X-VCS-Committer: pacho X-VCS-Committer-Name: Pacho Ramos X-VCS-Revision: 1f5c1a4b00f79b9bc042e49021a5ad0359dc02e2 X-VCS-Branch: master Date: Sun, 19 Jan 2020 19:54:19 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 6d2888c4-8907-4659-84ba-9f43e5375a25 X-Archives-Hash: 81399eed671180294e696868f6bd6095 commit: 1f5c1a4b00f79b9bc042e49021a5ad0359dc02e2 Author: Pacho Ramos gentoo org> AuthorDate: Sun Jan 19 19:49:12 2020 +0000 Commit: Pacho Ramos gentoo org> CommitDate: Sun Jan 19 19:54:12 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1f5c1a4b (cat_pn): No reverse dep needs py2 support Package-Manager: Portage-2.3.84, Repoman-2.3.20 Signed-off-by: Pacho Ramos gentoo.org> dev-python/bottleneck/bottleneck-1.2.1-r1.ebuild | 29 ++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/dev-python/bottleneck/bottleneck-1.2.1-r1.ebuild b/dev-python/bottleneck/bottleneck-1.2.1-r1.ebuild new file mode 100644 index 00000000000..833b7c25e77 --- /dev/null +++ b/dev-python/bottleneck/bottleneck-1.2.1-r1.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +PYTHON_COMPAT=( python3_{6,7} ) + +inherit distutils-r1 + +DESCRIPTION="Fast NumPy array functions written in Cython" +HOMEPAGE="https://pypi.org/project/Bottleneck/" +SRC_URI="https://github.com/kwgoodman/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +SLOT="0" +LICENSE="BSD" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" +IUSE="test" +RESTRICT="!test? ( test )" + +RDEPEND=" + >=dev-python/numpy-1.9.1[${PYTHON_USEDEP}] + sci-libs/scipy[${PYTHON_USEDEP}] +" +DEPEND="${RDEPEND} + dev-python/setuptools[${PYTHON_USEDEP}] + test? ( dev-python/nose )" + +python_test() { + ${EPYTHON} ./tools/test-installed-bottleneck.py +}