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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 807BC158030 for ; Sun, 26 Feb 2023 05:25:08 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 68B17E086E; Sun, 26 Feb 2023 05:25:07 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 3E35FE086E for ; Sun, 26 Feb 2023 05:25:07 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 00EA1335DBB for ; Sun, 26 Feb 2023 05:25:06 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7A3298C1 for ; Sun, 26 Feb 2023 05:25:04 +0000 (UTC) From: "Andrew Ammerlaan" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andrew Ammerlaan" Message-ID: <1677388931.ab8543db8a2911e4b3d283f91fb72769e39ac03d.andrewammerlaan@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: dev-python/dpctl/ X-VCS-Repository: proj/sci X-VCS-Files: dev-python/dpctl/dpctl-0.13.0.ebuild dev-python/dpctl/dpctl-0.14.0.ebuild X-VCS-Directories: dev-python/dpctl/ X-VCS-Committer: andrewammerlaan X-VCS-Committer-Name: Andrew Ammerlaan X-VCS-Revision: ab8543db8a2911e4b3d283f91fb72769e39ac03d X-VCS-Branch: master Date: Sun, 26 Feb 2023 05:25:04 +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: 0b47863c-4a85-4ea9-bf74-91f3db7aac96 X-Archives-Hash: 568f55c9a0e833e55ba27db876607254 commit: ab8543db8a2911e4b3d283f91fb72769e39ac03d Author: Andrew Ammerlaan gentoo org> AuthorDate: Sun Feb 26 05:22:11 2023 +0000 Commit: Andrew Ammerlaan gentoo org> CommitDate: Sun Feb 26 05:22:11 2023 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=ab8543db dev-python/dpctl: drop 0.13.0, 0.14.0 Signed-off-by: Andrew Ammerlaan gentoo.org> dev-python/dpctl/dpctl-0.13.0.ebuild | 62 ------------------------------------ dev-python/dpctl/dpctl-0.14.0.ebuild | 62 ------------------------------------ 2 files changed, 124 deletions(-) diff --git a/dev-python/dpctl/dpctl-0.13.0.ebuild b/dev-python/dpctl/dpctl-0.13.0.ebuild deleted file mode 100644 index 4c240bfb1..000000000 --- a/dev-python/dpctl/dpctl-0.13.0.ebuild +++ /dev/null @@ -1,62 +0,0 @@ -# Copyright 2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{10..11} ) -DISTUTILS_USE_PEP517=setuptools -inherit distutils-r1 - -DESCRIPTION="Data Parallel Control " -HOMEPAGE="https://github.com/IntelPython/dpctl" -SRC_URI="https://github.com/IntelPython/dpctl/archive/refs/tags/${PV}.tar.gz -> ${P}.gh.tar.gz" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="~amd64" - -BDEPEND=" - dev-python/cython[${PYTHON_USEDEP}] - dev-python/scikit-build[${PYTHON_USEDEP}] - dev-python/pybind11[${PYTHON_USEDEP}] - dev-python/versioneer[${PYTHON_USEDEP}] - dev-util/cmake - dev-vcs/git - sys-devel/DPC++ -" - -DEPEND=" - dev-libs/level-zero - dev-libs/opencl-icd-loader - dev-python/numpy[${PYTHON_USEDEP}] - dev-python/wheel[${PYTHON_USEDEP}] - sci-libs/oneDAL - sys-devel/DPC++:0/5 -" -RDEPEND="${DEPEND}" - -PATCHES=( - "${FILESDIR}/${PN}-0.14.0-dont-fetch-level-zero.patch" - "${FILESDIR}/${PN}-0.13.0-dont-fetch-pybind.patch" -) - -distutils_enable_tests pytest - -python_prepare_all() { - # DPC++ compiler required for full functionality - export CC="${ESYSROOT}/usr/lib/llvm/intel/bin/clang" - export CXX="${ESYSROOT}/usr/lib/llvm/intel/bin/clang++" - export DPCPPROOT="${ESYSROOT}/usr/lib/llvm/intel" - - # For some reason this is required to build successfully - mkdir -p _skbuild/linux-x86_64-3.8/setuptools/lib.linux-x86_64-cpython-38/dpctl || die - cp dpctl/_version.py _skbuild/linux-x86_64-3.8/setuptools/lib.linux-x86_64-cpython-38/dpctl || die - mkdir -p _skbuild/linux-x86_64-3.9/setuptools/lib.linux-x86_64-cpython-39/dpctl || die - cp dpctl/_version.py _skbuild/linux-x86_64-3.9/setuptools/lib.linux-x86_64-cpython-39/dpctl || die - mkdir -p _skbuild/linux-x86_64-3.10/setuptools/lib.linux-x86_64-cpython-310/dpctl || die - cp dpctl/_version.py _skbuild/linux-x86_64-3.10/setuptools/lib.linux-x86_64-cpython-310/dpctl || die - mkdir -p _skbuild/linux-x86_64-3.11/setuptools/lib.linux-x86_64-cpython-311/dpctl || die - cp dpctl/_version.py _skbuild/linux-x86_64-3.11/setuptools/lib.linux-x86_64-cpython-311/dpctl || die - - distutils-r1_python_prepare_all -} diff --git a/dev-python/dpctl/dpctl-0.14.0.ebuild b/dev-python/dpctl/dpctl-0.14.0.ebuild deleted file mode 100644 index 0bab26875..000000000 --- a/dev-python/dpctl/dpctl-0.14.0.ebuild +++ /dev/null @@ -1,62 +0,0 @@ -# Copyright 2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{10..11} ) -DISTUTILS_USE_PEP517=setuptools -inherit distutils-r1 - -DESCRIPTION="Data Parallel Control " -HOMEPAGE="https://github.com/IntelPython/dpctl" -SRC_URI="https://github.com/IntelPython/dpctl/archive/refs/tags/${PV}.tar.gz -> ${P}.gh.tar.gz" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="~amd64" - -BDEPEND=" - dev-python/cython[${PYTHON_USEDEP}] - dev-python/scikit-build[${PYTHON_USEDEP}] - dev-python/pybind11[${PYTHON_USEDEP}] - dev-python/versioneer[${PYTHON_USEDEP}] - dev-util/cmake - dev-vcs/git - sys-devel/DPC++ -" - -DEPEND=" - dev-libs/level-zero - dev-libs/opencl-icd-loader - dev-python/numpy[${PYTHON_USEDEP}] - dev-python/wheel[${PYTHON_USEDEP}] - sci-libs/oneDAL - sys-devel/DPC++:0/6 -" -RDEPEND="${DEPEND}" - -PATCHES=( - "${FILESDIR}/${P}-find-opencl.patch" - "${FILESDIR}/${P}-dont-fetch-level-zero.patch" - "${FILESDIR}/${P}-dont-fetch-pybind.patch" - "${FILESDIR}/${P}-include-tuple.patch" -) - -distutils_enable_tests pytest - -python_prepare_all() { - # DPC++ compiler required for full functionality - export CC="${ESYSROOT}/usr/lib/llvm/intel/bin/clang" - export CXX="${ESYSROOT}/usr/lib/llvm/intel/bin/clang++" - export DPCPPROOT="${ESYSROOT}/usr/lib/llvm/intel" - - # Build system reads version from git tag - git init -q || die - git config --global user.email "larry@gentoo.org" || die - git config --global user.name "Larry the Cow" || die - git add . || die - git commit -qm "init" || die - git tag -a "${PV}" -m "${PN} version ${PV}" || die - - distutils-r1_python_prepare_all -}