Received: by mail.netbsd.org (Postfix, from userid 605) id A871C84CDC; Wed, 9 Oct 2019 21:26:13 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 2F47C84CD6 for ; Wed, 9 Oct 2019 21:26:13 +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 ii8hMnanJRF2 for ; Wed, 9 Oct 2019 21:26:12 +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 868CA84C8B for ; Wed, 9 Oct 2019 21:26:12 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 7F6ACFBF4; Wed, 9 Oct 2019 21:26:12 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1570656372115480" MIME-Version: 1.0 Date: Wed, 9 Oct 2019 21:26:12 +0000 From: "Olaf Seibert" Subject: CVS commit: pkgsrc/textproc/py-html2text To: pkgsrc-changes@NetBSD.org Reply-To: rhialto@netbsd.org X-Mailer: log_accum Message-Id: <20191009212612.7F6ACFBF4@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. --_----------=_1570656372115480 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: rhialto Date: Wed Oct 9 21:26:12 UTC 2019 Modified Files: pkgsrc/textproc/py-html2text: Makefile Log Message: Mark package incompatible with Python 2.7 (anything < 3.4). It is not noted clearly in the release notes; see commit https://github.com/Alir3z4/html2text/commit/b361467894fb277563b4547ec9d4df49f5e0c6e3 To generate a diff of this commit: cvs rdiff -u -r1.54 -r1.55 pkgsrc/textproc/py-html2text/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1570656372115480 Content-Disposition: inline Content-Length: 747 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/textproc/py-html2text/Makefile diff -u pkgsrc/textproc/py-html2text/Makefile:1.54 pkgsrc/textproc/py-html2text/Makefile:1.55 --- pkgsrc/textproc/py-html2text/Makefile:1.54 Sun Sep 29 12:18:42 2019 +++ pkgsrc/textproc/py-html2text/Makefile Wed Oct 9 21:26:12 2019 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.54 2019/09/29 12:18:42 schmonz Exp $ +# $NetBSD: Makefile,v 1.55 2019/10/09 21:26:12 rhialto Exp $ DISTNAME= html2text-2019.9.26 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} @@ -11,6 +11,7 @@ COMMENT= Convert HTML into easy-to-read LICENSE= gnu-gpl-v3 USE_LANGUAGES= # none +PYTHON_VERSIONS_INCOMPATIBLE= 27 post-install: cd ${DESTDIR}${PREFIX}/bin && ${MV} html2text html2text-${PYVERSSUFFIX} || ${TRUE} --_----------=_1570656372115480--