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 77EBA15800F for ; Sun, 19 Feb 2023 22:04:04 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9F8ACE09D1; Sun, 19 Feb 2023 22:04:03 +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 82407E09D0 for ; Sun, 19 Feb 2023 22:04:03 +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 8E906335D1B for ; Sun, 19 Feb 2023 22:04:02 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A6BD28BB for ; Sun, 19 Feb 2023 22:03:59 +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: <1676844212.c38c216d9790e4df49b096f675326dbbdf3d7342.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-themes/fvwm-themes/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-themes/fvwm-themes/fvwm-themes-0.7.0-r1.ebuild x11-themes/fvwm-themes/fvwm-themes-0.7.0-r2.ebuild X-VCS-Directories: x11-themes/fvwm-themes/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: c38c216d9790e4df49b096f675326dbbdf3d7342 X-VCS-Branch: master Date: Sun, 19 Feb 2023 22:03:59 +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: b0962cb5-28aa-40e4-bf01-1d8199f717dd X-Archives-Hash: 9784c23009bea30e4c74c299044e56f0 commit: c38c216d9790e4df49b096f675326dbbdf3d7342 Author: David Seifert gentoo org> AuthorDate: Sun Feb 19 22:03:32 2023 +0000 Commit: David Seifert gentoo org> CommitDate: Sun Feb 19 22:03:32 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c38c216d x11-themes/fvwm-themes: update EAPI 6 -> 8 Signed-off-by: David Seifert gentoo.org> ...-themes-0.7.0-r1.ebuild => fvwm-themes-0.7.0-r2.ebuild} | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/x11-themes/fvwm-themes/fvwm-themes-0.7.0-r1.ebuild b/x11-themes/fvwm-themes/fvwm-themes-0.7.0-r2.ebuild similarity index 73% rename from x11-themes/fvwm-themes/fvwm-themes-0.7.0-r1.ebuild rename to x11-themes/fvwm-themes/fvwm-themes-0.7.0-r2.ebuild index 3408eb54f1d6..9935fc153819 100644 --- a/x11-themes/fvwm-themes/fvwm-themes-0.7.0-r1.ebuild +++ b/x11-themes/fvwm-themes/fvwm-themes-0.7.0-r2.ebuild @@ -1,7 +1,8 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=8 + inherit autotools DESCRIPTION="A configuration framework for the fvwm window manager" @@ -14,17 +15,16 @@ KEYWORDS="~alpha amd64 ~ia64 ~ppc ~ppc64 ~riscv ~sparc x86" IUSE="gnome" RDEPEND=">=x11-wm/fvwm-2.6.2" -DEPEND="${RDEPEND} - gnome? ( virtual/imagemagick-tools )" +DEPEND="${RDEPEND}" +BDEPEND="gnome? ( virtual/imagemagick-tools )" PATCHES=( - "${FILESDIR}/${P}-gentoo.patch" - "${FILESDIR}/${P}-posix-sort.patch" + "${FILESDIR}"/${P}-gentoo.patch + "${FILESDIR}"/${P}-posix-sort.patch ) src_prepare() { default - mv configure.in configure.ac || die "moving configure.in failed" eautoreconf }