diff options
author | Davide Pesavento <pesa@gentoo.org> | 2014-09-22 00:03:25 +0000 |
---|---|---|
committer | Davide Pesavento <pesa@gentoo.org> | 2014-09-22 00:03:25 +0000 |
commit | 9c19c9b8a86b2968acbe2c8f72dc24c33b56f3ed (patch) | |
tree | 852667068ce3719426d8a5339ed1fe29a3dc78f1 /eclass | |
parent | Version bump. (diff) | |
download | gentoo-2-9c19c9b8a86b2968acbe2c8f72dc24c33b56f3ed.tar.gz gentoo-2-9c19c9b8a86b2968acbe2c8f72dc24c33b56f3ed.tar.bz2 gentoo-2-9c19c9b8a86b2968acbe2c8f72dc24c33b56f3ed.zip |
Fix SRC_URI (bug 523408) and update HOMEPAGE.
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/ChangeLog | 6 | ||||
-rw-r--r-- | eclass/qt4-build.eclass | 6 | ||||
-rw-r--r-- | eclass/qt5-build.eclass | 6 |
3 files changed, 11 insertions, 7 deletions
diff --git a/eclass/ChangeLog b/eclass/ChangeLog index b0f0a4a3a3ba..e40b4d285295 100644 --- a/eclass/ChangeLog +++ b/eclass/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for eclass directory # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1373 2014/09/19 18:17:12 dilfridge Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1374 2014/09/22 00:03:25 pesa Exp $ + + 22 Sep 2014; Davide Pesavento <pesa@gentoo.org> qt4-build.eclass, + qt5-build.eclass: + Fix SRC_URI (bug 523408) and update HOMEPAGE. 19 Sep 2014; Andreas K. Huettel <dilfridge@gentoo.org> perl-module.eclass: Remove support for EAPI 1, 2, 3 in perl-module.eclass (no packages left in diff --git a/eclass/qt4-build.eclass b/eclass/qt4-build.eclass index 9c4f4bbf1a4b..37a657c747e3 100644 --- a/eclass/qt4-build.eclass +++ b/eclass/qt4-build.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/qt4-build.eclass,v 1.155 2014/08/29 23:56:18 pesa Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/qt4-build.eclass,v 1.156 2014/09/22 00:03:25 pesa Exp $ # @ECLASS: qt4-build.eclass # @MAINTAINER: @@ -23,7 +23,7 @@ else QT4_BUILD_TYPE="release" fi -HOMEPAGE="http://qt-project.org/ http://qt.digia.com/" +HOMEPAGE="https://www.qt.io/ https://qt-project.org/" LICENSE="|| ( LGPL-2.1 GPL-3 )" case ${QT4_BUILD_TYPE} in @@ -36,7 +36,7 @@ case ${QT4_BUILD_TYPE} in ;; release) MY_P=qt-everywhere-opensource-src-${PV/_/-} - SRC_URI="http://download.qt-project.org/official_releases/qt/${PV%.*}/${PV}/${MY_P}.tar.gz" + SRC_URI="http://download.qt-project.org/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 cb0a20166eaa..bc72dc0fd15c 100644 --- a/eclass/qt5-build.eclass +++ b/eclass/qt5-build.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/qt5-build.eclass,v 1.6 2014/09/16 14:18:43 pesa Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/qt5-build.eclass,v 1.7 2014/09/22 00:03:25 pesa Exp $ # @ECLASS: qt5-build.eclass # @MAINTAINER: @@ -22,7 +22,7 @@ inherit eutils flag-o-matic multilib toolchain-funcs virtualx QT5_MINOR_VERSION=${PV#*.} QT5_MINOR_VERSION=${QT5_MINOR_VERSION%%.*} -HOMEPAGE="https://qt-project.org/" +HOMEPAGE="https://www.qt.io/ https://qt-project.org/" if [[ ${QT5_MINOR_VERSION} -ge 4 ]]; then LICENSE="|| ( LGPL-2.1 LGPL-3 )" else @@ -58,7 +58,7 @@ case ${PV} in # official stable releases QT5_BUILD_TYPE="release" MY_P=${QT5_MODULE}-opensource-src-${PV} - SRC_URI="http://download.qt-project.org/official_releases/qt/${PV%.*}/${PV}/submodules/${MY_P}.tar.xz" + SRC_URI="http://download.qt-project.org/archive/qt/${PV%.*}/${PV}/submodules/${MY_P}.tar.xz" S=${WORKDIR}/${MY_P} ;; esac |