Received: by mail.netbsd.org (Postfix, from userid 605) id 31AD984EAE; Mon, 30 Jan 2023 18:02:33 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 636B884EAD for ; Mon, 30 Jan 2023 18:02:32 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id igOndBMq0JAF for ; Mon, 30 Jan 2023 18:02:31 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id D02E284D3D for ; Mon, 30 Jan 2023 18:02:31 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id C9DB2FA90; Mon, 30 Jan 2023 18:02:31 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1675101751230140" MIME-Version: 1.0 Date: Mon, 30 Jan 2023 18:02:31 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/ham/gr-osmosdr To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20230130180231.C9DB2FA90@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1675101751230140 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Mon Jan 30 18:02:31 UTC 2023 Modified Files: pkgsrc/ham/gr-osmosdr: Makefile distinfo Log Message: gr-osmosdr: updated to 0.2.4 0.2.4 Unknown changes To generate a diff of this commit: cvs rdiff -u -r1.43 -r1.44 pkgsrc/ham/gr-osmosdr/Makefile cvs rdiff -u -r1.9 -r1.10 pkgsrc/ham/gr-osmosdr/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1675101751230140 Content-Disposition: inline Content-Length: 2298 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/ham/gr-osmosdr/Makefile diff -u pkgsrc/ham/gr-osmosdr/Makefile:1.43 pkgsrc/ham/gr-osmosdr/Makefile:1.44 --- pkgsrc/ham/gr-osmosdr/Makefile:1.43 Sun Jan 22 16:28:31 2023 +++ pkgsrc/ham/gr-osmosdr/Makefile Mon Jan 30 18:02:31 2023 @@ -1,12 +1,11 @@ -# $NetBSD: Makefile,v 1.43 2023/01/22 16:28:31 ryoon Exp $ +# $NetBSD: Makefile,v 1.44 2023/01/30 18:02:31 adam Exp $ -DISTNAME= gr-osmosdr-0.2.3.20210128 -PKGREVISION= 9 +DISTNAME= gr-osmosdr-0.2.4 CATEGORIES= ham # main git repo doesn't allow snapshots to be downloaded #MASTER_SITES= https://git.osmocom.org/gr-osmosdr/snapshot/ MASTER_SITES= ${MASTER_SITE_GITHUB:=osmocom/} -GITHUB_TAG= a100eb024c0210b95e4738b6efd836d48225bd03 +GITHUB_TAG= v${PKGVERSION_NOREV} MAINTAINER= pkgsrc-users@NetBSD.org HOMEPAGE= https://git.osmocom.org/gr-osmosdr @@ -16,6 +15,8 @@ LICENSE= gnu-gpl-v2 # for docs/doxygen/update_pydoc.py BUILD_DEPENDS+= ${PYPKGPREFIX}-six-[0-9]*:../../lang/py-six +GCC_REQD+= 8 # stdc++fs + USE_CMAKE= yes USE_LANGUAGES= c c++11 USE_TOOLS= cmake Index: pkgsrc/ham/gr-osmosdr/distinfo diff -u pkgsrc/ham/gr-osmosdr/distinfo:1.9 pkgsrc/ham/gr-osmosdr/distinfo:1.10 --- pkgsrc/ham/gr-osmosdr/distinfo:1.9 Wed Oct 19 18:38:29 2022 +++ pkgsrc/ham/gr-osmosdr/distinfo Mon Jan 30 18:02:31 2023 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.9 2022/10/19 18:38:29 adam Exp $ +$NetBSD: distinfo,v 1.10 2023/01/30 18:02:31 adam Exp $ -BLAKE2s (gr-osmosdr-0.2.3.20210128-a100eb024c0210b95e4738b6efd836d48225bd03.tar.gz) = c51b58c1df98f15dac979569b0919ddbeb48da4333777f01b777b2e45b4f2ced -SHA512 (gr-osmosdr-0.2.3.20210128-a100eb024c0210b95e4738b6efd836d48225bd03.tar.gz) = 4dcb6b2c10eeb2252111ba691be179fe5b6dc9598fa7e6129a3b214ee74d43ca2d67ab5eafa73cea2abb25729c24be0592585d149e13c7285f2ce330e52a6470 -Size (gr-osmosdr-0.2.3.20210128-a100eb024c0210b95e4738b6efd836d48225bd03.tar.gz) = 257938 bytes +BLAKE2s (gr-osmosdr-0.2.4.tar.gz) = ebcf6feb67b705845492bb88dc2df69a5b2d782d55103a5e83ffeceb9d0a95c8 +SHA512 (gr-osmosdr-0.2.4.tar.gz) = 04b54c92e40e58b76a9e6c9c3fb419f97af2599ca2f92cb58858464722e993ebe05896ffee2592ced729521ec65857eac9fac7809567c8b6de62a0ff99f615d5 +Size (gr-osmosdr-0.2.4.tar.gz) = 260745 bytes SHA1 (patch-lib_hackrf_hackrf__sink__c.cc) = fecc8e73b15d2fb052ae9a22dea6404598dfc553 --_----------=_1675101751230140--