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 B52451395E2 for ; Sun, 4 Dec 2016 03:01:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C47C021C084; Sun, 4 Dec 2016 03:01:27 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 A2C3121C084 for ; Sun, 4 Dec 2016 03:01:27 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 3F94F341063 for ; Sun, 4 Dec 2016 03:01:26 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A2673498 for ; Sun, 4 Dec 2016 03:01:24 +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: <1480820466.ecffac6efd87682facfecdfc309577bcd0bd9d9d.pesa@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: pesa X-VCS-Committer-Name: Davide Pesavento X-VCS-Revision: ecffac6efd87682facfecdfc309577bcd0bd9d9d X-VCS-Branch: master Date: Sun, 4 Dec 2016 03:01: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-Archives-Salt: 17fcb5b3-489b-4b8c-948e-828c617f8e11 X-Archives-Hash: 63705ff4ab2995e1eb0095a92a8d19be commit: ecffac6efd87682facfecdfc309577bcd0bd9d9d Author: Davide Pesavento gentoo org> AuthorDate: Sun Dec 4 03:01:06 2016 +0000 Commit: Davide Pesavento gentoo org> CommitDate: Sun Dec 4 03:01:06 2016 +0000 URL: https://gitweb.gentoo.org/proj/qt.git/commit/?id=ecffac6e qt5-build.eclass: sync with gentoo.git eclass/qt5-build.eclass | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/eclass/qt5-build.eclass b/eclass/qt5-build.eclass index f6a62cc..6ee55a6 100644 --- a/eclass/qt5-build.eclass +++ b/eclass/qt5-build.eclass @@ -91,7 +91,12 @@ case ${PV} in # official stable release QT5_BUILD_TYPE="release" MY_P=${QT5_MODULE}-opensource-src-${PV} - SRC_URI="https://download.qt.io/official_releases/qt/${PV%.*}/${PV}/submodules/${MY_P}.tar.xz" + # bug 586646 + if [[ ${PV} = 5.6.1 ]]; then + SRC_URI="https://download.qt.io/official_releases/qt/${PV%.*}/${PV}-1/submodules/${MY_P}-1.tar.xz" + else + SRC_URI="https://download.qt.io/official_releases/qt/${PV%.*}/${PV}/submodules/${MY_P}.tar.xz" + fi S=${WORKDIR}/${MY_P} ;; esac