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 ABBF9158043 for ; Mon, 15 Apr 2024 06:03:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AAF79E29E2; Mon, 15 Apr 2024 06:03:30 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 92F74E29E2 for ; Mon, 15 Apr 2024 06:03:30 +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 BF2E93433C9 for ; Mon, 15 Apr 2024 06:03:29 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 01A0816E1 for ; Mon, 15 Apr 2024 06:03:28 +0000 (UTC) From: "Joonas Niilola" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Joonas Niilola" Message-ID: <1713161002.89829a80ef30057203ef5956402722865257e00d.juippis@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/librnp/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/librnp/librnp-0.17.0-r2.ebuild dev-util/librnp/librnp-0.17.0-r3.ebuild X-VCS-Directories: dev-util/librnp/ X-VCS-Committer: juippis X-VCS-Committer-Name: Joonas Niilola X-VCS-Revision: 89829a80ef30057203ef5956402722865257e00d X-VCS-Branch: master Date: Mon, 15 Apr 2024 06:03:28 +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: 6b4aa07a-e507-43d1-8aaf-d44a83f8e53e X-Archives-Hash: 798a5495a890a02bab74d6d07b09204b commit: 89829a80ef30057203ef5956402722865257e00d Author: Joonas Niilola gentoo org> AuthorDate: Mon Apr 15 05:57:38 2024 +0000 Commit: Joonas Niilola gentoo org> CommitDate: Mon Apr 15 06:03:22 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=89829a80 dev-util/librnp: restrict sexpp dep, fix tests call Closes: https://bugs.gentoo.org/927638 Bug: https://bugs.gentoo.org/929906 Signed-off-by: Joonas Niilola gentoo.org> .../librnp/{librnp-0.17.0-r2.ebuild => librnp-0.17.0-r3.ebuild} | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/dev-util/librnp/librnp-0.17.0-r2.ebuild b/dev-util/librnp/librnp-0.17.0-r3.ebuild similarity index 91% rename from dev-util/librnp/librnp-0.17.0-r2.ebuild rename to dev-util/librnp/librnp-0.17.0-r3.ebuild index b04311dc0379..1ffd2d040346 100644 --- a/dev-util/librnp/librnp-0.17.0-r2.ebuild +++ b/dev-util/librnp/librnp-0.17.0-r3.ebuild @@ -1,9 +1,9 @@ -# Copyright 2022-2023 Gentoo Authors +# Copyright 2022-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 -inherit cmake +inherit cmake multiprocessing DESCRIPTION="High performance C++ OpenPGP library" HOMEPAGE="https://www.rnpgp.org/ https://github.com/rnpgp/rnp" @@ -16,7 +16,7 @@ IUSE="+botan man test" RDEPEND="app-arch/bzip2 dev-libs/json-c:= - >=dev-libs/sexpp-0.8.5[-static-libs(-)] + =dev-libs/sexpp-0.8.6*[-static-libs(-)] sys-libs/zlib botan? ( dev-libs/botan:2= ) !botan? ( >=dev-libs/openssl-1.1.1:= )" @@ -76,7 +76,7 @@ src_configure() { src_test() { cd "${BUILD_DIR}"/src/tests || die - ctest -j"${MAKEOPTS}" -R .* --output-on-failure || die + ctest -j$(makeopts_jobs) -R .* --output-on-failure || die } src_install() {