pkgsrc-Changes archive

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

CVS commit: pkgsrc/devel/editline



Module Name:    pkgsrc
Committed By:   tnn
Date:           Mon Apr 28 20:15:00 UTC 2025

Modified Files:
        pkgsrc/devel/editline: Makefile PLIST distinfo
Removed Files:
        pkgsrc/devel/editline/patches: patch-ab patch-ac patch-src_vis.c

Log Message:
editline: update to 202501014

2025-01-04 Jess Thrysoee
   * all: sync with upstream source
2024-08-08 Jess Thrysoee
   * all: sync with upstream source
   * doc/Makefile.am: fix regression. Name all manpage links as el_*
        (e.g. el_history.3) to avoid conflicts.
        Reported by Zopolis4
2024-05-17 Jess Thrysoee
   * all: sync with upstream source
2023-08-28 Jess Thrysoee
   * src/chartype.c: Add missing stdint.h
        Reported by Rui Chen
2023-08-27 Jess Thrysoee
   * all: sync with upstream source


To generate a diff of this commit:
cvs rdiff -u -r1.16 -r1.17 pkgsrc/devel/editline/Makefile
cvs rdiff -u -r1.6 -r1.7 pkgsrc/devel/editline/PLIST
cvs rdiff -u -r1.20 -r1.21 pkgsrc/devel/editline/distinfo
cvs rdiff -u -r1.4 -r0 pkgsrc/devel/editline/patches/patch-ab \
    pkgsrc/devel/editline/patches/patch-ac
cvs rdiff -u -r1.2 -r0 pkgsrc/devel/editline/patches/patch-src_vis.c

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

Modified files:

Index: pkgsrc/devel/editline/Makefile
diff -u pkgsrc/devel/editline/Makefile:1.16 pkgsrc/devel/editline/Makefile:1.17
--- pkgsrc/devel/editline/Makefile:1.16 Thu Jun 29 17:55:29 2023
+++ pkgsrc/devel/editline/Makefile      Mon Apr 28 20:14:59 2025
@@ -1,8 +1,7 @@
-# $NetBSD: Makefile,v 1.16 2023/06/29 17:55:29 hauke Exp $
+# $NetBSD: Makefile,v 1.17 2025/04/28 20:14:59 tnn Exp $
 
-DISTNAME=              libedit-20221030-3.1
-PKGNAME=               editline-3.1.20221030
-PKGREVISION=           2
+DISTNAME=              libedit-20250104-3.1
+PKGNAME=               editline-3.1.20250104
 CATEGORIES=            devel
 MASTER_SITES=          https://thrysoee.dk/editline/
 
@@ -18,8 +17,6 @@ GNU_CONFIGURE=                yes
 USE_LANGUAGES=         c c++
 
 post-install:
-       # Avoid conflict with devel/readline.
-       cd ${DESTDIR}${PREFIX}/${PKGMANDIR}/man3 && ${MV} history.3 editline-history.3
        # Install symlink like NetBSD base system has
        cd ${DESTDIR}${PREFIX}/include/editline && ln -sf readline.h history.h
 

Index: pkgsrc/devel/editline/PLIST
diff -u pkgsrc/devel/editline/PLIST:1.6 pkgsrc/devel/editline/PLIST:1.7
--- pkgsrc/devel/editline/PLIST:1.6     Mon Jun 26 11:37:07 2023
+++ pkgsrc/devel/editline/PLIST Mon Apr 28 20:14:59 2025
@@ -1,16 +1,21 @@
-@comment $NetBSD: PLIST,v 1.6 2023/06/26 11:37:07 wiz Exp $
+@comment $NetBSD: PLIST,v 1.7 2025/04/28 20:14:59 tnn Exp $
 include/editline/history.h
 include/editline/readline.h
 include/histedit.h
 lib/libedit.la
 lib/pkgconfig/libedit.pc
-man/man3/editline-history.3
 man/man3/editline.3
 man/man3/el_deletestr.3
 man/man3/el_end.3
 man/man3/el_get.3
 man/man3/el_getc.3
 man/man3/el_gets.3
