From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:46040) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dGQ49-00037F-2m for guix-patches@gnu.org; Thu, 01 Jun 2017 09:23:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dGQ45-0006s2-UV for guix-patches@gnu.org; Thu, 01 Jun 2017 09:23:05 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:46077) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dGQ45-0006rx-Qo for guix-patches@gnu.org; Thu, 01 Jun 2017 09:23:01 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1dGQ45-00040M-Lx for guix-patches@gnu.org; Thu, 01 Jun 2017 09:23:01 -0400 Subject: bug#27182: [PATCH] gnu: font-cns11643-swjz: Use 'font-build-system'. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:45388) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dGQ3C-0002eh-Nz for guix-patches@gnu.org; Thu, 01 Jun 2017 09:22:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dGQ38-0006F5-CU for guix-patches@gnu.org; Thu, 01 Jun 2017 09:22:06 -0400 Received: from lb1.openmailbox.org ([5.79.108.160]:50982 helo=mail.openmailbox.org) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dGQ37-0006CS-Vo for guix-patches@gnu.org; Thu, 01 Jun 2017 09:22:02 -0400 From: Brendan Tildesley Message-ID: <5f003355-daac-cca8-a1df-9d340f74cea0@openmailbox.org> Date: Thu, 1 Jun 2017 23:21:54 +1000 MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="------------6AB0D2069EECF3E7D9B31F59" 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: 27182@debbugs.gnu.org This is a multi-part message in MIME format. --------------6AB0D2069EECF3E7D9B31F59 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit --------------6AB0D2069EECF3E7D9B31F59 Content-Type: text/x-patch; name="0001-gnu-font-cns11643-swjz-Use-font-build-system.patch" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="0001-gnu-font-cns11643-swjz-Use-font-build-system.patch" >From 7f9935fc6c7630419ecd6b290613e1b368fca87d Mon Sep 17 00:00:00 2001 From: Brendan Tildesley Date: Thu, 1 Jun 2017 22:00:25 +1000 Subject: [PATCH] gnu: font-cns11643-swjz: Use 'font-build-system'. * gnu/packages/fonts.scm (font-cns11643-swjz): Use 'font-build-system'. --- gnu/packages/fonts.scm | 14 +------------- 1 file changed, 1 insertion(+), 13 deletions(-) diff --git a/gnu/packages/fonts.scm b/gnu/packages/fonts.scm index 620c5dec7..1145b3114 100644 --- a/gnu/packages/fonts.scm +++ b/gnu/packages/fonts.scm @@ -471,19 +471,7 @@ encoded in the user defined area of the Big-5 code. (sha256 (base32 "1qkljldbmb53zp1rcmpsb8rzy67rnsqcjxi549m9743ifk4isl78")))) - (build-system trivial-build-system) - (arguments - `(#:modules ((guix build utils)) - #:builder - (begin - (use-modules (guix build utils)) - (let ((font-dir (string-append %output - "/share/fonts/truetype/cns11643")) - (source (assoc-ref %build-inputs "source"))) - (mkdir-p font-dir) - (copy-file source - (string-append font-dir "/" "ebas927.ttf")) - #t)))) + (build-system font-build-system) (home-page (string-append "http://www.cns11643.gov.tw/AIDB/download.do" "?name=%E5%AD%97%E5%9E%8B%E4%B8%8B%E8%BC%89")) -- 2.13.0 --------------6AB0D2069EECF3E7D9B31F59--