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 C6C9F158170 for ; Sun, 21 Jul 2024 07:30:06 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EA76FE2A28; Sun, 21 Jul 2024 07:30:05 +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 pigeon.gentoo.org (Postfix) with ESMTPS id C3215E2A28 for ; Sun, 21 Jul 2024 07:30:05 +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 B3AA1343072 for ; Sun, 21 Jul 2024 07:30:04 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E48D31E44 for ; Sun, 21 Jul 2024 07:30:02 +0000 (UTC) From: "Yixun Lan" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Yixun Lan" Message-ID: <1721546985.2dad65e395a806d04a219c95cf9e85830933dd88.dlan@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/bpftool/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/bpftool/bpftool-7.5.0.ebuild X-VCS-Directories: dev-util/bpftool/ X-VCS-Committer: dlan X-VCS-Committer-Name: Yixun Lan X-VCS-Revision: 2dad65e395a806d04a219c95cf9e85830933dd88 X-VCS-Branch: master Date: Sun, 21 Jul 2024 07:30:02 +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: 9d9a1b6d-aef2-451d-a92d-115ec4eb5339 X-Archives-Hash: ed54261deee56af60a09e86c347e88ef commit: 2dad65e395a806d04a219c95cf9e85830933dd88 Author: Violet Purcell inventati org> AuthorDate: Sat Jul 20 19:47:46 2024 +0000 Commit: Yixun Lan gentoo org> CommitDate: Sun Jul 21 07:29:45 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2dad65e3 dev-util/bpftool: fix overriding of PV in 7.5.0 Closes: https://github.com/gentoo/gentoo/pull/37643 Signed-off-by: Violet Purcell inventati.org> Signed-off-by: Yixun Lan gentoo.org> dev-util/bpftool/bpftool-7.5.0.ebuild | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/dev-util/bpftool/bpftool-7.5.0.ebuild b/dev-util/bpftool/bpftool-7.5.0.ebuild index 1e317304dc31..9a93a41059b6 100644 --- a/dev-util/bpftool/bpftool-7.5.0.ebuild +++ b/dev-util/bpftool/bpftool-7.5.0.ebuild @@ -11,14 +11,14 @@ DESCRIPTION="Tool for inspection and simple manipulation of eBPF programs and ma HOMEPAGE="https://kernel.org/" # Use PV to indicate the full kernel version -PV=6.10 -LINUX_V="${PV:0:1}.x" -LINUX_VER=$(ver_cut 1-2) +MY_PV=6.10 +LINUX_V="${MY_PV:0:1}.x" +LINUX_VER=$(ver_cut 1-2 ${MY_PV}) LINUX_SOURCES="linux-${LINUX_VER}.tar.xz" SRC_URI+="https://www.kernel.org/pub/linux/kernel/v${LINUX_V}/${LINUX_SOURCES}" -LINUX_PATCH=patch-${PV}.xz +LINUX_PATCH=patch-${MY_PV}.xz SRC_URI+=" https://www.kernel.org/pub/linux/kernel/v${LINUX_V}/${LINUX_PATCH}" S_K="${WORKDIR}/linux-${LINUX_VER}"