Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.netbsd.org", Issuer "Postmaster NetBSD.org" (verified OK)) by mollari.NetBSD.org (Postfix) with ESMTPS id B09E07A170 for ; Wed, 19 Oct 2016 22:22:47 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 649B785ED6; Wed, 19 Oct 2016 22:22:47 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id E828885EC8 for ; Wed, 19 Oct 2016 22:22:46 +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 lwwqXqdimCi6 for ; Wed, 19 Oct 2016 22:22:46 +0000 (UTC) Received: from cvs.NetBSD.org (unknown [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 546D984C6C for ; Wed, 19 Oct 2016 22:22:46 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 4AF41FBD2; Wed, 19 Oct 2016 22:22:46 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1476915766255220" MIME-Version: 1.0 Date: Wed, 19 Oct 2016 22:22:46 +0000 From: "Kamil Rytarowski" Subject: CVS commit: pkgsrc/devel/py-enum To: pkgsrc-changes@NetBSD.org Reply-To: kamil@netbsd.org X-Mailer: log_accum Message-Id: <20161019222246.4AF41FBD2@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk This is a multi-part message in MIME format. --_----------=_1476915766255220 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: kamil Date: Wed Oct 19 22:22:46 UTC 2016 Modified Files: pkgsrc/devel/py-enum: Makefile Log Message: Restrict py-enum to Python 2.7 only >From PYPI site: Superseded by Python standard library. Python 3 now has in its standard library an enum implementation (also available for older Python versions as the third-party flufl.enum distribution) that supersedes this library. To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 pkgsrc/devel/py-enum/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1476915766255220 Content-Disposition: inline Content-Length: 887 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/py-enum/Makefile diff -u pkgsrc/devel/py-enum/Makefile:1.1 pkgsrc/devel/py-enum/Makefile:1.2 --- pkgsrc/devel/py-enum/Makefile:1.1 Mon Sep 19 00:29:01 2016 +++ pkgsrc/devel/py-enum/Makefile Wed Oct 19 22:22:46 2016 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.1 2016/09/19 00:29:01 kamil Exp $ +# $NetBSD: Makefile,v 1.2 2016/10/19 22:22:46 kamil Exp $ DISTNAME= enum-0.4.6 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} @@ -12,5 +12,14 @@ LICENSE= gnu-gpl-v3 OR python-software-f USE_LANGUAGES= # none +# From PYPI: +# +# Superseded by Python standard library. +# +# Python 3 now has in its standard library an enum implementation (also +# available for older Python versions as the third-party flufl.enum +# distribution) that supersedes this library. +PYTHON_VERSIONS_ACCEPTED= 27 + .include "../../lang/python/egg.mk" .include "../../mk/bsd.pkg.mk" --_----------=_1476915766255220--