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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 0D41B139368 for ; Sat, 7 Aug 2021 09:00:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 479F2E0924; Sat, 7 Aug 2021 09:00:27 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 2DA2EE0924 for ; Sat, 7 Aug 2021 09:00:27 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D8CBC342A9C for ; Sat, 7 Aug 2021 09:00:25 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6B55F851 for ; Sat, 7 Aug 2021 09:00:24 +0000 (UTC) From: "Andrew Ammerlaan" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andrew Ammerlaan" Message-ID: <1628321481.4ecc14e3f25eea035d0342c9a7ef149f78db656e.andrewammerlaan@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: dev-python/typish/ X-VCS-Repository: proj/sci X-VCS-Files: dev-python/typish/metadata.xml dev-python/typish/typish-1.9.3.ebuild X-VCS-Directories: dev-python/typish/ X-VCS-Committer: andrewammerlaan X-VCS-Committer-Name: Andrew Ammerlaan X-VCS-Revision: 4ecc14e3f25eea035d0342c9a7ef149f78db656e X-VCS-Branch: master Date: Sat, 7 Aug 2021 09:00:24 +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: e59473cd-8d80-4f19-ac01-62e9be1e7a22 X-Archives-Hash: a9a47daf7f57385174321a590d39f1e6 commit: 4ecc14e3f25eea035d0342c9a7ef149f78db656e Author: leycec gmail com> AuthorDate: Sat Aug 7 05:22:56 2021 +0000 Commit: Andrew Ammerlaan gentoo org> CommitDate: Sat Aug 7 07:31:21 2021 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=4ecc14e3 dev-python/typish: add add typish, a mandatory dependency of nptyping, itself a mandatory dependency of CadQuery Signed-off-by: Cecil Curry gmail.com> Signed-off-by: Andrew Ammerlaan gentoo.org> dev-python/typish/metadata.xml | 13 +++++++++++++ dev-python/typish/typish-1.9.3.ebuild | 21 +++++++++++++++++++++ 2 files changed, 34 insertions(+) diff --git a/dev-python/typish/metadata.xml b/dev-python/typish/metadata.xml new file mode 100644 index 000000000..4febcc126 --- /dev/null +++ b/dev-python/typish/metadata.xml @@ -0,0 +1,13 @@ + + + + + sci@gentoo.org + Gentoo Science Project + + + + typish + ramonhagenaars/typish + + diff --git a/dev-python/typish/typish-1.9.3.ebuild b/dev-python/typish/typish-1.9.3.ebuild new file mode 100644 index 000000000..f471f6836 --- /dev/null +++ b/dev-python/typish/typish-1.9.3.ebuild @@ -0,0 +1,21 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{8..10} pypy3 ) + +inherit distutils-r1 + +DESCRIPTION="Python functions for thorough checks on types" +HOMEPAGE="https://pypi.org/project/typish" + +# Prefer GitHub. Upstream failed to push its source tarball to PyPI. +SRC_URI="https://github.com/ramonhagenaars/typish/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +#FIXME: Tests require "nptyping" which circularly requires... "typish". *sigh* +RESTRICT="test"