repo/gentoo:master commit in: dev-python/pyzotero/
MichaŠGórny <[email protected]>
| Newsgroups | gmane.linux.gentoo.cvs |
|---|---|
| Message-ID | <1786588321.739ac94dd11f0b31667acc230614e58658baabf9.mgorny@gentoo> |
commit: 739ac94dd11f0b31667acc230614e58658baabf9
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Thu Aug 13 02:03:04 2026 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Thu Aug 13 02:32:01 2026 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=739ac94d
dev-python/pyzotero: Bump to 1.13.5
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/pyzotero/Manifest | 2 ++
dev-python/pyzotero/pyzotero-1.13.5.ebuild | 49 ++++++++++++++++++++++++++++++
2 files changed, 51 insertions(+)
diff --git a/dev-python/pyzotero/Manifest b/dev-python/pyzotero/Manifest
index 958e566c3c26..87ed337970f7 100644
--- a/dev-python/pyzotero/Manifest
+++ b/dev-python/pyzotero/Manifest
@@ -1,2 +1,4 @@
DIST pyzotero-1.13.4.tar.gz 556682 BLAKE2B de55729058752bbbe4770c5653db342b07a25b31347ca42c07ec96aedfb5af7aa02e34bbcfdd76758f8339c0904410bc8315fd8bb381ca3e0df9e489a9e6b0b9 SHA512 d5f404d9e3883f21781e5e401404d9e3629a0c9ed9cb6ec161b58771829419ffe14605ecb4136834095faceec6616f70b2ffb360fd86ea7a7a50df2fa2f2d512
DIST pyzotero-1.13.4.tar.gz.provenance 9645 BLAKE2B c0b00fb4545e220ed391a0b8ba308418cd118e078f84da09d2eeb3adee7a81f25e3e45ba386950adc71f17eca3af781f406a30652a6a5767f89ebf41c9092f4e SHA512 ddc33fca74221554b3be39d3c5be512feb5ce0d457dbb7259020c13fcddefe5e116fa395843e3a24da9127c5d512f9b430c2760a76d8b422a7db1314401e58a0
+DIST pyzotero-1.13.5.tar.gz 558009 BLAKE2B 9c0a60b3addd9c685f3b4b73e8f18c42b3a7151f1cc39103bf451f305c134ae54da5c8faeb516ba788be67b7b208e4b2a7bb3491c1fa55a6d9043c5dcc6d6592 SHA512 31c95a52a97526614fb95655a2e4d5cdffe36da3bba3981a7548c49893f172360363fe73b027ce73a1a22eb2a46a9173019f05c59b442549de00b328df05b583
+DIST pyzotero-1.13.5.tar.gz.provenance 9471 BLAKE2B 6b177f30be5c315446013472f1cfcaae4956dc15c8733e3d45f8ffd16f4f8e33db34432a55091ea80af0bca110dcf952abe50f4a55defba5ac4281ae9402fed7 SHA512 0886f34f58a84fc3b644c0694592691d4bc6ed7a97e9be0e2b889120bdb992612557083563361f318a5768dab93413c297d1a57244a3ae5151099e95797dbcdd
diff --git a/dev-python/pyzotero/pyzotero-1.13.5.ebuild b/dev-python/pyzotero/pyzotero-1.13.5.ebuild
new file mode 100644
index 000000000000..43581ec70ba7
--- /dev/null
+++ b/dev-python/pyzotero/pyzotero-1.13.5.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-2[${PYTHON_USEDEP}]
+ >=dev-python/bibtexparser-1.4.3[${PYTHON_USEDEP}]
+ >=dev-python/feedparser-6.0.12[${PYTHON_USEDEP}]
+ >=dev-python/httpx-0.28.1[${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=
+}