From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 5A284139694 for ; Thu, 18 May 2017 00:23:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0F96EE0C26; Thu, 18 May 2017 00:23:12 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id DE9DCE0C26 for ; Thu, 18 May 2017 00:23:11 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 98B52341130 for ; Thu, 18 May 2017 00:23:10 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 09706743E for ; Thu, 18 May 2017 00:23:09 +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: <1495066694.e4acb6d593d8c65a1b8430d90dbbc3b8b7d41168.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: e4acb6d593d8c65a1b8430d90dbbc3b8b7d41168 X-VCS-Branch: master Date: Thu, 18 May 2017 00:23:09 +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: 26abf10d-e2bf-42ad-bc0c-9e51a2bb43bd X-Archives-Hash: 69619ae109619ddff7a8866e02379262 commit: e4acb6d593d8c65a1b8430d90dbbc3b8b7d41168 Author: Davide Pesavento gentoo org> AuthorDate: Thu May 18 00:18:14 2017 +0000 Commit: Davide Pesavento gentoo org> CommitDate: Thu May 18 00:18:14 2017 +0000 URL: https://gitweb.gentoo.org/proj/qt.git/commit/?id=e4acb6d5 qt5-build.eclass: remove dead code eclass/qt5-build.eclass | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/eclass/qt5-build.eclass b/eclass/qt5-build.eclass index 55537522..b8d1d85c 100644 --- a/eclass/qt5-build.eclass +++ b/eclass/qt5-build.eclass @@ -85,12 +85,7 @@ case ${PV} in # official stable release QT5_BUILD_TYPE="release" MY_P=${QT5_MODULE}-opensource-src-${PV} - # bug 586646 - if [[ ${PV} = 5.6.1 ]]; then - SRC_URI="https://download.qt.io/official_releases/qt/${PV%.*}/${PV}-1/submodules/${MY_P}-1.tar.xz" - else - SRC_URI="https://download.qt.io/official_releases/qt/${PV%.*}/${PV}/submodules/${MY_P}.tar.xz" - fi + SRC_URI="https://download.qt.io/official_releases/qt/${PV%.*}/${PV}/submodules/${MY_P}.tar.xz" S=${WORKDIR}/${MY_P} ;; esac