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 7C87D139086 for ; Thu, 29 Dec 2016 12:25:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B565AE0BD7; Thu, 29 Dec 2016 12:25:35 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 8E12BE0BD7 for ; Thu, 29 Dec 2016 12:25:35 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 7BD1D34166A for ; Thu, 29 Dec 2016 12:25:34 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3AD7824E7 for ; Thu, 29 Dec 2016 12:25:32 +0000 (UTC) From: "Michael Palimaka" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michael Palimaka" Message-ID: <1483014321.a0a76e7262deff97dcf1eab93193afba15ce64f1.kensington@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-video/obs-studio/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-video/obs-studio/obs-studio-17.0.0.ebuild X-VCS-Directories: media-video/obs-studio/ X-VCS-Committer: kensington X-VCS-Committer-Name: Michael Palimaka X-VCS-Revision: a0a76e7262deff97dcf1eab93193afba15ce64f1 X-VCS-Branch: master Date: Thu, 29 Dec 2016 12:25:32 +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: f6789e28-2b03-4b29-9c08-e259fd891286 X-Archives-Hash: 26d599b1b41bbc0603c68c2075af9821 commit: a0a76e7262deff97dcf1eab93193afba15ce64f1 Author: Jimi Huotari gentoo org> AuthorDate: Thu Dec 29 08:31:03 2016 +0000 Commit: Michael Palimaka gentoo org> CommitDate: Thu Dec 29 12:25:21 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a0a76e72 media-video/obs-studio: Override detected version for non-git builds. The upstream CMake configuration always sets the software version to 0.0.1, when there is no '.git' directory found. It seems upstream accepted, and implemented a variable to fix this. Upstream-Bug: https://github.com/jp9000/obs-studio/pull/349 Additionally, add quotes for '-DUNIX_STRUCTURE' for consistency. Package-Manager: Portage-2.3.3, Repoman-2.3.1 media-video/obs-studio/obs-studio-17.0.0.ebuild | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/media-video/obs-studio/obs-studio-17.0.0.ebuild b/media-video/obs-studio/obs-studio-17.0.0.ebuild index 678d13d..442d10f 100644 --- a/media-video/obs-studio/obs-studio-17.0.0.ebuild +++ b/media-video/obs-studio/obs-studio-17.0.0.ebuild @@ -69,7 +69,8 @@ src_configure() { -DDISABLE_V4L2="$(usex !v4l)" -DLIBOBS_PREFER_IMAGEMAGICK="$(usex imagemagick)" -DOBS_MULTIARCH_SUFFIX="${libdir#lib}" - -DUNIX_STRUCTURE=1 + -DOBS_VERSION_OVERRIDE="${PV}" + -DUNIX_STRUCTURE="1" ) cmake-utils_src_configure