From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-1666703-garchives=archives.gentoo.org@lists.gentoo.org>
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 C7276158083
	for <garchives@archives.gentoo.org>; Sun,  1 Sep 2024 20:35:38 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id 8CA54E2A07;
	Sun,  1 Sep 2024 20:35:37 +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) server-digest SHA256)
	(No client certificate requested)
	by pigeon.gentoo.org (Postfix) with ESMTPS id 71E7DE2A07
	for <gentoo-commits@lists.gentoo.org>; Sun,  1 Sep 2024 20:35:37 +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 764743430B0
	for <gentoo-commits@lists.gentoo.org>; Sun,  1 Sep 2024 20:35:36 +0000 (UTC)
Received: from localhost.localdomain (localhost [IPv6:::1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id B093F148B
	for <gentoo-commits@lists.gentoo.org>; Sun,  1 Sep 2024 20:35:34 +0000 (UTC)
From: "Eli Schwartz" <eschwartz@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Content-Transfer-Encoding: 8bit
Content-type: text/plain; charset=UTF-8
Reply-To: gentoo-dev@lists.gentoo.org, "Eli Schwartz" <eschwartz@gentoo.org>
Message-ID: <1725222902.7d1bbb3e2d39f38f800b17d178f63a08e8061d0d.eschwartz@gentoo>
Subject: [gentoo-commits] repo/gentoo:master commit in: media-gfx/eom/
X-VCS-Repository: repo/gentoo
X-VCS-Files: media-gfx/eom/eom-1.28.0-r1.ebuild media-gfx/eom/eom-1.28.0-r2.ebuild
X-VCS-Directories: media-gfx/eom/
X-VCS-Committer: eschwartz
X-VCS-Committer-Name: Eli Schwartz
X-VCS-Revision: 7d1bbb3e2d39f38f800b17d178f63a08e8061d0d
X-VCS-Branch: master
Date: Sun,  1 Sep 2024 20:35:34 +0000 (UTC)
Precedence: bulk
List-Post: <mailto:gentoo-commits@lists.gentoo.org>
List-Help: <mailto:gentoo-commits+help@lists.gentoo.org>
List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org>
List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org>
List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org>
X-BeenThere: gentoo-commits@lists.gentoo.org
X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply
X-Archives-Salt: 0df7f1a9-61e6-445f-9878-4c2ffc79af15
X-Archives-Hash: 7a890c303b23e86876e43e66bee0e661

commit:     7d1bbb3e2d39f38f800b17d178f63a08e8061d0d
Author:     Eli Schwartz <eschwartz <AT> gentoo <DOT> org>
AuthorDate: Sun Sep  1 20:22:42 2024 +0000
Commit:     Eli Schwartz <eschwartz <AT> gentoo <DOT> org>
CommitDate: Sun Sep  1 20:35:02 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7d1bbb3e

media-gfx/eom: fix broken implementation of optfeature

It deleted the previous inherited pkg_postinst. Restore this by manually
running it.

Bug: https://github.com/gentoo/gentoo/pull/37358
Closes: https://bugs.gentoo.org/938868
Closes: https://bugs.gentoo.org/938869
Signed-off-by: Eli Schwartz <eschwartz <AT> gentoo.org>

 media-gfx/eom/{eom-1.28.0-r1.ebuild => eom-1.28.0-r2.ebuild} | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/media-gfx/eom/eom-1.28.0-r1.ebuild b/media-gfx/eom/eom-1.28.0-r2.ebuild
similarity index 97%
rename from media-gfx/eom/eom-1.28.0-r1.ebuild
rename to media-gfx/eom/eom-1.28.0-r2.ebuild
index fd6944c0fb9e..f808aaf8de76 100644
--- a/media-gfx/eom/eom-1.28.0-r1.ebuild
+++ b/media-gfx/eom/eom-1.28.0-r2.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=8
 
-inherit mate optfeature
+inherit gnome2 mate optfeature
 
 MINOR=$(($(ver_cut 2) % 2))
 if [[ ${MINOR} -eq 0 ]]; then
@@ -72,5 +72,6 @@ src_configure() {
 }
 
 pkg_postinst() {
+	gnome2_pkg_postinst
 	optfeature "webp support" gui-libs/gdk-pixbuf-loader-webp
 }