summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMikko Gronoff <mikko.gronoff@qt.io>2018-02-27 15:08:45 +0200
committerMikko Gronoff <mikko.gronoff@qt.io>2018-03-02 10:39:43 +0000
commitf6f12ed5bcf5fc1e36bc5c6dee386947df3c3dc2 (patch)
treedd6a167644c035ec2df50d19373e8e311877fa2b
parente1895fbb38d7fbdb94abe3db77836813d52c60ff (diff)
downloadmeta-qt5-f6f12ed5bcf5fc1e36bc5c6dee386947df3c3dc2.tar.gz
Change default SRC_URI from github.com to code.qt.io
There have been issues in the past with github qt mirror being out of sync with code.qt.io for certain module repos. Right now there's been a several days long break in update cycle for seemingly all the qt modules where content has not been pushed to the github mirror. Change the default SRC_URI to the more reliable code.qt.io. Change-Id: Ic7d3b9a82ef0ae502e99a8516ef78ca09250fd1e Signed-off-by: Mikko Gronoff <mikko.gronoff@qt.io> Reviewed-by: Samuli Piippo <samuli.piippo@qt.io>
-rw-r--r--conf/layer.conf4
-rw-r--r--recipes-qt/examples/qt5everywheredemo_1.0.bb3
2 files changed, 4 insertions, 3 deletions
diff --git a/conf/layer.conf b/conf/layer.conf
index 7751ce2f..f5407105 100644
--- a/conf/layer.conf
+++ b/conf/layer.conf
@@ -33,7 +33,7 @@ LICENSE_PATH += "${LAYERDIR}/licenses"
33 33
34IMAGE_FEATURES[validitems] += "qtcreator-debug" 34IMAGE_FEATURES[validitems] += "qtcreator-debug"
35 35
36QT_GIT ?= "git://github.com/qt" 36QT_GIT_PROJECT ?= "qt"
37QT_LABS_GIT ?= "git://github.com/qt-labs" 37QT_GIT ?= "git://code.qt.io/${QT_GIT_PROJECT}"
38QT_GIT_PROTOCOL ?= "git" 38QT_GIT_PROTOCOL ?= "git"
39QT_EDITION ?= "opensource" 39QT_EDITION ?= "opensource"
diff --git a/recipes-qt/examples/qt5everywheredemo_1.0.bb b/recipes-qt/examples/qt5everywheredemo_1.0.bb
index dfbe4aed..36d57f18 100644
--- a/recipes-qt/examples/qt5everywheredemo_1.0.bb
+++ b/recipes-qt/examples/qt5everywheredemo_1.0.bb
@@ -7,7 +7,8 @@ LIC_FILES_CHKSUM = "file://qml/QtDemo/main.qml;endline=39;md5=7d80863906a4bc8ffc
7DEPENDS = "qtdeclarative qtxmlpatterns qtgraphicaleffects qtsvg qtmultimedia" 7DEPENDS = "qtdeclarative qtxmlpatterns qtgraphicaleffects qtsvg qtmultimedia"
8 8
9SRCREV = "35d72a2eba7456a2efc5eb8b77afbc00f69ba0ac" 9SRCREV = "35d72a2eba7456a2efc5eb8b77afbc00f69ba0ac"
10SRC_URI = "${QT_LABS_GIT}/qt-labs-qt5-everywhere-demo" 10QT_GIT_PROJECT = "qt-labs"
11SRC_URI = "${QT_GIT}/qt5-everywhere-demo"
11 12
12S = "${WORKDIR}/git/QtDemo" 13S = "${WORKDIR}/git/QtDemo"
13 14