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 8225515803E for ; Sat, 30 Dec 2023 18:35:05 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BFE7A2BC0B4; Sat, 30 Dec 2023 18:35:04 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 9C3B02BC0B4 for ; Sat, 30 Dec 2023 18:35:04 +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 C983933BDC5 for ; Sat, 30 Dec 2023 18:35:03 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6A5D9141 for ; Sat, 30 Dec 2023 18:35:02 +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: <1703961280.bc5ce98943669456b3d3603ae14b2634e1660161.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/semver/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/semver/Manifest dev-python/semver/semver-3.0.1.ebuild X-VCS-Directories: dev-python/semver/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: bc5ce98943669456b3d3603ae14b2634e1660161 X-VCS-Branch: master Date: Sat, 30 Dec 2023 18:35:02 +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: 0f4bcec0-3026-473c-bdfb-fba422dc7d3e X-Archives-Hash: 41e72226f86d1e6775275b3d3d1ef680 commit: bc5ce98943669456b3d3603ae14b2634e1660161 Author: Michał Górny gentoo org> AuthorDate: Sat Dec 30 18:32:30 2023 +0000 Commit: Michał Górny gentoo org> CommitDate: Sat Dec 30 18:34:40 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bc5ce989 dev-python/semver: Remove old Signed-off-by: Michał Górny gentoo.org> dev-python/semver/Manifest | 1 - dev-python/semver/semver-3.0.1.ebuild | 25 ------------------------- 2 files changed, 26 deletions(-) diff --git a/dev-python/semver/Manifest b/dev-python/semver/Manifest index 004f0559e631..2c4d419c1d0e 100644 --- a/dev-python/semver/Manifest +++ b/dev-python/semver/Manifest @@ -1,2 +1 @@ -DIST semver-3.0.1.tar.gz 205762 BLAKE2B f2dbe25d321938bbfe32a21ad23ae62d4033a29c0155b138586e1b9e6d32c0c90e5859dbee0705f0726f616dda10a48b69201f1b7b26cfb4cecdbf3733d7a17d SHA512 93dd23a884eb9d64aca6285840f5fd6d7fe5e21abab37ca77a35118efba1fcca67b424a86db03dc32ae355a8593c184a4b0eb3f807ff35373b84c63dd823eb3d DIST semver-3.0.2.tar.gz 214988 BLAKE2B c436ccc99bab2044472444e48de46f7b584291872db6d311d4a16aad0755f633cbe366bd0be6149431fd2db06011018a6cc5bd527f8627a1fbed8999086d2531 SHA512 f7b848f76ae72a8f0f06800d6c02b11a07149dfdff191e356709b75ac15ad19c010d8f13bc32ea082e15858524b38639838fbc09c2d9eb067eee8e163eb1e497 diff --git a/dev-python/semver/semver-3.0.1.ebuild b/dev-python/semver/semver-3.0.1.ebuild deleted file mode 100644 index 22f6eaf65f78..000000000000 --- a/dev-python/semver/semver-3.0.1.ebuild +++ /dev/null @@ -1,25 +0,0 @@ -# Copyright 2019-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( pypy3 python3_{10..12} ) - -inherit distutils-r1 pypi - -DESCRIPTION="A Python module for semantic versioning" -HOMEPAGE=" - https://github.com/python-semver/python-semver/ - https://pypi.org/project/semver/ -" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~amd64 ~arm64 ~ppc64 ~riscv ~x86" - -distutils_enable_tests pytest - -python_test() { - epytest -o addopts= -}