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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id C62B4139064 for ; Fri, 25 Jun 2021 02:05:02 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D1C9AE08A2; Fri, 25 Jun 2021 02:05:01 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 4A301E08A2 for ; Fri, 25 Jun 2021 02:05:00 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 06021342A21 for ; Fri, 25 Jun 2021 02:04:59 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 52F6F7A1 for ; Fri, 25 Jun 2021 02:04:57 +0000 (UTC) From: "Brian Dolbec" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Brian Dolbec" Message-ID: <1624586686.9d7f4d192aefd74749b34e8c9cf04a29a55d2e9a.dolsen@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/buildbot-pkg/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/buildbot-pkg/buildbot-pkg-3.2.0.ebuild X-VCS-Directories: dev-util/buildbot-pkg/ X-VCS-Committer: dolsen X-VCS-Committer-Name: Brian Dolbec X-VCS-Revision: 9d7f4d192aefd74749b34e8c9cf04a29a55d2e9a X-VCS-Branch: master Date: Fri, 25 Jun 2021 02:04:57 +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: ab636327-187a-4cd7-8040-73da4e8ec5a1 X-Archives-Hash: 3cdf9e561a0e7c37d1e86fdb542f9528 commit: 9d7f4d192aefd74749b34e8c9cf04a29a55d2e9a Author: Brian Dolbec gentoo org> AuthorDate: Fri Jun 25 02:02:26 2021 +0000 Commit: Brian Dolbec gentoo org> CommitDate: Fri Jun 25 02:04:46 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9d7f4d19 dev-util/buildbot-pkg: Fix setuptools warning Export BUILDBOT_VERSION in src_install to avoid the setuptools bitch about the backup date version. Closes: https://bugs.gentoo.org/796980 Package-Manager: Portage-3.0.18, Repoman-3.0.3 Signed-off-by: Brian Dolbec gentoo.org> dev-util/buildbot-pkg/buildbot-pkg-3.2.0.ebuild | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/dev-util/buildbot-pkg/buildbot-pkg-3.2.0.ebuild b/dev-util/buildbot-pkg/buildbot-pkg-3.2.0.ebuild index 03b7f005df6..ce173c78757 100644 --- a/dev-util/buildbot-pkg/buildbot-pkg-3.2.0.ebuild +++ b/dev-util/buildbot-pkg/buildbot-pkg-3.2.0.ebuild @@ -25,3 +25,8 @@ KEYWORDS="~amd64 ~arm64 ~amd64-linux ~x86-linux" # all tests are related to making releases and final checks for distribution S=${WORKDIR}/${MY_P} + +src_install() { + export BUILDBOT_VERSION="${MY_PV}" + distutils-r1_src_install +}