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 F047E13835A for ; Thu, 25 Jun 2020 07:11:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7BAB6E0928; Thu, 25 Jun 2020 07:11:31 +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 2AB0CE0922 for ; Thu, 25 Jun 2020 07:11:30 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 ABC4434F114 for ; Thu, 25 Jun 2020 07:11:27 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4623E2B9 for ; Thu, 25 Jun 2020 07:11:24 +0000 (UTC) From: "Jason A. Donenfeld" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jason A. Donenfeld" Message-ID: <1593069065.aee07243bc44d2d6bc85113f848fd02deba381aa.zx2c4@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-qt/qt-creator/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-qt/qt-creator/qt-creator-9999.ebuild X-VCS-Directories: dev-qt/qt-creator/ X-VCS-Committer: zx2c4 X-VCS-Committer-Name: Jason A. Donenfeld X-VCS-Revision: aee07243bc44d2d6bc85113f848fd02deba381aa X-VCS-Branch: master Date: Thu, 25 Jun 2020 07:11:24 +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: 3d7cf672-2a08-48b2-a35b-62af913e5a38 X-Archives-Hash: 1194a605f1d8ad40e78d9e07307e29a6 commit: aee07243bc44d2d6bc85113f848fd02deba381aa Author: Peter Levine gmail com> AuthorDate: Fri May 8 07:25:58 2020 +0000 Commit: Jason A. Donenfeld gentoo org> CommitDate: Thu Jun 25 07:11:05 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aee07243 dev-qt/qt-creator: Unbundle yaml-cpp Package-Manager: Portage-2.3.99, Repoman-2.3.22 Signed-off-by: Peter Levine gmail.com> Signed-off-by: Jason A. Donenfeld gentoo.org> dev-qt/qt-creator/qt-creator-9999.ebuild | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/dev-qt/qt-creator/qt-creator-9999.ebuild b/dev-qt/qt-creator/qt-creator-9999.ebuild index ee5513e7298..1ad7e3db8ef 100644 --- a/dev-qt/qt-creator/qt-creator-9999.ebuild +++ b/dev-qt/qt-creator/qt-creator-9999.ebuild @@ -24,7 +24,7 @@ else S=${WORKDIR}/${MY_P} fi -# TODO: unbundle sqlite and yaml-cpp +# TODO: unbundle sqlite QTC_PLUGINS=(android +autotest baremetal beautifier boot2qt '+clang:clangcodemodel|clangformat|clangpchmanager|clangrefactoring|clangtools' clearcase @@ -51,6 +51,7 @@ BDEPEND=" doc? ( >=dev-qt/qdoc-${QT_PV} ) " CDEPEND=" + >=dev-cpp/yaml-cpp-0.6.2:= >=dev-qt/qtconcurrent-${QT_PV} >=dev-qt/qtcore-${QT_PV} >=dev-qt/qtdeclarative-${QT_PV}[widgets] @@ -184,6 +185,9 @@ src_prepare() { # remove bundled syntax-highlighting rm -r src/libs/3rdparty/syntax-highlighting || die + # remove bundled yaml-cpp + rm -r src/libs/3rdparty/yaml-cpp || die + # remove bundled qbs rm -r src/shared/qbs || die }