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 9FBD915806E for ; Fri, 26 May 2023 17:44:29 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F2CDFE08D0; Fri, 26 May 2023 17:44:24 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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 CE11CE08C8 for ; Fri, 26 May 2023 17:44:24 +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 CE18334104A for ; Fri, 26 May 2023 17:44:23 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 35ACEA87 for ; Fri, 26 May 2023 17:44:20 +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: <1685122406.34384aa0f44f6b4162c565d032efd0520376d43a.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/looseversion/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/looseversion/Manifest dev-python/looseversion/looseversion-1.2.0.ebuild X-VCS-Directories: dev-python/looseversion/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 34384aa0f44f6b4162c565d032efd0520376d43a X-VCS-Branch: master Date: Fri, 26 May 2023 17:44:20 +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: e834d056-507c-4db2-996c-608f953bb520 X-Archives-Hash: 7648548ddfb4463da9960a3ed20d7556 commit: 34384aa0f44f6b4162c565d032efd0520376d43a Author: Michał Górny gentoo org> AuthorDate: Fri May 26 17:33:26 2023 +0000 Commit: Michał Górny gentoo org> CommitDate: Fri May 26 17:33:26 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=34384aa0 dev-python/looseversion: Bump to 1.2.0 Signed-off-by: Michał Górny gentoo.org> dev-python/looseversion/Manifest | 1 + dev-python/looseversion/looseversion-1.2.0.ebuild | 25 +++++++++++++++++++++++ 2 files changed, 26 insertions(+) diff --git a/dev-python/looseversion/Manifest b/dev-python/looseversion/Manifest index 7fb61862231d..b3070ec0b8e0 100644 --- a/dev-python/looseversion/Manifest +++ b/dev-python/looseversion/Manifest @@ -1 +1,2 @@ DIST looseversion-1.1.2.tar.gz 8393 BLAKE2B 4ed8bdf5b7a1e249a9a889d60e5604ff5027e924a10a686b7def882eccb40450564721ceee7adc3860c6bd85188c5fb619ad461fa9fd4f31c8ca09e1d49331b9 SHA512 476cc7b57a9eebdc1c58506f4c394db9a338b4b9689fdfa171aa736fabe62282438d50923a834db104603f09eea44197623e89adcda3121fa522a3fa40585a25 +DIST looseversion-1.2.0.tar.gz 8614 BLAKE2B 3a4736fc8ab7a8521d3ee9d461f263253f1e7ec13002bd72a3a785aa0d1e60910bc0756ff05c24b89dca3052a142c38d4ac950dd32904c6849990078bbce414c SHA512 f0c991af7f972d9b50fabceceba47477d2b4eec937267c0100e73d55559a3d8d304fd873f1e7050dfdba2dd8c0c92db83d3ef440cf7842cda902dd87bc6a5adb diff --git a/dev-python/looseversion/looseversion-1.2.0.ebuild b/dev-python/looseversion/looseversion-1.2.0.ebuild new file mode 100644 index 000000000000..5c9fd3fcb651 --- /dev/null +++ b/dev-python/looseversion/looseversion-1.2.0.ebuild @@ -0,0 +1,25 @@ +# Copyright 2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=hatchling +PYTHON_COMPAT=( pypy3 python3_{10..11} ) + +inherit pypi distutils-r1 + +DESCRIPTION="A backwards/forwards-compatible fork of distutils.version.LooseVersion" +HOMEPAGE=" + https://pypi.org/project/looseversion/ + https://github.com/effigies/looseversion +" + +LICENSE="PSF-2" +SLOT="0" +KEYWORDS="~amd64 ~riscv ~x86" + +distutils_enable_tests pytest + +python_test() { + epytest tests.py +}