diff options
author | Yuri Victorovich <yuri@FreeBSD.org> | 2024-07-15 07:46:53 +0000 |
---|---|---|
committer | Yuri Victorovich <yuri@FreeBSD.org> | 2024-07-15 07:46:53 +0000 |
commit | 9ab41406fc3eb996ef4baf408399cc4f2bb9e42e (patch) | |
tree | 821c8ea4c2d90d38010e53278fa8ef6bada81758 | |
parent | af03efd761c709efe0f6fceafd9cfef118f1f594 (diff) |
math/py-rustworkx: Fix plist
Reported by: fallout
-rw-r--r-- | math/py-rustworkx/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/math/py-rustworkx/Makefile b/math/py-rustworkx/Makefile index c83bd2f093ee..ce2c01f723aa 100644 --- a/math/py-rustworkx/Makefile +++ b/math/py-rustworkx/Makefile @@ -122,12 +122,12 @@ MAKE_ENV= ${CARGO_ENV} TEST_ENV= ${MAKE_ENV} PYTHONPATH=${STAGEDIR}${PYTHONPREFIX_SITELIBDIR} TEST_WRKSRC= ${BUILD_WRKDIR} -PLIST_FILES= ${PYTHON_SITELIBDIR}/rustworkx/rustworkx.abi3.so # workaround for https://github.com/Qiskit/rustworkx/issues/654 +PLIST_FILES= ${PYTHON_SITELIBDIR}/rustworkx/rustworkx${PYTHON_EXT_SUFFIX}.so # workaround for https://github.com/Qiskit/rustworkx/issues/654 BINARY_ALIAS= python3=${PYTHON_CMD} -xpost-install: - @${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/rustworkx/rustworkx.cpython-${PYTHON_SUFFIX}.so +post-install: + @${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/rustworkx/rustworkx${PYTHON_EXT_SUFFIX}.so #do-test: # this runs tests in the fixed venv # @cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} tox -epy |