Authentication-Results: name.execsw.org; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=U7VfA88T; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=Kjq7Hv4f Received: by mail.netbsd.org (Postfix, from userid 605) id 05DC584E6D; Mon, 11 Mar 2024 08:09:33 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1710144573; bh=mEX8YP60NwnYCOH1yvQcmCNjjjvv6yOURcYIYVBIF1s=; h=Date:From:Subject:To:Reply-To:List-Id:List-Unsubscribe; b=U7VfA88T6BmVZaDDXW0J2RIWSa6yzEb/x4DU2bGt9coo0QvkLqzsXNOxtl/LOeJDi lJ8oJkdpIqOOC2WD4lrwV4ASG8/CfzU43RPHnirjBZZ0eHDYKOh8qEOclVXO+gU3KC N4Mam+j7FGMVyewot7C2OAEd/7v/ooR+fPmFxSd4= Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id B413584E72 for ; Mon, 11 Mar 2024 08:06:22 +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 ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id v4NUfQJ6uamX for ; Mon, 11 Mar 2024 08:06:22 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 1E5A984E66 for ; Mon, 11 Mar 2024 08:06:22 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1710144382; bh=mEX8YP60NwnYCOH1yvQcmCNjjjvv6yOURcYIYVBIF1s=; h=Date:From:Subject:To:Reply-To; b=Kjq7Hv4fV0AwhTFEJUWNyIakox/x4ZORPBugbtyR5L1o53OcwBKD8umsWZqf0HSZj 51EPHTgJyMrwi/F11IZStPrfT9DNBCLsrNGI67vRFAxKL+6rqD8nn+1Mki5FHSbroR NR93c4WRPFgSVZqNDE2NgG+VuPvh4DhvWjVbiu1k= Received: by cvs.NetBSD.org (Postfix, from userid 500) id 182E3FA2C; Mon, 11 Mar 2024 08:06:22 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1710144382192610" MIME-Version: 1.0 Date: Mon, 11 Mar 2024 08:06:22 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/x11/iceauth To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20240311080622.182E3FA2C@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1710144382192610 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Mon Mar 11 08:06:22 UTC 2024 Modified Files: pkgsrc/x11/iceauth: Makefile distinfo Log Message: iceauth: update to 1.0.10. This is a minor bugfix release, including fixes for compiler warnings. For those building for 32-bit platforms, it also enables use of the "large file" APIs - while ICEauthority files should never be more than 2gb in size, they may be stored on filesystems with large inodes. Since this release was generated using the new GNU autoconf 2.72, this also adds a --enable-year2038 configure flag which may allow iceauth to work with files whose timestamps are later than January 19, 2038, but this has not been tested. Alan Coopersmith (7): gitlab CI: stop requiring Signed-off-by in commits configure: Use AC_SYS_LARGEFILE to enable large file support Use reallocarray if available, provide local version if not Silence -Wanalyzer-out-of-bounds warnings from gcc 13 Variable scope reductions, as suggested by cppcheck unifdef __UNIXOS2__ iceauth 1.0.10 To generate a diff of this commit: cvs rdiff -u -r1.14 -r1.15 pkgsrc/x11/iceauth/Makefile cvs rdiff -u -r1.11 -r1.12 pkgsrc/x11/iceauth/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1710144382192610 Content-Disposition: inline Content-Length: 1491 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/x11/iceauth/Makefile diff -u pkgsrc/x11/iceauth/Makefile:1.14 pkgsrc/x11/iceauth/Makefile:1.15 --- pkgsrc/x11/iceauth/Makefile:1.14 Wed Nov 9 13:14:19 2022 +++ pkgsrc/x11/iceauth/Makefile Mon Mar 11 08:06:21 2024 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.14 2022/11/09 13:14:19 joerg Exp $ +# $NetBSD: Makefile,v 1.15 2024/03/11 08:06:21 wiz Exp $ -DISTNAME= iceauth-1.0.9 +DISTNAME= iceauth-1.0.10 CATEGORIES= x11 MASTER_SITES= ${MASTER_SITE_XORG:=app/} EXTRACT_SUFX= .tar.xz Index: pkgsrc/x11/iceauth/distinfo diff -u pkgsrc/x11/iceauth/distinfo:1.11 pkgsrc/x11/iceauth/distinfo:1.12 --- pkgsrc/x11/iceauth/distinfo:1.11 Sun Apr 3 18:52:46 2022 +++ pkgsrc/x11/iceauth/distinfo Mon Mar 11 08:06:21 2024 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.11 2022/04/03 18:52:46 wiz Exp $ +$NetBSD: distinfo,v 1.12 2024/03/11 08:06:21 wiz Exp $ -BLAKE2s (iceauth-1.0.9.tar.xz) = 12c85f1a462e8665e26e3231cf29340876e9b12e05a55b9e70e53438bd48e67d -SHA512 (iceauth-1.0.9.tar.xz) = 16b2f58008587cf1544037ca8b1c76dbb75eb043b3048b3064e66ba6b147962233f1453c2cf18bfb136dd6dd21d3e27b5219e17e1ab7b81dbe93fb6aff801a72 -Size (iceauth-1.0.9.tar.xz) = 130724 bytes +BLAKE2s (iceauth-1.0.10.tar.xz) = 6923e40241eb57d427a6329d6c0893e244ad6a02f84caa272977572ef6874ad7 +SHA512 (iceauth-1.0.10.tar.xz) = cfadac03a3f72f3c0bb58f67984a033847c76e7e3fdd9ebce583c0554d7f9484faf5053d878f5a82a543cdcc8e2ef8acecadb8830bd3c53584d7ec950cb51cc3 +Size (iceauth-1.0.10.tar.xz) = 134560 bytes --_----------=_1710144382192610--