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 7C39F158094 for ; Wed, 29 Jun 2022 08:44:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 767AEE0BFC; Wed, 29 Jun 2022 08:44:33 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 5C66AE0BFC for ; Wed, 29 Jun 2022 08:44:33 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 3393E341929 for ; Wed, 29 Jun 2022 08:44:32 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6899650C for ; Wed, 29 Jun 2022 08:44:30 +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: <1656492259.84e39b72b58e4786e8f6b73d3825aa1c1923b8f2.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-wm/page/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-wm/page/page-1.9.9-r3.ebuild x11-wm/page/page-1.9.9-r4.ebuild X-VCS-Directories: x11-wm/page/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 84e39b72b58e4786e8f6b73d3825aa1c1923b8f2 X-VCS-Branch: master Date: Wed, 29 Jun 2022 08:44:30 +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: b1124638-1a44-4ed1-84b3-47cd33a1b31b X-Archives-Hash: 433f0fd8866f7e87f1347fb677fba645 commit: 84e39b72b58e4786e8f6b73d3825aa1c1923b8f2 Author: David Seifert gentoo org> AuthorDate: Wed Jun 29 08:44:19 2022 +0000 Commit: David Seifert gentoo org> CommitDate: Wed Jun 29 08:44:19 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=84e39b72 x11-wm/page: update EAPI 6 -> 8 Signed-off-by: David Seifert gentoo.org> x11-wm/page/{page-1.9.9-r3.ebuild => page-1.9.9-r4.ebuild} | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/x11-wm/page/page-1.9.9-r3.ebuild b/x11-wm/page/page-1.9.9-r4.ebuild similarity index 80% rename from x11-wm/page/page-1.9.9-r3.ebuild rename to x11-wm/page/page-1.9.9-r4.ebuild index a5c53381b117..f486626b160b 100644 --- a/x11-wm/page/page-1.9.9-r3.ebuild +++ b/x11-wm/page/page-1.9.9-r4.ebuild @@ -1,7 +1,7 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=8 inherit autotools @@ -25,7 +25,6 @@ RDEPEND=" >=x11-libs/cairo-1.14.6[X,xcb(+)] >=x11-libs/pango-1.40.5 >=dev-libs/glib-2.50.3-r1:2" - DEPEND="${RDEPEND} >=x11-base/xcb-proto-1.12-r2 x11-base/xorg-proto" @@ -40,8 +39,8 @@ src_install() { # Solves file collision with dev-tcltk/tcllib, bug #574074 ebegin "Changing references from 'page' to 'pagewm'" - mv "${D}"usr/bin/page "${D}"usr/bin/pagewm || die "Could not rename binary!" - sed -i -e "s:/usr/bin/page:/usr/bin/pagewm:" "${D}"usr/share/applications/page.desktop || die "Could not change .desktop file!" + mv "${ED}"/usr/bin/page "${ED}"/usr/bin/pagewm || die "Could not rename binary!" + sed -i -e "s:/usr/bin/page:/usr/bin/pagewm:" "${ED}"/usr/share/applications/page.desktop || die "Could not change .desktop file!" eend $? }