diff options
author | Brian Dolbec <dolsen@gentoo.org> | 2021-06-24 22:02:26 -0400 |
---|---|---|
committer | Brian Dolbec <dolsen@gentoo.org> | 2021-06-24 22:04:46 -0400 |
commit | 9d7f4d192aefd74749b34e8c9cf04a29a55d2e9a (patch) | |
tree | 6a20b4f7c865f4c93dc305e74e1d584c3558bea6 /dev-util/buildbot-pkg | |
parent | profiles: remove mask/force related to netkit-rsh masking (diff) | |
download | gentoo-9d7f4d192aefd74749b34e8c9cf04a29a55d2e9a.tar.gz gentoo-9d7f4d192aefd74749b34e8c9cf04a29a55d2e9a.tar.bz2 gentoo-9d7f4d192aefd74749b34e8c9cf04a29a55d2e9a.zip |
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 <dolsen@gentoo.org>
Diffstat (limited to 'dev-util/buildbot-pkg')
-rw-r--r-- | dev-util/buildbot-pkg/buildbot-pkg-3.2.0.ebuild | 5 |
1 files changed, 5 insertions, 0 deletions
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 03b7f005df6e..ce173c787577 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 +} |