From mboxrd@z Thu Jan 1 00:00:00 1970 From: Erik Edrosa Subject: [PATCH] Remove extra .scm appended to guile-minikanren files Date: Wed, 20 Apr 2016 16:55:30 -0400 Message-ID: <5717ECC2.40504@gmail.com> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="------------020404070305050109090401" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:56866) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1asz9s-0002t9-7c for guix-devel@gnu.org; Wed, 20 Apr 2016 16:55:37 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1asz9r-0007Ng-3c for guix-devel@gnu.org; Wed, 20 Apr 2016 16:55:36 -0400 Received: from mail-oi0-x235.google.com ([2607:f8b0:4003:c06::235]:36508) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1asz9q-0007Na-Sl for guix-devel@gnu.org; Wed, 20 Apr 2016 16:55:35 -0400 Received: by mail-oi0-x235.google.com with SMTP id x201so54901725oif.3 for ; Wed, 20 Apr 2016 13:55:34 -0700 (PDT) Received: from ?IPv6:2602:306:c5c9:a3e0:be5f:f4ff:fe45:6041? ([2602:306:c5c9:a3e0:be5f:f4ff:fe45:6041]) by smtp.googlemail.com with ESMTPSA id cf3sm23403733obc.1.2016.04.20.13.55.30 for (version=TLSv1/SSLv3 cipher=OTHER); Wed, 20 Apr 2016 13:55:30 -0700 (PDT) List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: guix-devel@gnu.org This is a multi-part message in MIME format. --------------020404070305050109090401 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Hello Guix, Was looking to play around with minikanren so I installed guile-minikanren on guix and noticed the scheme files had an extra .scm appended to them when installed. So this patch removes them from the files. Thanks, Erik --------------020404070305050109090401 Content-Type: text/x-patch; name="0001-gnu-guile-minikanren-Remove-extra-.scm-on-files.patch" Content-Transfer-Encoding: quoted-printable Content-Disposition: attachment; filename*0="0001-gnu-guile-minikanren-Remove-extra-.scm-on-files.patch" =46rom ddc117f8c04406a4ddc6a1ccf3a7510182d8b678 Mon Sep 17 00:00:00 2001 From: Erik Edrosa Date: Wed, 20 Apr 2016 16:22:36 -0400 Subject: [PATCH] gnu: guile-minikanren: Remove extra .scm on files. * gnu/packages/guile.scm (guile-minikanren): Remove extra .scm appended to files. --- gnu/packages/guile.scm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gnu/packages/guile.scm b/gnu/packages/guile.scm index e247634..f978a42 100644 --- a/gnu/packages/guile.scm +++ b/gnu/packages/guile.scm @@ -4,6 +4,7 @@ ;;; Copyright =C2=A9 2015 Christopher Allan Webber ;;; Copyright =C2=A9 2016 Alex Sassmannshausen ;;; Copyright =C2=A9 2016 Ricardo Wurmus +;;; Copyright =C2=A9 2016 Erik Edrosa ;;; ;;; This file is part of GNU Guix. ;;; @@ -529,7 +530,7 @@ http:://json.org specification. These are the main f= eatures: (setenv "GUILE_AUTO_COMPILE" "0") (for-each (lambda (file) (let* ((dest-file (string-append module-dir "/" - file ".scm")) + file)) (go-file (match (string-split file #\.) ((base _) (string-append module-dir "/" --=20 2.5.5 --------------020404070305050109090401--