Received: by mail.netbsd.org (Postfix, from userid 605) id CE05284F8E; Fri, 9 Feb 2024 21:18:23 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1707513504; bh=G8ntbPwPX4kn2bUIlbKVD2yQgg3FdfcimdkLNwxr2/0=; h=Date:From:Subject:To:Reply-To:List-Id:List-Unsubscribe; b=IUCFlavx9rhP/FgqkJDr9KL4oqwq2j7FfTb1bST58mNWdBAsYmLRS/8isgLC9Nvhc 9k6CzJoQBmcocgCl6Eor/zSnPHpf8Ipu92pZ6TvNJ0dzqlq8ASJ+Ef80Su66dk2ZfY LZtx8Oe/0Rl9PN8M2rSWBVPNbwl3LMae7BNzRtSM= Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id C025D84D00 for ; Fri, 9 Feb 2024 21:18: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 iT7oS77NNa0d for ; Fri, 9 Feb 2024 21:18:22 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 2404E84CD8 for ; Fri, 9 Feb 2024 21:18:22 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1707513502; bh=G8ntbPwPX4kn2bUIlbKVD2yQgg3FdfcimdkLNwxr2/0=; h=Date:From:Subject:To:Reply-To; b=IZtdhRdOxCIxBJ5JkAubwcm8ctQxtWtV0GrthsZaNFlL+tYxzKFWNG3ZqzdI8HywI 0EPkTOshJysawqB7hQqoKvzOUk1h7S/Os3nfZa5f99mzZZQyN6tsm4KupHyB63I1H3 iXIZUBE9e/uO9rh7yCI9L2UlV+G+KYZuLV4ftBSE= Received: by cvs.NetBSD.org (Postfix, from userid 500) id 1E71BFA42; Fri, 9 Feb 2024 21:18:22 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_170751350277250" MIME-Version: 1.0 Date: Fri, 9 Feb 2024 21:18:22 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/devel/makedepend To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20240209211822.1E71BFA42@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_170751350277250 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:18:22 UTC 2024 Modified Files: pkgsrc/devel/makedepend: Makefile distinfo Log Message: makedepend: update to 1.0.9. This release includes code cleanups and other changes, including removing the build time dependency on the xorgproto package. Since this release was generated using the new GNU autoconf 2.72, this also adds a --enable-year2038 configure flag which may allow it to work with files whose timestamps are later than January 19, 2038 on 32-bit platforms, but this has not been tested. Alan Coopersmith (16): Reformat code into X.Org standard coding style Remove register keyword from variable declarations Variable scope reduction as suggested by cppcheck Store predefined -D values in const char fields find_includes: rename variables to avoid shadowing global quoteColons: Remove redundant initialization of tmp Use reallocarray() on systems that provide it Handle some implicit conversion warnings from clang Stop casting _parse_data pointers through (char *) and back cppsetup: use C99 struct initialization Make malloc error checking/reporting more consistent Cache filename after realpath() processing Call strrchr() instead of hand coding a custom version Make more things static that aren't needed in more than one file configure: raise minimum autoconf requirement to 2.70 makedepend 1.0.9 Fabian Vogt (1): Avoid depending on xproto Petre Rodan (1): ifparser.c: divide-by-zero fix To generate a diff of this commit: cvs rdiff -u -r1.16 -r1.17 pkgsrc/devel/makedepend/Makefile cvs rdiff -u -r1.12 -r1.13 pkgsrc/devel/makedepend/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_170751350277250 Content-Disposition: inline Content-Length: 1562 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/makedepend/Makefile diff -u pkgsrc/devel/makedepend/Makefile:1.16 pkgsrc/devel/makedepend/Makefile:1.17 --- pkgsrc/devel/makedepend/Makefile:1.16 Mon Dec 12 19:47:20 2022 +++ pkgsrc/devel/makedepend/Makefile Fri Feb 9 21:18:21 2024 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.16 2022/12/12 19:47:20 wiz Exp $ +# $NetBSD: Makefile,v 1.17 2024/02/09 21:18:21 wiz Exp $ -DISTNAME= makedepend-1.0.8 +DISTNAME= makedepend-1.0.9 CATEGORIES= devel MASTER_SITES= ${MASTER_SITE_XORG:=util/} EXTRACT_SUFX= .tar.xz Index: pkgsrc/devel/makedepend/distinfo diff -u pkgsrc/devel/makedepend/distinfo:1.12 pkgsrc/devel/makedepend/distinfo:1.13 --- pkgsrc/devel/makedepend/distinfo:1.12 Mon Dec 12 19:47:20 2022 +++ pkgsrc/devel/makedepend/distinfo Fri Feb 9 21:18:21 2024 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.12 2022/12/12 19:47:20 wiz Exp $ +$NetBSD: distinfo,v 1.13 2024/02/09 21:18:21 wiz Exp $ -BLAKE2s (makedepend-1.0.8.tar.xz) = 293ab507b3b484db84be54199fd4973468ccc27bdf23e4ec914ced078dffe5cc -SHA512 (makedepend-1.0.8.tar.xz) = 6707b1107c07d4ffbcf008181e877d18a0bcc4aea03860ee1158f5630c7fdce4cf9ad7bee3b38ee420c3a44819ed4b56a6f2428a5b695c0dbd17fb3e60825a6d -Size (makedepend-1.0.8.tar.xz) = 141304 bytes +BLAKE2s (makedepend-1.0.9.tar.xz) = 1cb969d55c3847335260b1e2569f16ba58f25e5832409b14ae448706b9e0d086 +SHA512 (makedepend-1.0.9.tar.xz) = 68d289656314dc9f12c792d0e394cfbc95404a0d01155dbcb38313d451b506da48a3d44183f568a2cbb2b1d1da9e26703a0d92f2bb658f72fc968eeb03bf2fe8 +Size (makedepend-1.0.9.tar.xz) = 145080 bytes --_----------=_170751350277250--