Received: by mail.netbsd.org (Postfix, from userid 605) id B842B84D6C; Mon, 31 Oct 2022 21:59:11 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id E9E2784D65 for ; Mon, 31 Oct 2022 21:59:10 +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 TxWhSnR0XaUI for ; Mon, 31 Oct 2022 21:59:10 +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 496AE84D25 for ; Mon, 31 Oct 2022 21:59:10 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 46BB3FA90; Mon, 31 Oct 2022 21:59:10 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1667253550199800" MIME-Version: 1.0 Date: Mon, 31 Oct 2022 21:59:10 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/converters/py-unicode-slugify To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20221031215910.46BB3FA90@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1667253550199800 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Mon Oct 31 21:59:10 UTC 2022 Modified Files: pkgsrc/converters/py-unicode-slugify: Makefile Log Message: py-unicode-slugify: not for Python 2.7 anymore To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4 pkgsrc/converters/py-unicode-slugify/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1667253550199800 Content-Disposition: inline Content-Length: 743 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/converters/py-unicode-slugify/Makefile diff -u pkgsrc/converters/py-unicode-slugify/Makefile:1.3 pkgsrc/converters/py-unicode-slugify/Makefile:1.4 --- pkgsrc/converters/py-unicode-slugify/Makefile:1.3 Thu Jul 14 08:58:45 2022 +++ pkgsrc/converters/py-unicode-slugify/Makefile Mon Oct 31 21:59:10 2022 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.3 2022/07/14 08:58:45 adam Exp $ +# $NetBSD: Makefile,v 1.4 2022/10/31 21:59:10 adam Exp $ DISTNAME= unicode-slugify-0.1.5 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} @@ -16,5 +16,7 @@ TEST_DEPENDS+= ${PYPKGPREFIX}-nose-[0-9] USE_LANGUAGES= # none +PYTHON_VERSIONS_INCOMPATIBLE= 27 # py-Unidecode + .include "../../lang/python/egg.mk" .include "../../mk/bsd.pkg.mk" --_----------=_1667253550199800--