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 5907C138247 for ; Mon, 11 Nov 2013 19:43:24 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E8F26E0B97; Mon, 11 Nov 2013 19:43: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 81A12E0B97 for ; Mon, 11 Nov 2013 19:43:23 +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 5C06B33F205 for ; Mon, 11 Nov 2013 19:43:21 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 12F21E530A for ; Mon, 11 Nov 2013 19:43: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: <1384198899.558ab8606afdd320d04aa45112b9406f0701c591.pesa@gentoo> Subject: [gentoo-commits] proj/qt:master commit in: eclass/ X-VCS-Repository: proj/qt X-VCS-Files: eclass/qt4-build.eclass X-VCS-Directories: eclass/ X-VCS-Committer: pesa X-VCS-Committer-Name: Davide Pesavento X-VCS-Revision: 558ab8606afdd320d04aa45112b9406f0701c591 X-VCS-Branch: master Date: Mon, 11 Nov 2013 19:43: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: 29ec894d-6e13-4409-9211-73d630c2ddb3 X-Archives-Hash: bcb089c0f44d0d44a754ce3d04c771ab commit: 558ab8606afdd320d04aa45112b9406f0701c591 Author: Davide Pesavento gmail com> AuthorDate: Mon Nov 11 19:41:39 2013 +0000 Commit: Davide Pesavento gentoo org> CommitDate: Mon Nov 11 19:41:39 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/qt.git;a=commit;h=558ab860 [eclass/qt4-build] Mess with $MY_P only when needed (release builds). --- eclass/qt4-build.eclass | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/eclass/qt4-build.eclass b/eclass/qt4-build.eclass index ada7815..64c2cab 100644 --- a/eclass/qt4-build.eclass +++ b/eclass/qt4-build.eclass @@ -26,9 +26,6 @@ fi HOMEPAGE="http://qt-project.org/ http://qt.digia.com/" LICENSE="|| ( LGPL-2.1 GPL-3 )" -MY_PV=${PV/_/-} -MY_P=qt-everywhere-opensource-src-${MY_PV} - case ${QT4_BUILD_TYPE} in live) EGIT_REPO_URI=( @@ -38,6 +35,7 @@ case ${QT4_BUILD_TYPE} in EGIT_BRANCH=${PV%.9999} ;; release) + MY_P=qt-everywhere-opensource-src-${PV/_/-} SRC_URI="http://download.qt-project.org/official_releases/qt/${PV%.*}/${PV}/${MY_P}.tar.gz" S=${WORKDIR}/${MY_P} ;;