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 83B96138334 for ; Thu, 2 Aug 2018 09:42:07 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 098A3E077D; Thu, 2 Aug 2018 09:42:06 +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 CBB84E077D for ; Thu, 2 Aug 2018 09:42:05 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 14807335CE4 for ; Thu, 2 Aug 2018 09:42:04 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3A55E348 for ; Thu, 2 Aug 2018 09:42:02 +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: <1533202916.7ef53c07f95acb9d6ce3c41d4365a5805988bc78.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-r1.ebuild X-VCS-Directories: app-benchmarks/i7z/ X-VCS-Committer: pacho X-VCS-Committer-Name: Pacho Ramos X-VCS-Revision: 7ef53c07f95acb9d6ce3c41d4365a5805988bc78 X-VCS-Branch: master Date: Thu, 2 Aug 2018 09:42:02 +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: 60c294a1-2b58-44cd-8791-80a4ca6c2fff X-Archives-Hash: 697980e6175b4afde0296241517813d4 commit: 7ef53c07f95acb9d6ce3c41d4365a5805988bc78 Author: Pacho Ramos gentoo org> AuthorDate: Thu Aug 2 09:41:22 2018 +0000 Commit: Pacho Ramos gentoo org> CommitDate: Thu Aug 2 09:41:56 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7ef53c07 app-benchmarks/i7z: Drop old Package-Manager: Portage-2.3.43, Repoman-2.3.10 app-benchmarks/i7z/i7z-93_p20131012-r1.ebuild | 69 --------------------------- 1 file changed, 69 deletions(-) diff --git a/app-benchmarks/i7z/i7z-93_p20131012-r1.ebuild b/app-benchmarks/i7z/i7z-93_p20131012-r1.ebuild deleted file mode 100644 index 20080024b0f..00000000000 --- a/app-benchmarks/i7z/i7z-93_p20131012-r1.ebuild +++ /dev/null @@ -1,69 +0,0 @@ -# Copyright 1999-2018 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="qt5" - -RDEPEND=" - sys-libs/ncurses:0= - qt5? ( - dev-qt/qtcore:5 - dev-qt/qtgui:5 - dev-qt/qtwidgets:5 - ) -" -DEPEND="${RDEPEND}" - -PATCHES=( - "${FILESDIR}"/i7z-0.27.2-ncurses.patch - "${FILESDIR}"/qt5.patch - "${FILESDIR}"/gcc5.patch - - # From Debian - "${FILESDIR}"/fix-insecure-tempfile.patch - "${FILESDIR}"/fix_cpuid_asm.patch - "${FILESDIR}"/hyphen-used-as-minus-sign.patch - "${FILESDIR}"/install-i7z_rw_registers.patch - "${FILESDIR}"/use_stdbool.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. - # Looks to work fine for me with -O2 (pacho - 20170530) -# filter-flags "-O*" - - tc-export CC PKG_CONFIG - cd GUI || die - - use qt5 && eqmake5 ${PN}_GUI.pro -} - -src_compile() { - default - - if use qt5; then - emake -C GUI clean - emake -C GUI - fi -} - -src_install() { - emake DESTDIR="${ED}" docdir=/usr/share/doc/${PF} install - - if use qt5; then - dosbin GUI/i7z_GUI - fi -}