From 03733deb2e634f0835c10cbfb4ec1eb15151b6ec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= Date: Sun, 30 Aug 2026 04:05:16 +0200 Subject: [PATCH] dev-python/pyzotero: Bump to 1.15.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Michał Górny --- dev-python/pyzotero/Manifest | 2 + dev-python/pyzotero/pyzotero-1.15.0.ebuild | 49 ++++++++++++++++++++++ 2 files changed, 51 insertions(+) create mode 100644 dev-python/pyzotero/pyzotero-1.15.0.ebuild diff --git a/dev-python/pyzotero/Manifest b/dev-python/pyzotero/Manifest index 22cfc0ce5c3bc..03726b35ea596 100644 --- a/dev-python/pyzotero/Manifest +++ b/dev-python/pyzotero/Manifest @@ -1,2 +1,4 @@ DIST pyzotero-1.14.0.tar.gz 576974 BLAKE2B 4e0fcb3888f987c13e8cc364045e5ac3bfd8a141e1e905511399e760838337d4077f86346d63ace5221a4d58483c4a36e610cc29e2d10e645d6303ab701b3913 SHA512 649a288e0d50ca22fdc230ea8e72153edc99b955a870242c3039984f808ffb7fdaf5b2a8f1897aa15aaceb954431854dca9099b5dbb484e0ff641cb9f5c16a4b DIST pyzotero-1.14.0.tar.gz.provenance 9541 BLAKE2B 0aa8eb4697218378e903a091ec8f26e0eae618c8bd2b8c51d0c51ff0b73a69f2c20a14f344cba94016cad84d7793fcc04d1afea6a8dfbe660d58d68b4d20d1fb SHA512 3c06f82bf3255d34a7209fc8bcec5af3f30ea0a1313e8b82c8d2ad6862ec414b01d7527e10d131d10e2df1dbee920c0a6d4de0cb10dec1ec0db0e93d8b0a878a +DIST pyzotero-1.15.0.tar.gz 584953 BLAKE2B a8a78693ef8f6b239ea7834c9e37dff98f0af9409b05c8d22ca4d814ceb10397fca6335a9e273ff4039ee254123728c9cd6f4065015f345ab6d5f884e59cf259 SHA512 2a5b61b79dac5c35f0e38216cfd499e9d969b6304d063e354b60c51ff5f05cc5b9710bbbd1be72920546c9e1056555b676dd24ffa30ecd99a1a873363602069f +DIST pyzotero-1.15.0.tar.gz.provenance 9553 BLAKE2B a4dbed677e4bfb3ff57ad07f6fc845a2ff8330805cf277507da961455fba62738f1daab112c157fd58aa4474e9c538ec4eaaea1e03b6dd5c6d8876b6f4a4634b SHA512 ee2bdd835e90f0c69732fdf9fc7f8f7820040d07245aca0eb9670d0748e4dbe038a302b5feafba31b42bb0b4abe88f62cabfbd1f36df154bc218c38ddf18bc59 diff --git a/dev-python/pyzotero/pyzotero-1.15.0.ebuild b/dev-python/pyzotero/pyzotero-1.15.0.ebuild new file mode 100644 index 0000000000000..6a52eda01670c --- /dev/null +++ b/dev-python/pyzotero/pyzotero-1.15.0.ebuild @@ -0,0 +1,49 @@ +# Copyright 1999-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=uv-build +PYPI_VERIFY_REPO=https://github.com/urschrei/pyzotero +PYTHON_COMPAT=( python3_{12..14} ) + +inherit distutils-r1 pypi + +DESCRIPTION="A Python client for the Zotero API" +HOMEPAGE=" + https://github.com/urschrei/pyzotero/ + https://pypi.org/project/pyzotero/ +" + +LICENSE="BlueOak-1.0.0" +SLOT="0" +KEYWORDS="~amd64" + +RDEPEND=" + app-text/zotero-bin + =dev-python/bibtexparser-1.4.3[${PYTHON_USEDEP}] + >=dev-python/feedparser-6.0.12[${PYTHON_USEDEP}] + >=dev-python/httpx2-2.12.0[${PYTHON_USEDEP}] + >=dev-python/whenever-0.8.8[${PYTHON_USEDEP}] +" + +BDEPEND=" + >=dev-python/trove-classifiers-2024.7.2[${PYTHON_USEDEP}] + test? ( + dev-python/ipython[${PYTHON_USEDEP}] + >=dev-python/pytz-2025.2[${PYTHON_USEDEP}] + dev-python/python-dateutil[${PYTHON_USEDEP}] + >=dev-python/tzdata-2025.2[${PYTHON_USEDEP}] + ) +" + +distutils_enable_sphinx doc \ + dev-python/sphinx-rtd-theme +EPYTEST_PLUGINS=( pytest-asyncio ) +distutils_enable_tests pytest + +python_test() { + > tests/__init__.py || die + epytest -o addopts= +}