28 lines
506 B
Makefile
28 lines
506 B
Makefile
COMMENT = convert .ini/.cfg files to TOML equivalents
|
|
|
|
MODPY_EGG_VERSION = 0.11.3
|
|
DISTNAME = ini2toml-${MODPY_EGG_VERSION}
|
|
PKGNAME = py-${DISTNAME}
|
|
|
|
CATEGORIES = textproc
|
|
|
|
HOMEPAGE = https://github.com/abravalheri/ini2toml/
|
|
|
|
# MIT
|
|
PERMIT_PACKAGE = Yes
|
|
|
|
MODULES = lang/python
|
|
|
|
MODPY_PI = Yes
|
|
MODPY_PYBUILD = setuptools_scm
|
|
|
|
# tests need validate-pyproject (not ported)
|
|
NO_TEST = Yes
|
|
|
|
RUN_DEPENDS = sysutils/py-packaging${MODPY_FLAVOR}
|
|
|
|
FLAVORS = python3
|
|
FLAVOR = python3
|
|
|
|
.include <bsd.port.mk>
|