Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id E80B084E58 for ; Thu, 17 Aug 2023 20:59:06 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id mAvfVwK0Ij4k for ; Thu, 17 Aug 2023 20:59:06 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 50FE784D6C for ; Thu, 17 Aug 2023 20:59:06 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 49B3EFBDB; Thu, 17 Aug 2023 20:59:06 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1692305946105900" MIME-Version: 1.0 Date: Thu, 17 Aug 2023 20:59:06 +0000 From: "Ryo ONODERA" Subject: CVS commit: pkgsrc/devel/pkgconf To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: ryoon@netbsd.org X-Mailer: log_accum Message-Id: <20230817205906.49B3EFBDB@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_1692305946105900 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: ryoon Date: Thu Aug 17 20:59:06 UTC 2023 Modified Files: pkgsrc/devel/pkgconf: Makefile distinfo Log Message: pkgconf: Update to 2.0.2 Changelog: Changes from 2.0.1 to 2.0.2: ---------------------------- * Fix long-standing bug where package identifiers for "uninstalled" packages incorrectly included the "-uninstalled" suffix. This was exposed by the recent change to `--modversion` in 2.0.1. Changes from 2.0.0 to 2.0.1: ---------------------------- * The behavior of --modversion was largely reverted back to the traditional pkg-config behavior, but still operates on a solved dependency graph. The order of --modversion output is based on the dependency resolution queue which is passed to the solver, which itself generally maps to the order of the constrants provided on the command line. * A new flag, --verbose, has been added. When used with `--modversion`, it is possible to disambiguate which version belongs to which module: % pkgconf --modversion --verbose foo bar foo: 1.2.3 bar: 1.3 Changes from 1.9.5 to 2.0.0: ---------------------------- * When flattening the dependency graph, retain the latest seen edges rather than the earliest. * Fix a long-standing bug where the dependency resolution queue was evaluated in reverse. This bug masked the aforementioned dependency flattening bug in many cases. * Fix handling of --with-path, which was appending paths to the search list rather than prepending them as intended. * Error when --modversion is requested with more than one package, as the output is ambiguous. To generate a diff of this commit: cvs rdiff -u -r1.23 -r1.24 pkgsrc/devel/pkgconf/Makefile cvs rdiff -u -r1.19 -r1.20 pkgsrc/devel/pkgconf/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1692305946105900 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.23 pkgsrc/devel/pkgconf/Makefile:1.24 --- pkgsrc/devel/pkgconf/Makefile:1.23 Mon May 29 13:37:08 2023 +++ pkgsrc/devel/pkgconf/Makefile Thu Aug 17 20:59:06 2023 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.23 2023/05/29 13:37:08 adam Exp $ +# $NetBSD: Makefile,v 1.24 2023/08/17 20:59:06 ryoon Exp $ -DISTNAME= pkgconf-1.9.5 +DISTNAME= pkgconf-2.0.2 CATEGORIES= devel MASTER_SITES= https://distfiles.dereferenced.org/pkgconf/ Index: pkgsrc/devel/pkgconf/distinfo diff -u pkgsrc/devel/pkgconf/distinfo:1.19 pkgsrc/devel/pkgconf/distinfo:1.20 --- pkgsrc/devel/pkgconf/distinfo:1.19 Mon May 29 13:37:08 2023 +++ pkgsrc/devel/pkgconf/distinfo Thu Aug 17 20:59:06 2023 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.19 2023/05/29 13:37:08 adam Exp $ +$NetBSD: distinfo,v 1.20 2023/08/17 20:59:06 ryoon Exp $ -BLAKE2s (pkgconf-1.9.5.tar.gz) = 835231b91d2f13f4d654a3d5ad1d6576e209e9206d3e3b219dead2009bb06139 -SHA512 (pkgconf-1.9.5.tar.gz) = b71481ec232a4e5769e3f06259c16457356babc0fe116b25d902aa8296f95cfff54c7cbf01c428ca345f1b7769d240b3a0abc931919435817432ced851b74801 -Size (pkgconf-1.9.5.tar.gz) = 448803 bytes +BLAKE2s (pkgconf-2.0.2.tar.gz) = 49e9e8bbf3a751596bd745d49099993f28b3508f6a84dae0b8090898bde221c2 +SHA512 (pkgconf-2.0.2.tar.gz) = 4106502ca636e60e97d4887d28b2d5acb40bd0882895d6eadec1492e3d467cb1013a37e90495975836310a368bd0af05e16e922c5e99040f1b39ce01ad6f19b5 +Size (pkgconf-2.0.2.tar.gz) = 449616 bytes --_----------=_1692305946105900--