diff --git a/audio/py-soxr/Makefile b/audio/py-soxr/Makefile index 2a5fb4ec502b..2be504c02354 100644 --- a/audio/py-soxr/Makefile +++ b/audio/py-soxr/Makefile @@ -1,29 +1,29 @@ PORTNAME= soxr -DISTVERSION= 0.3.5 +DISTVERSION= 0.3.6 CATEGORIES= audio python MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= yuri@FreeBSD.org COMMENT= High quality, one-dimensional sample-rate conversion library WWW= https://github.com/dofuuz/python-soxr LICENSE= LGPL21 BSD3CLAUSE LICENSE_COMB= multi -BROKEN_i386= fails to compile: ...requires target feature 'sse', but would be inlined into function 'h8' that is compiled without support for 'sse' +BROKEN_i386= fails to compile: ...requires target feature 'sse', but would be inlined into function 'h8' that is compiled without support for 'sse' BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}setuptools_scm>0:devel/py-setuptools_scm@${PY_FLAVOR} \ ${PYNUMPY} \ ${PKGNAMEPREFIX}wheel>0:devel/py-wheel@${PY_FLAVOR} RUN_DEPENDS= ${PYNUMPY} USES= python USE_PYTHON= pep517 cython autoplist pytest TEST_ENV= ${MAKE_ENV} PYTHONPATH=${STAGEDIR}${PYTHONPREFIX_SITELIBDIR} post-install: @${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/soxr/cysoxr${PYTHON_EXT_SUFFIX}.so .include diff --git a/audio/py-soxr/distinfo b/audio/py-soxr/distinfo index cde8bbffe080..37bd64909e67 100644 --- a/audio/py-soxr/distinfo +++ b/audio/py-soxr/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1686101133 -SHA256 (soxr-0.3.5.tar.gz) = b6b60f6381c98249a2f2a594e9234b647b78856c76c060597d53ed27b6efd249 -SIZE (soxr-0.3.5.tar.gz) = 287424 +TIMESTAMP = 1692168308 +SHA256 (soxr-0.3.6.tar.gz) = 6b3d98da77353b5bbb4401cef83cec7f1538844dc27c7badf89c2855b43f42b4 +SIZE (soxr-0.3.6.tar.gz) = 291376 diff --git a/audio/py-soxr/files/patch-pyproject.toml b/audio/py-soxr/files/patch-pyproject.toml index bd645ff1d73d..95bdf298019f 100644 --- a/audio/py-soxr/files/patch-pyproject.toml +++ b/audio/py-soxr/files/patch-pyproject.toml @@ -1,14 +1,14 @@ ---- pyproject.toml.orig 2023-02-21 07:33:21 UTC +--- pyproject.toml.orig 2023-08-15 13:45:59 UTC +++ pyproject.toml @@ -2,9 +2,9 @@ requires = [ "setuptools>=42", "wheel", - "Cython>=3.0a7", + "Cython", - "setuptools_scm[toml]>=3.4", + "setuptools_scm[toml]>=6.2", - "oldest-supported-numpy" + "numpy" ] build-backend = "setuptools.build_meta"