Received: by mail.netbsd.org (Postfix, from userid 605) id E547784FDE; Fri, 9 Feb 2024 21:03:45 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1707512626; bh=so7xSu0RIjGrcEUV95FIRj52JGI8j37RSR8fQR3uEg8=; h=Date:From:Subject:To:Reply-To:List-Id:List-Unsubscribe; b=ls6PU0VL7/eOy8QgQ8BLgscT6ObB5B/Yfyt94l4Y+Ds5IxA6Gx1BApmalHO43L6rE D0kfIieAo90yAK8gRJfK6inRO9oLkvKnAV5r4E1jg5Waiq5uzd+BedExTNHlgb0mMu 1D1sC4SKaC283m5C+sg06A+mBjW+hadbU7TaKETE= Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id DB64984F80 for ; Fri, 9 Feb 2024 21:01:41 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Authentication-Results: mail.netbsd.org (amavisd-new); dkim=pass (1024-bit key) header.d=netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id OdH9GnXdl8cC for ; Fri, 9 Feb 2024 21:01:41 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 2C0BD84CCC for ; Fri, 9 Feb 2024 21:01:41 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1707512501; bh=so7xSu0RIjGrcEUV95FIRj52JGI8j37RSR8fQR3uEg8=; h=Date:From:Subject:To:Reply-To; b=HMja8tUsl7fv/zQ63y9wNve7udWj/GHazSII1TblpkthSd8ibcWhUp6khEL0k+MO4 cyssO0mk3nw+Pas+g6kSCr+Fz/PCUHlTO0fBOugbATddN/KodaTH9T+Ps9Mzf1tpy5 ORUDmWaXWcybwdvcQghlEFgLXvK4rZvUm5+J3Jq0= Received: by cvs.NetBSD.org (Postfix, from userid 500) id 2216FFA42; Fri, 9 Feb 2024 21:01:41 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1707512501112360" MIME-Version: 1.0 Date: Fri, 9 Feb 2024 21:01:41 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/x11/xkbcomp To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20240209210141.2216FFA42@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1707512501112360 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Fri Feb 9 21:01:41 UTC 2024 Modified Files: pkgsrc/x11/xkbcomp: Makefile distinfo Log Message: xkbcomp: update to 1.4.7. This release mainly focuses on code cleanup and improving maintainability and making static analysis work better on this code base. It also fixes a bug that could cause build failures with gcc when the -ftracer option was used. Since this release was generated using the new GNU autoconf 2.72, this also adds a --enable-year2038 configure flag which may allow xkbcomp to work with files whose timestamps are later than January 19, 2038 on 32-bit platforms, but this has not been tested. Alan Coopersmith (34): gitlab CI: stop requiring Signed-off-by in commits Eliminate 20 -Wimplicit-fallthrough warnings Remove register keyword from variable declarations Variable scope reductions Use C99 struct initializers Delete unused uTmpAlloc/uTmpFree wrappers around alloca() Replace uAlloc() and uTypedAlloc() with direct malloc() calls Replace uCalloc() and uTypedCalloc() with direct calloc() calls Replace uTypedRealloc() with direct reallocarray() calls Replace uTypedRecalloc() with direct recallocarray() calls Replace uFree() with direct free() calls Remove unnecessary checks for NULL pointers before calling free() Replace Opaque with direct usage of void * Remove unnecessary casts from memcpy() calls Remove unnecessary casts from bzero() calls Replace malloc()+bzero() pairs with calloc() calls Fix 106 missing-field-initializers warnings in misc.c Replace && with & for bitwise comparison Use asprintf() if the platform supports it Handle -Wstringop-truncation warning in HandleOverlayDef() Remove #ifdef sgi sections FindKeypadVMod: check xkb is not NULL before dereference, not after XkbAddDirectoryToPath: don't leak existing paths on realloc() failure Mark more functions and variables static Remove unused "no indent" (NOI) debug functions Only build debug infrastructure if DEBUG is defined Stop building more unused functions Use unsigned ints when shifting to create bitmasks Mark more pointers as const Replace calloc(strlen())+strcpy() pairs with strdup() calls xkbcomp.h: include config.h before any other headers configure: raise minimum autoconf requirement to 2.70 GenerateListing: close outFile before returning xkbcomp 1.4.7 To generate a diff of this commit: cvs rdiff -u -r1.25 -r1.26 pkgsrc/x11/xkbcomp/Makefile cvs rdiff -u -r1.19 -r1.20 pkgsrc/x11/xkbcomp/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1707512501112360 Content-Disposition: inline Content-Length: 1485 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/x11/xkbcomp/Makefile diff -u pkgsrc/x11/xkbcomp/Makefile:1.25 pkgsrc/x11/xkbcomp/Makefile:1.26 --- pkgsrc/x11/xkbcomp/Makefile:1.25 Thu Dec 8 09:54:20 2022 +++ pkgsrc/x11/xkbcomp/Makefile Fri Feb 9 21:01:40 2024 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.25 2022/12/08 09:54:20 wiz Exp $ +# $NetBSD: Makefile,v 1.26 2024/02/09 21:01:40 wiz Exp $ -DISTNAME= xkbcomp-1.4.6 +DISTNAME= xkbcomp-1.4.7 CATEGORIES= x11 MASTER_SITES= ${MASTER_SITE_XORG:=app/} EXTRACT_SUFX= .tar.xz Index: pkgsrc/x11/xkbcomp/distinfo diff -u pkgsrc/x11/xkbcomp/distinfo:1.19 pkgsrc/x11/xkbcomp/distinfo:1.20 --- pkgsrc/x11/xkbcomp/distinfo:1.19 Thu Dec 8 09:54:20 2022 +++ pkgsrc/x11/xkbcomp/distinfo Fri Feb 9 21:01:40 2024 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.19 2022/12/08 09:54:20 wiz Exp $ +$NetBSD: distinfo,v 1.20 2024/02/09 21:01:40 wiz Exp $ -BLAKE2s (xkbcomp-1.4.6.tar.xz) = 14cfd70d3c89155999e2f65ede8084d70251735925a4a892bebee0132f8f718a -SHA512 (xkbcomp-1.4.6.tar.xz) = 90e69dd1c78c28f77a5acc7821b43afec1b9ac4895bc6f3462b4902baaadc26f3869da69e3bd023b4bc74adb5f1be0c43ca24b3dab37ac9a479c5622684baa81 -Size (xkbcomp-1.4.6.tar.xz) = 233620 bytes +BLAKE2s (xkbcomp-1.4.7.tar.xz) = 2e0413aa06542549b4e715e57c72a02d868db6c46d63564987475ff4c998fab5 +SHA512 (xkbcomp-1.4.7.tar.xz) = 6f468dce9d2499ab1022f4288d46f66af149dac0a161fb5b9dc0c262bc70c2c3d254db2c6fb5df1e2793c822e2d55c6da5fd037ce523a555b7c3de23e35c49ef +Size (xkbcomp-1.4.7.tar.xz) = 239324 bytes --_----------=_1707512501112360--