textproc/py-spacy-loggers: Add py-spacy-loggers 1.0.5

Starting with spaCy v3.2, alternate loggers are moved into a separate package so
that they can be added and updated independently from the core spaCy library.

spacy-loggers also provides additional utility loggers to facilitate
interoperation between individual loggers.
This commit is contained in:
Po-Chuan Hsieh 2024-02-21 22:13:40 +08:00
parent 24bfd5932d
commit 77dddeede8
No known key found for this signature in database
GPG Key ID: 9A4BD10F002DD04B
4 changed files with 32 additions and 0 deletions

View File

@ -1560,6 +1560,7 @@
SUBDIR += py-spacy
SUBDIR += py-spacy-legacy
SUBDIR += py-spacy-llm
SUBDIR += py-spacy-loggers
SUBDIR += py-sparqlwrapper
SUBDIR += py-sphinx
SUBDIR += py-sphinx-argparse

View File

@ -0,0 +1,23 @@
PORTNAME= spacy-loggers
PORTVERSION= 1.0.5
CATEGORIES= textproc python
MASTER_SITES= PYPI
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= sunpoet@FreeBSD.org
COMMENT= Logging utilities for SpaCy
WWW= https://spacy.io/ \
https://github.com/explosion/spacy-loggers
LICENSE= MIT
LICENSE_FILE= ${WRKSRC}/LICENSE
BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}setuptools>=0:devel/py-setuptools@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}wheel>=0:devel/py-wheel@${PY_FLAVOR}
USES= python
USE_PYTHON= autoplist concurrent pep517
NO_ARCH= yes
.include <bsd.port.mk>

View File

@ -0,0 +1,3 @@
TIMESTAMP = 1708448858
SHA256 (spacy-loggers-1.0.5.tar.gz) = d60b0bdbf915a60e516cc2e653baeff946f0cfc461b452d11a4d5458c6fe5f24
SIZE (spacy-loggers-1.0.5.tar.gz) = 20811

View File

@ -0,0 +1,5 @@
Starting with spaCy v3.2, alternate loggers are moved into a separate package so
that they can be added and updated independently from the core spaCy library.
spacy-loggers also provides additional utility loggers to facilitate
interoperation between individual loggers.