Update to latest py-typing and drop python3 FLAVOR since it is just a backport for early versions of Python. (Usage of python3 flavor has previously been removed from the tree). Take maintainership while here OK kn@
27 lines
543 B
Makefile
27 lines
543 B
Makefile
# $OpenBSD: Makefile,v 1.9 2019/12/27 05:09:15 kmos Exp $
|
|
|
|
COMMENT = backport of type hints for python
|
|
|
|
MODPY_EGG_VERSION = 3.7.4.1
|
|
DISTNAME = typing-${MODPY_EGG_VERSION}
|
|
PKGNAME = py-${DISTNAME}
|
|
|
|
CATEGORIES = devel
|
|
|
|
HOMEPAGE = https://github.com/python/typing
|
|
|
|
MAINTAINER = Kurt Mosiejczuk <kmos@openbsd.org>
|
|
|
|
# PSF
|
|
PERMIT_PACKAGE = Yes
|
|
|
|
MODULES = lang/python
|
|
MODPY_PI = Yes
|
|
MODPY_SETUPTOOLS = Yes
|
|
MODPY_PYTEST = Yes
|
|
MODPY_PYTEST_ARGS = python2
|
|
|
|
# No python3 flavor as this backports typing to earlier Python
|
|
|
|
.include <bsd.port.mk>
|