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 6F2B415800F for ; Wed, 18 Jan 2023 07:34:09 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 85DC2E0828; Wed, 18 Jan 2023 07:34:07 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 640B0E0828 for ; Wed, 18 Jan 2023 07:34:07 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 8625D33BDF4 for ; Wed, 18 Jan 2023 07:34:06 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 67ADD882 for ; Wed, 18 Jan 2023 07:34:02 +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: <1674027232.ebebeee1771d65f7fee1b51c36abcac107c26884.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/python-redmine/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/python-redmine/Manifest dev-python/python-redmine/python-redmine-2.4.0.ebuild X-VCS-Directories: dev-python/python-redmine/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: ebebeee1771d65f7fee1b51c36abcac107c26884 X-VCS-Branch: master Date: Wed, 18 Jan 2023 07:34:02 +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: 97f1ece9-fb78-47e9-88de-51015752a063 X-Archives-Hash: 5da9509e56ff0c1ab0e3717007df50c6 commit: ebebeee1771d65f7fee1b51c36abcac107c26884 Author: Michał Górny gentoo org> AuthorDate: Wed Jan 18 07:21:47 2023 +0000 Commit: Michał Górny gentoo org> CommitDate: Wed Jan 18 07:33:52 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ebebeee1 dev-python/python-redmine: Bump to 2.4.0 Closes: https://bugs.gentoo.org/888263 Signed-off-by: Michał Górny gentoo.org> dev-python/python-redmine/Manifest | 1 + .../python-redmine/python-redmine-2.4.0.ebuild | 30 ++++++++++++++++++++++ 2 files changed, 31 insertions(+) diff --git a/dev-python/python-redmine/Manifest b/dev-python/python-redmine/Manifest index 990b7f65b7c7..23809691ce5e 100644 --- a/dev-python/python-redmine/Manifest +++ b/dev-python/python-redmine/Manifest @@ -1 +1,2 @@ DIST python-redmine-2.3.0.tar.gz 67915 BLAKE2B ad31d63ec5bebd33ff436f04c40fd49e35a79751c353ba1e343bbb03048c2d1662ec8ffea5819561b675e366f8cbad48a0e0a0a59dcaa563a90301ad4f1eb1cf SHA512 a317743a561cde65c17356a317d3aed082149d648aaa7487858c8533ceb286d08b6610d742321f6593fef8b61b1a4526963ddffc4ab180a83795d66773154b70 +DIST python-redmine-2.4.0.tar.gz 67730 BLAKE2B 22c74ad194af9b56affab39de38b13a8f5a46e79b8ea8d9f9f47eb12c4ad4c91156db9ef0e8dfd013602b8cc06e0636a724ae34969f385dc9f8ffc63514ccc63 SHA512 afb03ca8a3bdacace3c12b7295ba08953ab2040971b57988deb9955df24e5ac1782a9b3fbf0f5070eb22c640e88f489cda12cdec38449f9e3bcf7189dc422642 diff --git a/dev-python/python-redmine/python-redmine-2.4.0.ebuild b/dev-python/python-redmine/python-redmine-2.4.0.ebuild new file mode 100644 index 000000000000..b2161c074c88 --- /dev/null +++ b/dev-python/python-redmine/python-redmine-2.4.0.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{9..11} ) + +inherit distutils-r1 + +DESCRIPTION="Python interface to the Redmine REST API" +HOMEPAGE=" + https://github.com/maxtepkeev/python-redmine/ + https://pypi.org/project/python-redmine/ +" +SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND=" + >=dev-python/requests-2.28.2[${PYTHON_USEDEP}] +" + +distutils_enable_tests pytest + +python_test() { + epytest -o addopts= +}