From unknown Sun Jun 15 08:31:32 2025 X-Loop: help-debbugs@gnu.org Subject: bug#65741: The URW fontconfig dilemma Resent-From: Bruno Victal Original-Sender: "Debbugs-submit" Resent-CC: bug-guix@gnu.org Resent-Date: Mon, 04 Sep 2023 17:42:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 65741 X-GNU-PR-Package: guix X-GNU-PR-Keywords: To: 65741@debbugs.gnu.org X-Debbugs-Original-To: bug-guix Received: via spool by submit@debbugs.gnu.org id=B.16938493123220 (code B ref -1); Mon, 04 Sep 2023 17:42:01 +0000 Received: (at submit) by debbugs.gnu.org; 4 Sep 2023 17:41:52 +0000 Received: from localhost ([127.0.0.1]:52513 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qdDaB-0000pr-Pa for submit@debbugs.gnu.org; Mon, 04 Sep 2023 13:41:52 -0400 Received: from lists.gnu.org ([2001:470:142::17]:36350) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qdDa9-0000pd-Lf for submit@debbugs.gnu.org; Mon, 04 Sep 2023 13:41:50 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1qdDa3-0008WC-L8 for bug-guix@gnu.org; Mon, 04 Sep 2023 13:41:43 -0400 Received: from smtpmciv1.myservices.hosting ([185.26.107.237]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1qdDa0-0001aK-So for bug-guix@gnu.org; Mon, 04 Sep 2023 13:41:43 -0400 Received: from mail1.netim.hosting (unknown [185.26.106.173]) by smtpmciv1.myservices.hosting (Postfix) with ESMTP id F37D220CAE for ; Mon, 4 Sep 2023 19:41:25 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by mail1.netim.hosting (Postfix) with ESMTP id C4B408005B; Mon, 4 Sep 2023 19:33:55 +0200 (CEST) X-Virus-Scanned: Debian amavisd-new at mail1.netim.hosting Received: from mail1.netim.hosting ([127.0.0.1]) by localhost (mail1-2.netim.hosting [127.0.0.1]) (amavisd-new, port 10026) with ESMTP id C_QdVo413P-W; Mon, 4 Sep 2023 19:33:54 +0200 (CEST) Received: from [192.168.1.116] (unknown [10.192.1.83]) (Authenticated sender: lumen@makinata.eu) by mail1.netim.hosting (Postfix) with ESMTPSA id BF02F80060; Mon, 4 Sep 2023 19:33:54 +0200 (CEST) Message-ID: Date: Mon, 4 Sep 2023 18:33:50 +0100 MIME-Version: 1.0 User-Agent: Mozilla Thunderbird Content-Language: en-US From: Bruno Victal Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=185.26.107.237; envelope-from=mirai@makinata.eu; helo=smtpmciv1.myservices.hosting X-Spam_score_int: -18 X-Spam_score: -1.9 X-Spam_bar: - X-Spam_report: (-1.9 / 5.0 requ) BAYES_00=-1.9, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: 1.0 (+) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -0.0 (/) During my attempt to build the enblend-enfuse documentation [1], it would fail and display the following message: --8<---------------cut here---------------start------------->8--- Error: fontconfig: Didn't find expected font family. Perhaps URW Type 1 fonts need installing? --8<---------------cut here---------------end--------------->8--- Naturally searching for the URW fonts in guix didn't yield anything other than some texlive packages so I ended up writing a definition for it. It turned out to be unnecessary as I later found out 'font-ghostscript' provides just that. (an issue of discoverability perhaps?) Nonetheless my newly written package (which should be “merged” into the definition of 'font-ghostscript' with a better description and perhaps a rename) is an update of what font-ghostscript provides and should work just the same, in theory. (spoilers: it doesn't) Intrigued by this difference and after some doc reading and several arcane commands thrown in desperation, I've distilled them to this: With the existing font-ghostscript package: --8<---------------cut here---------------start------------->8--- $ guix shell -C font-ghostscript fontconfig [env]$ fc-match 'Nimbus Sans L' n019003l.pfb: "Nimbus Sans L" "Regular" --8<---------------cut here---------------end--------------->8--- With the new font-urw-base35 package (definition below): --8<---------------cut here---------------start------------->8--- $ ~/src/guix/pre-inst-env guix shell -C font-urw-base35 fontconfig [env]$ fc-match 'Nimbus Sans L' DejaVuSans.ttf: "DejaVu Sans" "Book" --8<---------------cut here---------------end--------------->8--- The source of the font-urw-base35 has a file for fontconfig at 'fontconfig/urw-fallback-backwards.conf' that contains this: --8<---------------cut here---------------start------------->8--- Nimbus Sans L Nimbus Sans … --8<---------------cut here---------------end--------------->8--- So unless I misunderstood the fontconfig documentation and the comment, 'fc-match' should have found the newer Nimbus Sans, not DejaVu Sans. What gives? The definition for this font-urw-base35 package: --8<---------------cut here---------------start------------->8--- ;; Note: add #:use-module (guix build-system copy) to gnu/packages/fonts.scm. ;; when trying this out. ;; See for more information. (define-public font-urw-base35 (let ((commit "3c0ba3b5687632dfc66526544a4e811fe0ec0cd9") (revision "0") (base-version "20200910")) (package (name "font-urw-base35") (version (git-version base-version revision commit)) (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/ArtifexSoftware/urw-base35-fonts") (commit commit))) (file-name (git-file-name name version)) (sha256 (base32 "11mc9r2ap80jmh0w5jmypyq9hzyi9g9g4hcj45d5xn66m3jnlgjq")))) (build-system copy-build-system) (arguments (list #:install-plan #~`(("fonts/" "share/fonts/urw-base35" #:exclude ("README" "COPYING")) ("appstream/" "share/metainfo" #:exclude ("README.md")) ("fontconfig/" "share/fontconfig/conf.avail/" #:exclude ("README.md"))) #:phases #~(modify-phases %standard-phases (add-before 'install 'configure (lambda _ ;; Set font priority for fontconfig. (with-directory-excursion "fontconfig" (for-each (lambda (f) ;; As recommended in the README.md. (rename-file f (string-append "61-" (basename f)))) (find-files "." "\\.conf$" #:fail-on-error? #t)))))))) (home-page "https://github.com/ArtifexSoftware/urw-base35-fonts") (synopsis "URW++ base 35 font set.") (description "This package provides substitutes for the 35 fonts required by Adobe Postscript(c) Language Level 2 specification.") (license license:agpl3)))) --8<---------------cut here---------------end--------------->8--- [1]: -- Furthermore, I consider that nonfree software must be eradicated. Cheers, Bruno. From unknown Sun Jun 15 08:31:32 2025 X-Loop: help-debbugs@gnu.org Subject: bug#65741: Thanks for debugging! References: In-Reply-To: Resent-From: Felix Lechner Original-Sender: "Debbugs-submit" Resent-CC: bug-guix@gnu.org Resent-Date: Thu, 07 Sep 2023 16:49:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 65741 X-GNU-PR-Package: guix X-GNU-PR-Keywords: To: 65741@debbugs.gnu.org Cc: Bruno Victal Received: via spool by 65741-submit@debbugs.gnu.org id=B65741.169410529716207 (code B ref 65741); Thu, 07 Sep 2023 16:49:01 +0000 Received: (at 65741) by debbugs.gnu.org; 7 Sep 2023 16:48:17 +0000 Received: from localhost ([127.0.0.1]:41255 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qeIAy-0004DK-OY for submit@debbugs.gnu.org; Thu, 07 Sep 2023 12:48:16 -0400 Received: from sail-ipv4.us-core.com ([208.82.101.137]:51940) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qeIAw-0004Cq-LB for 65741@debbugs.gnu.org; Thu, 07 Sep 2023 12:48:16 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; s=2017; bh=hPU7caoJjUMpjOb SUgNK3cOSVJCix2Xva/6zgIVYtg0=; h=cc:to:subject:date:from; d=lease-up.com; b=ms7gaAEiahr+e5dEWCu2LtmLaCXPuUUWbT7g6vLG0h/ING8lhbj/ FECqH4jbAvN2jQlHU/IN7TJ096s4VGAxiEOrT9SRWgodnwrer2rHqE2qFKbWupTvQdSFU2 TN37LsuWy/tHbVMRf5bcOMn2OLAjE6bV9nFPT5d97+62kuyo8= Received: by sail-ipv4.us-core.com (OpenSMTPD) with ESMTPSA id 26896ccf (TLSv1.3:TLS_CHACHA20_POLY1305_SHA256:256:NO) for <65741@debbugs.gnu.org>; Thu, 7 Sep 2023 16:48:10 +0000 (UTC) Received: by mail-lf1-f44.google.com with SMTP id 2adb3069b0e04-502984f5018so556671e87.3 for <65741@debbugs.gnu.org>; Thu, 07 Sep 2023 09:48:10 -0700 (PDT) X-Gm-Message-State: AOJu0YxRNdlQZoDlGugh5UPZEverjwC7KJuV5ogTLGk52ezhg5vFBaao /xqrY375WtrwskAAx9zpzayYlovEBuwxum4ug0k= X-Google-Smtp-Source: AGHT+IG8M61a5JkAEnTKnDzfk5LMX2mb/nOipGE8Lju4UFOo6g5vnAVu/uWhFYkA8Bd7ffa+fNuxyJN8RZjp6bZjY9o= X-Received: by 2002:a05:6512:230b:b0:4f8:67aa:4f03 with SMTP id o11-20020a056512230b00b004f867aa4f03mr27528lfu.1.1694105288494; Thu, 07 Sep 2023 09:48:08 -0700 (PDT) MIME-Version: 1.0 From: Felix Lechner Date: Thu, 7 Sep 2023 09:47:32 -0700 X-Gmail-Original-Message-ID: Message-ID: Content-Type: text/plain; charset="UTF-8" X-Spam-Score: 0.0 (/) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) Hi Bruno, I also noticed that message. Thanks for proposing a fix! Kind regards Felix