Received: by mail.netbsd.org (Postfix, from userid 605) id 5672084DA2; Tue, 29 Oct 2019 16:01:45 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id D2B4384D7C for ; Tue, 29 Oct 2019 16:01:44 +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 CWTfz-hJZ_qF for ; Tue, 29 Oct 2019 16:01:44 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 5F99E84CE9 for ; Tue, 29 Oct 2019 16:01:44 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 59E9CFA8E; Tue, 29 Oct 2019 16:01:44 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1572364904145750" MIME-Version: 1.0 Date: Tue, 29 Oct 2019 16:01:44 +0000 From: "Greg Troxel" Subject: CVS commit: pkgsrc/ham/gnuradio-qtgui To: pkgsrc-changes@NetBSD.org Reply-To: gdt@netbsd.org X-Mailer: log_accum Message-Id: <20191029160144.59E9CFA8E@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1572364904145750 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: gdt Date: Tue Oct 29 16:01:44 UTC 2019 Modified Files: pkgsrc/ham/gnuradio-qtgui: Makefile Log Message: ham/gnuradio-qt: Explain status relative to upstream and qt The quick summary is that the current package is from April, and upstream had a new release in August. That new release switches from qt4 to qt5. Updating GNU Radio in pkgsrc is complex, but tends to happen fairly soon after the upstream release. As part of that update, this package is expected to switch to qt5. To generate a diff of this commit: cvs rdiff -u -r1.23 -r1.24 pkgsrc/ham/gnuradio-qtgui/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1572364904145750 Content-Disposition: inline Content-Length: 1173 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/ham/gnuradio-qtgui/Makefile diff -u pkgsrc/ham/gnuradio-qtgui/Makefile:1.23 pkgsrc/ham/gnuradio-qtgui/Makefile:1.24 --- pkgsrc/ham/gnuradio-qtgui/Makefile:1.23 Thu Aug 22 12:23:23 2019 +++ pkgsrc/ham/gnuradio-qtgui/Makefile Tue Oct 29 16:01:44 2019 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.23 2019/08/22 12:23:23 ryoon Exp $ +# $NetBSD: Makefile,v 1.24 2019/10/29 16:01:44 gdt Exp $ PKGNAME= gnuradio-qtgui-${VERSION} PKGREVISION= 2 @@ -7,11 +7,16 @@ COMMENT= Qt GUI module of GNU Radio .include "../../ham/gnuradio-core/Makefile.common" .include "../../ham/gnuradio-core/Nocore.mk" -#ONF_FILES+= ${EGDIR}/gr-qtgui.conf ${PKG_SYSCONFDIR}/gr-qtgui.conf +#CONF_FILES+= ${EGDIR}/gr-qtgui.conf ${PKG_SYSCONFDIR}/gr-qtgui.conf CMAKE_ARGS+= -DENABLE_DEFAULT=OFF CMAKE_ARGS+= -DENABLE_GR_QTGUI=ON +# This package is currently 3.7.13.5, released 2019-04-20. It +# supports qt4 (and not qt5). +# 3.8.0.0 was released on 2019-08-09, and will likely be packaged +# soon. It supports qt5 (and not qt4). + .include "../../x11/qt4-libs/buildlink3.mk" .include "../../x11/qwt-qt4/buildlink3.mk" .include "../../x11/py-qt4/buildlink3.mk" --_----------=_1572364904145750--