pesa 14/09/22 00:03:25 Modified: ChangeLog qt4-build.eclass qt5-build.eclass Log: Fix SRC_URI (bug 523408) and update HOMEPAGE.
Revision Changes Path 1.1374 eclass/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.1374&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.1374&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?r1=1.1373&r2=1.1374 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v retrieving revision 1.1373 retrieving revision 1.1374 diff -u -r1.1373 -r1.1374 --- ChangeLog 19 Sep 2014 18:17:12 -0000 1.1373 +++ ChangeLog 22 Sep 2014 00:03:25 -0000 1.1374 @@ -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 <p...@gentoo.org> qt4-build.eclass, + qt5-build.eclass: + Fix SRC_URI (bug 523408) and update HOMEPAGE. 19 Sep 2014; Andreas K. Huettel <dilfri...@gentoo.org> perl-module.eclass: Remove support for EAPI 1, 2, 3 in perl-module.eclass (no packages left in 1.156 eclass/qt4-build.eclass file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/qt4-build.eclass?rev=1.156&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/qt4-build.eclass?rev=1.156&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/qt4-build.eclass?r1=1.155&r2=1.156 Index: qt4-build.eclass =================================================================== RCS file: /var/cvsroot/gentoo-x86/eclass/qt4-build.eclass,v retrieving revision 1.155 retrieving revision 1.156 diff -u -r1.155 -r1.156 --- qt4-build.eclass 29 Aug 2014 23:56:18 -0000 1.155 +++ qt4-build.eclass 22 Sep 2014 00:03:25 -0000 1.156 @@ -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 @@ 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 @@ ;; 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 1.7 eclass/qt5-build.eclass file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/qt5-build.eclass?rev=1.7&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/qt5-build.eclass?rev=1.7&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/qt5-build.eclass?r1=1.6&r2=1.7 Index: qt5-build.eclass =================================================================== RCS file: /var/cvsroot/gentoo-x86/eclass/qt5-build.eclass,v retrieving revision 1.6 retrieving revision 1.7 diff -u -r1.6 -r1.7 --- qt5-build.eclass 16 Sep 2014 14:18:43 -0000 1.6 +++ qt5-build.eclass 22 Sep 2014 00:03:25 -0000 1.7 @@ -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 @@ 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 @@ # 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