Update to latest. Drop the python3 flavor since it is a backport of functionality from later Python 3.x (already swept our tree to eliminate Python3 consumers). Anything Python 3.x new that uses py-monotonic should be fixed to use time.monotonic instead. OK sthen
22 lines
390 B
Makefile
22 lines
390 B
Makefile
# $OpenBSD: Makefile,v 1.4 2019/09/23 13:27:37 kmos Exp $
|
|
|
|
COMMENT = implementation of time.monotonic()
|
|
|
|
MODPY_EGG_VERSION = 1.5
|
|
DISTNAME = monotonic-${MODPY_EGG_VERSION}
|
|
PKGNAME = py-${DISTNAME}
|
|
|
|
CATEGORIES = devel
|
|
|
|
HOMEPAGE = https://github.com/atdt/monotonic
|
|
|
|
# Apache 2.0
|
|
PERMIT_PACKAGE = Yes
|
|
|
|
MODULES = lang/python
|
|
|
|
MODPY_PI = Yes
|
|
MODPY_SETUPTOOLS = Yes
|
|
|
|
.include <bsd.port.mk>
|