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 D3E93158041 for ; Fri, 8 Mar 2024 16:36:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 260C6E29D7; Fri, 8 Mar 2024 16:36:35 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 03176E29D7 for ; Fri, 8 Mar 2024 16:36:35 +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 431DA335DEB for ; Fri, 8 Mar 2024 16:36:34 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C1C2DB3D for ; Fri, 8 Mar 2024 16:36:32 +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: <1709915764.8dada7f9fe93d4e46879d6855e3c97f9d8f6dcfe.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: 8dada7f9fe93d4e46879d6855e3c97f9d8f6dcfe X-VCS-Branch: master Date: Fri, 8 Mar 2024 16:36:32 +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: fa2ad8dd-11bb-4bd5-b130-49223fe58a1f X-Archives-Hash: 116c356ea64f9464e338c067e208d0fd commit: 8dada7f9fe93d4e46879d6855e3c97f9d8f6dcfe Author: Andrew Ammerlaan gentoo org> AuthorDate: Fri Mar 8 16:36:04 2024 +0000 Commit: Andrew Ammerlaan gentoo org> CommitDate: Fri Mar 8 16:36:04 2024 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=8dada7f9 dev-python/schema: moved to ::gentoo Signed-off-by: Andrew Ammerlaan gentoo.org> dev-python/schema/metadata.xml | 13 ------------- dev-python/schema/schema-0.7.4.ebuild | 26 -------------------------- 2 files changed, 39 deletions(-) diff --git a/dev-python/schema/metadata.xml b/dev-python/schema/metadata.xml deleted file mode 100644 index 440ea4da1..000000000 --- a/dev-python/schema/metadata.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - 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 deleted file mode 100644 index faa082e58..000000000 --- a/dev-python/schema/schema-0.7.4.ebuild +++ /dev/null @@ -1,26 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_10 pypy3 ) -inherit distutils-r1 pypi - -DESCRIPTION="Schema validation just got Pythonic" -HOMEPAGE="https://pypi.org/project/schema/" - -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 -}