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 74F7213933E for ; Thu, 8 Jul 2021 06:55:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2F133E0F7D; Thu, 8 Jul 2021 06:55:39 +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 157A3E0F7D for ; Thu, 8 Jul 2021 06:55:38 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 AEDDC342A52 for ; Thu, 8 Jul 2021 06:55:37 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 080FA7CA for ; Thu, 8 Jul 2021 06:55:36 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1625727321.5d33d935155223800a2429e4d01ca25917dc1d51.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/coreschema/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/coreschema/Manifest dev-python/coreschema/coreschema-0.0.4.ebuild X-VCS-Directories: dev-python/coreschema/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 5d33d935155223800a2429e4d01ca25917dc1d51 X-VCS-Branch: master Date: Thu, 8 Jul 2021 06:55: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: a81d58b7-ed5d-476f-bcf0-ab1cea9779b3 X-Archives-Hash: fab01135405c53716828e9ffca23c7b8 commit: 5d33d935155223800a2429e4d01ca25917dc1d51 Author: Michał Górny gentoo org> AuthorDate: Thu Jul 8 06:29:29 2021 +0000 Commit: Michał Górny gentoo org> CommitDate: Thu Jul 8 06:55:21 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5d33d935 dev-python/coreschema: Port to py3.10, enable tests Signed-off-by: Michał Górny gentoo.org> dev-python/coreschema/Manifest | 2 +- dev-python/coreschema/coreschema-0.0.4.ebuild | 15 +++++++++------ 2 files changed, 10 insertions(+), 7 deletions(-) diff --git a/dev-python/coreschema/Manifest b/dev-python/coreschema/Manifest index 49890493f06..dde371908d5 100644 --- a/dev-python/coreschema/Manifest +++ b/dev-python/coreschema/Manifest @@ -1 +1 @@ -DIST coreschema-0.0.4.tar.gz 10974 BLAKE2B 8bddafea9eb82140cdf2b2cd40ffc31dd4a0457f8ca216986807657a5021f7a4319f1e3db27caf7d471f8617f6f0c3a6d79ebfe7e0285bc9a6627f93d6efa760 SHA512 21a35b29cd0bb96dacaeeb0bd0faaaa4ee8875bf9639b431b59f17c41ee4829173932a6b35760caa3b46a0ec39ca173fe896b26b740fe97df36943270bc2bd3d +DIST python-coreschema-0.0.4.tar.gz 21905 BLAKE2B 1afe09038761809fa0e12d13fb89884760d4aff325a4bbdac104c03648856f8d50b562fc00a8509fcc75f962918f33d89017fae0a6d0335def4d6b77ee9aacd9 SHA512 28badbae07284fb4dbd3f01f613edda1202902115fb166bd95bbac549d398c9e02548b473524d3b530a42319a99d7e55e92bf54269827a9812249cfb285670c3 diff --git a/dev-python/coreschema/coreschema-0.0.4.ebuild b/dev-python/coreschema/coreschema-0.0.4.ebuild index c9e4efbc99e..9dd5057cd50 100644 --- a/dev-python/coreschema/coreschema-0.0.4.ebuild +++ b/dev-python/coreschema/coreschema-0.0.4.ebuild @@ -1,20 +1,23 @@ # Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 - -PYTHON_COMPAT=( python3_{7..9} ) +EAPI=8 +PYTHON_COMPAT=( python3_{8..10} ) inherit distutils-r1 +MY_P=python-${P} DESCRIPTION="Core Schema" HOMEPAGE="https://github.com/core-api/python-coreschema" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" +SRC_URI=" + https://github.com/core-api/python-coreschema/archive/${PV}.tar.gz + -> ${MY_P}.tar.gz" +S=${WORKDIR}/${MY_P} LICENSE="BSD" SLOT="0" KEYWORDS="~amd64" RDEPEND="dev-python/jinja[${PYTHON_USEDEP}]" -DEPEND="${RDEPEND} - dev-python/setuptools[${PYTHON_USEDEP}]" + +distutils_enable_tests pytest