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 957BD138359 for ; Sun, 27 Sep 2020 22:12:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B9743E07F9; Sun, 27 Sep 2020 22:12:42 +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 A1843E07F9 for ; Sun, 27 Sep 2020 22:12:42 +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 398BE33BECE for ; Sun, 27 Sep 2020 22:12:41 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D1FC637A for ; Sun, 27 Sep 2020 22:12:39 +0000 (UTC) From: "Horea Christian" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Horea Christian" Message-ID: <1601244738.ea5a0830edfbf9a045dcba6274de96c877741ce7.chymera@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: sci-libs/pagmo/ X-VCS-Repository: proj/sci X-VCS-Files: sci-libs/pagmo/metadata.xml sci-libs/pagmo/pagmo-9999.ebuild X-VCS-Directories: sci-libs/pagmo/ X-VCS-Committer: chymera X-VCS-Committer-Name: Horea Christian X-VCS-Revision: ea5a0830edfbf9a045dcba6274de96c877741ce7 X-VCS-Branch: master Date: Sun, 27 Sep 2020 22:12:39 +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: 283f4aac-e327-4be8-be66-17c317857e0e X-Archives-Hash: dfd8cd4db3707624454c52c6d8f89173 commit: ea5a0830edfbf9a045dcba6274de96c877741ce7 Author: Horea Christian chymera eu> AuthorDate: Sun Sep 27 22:12:18 2020 +0000 Commit: Horea Christian gmail com> CommitDate: Sun Sep 27 22:12:18 2020 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=ea5a0830 sci-libs/pagmo: removed discontinued package Package-Manager: Portage-3.0.8, Repoman-3.0.1 Signed-off-by: Horea Christian chymera.eu> sci-libs/pagmo/metadata.xml | 16 -------------- sci-libs/pagmo/pagmo-9999.ebuild | 47 ---------------------------------------- 2 files changed, 63 deletions(-) diff --git a/sci-libs/pagmo/metadata.xml b/sci-libs/pagmo/metadata.xml deleted file mode 100644 index cc59fd48c..000000000 --- a/sci-libs/pagmo/metadata.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - sci-astronomy@gentoo.org - Gentoo Astronomy Project - - - Use nlopt, a non-linear optimization library - Use ipopt, a interior-point optimizer - Use eigen, a c++ linear algebra library, for algorithms like CAMES - - - esa/pagmo2 - - diff --git a/sci-libs/pagmo/pagmo-9999.ebuild b/sci-libs/pagmo/pagmo-9999.ebuild deleted file mode 100644 index 84665a0ae..000000000 --- a/sci-libs/pagmo/pagmo-9999.ebuild +++ /dev/null @@ -1,47 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -PYTHON_COMPAT=( python2_7 ) - -inherit cmake-utils git-r3 python-single-r1 - -DESCRIPTION="Parallelization engine for optimization problems" -HOMEPAGE="https://github.com/esa/pagmo" -SRC_URI="" -EGIT_REPO_URI="https://github.com/esa/${PN}2.git git://github.com/esa/${PN}2.git" - -LICENSE="GPL-3" -SLOT="2" -KEYWORDS="" -IUSE="eigen nlopt ipopt python test" - -REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )" - -RDEPEND=" - dev-libs/boost - eigen? ( dev-cpp/eigen:3 ) - python? ( - ${PYTHON_DEPS} - dev-libs/boost[${PYTHON_USEDEP}] - ) - nlopt? ( sci-libs/nlopt ) - ipopt? ( sci-libs/ipopt ) -" -DEPEND="${RDEPEND}" - -pkg_setup() { - use python && python-single-r1_pkg_setup -} - -src_configure() { - mycmakeargs=( - -DPAGMO_BUILD_PYGMO=$(usex python) - -DPAGMO_WITH_EIGEN3=$(usex eigen) - -DPAGMO_WITH_NLOPT=$(usex nlopt) - -DPAGMO_WITH_IPOPT=$(usex ipopt) - -DPAGMO_BUILD_TESTS=$(usex test) - ) - cmake-utils_src_configure -}