From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 753191381F3 for ; Sun, 7 Apr 2013 13:20:23 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 06BC6E0CF1; Sun, 7 Apr 2013 13:20:23 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 9E2F1E0CF1 for ; Sun, 7 Apr 2013 13:20:22 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B6EB733DDFD for ; Sun, 7 Apr 2013 13:20:21 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 4F270E4073 for ; Sun, 7 Apr 2013 13:20:20 +0000 (UTC) From: "Davide Pesavento" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Davide Pesavento" Message-ID: <1365340684.87497323f590c38927fdfea0cdcf48ab694609e8.pesa@gentoo> Subject: [gentoo-commits] proj/qt:master commit in: eclass/ X-VCS-Repository: proj/qt X-VCS-Files: eclass/qt5-build.eclass X-VCS-Directories: eclass/ X-VCS-Committer: pesa X-VCS-Committer-Name: Davide Pesavento X-VCS-Revision: 87497323f590c38927fdfea0cdcf48ab694609e8 X-VCS-Branch: master Date: Sun, 7 Apr 2013 13:20:20 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 59415f1c-54a9-4af7-b3e8-846a11588aa0 X-Archives-Hash: c6beb78eed541c3314bdd5ad06bc113f commit: 87497323f590c38927fdfea0cdcf48ab694609e8 Author: Davide Pesavento gmail com> AuthorDate: Sun Apr 7 13:18:04 2013 +0000 Commit: Davide Pesavento gentoo org> CommitDate: Sun Apr 7 13:18:04 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/qt.git;a=commit;h=87497323 [qt5-build.eclass] Switch to new download URLs. --- eclass/qt5-build.eclass | 14 ++++++++++++-- 1 files changed, 12 insertions(+), 2 deletions(-) diff --git a/eclass/qt5-build.eclass b/eclass/qt5-build.eclass index 1a9977d..41af502 100644 --- a/eclass/qt5-build.eclass +++ b/eclass/qt5-build.eclass @@ -31,17 +31,27 @@ SLOT="5" case ${PV} in 5.9999) + # git dev branch QT5_BUILD_TYPE="live" EGIT_BRANCH="dev" ;; 5.?.9999) + # git stable branch QT5_BUILD_TYPE="live" EGIT_BRANCH="stable" ;; - *) + *_alpha?|*_beta?|*_rc?) + # pre-releases QT5_BUILD_TYPE="release" MY_P="${QT5_MODULE}-opensource-src-${PV/_/-}" - SRC_URI="http://releases.qt-project.org/qt5/${PV}/submodules_tar/${MY_P}.tar.xz" + SRC_URI="http://download.qt-project.org/development_releases/qt/${PV%.*}/${PV/_/-}/submodules_tar/${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/official_releases/qt/${PV%.*}/${PV}/submodules_tar/${MY_P}.tar.xz" S=${WORKDIR}/${MY_P} ;; esac