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 36E93139695 for ; Fri, 21 Jul 2017 08:47:00 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 81455E07EF; Fri, 21 Jul 2017 08:46:59 +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 610B3E07EF for ; Fri, 21 Jul 2017 08:46:59 +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 9E500341884 for ; Fri, 21 Jul 2017 08:46:58 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 61BF674BE for ; Fri, 21 Jul 2017 08:46:57 +0000 (UTC) From: "Pacho Ramos" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Pacho Ramos" Message-ID: <1500626804.310ea7808ef48ad26a85ddea2a974589b72a7158.pacho@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-benchmarks/i7z/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-benchmarks/i7z/i7z-93_p20131012.ebuild X-VCS-Directories: app-benchmarks/i7z/ X-VCS-Committer: pacho X-VCS-Committer-Name: Pacho Ramos X-VCS-Revision: 310ea7808ef48ad26a85ddea2a974589b72a7158 X-VCS-Branch: master Date: Fri, 21 Jul 2017 08:46:57 +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: 81fdea24-1881-4c5b-bf15-4201607704f6 X-Archives-Hash: 8bae213d35ab06fa469e076f53aa74d1 commit: 310ea7808ef48ad26a85ddea2a974589b72a7158 Author: Pacho Ramos gentoo org> AuthorDate: Fri Jul 21 08:42:54 2017 +0000 Commit: Pacho Ramos gentoo org> CommitDate: Fri Jul 21 08:46:44 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=310ea780 app-benchmarks/i7z: Drop old Package-Manager: Portage-2.3.6, Repoman-2.3.2 app-benchmarks/i7z/i7z-93_p20131012.ebuild | 68 ------------------------------ 1 file changed, 68 deletions(-) diff --git a/app-benchmarks/i7z/i7z-93_p20131012.ebuild b/app-benchmarks/i7z/i7z-93_p20131012.ebuild deleted file mode 100644 index e08e1a871e5..00000000000 --- a/app-benchmarks/i7z/i7z-93_p20131012.ebuild +++ /dev/null @@ -1,68 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit flag-o-matic qmake-utils toolchain-funcs - -COMMIT="5023138d7c35c4667c938b853e5ea89737334e92" -DESCRIPTION="A better i7 (and now i3, i5) reporting tool for Linux" -HOMEPAGE="https://github.com/ajaiantilal/i7z" -SRC_URI="https://github.com/ajaiantilal/${PN}/archive/${COMMIT}.tar.gz -> ${P}.tar.gz" -SLOT="0" -LICENSE="GPL-2" -KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux" -IUSE="qt4 qt5" - -RDEPEND="sys-libs/ncurses:0= - qt5? ( - dev-qt/qtcore:5= - dev-qt/qtgui:5= - dev-qt/qtwidgets:5= - ) - !qt5? ( qt4? ( - dev-qt/qtcore:4= - dev-qt/qtgui:4= - ) )" - -DEPEND="${RDEPEND}" - -PATCHES=( - "${FILESDIR}"/i7z-0.27.2-ncurses.patch - "${FILESDIR}"/qt5.patch - "${FILESDIR}"/gcc5.patch -) - -S="${WORKDIR}/${PN}-${COMMIT}" - -src_configure() { - # The GUI segfaults with -O1. None of the documented flags make a - # difference. There may not be a specific flag for the culprit. - filter-flags "-O*" - - tc-export CC - cd GUI || die - - if use qt5; then - eqmake5 ${PN}_GUI.pro - elif use qt4; then - eqmake4 ${PN}_GUI.pro - fi -} - -src_compile() { - default - - if use qt5 || use qt4; then - emake -C GUI clean - emake -C GUI - fi -} - -src_install() { - emake DESTDIR="${ED}" docdir=/usr/share/doc/${PF} install - - if use qt5 || use qt4; then - dosbin GUI/i7z_GUI - fi -}