pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/lang/clisp



Module Name:    pkgsrc
Committed By:   rillig
Date:           Sat Nov  2 17:02:56 UTC 2019

Modified Files:
        pkgsrc/lang/clisp: buildlink3.mk distinfo
        pkgsrc/lang/clisp/patches: patch-aa

Log Message:
lang/clisp: fix build failure on macOS


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 pkgsrc/lang/clisp/buildlink3.mk
cvs rdiff -u -r1.36 -r1.37 pkgsrc/lang/clisp/distinfo
cvs rdiff -u -r1.19 -r1.20 pkgsrc/lang/clisp/patches/patch-aa

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/lang/clisp/buildlink3.mk
diff -u pkgsrc/lang/clisp/buildlink3.mk:1.1 pkgsrc/lang/clisp/buildlink3.mk:1.2
--- pkgsrc/lang/clisp/buildlink3.mk:1.1 Fri Jul  9 18:08:05 2010
+++ pkgsrc/lang/clisp/buildlink3.mk     Sat Nov  2 17:02:56 2019
@@ -1,5 +1,5 @@
-# $NetBSD: buildlink3.mk,v 1.1 2010/07/09 18:08:05 asau Exp $
-
+# $NetBSD: buildlink3.mk,v 1.2 2019/11/02 17:02:56 rillig Exp $
+#
 # BUILDLINK_DEPMETHOD.clisp?=  build # -- not checked yet
 
 BUILDLINK_TREE+=       clisp

Index: pkgsrc/lang/clisp/distinfo
diff -u pkgsrc/lang/clisp/distinfo:1.36 pkgsrc/lang/clisp/distinfo:1.37
--- pkgsrc/lang/clisp/distinfo:1.36     Mon Jan 29 17:38:23 2018
+++ pkgsrc/lang/clisp/distinfo  Sat Nov  2 17:02:56 2019
@@ -1,10 +1,10 @@
-$NetBSD: distinfo,v 1.36 2018/01/29 17:38:23 jperkin Exp $
+$NetBSD: distinfo,v 1.37 2019/11/02 17:02:56 rillig Exp $
 
 SHA1 (clisp-2.49.tar.gz) = 1743e7917013162400c955af441e991db43b3323
 RMD160 (clisp-2.49.tar.gz) = ae30f3b681cb023e885c6e4ed12210ee5ba14c76
 SHA512 (clisp-2.49.tar.gz) = 7885956b373a4c1d04a0b43c229fe8c8694d89982cadce09da6ef03cb56a5705b92f94b564981075c36bb9773a9f16b0b95fef23e942f6245604aefa6600ef98
 Size (clisp-2.49.tar.gz) = 9823111 bytes
-SHA1 (patch-aa) = aa7e25685ed5818f45b550eba0011683dc36bc90
+SHA1 (patch-aa) = 65938825a9d219ddf93f09b306feb857bd83e0b6
 SHA1 (patch-ab) = 93aef2c423ce9e5eabebc20cdc144c83845b19cb
 SHA1 (patch-ac) = c31fcd65d7d37aeaf69c0eee9499bff596b6619b
 SHA1 (patch-modules_readline_readline.lisp) = 1463cb15f6a21374dffc0e585670ac89bb758ff3

Index: pkgsrc/lang/clisp/patches/patch-aa
diff -u pkgsrc/lang/clisp/patches/patch-aa:1.19 pkgsrc/lang/clisp/patches/patch-aa:1.20
--- pkgsrc/lang/clisp/patches/patch-aa:1.19     Wed May 14 11:24:25 2014
+++ pkgsrc/lang/clisp/patches/patch-aa  Sat Nov  2 17:02:56 2019
@@ -1,12 +1,26 @@
-$NetBSD: patch-aa,v 1.19 2014/05/14 11:24:25 jperkin Exp $
+$NetBSD: patch-aa,v 1.20 2019/11/02 17:02:56 rillig Exp $
 
 Override library subdirectory name for consistency.
 Don't use cache file to avoid trailing space problem.
 Support staged installation of modules.
 Fix SunOS linking.
 
+https://mail-index.netbsd.org/pkgsrc-users/2019/11/02/msg029846.html
+https://sourceforge.net/p/clisp/bugs/740/ (macOS build failure)
+
 --- src/makemake.in.orig       2010-07-07 15:15:35.000000000 +0000
 +++ src/makemake.in
+@@ -577,8 +577,8 @@
+      CROSS=false
+      if [ -z "$HSYS" ]; then # not win32gcc
+        # some shells (A/UX and OSF/1) need the parentheses around "arch" below.
+-       HSYS=`((arch) 2>/dev/null || uname -m 2>/dev/null) | $tolower` # system name in lowercase
+-       HSYSOS=`((uname) 2>/dev/null || arch 2>/dev/null) | $tolower` # OS name in lowercase
++       HSYS=`( (arch) 2>/dev/null || uname -m 2>/dev/null) | $tolower` # system name in lowercase
++       HSYSOS=`( (uname) 2>/dev/null || arch 2>/dev/null) | $tolower` # OS name in lowercase
+        if [ "$HSYS" = 386bsd -o "$HSYS" = sun386 -o "$HSYS" = "386/at" -o "$HSYS" = i86pc ] ; then
+          HSYS='i386'
+        fi
 @@ -1416,42 +1416,42 @@ if [ "${with_dynamic_modules}" != no ];
        XCC_PICFLAG=''
        ;;



Home | Main Index | Thread Index | Old Index