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 EC30915A7D9 for ; Wed, 22 Mar 2023 01:20:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 44F39E08D3; Wed, 22 Mar 2023 01:20:37 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 30FB4E08D3 for ; Wed, 22 Mar 2023 01:20:37 +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 73F34340E4F for ; Wed, 22 Mar 2023 01:20:36 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2B9FA8FD for ; Wed, 22 Mar 2023 01:20:33 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1679447877.76106fe05b59a02991a7394096b13b02697f5496.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-containers/podman/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-containers/podman/podman-4.4.1-r1.ebuild app-containers/podman/podman-4.4.1.ebuild X-VCS-Directories: app-containers/podman/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 76106fe05b59a02991a7394096b13b02697f5496 X-VCS-Branch: master Date: Wed, 22 Mar 2023 01:20:33 +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: 9751fe4f-9407-43e1-888a-ad049e1f6973 X-Archives-Hash: 3cf5f10f376636b194426964de574117 commit: 76106fe05b59a02991a7394096b13b02697f5496 Author: Mathieu Tortuyaux microsoft com> AuthorDate: Mon Mar 20 15:43:22 2023 +0000 Commit: Sam James gentoo org> CommitDate: Wed Mar 22 01:17:57 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=76106fe0 app-containers/podman: fix quadlet generation issue Without prefix, the podman path generated by quadlet was targetting /usr/local/bin/podman (instead of /usr/bin/podman) Closes: https://bugs.gentoo.org/895956 Signed-off-by: Mathieu Tortuyaux microsoft.com> Closes: https://github.com/gentoo/gentoo/pull/30264 Signed-off-by: Sam James gentoo.org> app-containers/podman/{podman-4.4.1.ebuild => podman-4.4.1-r1.ebuild} | 1 + 1 file changed, 1 insertion(+) diff --git a/app-containers/podman/podman-4.4.1.ebuild b/app-containers/podman/podman-4.4.1-r1.ebuild similarity index 99% rename from app-containers/podman/podman-4.4.1.ebuild rename to app-containers/podman/podman-4.4.1-r1.ebuild index 587776e4cfc6..bfb6c4323abe 100644 --- a/app-containers/podman/podman-4.4.1.ebuild +++ b/app-containers/podman/podman-4.4.1-r1.ebuild @@ -100,6 +100,7 @@ src_compile() { export -n GOCACHE GOPATH XDG_CACHE_HOME GOBIN="${S}/bin" \ emake all \ + PREFIX="${EPREFIX}/usr" \ GIT_BRANCH=master \ GIT_BRANCH_CLEAN=master \ COMMIT_NO="${git_commit}" \