mirror of
https://git.freebsd.org/ports.git
synced 2025-06-07 05:40:30 -04:00
* Remove no-op GH_PROJECT (remnant of 83f2d2e890
) while I'm here.
Changelog:
https://github.com/mkdocstrings/python/releases/tag/1.13.0
36 lines
1.4 KiB
Makefile
36 lines
1.4 KiB
Makefile
PORTNAME= mkdocstrings-python
|
|
DISTVERSION= 1.13.0
|
|
CATEGORIES= textproc python
|
|
MASTER_SITES= PYPI
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
DISTNAME= mkdocstrings_python-${DISTVERSION}
|
|
|
|
MAINTAINER= kai@FreeBSD.org
|
|
COMMENT= Python handler for mkdocstrings
|
|
WWW= https://github.com/mkdocstrings/python
|
|
|
|
LICENSE= ISCL
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pdm-backend>0:devel/py-pdm-backend@${PY_FLAVOR}
|
|
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}griffe>=0.49:textproc/py-griffe@${PY_FLAVOR} \
|
|
${PYTHON_PKGNAMEPREFIX}mkdocs-autorefs>=1.2:textproc/py-mkdocs-autorefs@${PY_FLAVOR}
|
|
# textproc/py-mkdocstrings belongs to RUN_DEPENDS as well but would cause
|
|
# a circular dependency (via py-mkdocstrings' PYTHON option). It was therefore
|
|
# moved to TEST_DEPENDS to at least allow the test suite to run.
|
|
TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}beautifulsoup>=4.12.3:www/py-beautifulsoup@${PY_FLAVOR} \
|
|
${PYTHON_PKGNAMEPREFIX}inline-snapshot>=0.18.1:devel/py-inline-snapshot@${PY_FLAVOR} \
|
|
${PYTHON_PKGNAMEPREFIX}mkdocs-material>=9.5:textproc/py-mkdocs-material@${PY_FLAVOR} \
|
|
${PYTHON_PKGNAMEPREFIX}mkdocstrings>=0.26:textproc/py-mkdocstrings@${PY_FLAVOR} \
|
|
${PYTHON_PKGNAMEPREFIX}ruff>=0.4:devel/py-ruff@${PY_FLAVOR}
|
|
|
|
USES= python:3.9+
|
|
USE_PYTHON= autoplist pep517 pytest
|
|
|
|
TEST_ENV= PYTHONPATH=${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}
|
|
|
|
CONFLICTS_INSTALL= ${PYTHON_PKGNAMEPREFIX}mkdocstrings-python-legacy
|
|
|
|
NO_ARCH= yes
|
|
|
|
.include <bsd.port.mk>
|