Received: by mail.netbsd.org (Postfix, from userid 605) id EBEB384EB8; Wed, 26 Apr 2023 12:38:27 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 27F5184EB4 for ; Wed, 26 Apr 2023 12:38:27 +0000 (UTC) X-Virus-Scanned: amavisd-new at 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 HzdiuN0Q5djq for ; Wed, 26 Apr 2023 12:38:26 +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 8052884CF2 for ; Wed, 26 Apr 2023 12:38:26 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 79D49FA87; Wed, 26 Apr 2023 12:38:26 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1682512706190760" MIME-Version: 1.0 Date: Wed, 26 Apr 2023 12:38:26 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/devel/py-pygit2 To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20230426123826.79D49FA87@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1682512706190760 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Wed Apr 26 12:38:26 UTC 2023 Modified Files: pkgsrc/devel/py-pygit2: Makefile distinfo pkgsrc/devel/py-pygit2/patches: patch-build.sh Log Message: py-pygit2: updated to 1.12.0 1.12.0 (2023-04-01) - Upgrade to libgit2 v1.6.3 - Update Linux wheels to bundle OpenSSL 3.0.8 - Downgrade Linux wheels to manylinux2014 - New ``ConflictCollection.__contains__`` - New ``Repository.references.iterator(...)`` - New ``favor``, ``flags`` and ``file_flags`` optional arguments for ``Repository.merge(...)`` - New ``keep_all`` and ``paths`` optional arguments for ``Repository.stash(...)`` - New ``Respository.state()`` - Improve ``Repository.write_archive(...)`` performance - Sync type annotations To generate a diff of this commit: cvs rdiff -u -r1.26 -r1.27 pkgsrc/devel/py-pygit2/Makefile cvs rdiff -u -r1.21 -r1.22 pkgsrc/devel/py-pygit2/distinfo cvs rdiff -u -r1.1 -r1.2 pkgsrc/devel/py-pygit2/patches/patch-build.sh Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1682512706190760 Content-Disposition: inline Content-Length: 2633 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/py-pygit2/Makefile diff -u pkgsrc/devel/py-pygit2/Makefile:1.26 pkgsrc/devel/py-pygit2/Makefile:1.27 --- pkgsrc/devel/py-pygit2/Makefile:1.26 Sun Nov 27 12:01:34 2022 +++ pkgsrc/devel/py-pygit2/Makefile Wed Apr 26 12:38:26 2023 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.26 2022/11/27 12:01:34 adam Exp $ +# $NetBSD: Makefile,v 1.27 2023/04/26 12:38:26 adam Exp $ -DISTNAME= pygit2-1.11.1 +DISTNAME= pygit2-1.12.0 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} CATEGORIES= devel python MASTER_SITES= ${MASTER_SITE_PYPI:=p/pygit2/} Index: pkgsrc/devel/py-pygit2/distinfo diff -u pkgsrc/devel/py-pygit2/distinfo:1.21 pkgsrc/devel/py-pygit2/distinfo:1.22 --- pkgsrc/devel/py-pygit2/distinfo:1.21 Sun Nov 27 12:01:34 2022 +++ pkgsrc/devel/py-pygit2/distinfo Wed Apr 26 12:38:26 2023 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.21 2022/11/27 12:01:34 adam Exp $ +$NetBSD: distinfo,v 1.22 2023/04/26 12:38:26 adam Exp $ -BLAKE2s (pygit2-1.11.1.tar.gz) = 97245d416f4317b702fbd62e77e9fa71cb2ebea6b23fe875bd7d862954cf3740 -SHA512 (pygit2-1.11.1.tar.gz) = fe15e699e170d6fb768bfeedbd90f2b1d71cd54a7a461f6be38b306e486b891a11dc38623669f04298c9402618e29b80ddb1e468fb5d9819278997bed48393d6 -Size (pygit2-1.11.1.tar.gz) = 733883 bytes -SHA1 (patch-build.sh) = 162b527ed785cdd64aa60cdf5563360c8e316bb6 +BLAKE2s (pygit2-1.12.0.tar.gz) = 6362c3ef57f299fa67381a8d41393e3c47b220434b10bd65d8d9fce5f25dcb9a +SHA512 (pygit2-1.12.0.tar.gz) = 885984d8bb990ca3f60024c3db10d5f0bc77939382e93ab469f77b676bd95e6f44238d7e5d08dd9d17094a45cb0880dda94b860b014607f64a23a85db60b0422 +Size (pygit2-1.12.0.tar.gz) = 737533 bytes +SHA1 (patch-build.sh) = 93046157c4d93b4cadf0ffaad77b4f393e07f03e Index: pkgsrc/devel/py-pygit2/patches/patch-build.sh diff -u pkgsrc/devel/py-pygit2/patches/patch-build.sh:1.1 pkgsrc/devel/py-pygit2/patches/patch-build.sh:1.2 --- pkgsrc/devel/py-pygit2/patches/patch-build.sh:1.1 Tue Sep 6 09:26:28 2022 +++ pkgsrc/devel/py-pygit2/patches/patch-build.sh Wed Apr 26 12:38:26 2023 @@ -1,14 +1,13 @@ -$NetBSD: patch-build.sh,v 1.1 2022/09/06 09:26:28 wiz Exp $ +$NetBSD: patch-build.sh,v 1.2 2023/04/26 12:38:26 adam Exp $ Fix unportable test(1) operator. ---- build.sh.orig 2022-08-28 09:11:54.262747800 +0000 +--- build.sh.orig 2023-03-22 14:38:33.000000000 +0000 +++ build.sh -@@ -249,6 +249,6 @@ if [ "$1" = "stubtest" ]; then +@@ -269,5 +269,5 @@ if [ "$1" = "stubtest" ]; then shift $PREFIX/bin/pip install mypy PYTHONPATH=. $PREFIX/bin/stubtest --mypy-config-file mypy-stubtest.ini pygit2._pygit2 - [ $? == 0 ] && echo "stubtest OK" + [ $? = 0 ] && echo "stubtest OK" fi - --_----------=_1682512706190760--