Received: by mail.netbsd.org (Postfix, from userid 605) id 1F9E084D82; Mon, 11 Jul 2022 08:51:10 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 59C6F84D72 for ; Mon, 11 Jul 2022 08:51:09 +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 yHzIZtmdyvMi for ; Mon, 11 Jul 2022 08:51:08 +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 A773984CED for ; Mon, 11 Jul 2022 08:51:08 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 9F40CFB1A; Mon, 11 Jul 2022 08:51:08 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1657529468140030" MIME-Version: 1.0 Date: Mon, 11 Jul 2022 08:51:08 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/devel/py-packaging2 To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20220711085108.9F40CFB1A@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1657529468140030 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Mon Jul 11 08:51:08 UTC 2022 Modified Files: pkgsrc/devel/py-packaging2: Makefile Log Message: py-packaging2: simplify To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 pkgsrc/devel/py-packaging2/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1657529468140030 Content-Disposition: inline Content-Length: 1196 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/py-packaging2/Makefile diff -u pkgsrc/devel/py-packaging2/Makefile:1.2 pkgsrc/devel/py-packaging2/Makefile:1.3 --- pkgsrc/devel/py-packaging2/Makefile:1.2 Tue Jan 4 20:53:19 2022 +++ pkgsrc/devel/py-packaging2/Makefile Mon Jul 11 08:51:08 2022 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.2 2022/01/04 20:53:19 wiz Exp $ +# $NetBSD: Makefile,v 1.3 2022/07/11 08:51:08 wiz Exp $ DISTNAME= packaging-20.9 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} @@ -12,12 +12,12 @@ COMMENT= Core utilities for Python packa LICENSE= modified-bsd OR apache-2.0 DEPENDS+= ${PYPKGPREFIX}-six-[0-9]*:../../lang/py-six +DEPENDS+= ${PYPKGPREFIX}-pyparsing-[0-9]*:../../devel/py-pyparsing2 TEST_DEPENDS+= ${PYPKGPREFIX}-pretend-[0-9]*:../../devel/py-pretend +TEST_DEPENDS+= ${PYPKGPREFIX}-test-[0-9]*:../../devel/py-test4 PYTHON_VERSIONS_ACCEPTED= 27 -PYTHON_VERSIONED_DEPENDENCIES= test:test pyparsing - USE_LANGUAGES= # none # needs 'make install' before @@ -25,5 +25,4 @@ do-test: cd ${WRKSRC} && ${SETENV} ${TEST_ENV} pytest-${PYVERSSUFFIX} .include "../../lang/python/egg.mk" -.include "../../lang/python/versioned_dependencies.mk" .include "../../mk/bsd.pkg.mk" --_----------=_1657529468140030--