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 42C4A15808B for ; Wed, 14 Feb 2024 16:33:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 88C9CE2A74; Wed, 14 Feb 2024 16:33:57 +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 pigeon.gentoo.org (Postfix) with ESMTPS id 6B11FE2A74 for ; Wed, 14 Feb 2024 16:33:57 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 7705434300A for ; Wed, 14 Feb 2024 16:33:56 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EF91214CF for ; Wed, 14 Feb 2024 16:33:49 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1707928427.48bb5661d6778a67775f0c5b12d054b72c101c5b.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/minisign/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-crypt/minisign/minisign-0.11-r1.ebuild X-VCS-Directories: app-crypt/minisign/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 48bb5661d6778a67775f0c5b12d054b72c101c5b X-VCS-Branch: master Date: Wed, 14 Feb 2024 16:33:49 +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: bf3d402f-5aa1-4bcc-a5d4-87b99d442662 X-Archives-Hash: a19c4c89c29054e0ad79d4bb8249c7f8 commit: 48bb5661d6778a67775f0c5b12d054b72c101c5b Author: Michał Górny gentoo org> AuthorDate: Wed Feb 14 16:30:20 2024 +0000 Commit: Michał Górny gentoo org> CommitDate: Wed Feb 14 16:33:47 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=48bb5661 app-crypt/minisign: Clean the ebuild up Signed-off-by: Michał Górny gentoo.org> app-crypt/minisign/minisign-0.11-r1.ebuild | 31 +++++++++++++++++------------- 1 file changed, 18 insertions(+), 13 deletions(-) diff --git a/app-crypt/minisign/minisign-0.11-r1.ebuild b/app-crypt/minisign/minisign-0.11-r1.ebuild index 4719129eccdc..adf0b7060096 100644 --- a/app-crypt/minisign/minisign-0.11-r1.ebuild +++ b/app-crypt/minisign/minisign-0.11-r1.ebuild @@ -6,24 +6,29 @@ EAPI=8 inherit cmake DESCRIPTION="Dead simple tool to sign files and verify signatures" -HOMEPAGE="https://github.com/jedisct1/minisign" - -if [[ ${PV} == "9999" ]]; then - inherit git-r3 - 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="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86" -fi +HOMEPAGE="https://github.com/jedisct1/minisign/" +SRC_URI=" + https://github.com/jedisct1/minisign/archive/${PV}.tar.gz + -> ${P}.tar.gz +" LICENSE="ISC" SLOT="0" +KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86" -BDEPEND="virtual/pkgconfig" -DEPEND="dev-libs/libsodium:=[-minimal(-)]" -RDEPEND="${DEPEND}" +DEPEND=" + dev-libs/libsodium:=[-minimal(-)] +" +RDEPEND=" + ${DEPEND} +" +BDEPEND=" + virtual/pkgconfig +" src_configure() { - local mycmakeargs=( -DCMAKE_STRIP=OFF ) + local mycmakeargs=( + -DCMAKE_STRIP=OFF + ) cmake_src_configure }