+man/man3/el_history.3
+man/man3/el_history_end.3
+man/man3/el_history_init.3
+man/man3/el_history_w.3
+man/man3/el_history_wend.3
+man/man3/el_history_winit.3
 man/man3/el_init.3
 man/man3/el_init_fd.3
 man/man3/el_insertstr.3
@@ -21,6 +26,16 @@ man/man3/el_reset.3
 man/man3/el_resize.3
 man/man3/el_set.3
 man/man3/el_source.3
+man/man3/el_tok_end.3
+man/man3/el_tok_init.3
+man/man3/el_tok_line.3
+man/man3/el_tok_reset.3
+man/man3/el_tok_str.3
+man/man3/el_tok_wend.3
+man/man3/el_tok_winit.3
+man/man3/el_tok_wline.3
+man/man3/el_tok_wreset.3
+man/man3/el_tok_wstr.3
 man/man3/el_wdeletestr.3
 man/man3/el_wget.3
 man/man3/el_wgetc.3
@@ -30,20 +45,5 @@ man/man3/el_wline.3
 man/man3/el_wparse.3
 man/man3/el_wpush.3
 man/man3/el_wset.3
-man/man3/history_end.3
-man/man3/history_init.3
-man/man3/history_w.3
-man/man3/history_wend.3
-man/man3/history_winit.3
-man/man3/tok_end.3
-man/man3/tok_init.3
-man/man3/tok_line.3
-man/man3/tok_reset.3
-man/man3/tok_str.3
-man/man3/tok_wend.3
-man/man3/tok_winit.3
-man/man3/tok_wline.3
-man/man3/tok_wreset.3
-man/man3/tok_wstr.3
 man/man5/editrc.5
 man/man7/editline.7

Index: pkgsrc/devel/editline/distinfo
diff -u pkgsrc/devel/editline/distinfo:1.20 pkgsrc/devel/editline/distinfo:1.21
--- pkgsrc/devel/editline/distinfo:1.20 Tue Nov  7 10:23:11 2023
+++ pkgsrc/devel/editline/distinfo      Mon Apr 28 20:14:59 2025
@@ -1,11 +1,8 @@
-$NetBSD: distinfo,v 1.20 2023/11/07 10:23:11 nia Exp $
+$NetBSD: distinfo,v 1.21 2025/04/28 20:14:59 tnn Exp $
 
-BLAKE2s (libedit-20221030-3.1.tar.gz) = 28971f0b4661c9b400df3cfe8d82e6ef4cf7bc9a964a013671adf560aeec9488
-SHA512 (libedit-20221030-3.1.tar.gz) = 41eb46feaffa909e8790b9a9e304d5246e82ab366721196126a923d68b4d4964d0a433fe238f9d5e0a00aefb5c8cb66132150792929a793785ad091d91016f97
-Size (libedit-20221030-3.1.tar.gz) = 533261 bytes
-SHA1 (patch-ab) = 18297f76965ecd56834c94f6c9f780d3e05a44d8
-SHA1 (patch-ac) = 666403d5ef03fea39081d7a657aefaa91746f788
+BLAKE2s (libedit-20250104-3.1.tar.gz) = 459c6801dc8baa7498865b932a39da055de7c21286da78ccd6b019c1d4339f8f
+SHA512 (libedit-20250104-3.1.tar.gz) = 4b4a8b4b1f2cb952bbb3d128605eba9bc7cd0ad35c44b2c099f067c8bea69455bd11faae4ff20384bbe0ea901b25a1249d8323dea4ccd6141a17393f62bb8df2
+Size (libedit-20250104-3.1.tar.gz) = 546745 bytes
 SHA1 (patch-libedit.pc.in) = c2c810ab2c9c7b9d1862abc7bdca53fda5732119
 SHA1 (patch-src_sys.h) = dacabbcf6347dfae5f9deabe9c7288e4aeb620b5
 SHA1 (patch-src_terminal.h) = 5d658f7b7c3b88c0c3122a1be740f3a72d7d2370
-SHA1 (patch-src_vis.c) = eacfd6142a1dc623feac9e69f976b27eb3e5e30d



Home | Main Index | Thread Index | Old Index