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 B263A139695 for ; Sat, 29 Apr 2017 19:46:29 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B40E3E0DBA; Sat, 29 Apr 2017 19:46:26 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 8F6A3E0D1B for ; Sat, 29 Apr 2017 19:46:26 +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 5ED7833FE74 for ; Sat, 29 Apr 2017 19:46:25 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B329C743F for ; Sat, 29 Apr 2017 19:46:23 +0000 (UTC) From: "Davide Pesavento" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Davide Pesavento" Message-ID: <1493495099.f949ccf89f35fd9f2ee7ca56bfdadf0e058f9781.pesa@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-4.3.0_beta1.ebuild X-VCS-Directories: dev-qt/qt-creator/ X-VCS-Committer: pesa X-VCS-Committer-Name: Davide Pesavento X-VCS-Revision: f949ccf89f35fd9f2ee7ca56bfdadf0e058f9781 X-VCS-Branch: master Date: Sat, 29 Apr 2017 19:46:23 +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: f838e7bf-d7d5-4903-b46a-b60f474d51c7 X-Archives-Hash: c4697b67c25ab06476135f296145e240 commit: f949ccf89f35fd9f2ee7ca56bfdadf0e058f9781 Author: Davide Pesavento gentoo org> AuthorDate: Sat Apr 29 18:53:20 2017 +0000 Commit: Davide Pesavento gentoo org> CommitDate: Sat Apr 29 19:44:59 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f949ccf8 dev-qt/qt-creator: gdb is a runtime dep only Also move all PDEPENDs to RDEPEND, there's no reason they have to be in PDEPEND. Package-Manager: Portage-2.3.5, Repoman-2.3.2 dev-qt/qt-creator/qt-creator-4.3.0_beta1.ebuild | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/dev-qt/qt-creator/qt-creator-4.3.0_beta1.ebuild b/dev-qt/qt-creator/qt-creator-4.3.0_beta1.ebuild index cdf5f872afb..d265a06c6ee 100644 --- a/dev-qt/qt-creator/qt-creator-4.3.0_beta1.ebuild +++ b/dev-qt/qt-creator/qt-creator-4.3.0_beta1.ebuild @@ -38,7 +38,7 @@ IUSE="doc systemd test +webengine ${QTC_PLUGINS[@]%:*}" # minimum Qt version required QT_PV="5.6.0:5" -RDEPEND=" +CDEPEND=" =dev-libs/botan-1.10*[-bindist,threads] >=dev-qt/qtconcurrent-${QT_PV} >=dev-qt/qtcore-${QT_PV} @@ -54,14 +54,13 @@ RDEPEND=" >=dev-qt/qtwidgets-${QT_PV} >=dev-qt/qtx11extras-${QT_PV} >=dev-qt/qtxml-${QT_PV} - sys-devel/gdb[client,python] clangcodemodel? ( >=sys-devel/clang-3.9:= ) designer? ( >=dev-qt/designer-${QT_PV} ) qbs? ( >=dev-util/qbs-1.7.0 ) systemd? ( sys-apps/systemd:= ) webengine? ( >=dev-qt/qtwebengine-${QT_PV}[widgets] ) " -DEPEND="${RDEPEND} +DEPEND="${CDEPEND} >=dev-qt/linguist-tools-${QT_PV} virtual/pkgconfig doc? ( >=dev-qt/qdoc-${QT_PV} ) @@ -71,13 +70,8 @@ DEPEND="${RDEPEND} >=dev-qt/qttest-${QT_PV} ) " -# qt translations must also be installed or qt-creator translations won't be loaded -for x in ${PLOCALES}; do - RDEPEND+=" linguas_${x}? ( >=dev-qt/qttranslations-${QT_PV} )" -done -unset x - -PDEPEND=" +RDEPEND="${CDEPEND} + sys-devel/gdb[client,python] autotools? ( sys-devel/autoconf ) bazaar? ( dev-vcs/bzr ) clangstaticanalyzer? ( >=sys-devel/clang-3.9:* ) @@ -88,6 +82,11 @@ PDEPEND=" subversion? ( dev-vcs/subversion ) valgrind? ( dev-util/valgrind ) " +# qt translations must also be installed or qt-creator translations won't be loaded +for x in ${PLOCALES}; do + RDEPEND+=" linguas_${x}? ( >=dev-qt/qttranslations-${QT_PV} )" +done +unset x src_unpack() { if tc-is-gcc; then