From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:55849) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dGTJT-00033M-PJ for guix-patches@gnu.org; Thu, 01 Jun 2017 12:51:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dGTJP-00056u-TG for guix-patches@gnu.org; Thu, 01 Jun 2017 12:51:07 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:47251) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dGTJP-00056P-Ei for guix-patches@gnu.org; Thu, 01 Jun 2017 12:51:03 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1dGTJO-0002UR-5P for guix-patches@gnu.org; Thu, 01 Jun 2017 12:51:02 -0400 Subject: bug#27107: [PATCH] gnu: font-comic-neue: Add fontconfig alias. Resent-Message-ID: Message-Id: <20afdd9a.AEMAK8sFQ_8AAAAAAAAAAAPGly4AAAACwQwAAAAAAAW9WABZMEXM@mailjet.com> MIME-Version: 1.0 From: Arun Isaac Date: Thu, 01 Jun 2017 22:20:08 +0530 In-reply-to: <1496332115.605062.995561656.6F448171@webmail.messagingengine.com> References: <1495911253.2824873.990503296.5E43EB91@webmail.messagingengine.com> <971c125f.ADsAAg_HJlUAAAAAAAAAAAPFkxsAAAACwQwAAAAAAAW9WABZKv0R@mailjet.com> <1496250072.375362.994392200.179AAF09@webmail.messagingengine.com> <1496325784.3854203.995428800.4370171C@webmail.messagingengine.com> <1496331258.602282.995551792.156E951D@webmail.messagingengine.com> <1496332115.605062.995561656.6F448171@webmail.messagingengine.com> Content-Type: multipart/mixed; boundary="=-=-=" List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: Alex Griffin Cc: 27107-done@debbugs.gnu.org --=-=-= Content-Type: text/plain Content-Transfer-Encoding: quoted-printable Please find attached a patch fixing the __MACOSX files issue. Let me know if it's working and fine. Instead of changing directory, I have deleted the __MACOSX directory. I think this is a bit more explicit. WDYT? = --=-=-= Content-Type: text/x-patch Content-Disposition: inline; filename=0001-gnu-font-comic-neue-Prevent-hidden-files-from-being-.patch >From 1370ab727fac3a2738f523a5697522b04411644f Mon Sep 17 00:00:00 2001 From: Arun Isaac Date: Thu, 1 Jun 2017 21:55:11 +0530 Subject: [PATCH] gnu: font-comic-neue: Prevent hidden files from being installed. * gnu/packages/fonts.scm (font-comic-neue)[arguments]: Add 'delete-macosx-files' phase. --- gnu/packages/fonts.scm | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/gnu/packages/fonts.scm b/gnu/packages/fonts.scm index cedf3573b..54b8b81e8 100644 --- a/gnu/packages/fonts.scm +++ b/gnu/packages/fonts.scm @@ -1121,6 +1121,12 @@ later hand-tweaked with the gbdfed(1) editor: (arguments `(#:phases (modify-phases %standard-phases + ;; Delete Mac OS X specific files. If not deleted, these cause + ;; several hidden files to be installed. + (add-before 'install 'delete-macosx-files + (lambda _ + (delete-file-recursively "__MACOSX") + #t)) (add-after 'install 'install-conf (lambda* (#:key outputs #:allow-other-keys) (let ((conf-dir (string-append (assoc-ref outputs "out") -- 2.12.2 --=-=-=--