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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 421FC158086 for ; Mon, 11 Oct 2021 19:18:04 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 59F16E0802; Mon, 11 Oct 2021 19:18:02 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 42471E0802 for ; Mon, 11 Oct 2021 19:18:02 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 6878E34324B for ; Mon, 11 Oct 2021 19:17:59 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CB28C148 for ; Mon, 11 Oct 2021 19:17:57 +0000 (UTC) From: "Georgy Yakovlev" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Georgy Yakovlev" Message-ID: <1633979634.3d8972647a9f6998fa124a3323d6367ed4757829.gyakovlev@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/minisign/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-crypt/minisign/minisign-9999.ebuild X-VCS-Directories: app-crypt/minisign/ X-VCS-Committer: gyakovlev X-VCS-Committer-Name: Georgy Yakovlev X-VCS-Revision: 3d8972647a9f6998fa124a3323d6367ed4757829 X-VCS-Branch: master Date: Mon, 11 Oct 2021 19:17:57 +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: 471aaddf-8bf4-488c-ac8d-3e47d1c6fcfa X-Archives-Hash: e2f7afc6de536d93b1f7f1031605267b commit: 3d8972647a9f6998fa124a3323d6367ed4757829 Author: Georgy Yakovlev gentoo org> AuthorDate: Mon Oct 11 19:11:10 2021 +0000 Commit: Georgy Yakovlev gentoo org> CommitDate: Mon Oct 11 19:13:54 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3d897264 app-crypt/minisign: sync live ebuild Signed-off-by: Georgy Yakovlev gentoo.org> app-crypt/minisign/minisign-9999.ebuild | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/app-crypt/minisign/minisign-9999.ebuild b/app-crypt/minisign/minisign-9999.ebuild index 6b1c1c8ca14..154ff1cfe79 100644 --- a/app-crypt/minisign/minisign-9999.ebuild +++ b/app-crypt/minisign/minisign-9999.ebuild @@ -1,7 +1,7 @@ -# Copyright 2019-2020 Gentoo Authors +# Copyright 2019-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 inherit cmake @@ -13,7 +13,7 @@ if [[ ${PV} == "9999" ]]; then EGIT_REPO_URI="https://github.com/jedisct1/${PN}.git" else SRC_URI="https://github.com/jedisct1/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~amd64 ~ppc64" + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" fi LICENSE="ISC" @@ -21,10 +21,11 @@ SLOT="0" IUSE="" -DEPEND=">=dev-libs/libsodium-1.0.16:=[-minimal]" +BDEPEND="virtual/pkgconfig" +DEPEND="dev-libs/libsodium:=[-minimal]" RDEPEND="${DEPEND}" src_configure() { - local mycmakeargs=( -DCMAKE_STRIP="${EPREFIX}/bin/true" ) + local mycmakeargs=( -DCMAKE_STRIP=OFF ) cmake_src_configure }