diff options
-rw-r--r-- | eclass/ChangeLog | 6 | ||||
-rw-r--r-- | eclass/qt4-build-multilib.eclass | 6 | ||||
-rw-r--r-- | eclass/qt4-build.eclass | 6 | ||||
-rw-r--r-- | eclass/qt5-build.eclass | 14 |
4 files changed, 18 insertions, 14 deletions
diff --git a/eclass/ChangeLog b/eclass/ChangeLog index fa26c270d911..df324840c626 100644 --- a/eclass/ChangeLog +++ b/eclass/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for eclass directory # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1512 2015/01/17 20:54:25 mrueg Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1513 2015/01/18 01:49:43 pesa Exp $ + + 18 Jan 2015; Davide Pesavento <pesa@gentoo.org> qt4-build.eclass, + qt4-build-multilib.eclass, qt5-build.eclass: + Update SRC_URIs 17 Jan 2015; Manuel Rüger <mrueg@gentoo.org> rox-0install.eclass, rox.eclass: diff --git a/eclass/qt4-build-multilib.eclass b/eclass/qt4-build-multilib.eclass index 8d32832785fc..dfb6abe9f172 100644 --- a/eclass/qt4-build-multilib.eclass +++ b/eclass/qt4-build-multilib.eclass @@ -1,6 +1,6 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/qt4-build-multilib.eclass,v 1.3 2014/12/18 14:35:03 pesa Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/qt4-build-multilib.eclass,v 1.4 2015/01/18 01:49:43 pesa Exp $ # @ECLASS: qt4-build-multilib.eclass # @MAINTAINER: @@ -36,7 +36,7 @@ case ${PV} in *) QT4_BUILD_TYPE="release" MY_P=qt-everywhere-opensource-src-${PV/_/-} - SRC_URI="http://download.qt-project.org/archive/qt/${PV%.*}/${PV}/${MY_P}.tar.gz" + SRC_URI="http://download.qt.io/official_releases/qt/${PV%.*}/${PV}/${MY_P}.tar.gz" S=${WORKDIR}/${MY_P} ;; esac diff --git a/eclass/qt4-build.eclass b/eclass/qt4-build.eclass index c6ad5aed7818..a36b911439d7 100644 --- a/eclass/qt4-build.eclass +++ b/eclass/qt4-build.eclass @@ -1,6 +1,6 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/qt4-build.eclass,v 1.157 2014/11/17 01:31:41 pesa Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/qt4-build.eclass,v 1.158 2015/01/18 01:49:43 pesa Exp $ # @ECLASS: qt4-build.eclass # @MAINTAINER: @@ -33,7 +33,7 @@ case ${PV} in *) QT4_BUILD_TYPE="release" MY_P=qt-everywhere-opensource-src-${PV/_/-} - SRC_URI="http://download.qt-project.org/archive/qt/${PV%.*}/${PV}/${MY_P}.tar.gz" + SRC_URI="http://download.qt.io/archive/qt/${PV%.*}/${PV}/${MY_P}.tar.gz" S=${WORKDIR}/${MY_P} ;; esac diff --git a/eclass/qt5-build.eclass b/eclass/qt5-build.eclass index 4efabfa798a8..c6d17cefff19 100644 --- a/eclass/qt5-build.eclass +++ b/eclass/qt5-build.eclass @@ -1,6 +1,6 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/qt5-build.eclass,v 1.12 2014/12/12 17:30:40 pesa Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/qt5-build.eclass,v 1.13 2015/01/18 01:49:43 pesa Exp $ # @ECLASS: qt5-build.eclass # @MAINTAINER: @@ -51,14 +51,14 @@ case ${PV} in # development releases QT5_BUILD_TYPE="release" MY_P=${QT5_MODULE}-opensource-src-${PV/_/-} - SRC_URI="http://download.qt-project.org/development_releases/qt/${PV%.*}/${PV/_/-}/submodules/${MY_P}.tar.xz" + SRC_URI="http://download.qt.io/development_releases/qt/${PV%.*}/${PV/_/-}/submodules/${MY_P}.tar.xz" S=${WORKDIR}/${MY_P} ;; *) # official stable releases QT5_BUILD_TYPE="release" MY_P=${QT5_MODULE}-opensource-src-${PV} - SRC_URI="http://download.qt-project.org/archive/qt/${PV%.*}/${PV}/submodules/${MY_P}.tar.xz" + SRC_URI="http://download.qt.io/official_releases/qt/${PV%.*}/${PV}/submodules/${MY_P}.tar.xz" S=${WORKDIR}/${MY_P} ;; esac @@ -579,9 +579,9 @@ qt5_base_configure() { # and cause problems on hardened, so turn them off -no-pch - # reduced relocations cause major breakage on at least arm and ppc, so we - # don't specify anything and let configure figure out if they are supported, - # see also https://bugreports.qt-project.org/browse/QTBUG-36129 + # reduced relocations cause major breakage on at least arm and ppc, so + # don't specify anything and let the configure figure out if they are + # supported; see also https://bugreports.qt.io/browse/QTBUG-36129 #-reduce-relocations # let configure automatically detect if GNU gold is available |