summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Palimaka <kensington@gentoo.org>2016-06-23 01:54:18 +1000
committerMichael Palimaka <kensington@gentoo.org>2016-06-24 06:14:58 +1000
commit7fdfc0644cff524dd3f1fa8b2979367164cbe645 (patch)
tree494a919ec019f8b3764c07e1a5ef8ad5cc25798b /eclass/qt5-build.eclass
parentdev-php/pecl-apcu: Version bump to new slot (diff)
downloadgentoo-7fdfc0644cff524dd3f1fa8b2979367164cbe645.tar.gz
gentoo-7fdfc0644cff524dd3f1fa8b2979367164cbe645.tar.bz2
gentoo-7fdfc0644cff524dd3f1fa8b2979367164cbe645.zip
dev-qt: upstream respun 5.6.1 tarballs
qtdeclarative was revbumped due to the inclusion of an important patch. All other modules had either trivial or no changes. Gentoo-bug: 586646
Diffstat (limited to 'eclass/qt5-build.eclass')
-rw-r--r--eclass/qt5-build.eclass7
1 files changed, 6 insertions, 1 deletions
diff --git a/eclass/qt5-build.eclass b/eclass/qt5-build.eclass
index 5c3acd8e9e8f..eeea33ca4642 100644
--- a/eclass/qt5-build.eclass
+++ b/eclass/qt5-build.eclass
@@ -90,7 +90,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