mirror of
https://github.com/openbsd/ports.git
synced 2026-06-17 23:13:55 +02:00
b1cd47f9a4
versions of all python things into separate ports; remove from py2 ports
37 lines
755 B
Makefile
37 lines
755 B
Makefile
COMMENT = simplified packaging system for Python modules
|
|
|
|
# Must be <45.0 to support Python 2.7
|
|
PORTROACH = limit:^44\.
|
|
|
|
MODPY_DISTV = 44.1.1
|
|
DISTNAME = setuptools-${MODPY_DISTV}
|
|
PKGNAME = py-${DISTNAME}
|
|
EPOCH = 0
|
|
REVISION = 2
|
|
|
|
CATEGORIES = devel
|
|
EXTRACT_SUFX = .zip
|
|
|
|
HOMEPAGE = https://setuptools.readthedocs.io/en/latest/
|
|
|
|
MAINTAINER = Kurt Mosiejczuk <kmos@openbsd.org>
|
|
|
|
# MIT
|
|
PERMIT_PACKAGE = Yes
|
|
|
|
MODULES = lang/python
|
|
|
|
MODPY_VERSION = ${MODPY_DEFAULT_VERSION_2}
|
|
MODPY_PI = Yes
|
|
MODPY_SETUPTOOLS = Yes
|
|
NO_TEST = Yes
|
|
|
|
# Override automatic py-setuptools depend to avoid recursion
|
|
MODPY_SETUPUTILS_DEPEND =
|
|
|
|
# test_virtualenv.py needs unported modules
|
|
pre-test:
|
|
rm -f ${WRKSRC}/setuptools/tests/test_virtualenv.py
|
|
|
|
.include <bsd.port.mk>
|