cligen: Update to 7.5.0
authorPhilip Prindeville <[email protected]>
Sun, 3 Aug 2025 18:44:23 +0000 (12:44 -0600)
committerPhilip Prindeville <[email protected]>
Sun, 3 Aug 2025 20:16:37 +0000 (14:16 -0600)
"const" patches still haven't been upstreamed.

Signed-off-by: Philip Prindeville <[email protected]>
utils/cligen/Makefile
utils/cligen/patches/010-gcc15.patch

index e36ea7797765750363d75b2bfcc3ed2c22b158fb..1881a34156916cd57f781e45ffbab83ca6eb0b1c 100644 (file)
@@ -7,12 +7,12 @@
 include $(TOPDIR)/rules.mk
 
 PKG_NAME:=cligen
-PKG_VERSION:=7.4.0
-PKG_RELEASE:=2
+PKG_VERSION:=7.5.0
+PKG_RELEASE:=1
 
 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
 PKG_SOURCE_URL:=https://codeload.github.com/clicon/$(PKG_NAME)/tar.gz/$(PKG_VERSION)?
-PKG_HASH:=cfbeec48103170720450b03d03593d18fecdd365c0d1f1936ddb46e260699466
+PKG_HASH:=e9baf98e41f53fd8b03b4bff622c25c9c86fc1fc3f99c4fb7b63eb8a4265dbd1
 
 PKG_MAINTAINER:=Olof Hagsand <[email protected]>, Philip Prindeville <[email protected]>
 PKG_LICENSE:=Apache-2.0
index 6d257b73ce76d557c00f1ebbe8e39d34873cb911..613451da67aecd01bc60592f6fdc13ab2ab9b85c 100644 (file)
 -int (*gl_qmark_hook)() = NULL;
 -int (*gl_susp_hook)() = NULL;
 -int (*gl_interrupt_hook)() = NULL;
-+int (*gl_in_hook)(void *, char *) = NULL;
-+int (*gl_out_hook)(void *, char *) = NULL;
++int (*gl_in_hook)(void *, const char *) = NULL;
++int (*gl_out_hook)(void *, const char *) = NULL;
 +int (*gl_tab_hook)(cligen_handle, int *) = NULL;
-+int (*gl_qmark_hook)(cligen_handle, char *) = NULL;
++int (*gl_qmark_hook)(cligen_handle, const char *) = NULL;
 +int (*gl_susp_hook)(void *, char *, int, int *) = NULL;
 +int (*gl_interrupt_hook)(cligen_handle) = NULL;