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 B56861382C5 for ; Fri, 9 Feb 2018 23:35:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E1A9AE0990; Fri, 9 Feb 2018 23:35:24 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 C589BE0990 for ; Fri, 9 Feb 2018 23:35:24 +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 64097335C53 for ; Fri, 9 Feb 2018 23:35:23 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 388E21CD for ; Fri, 9 Feb 2018 23:35:20 +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: <1518219311.aaa3b5e3a01c8e2b8decb9b3464cedd484770f10.kensington@gentoo> Subject: [gentoo-commits] proj/qt:master commit in: eclass/ X-VCS-Repository: proj/qt X-VCS-Files: eclass/qt5-build.eclass X-VCS-Directories: eclass/ X-VCS-Committer: kensington X-VCS-Committer-Name: Michael Palimaka X-VCS-Revision: aaa3b5e3a01c8e2b8decb9b3464cedd484770f10 X-VCS-Branch: master Date: Fri, 9 Feb 2018 23:35:20 +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: 9a9a91c7-5498-4b58-bf53-e662fbb121f3 X-Archives-Hash: 96af6d04de154977bea0543f26609338 commit: aaa3b5e3a01c8e2b8decb9b3464cedd484770f10 Author: Michael Palimaka gentoo org> AuthorDate: Fri Feb 9 23:35:06 2018 +0000 Commit: Michael Palimaka gentoo org> CommitDate: Fri Feb 9 23:35:11 2018 +0000 URL: https://gitweb.gentoo.org/proj/qt.git/commit/?id=aaa3b5e3 qt5-build.eclass: also call default_src_unpack for live ebuilds This allows, for example, patch tarballs to be applied (as is currently required for qtwebengine). eclass/qt5-build.eclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eclass/qt5-build.eclass b/eclass/qt5-build.eclass index 1a20b3da..dde08fdb 100644 --- a/eclass/qt5-build.eclass +++ b/eclass/qt5-build.eclass @@ -170,7 +170,7 @@ qt5-build_src_unpack() { fi case ${QT5_BUILD_TYPE} in - live) git-r3_src_unpack ;; + live) git-r3_src_unpack ;& release) default ;; esac }