pkgsrc-Changes archive

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

CVS commit: pkgsrc/chat/icb



Module Name:    pkgsrc
Committed By:   spz
Date:           Fri Apr  3 16:46:05 UTC 2026

Modified Files:
        pkgsrc/chat/icb: distinfo
        pkgsrc/chat/icb/patches: patch-readline_Make

Log Message:
build fix
In NetBSD 11 and possibly also SmartOS the ar 'l' modifier went from
l   This modifier is accepted but not used.
to
l   Specify dependencies of this library.
so ar clq went to "not working"; remove the l and reorder to
"command first, modifier after" and it'll build again.
Test-built on netbsd-11 and netbsd-10


To generate a diff of this commit:
cvs rdiff -u -r1.23 -r1.24 pkgsrc/chat/icb/distinfo
cvs rdiff -u -r1.1 -r1.2 pkgsrc/chat/icb/patches/patch-readline_Make

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

Modified files:

Index: pkgsrc/chat/icb/distinfo
diff -u pkgsrc/chat/icb/distinfo:1.23 pkgsrc/chat/icb/distinfo:1.24
--- pkgsrc/chat/icb/distinfo:1.23       Fri Apr 19 17:00:47 2024
+++ pkgsrc/chat/icb/distinfo    Fri Apr  3 16:46:05 2026
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.23 2024/04/19 17:00:47 chuck Exp $
+$NetBSD: distinfo,v 1.24 2026/04/03 16:46:05 spz Exp $
 
 BLAKE2s (icb-5.0.9.tar.gz) = e36c28e37b84806ff0b2eab323710be73251b31a231d639ad4f0e2a519d38adf
 SHA512 (icb-5.0.9.tar.gz) = d72a30cd671242dceb98defae80780bffd2aaaddfea2bf50d0970368f2601dd203b13939d102ce9af3c8d46373addcd2bcf385a1bb8e3c3b3674c21072fd8d00
@@ -59,7 +59,7 @@ SHA1 (patch-icb_parse.c) = 5ed95b8cbd409
 SHA1 (patch-icb_signals.c) = 1b648d7137ad361e43d4cd472fe811d16ec5cac7
 SHA1 (patch-murgil_contoport.c) = 2ee05addd21be0d906b5147efac1f48841d72298
 SHA1 (patch-murgil_makeport.c) = cacfa30605bcc688a8a48f6152527de82d04a9c8
-SHA1 (patch-readline_Make) = fbc7e816b29ed1ae6ea2beb8f61d269e8248bb11
+SHA1 (patch-readline_Make) = 95881edeef64b2fc281e089752d6e684bc670e50
 SHA1 (patch-readline_funmap.c) = 262d16194937918928963d1809f683f91419eff0
 SHA1 (patch-readline_keymaps.c) = 3f9534f18bbfbbdb11d66ca9db390524af252ac0
 SHA1 (patch-readline_vi__mode.c) = 48ed2f4a0070491014e940bcc9a6edffa986cb2a

Index: pkgsrc/chat/icb/patches/patch-readline_Make
diff -u pkgsrc/chat/icb/patches/patch-readline_Make:1.1 pkgsrc/chat/icb/patches/patch-readline_Make:1.2
--- pkgsrc/chat/icb/patches/patch-readline_Make:1.1     Tue Dec 12 07:13:01 2017
+++ pkgsrc/chat/icb/patches/patch-readline_Make Fri Apr  3 16:46:05 2026
@@ -1,6 +1,6 @@
-$NetBSD: patch-readline_Make,v 1.1 2017/12/12 07:13:01 spz Exp $
+$NetBSD: patch-readline_Make,v 1.2 2026/04/03 16:46:05 spz Exp $
 
---- readline/Make.orig 1995-02-24 21:19:59.000000000 +0000
+--- readline/Make.orig 2026-04-03 13:09:38.833736724 +0000
 +++ readline/Make
 @@ -34,8 +34,8 @@ INCDIR = ..
  READLINE_DEFINES = $(TYPES) -DVI_MODE
@@ -13,3 +13,12 @@ $NetBSD: patch-readline_Make,v 1.1 2017/
  
  # A good alternative is gcc -traditional.
  #CC = gcc -traditional
+@@ -77,7 +77,7 @@ all: ../lreadline.a
+ 
+ ../lreadline.a:       $(OBJECTS)
+       $(RM) -f $@
+-      $(AR) clq $@ $(OBJECTS)
++      $(AR) qc $@ $(OBJECTS)
+       -if [ -f /usr/bin/ranlib -o -f /bin/ranlib ]; then ranlib $@; fi
+ 
+ readline: readline.h chardefs.h $(OBJECTS)



Home | Main Index | Thread Index | Old Index