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 D353E1382C5 for ; Thu, 22 Feb 2018 22:54:23 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E89A3E07D8; Thu, 22 Feb 2018 22:54:22 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 C784BE07D8 for ; Thu, 22 Feb 2018 22:54:22 +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 AF2A4335C3E for ; Thu, 22 Feb 2018 22:54:21 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 705CB1A3 for ; Thu, 22 Feb 2018 22:54:20 +0000 (UTC) From: "Andreas Hüttel" 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 Hüttel" Message-ID: <1519340055.515b2e39c12141f3ab943741a25e0f321ed56c27.dilfridge@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-plugins/asclock/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-plugins/asclock/asclock-2.0.12-r1.ebuild x11-plugins/asclock/asclock-2.0.12-r2.ebuild X-VCS-Directories: x11-plugins/asclock/ X-VCS-Committer: dilfridge X-VCS-Committer-Name: Andreas Hüttel X-VCS-Revision: 515b2e39c12141f3ab943741a25e0f321ed56c27 X-VCS-Branch: master Date: Thu, 22 Feb 2018 22:54:20 +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: 279c57bc-4097-44e4-8d4f-91ace787e20f X-Archives-Hash: bac436d79355524f012862ff6ac8b059 commit: 515b2e39c12141f3ab943741a25e0f321ed56c27 Author: Andreas K. Hüttel gentoo org> AuthorDate: Thu Feb 22 22:53:58 2018 +0000 Commit: Andreas Hüttel gentoo org> CommitDate: Thu Feb 22 22:54:15 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=515b2e39 x11-plugins/asclock: EAPI bump Package-Manager: Portage-2.3.24, Repoman-2.3.6 ...{asclock-2.0.12-r1.ebuild => asclock-2.0.12-r2.ebuild} | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/x11-plugins/asclock/asclock-2.0.12-r1.ebuild b/x11-plugins/asclock/asclock-2.0.12-r2.ebuild similarity index 86% rename from x11-plugins/asclock/asclock-2.0.12-r1.ebuild rename to x11-plugins/asclock/asclock-2.0.12-r2.ebuild index eb6bcd3414b..e7b14ca2e97 100644 --- a/x11-plugins/asclock/asclock-2.0.12-r1.ebuild +++ b/x11-plugins/asclock/asclock-2.0.12-r2.ebuild @@ -1,7 +1,8 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -EAPI=3 +EAPI=6 + inherit eutils toolchain-funcs IUSE="" @@ -17,8 +18,10 @@ RDEPEND="${DEPEND} x11-proto/xextproto x11-proto/xproto" +PATCHES=( "${FILESDIR}"/${PN}-gcc41.patch ) + src_prepare() { - epatch "${FILESDIR}"/${PN}-gcc41.patch + default ln -s themes/classic default_theme } @@ -58,7 +61,7 @@ src_install() { insinto ${themesdir} doins -r themes/* dodoc README README.THEMES TODO - cd "${D}"/${themesdir} - rm -f Freeamp/Makefile{,.*} - ln -s classic default_theme + cd "${D}"/${themesdir} || die + rm -f Freeamp/Makefile{,.*} || die + ln -s classic default_theme || die }