Received: by mail.netbsd.org (Postfix, from userid 605) id 2CAA784DA9; Sun, 30 Apr 2023 18:45:37 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 55C6E84D6B for ; Sun, 30 Apr 2023 18:45:36 +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 03mYnUF7BqND for ; Sun, 30 Apr 2023 18:45:35 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id A080A84D15 for ; Sun, 30 Apr 2023 18:45:35 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 92DA7FA87; Sun, 30 Apr 2023 18:45:35 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1682880335199220" MIME-Version: 1.0 Date: Sun, 30 Apr 2023 18:45:35 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/www/py-bleach To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20230430184535.92DA7FA87@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1682880335199220 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Sun Apr 30 18:45:35 UTC 2023 Modified Files: pkgsrc/www/py-bleach: Makefile Log Message: py-bleach: only for python 2 To generate a diff of this commit: cvs rdiff -u -r1.24 -r1.25 pkgsrc/www/py-bleach/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1682880335199220 Content-Disposition: inline Content-Length: 1131 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/www/py-bleach/Makefile diff -u pkgsrc/www/py-bleach/Makefile:1.24 pkgsrc/www/py-bleach/Makefile:1.25 --- pkgsrc/www/py-bleach/Makefile:1.24 Tue Jan 4 20:55:16 2022 +++ pkgsrc/www/py-bleach/Makefile Sun Apr 30 18:45:35 2023 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.24 2022/01/04 20:55:16 wiz Exp $ +# $NetBSD: Makefile,v 1.25 2023/04/30 18:45:35 wiz Exp $ DISTNAME= bleach-3.3.1 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} @@ -12,10 +12,11 @@ COMMENT= Easy whitelist-based HTML-sanit LICENSE= apache-2.0 DEPENDS+= ${PYPKGPREFIX}-six>=1.9.0:../../lang/py-six +DEPENDS+= ${PYPKGPREFIX}-packaging-[0-9]*:../../devel/py-packaging DEPENDS+= ${PYPKGPREFIX}-webencodings-[0-9]*:../../textproc/py-webencodings TEST_DEPENDS+= ${PYPKGPREFIX}-test-runner>=2.0:../../devel/py-test-runner -PYTHON_VERSIONED_DEPENDENCIES+= packaging +PYTHON_VERSIONS_INCOMPATIBLE= 27 USE_LANGUAGES= # none @@ -23,6 +24,5 @@ REPLACE_SH+= bleach/_vendor/pip_install_ PYSETUPTESTTARGET= pytest -.include "../../lang/python/versioned_dependencies.mk" .include "../../lang/python/egg.mk" .include "../../mk/bsd.pkg.mk" --_----------=_1682880335199220--