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 CEFEF158094 for ; Fri, 24 Jun 2022 11:40:41 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C0E7EE08D3; Fri, 24 Jun 2022 11:40:40 +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 A2284E08D3 for ; Fri, 24 Jun 2022 11:40:40 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 809E8341A08 for ; Fri, 24 Jun 2022 11:40:39 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EDFBA510 for ; Fri, 24 Jun 2022 11:40:37 +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: <1656070750.4b07d25596b1c43c7fa7a52bc02a2e8630c3ee62.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/sphinxcontrib-websupport/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/sphinxcontrib-websupport/sphinxcontrib-websupport-1.2.4-r1.ebuild dev-python/sphinxcontrib-websupport/sphinxcontrib-websupport-1.2.4-r2.ebuild X-VCS-Directories: dev-python/sphinxcontrib-websupport/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 4b07d25596b1c43c7fa7a52bc02a2e8630c3ee62 X-VCS-Branch: master Date: Fri, 24 Jun 2022 11:40:37 +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: 366ef302-f597-4c6e-80f9-83e2ce05baa9 X-Archives-Hash: 2e6c03a1a90912a741870f7127779a8e commit: 4b07d25596b1c43c7fa7a52bc02a2e8630c3ee62 Author: Michał Górny gentoo org> AuthorDate: Fri Jun 24 11:37:47 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Fri Jun 24 11:39:10 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4b07d255 dev-python/sphinxcontrib-websupport: Strip .dev tag from version Signed-off-by: Michał Górny gentoo.org> ...support-1.2.4-r1.ebuild => sphinxcontrib-websupport-1.2.4-r2.ebuild} | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dev-python/sphinxcontrib-websupport/sphinxcontrib-websupport-1.2.4-r1.ebuild b/dev-python/sphinxcontrib-websupport/sphinxcontrib-websupport-1.2.4-r2.ebuild similarity index 94% rename from dev-python/sphinxcontrib-websupport/sphinxcontrib-websupport-1.2.4-r1.ebuild rename to dev-python/sphinxcontrib-websupport/sphinxcontrib-websupport-1.2.4-r2.ebuild index 81c38872592d..5de0c967feaa 100644 --- a/dev-python/sphinxcontrib-websupport/sphinxcontrib-websupport-1.2.4-r1.ebuild +++ b/dev-python/sphinxcontrib-websupport/sphinxcontrib-websupport-1.2.4-r2.ebuild @@ -45,6 +45,8 @@ src_prepare() { # breaks tests sed -i -e '/pkg_resources/d' \ sphinxcontrib/websupport/__init__.py || die + # strip the .dev tag from version number + sed -i -e '/tag/d' setup.cfg || die distutils-r1_src_prepare }