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 5B8FF15806E for ; Wed, 24 May 2023 03:42:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 53977E07BA; Wed, 24 May 2023 03:42:39 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 3BF95E07BA for ; Wed, 24 May 2023 03:42:39 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4D815340D81 for ; Wed, 24 May 2023 03:42:38 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 882C8A68 for ; Wed, 24 May 2023 03:42:36 +0000 (UTC) From: "Horea Christian" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Horea Christian" Message-ID: <1684899751.52c737693ed71577c89cd5e6bb06abdc11403238.chymera@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: dev-python/dandi-schema/ X-VCS-Repository: proj/sci X-VCS-Files: dev-python/dandi-schema/dandi-schema-0.6.0.ebuild X-VCS-Directories: dev-python/dandi-schema/ X-VCS-Committer: chymera X-VCS-Committer-Name: Horea Christian X-VCS-Revision: 52c737693ed71577c89cd5e6bb06abdc11403238 X-VCS-Branch: master Date: Wed, 24 May 2023 03:42:36 +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: 538d0938-b364-4613-98a1-e890a630affd X-Archives-Hash: 3e3706c840509f04e281bf4ae0f9ffc1 commit: 52c737693ed71577c89cd5e6bb06abdc11403238 Author: Horea Christian chymera eu> AuthorDate: Wed May 24 03:42:31 2023 +0000 Commit: Horea Christian gmail com> CommitDate: Wed May 24 03:42:31 2023 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=52c73769 dev-python/dandi-schema: drop 0.6.0 Signed-off-by: Horea Christian chymera.eu> dev-python/dandi-schema/dandi-schema-0.6.0.ebuild | 42 ----------------------- 1 file changed, 42 deletions(-) diff --git a/dev-python/dandi-schema/dandi-schema-0.6.0.ebuild b/dev-python/dandi-schema/dandi-schema-0.6.0.ebuild deleted file mode 100644 index 6f026c947..000000000 --- a/dev-python/dandi-schema/dandi-schema-0.6.0.ebuild +++ /dev/null @@ -1,42 +0,0 @@ -# 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_{10..11} ) - -inherit distutils-r1 - -DESCRIPTION="Schemata for DANDI archive project" -HOMEPAGE="https://github.com/dandi/dandi-schema" -SRC_URI="https://github.com/dandi/dandi-schema/archive/refs/tags/${PV}.tar.gz -> ${P}.gh.tar.gz" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="~amd64 ~x86" - -RDEPEND=" - dev-python/wheel[${PYTHON_USEDEP}] - dev-python/jsonschema[${PYTHON_USEDEP}] - dev-python/pydantic[${PYTHON_USEDEP}] - dev-python/email-validator[${PYTHON_USEDEP}] - dev-python/requests[${PYTHON_USEDEP}] -" - -PATCHES=( - "${FILESDIR}/${PN}-0.3.4-coverage.patch" -) - -src_configure() { - echo "__version__ = '${PV}'" >> dandischema/_version.py -} - -distutils_enable_tests pytest - -python_test() { - export DANDI_TESTS_NONETWORK=1 - pushd dandischema || die - epytest tests - popd -}