summaryrefslogtreecommitdiff
path: root/misc
diff options
context:
space:
mode:
Diffstat (limited to 'misc')
-rw-r--r--misc/Makefile7
-rw-r--r--misc/compat14x/Makefile18
-rw-r--r--misc/compat14x/pkg-plist.amd642
-rw-r--r--misc/kf6-purpose/distinfo6
-rw-r--r--misc/koboldcpp/Makefile2
-rw-r--r--misc/koboldcpp/distinfo6
-rw-r--r--misc/librepo/Makefile3
-rw-r--r--misc/llama-cpp/Makefile2
-rw-r--r--misc/llama-cpp/distinfo6
-rw-r--r--misc/orange3/Makefile67
-rw-r--r--misc/orange3/distinfo3
-rw-r--r--misc/orange3/files/patch-requirements-core.txt8
-rw-r--r--misc/orange3/files/patch-requirements-gui.txt13
-rw-r--r--misc/orange3/pkg-descr4
-rw-r--r--misc/py-colored/Makefile2
-rw-r--r--misc/py-colored/distinfo6
-rw-r--r--misc/py-dictdiffer/Makefile26
-rw-r--r--misc/py-dictdiffer/distinfo3
-rw-r--r--misc/py-dictdiffer/pkg-descr1
-rw-r--r--misc/py-instructor/Makefile23
-rw-r--r--misc/py-instructor/distinfo6
-rw-r--r--misc/py-litellm/Makefile2
-rw-r--r--misc/py-litellm/distinfo6
-rw-r--r--misc/py-orange3-associate/Makefile26
-rw-r--r--misc/py-orange3-associate/distinfo3
-rw-r--r--misc/py-orange3-associate/pkg-descr2
-rw-r--r--misc/py-orange3-datafusion/Makefile27
-rw-r--r--misc/py-orange3-datafusion/distinfo3
-rw-r--r--misc/py-orange3-datafusion/pkg-descr4
-rw-r--r--misc/py-orange3-educational/Makefile29
-rw-r--r--misc/py-orange3-educational/distinfo3
-rw-r--r--misc/py-orange3-educational/pkg-descr4
-rw-r--r--misc/py-orange3-network/Makefile30
-rw-r--r--misc/py-orange3-network/distinfo3
-rw-r--r--misc/py-orange3-network/pkg-descr2
-rw-r--r--misc/py-orange3-timeseries/Makefile31
-rw-r--r--misc/py-orange3-timeseries/distinfo3
-rw-r--r--misc/py-orange3-timeseries/pkg-descr2
-rw-r--r--misc/py-safetensors/Makefile53
-rw-r--r--misc/py-safetensors/distinfo96
40 files changed, 129 insertions, 414 deletions
diff --git a/misc/Makefile b/misc/Makefile
index a89f35525b42..a572f232ad7b 100644
--- a/misc/Makefile
+++ b/misc/Makefile
@@ -311,7 +311,6 @@
SUBDIR += opennn
SUBDIR += openr2
SUBDIR += openvdb
- SUBDIR += orange3
SUBDIR += orville-write
SUBDIR += osinfo-db
SUBDIR += ossp-uuid
@@ -431,7 +430,6 @@
SUBDIR += py-crudini
SUBDIR += py-datasets
SUBDIR += py-detecta
- SUBDIR += py-dictdiffer
SUBDIR += py-eemeter
SUBDIR += py-einops
SUBDIR += py-emoji
@@ -485,11 +483,6 @@
SUBDIR += py-openpaperwork-gtk
SUBDIR += py-openvdb
SUBDIR += py-optuna
- SUBDIR += py-orange3-associate
- SUBDIR += py-orange3-datafusion
- SUBDIR += py-orange3-educational
- SUBDIR += py-orange3-network
- SUBDIR += py-orange3-timeseries
SUBDIR += py-oterm
SUBDIR += py-palettable
SUBDIR += py-papermill
diff --git a/misc/compat14x/Makefile b/misc/compat14x/Makefile
index 8b25f38d7f4a..c8510455521d 100644
--- a/misc/compat14x/Makefile
+++ b/misc/compat14x/Makefile
@@ -1,12 +1,13 @@
PORTNAME= compat14x
PORTVERSION= 14.2.1402000.20250430
+PORTREVISION= 1
CATEGORIES= misc
MASTER_SITES= LOCAL/arrowd
PKGNAMESUFFIX= -${ARCH}
DISTNAME= ${PORTNAME}-${ARCH}-${PORTVERSION}
MAINTAINER= arrowd@FreeBSD.org
-COMMENT= Convenience package to install the compat13x libraries
+COMMENT= Convenience package to install the compat14x libraries
LICENSE= BSD2CLAUSE
@@ -18,22 +19,31 @@ TARGET_DIR= ${PREFIX}/lib/compat
TARGET32_DIR= ${PREFIX}/lib32/compat
USE_LDCONFIG= ${TARGET_DIR}
+OPTIONS_DEFINE= COMPAT32
+OPTIONS_DEFAULT=COMPAT32
+OPTIONS_EXCLUDE_aarch64=COMPAT32
+OPTIONS_EXCLUDE_i386=COMPAT32
+COMPAT32_DESC= Install 32-bit compat libraries
+OPTIONS_SUB= yes
+
.include <bsd.port.pre.mk>
.if ${OSREL:R} < 14
IGNORE= is for FreeBSD 14.x and newer
.endif
-.if ${ARCH} == amd64
+.include <bsd.port.options.mk>
+
+.if ${PORT_OPTIONS:MCOMPAT32}
USE_LDCONFIG32= ${TARGET32_DIR}
.endif
do-install:
@${MKDIR} -m 0755 ${STAGEDIR}${TARGET_DIR}
(cd ${WRKSRC}/lib && ${INSTALL_LIB} *.so.* ${STAGEDIR}${TARGET_DIR})
-.if ${ARCH} == amd64
+
+do-install-COMPAT32-on:
@${MKDIR} ${STAGEDIR}${TARGET32_DIR}
(cd ${WRKSRC}/lib32 && ${INSTALL_LIB} *.so.* ${STAGEDIR}${TARGET32_DIR})
-.endif
.include <bsd.port.post.mk>
diff --git a/misc/compat14x/pkg-plist.amd64 b/misc/compat14x/pkg-plist.amd64
index 836459079f4d..08bba09dc92e 100644
--- a/misc/compat14x/pkg-plist.amd64
+++ b/misc/compat14x/pkg-plist.amd64
@@ -1,2 +1,2 @@
lib/compat/libmd.so.6
-lib32/compat/libmd.so.6
+%%COMPAT32%%lib32/compat/libmd.so.6
diff --git a/misc/kf6-purpose/distinfo b/misc/kf6-purpose/distinfo
index 8ac89d82afcf..520735e8874b 100644
--- a/misc/kf6-purpose/distinfo
+++ b/misc/kf6-purpose/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1746358559
-SHA256 (KDE/frameworks/6.14/purpose-6.14.0.tar.xz) = dd9f23baf4c4a44f1c71f7d3b0bfe7fbfbcdda2002d74d4b49cd84631ac899e9
-SIZE (KDE/frameworks/6.14/purpose-6.14.0.tar.xz) = 188272
+TIMESTAMP = 1749832091
+SHA256 (KDE/frameworks/6.15/purpose-6.15.0.tar.xz) = d1c0c94a6a6ca11e2dc447431d005e11a73dec33692bef619b0b97bb525fc49e
+SIZE (KDE/frameworks/6.15/purpose-6.15.0.tar.xz) = 189508
diff --git a/misc/koboldcpp/Makefile b/misc/koboldcpp/Makefile
index 115911d005a4..ddf36386e458 100644
--- a/misc/koboldcpp/Makefile
+++ b/misc/koboldcpp/Makefile
@@ -1,6 +1,6 @@
PORTNAME= koboldcpp
DISTVERSIONPREFIX= v
-DISTVERSION= 1.89
+DISTVERSION= 1.94.1
CATEGORIES= misc # machine-learning
MAINTAINER= yuri@FreeBSD.org
diff --git a/misc/koboldcpp/distinfo b/misc/koboldcpp/distinfo
index 76d417f8cf3f..0e37240187a3 100644
--- a/misc/koboldcpp/distinfo
+++ b/misc/koboldcpp/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1745253387
-SHA256 (LostRuins-koboldcpp-v1.89_GH0.tar.gz) = 5bf0a3b1559330aa4780ff9670ae9dbf3bad2268076853ccb82754068cf7b743
-SIZE (LostRuins-koboldcpp-v1.89_GH0.tar.gz) = 27654876
+TIMESTAMP = 1750738105
+SHA256 (LostRuins-koboldcpp-v1.94.1_GH0.tar.gz) = 68b361b7b43db0b7c36576755aee1000ae997a23c47066ac0312c346632455ce
+SIZE (LostRuins-koboldcpp-v1.94.1_GH0.tar.gz) = 30948504
diff --git a/misc/librepo/Makefile b/misc/librepo/Makefile
index 13919daf79ab..614955757bab 100644
--- a/misc/librepo/Makefile
+++ b/misc/librepo/Makefile
@@ -1,5 +1,6 @@
PORTNAME= librepo
DISTVERSION= 1.19.0
+PORTREVISION= 1
CATEGORIES= misc
MAINTAINER= yuri@FreeBSD.org
@@ -15,7 +16,7 @@ LIB_DEPENDS= libassuan.so:security/libassuan \
libgpgme.so:security/gpgme
TEST_DEPENDS= bash:shells/bash \
check>0:devel/check \
- ${PYTHON_PKGNAMEPREFIX}gpgme>0:security/py-gpgme@${PY_FLAVOR} \
+ ${PYTHON_PKGNAMEPREFIX}gpg>=2.0.0:security/py-gpg@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}xattr>0:devel/py-xattr@${PY_FLAVOR}
USES= cpe gettext-runtime gnome cmake:testing localbase:ldflags pkgconfig python shebangfix ssl
diff --git a/misc/llama-cpp/Makefile b/misc/llama-cpp/Makefile
index 0129909c8343..317189cb7158 100644
--- a/misc/llama-cpp/Makefile
+++ b/misc/llama-cpp/Makefile
@@ -1,6 +1,6 @@
PORTNAME= llama-cpp
DISTVERSIONPREFIX= b
-DISTVERSION= 5689
+DISTVERSION= 5747
CATEGORIES= misc # machine-learning
MAINTAINER= yuri@FreeBSD.org
diff --git a/misc/llama-cpp/distinfo b/misc/llama-cpp/distinfo
index c810b3383e6a..018926c949a2 100644
--- a/misc/llama-cpp/distinfo
+++ b/misc/llama-cpp/distinfo
@@ -1,5 +1,5 @@
-TIMESTAMP = 1750213757
-SHA256 (ggerganov-llama.cpp-b5689_GH0.tar.gz) = 1ab18411c1f9885770b331bcc1f70ce9b0ad29f8591d7cf516ab6cdc6a6c1a63
-SIZE (ggerganov-llama.cpp-b5689_GH0.tar.gz) = 24994019
+TIMESTAMP = 1750748065
+SHA256 (ggerganov-llama.cpp-b5747_GH0.tar.gz) = f158c7aa369c68e2bbb14cab18c566902df675d5956a1b831978d3f5e4135344
+SIZE (ggerganov-llama.cpp-b5747_GH0.tar.gz) = 25012522
SHA256 (nomic-ai-kompute-4565194_GH0.tar.gz) = 95b52d2f0514c5201c7838348a9c3c9e60902ea3c6c9aa862193a212150b2bfc
SIZE (nomic-ai-kompute-4565194_GH0.tar.gz) = 13540496
diff --git a/misc/orange3/Makefile b/misc/orange3/Makefile
deleted file mode 100644
index 6606baa28d62..000000000000
--- a/misc/orange3/Makefile
+++ /dev/null
@@ -1,67 +0,0 @@
-PORTNAME= orange3
-DISTVERSION= 3.29.1
-PORTREVISION= 6
-CATEGORIES= misc python
-
-MAINTAINER= yuri@FreeBSD.org
-COMMENT= Component-based data mining software
-WWW= https://orange.biolab.si/
-
-LICENSE= GPLv3
-
-DEPRECATED= Depends on expiring devel/py-orange-canvas-core
-EXPIRATION_DATE=2025-06-21
-
-BUILD_DEPENDS= ${PYNUMPY}
-RUN_DEPENDS= ${PYNUMPY} \
- ${PYTHON_PKGNAMEPREFIX}AnyQt>=0.0.11:x11-toolkits/py-AnyQt@${PY_FLAVOR} \
- ${PYTHON_PKGNAMEPREFIX}baycomp>=1.0.2:math/py-baycomp@${PY_FLAVOR} \
- ${PYTHON_PKGNAMEPREFIX}bottleneck>=1.0.0:math/py-bottleneck@${PY_FLAVOR} \
- ${PYTHON_PKGNAMEPREFIX}chardet>=3.0.2:textproc/py-chardet@${PY_FLAVOR} \
- ${PYTHON_PKGNAMEPREFIX}docutils>0:textproc/py-docutils@${PY_FLAVOR} \
- ${PYTHON_PKGNAMEPREFIX}joblib>=0.9.4:devel/py-joblib@${PY_FLAVOR} \
- ${PYTHON_PKGNAMEPREFIX}httpx>=0.14.0:www/py-httpx@${PY_FLAVOR} \
- ${PYTHON_PKGNAMEPREFIX}keyring>0:security/py-keyring@${PY_FLAVOR} \
- ${PYTHON_PKGNAMEPREFIX}keyrings.alt>0:security/py-keyrings.alt@${PY_FLAVOR} \
- ${PYTHON_PKGNAMEPREFIX}matplotlib>=2.0.0:math/py-matplotlib@${PY_FLAVOR} \
- ${PYTHON_PKGNAMEPREFIX}networkx>0:math/py-networkx@${PY_FLAVOR} \
- ${PYTHON_PKGNAMEPREFIX}openTSNE>=0.6.0:math/py-openTSNE@${PY_FLAVOR} \
- ${PYTHON_PKGNAMEPREFIX}orange-canvas-core>=0.1.19:devel/py-orange-canvas-core@${PY_FLAVOR} \
- ${PYTHON_PKGNAMEPREFIX}orange-widget-base>=4.13.0:devel/py-orange-widget-base@${PY_FLAVOR} \
- ${PYTHON_PKGNAMEPREFIX}openpyxl>0:textproc/py-openpyxl@${PY_FLAVOR} \
- ${PYTHON_PKGNAMEPREFIX}pandas>=1.0.0:math/py-pandas@${PY_FLAVOR} \
- ${PYTHON_PKGNAMEPREFIX}pip>=9.0:devel/py-pip@${PY_FLAVOR} \
- ${PYTHON_PKGNAMEPREFIX}PyOpenGL>=0:graphics/py-PyOpenGL@${PY_FLAVOR} \
- ${PYTHON_PKGNAMEPREFIX}python-louvain>=0.13:math/py-python-louvain@${PY_FLAVOR} \
- ${PYTHON_PKGNAMEPREFIX}pyqtgraph>=0.11.1:graphics/py-pyqtgraph@${PY_FLAVOR} \
- ${PYTHON_PKGNAMEPREFIX}requests>0:www/py-requests@${PY_FLAVOR} \
- ${PYTHON_PKGNAMEPREFIX}scikit-learn>=0.22.0:science/py-scikit-learn@${PY_FLAVOR} \
- ${PYTHON_PKGNAMEPREFIX}scipy>=0.16.1:science/py-scipy@${PY_FLAVOR} \
- ${PYTHON_PKGNAMEPREFIX}serverfiles>0:misc/py-serverfiles@${PY_FLAVOR} \
- ${PYTHON_PKGNAMEPREFIX}xlrd>=0.9.2:textproc/py-xlrd@${PY_FLAVOR} \
- ${PYTHON_PKGNAMEPREFIX}XlsxWriter>0:textproc/py-xlsxwriter@${PY_FLAVOR} \
- ${PYTHON_PKGNAMEPREFIX}pyyaml>=0:devel/py-pyyaml@${PY_FLAVOR}
-
-USES= python pyqt:5
-USE_PYTHON= distutils cython autoplist noflavors
-USE_PYQT= pyqt5:run webengine:run
-
-USE_GITHUB= yes
-GH_ACCOUNT= biolab
-
-CFLAGS+= -DQSORT_R_STYLE_BSD=yes
-LDFLAGS+= -Xlinker -strip-all # strip, stage-qa doesn't catch that it isn't stripped
-
-.include <bsd.port.options.mk>
-
-.if ${ARCH} == aarch64 || ${ARCH} == amd64 || ${ARCH} == i386
-USE_PYQT+= webengine:run
-.else
-USE_PYQT+= webkit:run
-.endif
-
-xpost-install:
- @${REINPLACE_CMD} -e 's|^"${PREFIX}/|| ; s|"$$||' ${_PYTHONPKGLIST} # https://github.com/biolab/orange3/issues/3060
- @${REINPLACE_CMD} -e 's|import sys|& ; from OpenGL import GL|' ${STAGEDIR}${PREFIX}/bin/orange-canvas # https://github.com/biolab/orange3/issues/3062
-
-.include <bsd.port.mk>
diff --git a/misc/orange3/distinfo b/misc/orange3/distinfo
deleted file mode 100644
index 3e9bab8a5a0d..000000000000
--- a/misc/orange3/distinfo
+++ /dev/null
@@ -1,3 +0,0 @@
-TIMESTAMP = 1622688490
-SHA256 (biolab-orange3-3.29.1_GH0.tar.gz) = 0f59445a179553e56a36f393ed00c5774287a52e4416bc5a4b59491fe99cd87d
-SIZE (biolab-orange3-3.29.1_GH0.tar.gz) = 27580259
diff --git a/misc/orange3/files/patch-requirements-core.txt b/misc/orange3/files/patch-requirements-core.txt
deleted file mode 100644
index 662a1bef5708..000000000000
--- a/misc/orange3/files/patch-requirements-core.txt
+++ /dev/null
@@ -1,8 +0,0 @@
---- requirements-core.txt.orig 2021-03-13 22:01:25 UTC
-+++ requirements-core.txt
-@@ -23,4 +23,4 @@ baycomp>=1.0.2
- pandas>=1.0.0
- pyyaml
- openpyxl
--httpx>=0.14.0,<0.17
-+httpx>=0.14.0
diff --git a/misc/orange3/files/patch-requirements-gui.txt b/misc/orange3/files/patch-requirements-gui.txt
deleted file mode 100644
index 8721258d2d4b..000000000000
--- a/misc/orange3/files/patch-requirements-gui.txt
+++ /dev/null
@@ -1,13 +0,0 @@
-- fails to find PyQt5 with the line as given
-
---- requirements-gui.txt.orig 2021-03-13 22:03:33 UTC
-+++ requirements-gui.txt
-@@ -1,7 +1,7 @@
- orange-canvas-core>=0.1.19,<0.2a
- orange-widget-base>=4.12.0
-
--PyQt5>=5.12,!=5.15.1 # 5.15.1 skipped because of QTBUG-87057 - affects select columns
-+#PyQt5>=5.12,!=5.15.1 # 5.15.1 skipped because of QTBUG-87057 - affects select columns
- PyQtWebEngine>=5.12
- AnyQt>=0.0.11
-
diff --git a/misc/orange3/pkg-descr b/misc/orange3/pkg-descr
deleted file mode 100644
index d204adee7dd2..000000000000
--- a/misc/orange3/pkg-descr
+++ /dev/null
@@ -1,4 +0,0 @@
-Orange is a component-based data mining software. It includes a range of data
-visualization, exploration, preprocessing and modeling techniques. It can be
-used through a nice and intuitive user interface or, for more advanced users,
-as a module for the Python programming language.
diff --git a/misc/py-colored/Makefile b/misc/py-colored/Makefile
index 1b343e29aabb..05e46479dc3c 100644
--- a/misc/py-colored/Makefile
+++ b/misc/py-colored/Makefile
@@ -1,5 +1,5 @@
PORTNAME= colored
-DISTVERSION= 2.2.5
+DISTVERSION= 2.3.0
CATEGORIES= misc python
MASTER_SITES= PYPI
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
diff --git a/misc/py-colored/distinfo b/misc/py-colored/distinfo
index 9ca60bad9ff7..f56e4b48668b 100644
--- a/misc/py-colored/distinfo
+++ b/misc/py-colored/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1738954039
-SHA256 (colored-2.2.5.tar.gz) = 60cc61ea656cd3e753380fbc19fc62b0f65b60b2a096ba01bc476d6738ace441
-SIZE (colored-2.2.5.tar.gz) = 13341
+TIMESTAMP = 1750775184
+SHA256 (colored-2.3.0.tar.gz) = 4daf9b3ed687a01d59005e1bd03f354475226b933abb9a01836d6dde926d4c6f
+SIZE (colored-2.3.0.tar.gz) = 14708
diff --git a/misc/py-dictdiffer/Makefile b/misc/py-dictdiffer/Makefile
deleted file mode 100644
index b693256f63f5..000000000000
--- a/misc/py-dictdiffer/Makefile
+++ /dev/null
@@ -1,26 +0,0 @@
-PORTNAME= dictdiffer
-DISTVERSION= 0.9.0
-PORTREVISION= 1
-CATEGORIES= misc
-MASTER_SITES= PYPI
-PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
-
-MAINTAINER= yuri@FreeBSD.org
-COMMENT= Python library that helps you to diff and patch dictionaries
-WWW= https://github.com/inveniosoftware/dictdiffer
-
-LICENSE= MIT
-LICENSE_FILE= ${WRKSRC}/LICENSE
-
-DEPRECATED= Depends on expired devel/py-pytest-runner
-EXPIRATION_DATE=2025-03-31
-
-BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest-runner>=2.7:devel/py-pytest-runner@${PY_FLAVOR} \
- ${PYTHON_PKGNAMEPREFIX}setuptools-scm>=3.1.0:devel/py-setuptools-scm@${PY_FLAVOR}
-
-USES= python
-USE_PYTHON= distutils autoplist
-
-NO_ARCH= yes
-
-.include <bsd.port.mk>
diff --git a/misc/py-dictdiffer/distinfo b/misc/py-dictdiffer/distinfo
deleted file mode 100644
index 90644c40c44d..000000000000
--- a/misc/py-dictdiffer/distinfo
+++ /dev/null
@@ -1,3 +0,0 @@
-TIMESTAMP = 1627061744
-SHA256 (dictdiffer-0.9.0.tar.gz) = 17bacf5fbfe613ccf1b6d512bd766e6b21fb798822a133aa86098b8ac9997578
-SIZE (dictdiffer-0.9.0.tar.gz) = 31513
diff --git a/misc/py-dictdiffer/pkg-descr b/misc/py-dictdiffer/pkg-descr
deleted file mode 100644
index 982f4df58cb8..000000000000
--- a/misc/py-dictdiffer/pkg-descr
+++ /dev/null
@@ -1 +0,0 @@
-Dictdiffer is a helper module that helps you to diff and patch dictionaries.
diff --git a/misc/py-instructor/Makefile b/misc/py-instructor/Makefile
index f3e5b5a70e38..15bf05cb9536 100644
--- a/misc/py-instructor/Makefile
+++ b/misc/py-instructor/Makefile
@@ -1,5 +1,5 @@
PORTNAME= instructor
-DISTVERSION= 1.8.3
+DISTVERSION= 1.9.0
CATEGORIES= misc python
MASTER_SITES= PYPI
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
@@ -16,17 +16,28 @@ RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}openai>=1.70.0<2.0.0:misc/py-openai@${PY_FLA
${PYTHON_PKGNAMEPREFIX}pydantic2>=2.8.0<3.0.0:devel/py-pydantic2@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}docstring_parser>=0.16<1.0:textproc/py-docstring_parser@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}typer>=0.9.0<1.0.0:devel/py-typer@${PY_FLAVOR} \
- ${PYTHON_PKGNAMEPREFIX}rich>=13.7.0:textproc/py-rich@${PY_FLAVOR} \
+ ${PYTHON_PKGNAMEPREFIX}rich>=13.7.0<15.0.0:textproc/py-rich@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}aiohttp>=3.9.1<4.0.0:www/py-aiohttp@${PY_FLAVOR} \
- ${PYTHON_PKGNAMEPREFIX}tenacity>=9.0.0<10.0.0:devel/py-tenacity@${PY_FLAVOR} \
+ ${PYTHON_PKGNAMEPREFIX}tenacity>=8.2.3<10.0.0:devel/py-tenacity@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}pydantic-core>=2.18.0<3.0.0:devel/py-pydantic-core@${PY_FLAVOR} \
- ${PYTHON_PKGNAMEPREFIX}jiter>=0.6.1:textproc/py-jiter@${PY_FLAVOR} \
+ ${PYTHON_PKGNAMEPREFIX}jiter>=0.6.1<0.11:textproc/py-jiter@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}Jinja2>=3.1.4<4.0.0:devel/py-Jinja2@${PY_FLAVOR} \
- ${PYTHON_PKGNAMEPREFIX}requests>=2.32.3<3.0.0:www/py-requests@${PY_FLAVOR}
+ ${PYTHON_PKGNAMEPREFIX}requests>=2.32.3<3.0.0:www/py-requests@${PY_FLAVOR} \
+ ${PYTHON_PKGNAMEPREFIX}pre-commit>=4.2.0:devel/py-pre-commit@${PY_FLAVOR} \
+ ${PYTHON_PKGNAMEPREFIX}mkdocs>=1.6.1:textproc/py-mkdocs@${PY_FLAVOR} \
+ ${PYTHON_PKGNAMEPREFIX}mkdocs-material>=9.5.49:textproc/py-mkdocs-material@${PY_FLAVOR}
USES= python
-USE_PYTHON= autoplist pep517
+USE_PYTHON= autoplist concurrent pep517
NO_ARCH= yes
+PORTDOCS= CONTRIBUTING.md README.md
+
+OPTIONS_DEFINE= DOCS
+
+post-install-DOCS-on:
+ @${MKDIR} ${STAGEDIR}${DOCSDIR}
+ ${INSTALL_MAN} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR}
+
.include <bsd.port.mk>
diff --git a/misc/py-instructor/distinfo b/misc/py-instructor/distinfo
index 9d637b959dde..36b95c428f25 100644
--- a/misc/py-instructor/distinfo
+++ b/misc/py-instructor/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1748059843
-SHA256 (instructor-1.8.3.tar.gz) = 04d64ebc0d6e5eee104f4715b18fac1a02c21757ae6ce76efa65d38cbd536b0b
-SIZE (instructor-1.8.3.tar.gz) = 69265823
+TIMESTAMP = 1750646435
+SHA256 (instructor-1.9.0.tar.gz) = 34fb37084d40130bdde9d8dd27f592cef81b409ded8a8c11ccd81945e52fd9e6
+SIZE (instructor-1.9.0.tar.gz) = 69331467
diff --git a/misc/py-litellm/Makefile b/misc/py-litellm/Makefile
index d1eeb7192153..071f07a7aa06 100644
--- a/misc/py-litellm/Makefile
+++ b/misc/py-litellm/Makefile
@@ -1,5 +1,5 @@
PORTNAME= litellm
-DISTVERSION= 1.72.9
+DISTVERSION= 1.73.0
CATEGORIES= misc python
MASTER_SITES= PYPI
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
diff --git a/misc/py-litellm/distinfo b/misc/py-litellm/distinfo
index 06ed65642a9e..52d86c28dfd2 100644
--- a/misc/py-litellm/distinfo
+++ b/misc/py-litellm/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1750492718
-SHA256 (litellm-1.72.9.tar.gz) = 2559509ae18d5c8165431e76196e9715c8e586af690f597bbaa2a1fecc303b30
-SIZE (litellm-1.72.9.tar.gz) = 8448963
+TIMESTAMP = 1750649411
+SHA256 (litellm-1.73.0.tar.gz) = 4fdbb86f349be2038068827517786f6f7e7f761528d8f5d4b941b406d33bb8c3
+SIZE (litellm-1.73.0.tar.gz) = 8553383
diff --git a/misc/py-orange3-associate/Makefile b/misc/py-orange3-associate/Makefile
deleted file mode 100644
index 1938bd5b11a1..000000000000
--- a/misc/py-orange3-associate/Makefile
+++ /dev/null
@@ -1,26 +0,0 @@
-PORTNAME= orange3-associate
-DISTVERSION= 1.1.8
-PORTREVISION= 3
-CATEGORIES= misc python
-PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
-
-MAINTAINER= yuri@FreeBSD.org
-COMMENT= Orange 3 add-on: Frequent itemsets and association rules mining
-WWW= https://github.com/biolab/orange3-associate
-
-LICENSE= GPLv3+
-
-DEPRECATED= Depends on expiring misc/orange3
-EXPIRATION_DATE=2025-06-21
-
-RUN_DEPENDS= orange3>0:misc/orange3 \
- ${PYNUMPY} \
- ${PYTHON_PKGNAMEPREFIX}scipy>0:science/py-scipy@${PY_FLAVOR}
-
-USES= python
-USE_PYTHON= distutils autoplist
-
-USE_GITHUB= yes
-GH_ACCOUNT= biolab
-
-.include <bsd.port.mk>
diff --git a/misc/py-orange3-associate/distinfo b/misc/py-orange3-associate/distinfo
deleted file mode 100644
index b55c0a89958a..000000000000
--- a/misc/py-orange3-associate/distinfo
+++ /dev/null
@@ -1,3 +0,0 @@
-TIMESTAMP = 1615678925
-SHA256 (biolab-orange3-associate-1.1.8_GH0.tar.gz) = 2840b28fa7cabbe6e9129b677ae28d02d3ceb680c5786d3fe980fe4ed666d66e
-SIZE (biolab-orange3-associate-1.1.8_GH0.tar.gz) = 505212
diff --git a/misc/py-orange3-associate/pkg-descr b/misc/py-orange3-associate/pkg-descr
deleted file mode 100644
index 3130544e9b1f..000000000000
--- a/misc/py-orange3-associate/pkg-descr
+++ /dev/null
@@ -1,2 +0,0 @@
-Orange3 add-on implementing association rules data mining,
-and enumerating frequent itemsets.
diff --git a/misc/py-orange3-datafusion/Makefile b/misc/py-orange3-datafusion/Makefile
deleted file mode 100644
index 38308ffebd0f..000000000000
--- a/misc/py-orange3-datafusion/Makefile
+++ /dev/null
@@ -1,27 +0,0 @@
-PORTNAME= orange3-datafusion
-DISTVERSIONPREFIX= v
-DISTVERSION= 0.1.11-7
-PORTREVISION= 6
-DISTVERSIONSUFFIX= -g69aa51c
-CATEGORIES= misc python
-PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
-
-MAINTAINER= yuri@FreeBSD.org
-COMMENT= Data fusion add-on for Orange3
-WWW= https://github.com/biolab/orange3-datafusion
-
-LICENSE= GPLv3
-
-DEPRECATED= Depends on expiring misc/orange3
-EXPIRATION_DATE=2025-06-21
-
-RUN_DEPENDS= orange3>0:misc/orange3 \
- ${PYTHON_PKGNAMEPREFIX}scikit-fusion>0:misc/py-scikit-fusion@${PY_FLAVOR}
-
-USES= python
-USE_GITHUB= yes
-GH_ACCOUNT= biolab
-USE_PYTHON= distutils autoplist
-NO_ARCH= yes
-
-.include <bsd.port.mk>
diff --git a/misc/py-orange3-datafusion/distinfo b/misc/py-orange3-datafusion/distinfo
deleted file mode 100644
index 5fea43e7e48b..000000000000
--- a/misc/py-orange3-datafusion/distinfo
+++ /dev/null
@@ -1,3 +0,0 @@
-TIMESTAMP = 1528961460
-SHA256 (biolab-orange3-datafusion-v0.1.11-7-g69aa51c_GH0.tar.gz) = 86e1e9bf31fbbd64b92bfefd3fde72d93475c69355a18559c438fd3e7afffae5
-SIZE (biolab-orange3-datafusion-v0.1.11-7-g69aa51c_GH0.tar.gz) = 6835800
diff --git a/misc/py-orange3-datafusion/pkg-descr b/misc/py-orange3-datafusion/pkg-descr
deleted file mode 100644
index ba1c4bb6f52f..000000000000
--- a/misc/py-orange3-datafusion/pkg-descr
+++ /dev/null
@@ -1,4 +0,0 @@
-This is a data fusion add-on for Orange3. Add-on wraps scikit-fusion, a Python
-library for data fusion, and implements a set of widgets for loading of the
-data, definition of data fusion schema, collective matrix factorization and
-exploration of latent factors.
diff --git a/misc/py-orange3-educational/Makefile b/misc/py-orange3-educational/Makefile
deleted file mode 100644
index 6677cf06db39..000000000000
--- a/misc/py-orange3-educational/Makefile
+++ /dev/null
@@ -1,29 +0,0 @@
-PORTNAME= orange3-educational
-DISTVERSION= 0.4.0
-PORTREVISION= 3
-CATEGORIES= misc education python
-PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
-
-MAINTAINER= yuri@FreeBSD.org
-COMMENT= Orange add-on: widgets for machine learning and data mining
-WWW= https://github.com/biolab/orange3-educational
-
-LICENSE= CC-BY-3.0
-LICENSE_FILE= ${WRKSRC}/LICENSE
-
-DEPRECATED= Depends on expiring misc/orange3
-EXPIRATION_DATE=2025-06-21
-
-RUN_DEPENDS= orange3>0:misc/orange3 \
- ${PYNUMPY} \
- ${PYTHON_PKGNAMEPREFIX}beautifulsoup>0:www/py-beautifulsoup@${PY_FLAVOR}
-
-USES= python
-USE_PYTHON= distutils autoplist
-
-USE_GITHUB= yes
-GH_ACCOUNT= biolab
-
-NO_ARCH= yes
-
-.include <bsd.port.mk>
diff --git a/misc/py-orange3-educational/distinfo b/misc/py-orange3-educational/distinfo
deleted file mode 100644
index 1e548262fe99..000000000000
--- a/misc/py-orange3-educational/distinfo
+++ /dev/null
@@ -1,3 +0,0 @@
-TIMESTAMP = 1618867149
-SHA256 (biolab-orange3-educational-0.4.0_GH0.tar.gz) = e8f452214a4fc9ad15ccb7c8328850cebb6a38aa483cb4763f1544c41ccd80d8
-SIZE (biolab-orange3-educational-0.4.0_GH0.tar.gz) = 3364301
diff --git a/misc/py-orange3-educational/pkg-descr b/misc/py-orange3-educational/pkg-descr
deleted file mode 100644
index d11003ee2d89..000000000000
--- a/misc/py-orange3-educational/pkg-descr
+++ /dev/null
@@ -1,4 +0,0 @@
-Widgets in the educational add-on demonstrate several key data mining and
-machine learning procedures. The widgets are useful for beginners to
-understand the inner working of key algorithms in the data mining and for
-teachers to be able to visually explain various methods in a classroom.
diff --git a/misc/py-orange3-network/Makefile b/misc/py-orange3-network/Makefile
deleted file mode 100644
index ece5c63c67b9..000000000000
--- a/misc/py-orange3-network/Makefile
+++ /dev/null
@@ -1,30 +0,0 @@
-PORTNAME= orange3-network
-DISTVERSION= 1.5.1.20210224 # the 1.5.1 was forgotten
-PORTREVISION= 4
-CATEGORIES= misc python
-PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
-
-MAINTAINER= yuri@FreeBSD.org
-COMMENT= Network analysis add-on for Orange data mining suite
-WWW= https://github.com/biolab/orange3-network
-
-LICENSE= GPLv2
-LICENSE_FILE= ${WRKSRC}/COPYING
-
-DEPRECATED= Depends on expiring misc/orange3
-EXPIRATION_DATE=2025-06-21
-
-BUILD_DEPENDS= ${PYNUMPY}
-RUN_DEPENDS= orange3>0:misc/orange3 \
- ${PYNUMPY} \
- ${PYTHON_PKGNAMEPREFIX}gensim>0:textproc/py-gensim@${PY_FLAVOR} \
- ${PYTHON_PKGNAMEPREFIX}pyqtgraph>=0.9.10:graphics/py-pyqtgraph@${PY_FLAVOR}
-
-USES= python
-USE_PYTHON= distutils cython autoplist
-
-USE_GITHUB= yes
-GH_ACCOUNT= biolab
-GH_TAGNAME= ec534c9
-
-.include <bsd.port.mk>
diff --git a/misc/py-orange3-network/distinfo b/misc/py-orange3-network/distinfo
deleted file mode 100644
index d58c2a4ed477..000000000000
--- a/misc/py-orange3-network/distinfo
+++ /dev/null
@@ -1,3 +0,0 @@
-TIMESTAMP = 1615748215
-SHA256 (biolab-orange3-network-1.5.1.20210224-ec534c9_GH0.tar.gz) = 59bf35dd6bd75be05a3967d319ffc390cf602b239325c93360f3509534de1247
-SIZE (biolab-orange3-network-1.5.1.20210224-ec534c9_GH0.tar.gz) = 3086801
diff --git a/misc/py-orange3-network/pkg-descr b/misc/py-orange3-network/pkg-descr
deleted file mode 100644
index cf412b16cfd2..000000000000
--- a/misc/py-orange3-network/pkg-descr
+++ /dev/null
@@ -1,2 +0,0 @@
-Orange3-Network is an add-on for Orange data mining software package.
-It provides network visualization and network analysis tools.
diff --git a/misc/py-orange3-timeseries/Makefile b/misc/py-orange3-timeseries/Makefile
deleted file mode 100644
index b8a336f46611..000000000000
--- a/misc/py-orange3-timeseries/Makefile
+++ /dev/null
@@ -1,31 +0,0 @@
-PORTNAME= orange3-timeseries
-DISTVERSION= 0.3.10
-PORTREVISION= 3
-CATEGORIES= misc python
-PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
-
-MAINTAINER= yuri@FreeBSD.org
-COMMENT= Orange add-on for analyzing, visualizing, manipulating time series
-WWW= https://github.com/biolab/orange3-timeseries
-
-LICENSE= CC-BY-3.0
-LICENSE_FILE= ${WRKSRC}/LICENSE
-
-DEPRECATED= Depends on expiring misc/orange3
-EXPIRATION_DATE=2025-06-21
-
-RUN_DEPENDS= orange3>0:misc/orange3 \
- ${PYNUMPY} \
- ${PYTHON_PKGNAMEPREFIX}more-itertools>0:devel/py-more-itertools@${PY_FLAVOR} \
- ${PYTHON_PKGNAMEPREFIX}pandas>0:math/py-pandas@${PY_FLAVOR} \
- ${PYTHON_PKGNAMEPREFIX}pandas-datareader>0:math/py-pandas-datareader@${PY_FLAVOR} \
- ${PYTHON_PKGNAMEPREFIX}scipy>=0.17:science/py-scipy@${PY_FLAVOR} \
- ${PYTHON_PKGNAMEPREFIX}statsmodels>=0.10.0:math/py-statsmodels@${PY_FLAVOR}
-
-USES= python
-USE_GITHUB= yes
-GH_ACCOUNT= biolab
-USE_PYTHON= distutils autoplist
-NO_ARCH= yes
-
-.include <bsd.port.mk>
diff --git a/misc/py-orange3-timeseries/distinfo b/misc/py-orange3-timeseries/distinfo
deleted file mode 100644
index fb5e8bfa7615..000000000000
--- a/misc/py-orange3-timeseries/distinfo
+++ /dev/null
@@ -1,3 +0,0 @@
-TIMESTAMP = 1615685846
-SHA256 (biolab-orange3-timeseries-0.3.10_GH0.tar.gz) = e08e901acdc20134d3571351004fafeeaec847b49a7284aa55efcfc33c9c0bf9
-SIZE (biolab-orange3-timeseries-0.3.10_GH0.tar.gz) = 1802156
diff --git a/misc/py-orange3-timeseries/pkg-descr b/misc/py-orange3-timeseries/pkg-descr
deleted file mode 100644
index 21cbe75b11c5..000000000000
--- a/misc/py-orange3-timeseries/pkg-descr
+++ /dev/null
@@ -1,2 +0,0 @@
-Orange add-on for analyzing, visualizing, manipulating, and forecasting time
-series data.
diff --git a/misc/py-safetensors/Makefile b/misc/py-safetensors/Makefile
index d5aee35c9788..74059e60fd27 100644
--- a/misc/py-safetensors/Makefile
+++ b/misc/py-safetensors/Makefile
@@ -1,14 +1,14 @@
PORTNAME= safetensors
DISTVERSIONPREFIX= v
-DISTVERSION= 0.5.3
-PORTREVISION= 2
+DISTVERSION= 0.6.0
CATEGORIES= misc python # machine-learning
#MASTER_SITES= PYPI
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= yuri@FreeBSD.org
COMMENT= Simple, safe way to store and distribute tensors
-WWW= https://huggingface.co/docs/safetensors/index
+WWW= https://huggingface.co/docs/safetensors/index \
+ https://github.com/huggingface/safetensors
LICENSE= APACHE20
LICENSE_FILE= ${WRKSRC}/../../LICENSE
@@ -18,7 +18,7 @@ BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}setuptools-rust>0:devel/py-setuptools-rust
RUN_DEPENDS= ${PYNUMPY} \
${PYTHON_PKGNAMEPREFIX}pytorch>=1.10:misc/py-pytorch@${PY_FLAVOR}
TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}h5py>=3.7.0:science/py-h5py@${PY_FLAVOR} \
- ${PYTHON_PKGNAMEPREFIX}huggingface_hub>=0.12.1:misc/py-huggingface-hub@${PY_FLAVOR} \
+ ${PYTHON_PKGNAMEPREFIX}huggingface-hub>=0.12.1:misc/py-huggingface-hub@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}hypothesis>=6.70.2:devel/py-hypothesis@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}pytest-benchmark>=4.0.0:devel/py-pytest-benchmark@${PY_FLAVOR}
@@ -30,32 +30,31 @@ GH_ACCOUNT= huggingface
WRKSRC_SUBDIR= bindings/python
-CARGO_CRATES= autocfg-1.4.0 \
- cfg-if-1.0.0 \
+CARGO_CRATES= autocfg-1.5.0 \
heck-0.5.0 \
- indoc-2.0.5 \
- itoa-1.0.14 \
- libc-0.2.170 \
- memchr-2.7.4 \
+ indoc-2.0.6 \
+ itoa-1.0.15 \
+ libc-0.2.174 \
+ memchr-2.7.5 \
memmap2-0.9.5 \
memoffset-0.9.1 \
- once_cell-1.20.3 \
- portable-atomic-1.11.0 \
- proc-macro2-1.0.93 \
- pyo3-0.23.5 \
- pyo3-build-config-0.23.5 \
- pyo3-ffi-0.23.5 \
- pyo3-macros-0.23.5 \
- pyo3-macros-backend-0.23.5 \
- quote-1.0.38 \
- ryu-1.0.19 \
- serde-1.0.218 \
- serde_derive-1.0.218 \
- serde_json-1.0.139 \
- syn-2.0.98 \
- target-lexicon-0.12.16 \
- unicode-ident-1.0.17 \
- unindent-0.2.3
+ once_cell-1.21.3 \
+ portable-atomic-1.11.1 \
+ proc-macro2-1.0.95 \
+ pyo3-0.25.1 \
+ pyo3-build-config-0.25.1 \
+ pyo3-ffi-0.25.1 \
+ pyo3-macros-0.25.1 \
+ pyo3-macros-backend-0.25.1 \
+ quote-1.0.40 \
+ ryu-1.0.20 \
+ serde-1.0.219 \
+ serde_derive-1.0.219 \
+ serde_json-1.0.140 \
+ syn-2.0.104 \
+ target-lexicon-0.13.2 \
+ unicode-ident-1.0.18 \
+ unindent-0.2.4
CARGO_BUILD= no
CARGO_INSTALL= no
diff --git a/misc/py-safetensors/distinfo b/misc/py-safetensors/distinfo
index de9c0df94717..fe59288808f9 100644
--- a/misc/py-safetensors/distinfo
+++ b/misc/py-safetensors/distinfo
@@ -1,55 +1,53 @@
-TIMESTAMP = 1740679369
-SHA256 (rust/crates/autocfg-1.4.0.crate) = ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26
-SIZE (rust/crates/autocfg-1.4.0.crate) = 17712
-SHA256 (rust/crates/cfg-if-1.0.0.crate) = baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd
-SIZE (rust/crates/cfg-if-1.0.0.crate) = 7934
+TIMESTAMP = 1750814026
+SHA256 (rust/crates/autocfg-1.5.0.crate) = c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8
+SIZE (rust/crates/autocfg-1.5.0.crate) = 18729
SHA256 (rust/crates/heck-0.5.0.crate) = 2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea
SIZE (rust/crates/heck-0.5.0.crate) = 11517
-SHA256 (rust/crates/indoc-2.0.5.crate) = b248f5224d1d606005e02c97f5aa4e88eeb230488bcc03bc9ca4d7991399f2b5
-SIZE (rust/crates/indoc-2.0.5.crate) = 14396
-SHA256 (rust/crates/itoa-1.0.14.crate) = d75a2a4b1b190afb6f5425f10f6a8f959d2ea0b9c2b1d79553551850539e4674
-SIZE (rust/crates/itoa-1.0.14.crate) = 11210
-SHA256 (rust/crates/libc-0.2.170.crate) = 875b3680cb2f8f71bdcf9a30f38d48282f5d3c95cbf9b3fa57269bb5d5c06828
-SIZE (rust/crates/libc-0.2.170.crate) = 760076
-SHA256 (rust/crates/memchr-2.7.4.crate) = 78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3
-SIZE (rust/crates/memchr-2.7.4.crate) = 96670
+SHA256 (rust/crates/indoc-2.0.6.crate) = f4c7245a08504955605670dbf141fceab975f15ca21570696aebe9d2e71576bd
+SIZE (rust/crates/indoc-2.0.6.crate) = 17164
+SHA256 (rust/crates/itoa-1.0.15.crate) = 4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c
+SIZE (rust/crates/itoa-1.0.15.crate) = 11231
+SHA256 (rust/crates/libc-0.2.174.crate) = 1171693293099992e19cddea4e8b849964e9846f4acee11b3948bcc337be8776
+SIZE (rust/crates/libc-0.2.174.crate) = 779933
+SHA256 (rust/crates/memchr-2.7.5.crate) = 32a282da65faaf38286cf3be983213fcf1d2e2a58700e808f83f4ea9a4804bc0
+SIZE (rust/crates/memchr-2.7.5.crate) = 97603
SHA256 (rust/crates/memmap2-0.9.5.crate) = fd3f7eed9d3848f8b98834af67102b720745c4ec028fcd0aa0239277e7de374f
SIZE (rust/crates/memmap2-0.9.5.crate) = 33280
SHA256 (rust/crates/memoffset-0.9.1.crate) = 488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a
SIZE (rust/crates/memoffset-0.9.1.crate) = 9032
-SHA256 (rust/crates/once_cell-1.20.3.crate) = 945462a4b81e43c4e3ba96bd7b49d834c6f61198356aa858733bc4acf3cbe62e
-SIZE (rust/crates/once_cell-1.20.3.crate) = 33456
-SHA256 (rust/crates/portable-atomic-1.11.0.crate) = 350e9b48cbc6b0e028b0473b114454c6316e57336ee184ceab6e53f72c178b3e
-SIZE (rust/crates/portable-atomic-1.11.0.crate) = 181258
-SHA256 (rust/crates/proc-macro2-1.0.93.crate) = 60946a68e5f9d28b0dc1c21bb8a97ee7d018a8b322fa57838ba31cc878e22d99
-SIZE (rust/crates/proc-macro2-1.0.93.crate) = 52388
-SHA256 (rust/crates/pyo3-0.23.5.crate) = 7778bffd85cf38175ac1f545509665d0b9b92a198ca7941f131f85f7a4f9a872
-SIZE (rust/crates/pyo3-0.23.5.crate) = 1088533
-SHA256 (rust/crates/pyo3-build-config-0.23.5.crate) = 94f6cbe86ef3bf18998d9df6e0f3fc1050a8c5efa409bf712e661a4366e010fb
-SIZE (rust/crates/pyo3-build-config-0.23.5.crate) = 33885
-SHA256 (rust/crates/pyo3-ffi-0.23.5.crate) = e9f1b4c431c0bb1c8fb0a338709859eed0d030ff6daa34368d3b152a63dfdd8d
-SIZE (rust/crates/pyo3-ffi-0.23.5.crate) = 74867
-SHA256 (rust/crates/pyo3-macros-0.23.5.crate) = fbc2201328f63c4710f68abdf653c89d8dbc2858b88c5d88b0ff38a75288a9da
-SIZE (rust/crates/pyo3-macros-0.23.5.crate) = 8856
-SHA256 (rust/crates/pyo3-macros-backend-0.23.5.crate) = fca6726ad0f3da9c9de093d6f116a93c1a38e417ed73bf138472cf4064f72028
-SIZE (rust/crates/pyo3-macros-backend-0.23.5.crate) = 70938
-SHA256 (rust/crates/quote-1.0.38.crate) = 0e4dccaaaf89514f546c693ddc140f729f958c247918a13380cccc6078391acc
-SIZE (rust/crates/quote-1.0.38.crate) = 31252
-SHA256 (rust/crates/ryu-1.0.19.crate) = 6ea1a2d0a644769cc99faa24c3ad26b379b786fe7c36fd3c546254801650e6dd
-SIZE (rust/crates/ryu-1.0.19.crate) = 48770
-SHA256 (rust/crates/serde-1.0.218.crate) = e8dfc9d19bdbf6d17e22319da49161d5d0108e4188e8b680aef6299eed22df60
-SIZE (rust/crates/serde-1.0.218.crate) = 78968
-SHA256 (rust/crates/serde_derive-1.0.218.crate) = f09503e191f4e797cb8aac08e9a4a4695c5edf6a2e70e376d961ddd5c969f82b
-SIZE (rust/crates/serde_derive-1.0.218.crate) = 57782
-SHA256 (rust/crates/serde_json-1.0.139.crate) = 44f86c3acccc9c65b153fe1b85a3be07fe5515274ec9f0653b4a0875731c72a6
-SIZE (rust/crates/serde_json-1.0.139.crate) = 154839
-SHA256 (rust/crates/syn-2.0.98.crate) = 36147f1a48ae0ec2b5b3bc5b537d267457555a10dc06f3dbc8cb11ba3006d3b1
-SIZE (rust/crates/syn-2.0.98.crate) = 297807
-SHA256 (rust/crates/target-lexicon-0.12.16.crate) = 61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1
-SIZE (rust/crates/target-lexicon-0.12.16.crate) = 26488
-SHA256 (rust/crates/unicode-ident-1.0.17.crate) = 00e2473a93778eb0bad35909dff6a10d28e63f792f16ed15e404fca9d5eeedbe
-SIZE (rust/crates/unicode-ident-1.0.17.crate) = 47704
-SHA256 (rust/crates/unindent-0.2.3.crate) = c7de7d73e1754487cb58364ee906a499937a0dfabd86bcb980fa99ec8c8fa2ce
-SIZE (rust/crates/unindent-0.2.3.crate) = 7306
-SHA256 (huggingface-safetensors-v0.5.3_GH0.tar.gz) = 8c91c33013e54cbc7e055c4aa9565ddefa41ebd5a6de0dbdbbffaa6e921b4257
-SIZE (huggingface-safetensors-v0.5.3_GH0.tar.gz) = 80858
+SHA256 (rust/crates/once_cell-1.21.3.crate) = 42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d
+SIZE (rust/crates/once_cell-1.21.3.crate) = 34534
+SHA256 (rust/crates/portable-atomic-1.11.1.crate) = f84267b20a16ea918e43c6a88433c2d54fa145c92a811b5b047ccbe153674483
+SIZE (rust/crates/portable-atomic-1.11.1.crate) = 185506
+SHA256 (rust/crates/proc-macro2-1.0.95.crate) = 02b3e5e68a3a1a02aad3ec490a98007cbc13c37cbe84a3cd7b8e406d76e7f778
+SIZE (rust/crates/proc-macro2-1.0.95.crate) = 51820
+SHA256 (rust/crates/pyo3-0.25.1.crate) = 8970a78afe0628a3e3430376fc5fd76b6b45c4d43360ffd6cdd40bdde72b682a
+SIZE (rust/crates/pyo3-0.25.1.crate) = 1121993
+SHA256 (rust/crates/pyo3-build-config-0.25.1.crate) = 458eb0c55e7ece017adeba38f2248ff3ac615e53660d7c71a238d7d2a01c7598
+SIZE (rust/crates/pyo3-build-config-0.25.1.crate) = 34126
+SHA256 (rust/crates/pyo3-ffi-0.25.1.crate) = 7114fe5457c61b276ab77c5055f206295b812608083644a5c5b2640c3102565c
+SIZE (rust/crates/pyo3-ffi-0.25.1.crate) = 78058
+SHA256 (rust/crates/pyo3-macros-0.25.1.crate) = a8725c0a622b374d6cb051d11a0983786448f7785336139c3c94f5aa6bef7e50
+SIZE (rust/crates/pyo3-macros-0.25.1.crate) = 8886
+SHA256 (rust/crates/pyo3-macros-backend-0.25.1.crate) = 4109984c22491085343c05b0dbc54ddc405c3cf7b4374fc533f5c3313a572ccc
+SIZE (rust/crates/pyo3-macros-backend-0.25.1.crate) = 76006
+SHA256 (rust/crates/quote-1.0.40.crate) = 1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d
+SIZE (rust/crates/quote-1.0.40.crate) = 31063
+SHA256 (rust/crates/ryu-1.0.20.crate) = 28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f
+SIZE (rust/crates/ryu-1.0.20.crate) = 48738
+SHA256 (rust/crates/serde-1.0.219.crate) = 5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6
+SIZE (rust/crates/serde-1.0.219.crate) = 78983
+SHA256 (rust/crates/serde_derive-1.0.219.crate) = 5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00
+SIZE (rust/crates/serde_derive-1.0.219.crate) = 57798
+SHA256 (rust/crates/serde_json-1.0.140.crate) = 20068b6e96dc6c9bd23e01df8827e6c7e1f2fddd43c21810382803c136b99373
+SIZE (rust/crates/serde_json-1.0.140.crate) = 154852
+SHA256 (rust/crates/syn-2.0.104.crate) = 17b6f705963418cdb9927482fa304bc562ece2fdd4f616084c50b7023b435a40
+SIZE (rust/crates/syn-2.0.104.crate) = 299699
+SHA256 (rust/crates/target-lexicon-0.13.2.crate) = e502f78cdbb8ba4718f566c418c52bc729126ffd16baee5baa718cf25dd5a69a
+SIZE (rust/crates/target-lexicon-0.13.2.crate) = 27923
+SHA256 (rust/crates/unicode-ident-1.0.18.crate) = 5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512
+SIZE (rust/crates/unicode-ident-1.0.18.crate) = 47743
+SHA256 (rust/crates/unindent-0.2.4.crate) = 7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3
+SIZE (rust/crates/unindent-0.2.4.crate) = 7422
+SHA256 (huggingface-safetensors-v0.6.0_GH0.tar.gz) = 3707f6e048b256037410443e492b9546201a0746c4cd9d9253fca3ffdafff6d8
+SIZE (huggingface-safetensors-v0.6.0_GH0.tar.gz) = 203937