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 D27FE1580EB for ; Fri, 23 May 2025 08:17: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 server-signature RSA-PSS (4096 bits)) (No client certificate requested) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id B919B3434C1 for ; Fri, 23 May 2025 08:17:43 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 1A581110497; Fri, 23 May 2025 08:17: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 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id 11160110497 for ; Fri, 23 May 2025 08:17: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 BBBC33434B7 for ; Fri, 23 May 2025 08:17:34 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 03A56281D for ; Fri, 23 May 2025 08:17:33 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1747988219.63492aad0a9e051db1ccabd113b6ae05ba32e761.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/matio/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-libs/matio/matio-1.5.23.ebuild X-VCS-Directories: sci-libs/matio/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 63492aad0a9e051db1ccabd113b6ae05ba32e761 X-VCS-Branch: master Date: Fri, 23 May 2025 08:17: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: f2817ddc-2bf2-487f-b227-6389cf7c4af1 X-Archives-Hash: cb5acdc0d1453dd6b1b308646d669db0 commit: 63492aad0a9e051db1ccabd113b6ae05ba32e761 Author: Sam James gentoo org> AuthorDate: Fri May 23 07:47:09 2025 +0000 Commit: Sam James gentoo org> CommitDate: Fri May 23 08:16:59 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=63492aad sci-libs/matio: run tests in parallel Much faster. Also, drop redundant --disable-static while here (as ebuild already uses EAPI 8). Signed-off-by: Sam James gentoo.org> sci-libs/matio/matio-1.5.23.ebuild | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/sci-libs/matio/matio-1.5.23.ebuild b/sci-libs/matio/matio-1.5.23.ebuild index e6ae2a54d346..cb88ad45790d 100644 --- a/sci-libs/matio/matio-1.5.23.ebuild +++ b/sci-libs/matio/matio-1.5.23.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2024 Gentoo Authors +# Copyright 1999-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 -inherit libtool +inherit libtool multiprocessing DESCRIPTION="Library for reading and writing matlab files" HOMEPAGE="https://sourceforge.net/projects/matio/" @@ -27,7 +27,6 @@ src_prepare() { src_configure() { econf \ - --disable-static \ $(use_enable hdf5 mat73) \ $(use_enable sparse extended-sparse) } @@ -37,6 +36,10 @@ src_compile() { use doc && emake -C documentation pdf } +src_test() { + emake -Onone check TESTSUITEFLAGS="--jobs=$(makeopts_jobs)" +} + src_install() { default use doc && dodoc documentation/matio_user_guide.pdf