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 8CF0A13997D for ; Sun, 10 Nov 2019 10:31:59 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F148FE09B6; Sun, 10 Nov 2019 10:30:27 +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 6B60DE0A85 for ; Sun, 10 Nov 2019 10:30:26 +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 03B5A34CC8B for ; Sat, 9 Nov 2019 21:53:58 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 101F98AB for ; Sat, 9 Nov 2019 21:53:56 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1573336382.3547b7cceb7d14935d535a3a926d0dc23d378859.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-themes/flatsvg/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-themes/flatsvg/flatsvg-1.0.ebuild X-VCS-Directories: x11-themes/flatsvg/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 3547b7cceb7d14935d535a3a926d0dc23d378859 X-VCS-Branch: master Date: Sat, 9 Nov 2019 21:53:56 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 0a69a98f-b9af-4833-aa3a-dc2bc49660ae X-Archives-Hash: 1a29bc448093e77f67b246b4e5417ea3 commit: 3547b7cceb7d14935d535a3a926d0dc23d378859 Author: Michał Górny gentoo org> AuthorDate: Sat Nov 9 21:49:08 2019 +0000 Commit: Michał Górny gentoo org> CommitDate: Sat Nov 9 21:53:02 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3547b7cc x11-themes/flatsvg: Bump to EAPI 7 Closes: https://bugs.gentoo.org/697136 Signed-off-by: Michał Górny gentoo.org> x11-themes/flatsvg/flatsvg-1.0.ebuild | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/x11-themes/flatsvg/flatsvg-1.0.ebuild b/x11-themes/flatsvg/flatsvg-1.0.ebuild index 28ab0482ab0..79457371b8b 100644 --- a/x11-themes/flatsvg/flatsvg-1.0.ebuild +++ b/x11-themes/flatsvg/flatsvg-1.0.ebuild @@ -1,11 +1,11 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=0 +EAPI=7 DESCRIPTION="Flat SVG icon set" -SRC_URI="http://www.atqu23.dsl.pipex.com/danny/flatSVG${PV}.tar.gz" HOMEPAGE="http://www.kde-look.org/content/show.php?content=17158" +SRC_URI="http://www.atqu23.dsl.pipex.com/danny/flatSVG${PV}.tar.gz" LICENSE="LGPL-2" SLOT="0" @@ -15,6 +15,6 @@ IUSE="" S=${WORKDIR}/FlatSVG src_install() { - dodir /usr/share/icons - cp -rf "${S}" "${D}/usr/share/icons/FlatSVG" + insinto /usr/share/icons + doins -r "${S}" }