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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 8BA47158094 for ; Tue, 21 Jun 2022 16:30:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9DB60E0867; Tue, 21 Jun 2022 16:30:00 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 8266FE0867 for ; Tue, 21 Jun 2022 16:30:00 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 7C758341506 for ; Tue, 21 Jun 2022 16:29:59 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 18C1850E for ; Tue, 21 Jun 2022 16:29:58 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1655828969.500866eab31c3787fcfe1fc22dccabcac47061d2.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/libepubgen/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-text/libepubgen/libepubgen-0.1.1-r1.ebuild app-text/libepubgen/libepubgen-0.1.1.ebuild X-VCS-Directories: app-text/libepubgen/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 500866eab31c3787fcfe1fc22dccabcac47061d2 X-VCS-Branch: master Date: Tue, 21 Jun 2022 16:29:58 +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: 8f04a9a6-294f-4f1f-9b32-b4eac0d4e90b X-Archives-Hash: a1957d05c06e56bb69682c8fd26a6818 commit: 500866eab31c3787fcfe1fc22dccabcac47061d2 Author: David Seifert gentoo org> AuthorDate: Tue Jun 21 16:29:29 2022 +0000 Commit: David Seifert gentoo org> CommitDate: Tue Jun 21 16:29:29 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=500866ea app-text/libepubgen: update EAPI 6 -> 8 Signed-off-by: David Seifert gentoo.org> .../{libepubgen-0.1.1.ebuild => libepubgen-0.1.1-r1.ebuild} | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/app-text/libepubgen/libepubgen-0.1.1.ebuild b/app-text/libepubgen/libepubgen-0.1.1-r1.ebuild similarity index 91% rename from app-text/libepubgen/libepubgen-0.1.1.ebuild rename to app-text/libepubgen/libepubgen-0.1.1-r1.ebuild index 6623d64ea80e..69c7f96f801a 100644 --- a/app-text/libepubgen/libepubgen-0.1.1.ebuild +++ b/app-text/libepubgen/libepubgen-0.1.1-r1.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=8 DESCRIPTION="EPUB generator for librevenge" HOMEPAGE="https://sourceforge.net/projects/libepubgen/" @@ -18,13 +18,15 @@ RDEPEND=" " DEPEND="${RDEPEND} dev-libs/boost - virtual/pkgconfig - doc? ( app-doc/doxygen ) test? ( dev-util/cppunit dev-libs/libxml2:2 ) " +BDEPEND=" + virtual/pkgconfig + doc? ( app-doc/doxygen ) +" src_configure() { econf \ @@ -36,5 +38,5 @@ src_configure() { src_install() { default - find "${D}" -name '*.la' -delete || die + find "${ED}" -name '*.la' -delete || die }