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 0F18F138334 for ; Mon, 1 Oct 2018 08:02:05 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CD26DE0934; Mon, 1 Oct 2018 08:02:02 +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 A68B8E0934 for ; Mon, 1 Oct 2018 08:02:02 +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 A0E75335D63 for ; Mon, 1 Oct 2018 08:02:00 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 21F7E42C for ; Mon, 1 Oct 2018 08:01:59 +0000 (UTC) From: "Georgy Yakovlev" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Georgy Yakovlev" Message-ID: <1538380910.7d85d0b5f6274597bac0d2ec8d99c8c6bf953cd5.gyakovlev@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-fs/bees/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-fs/bees/bees-9999.ebuild X-VCS-Directories: sys-fs/bees/ X-VCS-Committer: gyakovlev X-VCS-Committer-Name: Georgy Yakovlev X-VCS-Revision: 7d85d0b5f6274597bac0d2ec8d99c8c6bf953cd5 X-VCS-Branch: master Date: Mon, 1 Oct 2018 08:01:59 +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-Archives-Salt: 816807a7-e306-427e-ae7d-1663ad9d07da X-Archives-Hash: 4fc0bce7f6136e14e1c2fe9e33c32fd8 commit: 7d85d0b5f6274597bac0d2ec8d99c8c6bf953cd5 Author: Kai Krakow kaishome de> AuthorDate: Sun Sep 30 02:34:56 2018 +0000 Commit: Georgy Yakovlev gentoo org> CommitDate: Mon Oct 1 08:01:50 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7d85d0b5 sys-fs/bees: Specify package version to Makefile This works around an upstream issue in non-git ebuilds. The change is proposed to work from v0.7 onwards. It's still a hack but gets around the git error messages that show up otherwise during the ebuild phase. Closes: https://github.com/gentoo/gentoo/pull/10016 Github-Link: https://github.com/Zygo/bees/issues/75 Package-Manager: Portage-2.3.49, Repoman-2.3.10 Signed-off-by: Kai Krakow kaishome.de> Signed-off-by: Georgy Yakovlev gentoo.org> sys-fs/bees/bees-9999.ebuild | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/sys-fs/bees/bees-9999.ebuild b/sys-fs/bees/bees-9999.ebuild index 72fef108e72..22a1b0a4888 100644 --- a/sys-fs/bees/bees-9999.ebuild +++ b/sys-fs/bees/bees-9999.ebuild @@ -60,6 +60,11 @@ src_configure() { LIBDIR=$(get_libdir) DEFAULT_MAKE_TARGET=all EOF + if [[ ${PV} != "9999" ]] ; then + cat >>localconf <<-EOF || die + BEES_VERSION=v${PV} + EOF + fi if use tools; then echo OPTIONAL_INSTALL_TARGETS=install_tools >>localconf || die fi