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 CFF6B1382C5 for ; Wed, 4 Apr 2018 23:40:59 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D787BE09B5; Wed, 4 Apr 2018 23:40:58 +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 B4A35E09B5 for ; Wed, 4 Apr 2018 23:40:58 +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 77B3D335C2C for ; Wed, 4 Apr 2018 23:40:57 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 47F2325A for ; Wed, 4 Apr 2018 23:40:55 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1522885192.39105cf94fd09448aecf4bc5747c86b12e75268e.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-wm/aewm++/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-wm/aewm++/aewm++-1.1.5-r2.ebuild X-VCS-Directories: x11-wm/aewm++/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 39105cf94fd09448aecf4bc5747c86b12e75268e X-VCS-Branch: master Date: Wed, 4 Apr 2018 23:40:55 +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: a8e5123d-8a15-45b0-90fb-9454b193ad38 X-Archives-Hash: 77ccfe047560127a6b0dfb80668eed71 commit: 39105cf94fd09448aecf4bc5747c86b12e75268e Author: Michael Mair-Keimberger gmail com> AuthorDate: Sat Mar 31 06:31:01 2018 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Wed Apr 4 23:39:52 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=39105cf9 x11-wm/aewm++: update to EAPI6 Closes: https://github.com/gentoo/gentoo/pull/7731 x11-wm/aewm++/aewm++-1.1.5-r2.ebuild | 19 +++++++------------ 1 file changed, 7 insertions(+), 12 deletions(-) diff --git a/x11-wm/aewm++/aewm++-1.1.5-r2.ebuild b/x11-wm/aewm++/aewm++-1.1.5-r2.ebuild index 843c906b41a..601677e367b 100644 --- a/x11-wm/aewm++/aewm++-1.1.5-r2.ebuild +++ b/x11-wm/aewm++/aewm++-1.1.5-r2.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -EAPI=5 -inherit eutils toolchain-funcs +EAPI=6 +inherit toolchain-funcs DESCRIPTION="A window manager with more modern features than aewm" HOMEPAGE="https://github.com/frankhale/aewmpp" @@ -19,16 +19,11 @@ DEPEND="${RDEPEND} x11-proto/xextproto x11-proto/xproto" -src_prepare() { - epatch "${FILESDIR}"/${P}-gcc43.patch \ - "${FILESDIR}"/${P}-makefile.patch -} +PATCHES=( + "${FILESDIR}"/${P}-gcc43.patch + "${FILESDIR}"/${P}-makefile.patch +) src_compile() { emake CXX="$(tc-getCXX)" } - -src_install() { - emake DESTDIR="${D}" install - dodoc ChangeLog README -}