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 28891138350 for ; Tue, 28 Jan 2020 21:30:33 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C7779E0856; Tue, 28 Jan 2020 21:30:31 +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 A316DE0845 for ; Tue, 28 Jan 2020 21:30:31 +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 0F82B34E439 for ; Tue, 28 Jan 2020 21:30:30 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 905A4107 for ; Tue, 28 Jan 2020 21:30:28 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1580247010.2a558c6b8aeee939e9ac3f804a9528a375f4dad9.mgorny@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 dev-python/bottleneck/bottleneck-1.2.1.ebuild X-VCS-Directories: dev-python/bottleneck/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 2a558c6b8aeee939e9ac3f804a9528a375f4dad9 X-VCS-Branch: master Date: Tue, 28 Jan 2020 21:30:28 +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: b300f7cf-7b4f-4590-88f9-f1f34be2ba83 X-Archives-Hash: 46afea3bcfefa36241bebc83a166f892 commit: 2a558c6b8aeee939e9ac3f804a9528a375f4dad9 Author: Michał Górny gentoo org> AuthorDate: Tue Jan 28 20:53:24 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Tue Jan 28 21:30:10 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2a558c6b dev-python/bottleneck: Combine ebuilds (remove py2) Signed-off-by: Michał Górny gentoo.org> dev-python/bottleneck/bottleneck-1.2.1-r1.ebuild | 2 +- dev-python/bottleneck/bottleneck-1.2.1.ebuild | 29 ------------------------ 2 files changed, 1 insertion(+), 30 deletions(-) diff --git a/dev-python/bottleneck/bottleneck-1.2.1-r1.ebuild b/dev-python/bottleneck/bottleneck-1.2.1-r1.ebuild index 833b7c25e77..ffe790c6fe3 100644 --- a/dev-python/bottleneck/bottleneck-1.2.1-r1.ebuild +++ b/dev-python/bottleneck/bottleneck-1.2.1-r1.ebuild @@ -12,7 +12,7 @@ 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" +KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux" IUSE="test" RESTRICT="!test? ( test )" diff --git a/dev-python/bottleneck/bottleneck-1.2.1.ebuild b/dev-python/bottleneck/bottleneck-1.2.1.ebuild deleted file mode 100644 index 6221eaf8242..00000000000 --- a/dev-python/bottleneck/bottleneck-1.2.1.ebuild +++ /dev/null @@ -1,29 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -PYTHON_COMPAT=( python2_7 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 -}