-commits-ports-all.freebsd.org> List-Archive: https://lists.freebsd.org/archives/dev-commits-ports-all List-Help: List-Post: List-Subscribe: List-Unsubscribe: X-BeenThere: dev-commits-ports-all@freebsd.org Sender: owner-dev-commits-ports-all@FreeBSD.org MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Git-Committer: yuri X-Git-Repository: ports X-Git-Refname: refs/heads/main X-Git-Reftype: branch X-Git-Commit: 83ef5892ca1ff32b261a8b7b6d72a1d482d59a89 Auto-Submitted: auto-generated Date: Tue, 06 Jan 2026 14:30:15 +0000 Message-Id: <695d1c77.d407.39c7cb3b@gitrepo.freebsd.org> The branch main has been updated by yuri: URL: https://cgit.FreeBSD.org/ports/commit/?id=83ef5892ca1ff32b261a8b7b6d72a1d482d59a89 commit 83ef5892ca1ff32b261a8b7b6d72a1d482d59a89 Author: Yuri Victorovich AuthorDate: 2026-01-06 06:28:07 +0000 Commit: Yuri Victorovich CommitDate: 2026-01-06 14:30:10 +0000 misc/py-equinox: New port: Elegant easy-to-use neural networks in JAX --- misc/Makefile | 1 + misc/py-equinox/Makefile | 30 ++++++++++++++++++++++++++++++ misc/py-equinox/distinfo | 3 +++ misc/py-equinox/pkg-descr | 12 ++++++++++++ 4 files changed, 46 insertions(+) diff --git a/misc/Makefile b/misc/Makefile index 5c1e493bc295..acc85d2b5d47 100644 --- a/misc/Makefile +++ b/misc/Makefile @@ -452,6 +452,7 @@ SUBDIR += py-eemeter SUBDIR += py-einops SUBDIR += py-emoji + SUBDIR += py-equinox SUBDIR += py-ezc3d SUBDIR += py-facenet-pytorch SUBDIR += py-fast-histogram diff --git a/misc/py-equinox/Makefile b/misc/py-equinox/Makefile new file mode 100644 index 000000000000..7afc35230f06 --- /dev/null +++ b/misc/py-equinox/Makefile @@ -0,0 +1,30 @@ +PORTNAME= equinox +DISTVERSION= 0.13.2 +CATEGORIES= misc python # machine-learning +MASTER_SITES= PYPI +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Elegant easy-to-use neural networks in JAX +WWW= https://docs.kidger.site/equinox/ \ + https://github.com/patrick-kidger/equinox + +LICENSE= APACHE20 +LICENSE_FILE= ${WRKSRC}/LICENSE + +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}hatchling>0:devel/py-hatchling@${PY_FLAVOR} +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}jax>=0.4.38:math/py-jax@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}jaxtyping>=0.2.20:devel/py-jaxtyping@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}typing-extensions>=4.5.0:devel/py-typing-extensions@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}wadler-lindig>=0.1.0:devel/py-wadler-lindig@${PY_FLAVOR} +#TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}beartype>0:devel/py-beartype@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}jaxlib>0:math/py-jaxlib@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}optax>0:math/py-optax@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}pytest>0:devel/py-pytest@${PY_FLAVOR} + +USES= python +USE_PYTHON= pep517 autoplist + +NO_ARCH= yes + +.include diff --git a/misc/py-equinox/distinfo b/misc/py-equinox/distinfo new file mode 100644 index 000000000000..622ebe2e57e1 --- /dev/null +++ b/misc/py-equinox/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1767678494 +SHA256 (equinox-0.13.2.tar.gz) = 509ad744ff99b7c684d45230d6890f9e78eac1a556d7a06db1eff664a3cac74f +SIZE (equinox-0.13.2.tar.gz) = 139386 diff --git a/misc/py-equinox/pkg-descr b/misc/py-equinox/pkg-descr new file mode 100644 index 000000000000..4f8b1be8ee5f --- /dev/null +++ b/misc/py-equinox/pkg-descr @@ -0,0 +1,12 @@ +JAX library for neural networks and PyTree manipulations. + +Equinox is a JAX library that provides everything you need that isn't already +in core JAX: +- neural networks (or more generally any model), with easy-to-use + PyTorch-like syntax; +- filtered APIs for transformations; +- useful PyTree manipulation routines; +- advanced features like runtime errors; + +Equinox isn't a framework: everything you write in Equinox is compatible with +anything else in JAX or the ecosystem.