pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/devel/libsmi
Module Name: pkgsrc
Committed By: tnn
Date: Mon Apr 28 19:34:48 UTC 2025
Modified Files:
pkgsrc/devel/libsmi: distinfo
Added Files:
pkgsrc/devel/libsmi/patches: patch-lib_parser-smi.h
patch-lib_parser-yang.h patch-lib_smi-data.c
Log Message:
libsmi: replace K&R prototypes
To generate a diff of this commit:
cvs rdiff -u -r1.11 -r1.12 pkgsrc/devel/libsmi/distinfo
cvs rdiff -u -r0 -r1.1 pkgsrc/devel/libsmi/patches/patch-lib_parser-smi.h \
pkgsrc/devel/libsmi/patches/patch-lib_parser-yang.h \
pkgsrc/devel/libsmi/patches/patch-lib_smi-data.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/libsmi/distinfo
diff -u pkgsrc/devel/libsmi/distinfo:1.11 pkgsrc/devel/libsmi/distinfo:1.12
--- pkgsrc/devel/libsmi/distinfo:1.11 Mon Aug 5 08:19:59 2024
+++ pkgsrc/devel/libsmi/distinfo Mon Apr 28 19:34:48 2025
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.11 2024/08/05 08:19:59 tnn Exp $
+$NetBSD: distinfo,v 1.12 2025/04/28 19:34:48 tnn Exp $
BLAKE2s (libsmi-0.5.0.tar.gz) = 49b8a2ca616afa1aa7102936a0a5ac024a7c19d2fd5c3ec1ced0f6b82ed2b6bc
SHA512 (libsmi-0.5.0.tar.gz) = be82e6b7054426e4634ac9d90467b89a51a9c836273c9d516f07ff3cec3a8dcc8b3bb0e0396d5facec3d9c952b17fb67f24ff2d3959e7e5cf9eced72023a0708
@@ -7,5 +7,8 @@ SHA1 (patch-aa) = 0daa795492391e52cce09d
SHA1 (patch-ab) = 2ebd512bfa4e284eaf892a5437f0bf12ad3ff36c
SHA1 (patch-ac) = e10b25773c6df404b74a2cd28bac06cbd6183983
SHA1 (patch-ad) = ca9376deac37b3c894f8d34e4b73473af49c7790
+SHA1 (patch-lib_parser-smi.h) = 5b14adef7ad79f7f7019961e3ca00dd67b537bc2
+SHA1 (patch-lib_parser-yang.h) = d45d08a01f146b6fb005cef156a42f083ae08151
SHA1 (patch-lib_parser-yang.y) = 99c21a34a6348c844d2728b457d1d2cb808dfb8d
+SHA1 (patch-lib_smi-data.c) = edfca2a680568c58856f8793d6fe6cbc045e2c5c
SHA1 (patch-lib_yang-data.h) = 9d6e15f17d4cd753175c954d52bf3b1d4b52311e
Added files:
Index: pkgsrc/devel/libsmi/patches/patch-lib_parser-smi.h
diff -u /dev/null pkgsrc/devel/libsmi/patches/patch-lib_parser-smi.h:1.1
--- /dev/null Mon Apr 28 19:34:49 2025
+++ pkgsrc/devel/libsmi/patches/patch-lib_parser-smi.h Mon Apr 28 19:34:48 2025
@@ -0,0 +1,15 @@
+$NetBSD: patch-lib_parser-smi.h,v 1.1 2025/04/28 19:34:48 tnn Exp $
+
+Replace K&R prototype.
+
+--- lib/parser-smi.h.orig 2025-04-28 19:31:43.421774384 +0000
++++ lib/parser-smi.h
+@@ -24,7 +24,7 @@
+
+
+
+-extern int smiparse();
++extern int smiparse(struct Parser *);
+
+
+
Index: pkgsrc/devel/libsmi/patches/patch-lib_parser-yang.h
diff -u /dev/null pkgsrc/devel/libsmi/patches/patch-lib_parser-yang.h:1.1
--- /dev/null Mon Apr 28 19:34:49 2025
+++ pkgsrc/devel/libsmi/patches/patch-lib_parser-yang.h Mon Apr 28 19:34:48 2025
@@ -0,0 +1,15 @@
+$NetBSD: patch-lib_parser-yang.h,v 1.1 2025/04/28 19:34:48 tnn Exp $
+
+Replace K&R prototype.
+
+--- lib/parser-yang.h.orig 2025-04-28 19:31:08.092610491 +0000
++++ lib/parser-yang.h
+@@ -13,7 +13,7 @@
+
+
+
+-extern int yangparse();
++extern int yangparse(struct Parser *);
+
+
+
Index: pkgsrc/devel/libsmi/patches/patch-lib_smi-data.c
diff -u /dev/null pkgsrc/devel/libsmi/patches/patch-lib_smi-data.c:1.1
--- /dev/null Mon Apr 28 19:34:49 2025
+++ pkgsrc/devel/libsmi/patches/patch-lib_smi-data.c Mon Apr 28 19:34:48 2025
@@ -0,0 +1,21 @@
+$NetBSD: patch-lib_smi-data.c,v 1.1 2025/04/28 19:34:48 tnn Exp $
+
+Replace K&R prototype.
+
+--- lib/smi-data.c.orig 2025-04-28 19:29:01.830808697 +0000
++++ lib/smi-data.c
+@@ -39,12 +39,12 @@
+
+ #ifdef BACKEND_SMI
+ #include "scanner-smi.h"
+-extern int smiparse();
++extern int smiparse(struct Parser *);
+ #endif
+
+ #ifdef BACKEND_SMING
+ #include "scanner-sming.h"
+-extern int smingparse();
++extern int smingparse(struct Parser *);
+ #endif
+
+ #define stringKind(kind) ( \
Home |
Main Index |
Thread Index |
Old Index