pkgsrc/devel/py-enum/Makefile
kamil 576b1d1975 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.
2016-10-19 22:22:46 +00:00

25 lines
724 B
Makefile

# $NetBSD: Makefile,v 1.2 2016/10/19 22:22:46 kamil Exp $
DISTNAME= enum-0.4.6
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
CATEGORIES= devel
MASTER_SITES= ${MASTER_SITE_PYPI:=e/enum/}
MAINTAINER= kamelderouiche@yahoo.com
HOMEPAGE= http://pypi.python.org/pypi/enum/
COMMENT= Robust enumerated type support in Python
LICENSE= gnu-gpl-v3 OR python-software-foundation
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"