Received: by mail.netbsd.org (Postfix, from userid 605) id 444EF84D36; Fri, 2 Jul 2021 15:51:19 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 58FD984CFC for ; Fri, 2 Jul 2021 15:51:18 +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 gD0NEA_sDWYI for ; Fri, 2 Jul 2021 15:51:17 +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 A20BC84CDC for ; Fri, 2 Jul 2021 15:51:17 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 8F2E9FA95; Fri, 2 Jul 2021 15:51:17 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1625241077274870" MIME-Version: 1.0 Date: Fri, 2 Jul 2021 15:51:17 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/devel/py-mercurial To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20210702155117.8F2E9FA95@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1625241077274870 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Fri Jul 2 15:51:17 UTC 2021 Modified Files: pkgsrc/devel/py-mercurial: Makefile Log Message: py-mercurial: unzip is a test dependency To generate a diff of this commit: cvs rdiff -u -r1.55 -r1.56 pkgsrc/devel/py-mercurial/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1625241077274870 Content-Disposition: inline Content-Length: 1384 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/py-mercurial/Makefile diff -u pkgsrc/devel/py-mercurial/Makefile:1.55 pkgsrc/devel/py-mercurial/Makefile:1.56 --- pkgsrc/devel/py-mercurial/Makefile:1.55 Sat May 22 23:11:31 2021 +++ pkgsrc/devel/py-mercurial/Makefile Fri Jul 2 15:51:17 2021 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.55 2021/05/22 23:11:31 wiz Exp $ +# $NetBSD: Makefile,v 1.56 2021/07/02 15:51:17 wiz Exp $ # # Changelog sometimes at: https://www.mercurial-scm.org/wiki/WhatsNew @@ -13,15 +13,15 @@ HOMEPAGE= https://www.mercurial-scm.org/ COMMENT= Fast, lightweight source control management system LICENSE= gnu-gpl-v2 OR gnu-gpl-v3 # OR newer -# with this dependency, two zip test cases start working -# https://bz.mercurial-scm.org/show_bug.cgi?id=4483 -# https://bz.mercurial-scm.org/show_bug.cgi?id=4485 -BUILD_DEPENDS+= unzip-[0-9]*:../../archivers/unzip DEPENDS+= ${PYPKGPREFIX}-curses-[0-9]*:../../devel/py-curses # via xmlrpc from python itself, used in mercurial/pycompat.py DEPENDS+= ${PYPKGPREFIX}-expat-[0-9]*:../../textproc/py-expat TEST_DEPENDS+= ${PYPKGPREFIX}-sqlite3-[0-9]*:../../databases/py-sqlite3 +# with this dependency, two zip test cases start working +# https://bz.mercurial-scm.org/show_bug.cgi?id=4483 +# https://bz.mercurial-scm.org/show_bug.cgi?id=4485 +TEST_DEPENDS+= unzip-[0-9]*:../../archivers/unzip USE_TOOLS+= gmake msgfmt --_----------=_1625241077274870--