Authentication-Results: name.execsw.org; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=HN3hfDYH; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=eZmwvzBy Received: by mail.netbsd.org (Postfix, from userid 605) id 5264584ED2; Thu, 16 May 2024 11:12:02 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1715857922; bh=4EY4lNGEjxJXttdHuUj1RLrWDaQbjZ365CgRacWPFQg=; h=Date:From:Subject:To:Reply-To:List-Id:List-Unsubscribe; b=HN3hfDYHR6zA9WeFOE/qQFOHEjhdjgZezbI9nP74kto2TTAqV12XSPY14CqYjGcVD aCFy9PTmjz8DjrBO31p+cu3Qj9ocXIUNIU52kAWSTErw3x8eu4e1P33tHKJpDHDik5 d3WqUgSI1NvS9rCKQcyspvFb/0ixNUsOk65MYZHk= Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 3980584E84 for ; Thu, 16 May 2024 11:12:01 +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 qlqCox4Fbh1X for ; Thu, 16 May 2024 11:12:00 +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 78A5B84CD7 for ; Thu, 16 May 2024 11:12:00 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1715857920; bh=4EY4lNGEjxJXttdHuUj1RLrWDaQbjZ365CgRacWPFQg=; h=Date:From:Subject:To:Reply-To; b=eZmwvzBy8LQ6v7QUFB3ODmqXKu/GeaLh7m3ET80BNls8n9ET04O03Ht+FThHjrwKW xNSRpWSHfxNJqEnqNRRPkmEpK9qVoS52NKQZIi4TgiczNjfhf3n87B5rMvsJrISTlP kNkzaB+y7f57qV27mFzuFZ+4NMLczAHZVZGX59WU= Received: by cvs.NetBSD.org (Postfix, from userid 500) id 64D8EFA2C; Thu, 16 May 2024 11:12:00 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_171585792031910" MIME-Version: 1.0 Date: Thu, 16 May 2024 11:12:00 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/devel/libgit2 To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20240516111200.64D8EFA2C@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_171585792031910 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Thu May 16 11:12:00 UTC 2024 Modified Files: pkgsrc/devel/libgit2: Makefile distinfo Log Message: libgit2: update to 1.8.1. This release primarily includes straightforward bugfixes, as well as new functionality to have more control over the HTTP User-Agent header. However, there is an API change from v1.8 that was required for cross-platform compatibility. In v1.8, libgit2 introduced the report_unchanged member in the git_fetch_options structure. We mistakenly introduced this as a bitfield, which is not suitable for our public API. To correct this mistake, we have removed the report_unchanged member. To support the report unchanged tips option, users can set the update_fetchhead member to include the GIT_REMOTE_UPDATE_REPORT_UNCHANGED value. The libgit2 projects regrets the API change, but this was required to support cross-platform compatibility. What's Changed New features Allow more control over the user-agent by @ethomson in #6788 Bug fixes commit: Fix git_commit_create_from_stage without author and committer by @florianpircher in #6781 process.c: fix environ for macOS by @barracuda156 in #6792 Bounds check for pack index read by @ConradIrwin in #6796 transport: provide a useful error message during cancellation by @ethomson in #6802 transport: support sha256 oids by @ethomson in #6803 Revparse: Correctly accept ref with '@' at the end by @csware in #6809 remote: drop bitfields in git_remote_fetch_options by @ethomson in #6806 examples: fix memory leak in for-each-ref.c by @qaqland in #6808 xdiff: use proper free function by @ethomson in #6810 rand: avoid uninitialized loadavg warnings by @ethomson in #6812 cli: include alloca on illumos / solaris / sunos by @ethomson in #6813 Update git_array allocator to obey strict aliasing rules by @ethomson in #6814 tree: avoid mixed signedness comparison by @ethomson in #6815 Build and CI improvements ci: update nightly workflows by @ethomson in #6773 ci: give all nightly builds a unique id by @ethomson in #6782 cmake: remove workaround that isn't compatible with Windows on ARM by @hackhaslam in #6794 Documentation improvements Docs meta-updates by @ethomson in #6787 Dependency updates Enable llhttp for HTTP parsing by @sgallagher in #6713 To generate a diff of this commit: cvs rdiff -u -r1.80 -r1.81 pkgsrc/devel/libgit2/Makefile cvs rdiff -u -r1.39 -r1.40 pkgsrc/devel/libgit2/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_171585792031910 Content-Disposition: inline Content-Length: 1537 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/libgit2/Makefile diff -u pkgsrc/devel/libgit2/Makefile:1.80 pkgsrc/devel/libgit2/Makefile:1.81 --- pkgsrc/devel/libgit2/Makefile:1.80 Thu May 16 06:14:46 2024 +++ pkgsrc/devel/libgit2/Makefile Thu May 16 11:12:00 2024 @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.80 2024/05/16 06:14:46 wiz Exp $ +# $NetBSD: Makefile,v 1.81 2024/05/16 11:12:00 wiz Exp $ -DISTNAME= libgit2-1.8.0 -PKGREVISION= 1 +DISTNAME= libgit2-1.8.1 CATEGORIES= devel MASTER_SITES= ${MASTER_SITE_GITHUB:=libgit2/} GITHUB_TAG= v${PKGVERSION_NOREV} Index: pkgsrc/devel/libgit2/distinfo diff -u pkgsrc/devel/libgit2/distinfo:1.39 pkgsrc/devel/libgit2/distinfo:1.40 --- pkgsrc/devel/libgit2/distinfo:1.39 Mon May 6 06:22:09 2024 +++ pkgsrc/devel/libgit2/distinfo Thu May 16 11:12:00 2024 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.39 2024/05/06 06:22:09 wiz Exp $ +$NetBSD: distinfo,v 1.40 2024/05/16 11:12:00 wiz Exp $ -BLAKE2s (libgit2-1.8.0.tar.gz) = 45bcf3f8f54b6d7912d75708140fc00335a8024827f9278ef7b58201a496968a -SHA512 (libgit2-1.8.0.tar.gz) = e5634267bd9c6a594c9a954d09c657e7b8aadf213609bf7dd83b99863d0d0c7109a5277617dd508abc2da54ea3f12c2af1908d1aeb73c000e94056e2f3653144 -Size (libgit2-1.8.0.tar.gz) = 7590126 bytes +BLAKE2s (libgit2-1.8.1.tar.gz) = d40458653e2fd38823afe527a9ca622a8bd69cdf8bfbab94162e5b95e2e46425 +SHA512 (libgit2-1.8.1.tar.gz) = 7429fbdc46ae44fd359e9260cbe33d9ce9276db810c096f12c43e5d302d01011463cdfd98d604e59780187e020e216e839823a77479dc12f952a37628516af78 +Size (libgit2-1.8.1.tar.gz) = 7608949 bytes --_----------=_171585792031910--