From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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 finch.gentoo.org (Postfix) with ESMTPS id 6916815827B for ; Thu, 14 Aug 2025 09:18:43 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (No client certificate requested) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 4DDA534135E for ; Thu, 14 Aug 2025 09:18:43 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id DE81D110562; Thu, 14 Aug 2025 09:18:35 +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) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id CD3BC110561 for ; Thu, 14 Aug 2025 09:18:35 +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 82E503410A6 for ; Thu, 14 Aug 2025 09:18:35 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C0A733352 for ; Thu, 14 Aug 2025 09:18:33 +0000 (UTC) From: "Paul Zander" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Paul Zander" Message-ID: <1755159366.140e2407717d180063e4a3605a3330e58d6fea0b.negril.nx+gentoo@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: sci-libs/nexus/ X-VCS-Repository: proj/sci X-VCS-Files: sci-libs/nexus/nexus-4.4.3_p20200126-r1.ebuild sci-libs/nexus/nexus-4.4.3_p20200126.ebuild X-VCS-Directories: sci-libs/nexus/ X-VCS-Committer: negril.nx+gentoo X-VCS-Committer-Name: Paul Zander X-VCS-Revision: 140e2407717d180063e4a3605a3330e58d6fea0b X-VCS-Branch: master Date: Thu, 14 Aug 2025 09:18:33 +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: 4277e34d-b799-4231-b690-c69b97119678 X-Archives-Hash: 829ea3ad864a2ef6885af964fb202243 commit: 140e2407717d180063e4a3605a3330e58d6fea0b Author: Paul Zander gmail com> AuthorDate: Thu Aug 14 08:16:06 2025 +0000 Commit: Paul Zander gmail com> CommitDate: Thu Aug 14 08:16:06 2025 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=140e2407 sci-libs/nexus: move to EAPI 8 Signed-off-by: Paul Zander gmail.com> ...3_p20200126.ebuild => nexus-4.4.3_p20200126-r1.ebuild} | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/sci-libs/nexus/nexus-4.4.3_p20200126.ebuild b/sci-libs/nexus/nexus-4.4.3_p20200126-r1.ebuild similarity index 86% rename from sci-libs/nexus/nexus-4.4.3_p20200126.ebuild rename to sci-libs/nexus/nexus-4.4.3_p20200126-r1.ebuild index 58d8264cf..e735cf0e1 100644 --- a/sci-libs/nexus/nexus-4.4.3_p20200126.ebuild +++ b/sci-libs/nexus/nexus-4.4.3_p20200126-r1.ebuild @@ -1,25 +1,28 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 inherit cmake java-pkg-opt-2 DESCRIPTION="Data format for neutron and x-ray scattering data" HOMEPAGE="http://nexusformat.org/" + COMMIT=5b803b3a0014bd9759b3d846da3cd3c1cfafd7d5 SRC_URI="https://github.com/nexusformat/code/archive/${COMMIT}.tar.gz -> ${P}.tar.gz" -S="${WORKDIR}"/code-${COMMIT} +S="${WORKDIR}/code-${COMMIT}" LICENSE="LGPL-2.1" SLOT="0" KEYWORDS="~amd64" IUSE="cxx hdf4 +hdf5 java xml" -REQUIRED_USE=" || ( hdf4 hdf5 xml ) " +REQUIRED_USE="|| ( hdf4 hdf5 xml )" + +RESTRICT="test" -RDEPEND=" +DEPEND=" dev-libs/libxml2 sys-libs/readline sys-libs/libtermcap-compat @@ -27,7 +30,7 @@ RDEPEND=" hdf4? ( sci-libs/hdf ) hdf5? ( sci-libs/hdf5[zlib] ) " -DEPEND="${RDEPEND}" +RDEPEND="${DEPEND}" BDEPEND=" app-text/doxygen[dot] "