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 B928B1382C5 for ; Sat, 6 Jun 2020 21:07:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DE562E09E7; Sat, 6 Jun 2020 21:07:37 +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 C4539E09E7 for ; Sat, 6 Jun 2020 21:07:37 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 208873432B9 for ; Sat, 6 Jun 2020 21:07:36 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 66E88242 for ; Sat, 6 Jun 2020 21:07:33 +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: <1591477645.d1a7d8083177619e4f6933f84813ec651b10de81.pacho@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/bottleneck/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/bottleneck/Manifest dev-python/bottleneck/bottleneck-1.3.2.ebuild X-VCS-Directories: dev-python/bottleneck/ X-VCS-Committer: pacho X-VCS-Committer-Name: Pacho Ramos X-VCS-Revision: d1a7d8083177619e4f6933f84813ec651b10de81 X-VCS-Branch: master Date: Sat, 6 Jun 2020 21:07:33 +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: f0cff1c3-a642-4e96-b117-1e6d5bbff86c X-Archives-Hash: 2df2f820160f349e9ef472d6a69a1a63 commit: d1a7d8083177619e4f6933f84813ec651b10de81 Author: Pacho Ramos gentoo org> AuthorDate: Sat Jun 6 20:47:53 2020 +0000 Commit: Pacho Ramos gentoo org> CommitDate: Sat Jun 6 21:07:25 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d1a7d808 dev-python/bottleneck: Bump to 1.3.2 Package-Manager: Portage-2.3.100, Repoman-2.3.22 Signed-off-by: Pacho Ramos gentoo.org> dev-python/bottleneck/Manifest | 1 + dev-python/bottleneck/bottleneck-1.3.2.ebuild | 29 +++++++++++++++++++++++++++ 2 files changed, 30 insertions(+) diff --git a/dev-python/bottleneck/Manifest b/dev-python/bottleneck/Manifest index 342ee6fae98..a865349fe21 100644 --- a/dev-python/bottleneck/Manifest +++ b/dev-python/bottleneck/Manifest @@ -1 +1,2 @@ DIST bottleneck-1.2.1.tar.gz 98920 BLAKE2B 02fd35eaa15761f2008e46c459d842cdb5ad16372a03ea51a82b775ae0fbfa81beb0f1f304dcf6565956dc2d6deded579d8e400eaa250f9ab639261c085a6525 SHA512 0299eb1a12d808f18b8c4259c2205b47b34af4c1245867ab0857eb34a1aad630507cd3307a16f522db461977bd3f70aca688fb6a62ae84d1f895d18165132781 +DIST bottleneck-1.3.2.tar.gz 102565 BLAKE2B 4d903bd8ff918a54cdee5b6c6815e8d404c6d3cd1a73e02f81888aab077970a113fcd24acef9da8a35138aa808c211883bf9bd952f83f17df4f94a6172fbe140 SHA512 9b6f812a625c9bb39501e8834ce41ae34ce57038d3ec9528aa8aa80910663c4e3b420d535f0ec8fa9e506faecabaf0151950afcebdc919479ed04787f26dc3ee diff --git a/dev-python/bottleneck/bottleneck-1.3.2.ebuild b/dev-python/bottleneck/bottleneck-1.3.2.ebuild new file mode 100644 index 00000000000..6532decb92e --- /dev/null +++ b/dev-python/bottleneck/bottleneck-1.3.2.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..9} ) + +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 ~arm64 ~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 +}