pkgsrc-Changes archive

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

CVS commit: pkgsrc/sysutils/gkrellm-est



Module Name:    pkgsrc
Committed By:   nia
Date:           Tue Apr 22 16:04:42 UTC 2025

Modified Files:
        pkgsrc/sysutils/gkrellm-est: distinfo
Added Files:
        pkgsrc/sysutils/gkrellm-est/patches: patch-Makefile

Log Message:
gkrellm-est: Strip out -Werror to fix build with new toolchain/libraries.


To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 pkgsrc/sysutils/gkrellm-est/distinfo
cvs rdiff -u -r0 -r1.1 pkgsrc/sysutils/gkrellm-est/patches/patch-Makefile

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

Modified files:

Index: pkgsrc/sysutils/gkrellm-est/distinfo
diff -u pkgsrc/sysutils/gkrellm-est/distinfo:1.5 pkgsrc/sysutils/gkrellm-est/distinfo:1.6
--- pkgsrc/sysutils/gkrellm-est/distinfo:1.5    Tue Oct 26 11:19:38 2021
+++ pkgsrc/sysutils/gkrellm-est/distinfo        Tue Apr 22 16:04:41 2025
@@ -1,5 +1,6 @@
-$NetBSD: distinfo,v 1.5 2021/10/26 11:19:38 nia Exp $
+$NetBSD: distinfo,v 1.6 2025/04/22 16:04:41 nia Exp $
 
 BLAKE2s (gkrellm-est-20040710.tar.gz) = 3a981f742f2d329f9a025b6feeaaf9d161bc7d736616f474031c76244998673f
 SHA512 (gkrellm-est-20040710.tar.gz) = 07da156c78d14843c1bffe46955c5fdea28a63dbf6edc159dca00e0995032e130a419ca6d21a1250f863faa8dfa6283bad41e9a03ad8024a587dbc65ca2cf6aa
 Size (gkrellm-est-20040710.tar.gz) = 3375 bytes
+SHA1 (patch-Makefile) = 9b596e95b874c411a0a3f16eb8fb60944e37e548

Added files:

Index: pkgsrc/sysutils/gkrellm-est/patches/patch-Makefile
diff -u /dev/null pkgsrc/sysutils/gkrellm-est/patches/patch-Makefile:1.1
--- /dev/null   Tue Apr 22 16:04:42 2025
+++ pkgsrc/sysutils/gkrellm-est/patches/patch-Makefile  Tue Apr 22 16:04:42 2025
@@ -0,0 +1,21 @@
+$NetBSD: patch-Makefile,v 1.1 2025/04/22 16:04:42 nia Exp $
+
+Remove -Werror. Unsuitable for newer toolchains.
+
+--- Makefile.orig      2025-04-22 16:02:29.678727024 +0000
++++ Makefile
+@@ -11,12 +11,12 @@ DEBUG_FLAGS=       -g
+ all: gkrellm-est.so
+ 
+ gkrellm-est.so: gkrellm-est.o
+-      ${CC} ${LDFLAGS} -Wall -Werror -o ${.TARGET} -shared ${GKRELLM_LDFLAGS} ${.ALLSRC}
++      ${CC} ${LDFLAGS} -Wall -o ${.TARGET} -shared ${GKRELLM_LDFLAGS} ${.ALLSRC}
+ 
+ .SUFFIXES: .c.o
+ 
+ .c.o:
+-      ${CC} ${CFLAGS} -c -Wall -Werror -o ${.TARGET} ${GKRELLM_CPPFLAGS} ${.ALLSRC}
++      ${CC} ${CFLAGS} -c -Wall -o ${.TARGET} ${GKRELLM_CPPFLAGS} ${.ALLSRC}
+ 
+ clean:
+       rm -f *.o *.so *.core



Home | Main Index | Thread Index | Old Index