pkgsrc-Changes archive

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

CVS commit: pkgsrc/lang/guile22



Module Name:    pkgsrc
Committed By:   wiz
Date:           Mon Mar  7 23:03:14 UTC 2022

Modified Files:
        pkgsrc/lang/guile22: distinfo
Added Files:
        pkgsrc/lang/guile22/patches: patch-module_system_base_target.scm
Removed Files:
        pkgsrc/lang/guile22/patches: patch-modules_system_base_target.scm

Log Message:
guile22: fix patch name for pkglint


To generate a diff of this commit:
cvs rdiff -u -r1.14 -r1.15 pkgsrc/lang/guile22/distinfo
cvs rdiff -u -r0 -r1.1 \
    pkgsrc/lang/guile22/patches/patch-module_system_base_target.scm
cvs rdiff -u -r1.2 -r0 \
    pkgsrc/lang/guile22/patches/patch-modules_system_base_target.scm

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

Modified files:

Index: pkgsrc/lang/guile22/distinfo
diff -u pkgsrc/lang/guile22/distinfo:1.14 pkgsrc/lang/guile22/distinfo:1.15
--- pkgsrc/lang/guile22/distinfo:1.14   Tue Oct 26 10:51:38 2021
+++ pkgsrc/lang/guile22/distinfo        Mon Mar  7 23:03:14 2022
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.14 2021/10/26 10:51:38 nia Exp $
+$NetBSD: distinfo,v 1.15 2022/03/07 23:03:14 wiz Exp $
 
 BLAKE2s (guile-2.2.7.tar.gz) = 3f9c16bba807ed79fff123d177370290e2f7b8a16f9e6876a2e10a52a7906576
 SHA512 (guile-2.2.7.tar.gz) = ad11885ffeb7655ef6c8543e67233992dc37bdcf91ed82188e6a144169c6b7d4e31cf7a6d01509c573d00904cb002719b851f71cdf1359a86de401daf613d773
@@ -7,4 +7,4 @@ SHA1 (patch-build-aux_config.rpath) = d6
 SHA1 (patch-config.rpath) = 0ca52a58694fd2fad678ebebfb5fb3a7f2ec54dc
 SHA1 (patch-lib_Makefile.in) = ae3428997a653d89cef9bd51f52b57b64431b753
 SHA1 (patch-libguile_loader.c) = 32b012d095c343995f93d0c8160411c4b0cfbee1
-SHA1 (patch-modules_system_base_target.scm) = 5c7f66f71e27186bdbc4cba7233829c4298962fe
+SHA1 (patch-module_system_base_target.scm) = 5c7f66f71e27186bdbc4cba7233829c4298962fe

Added files:

Index: pkgsrc/lang/guile22/patches/patch-module_system_base_target.scm
diff -u /dev/null pkgsrc/lang/guile22/patches/patch-module_system_base_target.scm:1.1
--- /dev/null   Mon Mar  7 23:03:14 2022
+++ pkgsrc/lang/guile22/patches/patch-module_system_base_target.scm     Mon Mar  7 23:03:14 2022
@@ -0,0 +1,22 @@
+$NetBSD: patch-module_system_base_target.scm,v 1.1 2022/03/07 23:03:14 wiz Exp $
+
+Crude patch to make target.scm conform to vendor field of gnu-tripplet
+being optional.
+
+Tested with GnuTLS Guile bindings, where the current implementation
+prevents building on any platform which isn't conforming to having a
+vendor part.
+
+Full explanation: https://gitlab.com/gnutls/gnutls/-/issues/996
+
+--- module/system/base/target.scm.orig  2018-06-18 14:14:47.000000000 +0200
++++ module/system/base/target.scm       2020-05-14 15:51:14.664581289 +0200
+@@ -46,7 +46,7 @@
+           (let ((parts (string-split target #\-)))
+             (or (< (length parts) 3)
+                 (or-map string-null? parts))))
+-      (error "invalid target" target)))
++      (string-append "invalid target" target)))
+ 
+ (define (with-target target thunk)
+   (validate-target target)



Home | Main Index | Thread Index | Old Index