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 55280138350 for ; Sun, 23 Feb 2020 17:55:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6FF41E0874; Sun, 23 Feb 2020 17:55:37 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 41912E0874 for ; Sun, 23 Feb 2020 17:55:37 +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 E7E9934EF9C for ; Sun, 23 Feb 2020 17:55:35 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BB512CF for ; Sun, 23 Feb 2020 17:55:33 +0000 (UTC) From: "Matt Turner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Turner" Message-ID: <1582480523.b345b5d0c618bdcf8626c8ca3824a5801be9aa95.mattst88@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-power/powertop/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-power/powertop/powertop-9999.ebuild X-VCS-Directories: sys-power/powertop/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: b345b5d0c618bdcf8626c8ca3824a5801be9aa95 X-VCS-Branch: master Date: Sun, 23 Feb 2020 17:55:33 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 21d26e88-5e08-49dc-8843-1d495678d2a1 X-Archives-Hash: b1c2086036fcd759745e5f7be0755dc3 commit: b345b5d0c618bdcf8626c8ca3824a5801be9aa95 Author: Matt Turner gentoo org> AuthorDate: Sun Feb 23 17:53:38 2020 +0000 Commit: Matt Turner gentoo org> CommitDate: Sun Feb 23 17:55:23 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b345b5d0 sys-power/powertop: Use tarballs from github The 2.11 tarball has a bizarre name, and we have to run eautoreconf anyway. Signed-off-by: Matt Turner gentoo.org> sys-power/powertop/powertop-9999.ebuild | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/sys-power/powertop/powertop-9999.ebuild b/sys-power/powertop/powertop-9999.ebuild index 165318e3ddd..bf3642c77e9 100644 --- a/sys-power/powertop/powertop-9999.ebuild +++ b/sys-power/powertop/powertop-9999.ebuild @@ -9,10 +9,8 @@ if [[ ${PV} == "9999" ]] ; then GIT_ECLASS="git-r3" SRC_URI="" else - SRC_URI="https://01.org/sites/default/files/downloads/${PN}-v${PV}.tar.gz" + SRC_URI="https://github.com/fenrus75/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux" - MY_P="${PN}-v${PV}" - S="${WORKDIR}/${MY_P}" fi inherit autotools ${GIT_ECLASS} linux-info @@ -104,10 +102,8 @@ src_prepare() { # Bug 599114 sed -i '1s|^|AX_REQUIRE_DEFINED([AX_CXX_COMPILE_STDCXX_11])|' configure.ac || die - if [[ ${PV} == "9999" ]] ; then - chmod +x scripts/version || die "Failed to make 'scripts/version' executable" - scripts/version || die "Failed to extract version information" - fi + chmod +x scripts/version || die "Failed to make 'scripts/version' executable" + scripts/version || die "Failed to extract version information" eautoreconf }