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 A5688138359 for ; Tue, 29 Sep 2020 22:33:04 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A796CE0ABB; Tue, 29 Sep 2020 22:33:03 +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-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 933D2E0ABB for ; Tue, 29 Sep 2020 22:33:03 +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 65E2733BE23 for ; Tue, 29 Sep 2020 22:33:02 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DC6CC332 for ; Tue, 29 Sep 2020 22:33:00 +0000 (UTC) From: "Nick Sarnie" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Nick Sarnie" Message-ID: <1601418731.468cd930fd7bc7f2048d559ff3afee75288561a5.sarnex@gentoo> Subject: [gentoo-commits] repo/proj/wine:master commit in: app-emulation/vkd3d/ X-VCS-Repository: repo/proj/wine X-VCS-Files: app-emulation/vkd3d/vkd3d-1.2.ebuild app-emulation/vkd3d/vkd3d-9999.ebuild X-VCS-Directories: app-emulation/vkd3d/ X-VCS-Committer: sarnex X-VCS-Committer-Name: Nick Sarnie X-VCS-Revision: 468cd930fd7bc7f2048d559ff3afee75288561a5 X-VCS-Branch: master Date: Tue, 29 Sep 2020 22:33:00 +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: d6eb45fd-052a-4bc7-925d-9b5ef598c301 X-Archives-Hash: 441b55b8a8b05de969c7c863569cf85e commit: 468cd930fd7bc7f2048d559ff3afee75288561a5 Author: Nick Sarnie gentoo org> AuthorDate: Tue Sep 29 22:32:11 2020 +0000 Commit: Nick Sarnie gentoo org> CommitDate: Tue Sep 29 22:32:11 2020 +0000 URL: https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=468cd930 app-emulation/vkd3d: Fix build Closes: https://bugs.gentoo.org/745450 Package-Manager: Portage-3.0.8, Repoman-3.0.1 Signed-off-by: Nick Sarnie gentoo.org> app-emulation/vkd3d/vkd3d-1.2.ebuild | 1 + app-emulation/vkd3d/vkd3d-9999.ebuild | 9 ++++----- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/app-emulation/vkd3d/vkd3d-1.2.ebuild b/app-emulation/vkd3d/vkd3d-1.2.ebuild index f866aca..90e8035 100644 --- a/app-emulation/vkd3d/vkd3d-1.2.ebuild +++ b/app-emulation/vkd3d/vkd3d-1.2.ebuild @@ -33,6 +33,7 @@ SLOT="0" multilib_src_configure() { local myconf=( $(use_with spirv-tools) + --disable-doxygen-pdf ) ECONF_SOURCE=${S} econf "${myconf[@]}" diff --git a/app-emulation/vkd3d/vkd3d-9999.ebuild b/app-emulation/vkd3d/vkd3d-9999.ebuild index 56cb485..90e8035 100644 --- a/app-emulation/vkd3d/vkd3d-9999.ebuild +++ b/app-emulation/vkd3d/vkd3d-9999.ebuild @@ -1,17 +1,15 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 inherit multilib-minimal -AUTOTOOLS_AUTORECONF="1" - if [[ "${PV}" == "9999" ]]; then EGIT_REPO_URI="https://source.winehq.org/git/vkd3d.git" inherit git-r3 else - KEYWORDS="~amd64" + KEYWORDS="~amd64 ~x86" SRC_URI="https://dl.winehq.org/vkd3d/source/${P}.tar.xz" fi @@ -24,7 +22,7 @@ RDEPEND="spirv-tools? ( dev-util/spirv-tools:=[${MULTILIB_USEDEP}] ) DEPEND="${RDEPEND} dev-util/spirv-headers - >=dev-util/vulkan-headers-1.1.114" + dev-util/vulkan-headers" DESCRIPTION="D3D12 to Vulkan translation library" HOMEPAGE="https://source.winehq.org/git/vkd3d.git/" @@ -35,6 +33,7 @@ SLOT="0" multilib_src_configure() { local myconf=( $(use_with spirv-tools) + --disable-doxygen-pdf ) ECONF_SOURCE=${S} econf "${myconf[@]}"