Received: by mail.netbsd.org (Postfix, from userid 605) id E0CFC84D25; Sun, 11 Feb 2024 22:08:00 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1707689281; bh=TtiqJcx5WOdQdVN+kBYlDf2aMYRhBOUAaX2ZptMY4bA=; h=Date:From:Subject:To:Reply-To:List-Id:List-Unsubscribe; b=xxFvGK3NdsTRCn5hf0408tklB8wHpvqogjnKceZWGQ3exJ3V2peiArF1fsG4WLYca Sf1tEX0wGavMJF4SPoZCoSEx6qIqmx2ifWYLxxVsYxxi1fiIwykxCgp1e1+nW8rDVE leJWCRL/0dp2hX0FqJKSpA99Zezs6nGzo1M8hymw= Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id CF6D484D17 for ; Sun, 11 Feb 2024 22:07:59 +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 1wySszmd9LM6 for ; Sun, 11 Feb 2024 22:07:59 +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 2AD5684D08 for ; Sun, 11 Feb 2024 22:07:59 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1707689279; bh=TtiqJcx5WOdQdVN+kBYlDf2aMYRhBOUAaX2ZptMY4bA=; h=Date:From:Subject:To:Reply-To; b=OAwW3GhU/64MhACjyRPqUFf/qfBFUBvECgLkcXru8KhebUOk5A6lf9wHJUveTp2rK m/T5PmWPAg+rcNa7rkyiEPlDIOM8iXHXsaT1TJbWQ5xlaaHkDcJa+tVt8mv3jy//b1 eLNYpVUw8vSJ/uhigTAKmIuYTrMuE1NxivGqXSZ4= Received: by cvs.NetBSD.org (Postfix, from userid 500) id 13CCAF9A7; Sun, 11 Feb 2024 22:07:59 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_170768927918900" MIME-Version: 1.0 Date: Sun, 11 Feb 2024 22:07:59 +0000 From: "Ryo ONODERA" Subject: CVS commit: pkgsrc/devel/pkgconf To: pkgsrc-changes@NetBSD.org Reply-To: ryoon@netbsd.org X-Mailer: log_accum Message-Id: <20240211220759.13CCAF9A7@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_170768927918900 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: ryoon Date: Sun Feb 11 22:07:58 UTC 2024 Modified Files: pkgsrc/devel/pkgconf: Makefile distinfo Log Message: devel/pkgconf: Update to 2.1.1 Changelog: Changes from 2.1.0 to 2.1.1: ---------------------------- * Documentation fixes from Sam James and Stefan Weil. * Fix --modversion with constraints. Patch by Kai Pastor. * Reintroduce an optimization to the dependency graph walker which avoids revisiting already visited nodes. Patch by Yi Chou with some modifications. * Add a regression test to check that the dependency flattener is working as expected. Patch by Kai Pastor. Changes from 2.0.3 to 2.1.0: ---------------------------- * Do not flatten the solver solution into the original world used as input to the solver. Patches by Kai Pastor. * Fix warnings with GCC 14 -Walloc-size. Patch by Sam James. * Add --solution to the pkgconf CLI to dump the solver state. * Improve the --digraph output to clarify cancelled edges in a given solution. * Demote requires dependencies to requires.private when a parent dependency is pulled in via requires.private. * Trim trailing whitespace when processing package arguments. Patch by Colin Gillespie. * Avoid strncmp() in --modversion version comparison. Patch by Colin Gillespie. * Update autoconf compile flag checking macro. Patch by Peter Kokot. * Add system default path configuration to Meson. Patch by L. E. Segovia. * Fix order of PKG_CONFIG_LIBDIR and PKG_CONFIG_PATH element processing. To generate a diff of this commit: cvs rdiff -u -r1.25 -r1.26 pkgsrc/devel/pkgconf/Makefile cvs rdiff -u -r1.21 -r1.22 pkgsrc/devel/pkgconf/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_170768927918900 Content-Disposition: inline Content-Length: 1505 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/pkgconf/Makefile diff -u pkgsrc/devel/pkgconf/Makefile:1.25 pkgsrc/devel/pkgconf/Makefile:1.26 --- pkgsrc/devel/pkgconf/Makefile:1.25 Sun Oct 1 17:03:49 2023 +++ pkgsrc/devel/pkgconf/Makefile Sun Feb 11 22:07:58 2024 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.25 2023/10/01 17:03:49 adam Exp $ +# $NetBSD: Makefile,v 1.26 2024/02/11 22:07:58 ryoon Exp $ -DISTNAME= pkgconf-2.0.3 +DISTNAME= pkgconf-2.1.1 CATEGORIES= devel MASTER_SITES= https://distfiles.dereferenced.org/pkgconf/ Index: pkgsrc/devel/pkgconf/distinfo diff -u pkgsrc/devel/pkgconf/distinfo:1.21 pkgsrc/devel/pkgconf/distinfo:1.22 --- pkgsrc/devel/pkgconf/distinfo:1.21 Sun Oct 1 17:03:49 2023 +++ pkgsrc/devel/pkgconf/distinfo Sun Feb 11 22:07:58 2024 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.21 2023/10/01 17:03:49 adam Exp $ +$NetBSD: distinfo,v 1.22 2024/02/11 22:07:58 ryoon Exp $ -BLAKE2s (pkgconf-2.0.3.tar.gz) = 9268759e827e0507cb62ec6a346e3aa3fe646dc664a5007894e0167c01974350 -SHA512 (pkgconf-2.0.3.tar.gz) = 04889ff4a8c4b37f2674d000feb7860470672335f3deb62b64a51bddd5c41192f65b80fb61bb60f9dac4ed2df69f6979f150cc0d30cd48e5017c3464f4d96acd -Size (pkgconf-2.0.3.tar.gz) = 449898 bytes +BLAKE2s (pkgconf-2.1.1.tar.gz) = 70da33c2fe19fd7a4f2ed1dd49521450179165a4857b3cb6c6445c8c60ca55ae +SHA512 (pkgconf-2.1.1.tar.gz) = bdae47d7de41d5b03456ea6a3426c0f98fa78f6fa8f69957ce04552368283c0bc48339721eb3b85714b3a50237545767ff8f9fef55c1942e4c4daafc400a52a7 +Size (pkgconf-2.1.1.tar.gz) = 451327 bytes --_----------=_170768927918900--