Received: by mail.netbsd.org (Postfix, from userid 605) id AB68984E24; Mon, 28 Oct 2019 09:06:32 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 33A2584E09 for ; Mon, 28 Oct 2019 09:06:32 +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 pAH5hLvfIK2i for ; Mon, 28 Oct 2019 09:06:31 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id A733084C2B for ; Mon, 28 Oct 2019 09:06:31 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id A139AFA8D; Mon, 28 Oct 2019 09:06:31 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1572253591234750" MIME-Version: 1.0 Date: Mon, 28 Oct 2019 09:06:31 +0000 From: "Kamil Rytarowski" Subject: CVS commit: pkgsrc/devel/qconf To: pkgsrc-changes@NetBSD.org Reply-To: kamil@netbsd.org X-Mailer: log_accum Message-Id: <20191028090631.A139AFA8D@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. --_----------=_1572253591234750 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: kamil Date: Mon Oct 28 09:06:31 UTC 2019 Modified Files: pkgsrc/devel/qconf: Makefile distinfo Removed Files: pkgsrc/devel/qconf: options.mk Log Message: qconf: Upgrade to 2.4 Set new HOMEPAGE and switch to GitHub for distfiles. Remove qt4/qt5 switch, use qt5 only. Changelog unknown. To generate a diff of this commit: cvs rdiff -u -r1.43 -r1.44 pkgsrc/devel/qconf/Makefile cvs rdiff -u -r1.7 -r1.8 pkgsrc/devel/qconf/distinfo cvs rdiff -u -r1.1 -r0 pkgsrc/devel/qconf/options.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1572253591234750 Content-Disposition: inline Content-Length: 2236 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/qconf/Makefile diff -u pkgsrc/devel/qconf/Makefile:1.43 pkgsrc/devel/qconf/Makefile:1.44 --- pkgsrc/devel/qconf/Makefile:1.43 Wed Apr 3 00:32:39 2019 +++ pkgsrc/devel/qconf/Makefile Mon Oct 28 09:06:31 2019 @@ -1,20 +1,20 @@ -# $NetBSD: Makefile,v 1.43 2019/04/03 00:32:39 ryoon Exp $ +# $NetBSD: Makefile,v 1.44 2019/10/28 09:06:31 kamil Exp $ # -DISTNAME= qconf-2.0 -PKGREVISION= 13 +DISTNAME= qconf-2.4 CATEGORIES= devel -MASTER_SITES= http://delta.affinix.com/download/ -EXTRACT_SUFX= .tar.bz2 +MASTER_SITES= ${MASTER_SITE_GITHUB:=psi-im/} +GITHUB_TAG= v${PKGVERSION_NOREV} MAINTAINER= pkgsrc-users@NetBSD.org -HOMEPAGE= http://delta.affinix.com/qconf/ +HOMEPAGE= https://github.com/psi-plus/qconf COMMENT= Configure script generator for qmake LICENSE= gnu-gpl-v2 USE_PKGLOCALEDIR= yes HAS_CONFIGURE= yes CONFIGURE_ARGS+= --prefix=${PREFIX:Q} +CONFIGURE_ARGS+= --qtselect=5 USE_LANGUAGES= c c++ DOCDIR= ${PREFIX}/share/doc/${PKGBASE} @@ -29,6 +29,5 @@ post-install: ${INSTALL_DATA} $${fn} ${DESTDIR}${EGDIR}; \ done -.include "options.mk" - +.include "../../x11/qt5-qtbase/buildlink3.mk" .include "../../mk/bsd.pkg.mk" Index: pkgsrc/devel/qconf/distinfo diff -u pkgsrc/devel/qconf/distinfo:1.7 pkgsrc/devel/qconf/distinfo:1.8 --- pkgsrc/devel/qconf/distinfo:1.7 Wed Mar 9 23:21:29 2016 +++ pkgsrc/devel/qconf/distinfo Mon Oct 28 09:06:31 2019 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.7 2016/03/09 23:21:29 nros Exp $ +$NetBSD: distinfo,v 1.8 2019/10/28 09:06:31 kamil Exp $ -SHA1 (qconf-2.0.tar.bz2) = 650335de244d41de203f07de539d9da65380fc4d -RMD160 (qconf-2.0.tar.bz2) = fc3b38054223df07e483f3e320fa7aada0762630 -SHA512 (qconf-2.0.tar.bz2) = 8820dfe191149b8bf7aa2cd631a6c4900b821c30817c6bffcf79734271c47165daceef11507690d495881c8dc8d19f8dec441c7adeb2a3e36b355b66b4f5c43a -Size (qconf-2.0.tar.bz2) = 50507 bytes +SHA1 (qconf-2.4.tar.gz) = 7ae5daade2ad5ef0951f0f70c7a9404c9ca1e110 +RMD160 (qconf-2.4.tar.gz) = 0d158f10da44f6f3f8ee6ba6b1019557d3366b24 +SHA512 (qconf-2.4.tar.gz) = 425b15bbe86ea31df48f7772b5c36efffb458a9c3edf09b541be61583f74287e541276cd2ff5fcf8e439db70e6405c121c347c6649ece57b6880da11db01ec4b +Size (qconf-2.4.tar.gz) = 97556 bytes --_----------=_1572253591234750--