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 8706C138335 for ; Sun, 15 Dec 2019 19:17:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5A642E083D; Sun, 15 Dec 2019 19:17:02 +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 2D9CEE083D for ; Sun, 15 Dec 2019 19:17:02 +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 16CCE34D63A for ; Sun, 15 Dec 2019 19:17:01 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A186B8A1 for ; Sun, 15 Dec 2019 19:16:58 +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: <1576437411.c730b9d92245c533f182c15be6f1fca08f5eeada.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pyopencl/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pyopencl/pyopencl-9999.ebuild X-VCS-Directories: dev-python/pyopencl/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: c730b9d92245c533f182c15be6f1fca08f5eeada X-VCS-Branch: master Date: Sun, 15 Dec 2019 19:16:58 +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: 32157716-eb89-4ec5-b772-fd28d25a1955 X-Archives-Hash: 812d60eb07795ffae159ddfd2de95a02 commit: c730b9d92245c533f182c15be6f1fca08f5eeada Author: Michał Górny gentoo org> AuthorDate: Sun Dec 15 19:06:50 2019 +0000 Commit: Michał Górny gentoo org> CommitDate: Sun Dec 15 19:16:51 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c730b9d9 dev-python/pyopencl: Drop unmaintained -9999 Signed-off-by: Michał Górny gentoo.org> dev-python/pyopencl/pyopencl-9999.ebuild | 49 -------------------------------- 1 file changed, 49 deletions(-) diff --git a/dev-python/pyopencl/pyopencl-9999.ebuild b/dev-python/pyopencl/pyopencl-9999.ebuild deleted file mode 100644 index 8055a67ac26..00000000000 --- a/dev-python/pyopencl/pyopencl-9999.ebuild +++ /dev/null @@ -1,49 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 -PYTHON_COMPAT=( python{2_7,3_5,3_6} ) - -inherit distutils-r1 git-2 - -EGIT_REPO_URI="https://git.tiker.net/trees/pyopencl.git" - -DESCRIPTION="Python wrapper for OpenCL" -HOMEPAGE="https://mathema.tician.de/software/pyopencl - https://pypi.org/project/pyopencl/" -SRC_URI="" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="" -IUSE="examples opengl" - -RDEPEND=">=dev-libs/boost-1.48[python,${PYTHON_USEDEP}] - dev-python/decorator[${PYTHON_USEDEP}] - dev-python/numpy[${PYTHON_USEDEP}] - dev-python/mako[${PYTHON_USEDEP}] - >=dev-python/pytools-9999[${PYTHON_USEDEP}] - >=virtual/opencl-0-r1" -DEPEND="${RDEPEND}" - -src_configure() -{ - local myconf=() - if use opengl; then - myconf+=(--cl-enable-gl) - fi - - "${PYTHON}" configure.py \ - --boost-compiler=gcc \ - --boost-python-libname=boost_python-${PYTHON_ABI}-mt \ - --no-use-shipped-boost \ - "${myconf[@]}" -} - -python_install_all() { - if use examples; then - local EXAMPLES=( examples/. ) - einfo "Some of the examples provided by this package require dev-python/matplotlib." - fi - distutils-r1_python_install_all -}