From nobody Wed Oct 20 06:01:01 2021 X-Original-To: dev-commits-ports-all@mlmmj.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mlmmj.nyi.freebsd.org (Postfix) with ESMTP id 206DF17F9795; Wed, 20 Oct 2021 06:01:02 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (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 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4HZ0NG0Rx3z4dbw; Wed, 20 Oct 2021 06:01:02 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org (gitrepo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:5]) (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) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id D92FD22411; Wed, 20 Oct 2021 06:01:01 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org ([127.0.1.44]) by gitrepo.freebsd.org (8.16.1/8.16.1) with ESMTP id 19K611nh066592; Wed, 20 Oct 2021 06:01:01 GMT (envelope-from git@gitrepo.freebsd.org) Received: (from git@localhost) by gitrepo.freebsd.org (8.16.1/8.16.1/Submit) id 19K611fY066591; Wed, 20 Oct 2021 06:01:01 GMT (envelope-from git) Date: Wed, 20 Oct 2021 06:01:01 GMT Message-Id: <202110200601.19K611fY066591@gitrepo.freebsd.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org From: =?utf-8?Q?Fernando Apestegu=C3=ADa?= Subject: git: 59a11060dd83 - main - net/dpdk-20.11: fix packaging error List-Id: Commit messages for all branches of the ports repository List-Archive: https://lists.freebsd.org/archives/dev-commits-ports-all List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-dev-commits-ports-all@freebsd.org X-BeenThere: dev-commits-ports-all@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Git-Committer: fernape X-Git-Repository: ports X-Git-Refname: refs/heads/main X-Git-Reftype: branch X-Git-Commit: 59a11060dd83a918ecf16e88e6d13e6952c13af2 Auto-Submitted: auto-generated X-ThisMailContainsUnwantedMimeParts: N The branch main has been updated by fernape: URL: https://cgit.FreeBSD.org/ports/commit/?id=59a11060dd83a918ecf16e88e6d13e6952c13af2 commit 59a11060dd83a918ecf16e88e6d13e6952c13af2 Author: Bruce Richardson AuthorDate: 2021-10-19 13:18:53 +0000 Commit: Fernando ApesteguĂ­a CommitDate: 2021-10-20 05:52:53 +0000 net/dpdk-20.11: fix packaging error dpdk-test binary is installed whith TESTS=on and not TOOLS=on While here, pet linters. PR: 259248 Reported by: bruce.richardson@intel.com (maintainer) --- net/dpdk-20.11/Makefile | 11 +++++------ net/dpdk-20.11/pkg-plist | 2 +- 2 files changed, 6 insertions(+), 7 deletions(-) diff --git a/net/dpdk-20.11/Makefile b/net/dpdk-20.11/Makefile index f8d598a1814d..26be3afd940c 100644 --- a/net/dpdk-20.11/Makefile +++ b/net/dpdk-20.11/Makefile @@ -1,5 +1,3 @@ -# $FreeBSD$ - PORTNAME= dpdk DISTVERSION= 20.11.1 CATEGORIES= net @@ -14,13 +12,12 @@ LICENSE= BSD3CLAUSE ONLY_FOR_ARCHS= amd64 ONLY_FOR_ARCHS_REASON= Only tested on 64-bit x86 hardware -LIB_DEPENDS= libjansson.so:devel/jansson BUILD_DEPENDS= objdump:devel/binutils +LIB_DEPENDS= libjansson.so:devel/jansson USES= meson kmod pkgconfig:both shebangfix tar:xz python:3.5+ -WRKSRC= ${WRKDIR}/${PORTNAME}-stable-${PORTVERSION} -MESON_ARGS= -Dmachine=default -Ddefault_library=shared -Denable_kmods=true USE_LDCONFIG= yes +MESON_ARGS= -Dmachine=default -Ddefault_library=shared -Denable_kmods=true SHEBANG_FILES= usertools/dpdk-pmdinfo.py \ usertools/dpdk-telemetry-client.py \ usertools/dpdk-telemetry.py \ @@ -35,6 +32,8 @@ SHEBANG_FILES= usertools/dpdk-pmdinfo.py \ examples/performance-thread/l3fwd-thread/test.sh \ examples/pipeline/examples/vxlan_table.py \ +WRKSRC= ${WRKDIR}/${PORTNAME}-stable-${PORTVERSION} + OPTIONS_DEFINE= EXAMPLES DEBUG TOOLS TESTS OPTIONS_DEFAULT= TOOLS OPTIONS_SUB= yes @@ -42,9 +41,9 @@ DEBUG_DESC= Debugging support (unoptimized build, impacts performance) TOOLS_DESC= Install tool scripts TESTS_DESC= Build the automated unit test binary -EXAMPLES_MESON_ON= -Dexamples=all DEBUG_MESON_ON= --buildtype=debug DEBUG_MESON_OFF= --buildtype=release +EXAMPLES_MESON_ON= -Dexamples=all TESTS_MESON_TRUE= tests TOOLS_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pyelftools>=0:devel/py-pyelftools@${PY_FLAVOR} diff --git a/net/dpdk-20.11/pkg-plist b/net/dpdk-20.11/pkg-plist index d3c4b4945ca2..82cff6da31e7 100644 --- a/net/dpdk-20.11/pkg-plist +++ b/net/dpdk-20.11/pkg-plist @@ -6,7 +6,7 @@ %%TOOLS%%bin/dpdk-pmdinfo.py %%TOOLS%%bin/dpdk-proc-info %%TOOLS%%bin/dpdk-telemetry.py -%%TOOLS%%bin/dpdk-test +%%TESTS%%bin/dpdk-test bin/dpdk-test-acl bin/dpdk-test-bbdev bin/dpdk-test-cmdline