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 03EFB158091 for ; Wed, 8 Jun 2022 05:14:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 43C9CE08C4; Wed, 8 Jun 2022 05:14:49 +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 41253E08C4 for ; Wed, 8 Jun 2022 05:14:48 +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 55DD8340FB2 for ; Wed, 8 Jun 2022 05:14:47 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4B2FE501 for ; Wed, 8 Jun 2022 05:14:14 +0000 (UTC) From: "Theo Anderson" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Theo Anderson" Message-ID: <1654665224.40d1052562c920f5523cfc1848dcad29d1ff8745.telans@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-python/typing_inspect/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-python/typing_inspect/Manifest dev-python/typing_inspect/metadata.xml dev-python/typing_inspect/typing_inspect-0.7.1.ebuild X-VCS-Directories: dev-python/typing_inspect/ X-VCS-Committer: telans X-VCS-Committer-Name: Theo Anderson X-VCS-Revision: 40d1052562c920f5523cfc1848dcad29d1ff8745 X-VCS-Branch: dev Date: Wed, 8 Jun 2022 05:14:14 +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: 5a462b7e-6dd1-4925-aa55-ccae8fbcc897 X-Archives-Hash: 346f7a982ed14a81cdc9b62ec5dcf25b commit: 40d1052562c920f5523cfc1848dcad29d1ff8745 Author: James Beddek posteo de> AuthorDate: Wed Jun 8 05:06:12 2022 +0000 Commit: Theo Anderson posteo de> CommitDate: Wed Jun 8 05:13:44 2022 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=40d10525 dev-python/typing_inspect: new package, add 0.7.1 Signed-off-by: James Beddek posteo.de> dev-python/typing_inspect/Manifest | 1 + dev-python/typing_inspect/metadata.xml | 8 ++++++ .../typing_inspect/typing_inspect-0.7.1.ebuild | 32 ++++++++++++++++++++++ 3 files changed, 41 insertions(+) diff --git a/dev-python/typing_inspect/Manifest b/dev-python/typing_inspect/Manifest new file mode 100644 index 000000000..16d56d11b --- /dev/null +++ b/dev-python/typing_inspect/Manifest @@ -0,0 +1 @@ +DIST typing_inspect-0.7.1.tar.gz 11799 BLAKE2B a0f0fde9fe1b85897c8cac660a1fb9de2b9bc3b83c619ddb0642749cacb105bfc7d2f0e25a1da0e9c95a3cdd60e39eecd3be4aef32d0f47c53f107d681f43a39 SHA512 16aa279e5bcdcaa4ad28b68a5c5cedcefee32ec78f57c75b4285888ab6d634e3306eedc63445839cc57923ae956e9b2234cb2afcf71216b3f6ff6839cd48fc58 diff --git a/dev-python/typing_inspect/metadata.xml b/dev-python/typing_inspect/metadata.xml new file mode 100644 index 000000000..2924f0387 --- /dev/null +++ b/dev-python/typing_inspect/metadata.xml @@ -0,0 +1,8 @@ + + + + + telans@posteo.de + James Beddek + + diff --git a/dev-python/typing_inspect/typing_inspect-0.7.1.ebuild b/dev-python/typing_inspect/typing_inspect-0.7.1.ebuild new file mode 100644 index 000000000..eb18d4875 --- /dev/null +++ b/dev-python/typing_inspect/typing_inspect-0.7.1.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{8..10} ) # python3_11 depends on dev-python/mypy_extensions + +inherit distutils-r1 + +DESCRIPTION="Runtime inspection utilities for Python typing module" +HOMEPAGE="https://github.com/ilevkivskyi/typing_inspect" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64" +IUSE="test" +RESTRICT="!test? ( test )" + +RDEPEND=" + >=dev-python/mypy_extensions-0.3.0[${PYTHON_USEDEP}] + >=dev-python/typing-extensions-3.7.4.2[${PYTHON_USEDEP}] +" +DEPEND="${RDEPEND}" + +distutils_enable_tests pytest + +python_test() { + # https://github.com/ilevkivskyi/typing_inspect/issues/84 + local EPYTEST_DESELECT=( 'test_typing_inspect.py::GetUtilityTestCase::test_typed_dict_typing_extension' ) + epytest +}