From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-934594-garchives=archives.gentoo.org@lists.gentoo.org> 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 5493D139694 for <garchives@archives.gentoo.org>; Sat, 25 Feb 2017 14:15:59 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 03C5AE0D1B; Sat, 25 Feb 2017 14:15:38 +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 D7020E0D1B for <gentoo-commits@lists.gentoo.org>; Sat, 25 Feb 2017 14:15:32 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 15A633414C1 for <gentoo-commits@lists.gentoo.org>; Sat, 25 Feb 2017 14:15:32 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AAD6D5432 for <gentoo-commits@lists.gentoo.org>; Sat, 25 Feb 2017 14:15:28 +0000 (UTC) From: "David Seifert" <soap@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" <soap@gentoo.org> Message-ID: <1488032099.3a9f15ec11b8d2c74bd22ba11ae4db8b623df90a.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/unclutter/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-misc/unclutter/unclutter-8-r3.ebuild x11-misc/unclutter/unclutter-8-r4.ebuild X-VCS-Directories: x11-misc/unclutter/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 3a9f15ec11b8d2c74bd22ba11ae4db8b623df90a X-VCS-Branch: master Date: Sat, 25 Feb 2017 14:15:28 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: a5e9d3d8-a029-440f-83d7-8d32cc04df5e X-Archives-Hash: 30442633b49cc7c904ddeeb1bbfaf2c8 commit: 3a9f15ec11b8d2c74bd22ba11ae4db8b623df90a Author: Harri Nieminen <moikkis <AT> gmail <DOT> com> AuthorDate: Thu Feb 23 16:41:03 2017 +0000 Commit: David Seifert <soap <AT> gentoo <DOT> org> CommitDate: Sat Feb 25 14:14:59 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3a9f15ec x11-misc/unclutter: EAPI bump 5 -> 6 Package-Manager: Portage-2.3.3, Repoman-2.3.1 Closes: https://github.com/gentoo/gentoo/pull/4071 .../{unclutter-8-r3.ebuild => unclutter-8-r4.ebuild} | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/x11-misc/unclutter/unclutter-8-r3.ebuild b/x11-misc/unclutter/unclutter-8-r4.ebuild similarity index 75% rename from x11-misc/unclutter/unclutter-8-r3.ebuild rename to x11-misc/unclutter/unclutter-8-r4.ebuild index 260ebc9d0e..1372a6c79a 100644 --- a/x11-misc/unclutter/unclutter-8-r3.ebuild +++ b/x11-misc/unclutter/unclutter-8-r4.ebuild @@ -1,10 +1,10 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ -EAPI=5 +EAPI=6 -inherit eutils toolchain-funcs +inherit toolchain-funcs DESCRIPTION="Hides mouse pointer while not in use" HOMEPAGE="http://www.ibiblio.org/pub/X11/contrib/utilities/unclutter-8.README" @@ -20,11 +20,10 @@ DEPEND="${RDEPEND} S=${WORKDIR}/${PN} -src_prepare() { - epatch \ - "${FILESDIR}"/${P}-include.patch \ - "${FILESDIR}"/${P}-FocusOut.patch -} +PATCHES=( + "${FILESDIR}"/${P}-include.patch + "${FILESDIR}"/${P}-FocusOut.patch +) src_compile() { emake CDEBUGFLAGS="${CFLAGS}" CC="$(tc-getCC)" LDOPTIONS="${LDFLAGS}" @@ -33,5 +32,5 @@ src_compile() { src_install () { dobin unclutter newman unclutter.man unclutter.1x - dodoc README + einstalldocs }