diff --git a/cad/py-edalize/Makefile b/cad/py-edalize/Makefile index a612404cc719..302f3a2d000e 100644 --- a/cad/py-edalize/Makefile +++ b/cad/py-edalize/Makefile @@ -1,40 +1,39 @@ PORTNAME= edalize -DISTVERSION= 0.6.0 -PORTREVISION= 1 +DISTVERSION= 0.6.1 CATEGORIES= cad python MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= yuri@FreeBSD.org COMMENT= Library for interfacing EDA tools WWW= https://github.com/olofk/edalize LICENSE= BSD2CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE BUILD_DEPENDS= ${PY_SETUPTOOLS} \ ${PYTHON_PKGNAMEPREFIX}setuptools-scm>0:devel/py-setuptools-scm@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}wheel>0:devel/py-wheel@${PY_FLAVOR} RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}Jinja2>=3:devel/py-Jinja2@${PY_FLAVOR} \ gmake:devel/gmake \ yosys:cad/yosys TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}vunit-hdl>0:cad/py-vunit-hdl@${PY_FLAVOR} USES= python shebangfix USE_PYTHON= pep517 autoplist pytest SHEBANG_FILES= tests/mock_commands/* scripts/el_docker NO_ARCH= yes post-patch: @${GREP} -rl '"make"' ${WRKSRC} | ${XARGS} ${REINPLACE_CMD} -i '' -e 's|"make"|"${GMAKE}"|' @${GREP} -rl '"python3"' ${WRKSRC} | ${XARGS} ${REINPLACE_CMD} -i '' -e 's|"python3"|"${PYTHON_CMD}"|' @${GREP} -rl 'shell python3 ' ${WRKSRC} | ${XARGS} ${REINPLACE_CMD} -i '' -e 's|shell python3 |shell ${PYTHON_CMD} |' @${GREP} -rl '$$(shell which python3)' ${WRKSRC} | ${XARGS} ${REINPLACE_CMD} -i '' -e 's|$$(shell which python3)|${PYTHON_CMD}|' @${REINPLACE_CMD} -i '' -e 's|/usr/bin/env python3|${PYTHON_CMD}|' ${WRKSRC}/tests/mock_commands/vcs # testsuite has intermittent failures: in many runs many tests fail, but sometimes all tests but 1 succeed, see https://github.com/olofk/edalize/issues/368 # 2 tests (test_modelsim,test_modelsim_common_compilation) always fail because it depends on Intel's modelsim .include diff --git a/cad/py-edalize/distinfo b/cad/py-edalize/distinfo index 5967cc5ba166..1c03e59c8ca1 100644 --- a/cad/py-edalize/distinfo +++ b/cad/py-edalize/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1731560568 -SHA256 (edalize-0.6.0.tar.gz) = 9fe1ddbf0d860d78e437dbd3bc951bda616e4f79803a189a4c64f7a828ca9162 -SIZE (edalize-0.6.0.tar.gz) = 379145 +TIMESTAMP = 1762686936 +SHA256 (edalize-0.6.1.tar.gz) = 6617b6b817d0445a7eaa003f2e7906f910b4ee659f9330ec6faeee633238536b +SIZE (edalize-0.6.1.tar.gz) = 384538 diff --git a/cad/py-edalize/files/patch-pyproject.toml b/cad/py-edalize/files/patch-pyproject.toml index aa74450b1fa4..0d8c9ae2ba26 100644 --- a/cad/py-edalize/files/patch-pyproject.toml +++ b/cad/py-edalize/files/patch-pyproject.toml @@ -1,9 +1,9 @@ ---- pyproject.toml.orig 2024-11-14 05:28:57 UTC +--- pyproject.toml.orig 2025-03-13 18:20:52 UTC +++ pyproject.toml @@ -1,5 +1,5 @@ [build-system] --requires = ["setuptools>=64"] -+requires = ["setuptools"] +-requires = ["setuptools>=64", "setuptools_scm>=7.1"] ++requires = ["setuptools", "setuptools_scm"] build-backend = "setuptools.build_meta" [project]