From owner-dev-commits-ports-all@freebsd.org Wed Apr 7 11:54:15 2021 Return-Path: Delivered-To: dev-commits-ports-all@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 BA11C5D3DBA; Wed, 7 Apr 2021 11:54:15 +0000 (UTC) (envelope-from git@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 "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4FFjVH4xVDz3CDt; Wed, 7 Apr 2021 11:54:15 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org (gitrepo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:5]) (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 did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 9C8DC1EC23; Wed, 7 Apr 2021 11:54:15 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org ([127.0.1.44]) by gitrepo.freebsd.org (8.16.1/8.16.1) with ESMTP id 137BsFqc027780; Wed, 7 Apr 2021 11:54:15 GMT (envelope-from git@gitrepo.freebsd.org) Received: (from git@localhost) by gitrepo.freebsd.org (8.16.1/8.16.1/Submit) id 137BsFMR027779; Wed, 7 Apr 2021 11:54:15 GMT (envelope-from git) Date: Wed, 7 Apr 2021 11:54:15 GMT Message-Id: <202104071154.137BsFMR027779@gitrepo.freebsd.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org From: Tobias Kortkamp Subject: git: d27b286dc212 - main - x11-themes/gtk-arc-themes: Speed up build MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Git-Committer: tobik X-Git-Repository: ports X-Git-Refname: refs/heads/main X-Git-Reftype: branch X-Git-Commit: d27b286dc212485a817f5941964d59a07b00a17a Auto-Submitted: auto-generated X-BeenThere: dev-commits-ports-all@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: Commit messages for all branches of the ports repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Apr 2021 11:54:15 -0000 The branch main has been updated by tobik: URL: https://cgit.FreeBSD.org/ports/commit/?id=d27b286dc212485a817f5941964d59a07b00a17a commit d27b286dc212485a817f5941964d59a07b00a17a Author: Tobias Kortkamp AuthorDate: 2021-04-07 11:47:09 +0000 Commit: Tobias Kortkamp CommitDate: 2021-04-07 11:49:48 +0000 x11-themes/gtk-arc-themes: Speed up build The build is insanely slow. Inkscape tries to connect to 127.0.0.1:9090 (probably gtk3's broadway backend) which has to timeout first until the next inkscape call. If this would only happen a couple of times it would be ok but it happens >500 times. Disable all GDK backends to prevent that. Unable to init server: Could not connect to 127.0.0.1: Connection refused http://package18.nyi.freebsd.org/data/122amd64-default-foo/2021-04-05_21h03m50s/logs/errors/gtk-arc-themes-20210127.log --- x11-themes/gtk-arc-themes/Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/x11-themes/gtk-arc-themes/Makefile b/x11-themes/gtk-arc-themes/Makefile index bb43909806f0..b19406c6caa2 100644 --- a/x11-themes/gtk-arc-themes/Makefile +++ b/x11-themes/gtk-arc-themes/Makefile @@ -31,5 +31,9 @@ MESON_ARGS= -Dthemes=cinnamon,gnome-shell,gtk2,gtk3,metacity,plank,unity,xfwm \ -Dcinnamon_version=4.8 \ -Dgnome_shell_version=3.38 \ -Dgtk3_version=3.24 +# Speed up build in Poudriere. It calls inkscape a bazillion times +# and each instance tries to connect to 127.0.0.1:9090 which seems +# to be because of gtk3's broadway backend. Disable all GDK backends. +MAKE_ENV= GDK_BACKEND="" .include