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) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 42A2915803E for ; Wed, 3 Jan 2024 14:02:11 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8CE1F2BC016; Wed, 3 Jan 2024 14:02:10 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 76D6B2BC016 for ; Wed, 3 Jan 2024 14:02:10 +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 8E31433EB78 for ; Wed, 3 Jan 2024 14:02:09 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D710999E for ; Wed, 3 Jan 2024 14:02:07 +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: <1704290525.a6f3a09d2d960d8b53d28d89c54d2d0f6bbea688.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pyrqlite/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pyrqlite/pyrqlite-2.2.0-r1.ebuild dev-python/pyrqlite/pyrqlite-2.2.0.ebuild X-VCS-Directories: dev-python/pyrqlite/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: a6f3a09d2d960d8b53d28d89c54d2d0f6bbea688 X-VCS-Branch: master Date: Wed, 3 Jan 2024 14:02:07 +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: 1d861da3-ce1b-487a-bdf2-ad53f9070371 X-Archives-Hash: d4e8cc5de8ebebf5fe705883513c21c9 commit: a6f3a09d2d960d8b53d28d89c54d2d0f6bbea688 Author: Michał Górny gentoo org> AuthorDate: Wed Jan 3 14:01:30 2024 +0000 Commit: Michał Górny gentoo org> CommitDate: Wed Jan 3 14:02:05 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a6f3a09d dev-python/pyrqlite: Fix installed package version Signed-off-by: Michał Górny gentoo.org> .../{pyrqlite-2.2.0.ebuild => pyrqlite-2.2.0-r1.ebuild} | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/dev-python/pyrqlite/pyrqlite-2.2.0.ebuild b/dev-python/pyrqlite/pyrqlite-2.2.0-r1.ebuild similarity index 76% rename from dev-python/pyrqlite/pyrqlite-2.2.0.ebuild rename to dev-python/pyrqlite/pyrqlite-2.2.0-r1.ebuild index 1c6bee30c4d1..b2a5744deda4 100644 --- a/dev-python/pyrqlite/pyrqlite-2.2.0.ebuild +++ b/dev-python/pyrqlite/pyrqlite-2.2.0-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -28,3 +28,12 @@ BDEPEND=" " distutils_enable_tests pytest + +src_prepare() { + # siiigh + cat >> setup.cfg <<-EOF + [metadata] + version = ${PV} + EOF + distutils-r1_src_prepare +}