From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id B544D15808F for ; Sat, 26 Feb 2022 17:21:45 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 03AC4E083D; Sat, 26 Feb 2022 17:21:45 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id DF32CE083D for ; Sat, 26 Feb 2022 17:21:44 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4313D3431BD for ; Sat, 26 Feb 2022 17:21:43 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AC1D52F5 for ; Sat, 26 Feb 2022 17:21:41 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1645896098.bdb2ee5655016b28956cb601193ae95eab5e3161.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pyzotero/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pyzotero/pyzotero-1.5.1-r1.ebuild X-VCS-Directories: dev-python/pyzotero/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: bdb2ee5655016b28956cb601193ae95eab5e3161 X-VCS-Branch: master Date: Sat, 26 Feb 2022 17:21:41 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: e2d1de5b-34e5-48bd-8883-dde8d6831b12 X-Archives-Hash: 175323c8eb136689c4c2d27980121ce6 commit: bdb2ee5655016b28956cb601193ae95eab5e3161 Author: Michał Górny gentoo org> AuthorDate: Sat Feb 26 17:20:24 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Sat Feb 26 17:21:38 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bdb2ee56 dev-python/pyzotero: Migrate to PEP517 build Signed-off-by: Michał Górny gentoo.org> dev-python/pyzotero/pyzotero-1.5.1-r1.ebuild | 35 ++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/dev-python/pyzotero/pyzotero-1.5.1-r1.ebuild b/dev-python/pyzotero/pyzotero-1.5.1-r1.ebuild new file mode 100644 index 000000000000..df8d3658adae --- /dev/null +++ b/dev-python/pyzotero/pyzotero-1.5.1-r1.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{8..10} ) + +inherit distutils-r1 + +DESCRIPTION="A Python client for the Zotero API" +HOMEPAGE="https://github.com/urschrei/pyzotero" +SRC_URI="https://github.com/urschrei/pyzotero/archive/v${PV}.tar.gz -> ${P}.gh.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64" + +RDEPEND=" + app-text/zotero-bin + dev-python/bibtexparser[${PYTHON_USEDEP}] + dev-python/feedparser[${PYTHON_USEDEP}] + dev-python/pytz[${PYTHON_USEDEP}] + dev-python/requests[${PYTHON_USEDEP}] +" + +BDEPEND=" + test? ( + dev-python/python-dateutil[${PYTHON_USEDEP}] + dev-python/httpretty[${PYTHON_USEDEP}] + ) +" + +distutils_enable_sphinx doc --no-autodoc +distutils_enable_tests pytest