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 C42CE158041 for ; Mon, 11 Mar 2024 14:24:18 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DB3EAE2A59; Mon, 11 Mar 2024 14:24:14 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B93D8E2A63 for ; Mon, 11 Mar 2024 14:24:14 +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 0C200343014 for ; Mon, 11 Mar 2024 14:24:14 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3BBED1527 for ; Mon, 11 Mar 2024 14:24:10 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1710166972.76e4b9ae922159884be652aed7899371396e23bc.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/igraph/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/igraph/igraph-0.10.4.ebuild X-VCS-Directories: dev-libs/igraph/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 76e4b9ae922159884be652aed7899371396e23bc X-VCS-Branch: master Date: Mon, 11 Mar 2024 14:24:10 +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: 3e9ceb1b-e794-421b-98e2-df5b11261810 X-Archives-Hash: 12a2a33b02c249110b4674f7ac1597a2 commit: 76e4b9ae922159884be652aed7899371396e23bc Author: Eli Schwartz gmail com> AuthorDate: Mon Mar 11 04:18:27 2024 +0000 Commit: Sam James gentoo org> CommitDate: Mon Mar 11 14:22:52 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=76e4b9ae dev-libs/igraph: drop old This old version has been superseded with an -r1 since December. There's no excuse for anyone to still be using a buggy revision within a version. Signed-off-by: Eli Schwartz gmail.com> Signed-off-by: Sam James gentoo.org> dev-libs/igraph/igraph-0.10.4.ebuild | 48 ------------------------------------ 1 file changed, 48 deletions(-) diff --git a/dev-libs/igraph/igraph-0.10.4.ebuild b/dev-libs/igraph/igraph-0.10.4.ebuild deleted file mode 100644 index bdefdfb07f82..000000000000 --- a/dev-libs/igraph/igraph-0.10.4.ebuild +++ /dev/null @@ -1,48 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit cmake - -DESCRIPTION="Creating and manipulating undirected and directed graphs" -HOMEPAGE="https://igraph.org/" -SRC_URI="https://github.com/igraph/igraph/releases/download/${PV}/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0/0" -KEYWORDS="amd64 x86" - -IUSE="debug test threads" -RESTRICT="!test? ( test )" - -RDEPEND=" - dev-libs/gmp:0= - dev-libs/libxml2 - sci-libs/arpack - sci-mathematics/glpk:= - virtual/blas - virtual/lapack" -DEPEND="${RDEPEND}" - -src_configure() { - local mycmakeargs=( - -DUSE_CCACHE=OFF - -DIGRAPH_GLPK_SUPPORT=ON - -DIGRAPH_GRAPHML_SUPPORT=ON - -DIGRAPH_USE_INTERNAL_ARPACK=OFF - -DIGRAPH_USE_INTERNAL_BLAS=OFF - -DIGRAPH_USE_INTERNAL_GLPK=OFF - -DIGRAPH_USE_INTERNAL_GMP=OFF - -DIGRAPH_USE_INTERNAL_LAPACK=OFF - # Not packaged in ::gentoo atm - -DIGRAPH_USE_INTERNAL_PLFIT=ON - -DIGRAPH_ENABLE_TLS=$(usex threads) - -DBUILD_TESTING=$(usex test) - ) - cmake_src_configure -} - -src_test() { - cmake_build check -}