From owner-freebsd-desktop@freebsd.org Sun Mar 22 02:04:29 2020 Return-Path: Delivered-To: freebsd-desktop@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 D798327313F for ; Sun, 22 Mar 2020 02:04:29 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.nyi.freebsd.org (mailman.nyi.freebsd.org [IPv6:2610:1c1:1:606c::50:13]) by mx1.freebsd.org (Postfix) with ESMTP id 48lLRd5RBYz3D61 for ; Sun, 22 Mar 2020 02:04:29 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.nyi.freebsd.org (Postfix) id BA6C327313D; Sun, 22 Mar 2020 02:04:29 +0000 (UTC) Delivered-To: desktop@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 BA2E427313C for ; Sun, 22 Mar 2020 02:04:29 +0000 (UTC) (envelope-from bugzilla-noreply@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) server-signature RSA-PSS (4096 bits) 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 48lLRd4Yfgz3D5x for ; Sun, 22 Mar 2020 02:04:29 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2610:1c1:1:606c::50:1d]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 96F221E182 for ; Sun, 22 Mar 2020 02:04:29 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.5]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id 02M24Tt0023975 for ; Sun, 22 Mar 2020 02:04:29 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id 02M24T6a023974 for desktop@FreeBSD.org; Sun, 22 Mar 2020 02:04:29 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: www set sender to bugzilla-noreply@freebsd.org using -f From: bugzilla-noreply@freebsd.org To: desktop@FreeBSD.org Subject: [Bug 239167] x11-fonts/fontconfig: update to 2.13.1 Date: Sun, 22 Mar 2020 02:04:29 +0000 X-Bugzilla-Reason: AssignedTo CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: lightside@gmx.com X-Bugzilla-Status: In Progress X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: desktop@FreeBSD.org X-Bugzilla-Flags: maintainer-feedback+ exp-run? X-Bugzilla-Changed-Fields: cc flagtypes.name attachments.created Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-desktop@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Using and improving FreeBSD on the desktop List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 22 Mar 2020 02:04:29 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D239167 lightside changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |desktop@FreeBSD.org Attachment #212601| |maintainer-approval?(deskto Flags| |p@FreeBSD.org) --- Comment #25 from lightside --- Created attachment 212601 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=3D212601&action= =3Dedit Proposed patch (since 528458 revision) Hello, Li-Wen Hsu. (In reply to comment #24) > It seems all font ports will have leftover after uninstalling in poudriere > <..> I did some search in /usr/local/share/fonts directory: -8<-- % cd /usr/local/share/fonts && find . -type f -name .uuid ./util/.uuid ./webfonts/.uuid ./100dpi/.uuid ./75dpi/.uuid ./cyrillic/.uuid ./misc/.uuid ./encodings/large/.uuid ./encodings/.uuid ./dejavu/.uuid ./TTF/.uuid ./OTF/.uuid ./Type1/.uuid <..> ./.uuid <..> -->8- and this is true, that there are ".uuid" files in it and font's subdirector= ies. I didn't notice this, because these hidden files were created after fc-cache usage. Probably possible to create uninstall script or some @unexec pkg-plist entr= y, which uses following command after fontconfig's deinstall: cd /usr/local/share/fonts && find . -type f -name .uuid -delete && find * -= type d -empty -delete But mentioned command may delete user's created empty directories in ${PREFIX}/share/fonts directory also. Or somehow register removal of .uuid file(s) for %%FONTSDIR%% of concrete font's port (and probably x11-fonts/encodings port also). While x11-fonts/fontconfig port may check ${PREFIX}/share/fonts/.uuid file after deinstall. Attached patch for first variant, just in case. --=20 You are receiving this mail because: You are the assignee for the bug. You are on the CC list for the bug.=