which prevented build, the other two are adding test files that have since been included upstream)
29 lines
541 B
Makefile
29 lines
541 B
Makefile
# $OpenBSD: Makefile,v 1.9 2021/05/09 08:29:46 sthen Exp $
|
|
|
|
COMMENT = markdown to reStructuredText converter
|
|
|
|
MODPY_EGG_VERSION = 0.2.1
|
|
|
|
DISTNAME = m2r-${MODPY_EGG_VERSION}
|
|
PKGNAME = py-${DISTNAME}
|
|
|
|
CATEGORIES = devel textproc
|
|
|
|
HOMEPAGE = https://github.com/miyakogi/m2r
|
|
|
|
# MIT
|
|
PERMIT_PACKAGE = Yes
|
|
|
|
MODPY_PI = Yes
|
|
MODULES = lang/python
|
|
MODPY_SETUPTOOLS = Yes
|
|
MODPY_PYTEST = Yes
|
|
|
|
RUN_DEPENDS = textproc/py-mistune${MODPY_FLAVOR} \
|
|
textproc/py-docutils${MODPY_FLAVOR}
|
|
|
|
FLAVORS = python3
|
|
FLAVOR = python3
|
|
|
|
.include <bsd.port.mk>
|