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 599F6158B20 for ; Wed, 05 Feb 2025 16:24:37 +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 1AF1C342F9D for ; Wed, 05 Feb 2025 16:24:37 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 177F71103CB; Wed, 05 Feb 2025 16:24:36 +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 08DE31103CB for ; Wed, 05 Feb 2025 16:24: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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A5637335D77 for ; Wed, 05 Feb 2025 16:24:35 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 40A941CE6 for ; Wed, 05 Feb 2025 16:24:34 +0000 (UTC) From: "Patrick Nicolas" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Patrick Nicolas" Message-ID: <1738772665.3177d1b1fcbf091160ccc9275e00f6e2f8960603.patricknicolas@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: media-libs/wivrn/ X-VCS-Repository: repo/proj/guru X-VCS-Files: media-libs/wivrn/wivrn-9999.ebuild X-VCS-Directories: media-libs/wivrn/ X-VCS-Committer: patricknicolas X-VCS-Committer-Name: Patrick Nicolas X-VCS-Revision: 3177d1b1fcbf091160ccc9275e00f6e2f8960603 X-VCS-Branch: dev Date: Wed, 05 Feb 2025 16:24:34 +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: ac5a65c3-0858-4828-8ac6-cdb04b05db31 X-Archives-Hash: fc60505554498627fa5ceb0629651b90 commit: 3177d1b1fcbf091160ccc9275e00f6e2f8960603 Author: Patrick Nicolas laposte net> AuthorDate: Wed Feb 5 16:24:03 2025 +0000 Commit: Patrick Nicolas laposte net> CommitDate: Wed Feb 5 16:24:25 2025 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=3177d1b1 media-libs/wivrn: fix APK download in git version Signed-off-by: Patrick Nicolas laposte.net> media-libs/wivrn/wivrn-9999.ebuild | 3 +++ 1 file changed, 3 insertions(+) diff --git a/media-libs/wivrn/wivrn-9999.ebuild b/media-libs/wivrn/wivrn-9999.ebuild index 2fbb4f5ba..9c08c94bc 100644 --- a/media-libs/wivrn/wivrn-9999.ebuild +++ b/media-libs/wivrn/wivrn-9999.ebuild @@ -100,11 +100,14 @@ fi src_configure() { if [[ ${PV} == 9999 ]]; then GIT_DESC=$(git describe --tags --always) + GIT_COMMIT=$(git rev-parse HEAD) else GIT_DESC=v${PV} + GIT_COMMIT=v${PV} fi local mycmakeargs=( -DGIT_DESC=${GIT_DESC} + -DGIT_COMMIT=${GIT_COMMIT} -DWIVRN_BUILD_CLIENT=OFF -DWIVRN_BUILD_SERVER=ON -DWIVRN_OPENXR_MANIFEST_TYPE=relative