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 43CF2158020 for ; Mon, 19 Dec 2022 14:47:18 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 885F9E0B0E; Mon, 19 Dec 2022 14:47:12 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 73430E0B01 for ; Mon, 19 Dec 2022 14:47:12 +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 72A95341782 for ; Mon, 19 Dec 2022 14:47:11 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EF3867FB for ; Mon, 19 Dec 2022 14:47:07 +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: <1671461099.319cfc9e74ce46a1d52a6cc37a6ca094ebcf05b1.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/flann/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-libs/flann/flann-1.9.1-r4.ebuild X-VCS-Directories: sci-libs/flann/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 319cfc9e74ce46a1d52a6cc37a6ca094ebcf05b1 X-VCS-Branch: master Date: Mon, 19 Dec 2022 14:47:07 +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: 03fdf810-71ba-4f47-8ef1-e806bcb80bd3 X-Archives-Hash: 504571961882e3527ce5ce47965d5668 commit: 319cfc9e74ce46a1d52a6cc37a6ca094ebcf05b1 Author: Andreas Sturmlechner gentoo org> AuthorDate: Mon Dec 19 08:47:35 2022 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Mon Dec 19 14:44:59 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=319cfc9e sci-libs/flann: drop 1.9.1-r4 Closes: https://bugs.gentoo.org/886643 Signed-off-by: Andreas Sturmlechner gentoo.org> sci-libs/flann/flann-1.9.1-r4.ebuild | 95 ------------------------------------ 1 file changed, 95 deletions(-) diff --git a/sci-libs/flann/flann-1.9.1-r4.ebuild b/sci-libs/flann/flann-1.9.1-r4.ebuild deleted file mode 100644 index 299876df8ad3..000000000000 --- a/sci-libs/flann/flann-1.9.1-r4.ebuild +++ /dev/null @@ -1,95 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake cuda flag-o-matic toolchain-funcs - -DESCRIPTION="Fast approximate nearest neighbor searches in high dimensional spaces" -HOMEPAGE="https://github.com/mariusmuja/flann" -SRC_URI="https://github.com/mariusmuja/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="amd64 ~arm arm64 ~ppc x86 ~amd64-linux ~x86-linux" -IUSE="cuda doc examples mpi octave openmp" - -BDEPEND=" - app-arch/unzip - doc? ( dev-tex/latex2html ) -" -DEPEND=" - app-arch/lz4:= - cuda? ( >=dev-util/nvidia-cuda-toolkit-5.5 ) - mpi? ( - dev-libs/boost:=[mpi] - sci-libs/hdf5[mpi] - ) - !mpi? ( !sci-libs/hdf5[mpi] ) - octave? ( >=sci-mathematics/octave-3.6.4-r1 ) -" -RDEPEND="${DEPEND}" -# TODO: -# readd dependencies for test suite, -# requires multiple ruby dependencies - -PATCHES=( - "${FILESDIR}"/${P}-cmake-3.11{,-1}.patch # bug 678030 - "${FILESDIR}"/${P}-cuda-9.patch - "${FILESDIR}"/${P}-system-lz4.patch # bug 681898 - "${FILESDIR}"/${P}-system-lz4-pkgconfig.patch # bug 827263 -) - -pkg_pretend() { - [[ ${MERGE_TYPE} != binary ]] && use openmp && tc-check-openmp -} - -pkg_setup() { - [[ ${MERGE_TYPE} != binary ]] && use openmp && tc-check-openmp -} - -src_prepare() { - # bug #302621 - use mpi && export CXX=mpicxx - # produce pure octave files - # octave gentoo installation for .m files respected - sed -i \ - -e 's/--mex//' \ - -e 's/\.mex/\.oct/' \ - -e '/FILES/s/${MEX_FILE}//' \ - -e 's:share/flann/octave:share/octave/site/m:' \ - -e "/CUSTOM_TARGET/a\INSTALL(FILES \${MEX_FILE} DESTINATION libexec/octave/site/oct/${CHOST})" \ - src/matlab/CMakeLists.txt || die - use cuda && cuda_src_prepare - - cmake_src_prepare -} - -src_configure() { - append-cxxflags -std=c++11 - - # python bindings are split off into dev-python/pyflann - local mycmakeargs=( - -DBUILD_C_BINDINGS=ON - -DBUILD_PYTHON_BINDINGS=OFF - -DPYTHON_EXECUTABLE= - -DBUILD_CUDA_LIB=$(usex cuda) - -DBUILD_EXAMPLES=$(usex examples) - -DBUILD_DOC=$(usex doc) - -DBUILD_TESTS=OFF - -DBUILD_MATLAB_BINDINGS=$(usex octave) - -DUSE_MPI=$(usex mpi) - -DUSE_OPENMP=$(usex openmp) - ) - use cuda && mycmakeargs+=( - -DCUDA_NVCC_FLAGS="${NVCCFLAGS} --linker-options \"-arsch\"" - ) - use doc && mycmakeargs+=( -DDOCDIR=share/doc/${PF} ) - - cmake_src_configure -} - -src_install() { - cmake_src_install - find "${D}" -name 'lib*.a' -delete || die -}