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 BC52515803E for ; Sat, 6 Jan 2024 06:45:18 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 086512BC014; Sat, 6 Jan 2024 06:45:18 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 E572B2BC014 for ; Sat, 6 Jan 2024 06:45:17 +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 328BB343099 for ; Sat, 6 Jan 2024 06:45:17 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id ADB4E1300 for ; Sat, 6 Jan 2024 06:45:15 +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: <1704522764.57e01b9d014a393d2e64898a97f6a13f245fa8cb.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/referencing/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/referencing/Manifest dev-python/referencing/referencing-0.32.1.ebuild X-VCS-Directories: dev-python/referencing/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 57e01b9d014a393d2e64898a97f6a13f245fa8cb X-VCS-Branch: master Date: Sat, 6 Jan 2024 06:45:15 +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: 281f998c-1b37-46d4-b62f-88ece118aea9 X-Archives-Hash: 9604bbc6428d7a8fe7f760ec32cb2209 commit: 57e01b9d014a393d2e64898a97f6a13f245fa8cb Author: Michał Górny gentoo org> AuthorDate: Sat Jan 6 06:32:44 2024 +0000 Commit: Michał Górny gentoo org> CommitDate: Sat Jan 6 06:32:44 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=57e01b9d dev-python/referencing: Bump to 0.32.1 Signed-off-by: Michał Górny gentoo.org> dev-python/referencing/Manifest | 1 + dev-python/referencing/referencing-0.32.1.ebuild | 33 ++++++++++++++++++++++++ 2 files changed, 34 insertions(+) diff --git a/dev-python/referencing/Manifest b/dev-python/referencing/Manifest index f8fc0e2b6ed9..95af14ab7d8b 100644 --- a/dev-python/referencing/Manifest +++ b/dev-python/referencing/Manifest @@ -1 +1,2 @@ DIST referencing-0.32.0.tar.gz 54826 BLAKE2B ff098c83b5fa7e3bf58a5ed4e4a89983bb59b241bc2bf6dc4d7e303e570ea035e59caefa9fcca2d255764148a95511e2f9fb953beb3d2f1939bfb5d20becd2a3 SHA512 5df7693e6f0f4c9b572a0bb8d78938fb831396d0b25a59fc61d196bd92d61346c6e443babbf986470c95d7663d8f7678a5a92850a29f750769e5afb412d9fa54 +DIST referencing-0.32.1.tar.gz 55523 BLAKE2B 7312158a6bfeef64d4f2ff8f7332d3153b2e03954a48f42c904ae68d652b819df579b8188dc9a62aa024a658d300b59166f866ff351a20565b4b01c1d259e95d SHA512 a1171758b76d249f1d57f47ffc9c06882fff17ae3f04b91dfc5d14e0e15157827129b2328e143b6699b7890ad23d47aeed4a6d8e44dc116c368b8de624df7074 diff --git a/dev-python/referencing/referencing-0.32.1.ebuild b/dev-python/referencing/referencing-0.32.1.ebuild new file mode 100644 index 000000000000..9bb63870e54d --- /dev/null +++ b/dev-python/referencing/referencing-0.32.1.ebuild @@ -0,0 +1,33 @@ +# Copyright 2023-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=hatchling +PYTHON_COMPAT=( pypy3 python3_{10..12} ) + +inherit distutils-r1 pypi + +DESCRIPTION="Cross-specification JSON referencing (JSON Schema, OpenAPI...)" +HOMEPAGE=" + https://github.com/python-jsonschema/referencing/ + https://pypi.org/project/referencing/ +" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" + +RDEPEND=" + >=dev-python/attrs-22.2.0[${PYTHON_USEDEP}] + >=dev-python/rpds-py-0.7.0[${PYTHON_USEDEP}] +" +BDEPEND=" + dev-python/hatch-vcs[${PYTHON_USEDEP}] + test? ( + dev-python/jsonschema[${PYTHON_USEDEP}] + dev-python/pytest-subtests[${PYTHON_USEDEP}] + ) +" + +distutils_enable_tests pytest