From owner-svn-ports-head@freebsd.org Fri Dec 25 13:30:41 2020 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id A0D134C1953; Fri, 25 Dec 2020 13:30:41 +0000 (UTC) (envelope-from riggs@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (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 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4D2SW53yqXz3DNX; Fri, 25 Dec 2020 13:30:41 +0000 (UTC) (envelope-from riggs@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 7092423886; Fri, 25 Dec 2020 13:30:41 +0000 (UTC) (envelope-from riggs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 0BPDUfFw041578; Fri, 25 Dec 2020 13:30:41 GMT (envelope-from riggs@FreeBSD.org) Received: (from riggs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 0BPDUe2Q041575; Fri, 25 Dec 2020 13:30:40 GMT (envelope-from riggs@FreeBSD.org) Message-Id: <202012251330.0BPDUe2Q041575@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: riggs set sender to riggs@FreeBSD.org using -f From: Thomas Zander Date: Fri, 25 Dec 2020 13:30:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r559241 - in head/graphics/gimp-app: . files X-SVN-Group: ports-head X-SVN-Commit-Author: riggs X-SVN-Commit-Paths: in head/graphics/gimp-app: . files X-SVN-Commit-Revision: 559241 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 Dec 2020 13:30:41 -0000 Author: riggs Date: Fri Dec 25 13:30:40 2020 New Revision: 559241 URL: https://svnweb.freebsd.org/changeset/ports/559241 Log: Fix gimp startup due to missing gegl action 'gegl:introspect'. Details: - The fix applied to the OpenBSD source tree (https://github.com/openbsd/ports/commit/b3b872c09b35d84889a2d5e1945bf3a31642296f) resolves the problem on FreeBSD as well. Approved by: fluffy Added: head/graphics/gimp-app/files/patch-app_actions_debug-actions.c (contents, props changed) head/graphics/gimp-app/files/patch-app_sanity.c (contents, props changed) Modified: head/graphics/gimp-app/Makefile Modified: head/graphics/gimp-app/Makefile ============================================================================== --- head/graphics/gimp-app/Makefile Fri Dec 25 12:51:06 2020 (r559240) +++ head/graphics/gimp-app/Makefile Fri Dec 25 13:30:40 2020 (r559241) @@ -3,7 +3,7 @@ PORTNAME?= gimp-app PORTVERSION= 2.10.20 -PORTREVISION= 12 +PORTREVISION= 13 PORTEPOCH?= 1 CATEGORIES?= graphics gnome MASTER_SITES= GIMP/gimp/v${PORTVERSION:R} Added: head/graphics/gimp-app/files/patch-app_actions_debug-actions.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/gimp-app/files/patch-app_actions_debug-actions.c Fri Dec 25 13:30:40 2020 (r559241) @@ -0,0 +1,13 @@ +--- app/actions/debug-actions.c.orig 2019-10-26 18:49:18 UTC ++++ app/actions/debug-actions.c +@@ -98,4 +98,10 @@ void + debug_actions_update (GimpActionGroup *group, + gpointer data) + { ++#define SET_SENSITIVE(action,condition) \ ++ gimp_action_group_set_action_sensitive (group, action, (condition) != 0) ++ ++ SET_SENSITIVE ("debug-show-image-graph", gegl_has_operation ("gegl:introspect")); ++ ++#undef SET_SENSITIVE + } Added: head/graphics/gimp-app/files/patch-app_sanity.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/gimp-app/files/patch-app_sanity.c Fri Dec 25 13:30:40 2020 (r559241) @@ -0,0 +1,10 @@ +--- app/sanity.c.orig 2020-06-07 20:03:47 UTC ++++ app/sanity.c +@@ -650,7 +650,6 @@ sanity_check_gegl_ops (void) + "gegl:hue-chroma", + "gegl:illusion", + "gegl:image-gradient", +- "gegl:introspect", + "gegl:invert-gamma", + "gegl:invert-linear", + "gegl:lens-blur",