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 3228115800F for ; Thu, 5 Jan 2023 17:38:46 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 61F5EE07D0; Thu, 5 Jan 2023 17:38:45 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 48C13E07D0 for ; Thu, 5 Jan 2023 17:38:45 +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 3D322340BBE for ; Thu, 5 Jan 2023 17:38:44 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9038975E for ; Thu, 5 Jan 2023 17:38:42 +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: <1672940292.12f398dddd5fbada6dae2a98bbb6e1ae74fb0a99.chymera@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: dev-python/looseversion/ X-VCS-Repository: proj/sci X-VCS-Files: dev-python/looseversion/looseversion-1.0.3.ebuild X-VCS-Directories: dev-python/looseversion/ X-VCS-Committer: chymera X-VCS-Committer-Name: Horea Christian X-VCS-Revision: 12f398dddd5fbada6dae2a98bbb6e1ae74fb0a99 X-VCS-Branch: master Date: Thu, 5 Jan 2023 17:38:42 +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: f401543a-34c1-4108-b698-cba49d9bd998 X-Archives-Hash: 9b558292d1f58bd95a50048bc72cff73 commit: 12f398dddd5fbada6dae2a98bbb6e1ae74fb0a99 Author: Horea Christian chymera eu> AuthorDate: Thu Jan 5 17:38:12 2023 +0000 Commit: Horea Christian gmail com> CommitDate: Thu Jan 5 17:38:12 2023 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=12f398dd dev-python/looseversion: add 1.0.3 Signed-off-by: Horea Christian chymera.eu> dev-python/looseversion/looseversion-1.0.3.ebuild | 31 +++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/dev-python/looseversion/looseversion-1.0.3.ebuild b/dev-python/looseversion/looseversion-1.0.3.ebuild new file mode 100644 index 000000000..5eef4e8c9 --- /dev/null +++ b/dev-python/looseversion/looseversion-1.0.3.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=flit +PYTHON_COMPAT=( python3_{8..11} ) +inherit distutils-r1 + +DESCRIPTION="A backwards/forwards-compatible fork of distutils' LooseVersion" +HOMEPAGE="https://github.com/effigies/looseversion" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="PSF-2" +SLOT="0" +KEYWORDS="~amd64" +IUSE="" + +RDEPEND="" +BEPEND="" + +#EPYTEST_DESELECT=( +# # Reported upstream: https://github.com/datalad/datalad/issues/6870 +# datalad/local/tests/test_gitcredential.py::test_datalad_credential_helper +#) + +distutils_enable_tests pytest + +python_test() { + epytest tests.py +}