pkgsrc-Changes archive

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

CVS commit: pkgsrc/x11/libXaw



Module Name:    pkgsrc
Committed By:   wiz
Date:           Mon Mar 11 08:59:16 UTC 2024

Modified Files:
        pkgsrc/x11/libXaw: Makefile distinfo hacks.mk

Log Message:
libXaw: update to 1.0.16.

Code-cleanup and build-fixes...

Alan Coopersmith (13):
      Set close-on-exec when opening files
      Variable scope reductions as suggested by cppcheck
      Handle redundantInitialization warnings from cppcheck
      Use C99 designated initializers where appropriate
      gitlab CI: add xz-utils to container for "make distcheck"
      unifdef NCR
      unifdef sony
      unifdef QNX4
      unifdef AIXV3 || __SCO__
      unifdef __osf__
      unifdef __UNIXOS2__
      Remove unused sharedlib.c
      unifdef ISC

Thomas E. Dickey (27):
      build-fix
      fix missing-initializer warnings
      quiet conversion-warnings with casts
      provide fallback for deprecated isascii/toascii
      reduce compiler-warnings using casts
      cppcheck scope and assignment warnings
      manpage: adjust line-breaks to avoid embedded full-stops
      manpage: assume .EX/.EE macros
      manpage: improve formatting consistency of bold/italics
      fix references to uninitialized data when constructing argument-lists
      reduce variable-length argument lists to match the existing code
      delete unused assignments
      add check for null pointer, avoid dereferencing
      add check for null pointer, avoid dereferencing
      add check for null pointer, avoid dereferencing
      add check for null pointer, avoid dereferencing
      add check for null pointer, avoid dereferencing
      add check for null pointer, avoid dereferencing
      add check for null pointer, avoid dereferencing
      split-up assignments which give unnecessary compiler-warnings
      scan-build(clang-17) reports possible null dereference, add checks
      fix clang/gcc warnings for undefined behavior, also fix a bug
      clang/gcc warnings about undefined behavior (minor bug-fix)
      amend change to XawListChange()
      make the examples configurable as (interactive) unit-tests
      delete code which is never used
      libXaw 1.0.16:  amends XawListChange() prototype, plus code-cleanup

Walter Harms (4):
      add examples
      add xawhisto
      add simple widget demo
      expand for simple widget demo


To generate a diff of this commit:
cvs rdiff -u -r1.23 -r1.24 pkgsrc/x11/libXaw/Makefile
cvs rdiff -u -r1.17 -r1.18 pkgsrc/x11/libXaw/distinfo
cvs rdiff -u -r1.1 -r1.2 pkgsrc/x11/libXaw/hacks.mk

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

Modified files:

Index: pkgsrc/x11/libXaw/Makefile
diff -u pkgsrc/x11/libXaw/Makefile:1.23 pkgsrc/x11/libXaw/Makefile:1.24
--- pkgsrc/x11/libXaw/Makefile:1.23     Fri Mar 17 08:17:08 2023
+++ pkgsrc/x11/libXaw/Makefile  Mon Mar 11 08:59:16 2024
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.23 2023/03/17 08:17:08 tnn Exp $
+# $NetBSD: Makefile,v 1.24 2024/03/11 08:59:16 wiz Exp $
 
-DISTNAME=              libXaw-1.0.15
+DISTNAME=              libXaw-1.0.16
 CATEGORIES=            x11 graphics
 MASTER_SITES=          ${MASTER_SITE_XORG:=lib/}
 EXTRACT_SUFX=          .tar.xz

Index: pkgsrc/x11/libXaw/distinfo
diff -u pkgsrc/x11/libXaw/distinfo:1.17 pkgsrc/x11/libXaw/distinfo:1.18
--- pkgsrc/x11/libXaw/distinfo:1.17     Thu Mar 16 07:19:22 2023
+++ pkgsrc/x11/libXaw/distinfo  Mon Mar 11 08:59:16 2024
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.17 2023/03/16 07:19:22 wiz Exp $
+$NetBSD: distinfo,v 1.18 2024/03/11 08:59:16 wiz Exp $
 
-BLAKE2s (libXaw-1.0.15.tar.xz) = 0f0e8295205a6a315084461f9226b8a1453af925400f407c3186e5423bcd9990
-SHA512 (libXaw-1.0.15.tar.xz) = 8edbf280b7b24b9040c291545053c1251d6af7e7f56da43a6065a1848245863eb52bdfc28c2f18dbb6597a4064394a44f4df5d8596a1a467549ccc9ce50a7821
-Size (libXaw-1.0.15.tar.xz) = 589832 bytes
+BLAKE2s (libXaw-1.0.16.tar.xz) = 409632464b2c0090aa6e7bf6bdde3b77c128ca065a479e7a89cba8a45a72196d
+SHA512 (libXaw-1.0.16.tar.xz) = 1cabad1a9b06dec7de601b977e844536823ee1a0045244acc42ca6b6107da9b4953736d94898a96cab40845eab77dae21e20e1fa66a3dfc4dedf575dfbca04aa
+Size (libXaw-1.0.16.tar.xz) = 602848 bytes

Index: pkgsrc/x11/libXaw/hacks.mk
diff -u pkgsrc/x11/libXaw/hacks.mk:1.1 pkgsrc/x11/libXaw/hacks.mk:1.2
--- pkgsrc/x11/libXaw/hacks.mk:1.1      Tue Jan 29 03:57:36 2008
+++ pkgsrc/x11/libXaw/hacks.mk  Mon Mar 11 08:59:16 2024
@@ -1,11 +1,11 @@
-# $NetBSD: hacks.mk,v 1.1 2008/01/29 03:57:36 bjs Exp $
+# $NetBSD: hacks.mk,v 1.2 2024/03/11 08:59:16 wiz Exp $
 
 .if !defined(LIBXAW_HACKS_MK)
 LIBXAW_HACKS_MK=       # defined
 
 .include "../../mk/compiler.mk"
 
-.if !empty(CC_VERSION:Mgcc-[34]*)
+.if ${CC_VERSION:Mgcc-[34]*}
 CFLAGS+=       -fno-strict-aliasing
 PKG_HACKS+=    no-strict-aliasing
 .endif



Home | Main Index | Thread Index | Old Index