mirror of
https://github.com/openbsd/ports.git
synced 2026-06-19 16:05:12 +02:00
92 lines
2.3 KiB
Makefile
92 lines
2.3 KiB
Makefile
COMMENT = open network for secure, decentralized communication
|
|
|
|
MODPY_DISTV = 1.138.0
|
|
REVISION = 2
|
|
|
|
GH_ACCOUNT = element-hq
|
|
GH_PROJECT = synapse
|
|
GH_TAGNAME = v${MODPY_DISTV}
|
|
CATEGORIES = net
|
|
|
|
HOMEPAGE = https://matrix.org/
|
|
|
|
MAINTAINER = Renaud Allard <renaud@allard.it>
|
|
|
|
# AGPLv3 only
|
|
PERMIT_PACKAGE = Yes
|
|
|
|
MODULES = devel/cargo \
|
|
lang/python
|
|
|
|
WANTLIB += ${MODCARGO_WANTLIB} m
|
|
|
|
MODPY_PYBUILD = poetry-core
|
|
|
|
MODCARGO_BUILD = No
|
|
MODCARGO_INSTALL = No
|
|
MODCARGO_TEST = No
|
|
|
|
MAKE_ENV += ${MODCARGO_ENV}
|
|
|
|
BUILD_DEPENDS += devel/py-setuptools-rust>=1.3.0
|
|
|
|
# in same order as in pyproject.toml: mandatory section
|
|
RUN_DEPENDS = devel/py-jsonschema>=3.0.0 \
|
|
devel/py-immutabledict \
|
|
textproc/py-unpaddedbase64>=2.1.0 \
|
|
textproc/py-canonicaljson<3.0.0,>=2.0.0 \
|
|
textproc/py-signedjson \
|
|
security/py-service_identity \
|
|
devel/py-twisted \
|
|
www/py-treq \
|
|
security/py-openssl \
|
|
textproc/py-yaml \
|
|
devel/py-asn1 \
|
|
devel/py-asn1-modules \
|
|
security/py-bcrypt \
|
|
graphics/py-Pillow>=10.0.1 \
|
|
devel/py-sortedcontainers \
|
|
devel/py-pydantic \
|
|
www/py-macaroons \
|
|
net/py-msgpack \
|
|
telephony/py-phonenumbers \
|
|
sysutils/py-prometheus_client \
|
|
devel/py-attrs \
|
|
net/py-netaddr \
|
|
www/py-jinja2 \
|
|
www/py-bleach \
|
|
devel/py-typing-extensions>=4.3.0 \
|
|
security/py-cryptography \
|
|
textproc/py-ijson \
|
|
devel/py-matrix-common>=1.3.0,<2.0.0 \
|
|
sysutils/py-packaging \
|
|
www/py-multipart
|
|
# still relying on pkg_resources, see comments in
|
|
# https://github.com/matrix-org/synapse/pull/12542
|
|
RUN_DEPENDS += devel/py-setuptools
|
|
# optional section
|
|
RUN_DEPENDS += textproc/py-lxml
|
|
# not listed but used in some scripts/ files
|
|
RUN_DEPENDS += www/py-requests
|
|
|
|
TEST_DEPENDS = ${FULLPKGNAME}:${BUILD_PKGPATH} \
|
|
devel/py-mock \
|
|
devel/py-parameterized \
|
|
www/py-jwt
|
|
|
|
do-configure:
|
|
@${MODCARGO_configure}
|
|
|
|
# this symlink makes sure that the rust library is found, since by default the source is used to run the tests
|
|
# another option would be to rm -Rf ${WRKSRC}/synapse/ to make sure the one under build/ is used
|
|
pre-test:
|
|
ln -sf ${WRKSRC}/build/lib.openbsd-${OSREV}-${ARCH}-cpython-${MODPY_MAJORMINOR}/synapse/synapse_rust.abi3.so ${WRKSRC}/synapse/
|
|
|
|
do-test:
|
|
cd ${MODPY_TEST_DIR} && ${SETENV} ${ALL_TEST_ENV} ${MODPY_BIN} -m twisted.trial tests
|
|
|
|
# to generate rust modules.inc:
|
|
# make modcargo-gen-crates and modcargo-gen-crates-licenses
|
|
.include "modules.inc"
|
|
.include <bsd.port.mk>
|