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 429681382C5 for ; Sat, 6 Jun 2020 21:20:04 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7EAC9E0A88; Sat, 6 Jun 2020 21:20:03 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 622CDE0A88 for ; Sat, 6 Jun 2020 21:20:03 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 24D3D34EF9D for ; Sat, 6 Jun 2020 21:20:02 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CAD3527E for ; Sat, 6 Jun 2020 21:20:00 +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: <1591478391.b4b3989f5c797ef28ec7d75b1a246916f524bd68.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: b4b3989f5c797ef28ec7d75b1a246916f524bd68 X-VCS-Branch: master Date: Sat, 6 Jun 2020 21:20:00 +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: fc74f1c7-0a9e-453e-9f72-9233f42b34f7 X-Archives-Hash: b0bbee9cd06dbac428f4906b7c719799 commit: b4b3989f5c797ef28ec7d75b1a246916f524bd68 Author: Georgy Yakovlev gentoo org> AuthorDate: Sat Jun 6 21:18:32 2020 +0000 Commit: Georgy Yakovlev gentoo org> CommitDate: Sat Jun 6 21:19:51 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b4b3989f app-crypt/minisign: sync live ebuild Package-Manager: Portage-2.3.100, Repoman-2.3.22 Signed-off-by: Georgy Yakovlev gentoo.org> app-crypt/minisign/minisign-9999.ebuild | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/app-crypt/minisign/minisign-9999.ebuild b/app-crypt/minisign/minisign-9999.ebuild index 720809d52a4..6b1c1c8ca14 100644 --- a/app-crypt/minisign/minisign-9999.ebuild +++ b/app-crypt/minisign/minisign-9999.ebuild @@ -3,7 +3,7 @@ EAPI=7 -inherit cmake-utils +inherit cmake DESCRIPTION="Dead simple tool to sign files and verify signatures" HOMEPAGE="https://github.com/jedisct1/minisign" @@ -23,3 +23,8 @@ IUSE="" DEPEND=">=dev-libs/libsodium-1.0.16:=[-minimal]" RDEPEND="${DEPEND}" + +src_configure() { + local mycmakeargs=( -DCMAKE_STRIP="${EPREFIX}/bin/true" ) + cmake_src_configure +}