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 19E42138239 for ; Sat, 14 Mar 2020 17:59:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7D6B5E0C7A; Sat, 14 Mar 2020 17:59:29 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 65AFCE0C7A for ; Sat, 14 Mar 2020 17:59:29 +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 55D8D34EEE4 for ; Sat, 14 Mar 2020 17:59:28 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 14186188 for ; Sat, 14 Mar 2020 17:59:25 +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: <1584208739.002382d72ade36880aab165f52d0196653a73b01.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-gfx/icoutils/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-gfx/icoutils/icoutils-0.32.3.ebuild X-VCS-Directories: media-gfx/icoutils/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 002382d72ade36880aab165f52d0196653a73b01 X-VCS-Branch: master Date: Sat, 14 Mar 2020 17:59:25 +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: 5ff6b3fa-d708-4ce9-868b-2ef648dc86e2 X-Archives-Hash: 81efbeda83ebc9e1bea84e36d82cf628 commit: 002382d72ade36880aab165f52d0196653a73b01 Author: Andreas Sturmlechner gentoo org> AuthorDate: Sat Mar 14 17:56:22 2020 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sat Mar 14 17:58:59 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=002382d7 media-gfx/icoutils: EAPI-7 bump, add missing || die Package-Manager: Portage-2.3.93, Repoman-2.3.20 Signed-off-by: Andreas Sturmlechner gentoo.org> media-gfx/icoutils/icoutils-0.32.3.ebuild | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/media-gfx/icoutils/icoutils-0.32.3.ebuild b/media-gfx/icoutils/icoutils-0.32.3.ebuild index eb74cde3dc6..c4b7e5ddf98 100644 --- a/media-gfx/icoutils/icoutils-0.32.3.ebuild +++ b/media-gfx/icoutils/icoutils-0.32.3.ebuild @@ -1,7 +1,8 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI="6" +EAPI=7 + inherit autotools flag-o-matic DESCRIPTION="Tools to extract and convert images in icon and cursor files (.ico, .cur)" @@ -13,6 +14,9 @@ SLOT="0" KEYWORDS="~amd64 ~arm ~ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos" IUSE="nls" +BDEPEND=" + nls? ( sys-devel/gettext ) +" RDEPEND=" >=dev-lang/perl-5.6 >=dev-perl/libwww-perl-5.64 @@ -20,21 +24,16 @@ RDEPEND=" sys-libs/zlib nls? ( virtual/libintl ) " -DEPEND=" - ${RDEPEND} - nls? ( sys-devel/gettext ) -" +DEPEND="${RDEPEND}" DOCS=( AUTHORS ChangeLog NEWS README TODO ) -PATCHES=( - "${FILESDIR}"/${PN}-0.29.1-{locale,gettext}.patch -) +PATCHES=( "${FILESDIR}"/${PN}-0.29.1-{locale,gettext}.patch ) src_prepare() { default rm m4/po.m4* || die - cp /usr/share/aclocal/po.m4 m4/ + cp /usr/share/aclocal/po.m4 m4/ || die AT_M4DIR=m4 eautoreconf }