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 6C69113933E for ; Sun, 18 Jul 2021 08:35:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 84C26E0CCF; Sun, 18 Jul 2021 08:35:36 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 6D542E0CCF for ; Sun, 18 Jul 2021 08:35:36 +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 79FA933E5E4 for ; Sun, 18 Jul 2021 08:35:35 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0FB427D7 for ; Sun, 18 Jul 2021 08:35:34 +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: <1626597280.cfc168951fee6da3b27c2ea9e15ad4a541774df0.andrewammerlaan@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: dev-python/schema/ X-VCS-Repository: proj/sci X-VCS-Files: dev-python/schema/metadata.xml dev-python/schema/schema-0.7.4.ebuild X-VCS-Directories: dev-python/schema/ X-VCS-Committer: andrewammerlaan X-VCS-Committer-Name: Andrew Ammerlaan X-VCS-Revision: cfc168951fee6da3b27c2ea9e15ad4a541774df0 X-VCS-Branch: master Date: Sun, 18 Jul 2021 08:35:34 +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: 524a07ce-829d-41b8-afca-36b79c6f910b X-Archives-Hash: c582dba9a358563b36f9fb6269fa0a29 commit: cfc168951fee6da3b27c2ea9e15ad4a541774df0 Author: leycec gmail com> AuthorDate: Fri Jul 16 07:11:21 2021 +0000 Commit: Andrew Ammerlaan gentoo org> CommitDate: Sun Jul 18 08:34:40 2021 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=cfc16895 dev-python/schema: add add schema, a mandatory dependency of CadQuery pywrap Signed-off-by: Cecil Curry gmail.com> Closes: https://github.com/gentoo/sci/pull/1098 Signed-off-by: Andrew Ammerlaan gentoo.org> dev-python/schema/metadata.xml | 13 +++++++++++++ dev-python/schema/schema-0.7.4.ebuild | 28 ++++++++++++++++++++++++++++ 2 files changed, 41 insertions(+) diff --git a/dev-python/schema/metadata.xml b/dev-python/schema/metadata.xml new file mode 100644 index 000000000..440ea4da1 --- /dev/null +++ b/dev-python/schema/metadata.xml @@ -0,0 +1,13 @@ + + + + + sci@gentoo.org + Gentoo Science Project + + + + schema + keleshev/schema + + diff --git a/dev-python/schema/schema-0.7.4.ebuild b/dev-python/schema/schema-0.7.4.ebuild new file mode 100644 index 000000000..05e8712bb --- /dev/null +++ b/dev-python/schema/schema-0.7.4.ebuild @@ -0,0 +1,28 @@ +# 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="Schema validation just got Pythonic" +HOMEPAGE="https://pypi.org/project/schema" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +BDEPEND="test? ( dev-python/mock[${PYTHON_USEDEP}] )" + +distutils_enable_tests pytest + +src_prepare() { + distutils-r1_src_prepare + + # Prevent schema from unconditionally requiring the last-rited contextlib2, + # which schema actually conditionally requires only under EOL Python 2.x. + sed -i -e '/\binstall_requires=/d' setup.py || die +}