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 9797115806E for ; Sun, 14 May 2023 10:29:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 70877E0869; Sun, 14 May 2023 10:29:16 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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 3A63EE0877 for ; Sun, 14 May 2023 10:29:16 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id EFCA2340E6E for ; Sun, 14 May 2023 10:29:14 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 41A8EA6D for ; Sun, 14 May 2023 10:29:13 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1684060071.7928dd2cd088a3c92eba62704db0f0395837643b.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/libecpint/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-libs/libecpint/libecpint-1.0.6.ebuild X-VCS-Directories: sci-libs/libecpint/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 7928dd2cd088a3c92eba62704db0f0395837643b X-VCS-Branch: master Date: Sun, 14 May 2023 10:29:13 +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: 7c97c8a8-5b01-472a-93eb-a24113f96f06 X-Archives-Hash: 40122df5110e5ca3c3fe6b65ce5f6df2 commit: 7928dd2cd088a3c92eba62704db0f0395837643b Author: Andreas Sturmlechner gentoo org> AuthorDate: Sun May 14 07:30:28 2023 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sun May 14 10:27:51 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7928dd2c sci-libs/libecpint: drop 1.0.6 Signed-off-by: Andreas Sturmlechner gentoo.org> sci-libs/libecpint/libecpint-1.0.6.ebuild | 27 --------------------------- 1 file changed, 27 deletions(-) diff --git a/sci-libs/libecpint/libecpint-1.0.6.ebuild b/sci-libs/libecpint/libecpint-1.0.6.ebuild deleted file mode 100644 index 47004ee7019c..000000000000 --- a/sci-libs/libecpint/libecpint-1.0.6.ebuild +++ /dev/null @@ -1,27 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake - -DESCRIPTION="Efficient evaluation of integrals over ab initio effective core potentials" -HOMEPAGE="https://github.com/robashaw/libecpint" -SRC_URI="https://github.com/robashaw/libecpint/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" -IUSE="test" -RESTRICT="!test? ( test )" - -RDEPEND="dev-libs/pugixml" -DEPEND="${RDEPEND} - test? ( dev-cpp/gtest )" - -src_configure() { - local mycmakeargs=( - -DLIBECPINT_BUILD_TESTS=$(usex test) - ) - cmake_src_configure -}