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 642941381F3 for ; Sun, 3 May 2020 02:41:26 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4C2AAE0921; Sun, 3 May 2020 02:41:25 +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 79A3EE0921 for ; Sun, 3 May 2020 02:41:24 +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 BD1C434EC6F for ; Sun, 3 May 2020 02:41:22 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9CB121B4 for ; Sun, 3 May 2020 02:41:20 +0000 (UTC) From: "Matthias Maier" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matthias Maier" Message-ID: <1588473660.08a7a14351dea6d8e1c87fa1ec44f601af672f1a.tamiko@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: sci-libs/symengine/ X-VCS-Repository: proj/sci X-VCS-Files: sci-libs/symengine/metadata.xml sci-libs/symengine/symengine-0.1.0.ebuild sci-libs/symengine/symengine-9999.ebuild X-VCS-Directories: sci-libs/symengine/ X-VCS-Committer: tamiko X-VCS-Committer-Name: Matthias Maier X-VCS-Revision: 08a7a14351dea6d8e1c87fa1ec44f601af672f1a X-VCS-Branch: master Date: Sun, 3 May 2020 02:41:20 +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: fd4988a3-1472-406e-899d-c8460170d5c8 X-Archives-Hash: 5164cee0bf336a0a8576c137606d4af9 commit: 08a7a14351dea6d8e1c87fa1ec44f601af672f1a Author: Matthias Maier gentoo org> AuthorDate: Sun May 3 02:39:04 2020 +0000 Commit: Matthias Maier gentoo org> CommitDate: Sun May 3 02:41:00 2020 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=08a7a143 sci-lib/symengine: remove package; in main tree Signed-off-by: Matthias Maier gentoo.org> sci-libs/symengine/metadata.xml | 18 ---------- sci-libs/symengine/symengine-0.1.0.ebuild | 59 ------------------------------- sci-libs/symengine/symengine-9999.ebuild | 51 -------------------------- 3 files changed, 128 deletions(-) diff --git a/sci-libs/symengine/metadata.xml b/sci-libs/symengine/metadata.xml deleted file mode 100644 index 5f5840260..000000000 --- a/sci-libs/symengine/metadata.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - mschu.dev@gmail.com - Michael Schubert - - - sci-mathematics@gentoo.org - Gentoo Mathematics Project - - - sympy/symengine - - - Add support for boost (dev-libs/boost) - - diff --git a/sci-libs/symengine/symengine-0.1.0.ebuild b/sci-libs/symengine/symengine-0.1.0.ebuild deleted file mode 100644 index 658f6700a..000000000 --- a/sci-libs/symengine/symengine-0.1.0.ebuild +++ /dev/null @@ -1,59 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -PYTHON_COMPAT=( python2_7 ) - -inherit cmake-utils python-single-r1 - -DESCRIPTION="Fast symbolic manipulation library, written in C++" -HOMEPAGE="https://github.com/sympy/symengine" -SRC_URI="https://github.com/sympy/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" -IUSE="boost openmp python threads" -REQUIRED_USE=" - python? ( ${PYTHON_REQUIRED_USE} ) - ?? ( openmp threads )" - -RDEPEND=" - dev-libs/jemalloc - boost? ( dev-libs/boost ) - python? ( dev-python/numpy[${PYTHON_USEDEP}] )" -DEPEND="${RDEPEND} - python? ( - dev-python/cython[${PYTHON_USEDEP}] - dev-python/setuptools[${PYTHON_USEDEP}] )" - -CMAKE_BUILD_TYPE=Release - -pkg_pretend() { - if use openmp && [[ ${MERGE_TYPE} != binary ]]; then - if [[ $(tc-getCC) == *gcc ]] && ! tc-has-openmp; then - ewarn "OpenMP is not available in your current selected gcc" - die "need openmp capable gcc" - fi - fi -} - -src_configure() { - local mycmakeargs=( - -DCMAKE_INSTALL_PREFIX:PATH="${EPREFIX}"/usr - $(cmake-utils_use_with boost) - $(cmake-utils_use_with openmp) - $(cmake-utils_use_with python) - ) - - if use threads; then - mycmakeargs+=( - -DWITH_TCMALLOC:BOOL=ON - -DWITH_PTHREAD:BOOL=ON - -DWITH_SYMENGINE_THREAD_SAFE:BOOL=ON - ) - fi - - cmake-utils_src_configure -} diff --git a/sci-libs/symengine/symengine-9999.ebuild b/sci-libs/symengine/symengine-9999.ebuild deleted file mode 100644 index 3448694d2..000000000 --- a/sci-libs/symengine/symengine-9999.ebuild +++ /dev/null @@ -1,51 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -inherit git-r3 cmake-utils - -DESCRIPTION="Fast symbolic manipulation library, written in C++" -HOMEPAGE="https://github.com/sympy/symengine" -SRC_URI="" -EGIT_REPO_URI="https://github.com/sympy/symengine.git" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" -IUSE="boost openmp threads" -REQUIRED_USE="?? ( openmp threads )" - -RDEPEND=" - dev-libs/jemalloc - boost? ( dev-libs/boost )" -DEPEND="${RDEPEND}" - -CMAKE_BUILD_TYPE=Release - -pkg_pretend() { - if use openmp && [[ ${MERGE_TYPE} != binary ]]; then - if [[ $(tc-getCC) == *gcc ]] && ! tc-has-openmp; then - ewarn "OpenMP is not available in your current selected gcc" - die "need openmp capable gcc" - fi - fi -} - -src_configure() { - local mycmakeargs=( - -DCMAKE_INSTALL_PREFIX:PATH="${EPREFIX}"/usr - $(cmake-utils_use_with boost) - $(cmake-utils_use_with openmp) - ) - - if use threads; then - mycmakeargs+=( - -DWITH_TCMALLOC:BOOL=ON - -DWITH_PTHREAD:BOOL=ON - -DWITH_SYMENGINE_THREAD_SAFE:BOOL=ON - ) - fi - - cmake-utils_src_configure -}