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 E8A6D15806E for ; Sun, 14 May 2023 10:29:21 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 13897E0883; Sun, 14 May 2023 10:29:19 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id DB742E0880 for ; Sun, 14 May 2023 10:29:17 +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 89A7C340E9F for ; Sun, 14 May 2023 10:29:16 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D5E59A75 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: <1684060074.4f25141410b25192755f646a9bce682319223891.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/libspatialindex/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-libs/libspatialindex/libspatialindex-1.9.3-r1.ebuild X-VCS-Directories: sci-libs/libspatialindex/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 4f25141410b25192755f646a9bce682319223891 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: 18b6178e-e23c-4f44-a778-3284e88a8793 X-Archives-Hash: 4c91c75d1cf36f9ecd3c2c645afca6a6 commit: 4f25141410b25192755f646a9bce682319223891 Author: Andreas Sturmlechner gentoo org> AuthorDate: Sun May 14 08:51:59 2023 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sun May 14 10:27:54 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4f251414 sci-libs/libspatialindex: drop 1.9.3-r1 Closes: https://bugs.gentoo.org/906313 Signed-off-by: Andreas Sturmlechner gentoo.org> .../libspatialindex-1.9.3-r1.ebuild | 37 ---------------------- 1 file changed, 37 deletions(-) diff --git a/sci-libs/libspatialindex/libspatialindex-1.9.3-r1.ebuild b/sci-libs/libspatialindex/libspatialindex-1.9.3-r1.ebuild deleted file mode 100644 index ab14fc05522f..000000000000 --- a/sci-libs/libspatialindex/libspatialindex-1.9.3-r1.ebuild +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake - -MY_P="spatialindex-src-${PV}" - -DESCRIPTION="C++ implementation of R*-tree, an MVR-tree and a TPR-tree with C API" -HOMEPAGE="https://libspatialindex.org/ - https://github.com/libspatialindex/libspatialindex" -SRC_URI="https://github.com/libspatialindex/${PN}/releases/download/${PV}/${MY_P}.tar.bz2" - -LICENSE="MIT" -SLOT="0/6" -KEYWORDS="amd64 ~arm64 ~riscv x86" -IUSE="test" -RESTRICT="!test? ( test )" - -RDEPEND="" -DEPEND="test? ( >=dev-cpp/gtest-1.10.0 )" - -S=${WORKDIR}/${MY_P} - -PATCHES=( - "${FILESDIR}"/${P}-respect-compiler-flags.patch - "${FILESDIR}"/${P}-use-system-gtest.patch -) - -src_configure() { - local mycmakeargs=( - -DSIDX_BUILD_TESTS=$(usex test) - ) - - cmake_src_configure -}