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) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 43664158041 for ; Sun, 10 Mar 2024 09:16:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4A12EE2A2C; Sun, 10 Mar 2024 09:16:24 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 2BBAFE2A2C for ; Sun, 10 Mar 2024 09:16:24 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 53C2D33C1EB for ; Sun, 10 Mar 2024 09:16:23 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8F81610B0 for ; Sun, 10 Mar 2024 09:16:21 +0000 (UTC) From: "Arthur Zamarin" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Arthur Zamarin" Message-ID: <1710062166.25678977f2739e4f105e50799fe9f946e164b5d0.arthurzam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/open-vcdiff/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/open-vcdiff/open-vcdiff-0.8.4-r1.ebuild dev-util/open-vcdiff/open-vcdiff-0.8.4-r2.ebuild X-VCS-Directories: dev-util/open-vcdiff/ X-VCS-Committer: arthurzam X-VCS-Committer-Name: Arthur Zamarin X-VCS-Revision: 25678977f2739e4f105e50799fe9f946e164b5d0 X-VCS-Branch: master Date: Sun, 10 Mar 2024 09:16:21 +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: e5ce1112-cee1-4565-8262-9d8b1a85d110 X-Archives-Hash: 0d09c6246e9876b9d0929a428b4a3e79 commit: 25678977f2739e4f105e50799fe9f946e164b5d0 Author: Michael Mair-Keimberger levelnine at> AuthorDate: Thu Jan 25 19:08:28 2024 +0000 Commit: Arthur Zamarin gentoo org> CommitDate: Sun Mar 10 09:16:06 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=25678977 dev-util/open-vcdiff: EAPI8 bump, fix bug 804447 Signed-off-by: Michael Mair-Keimberger levelnine.at> Closes: https://bugs.gentoo.org/804447 Closes: https://github.com/gentoo/gentoo/pull/35018 Signed-off-by: Arthur Zamarin gentoo.org> ...pen-vcdiff-0.8.4-r1.ebuild => open-vcdiff-0.8.4-r2.ebuild} | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/dev-util/open-vcdiff/open-vcdiff-0.8.4-r1.ebuild b/dev-util/open-vcdiff/open-vcdiff-0.8.4-r2.ebuild similarity index 71% rename from dev-util/open-vcdiff/open-vcdiff-0.8.4-r1.ebuild rename to dev-util/open-vcdiff/open-vcdiff-0.8.4-r2.ebuild index 18324677305e..2458630842fc 100644 --- a/dev-util/open-vcdiff/open-vcdiff-0.8.4-r1.ebuild +++ b/dev-util/open-vcdiff/open-vcdiff-0.8.4-r2.ebuild @@ -1,7 +1,7 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=8 DESCRIPTION="An encoder/decoder for the VCDIFF (RFC3284) format" HOMEPAGE="https://github.com/google/open-vcdiff" @@ -10,12 +10,13 @@ SRC_URI="https://dev.gentoo.org/~floppym/dist/${P}.tar.gz" LICENSE="Apache-2.0" SLOT="0/0" KEYWORDS="~amd64 ~x86" -IUSE="" PATCHES=( "${FILESDIR}"/${P}-gcc6.patch ) -src_configure() { - econf --disable-static +src_prepare() { + sed -i -e "s|^docdir =.*|docdir = \"${EPREFIX}/usr/share/doc/${PF}\"|g" \ + Makefile.in || die + default } src_install() {