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 333B015802F for ; Sun, 5 Mar 2023 14:38:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6595FE07EF; Sun, 5 Mar 2023 14:38:41 +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 4B1CBE07EF for ; Sun, 5 Mar 2023 14:38:41 +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 2A1A8341360 for ; Sun, 5 Mar 2023 14:38:40 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B830421 for ; Sun, 5 Mar 2023 14:38:37 +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: <1678026994.9ab962ab16855ce94236098f802219a5fab279a0.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/xdp-tools/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-libs/xdp-tools/xdp-tools-1.3.1.ebuild X-VCS-Directories: net-libs/xdp-tools/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 9ab962ab16855ce94236098f802219a5fab279a0 X-VCS-Branch: master Date: Sun, 5 Mar 2023 14:38:37 +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: 9c3bec97-6e33-49d3-89f6-605359edf038 X-Archives-Hash: 6e88a2a7f84dff96835f766e0b6e9092 commit: 9ab962ab16855ce94236098f802219a5fab279a0 Author: Sam James gentoo org> AuthorDate: Sun Mar 5 14:34:11 2023 +0000 Commit: Sam James gentoo org> CommitDate: Sun Mar 5 14:36:34 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9ab962ab net-libs/xdp-tools: add bpftool dep Closes: https://bugs.gentoo.org/899684 Signed-off-by: Sam James gentoo.org> net-libs/xdp-tools/xdp-tools-1.3.1.ebuild | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/net-libs/xdp-tools/xdp-tools-1.3.1.ebuild b/net-libs/xdp-tools/xdp-tools-1.3.1.ebuild index fdc4068a030e..e4761fe80cbc 100644 --- a/net-libs/xdp-tools/xdp-tools-1.3.1.ebuild +++ b/net-libs/xdp-tools/xdp-tools-1.3.1.ebuild @@ -9,16 +9,18 @@ SRC_URI="https://github.com/xdp-project/${PN}/archive/refs/tags/v${PV}.tar.gz -> LICENSE="GPL-2 LGPL-2.1 BSD-2" SLOT="0" -KEYWORDS="~amd64 ~arm ~arm64 ~x86" - +KEYWORDS="~amd64 ~x86" IUSE="+tools" -DEPEND="dev-libs/libbpf:= - sys-libs/zlib +DEPEND=" + dev-libs/libbpf:= + dev-util/bpftool net-libs/libpcap - virtual/libelf" + sys-libs/zlib + virtual/libelf +" RDEPEND="${DEPEND}" -BDEPEND=">=sys-devel/clang-10.0.0" +BDEPEND=">=sys-devel/clang-11.0.0" # Not prebuilt -- we build them -- but they're not ordinary ELF objects either. QA_PREBUILT="usr/lib/bpf/*.o" @@ -37,6 +39,8 @@ src_configure() { default } +src_test() { :; } + src_install() { export PREFIX="${EPREFIX}/usr" export LIBDIR="${PREFIX}/$(get_libdir)" @@ -53,5 +57,3 @@ src_install() { # These are ELF objects but BPF ones. dostrip -x /usr/lib/bpf } - -src_test() { :; }