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 4A47D158094 for ; Thu, 15 Sep 2022 11:18:02 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 87222E0A7C; Thu, 15 Sep 2022 11:18:01 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 59623E0A7C for ; Thu, 15 Sep 2022 11:18:01 +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 83E2C340F7F for ; Thu, 15 Sep 2022 11:18:00 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2A39C5CD for ; Thu, 15 Sep 2022 11:17:59 +0000 (UTC) From: "Andrew Ammerlaan" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andrew Ammerlaan" Message-ID: <1663240133.99c2387ed4924cbebc3ebcbdbcaeb7daeba65a3e.andrewammerlaan@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: sci-biology/ants/ X-VCS-Repository: proj/sci X-VCS-Files: sci-biology/ants/ants-2.3.4.ebuild X-VCS-Directories: sci-biology/ants/ X-VCS-Committer: andrewammerlaan X-VCS-Committer-Name: Andrew Ammerlaan X-VCS-Revision: 99c2387ed4924cbebc3ebcbdbcaeb7daeba65a3e X-VCS-Branch: master Date: Thu, 15 Sep 2022 11:17:59 +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: 26ba953f-b592-450e-9d41-6b9b0ed28756 X-Archives-Hash: 192210041241217219578967ba8b3ba2 commit: 99c2387ed4924cbebc3ebcbdbcaeb7daeba65a3e Author: Andrew Ammerlaan gentoo org> AuthorDate: Thu Sep 15 11:08:53 2022 +0000 Commit: Andrew Ammerlaan gentoo org> CommitDate: Thu Sep 15 11:08:53 2022 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=99c2387e Revert "sci-biology/ants: add 2.3.4" This version is broken because it references versions of vtk that does not exist and depends on vtk incorrectly This reverts commit 4d36e47773d01a0d4d91d2eee5d2701dcdebe9d0. Signed-off-by: Andrew Ammerlaan gentoo.org> sci-biology/ants/ants-2.3.4.ebuild | 78 -------------------------------------- 1 file changed, 78 deletions(-) diff --git a/sci-biology/ants/ants-2.3.4.ebuild b/sci-biology/ants/ants-2.3.4.ebuild deleted file mode 100644 index 95eb6355b..000000000 --- a/sci-biology/ants/ants-2.3.4.ebuild +++ /dev/null @@ -1,78 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -CMAKE_MAKEFILE_GENERATOR="emake" - -inherit cmake - -MY_PN="ANTs" - -DESCRIPTION="Advanced Normalitazion Tools for neuroimaging" -HOMEPAGE="http://stnava.github.io/ANTs/" -SRC_URI=" - https://github.com/ANTsX/ANTs/archive/v${PV}.tar.gz -> ${P}.tar.gz - test? ( - http://resources.chymera.eu/distfiles/ants_testdata-${PV}.tar.xz - ) -" - -SLOT="0" -LICENSE="BSD" -KEYWORDS="~amd64 ~x86" -IUSE="test vtk" -RESTRICT="!test? ( test )" - -DEPEND=" - vtk? ( - ~sci-libs/itk-5.1.0[vtkglue] - sci-libs/vtk - ) - !vtk? ( ~sci-libs/itk-5.1.0 ) -" -RDEPEND="${DEPEND}" - -PATCHES=( - "${FILESDIR}/${P}-version.patch" - "${FILESDIR}/${P}-libdir.patch" -) - -S="${WORKDIR}/${MY_PN}-${PV}" - -src_unpack() { - default - if use test; then - mkdir -p "${S}/.ExternalData/MD5" || die "Could not create test data directory." - tar xvf "${DISTDIR}/ants_testdata-${PV}.tar.xz" -C "${S}/.ExternalData/MD5/" > /dev/null || die "Could not unpack test data." - fi -} - -src_configure() { - local mycmakeargs=( - -DUSE_SYSTEM_ITK=ON - -DITK_DIR="${EPREFIX}/usr/include/ITK-5.1/" - -DBUILD_TESTING="$(usex test ON OFF)" - -DUSE_VTK=$(usex vtk ON OFF) - -DUSE_SYSTEM_VTK=$(usex vtk ON OFF) - -DANTS_SNAPSHOT_VERSION:STRING=${PV} - ) - use vtk && mycmakeargs+=( - -DVTK_DIR="${EPREFIX}/usr/include/vtk-8.1/" - ) - use test && mycmakeargs+=( - -DExternalData_OBJECT_STORES="${S}/.ExternalData/MD5" - ) - cmake_src_configure -} - -src_install() { - BUILD_DIR="${WORKDIR}/${P}_build/ANTS-build" - cmake_src_install - cd "${S}/Scripts" || die "scripts dir not found" - dobin *.sh - dodir /usr/$(get_libdir)/ants - insinto "/usr/$(get_libdir)/ants" - doins * - doenvd "${FILESDIR}"/99ants -}