Gentoo Archives: gentoo-commits

From: Davide Pesavento <pesa@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/qt:master commit in: eclass/
Date: Sun, 04 Dec 2016 03:01:28
Message-Id: 1480820466.ecffac6efd87682facfecdfc309577bcd0bd9d9d.pesa@gentoo
1 commit: ecffac6efd87682facfecdfc309577bcd0bd9d9d
2 Author: Davide Pesavento <pesa <AT> gentoo <DOT> org>
3 AuthorDate: Sun Dec 4 03:01:06 2016 +0000
4 Commit: Davide Pesavento <pesa <AT> gentoo <DOT> org>
5 CommitDate: Sun Dec 4 03:01:06 2016 +0000
6 URL: https://gitweb.gentoo.org/proj/qt.git/commit/?id=ecffac6e
7
8 qt5-build.eclass: sync with gentoo.git
9
10 eclass/qt5-build.eclass | 7 ++++++-
11 1 file changed, 6 insertions(+), 1 deletion(-)
12
13 diff --git a/eclass/qt5-build.eclass b/eclass/qt5-build.eclass
14 index f6a62cc..6ee55a6 100644
15 --- a/eclass/qt5-build.eclass
16 +++ b/eclass/qt5-build.eclass
17 @@ -91,7 +91,12 @@ case ${PV} in
18 # official stable release
19 QT5_BUILD_TYPE="release"
20 MY_P=${QT5_MODULE}-opensource-src-${PV}
21 - SRC_URI="https://download.qt.io/official_releases/qt/${PV%.*}/${PV}/submodules/${MY_P}.tar.xz"
22 + # bug 586646
23 + if [[ ${PV} = 5.6.1 ]]; then
24 + SRC_URI="https://download.qt.io/official_releases/qt/${PV%.*}/${PV}-1/submodules/${MY_P}-1.tar.xz"
25 + else
26 + SRC_URI="https://download.qt.io/official_releases/qt/${PV%.*}/${PV}/submodules/${MY_P}.tar.xz"
27 + fi
28 S=${WORKDIR}/${MY_P}
29 ;;
30 esac