29 lines
483 B
Makefile
29 lines
483 B
Makefile
# $OpenBSD: Makefile,v 1.10 2019/07/12 20:45:53 sthen Exp $
|
|
|
|
COMMENT = refactoring library
|
|
|
|
MODPY_EGG_VERSION = 0.12.0
|
|
DISTNAME = rope-${MODPY_EGG_VERSION}
|
|
PKGNAME = py-${DISTNAME}
|
|
REVISION = 1
|
|
|
|
CATEGORIES = devel
|
|
|
|
HOMEPAGE = https://github.com/python-rope/rope
|
|
|
|
# GPLv2
|
|
PERMIT_PACKAGE = Yes
|
|
|
|
MODULES = lang/python
|
|
MODPY_PI = Yes
|
|
MODPY_SETUPTOOLS = Yes
|
|
|
|
FLAVORS = python3
|
|
FLAVOR ?=
|
|
|
|
.if !${FLAVOR:Mpython3}
|
|
TEST_DEPENDS += devel/py-unittest2
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|