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 4836E1582EF for ; Sun, 09 Feb 2025 08:01:43 +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 32F59343075 for ; Sun, 09 Feb 2025 08:01:43 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 324D51103CB; Sun, 09 Feb 2025 08:01:42 +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) server-digest SHA256) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id 25DF71103CB for ; Sun, 09 Feb 2025 08:01:42 +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 C601D33BDFF for ; Sun, 09 Feb 2025 08:01:41 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2E3951ACB for ; Sun, 09 Feb 2025 08:01:40 +0000 (UTC) From: "Ada Ahmed" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ada Ahmed" Message-ID: <1739088029.72c1099b87ab99986e96e1b7554b4d6bb8351f30.yretenai@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: app-misc/nwg-look/ X-VCS-Repository: repo/proj/guru X-VCS-Files: app-misc/nwg-look/nwg-look-1.0.2.ebuild X-VCS-Directories: app-misc/nwg-look/ X-VCS-Committer: yretenai X-VCS-Committer-Name: Ada Ahmed X-VCS-Revision: 72c1099b87ab99986e96e1b7554b4d6bb8351f30 X-VCS-Branch: dev Date: Sun, 09 Feb 2025 08:01:40 +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: ec9bad26-ed71-4c4d-9f8f-9af03171ed62 X-Archives-Hash: f4614ec48179e085836116c31db99552 commit: 72c1099b87ab99986e96e1b7554b4d6bb8351f30 Author: Ada Ahmed gmail com> AuthorDate: Sun Feb 9 08:00:29 2025 +0000 Commit: Ada Ahmed gmail com> CommitDate: Sun Feb 9 08:00:29 2025 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=72c1099b app-misc/nwg-look: fix go mod verify failing Signed-off-by: Ada Ahmed gmail.com> app-misc/nwg-look/nwg-look-1.0.2.ebuild | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/app-misc/nwg-look/nwg-look-1.0.2.ebuild b/app-misc/nwg-look/nwg-look-1.0.2.ebuild index ca30ced08..f63add910 100644 --- a/app-misc/nwg-look/nwg-look-1.0.2.ebuild +++ b/app-misc/nwg-look/nwg-look-1.0.2.ebuild @@ -31,10 +31,11 @@ RDEPEND="${DEPEND}" DOCS=( README.md ) -src_prepare() { - mv -v ../vendor ./ || die +src_unpack() { default + mv -v vendor "${S}" || die } + src_compile() { ego build }