d858b7cc2a
setuptools (it's used as a package locator but importlib.metadata in newer Python core or the external importlib_metadata are preferred). So drop the RDEP in that case (it's still kept for py27) and bump revisions.
29 lines
499 B
Makefile
29 lines
499 B
Makefile
COMMENT = Python module to read and work with PE files
|
|
|
|
MODPY_EGG_VERSION = 2018.8.8
|
|
DISTNAME = pefile-${MODPY_EGG_VERSION}
|
|
PKGNAME = py-${DISTNAME}
|
|
REVISION = 5
|
|
|
|
CATEGORIES = security
|
|
|
|
HOMEPAGE = https://github.com/erocarrera/pefile
|
|
|
|
MAINTAINER = Remi Pointel <rpointel@openbsd.org>
|
|
|
|
# MIT
|
|
PERMIT_PACKAGE = Yes
|
|
|
|
MODULES = lang/python
|
|
MODPY_SETUPTOOLS = Yes
|
|
MODPY_PI = Yes
|
|
|
|
FLAVORS = python3
|
|
FLAVOR ?=
|
|
|
|
RUN_DEPENDS = devel/py-future${MODPY_FLAVOR}
|
|
|
|
NO_TEST = Yes
|
|
|
|
.include <bsd.port.mk>
|