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 B4A9C158090 for ; Sat, 21 May 2022 07:02:24 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EEF6CE088C; Sat, 21 May 2022 07:02:23 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 D97AEE088C for ; Sat, 21 May 2022 07:02:23 +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 121AD341420 for ; Sat, 21 May 2022 07:02:23 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 33AA247B for ; Sat, 21 May 2022 07:02: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: <1653116353.922c21deba467adacd5bbfcaa05f7e6e6d4ad4c3.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pydiffx/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pydiffx/pydiffx-1.0.1-r1.ebuild dev-python/pydiffx/pydiffx-1.0.1.ebuild X-VCS-Directories: dev-python/pydiffx/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 922c21deba467adacd5bbfcaa05f7e6e6d4ad4c3 X-VCS-Branch: master Date: Sat, 21 May 2022 07:02: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: 24726b6c-80fd-4dbe-9478-051992465542 X-Archives-Hash: e5cfd84428291b6056ca5d3d29e31a06 commit: 922c21deba467adacd5bbfcaa05f7e6e6d4ad4c3 Author: Michał Górny gentoo org> AuthorDate: Sat May 21 06:59:13 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Sat May 21 06:59:13 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=922c21de dev-python/pydiffx: Remove .dev tag from version Signed-off-by: Michał Górny gentoo.org> .../pydiffx/{pydiffx-1.0.1.ebuild => pydiffx-1.0.1-r1.ebuild} | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/dev-python/pydiffx/pydiffx-1.0.1.ebuild b/dev-python/pydiffx/pydiffx-1.0.1-r1.ebuild similarity index 85% rename from dev-python/pydiffx/pydiffx-1.0.1.ebuild rename to dev-python/pydiffx/pydiffx-1.0.1-r1.ebuild index baa4b006060e..d20ee3c8b60d 100644 --- a/dev-python/pydiffx/pydiffx-1.0.1.ebuild +++ b/dev-python/pydiffx/pydiffx-1.0.1-r1.ebuild @@ -35,3 +35,9 @@ BDEPEND=" " distutils_enable_tests unittest + +src_prepare() { + # remove .dev tag that breaks revdeps + sed -i -e '/tag_build/d' setup.cfg || die + distutils-r1_src_prepare +}