Received: by mail.netbsd.org (Postfix, from userid 605) id 1977184E69; Mon, 19 Feb 2024 12:35:44 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1708346144; bh=SqVmRxNfrRGrheogl0UaHE/GhwsOipRwQxrNOIP7N28=; h=Date:From:Subject:To:Reply-To:List-Id:List-Unsubscribe; b=GaXkt28nUxeUyvO153QL34or5i5jZozhCQ/ucQj1iS7L3GZ6M9Tx26OR6z0iE8xf6 sSWTQw/dXvwlNpK4diGmkZm3qk81I2T6YIydw7O3yY2P2UmHYHex0xYnBPX9Ga+i7M lXHeERyXOoDfMYd78O8atLJXtegIVjZUGcQWCEnE= Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 097CE84D72 for ; Mon, 19 Feb 2024 12:35:43 +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 eQM8crLR_Suj for ; Mon, 19 Feb 2024 12:35:42 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 6694784D59 for ; Mon, 19 Feb 2024 12:35:42 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1708346142; bh=SqVmRxNfrRGrheogl0UaHE/GhwsOipRwQxrNOIP7N28=; h=Date:From:Subject:To:Reply-To; b=nbZTqidHVyIDhYCfKkSctemFHDZJvG+DlgS3EUYwEkPA2P+41VHxQfHuyIBr/zVpP 4xOPmPPfh+rWXVG0ls0MRusUgvAo91qkUX0+gbFf2v2dDF3qh8xeMtDUJVPiAlrSzq FT/NQqSlUN3aFb1uLISXihdTj9wPk6R10rZ6fECQ= Received: by cvs.NetBSD.org (Postfix, from userid 500) id 5E25DF9F4; Mon, 19 Feb 2024 12:35:42 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_170834614295890" MIME-Version: 1.0 Date: Mon, 19 Feb 2024 12:35:42 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/devel/py-hg-evolve To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20240219123542.5E25DF9F4@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_170834614295890 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Mon Feb 19 12:35:42 UTC 2024 Modified Files: pkgsrc/devel/py-hg-evolve: Makefile distinfo Log Message: py-hg-evolve: update to 11.1.1. This is a bugfix release. Bugs related to wire protocol and topic namespaces were fixed: `hg incoming` works correctly again (https://bz.mercurial-scm.org/show_bug.cgi?id=6856), pushing via ssh shouldn't produce any errors related to tns_heads method on the peer. `hg pick` was made to always use current topic for the resulting changesets, including when users don't have any set (in which case the resulting changeset will not have any topic, regardless of what the original changeset had). Default topic namespace value (which at first was "default", but in 1.1.0 it was changed to "none") won't get stored on disk and will actively be removed now (topic extension will do it for at least a couple of releases) to avoid any confusion when using different versions of topic extension on the same repo. There were some improvements in handling topics and topic namespaces that aren't ASCII-only. The evolve and topic extensions were also marked as compatible with Mercurial 6.6, although no code changes were required. To generate a diff of this commit: cvs rdiff -u -r1.40 -r1.41 pkgsrc/devel/py-hg-evolve/Makefile cvs rdiff -u -r1.27 -r1.28 pkgsrc/devel/py-hg-evolve/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_170834614295890 Content-Disposition: inline Content-Length: 1679 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/py-hg-evolve/Makefile diff -u pkgsrc/devel/py-hg-evolve/Makefile:1.40 pkgsrc/devel/py-hg-evolve/Makefile:1.41 --- pkgsrc/devel/py-hg-evolve/Makefile:1.40 Wed Nov 15 09:30:48 2023 +++ pkgsrc/devel/py-hg-evolve/Makefile Mon Feb 19 12:35:42 2024 @@ -1,9 +1,9 @@ -# $NetBSD: Makefile,v 1.40 2023/11/15 09:30:48 wiz Exp $ +# $NetBSD: Makefile,v 1.41 2024/02/19 12:35:42 wiz Exp $ # # Release notes: # https://lists.mercurial-scm.org/pipermail/mercurial/ -DISTNAME= hg-evolve-11.1.0 +DISTNAME= hg-evolve-11.1.1 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} CATEGORIES= devel scm MASTER_SITES= ${MASTER_SITE_PYPI:=h/hg-evolve/} Index: pkgsrc/devel/py-hg-evolve/distinfo diff -u pkgsrc/devel/py-hg-evolve/distinfo:1.27 pkgsrc/devel/py-hg-evolve/distinfo:1.28 --- pkgsrc/devel/py-hg-evolve/distinfo:1.27 Mon Nov 13 15:01:19 2023 +++ pkgsrc/devel/py-hg-evolve/distinfo Mon Feb 19 12:35:42 2024 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.27 2023/11/13 15:01:19 wiz Exp $ +$NetBSD: distinfo,v 1.28 2024/02/19 12:35:42 wiz Exp $ -BLAKE2s (hg-evolve-11.1.0.tar.gz) = 90cd95e75a127a1fbfbc3ea0484eb1411f3b972aa10c61f7abfeb3e79a09b2c2 -SHA512 (hg-evolve-11.1.0.tar.gz) = eb6ae86eacc97a98eb5de9d37ea04d3b2d560b0cad098314689156e01bb27f8001492299a5555b1ecba87c485919130d307696db3d3c4f0d0ac9b37aff6045c7 -Size (hg-evolve-11.1.0.tar.gz) = 858080 bytes +BLAKE2s (hg-evolve-11.1.1.tar.gz) = 4d2e95a25a9f00f2bc1c70def9b27e06545569eccb27bfc76561bc3b0e574a04 +SHA512 (hg-evolve-11.1.1.tar.gz) = 786b7a11da34528fa6b8830fe4532b5311eb8f8c8eb197ee2aa2105a2d1166d0ab0fc6051a2b7ea033314fba8922cd1fd19bd3fcdd3ff9d225d6773a25545b41 +Size (hg-evolve-11.1.1.tar.gz) = 860452 bytes --_----------=_170834614295890--