From: Davide Pesavento Date: Thu, 7 Apr 2016 13:28:16 +0000 (+0200) Subject: qt5-build.eclass: use https in SRC_URI X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=c5ea59771b5037584cd8f0a056d4d423bd1510f9;p=gentoo.git qt5-build.eclass: use https in SRC_URI (cherry picked from proj/qt commit 98f0450083e9790268989bb6af75569f813adc7c) --- diff --git a/eclass/qt5-build.eclass b/eclass/qt5-build.eclass index ff8dfafcab2c..f3fb1f2a960b 100644 --- a/eclass/qt5-build.eclass +++ b/eclass/qt5-build.eclass @@ -83,14 +83,14 @@ case ${PV} in # development release QT5_BUILD_TYPE="release" MY_P=${QT5_MODULE}-opensource-src-${PV/_/-} - SRC_URI="http://download.qt.io/development_releases/qt/${PV%.*}/${PV/_/-}/submodules/${MY_P}.tar.xz" + SRC_URI="https://download.qt.io/development_releases/qt/${PV%.*}/${PV/_/-}/submodules/${MY_P}.tar.xz" S=${WORKDIR}/${MY_P} ;; *) # official stable release QT5_BUILD_TYPE="release" MY_P=${QT5_MODULE}-opensource-src-${PV} - SRC_URI="http://download.qt.io/official_releases/qt/${PV%.*}/${PV}/submodules/${MY_P}.tar.xz" + SRC_URI="https://download.qt.io/official_releases/qt/${PV%.*}/${PV}/submodules/${MY_P}.tar.xz" S=${WORKDIR}/${MY_P} ;; esac