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 31319139337 for ; Sun, 25 Jul 2021 23:11:45 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8E85CE0D65; Sun, 25 Jul 2021 23:11:44 +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 77EC2E0D65 for ; Sun, 25 Jul 2021 23:11:44 +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 578E5335D7C for ; Sun, 25 Jul 2021 23:11:43 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B1BE17AC for ; Sun, 25 Jul 2021 23:11:41 +0000 (UTC) From: "Marek Szuba" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Marek Szuba" Message-ID: <1627254696.a33f95c65d6b313b83b5b0f47c92f4319b1a6445.marecki@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-gfx/pngcrush/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-gfx/pngcrush/pngcrush-1.8.13.ebuild X-VCS-Directories: media-gfx/pngcrush/ X-VCS-Committer: marecki X-VCS-Committer-Name: Marek Szuba X-VCS-Revision: a33f95c65d6b313b83b5b0f47c92f4319b1a6445 X-VCS-Branch: master Date: Sun, 25 Jul 2021 23:11:41 +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: 47c90edd-a7ff-4f0b-8989-88bce8901c0e X-Archives-Hash: 530c0eb912d51a3872aba5f18be18a9e commit: a33f95c65d6b313b83b5b0f47c92f4319b1a6445 Author: Marek Szuba gentoo org> AuthorDate: Sun Jul 25 23:11:30 2021 +0000 Commit: Marek Szuba gentoo org> CommitDate: Sun Jul 25 23:11:36 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a33f95c6 media-gfx/pngcrush: update EAPI 6 -> 8 Signed-off-by: Marek Szuba gentoo.org> media-gfx/pngcrush/pngcrush-1.8.13.ebuild | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/media-gfx/pngcrush/pngcrush-1.8.13.ebuild b/media-gfx/pngcrush/pngcrush-1.8.13.ebuild index 9c204870689..9ac2937f271 100644 --- a/media-gfx/pngcrush/pngcrush-1.8.13.ebuild +++ b/media-gfx/pngcrush/pngcrush-1.8.13.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=8 inherit toolchain-funcs @@ -15,8 +15,10 @@ KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~amd64-lin RDEPEND="media-libs/libpng:0= sys-libs/zlib:=" -DEPEND="${RDEPEND} - app-arch/xz-utils" +DEPEND="${RDEPEND}" +BDEPEND="app-arch/xz-utils" + +DOCS=( ChangeLog.html ) S="${WORKDIR}"/${P}-nolib @@ -30,5 +32,5 @@ src_compile() { src_install() { dobin ${PN} - dodoc ChangeLog.html + einstalldocs }