Received: by mail.netbsd.org (Postfix, from userid 605) id 5B7C484F1D; Tue, 4 Oct 2022 09:45:55 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 8597C84F13 for ; Tue, 4 Oct 2022 09:45:54 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id xq7-SrtfudLc for ; Tue, 4 Oct 2022 09:45:54 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id F336B84D0C for ; Tue, 4 Oct 2022 09:45:53 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id ECE41FA90; Tue, 4 Oct 2022 09:45:53 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1664876753112500" MIME-Version: 1.0 Date: Tue, 4 Oct 2022 09:45:53 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/ham/uhd To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20221004094553.ECE41FA90@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1664876753112500 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Tue Oct 4 09:45:53 UTC 2022 Modified Files: pkgsrc/ham/uhd: Makefile PLIST Added Files: pkgsrc/ham/uhd: PLIST.x4xx Log Message: uhd: fix PLIST for non-macOS To generate a diff of this commit: cvs rdiff -u -r1.70 -r1.71 pkgsrc/ham/uhd/Makefile cvs rdiff -u -r1.22 -r1.23 pkgsrc/ham/uhd/PLIST cvs rdiff -u -r0 -r1.1 pkgsrc/ham/uhd/PLIST.x4xx Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1664876753112500 Content-Disposition: inline Content-Length: 1716 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/ham/uhd/Makefile diff -u pkgsrc/ham/uhd/Makefile:1.70 pkgsrc/ham/uhd/Makefile:1.71 --- pkgsrc/ham/uhd/Makefile:1.70 Fri Sep 30 18:12:44 2022 +++ pkgsrc/ham/uhd/Makefile Tue Oct 4 09:45:53 2022 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.70 2022/09/30 18:12:44 adam Exp $ +# $NetBSD: Makefile,v 1.71 2022/10/04 09:45:53 wiz Exp $ DISTNAME= uhd-4.3.0.0 CATEGORIES= ham @@ -88,6 +88,10 @@ INSTALLATION_DIRS+= share/uhd/images .include "options.mk" +.if ${OPSYS} != "Darwin" +PLIST_SRC+= PLIST.x4xx +.endif + .include "../../devel/boost-libs/buildlink3.mk" .include "../../devel/libusb1/buildlink3.mk" .include "../../devel/orc/buildlink3.mk" Index: pkgsrc/ham/uhd/PLIST diff -u pkgsrc/ham/uhd/PLIST:1.22 pkgsrc/ham/uhd/PLIST:1.23 --- pkgsrc/ham/uhd/PLIST:1.22 Fri Sep 30 18:12:44 2022 +++ pkgsrc/ham/uhd/PLIST Tue Oct 4 09:45:53 2022 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.22 2022/09/30 18:12:44 adam Exp $ +@comment $NetBSD: PLIST,v 1.23 2022/10/04 09:45:53 wiz Exp $ bin/rfnoc_image_builder bin/uhd_adc_self_cal bin/uhd_cal_rx_iq_balance @@ -362,9 +362,6 @@ share/uhd/cal/cal_metadata.fbs share/uhd/cal/dsa_cal.fbs share/uhd/cal/iq_cal.fbs share/uhd/cal/pwr_cal.fbs -@pkgdir share/uhd/firmware -@pkgdir share/uhd/fpga -@pkgdir share/uhd/images share/uhd/rfnoc/blocks/addsub.yml share/uhd/rfnoc/blocks/axi_ram_fifo.yml share/uhd/rfnoc/blocks/ddc.yml Added files: Index: pkgsrc/ham/uhd/PLIST.x4xx diff -u /dev/null pkgsrc/ham/uhd/PLIST.x4xx:1.1 --- /dev/null Tue Oct 4 09:45:53 2022 +++ pkgsrc/ham/uhd/PLIST.x4xx Tue Oct 4 09:45:53 2022 @@ -0,0 +1,2 @@ +@comment $NetBSD: PLIST.x4xx,v 1.1 2022/10/04 09:45:53 wiz Exp $ +lib/uhd/tests/x4xx_radio_block_test --_----------=_1664876753112500--