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 0AD94158010 for ; Sun, 19 Feb 2023 22:04:07 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 353F7E09D6; Sun, 19 Feb 2023 22:04:04 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 19A19E09D7 for ; Sun, 19 Feb 2023 22:04:04 +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 39CA3340ED3 for ; Sun, 19 Feb 2023 22:04:03 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 00B988C6 for ; Sun, 19 Feb 2023 22:04:00 +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: <1676844216.d16a7816ce9d9bd9a79423349cba7b3826017fdb.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-themes/gtk-chtheme/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-themes/gtk-chtheme/gtk-chtheme-0.3.1-r3.ebuild x11-themes/gtk-chtheme/gtk-chtheme-0.3.1-r4.ebuild X-VCS-Directories: x11-themes/gtk-chtheme/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: d16a7816ce9d9bd9a79423349cba7b3826017fdb X-VCS-Branch: master Date: Sun, 19 Feb 2023 22:04:00 +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: 79339876-308a-495e-b5ed-61348d4f60ed X-Archives-Hash: 822ccf5ad7afab6792bfceb63cbace41 commit: d16a7816ce9d9bd9a79423349cba7b3826017fdb Author: David Seifert gentoo org> AuthorDate: Sun Feb 19 22:03:36 2023 +0000 Commit: David Seifert gentoo org> CommitDate: Sun Feb 19 22:03:36 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d16a7816 x11-themes/gtk-chtheme: update EAPI 6 -> 8 Signed-off-by: David Seifert gentoo.org> ...0.3.1-r3.ebuild => gtk-chtheme-0.3.1-r4.ebuild} | 23 +++++++++++----------- 1 file changed, 12 insertions(+), 11 deletions(-) diff --git a/x11-themes/gtk-chtheme/gtk-chtheme-0.3.1-r3.ebuild b/x11-themes/gtk-chtheme/gtk-chtheme-0.3.1-r4.ebuild similarity index 68% rename from x11-themes/gtk-chtheme/gtk-chtheme-0.3.1-r3.ebuild rename to x11-themes/gtk-chtheme/gtk-chtheme-0.3.1-r4.ebuild index bd7dd770de66..40828f11d52f 100644 --- a/x11-themes/gtk-chtheme/gtk-chtheme-0.3.1-r3.ebuild +++ b/x11-themes/gtk-chtheme/gtk-chtheme-0.3.1-r4.ebuild @@ -1,33 +1,33 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=8 + inherit toolchain-funcs DESCRIPTION="GTK-2.0 Theme Switcher" HOMEPAGE="http://plasmasturm.org/programs/gtk-chtheme/" SRC_URI="http://plasmasturm.org/programs/gtk-chtheme/${P}.tar.bz2" -IUSE="" +LICENSE="GPL-2" SLOT="0" KEYWORDS="amd64 ~arm ~arm64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux" -LICENSE="GPL-2" RDEPEND="x11-libs/gtk+:2" -DEPEND="${RDEPEND} - virtual/pkgconfig" +DEPEND="${RDEPEND}" +BDEPEND="virtual/pkgconfig" PATCHES=( "${FILESDIR}"/${P}-implicit.patch - "${FILESDIR}/${P}-asneeded.patch" # Fix forced as-needed, bug #248655 - "${FILESDIR}/${P}-qgtkstyle.patch" # Make it work with qgtkstyle, bug #250504 + "${FILESDIR}"/${P}-asneeded.patch # Fix forced as-needed, bug #248655 + "${FILESDIR}"/${P}-qgtkstyle.patch # Make it work with qgtkstyle, bug #250504 ) src_prepare() { - # QA: stop Makefile from stripping the binaries - sed -i -e "s:strip:true:" "${S}"/Makefile || die "sed failed" - default + + # QA: stop Makefile from stripping the binaries + sed -i -e "s:strip:true:" Makefile || die } src_compile() { @@ -36,4 +36,5 @@ src_compile() { src_install() { emake DESTDIR="${ED}" install + einstalldocs }