Sun Jul 17 09:51:33 2022 UTC ()
py-mercurial: update to 6.2.

This is the first release to support Python 3.6+ only

New Features

    Introduce a way to auto-upgrade a repo for certain requirements (see hg help config.format)
    filemerge: add support for partial conflict resolution by external tool
    contrib: add a partial-merge tool for sorted lists (such as Python imports)
    revlog: reorder p1 and p2 when p1 is null and p2 is not while respecting issue6528
    rhg: add support for ignoring all extensions
    completion: install completers to conventional locations
    revert: ask user to confirm before tracking new file when interactive
    Rust implementation now uses the new dirstate API
    sslutil: be less strict about which ciphers are allowed when using --insecure
    sslutil: support TLSV1_ALERT_PROTOCOL_VERSION reason code
    absorb: make --edit-lines imply --apply-changes
    diff: add help text to highlight the ability to do merge diffs
    censor: make rhg fall back to python when encountering a censored node
    clone: use better names for temp files
    debuglock: make the command more useful in non-interactive mode
    debugdeltachain: distinct between snapshot and other diffs
    debugindex: rename to debugindex debug-revlog-index
    Make debug-revlog-index give out more information
    sparse: use the rust code even when sparse is present

Bug Fixes

    Python 3 bugfixes
    Windows bugfixes
    templates: make firstline filter not keep '\v', '\f' and similar
    rhg: sort unsupported extensions in error message
    Improve performance of all functions that extract the first line of a text
    crecord: avoid duplicating lines when reverting noeol->eol change
    Some config.path options are now discoverable via config
    mail: don't complain about a multi-word email.method
    bundlespec: do not overwrite bundlespec value with the config one
    bundlespec: do not check for - in the params portion of the bundlespec
    bundlespec: handle the presence of obsmarker part
    sparse: start moving away from the global variable for detection of usage
    rust-changelog: don't skip empty lines when iterating over changeset lines
    narrow: support debugupgraderepo
    bundle: quick fix to ludicrous performance penalty
    followlines: don't put Unicode directly into the .js file (issue6559)
    manifest: improve error message in case for tree manifest
    revlog: use %d to format int instead of %lu (issue6565)
    revlog: use appropriate format char for int ("i" instead of I")
    worker: stop relying on garbage collection to release memoryview
    worker: implement _blockingreader.readinto() (issue6444)
    worker: avoid potential partial write of pickled data

Backwards Compatibility Changes

    Removed Python 2 support: this includes a lot of cleanup in our codebase, automation, testing, etc.
    debugindex: rename to debugindex debug-revlog-index

Miscellaneous

    Fix typos and add missing items from documentation
    dirstate-tree: optimize HashMap lookups with raw_entry_mut
    Rust dependencies have been upgraded
    revlog: rank computation is done by Rust when available
    Improve discovery test tooling
    Audit the number of queries done in discovery
    Improved .hgignore of the mercurial-devel repository itself
    Improve test coverage of dirstate-v2
    rust-requirements: allow loading repos with bookmarksinstore requirement
    Various Rust refactorings to help with revlog management
    Improve debugability of Rust structs
    Improve unit testing of the Rust dirstatemap
    Improve robustness of the Rust dirstatemap to corruption
    Improve changelog-v2 upgrade system


(wiz)
diff -r1.72 -r1.73 pkgsrc/devel/py-mercurial/Makefile
diff -r1.41 -r1.42 pkgsrc/devel/py-mercurial/PLIST
diff -r1.119 -r1.120 pkgsrc/devel/py-mercurial/distinfo
diff -r1.5 -r1.6 pkgsrc/devel/py-mercurial/options.mk
diff -r1.37 -r1.38 pkgsrc/devel/py-mercurial/version.mk

cvs diff -r1.72 -r1.73 pkgsrc/devel/py-mercurial/Makefile (expand / switch to unified diff)

--- pkgsrc/devel/py-mercurial/Makefile 2022/07/03 17:52:41 1.72
+++ pkgsrc/devel/py-mercurial/Makefile 2022/07/17 09:51:33 1.73
@@ -1,66 +1,63 @@ @@ -1,66 +1,63 @@
1# $NetBSD: Makefile,v 1.72 2022/07/03 17:52:41 wiz Exp $ 1# $NetBSD: Makefile,v 1.73 2022/07/17 09:51:33 wiz Exp $
2# 2#
3# Changelog sometimes at: https://www.mercurial-scm.org/wiki/WhatsNew 3# Changelog sometimes at: https://www.mercurial-scm.org/wiki/WhatsNew
4 4
5DISTNAME= mercurial-${VERSION} 5DISTNAME= mercurial-${VERSION}
6PKGNAME= ${PYPKGPREFIX}-${DISTNAME} 6PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
7CATEGORIES= devel scm 7CATEGORIES= devel scm
8MASTER_SITES= https://www.mercurial-scm.org/release/ 8MASTER_SITES= https://www.mercurial-scm.org/release/
9 9
10MAINTAINER= wiz@NetBSD.org 10MAINTAINER= wiz@NetBSD.org
11HOMEPAGE= https://www.mercurial-scm.org/ 11HOMEPAGE= https://www.mercurial-scm.org/
12COMMENT= Fast, lightweight source control management system 12COMMENT= Fast, lightweight source control management system
13LICENSE= gnu-gpl-v2 OR gnu-gpl-v3 # OR newer 13LICENSE= gnu-gpl-v2 OR gnu-gpl-v3 # OR newer
14 14
15DEPENDS+= ${PYPKGPREFIX}-curses-[0-9]*:../../devel/py-curses 15DEPENDS+= ${PYPKGPREFIX}-curses-[0-9]*:../../devel/py-curses
16# via xmlrpc from python itself, used in mercurial/pycompat.py 16# via xmlrpc from python itself, used in mercurial/pycompat.py
17DEPENDS+= ${PYPKGPREFIX}-expat-[0-9]*:../../textproc/py-expat 17DEPENDS+= ${PYPKGPREFIX}-expat-[0-9]*:../../textproc/py-expat
18 18
19TEST_DEPENDS+= ${PYPKGPREFIX}-sqlite3-[0-9]*:../../databases/py-sqlite3 19TEST_DEPENDS+= ${PYPKGPREFIX}-sqlite3-[0-9]*:../../databases/py-sqlite3
20 20
21USE_TOOLS+= gmake msgfmt 21USE_TOOLS+= gmake msgfmt
22 22
23INSTALLATION_DIRS= bin ${PKGMANDIR}/man1 ${PKGMANDIR}/man5 23INSTALLATION_DIRS= bin ${PKGMANDIR}/man1 ${PKGMANDIR}/man5
24INSTALLATION_DIRS+= share/doc/mercurial 24INSTALLATION_DIRS+= share/doc/mercurial
25 25
26PYTHON_SELF_CONFLICT= yes 26PYTHON_VERSIONS_INCOMPATIBLE= 27
 27PYTHON_SELF_CONFLICT= yes
27 28
28.include "version.mk" 29.include "version.mk"
29.include "options.mk" 30.include "options.mk"
30 31
31USE_TOOLS+= bash:test 32USE_TOOLS+= bash:test
32# Known test failures as of 6.1.4 33# Known test failures as of 6.2
33# test-run-tests.t 34# test-run-tests.t
34# https://bz.mercurial-scm.org/show_bug.cgi?id=6661 35# https://bz.mercurial-scm.org/show_bug.cgi?id=6661
35# test-http-bad-server.t 36# test-http-bad-server.t
36# https://bz.mercurial-scm.org/show_bug.cgi?id=6643 37# https://bz.mercurial-scm.org/show_bug.cgi?id=6643
37# test-https.t 38# test-https.t
38# test-patchbomb-tls.t 39# https://bz.mercurial-scm.org/show_bug.cgi?id=6726
39# https://bz.mercurial-scm.org/show_bug.cgi?id=6645 
40# test-paths.t 
41# test-hgrc.t 
42# test-parseindex.t 
43# test-patchbomb-tls.t 
44# https://bz.mercurial-scm.org/show_bug.cgi?id=6646 
45# test-removeemptydirs.t 40# test-removeemptydirs.t
46# https://bz.mercurial-scm.org/show_bug.cgi?id=6587 41# https://bz.mercurial-scm.org/show_bug.cgi?id=6587
47# test-revlog.t 
48# https://bz.mercurial-scm.org/show_bug.cgi?id=6716 
49# test-status-tracked-key.t 42# test-status-tracked-key.t
50# https://bz.mercurial-scm.org/show_bug.cgi?id=6662 43# https://bz.mercurial-scm.org/show_bug.cgi?id=6662
 44# test-revlog.t
 45# https://bz.mercurial-scm.org/show_bug.cgi?id=6716
 46# test-patchbomb-tls.t:
 47# https://bz.mercurial-scm.org/show_bug.cgi?id=6727
51# test-demandimport.py: 48# test-demandimport.py:
52# https://bz.mercurial-scm.org/show_bug.cgi?id=6680 49# https://bz.mercurial-scm.org/show_bug.cgi?id=6680
53# 50#
54# Ran 885 tests, 82 skipped, 11 failed. 51# Ran 889 tests, 83 skipped, 8 failed.
55 52
56TEST_TARGET= tests 53TEST_TARGET= tests
57TEST_MAKE_FLAGS+= PYTHON=${PYTHONBIN} TESTFLAGS=${_MAKE_JOBS:Q} 54TEST_MAKE_FLAGS+= PYTHON=${PYTHONBIN} TESTFLAGS=${_MAKE_JOBS:Q}
58 55
59post-install: 56post-install:
60 ${INSTALL_DATA} ${WRKSRC}/doc/*.1 ${DESTDIR}${PREFIX}/${PKGMANDIR}/man1 57 ${INSTALL_DATA} ${WRKSRC}/doc/*.1 ${DESTDIR}${PREFIX}/${PKGMANDIR}/man1
61 ${INSTALL_DATA} ${WRKSRC}/doc/*.5 ${DESTDIR}${PREFIX}/${PKGMANDIR}/man5 58 ${INSTALL_DATA} ${WRKSRC}/doc/*.5 ${DESTDIR}${PREFIX}/${PKGMANDIR}/man5
62 ${INSTALL_DATA} ${WRKSRC}/README.rst \ 59 ${INSTALL_DATA} ${WRKSRC}/README.rst \
63 ${DESTDIR}${PREFIX}/share/doc/mercurial 60 ${DESTDIR}${PREFIX}/share/doc/mercurial
64 61
65.include "../../lang/python/egg.mk" 62.include "../../lang/python/egg.mk"
66.include "../../mk/bsd.pkg.mk" 63.include "../../mk/bsd.pkg.mk"

cvs diff -r1.41 -r1.42 pkgsrc/devel/py-mercurial/PLIST (expand / switch to unified diff)

--- pkgsrc/devel/py-mercurial/PLIST 2022/03/08 11:05:09 1.41
+++ pkgsrc/devel/py-mercurial/PLIST 2022/07/17 09:51:33 1.42
@@ -1,21 +1,18 @@ @@ -1,21 +1,18 @@
1@comment $NetBSD: PLIST,v 1.41 2022/03/08 11:05:09 wiz Exp $ 1@comment $NetBSD: PLIST,v 1.42 2022/07/17 09:51:33 wiz Exp $
2bin/hg 2bin/hg
3${PYSITELIB}/hgdemandimport/__init__.py 3${PYSITELIB}/hgdemandimport/__init__.py
4${PYSITELIB}/hgdemandimport/__init__.pyc 4${PYSITELIB}/hgdemandimport/__init__.pyc
5${PYSITELIB}/hgdemandimport/__init__.pyo 5${PYSITELIB}/hgdemandimport/__init__.pyo
6${PYSITELIB}/hgdemandimport/demandimportpy2.py 
7${PYSITELIB}/hgdemandimport/demandimportpy2.pyc 
8${PYSITELIB}/hgdemandimport/demandimportpy2.pyo 
9${PYSITELIB}/hgdemandimport/demandimportpy3.py 6${PYSITELIB}/hgdemandimport/demandimportpy3.py
10${PYSITELIB}/hgdemandimport/demandimportpy3.pyc 7${PYSITELIB}/hgdemandimport/demandimportpy3.pyc
11${PYSITELIB}/hgdemandimport/demandimportpy3.pyo 8${PYSITELIB}/hgdemandimport/demandimportpy3.pyo
12${PYSITELIB}/hgdemandimport/tracing.py 9${PYSITELIB}/hgdemandimport/tracing.py
13${PYSITELIB}/hgdemandimport/tracing.pyc 10${PYSITELIB}/hgdemandimport/tracing.pyc
14${PYSITELIB}/hgdemandimport/tracing.pyo 11${PYSITELIB}/hgdemandimport/tracing.pyo
15${PYSITELIB}/hgext/__init__.py 12${PYSITELIB}/hgext/__init__.py
16${PYSITELIB}/hgext/__init__.pyc 13${PYSITELIB}/hgext/__init__.pyc
17${PYSITELIB}/hgext/__init__.pyo 14${PYSITELIB}/hgext/__init__.pyo
18${PYSITELIB}/hgext/absorb.py 15${PYSITELIB}/hgext/absorb.py
19${PYSITELIB}/hgext/absorb.pyc 16${PYSITELIB}/hgext/absorb.pyc
20${PYSITELIB}/hgext/absorb.pyo 17${PYSITELIB}/hgext/absorb.pyo
21${PYSITELIB}/hgext/acl.py 18${PYSITELIB}/hgext/acl.py
@@ -162,44 +159,44 @@ ${PYSITELIB}/hgext/fsmonitor/pywatchman/ @@ -162,44 +159,44 @@ ${PYSITELIB}/hgext/fsmonitor/pywatchman/
162${PYSITELIB}/hgext/fsmonitor/pywatchman/encoding.pyo 159${PYSITELIB}/hgext/fsmonitor/pywatchman/encoding.pyo
163${PYSITELIB}/hgext/fsmonitor/pywatchman/load.py 160${PYSITELIB}/hgext/fsmonitor/pywatchman/load.py
164${PYSITELIB}/hgext/fsmonitor/pywatchman/load.pyc 161${PYSITELIB}/hgext/fsmonitor/pywatchman/load.pyc
165${PYSITELIB}/hgext/fsmonitor/pywatchman/load.pyo 162${PYSITELIB}/hgext/fsmonitor/pywatchman/load.pyo
166${PYSITELIB}/hgext/fsmonitor/pywatchman/pybser.py 163${PYSITELIB}/hgext/fsmonitor/pywatchman/pybser.py
167${PYSITELIB}/hgext/fsmonitor/pywatchman/pybser.pyc 164${PYSITELIB}/hgext/fsmonitor/pywatchman/pybser.pyc
168${PYSITELIB}/hgext/fsmonitor/pywatchman/pybser.pyo 165${PYSITELIB}/hgext/fsmonitor/pywatchman/pybser.pyo
169${PYSITELIB}/hgext/fsmonitor/state.py 166${PYSITELIB}/hgext/fsmonitor/state.py
170${PYSITELIB}/hgext/fsmonitor/state.pyc 167${PYSITELIB}/hgext/fsmonitor/state.pyc
171${PYSITELIB}/hgext/fsmonitor/state.pyo 168${PYSITELIB}/hgext/fsmonitor/state.pyo
172${PYSITELIB}/hgext/fsmonitor/watchmanclient.py 169${PYSITELIB}/hgext/fsmonitor/watchmanclient.py
173${PYSITELIB}/hgext/fsmonitor/watchmanclient.pyc 170${PYSITELIB}/hgext/fsmonitor/watchmanclient.pyc
174${PYSITELIB}/hgext/fsmonitor/watchmanclient.pyo 171${PYSITELIB}/hgext/fsmonitor/watchmanclient.pyo
175${PLIST.py3x}${PYSITELIB}/hgext/git/__init__.py 172${PYSITELIB}/hgext/git/__init__.py
176${PLIST.py3x}${PYSITELIB}/hgext/git/__init__.pyc 173${PYSITELIB}/hgext/git/__init__.pyc
177${PLIST.py3x}${PYSITELIB}/hgext/git/__init__.pyo 174${PYSITELIB}/hgext/git/__init__.pyo
178${PLIST.py3x}${PYSITELIB}/hgext/git/dirstate.py 175${PYSITELIB}/hgext/git/dirstate.py
179${PLIST.py3x}${PYSITELIB}/hgext/git/dirstate.pyc 176${PYSITELIB}/hgext/git/dirstate.pyc
180${PLIST.py3x}${PYSITELIB}/hgext/git/dirstate.pyo 177${PYSITELIB}/hgext/git/dirstate.pyo
181${PLIST.py3x}${PYSITELIB}/hgext/git/gitlog.py 178${PYSITELIB}/hgext/git/gitlog.py
182${PLIST.py3x}${PYSITELIB}/hgext/git/gitlog.pyc 179${PYSITELIB}/hgext/git/gitlog.pyc
183${PLIST.py3x}${PYSITELIB}/hgext/git/gitlog.pyo 180${PYSITELIB}/hgext/git/gitlog.pyo
184${PLIST.py3x}${PYSITELIB}/hgext/git/gitutil.py 181${PYSITELIB}/hgext/git/gitutil.py
185${PLIST.py3x}${PYSITELIB}/hgext/git/gitutil.pyc 182${PYSITELIB}/hgext/git/gitutil.pyc
186${PLIST.py3x}${PYSITELIB}/hgext/git/gitutil.pyo 183${PYSITELIB}/hgext/git/gitutil.pyo
187${PLIST.py3x}${PYSITELIB}/hgext/git/index.py 184${PYSITELIB}/hgext/git/index.py
188${PLIST.py3x}${PYSITELIB}/hgext/git/index.pyc 185${PYSITELIB}/hgext/git/index.pyc
189${PLIST.py3x}${PYSITELIB}/hgext/git/index.pyo 186${PYSITELIB}/hgext/git/index.pyo
190${PLIST.py3x}${PYSITELIB}/hgext/git/manifest.py 187${PYSITELIB}/hgext/git/manifest.py
191${PLIST.py3x}${PYSITELIB}/hgext/git/manifest.pyc 188${PYSITELIB}/hgext/git/manifest.pyc
192${PLIST.py3x}${PYSITELIB}/hgext/git/manifest.pyo 189${PYSITELIB}/hgext/git/manifest.pyo
193${PYSITELIB}/hgext/githelp.py 190${PYSITELIB}/hgext/githelp.py
194${PYSITELIB}/hgext/githelp.pyc 191${PYSITELIB}/hgext/githelp.pyc
195${PYSITELIB}/hgext/githelp.pyo 192${PYSITELIB}/hgext/githelp.pyo
196${PYSITELIB}/hgext/gpg.py 193${PYSITELIB}/hgext/gpg.py
197${PYSITELIB}/hgext/gpg.pyc 194${PYSITELIB}/hgext/gpg.pyc
198${PYSITELIB}/hgext/gpg.pyo 195${PYSITELIB}/hgext/gpg.pyo
199${PYSITELIB}/hgext/graphlog.py 196${PYSITELIB}/hgext/graphlog.py
200${PYSITELIB}/hgext/graphlog.pyc 197${PYSITELIB}/hgext/graphlog.pyc
201${PYSITELIB}/hgext/graphlog.pyo 198${PYSITELIB}/hgext/graphlog.pyo
202${PYSITELIB}/hgext/hgk.py 199${PYSITELIB}/hgext/hgk.py
203${PYSITELIB}/hgext/hgk.pyc 200${PYSITELIB}/hgext/hgk.pyc
204${PYSITELIB}/hgext/hgk.pyo 201${PYSITELIB}/hgext/hgk.pyo
205${PYSITELIB}/hgext/highlight/__init__.py 202${PYSITELIB}/hgext/highlight/__init__.py
@@ -453,31 +450,30 @@ ${PYSITELIB}/hgext/win32mbcs.pyc @@ -453,31 +450,30 @@ ${PYSITELIB}/hgext/win32mbcs.pyc
453${PYSITELIB}/hgext/win32mbcs.pyo 450${PYSITELIB}/hgext/win32mbcs.pyo
454${PYSITELIB}/hgext/win32text.py 451${PYSITELIB}/hgext/win32text.py
455${PYSITELIB}/hgext/win32text.pyc 452${PYSITELIB}/hgext/win32text.pyc
456${PYSITELIB}/hgext/win32text.pyo 453${PYSITELIB}/hgext/win32text.pyo
457${PYSITELIB}/hgext/zeroconf/Zeroconf.py 454${PYSITELIB}/hgext/zeroconf/Zeroconf.py
458${PYSITELIB}/hgext/zeroconf/Zeroconf.pyc 455${PYSITELIB}/hgext/zeroconf/Zeroconf.pyc
459${PYSITELIB}/hgext/zeroconf/Zeroconf.pyo 456${PYSITELIB}/hgext/zeroconf/Zeroconf.pyo
460${PYSITELIB}/hgext/zeroconf/__init__.py 457${PYSITELIB}/hgext/zeroconf/__init__.py
461${PYSITELIB}/hgext/zeroconf/__init__.pyc 458${PYSITELIB}/hgext/zeroconf/__init__.pyc
462${PYSITELIB}/hgext/zeroconf/__init__.pyo 459${PYSITELIB}/hgext/zeroconf/__init__.pyo
463${PYSITELIB}/hgext3rd/__init__.py 460${PYSITELIB}/hgext3rd/__init__.py
464${PYSITELIB}/hgext3rd/__init__.pyc 461${PYSITELIB}/hgext3rd/__init__.pyc
465${PYSITELIB}/hgext3rd/__init__.pyo 462${PYSITELIB}/hgext3rd/__init__.pyo
466${PLIST.py2x}${PYSITELIB}/${EGG_INFODIR} 463${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
467${PLIST.py3x}${PYSITELIB}/${EGG_INFODIR}/PKG-INFO 464${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
468${PLIST.py3x}${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt 465${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
469${PLIST.py3x}${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt 466${PYSITELIB}/${EGG_INFODIR}/top_level.txt
470${PLIST.py3x}${PYSITELIB}/${EGG_INFODIR}/top_level.txt 
471${PYSITELIB}/mercurial/__init__.py 467${PYSITELIB}/mercurial/__init__.py
472${PYSITELIB}/mercurial/__init__.pyc 468${PYSITELIB}/mercurial/__init__.pyc
473${PYSITELIB}/mercurial/__init__.pyo 469${PYSITELIB}/mercurial/__init__.pyo
474${PYSITELIB}/mercurial/__modulepolicy__.py 470${PYSITELIB}/mercurial/__modulepolicy__.py
475${PYSITELIB}/mercurial/__modulepolicy__.pyc 471${PYSITELIB}/mercurial/__modulepolicy__.pyc
476${PYSITELIB}/mercurial/__modulepolicy__.pyo 472${PYSITELIB}/mercurial/__modulepolicy__.pyo
477${PYSITELIB}/mercurial/__version__.py 473${PYSITELIB}/mercurial/__version__.py
478${PYSITELIB}/mercurial/__version__.pyc 474${PYSITELIB}/mercurial/__version__.pyc
479${PYSITELIB}/mercurial/__version__.pyo 475${PYSITELIB}/mercurial/__version__.pyo
480${PYSITELIB}/mercurial/ancestor.py 476${PYSITELIB}/mercurial/ancestor.py
481${PYSITELIB}/mercurial/ancestor.pyc 477${PYSITELIB}/mercurial/ancestor.pyc
482${PYSITELIB}/mercurial/ancestor.pyo 478${PYSITELIB}/mercurial/ancestor.pyo
483${PYSITELIB}/mercurial/archival.py 479${PYSITELIB}/mercurial/archival.py
@@ -699,28 +695,28 @@ ${PYSITELIB}/mercurial/helptext/internal @@ -699,28 +695,28 @@ ${PYSITELIB}/mercurial/helptext/internal
699${PYSITELIB}/mercurial/helptext/internals/dirstate-v2.txt 695${PYSITELIB}/mercurial/helptext/internals/dirstate-v2.txt
700${PYSITELIB}/mercurial/helptext/internals/extensions.txt 696${PYSITELIB}/mercurial/helptext/internals/extensions.txt
701${PYSITELIB}/mercurial/helptext/internals/linelog.txt 697${PYSITELIB}/mercurial/helptext/internals/linelog.txt
702${PYSITELIB}/mercurial/helptext/internals/mergestate.txt 698${PYSITELIB}/mercurial/helptext/internals/mergestate.txt
703${PYSITELIB}/mercurial/helptext/internals/requirements.txt 699${PYSITELIB}/mercurial/helptext/internals/requirements.txt
704${PYSITELIB}/mercurial/helptext/internals/revlogs.txt 700${PYSITELIB}/mercurial/helptext/internals/revlogs.txt
705${PYSITELIB}/mercurial/helptext/internals/wireprotocol.txt 701${PYSITELIB}/mercurial/helptext/internals/wireprotocol.txt
706${PYSITELIB}/mercurial/helptext/internals/wireprotocolrpc.txt 702${PYSITELIB}/mercurial/helptext/internals/wireprotocolrpc.txt
707${PYSITELIB}/mercurial/helptext/internals/wireprotocolv2.txt 703${PYSITELIB}/mercurial/helptext/internals/wireprotocolv2.txt
708${PYSITELIB}/mercurial/helptext/merge-tools.txt 704${PYSITELIB}/mercurial/helptext/merge-tools.txt
709${PYSITELIB}/mercurial/helptext/pager.txt 705${PYSITELIB}/mercurial/helptext/pager.txt
710${PYSITELIB}/mercurial/helptext/patterns.txt 706${PYSITELIB}/mercurial/helptext/patterns.txt
711${PYSITELIB}/mercurial/helptext/phases.txt 707${PYSITELIB}/mercurial/helptext/phases.txt
712${PYSITELIB}/mercurial/helptext/rust.txt 
713${PYSITELIB}/mercurial/helptext/revisions.txt 708${PYSITELIB}/mercurial/helptext/revisions.txt
 709${PYSITELIB}/mercurial/helptext/rust.txt
714${PYSITELIB}/mercurial/helptext/scripting.txt 710${PYSITELIB}/mercurial/helptext/scripting.txt
715${PYSITELIB}/mercurial/helptext/subrepos.txt 711${PYSITELIB}/mercurial/helptext/subrepos.txt
716${PYSITELIB}/mercurial/helptext/templates.txt 712${PYSITELIB}/mercurial/helptext/templates.txt
717${PYSITELIB}/mercurial/helptext/urls.txt 713${PYSITELIB}/mercurial/helptext/urls.txt
718${PYSITELIB}/mercurial/hg.py 714${PYSITELIB}/mercurial/hg.py
719${PYSITELIB}/mercurial/hg.pyc 715${PYSITELIB}/mercurial/hg.pyc
720${PYSITELIB}/mercurial/hg.pyo 716${PYSITELIB}/mercurial/hg.pyo
721${PYSITELIB}/mercurial/hgweb/__init__.py 717${PYSITELIB}/mercurial/hgweb/__init__.py
722${PYSITELIB}/mercurial/hgweb/__init__.pyc 718${PYSITELIB}/mercurial/hgweb/__init__.pyc
723${PYSITELIB}/mercurial/hgweb/__init__.pyo 719${PYSITELIB}/mercurial/hgweb/__init__.pyo
724${PYSITELIB}/mercurial/hgweb/common.py 720${PYSITELIB}/mercurial/hgweb/common.py
725${PYSITELIB}/mercurial/hgweb/common.pyc 721${PYSITELIB}/mercurial/hgweb/common.pyc
726${PYSITELIB}/mercurial/hgweb/common.pyo 722${PYSITELIB}/mercurial/hgweb/common.pyo
@@ -930,26 +926,29 @@ ${PYSITELIB}/mercurial/requirements.pyc @@ -930,26 +926,29 @@ ${PYSITELIB}/mercurial/requirements.pyc
930${PYSITELIB}/mercurial/requirements.pyo 926${PYSITELIB}/mercurial/requirements.pyo
931${PYSITELIB}/mercurial/revlog.py 927${PYSITELIB}/mercurial/revlog.py
932${PYSITELIB}/mercurial/revlog.pyc 928${PYSITELIB}/mercurial/revlog.pyc
933${PYSITELIB}/mercurial/revlog.pyo 929${PYSITELIB}/mercurial/revlog.pyo
934${PYSITELIB}/mercurial/revlogutils/__init__.py 930${PYSITELIB}/mercurial/revlogutils/__init__.py
935${PYSITELIB}/mercurial/revlogutils/__init__.pyc 931${PYSITELIB}/mercurial/revlogutils/__init__.pyc
936${PYSITELIB}/mercurial/revlogutils/__init__.pyo 932${PYSITELIB}/mercurial/revlogutils/__init__.pyo
937${PYSITELIB}/mercurial/revlogutils/concurrency_checker.py 933${PYSITELIB}/mercurial/revlogutils/concurrency_checker.py
938${PYSITELIB}/mercurial/revlogutils/concurrency_checker.pyc 934${PYSITELIB}/mercurial/revlogutils/concurrency_checker.pyc
939${PYSITELIB}/mercurial/revlogutils/concurrency_checker.pyo 935${PYSITELIB}/mercurial/revlogutils/concurrency_checker.pyo
940${PYSITELIB}/mercurial/revlogutils/constants.py 936${PYSITELIB}/mercurial/revlogutils/constants.py
941${PYSITELIB}/mercurial/revlogutils/constants.pyc 937${PYSITELIB}/mercurial/revlogutils/constants.pyc
942${PYSITELIB}/mercurial/revlogutils/constants.pyo 938${PYSITELIB}/mercurial/revlogutils/constants.pyo
 939${PYSITELIB}/mercurial/revlogutils/debug.py
 940${PYSITELIB}/mercurial/revlogutils/debug.pyc
 941${PYSITELIB}/mercurial/revlogutils/debug.pyo
943${PYSITELIB}/mercurial/revlogutils/deltas.py 942${PYSITELIB}/mercurial/revlogutils/deltas.py
944${PYSITELIB}/mercurial/revlogutils/deltas.pyc 943${PYSITELIB}/mercurial/revlogutils/deltas.pyc
945${PYSITELIB}/mercurial/revlogutils/deltas.pyo 944${PYSITELIB}/mercurial/revlogutils/deltas.pyo
946${PYSITELIB}/mercurial/revlogutils/docket.py 945${PYSITELIB}/mercurial/revlogutils/docket.py
947${PYSITELIB}/mercurial/revlogutils/docket.pyc 946${PYSITELIB}/mercurial/revlogutils/docket.pyc
948${PYSITELIB}/mercurial/revlogutils/docket.pyo 947${PYSITELIB}/mercurial/revlogutils/docket.pyo
949${PYSITELIB}/mercurial/revlogutils/flagutil.py 948${PYSITELIB}/mercurial/revlogutils/flagutil.py
950${PYSITELIB}/mercurial/revlogutils/flagutil.pyc 949${PYSITELIB}/mercurial/revlogutils/flagutil.pyc
951${PYSITELIB}/mercurial/revlogutils/flagutil.pyo 950${PYSITELIB}/mercurial/revlogutils/flagutil.pyo
952${PYSITELIB}/mercurial/revlogutils/nodemap.py 951${PYSITELIB}/mercurial/revlogutils/nodemap.py
953${PYSITELIB}/mercurial/revlogutils/nodemap.pyc 952${PYSITELIB}/mercurial/revlogutils/nodemap.pyc
954${PYSITELIB}/mercurial/revlogutils/nodemap.pyo 953${PYSITELIB}/mercurial/revlogutils/nodemap.pyo
955${PYSITELIB}/mercurial/revlogutils/randomaccessfile.py 954${PYSITELIB}/mercurial/revlogutils/randomaccessfile.py
@@ -963,27 +962,26 @@ ${PYSITELIB}/mercurial/revlogutils/rewri @@ -963,27 +962,26 @@ ${PYSITELIB}/mercurial/revlogutils/rewri
963${PYSITELIB}/mercurial/revlogutils/rewrite.pyo 962${PYSITELIB}/mercurial/revlogutils/rewrite.pyo
964${PYSITELIB}/mercurial/revlogutils/sidedata.py 963${PYSITELIB}/mercurial/revlogutils/sidedata.py
965${PYSITELIB}/mercurial/revlogutils/sidedata.pyc 964${PYSITELIB}/mercurial/revlogutils/sidedata.pyc
966${PYSITELIB}/mercurial/revlogutils/sidedata.pyo 965${PYSITELIB}/mercurial/revlogutils/sidedata.pyo
967${PYSITELIB}/mercurial/revset.py 966${PYSITELIB}/mercurial/revset.py
968${PYSITELIB}/mercurial/revset.pyc 967${PYSITELIB}/mercurial/revset.pyc
969${PYSITELIB}/mercurial/revset.pyo 968${PYSITELIB}/mercurial/revset.pyo
970${PYSITELIB}/mercurial/revsetlang.py 969${PYSITELIB}/mercurial/revsetlang.py
971${PYSITELIB}/mercurial/revsetlang.pyc 970${PYSITELIB}/mercurial/revsetlang.pyc
972${PYSITELIB}/mercurial/revsetlang.pyo 971${PYSITELIB}/mercurial/revsetlang.pyo
973${PYSITELIB}/mercurial/rewriteutil.py 972${PYSITELIB}/mercurial/rewriteutil.py
974${PYSITELIB}/mercurial/rewriteutil.pyc 973${PYSITELIB}/mercurial/rewriteutil.pyc
975${PYSITELIB}/mercurial/rewriteutil.pyo 974${PYSITELIB}/mercurial/rewriteutil.pyo
976${PLIST.rust}${PYSITELIB}/mercurial/rustext.so 
977${PYSITELIB}/mercurial/scmposix.py 975${PYSITELIB}/mercurial/scmposix.py
978${PYSITELIB}/mercurial/scmposix.pyc 976${PYSITELIB}/mercurial/scmposix.pyc
979${PYSITELIB}/mercurial/scmposix.pyo 977${PYSITELIB}/mercurial/scmposix.pyo
980${PYSITELIB}/mercurial/scmutil.py 978${PYSITELIB}/mercurial/scmutil.py
981${PYSITELIB}/mercurial/scmutil.pyc 979${PYSITELIB}/mercurial/scmutil.pyc
982${PYSITELIB}/mercurial/scmutil.pyo 980${PYSITELIB}/mercurial/scmutil.pyo
983${PYSITELIB}/mercurial/scmwindows.py 981${PYSITELIB}/mercurial/scmwindows.py
984${PYSITELIB}/mercurial/scmwindows.pyc 982${PYSITELIB}/mercurial/scmwindows.pyc
985${PYSITELIB}/mercurial/scmwindows.pyo 983${PYSITELIB}/mercurial/scmwindows.pyo
986${PYSITELIB}/mercurial/server.py 984${PYSITELIB}/mercurial/server.py
987${PYSITELIB}/mercurial/server.pyc 985${PYSITELIB}/mercurial/server.pyc
988${PYSITELIB}/mercurial/server.pyo 986${PYSITELIB}/mercurial/server.pyo
989${PYSITELIB}/mercurial/setdiscovery.py 987${PYSITELIB}/mercurial/setdiscovery.py
@@ -1282,44 +1280,26 @@ ${PYSITELIB}/mercurial/thirdparty/attr/_ @@ -1282,44 +1280,26 @@ ${PYSITELIB}/mercurial/thirdparty/attr/_
1282${PYSITELIB}/mercurial/thirdparty/attr/_make.pyo 1280${PYSITELIB}/mercurial/thirdparty/attr/_make.pyo
1283${PYSITELIB}/mercurial/thirdparty/attr/converters.py 1281${PYSITELIB}/mercurial/thirdparty/attr/converters.py
1284${PYSITELIB}/mercurial/thirdparty/attr/converters.pyc 1282${PYSITELIB}/mercurial/thirdparty/attr/converters.pyc
1285${PYSITELIB}/mercurial/thirdparty/attr/converters.pyo 1283${PYSITELIB}/mercurial/thirdparty/attr/converters.pyo
1286${PYSITELIB}/mercurial/thirdparty/attr/exceptions.py 1284${PYSITELIB}/mercurial/thirdparty/attr/exceptions.py
1287${PYSITELIB}/mercurial/thirdparty/attr/exceptions.pyc 1285${PYSITELIB}/mercurial/thirdparty/attr/exceptions.pyc
1288${PYSITELIB}/mercurial/thirdparty/attr/exceptions.pyo 1286${PYSITELIB}/mercurial/thirdparty/attr/exceptions.pyo
1289${PYSITELIB}/mercurial/thirdparty/attr/filters.py 1287${PYSITELIB}/mercurial/thirdparty/attr/filters.py
1290${PYSITELIB}/mercurial/thirdparty/attr/filters.pyc 1288${PYSITELIB}/mercurial/thirdparty/attr/filters.pyc
1291${PYSITELIB}/mercurial/thirdparty/attr/filters.pyo 1289${PYSITELIB}/mercurial/thirdparty/attr/filters.pyo
1292${PYSITELIB}/mercurial/thirdparty/attr/validators.py 1290${PYSITELIB}/mercurial/thirdparty/attr/validators.py
1293${PYSITELIB}/mercurial/thirdparty/attr/validators.pyc 1291${PYSITELIB}/mercurial/thirdparty/attr/validators.pyc
1294${PYSITELIB}/mercurial/thirdparty/attr/validators.pyo 1292${PYSITELIB}/mercurial/thirdparty/attr/validators.pyo
1295${PLIST.py2x}${PYSITELIB}/mercurial/thirdparty/concurrent/__init__.py 
1296${PLIST.py2x}${PYSITELIB}/mercurial/thirdparty/concurrent/__init__.pyc 
1297${PLIST.py2x}${PYSITELIB}/mercurial/thirdparty/concurrent/__init__.pyo 
1298${PLIST.py2x}${PYSITELIB}/mercurial/thirdparty/concurrent/futures/__init__.py 
1299${PLIST.py2x}${PYSITELIB}/mercurial/thirdparty/concurrent/futures/__init__.pyc 
1300${PLIST.py2x}${PYSITELIB}/mercurial/thirdparty/concurrent/futures/__init__.pyo 
1301${PLIST.py2x}${PYSITELIB}/mercurial/thirdparty/concurrent/futures/_base.py 
1302${PLIST.py2x}${PYSITELIB}/mercurial/thirdparty/concurrent/futures/_base.pyc 
1303${PLIST.py2x}${PYSITELIB}/mercurial/thirdparty/concurrent/futures/_base.pyo 
1304${PLIST.py2x}${PYSITELIB}/mercurial/thirdparty/concurrent/futures/process.py 
1305${PLIST.py2x}${PYSITELIB}/mercurial/thirdparty/concurrent/futures/process.pyc 
1306${PLIST.py2x}${PYSITELIB}/mercurial/thirdparty/concurrent/futures/process.pyo 
1307${PLIST.py2x}${PYSITELIB}/mercurial/thirdparty/concurrent/futures/thread.py 
1308${PLIST.py2x}${PYSITELIB}/mercurial/thirdparty/concurrent/futures/thread.pyc 
1309${PLIST.py2x}${PYSITELIB}/mercurial/thirdparty/concurrent/futures/thread.pyo 
1310${PYSITELIB}/mercurial/thirdparty/selectors2.py 
1311${PYSITELIB}/mercurial/thirdparty/selectors2.pyc 
1312${PYSITELIB}/mercurial/thirdparty/selectors2.pyo 
1313${PYSITELIB}/mercurial/thirdparty/sha1dc.so 1293${PYSITELIB}/mercurial/thirdparty/sha1dc.so
1314${PYSITELIB}/mercurial/thirdparty/zope/__init__.py 1294${PYSITELIB}/mercurial/thirdparty/zope/__init__.py
1315${PYSITELIB}/mercurial/thirdparty/zope/__init__.pyc 1295${PYSITELIB}/mercurial/thirdparty/zope/__init__.pyc
1316${PYSITELIB}/mercurial/thirdparty/zope/__init__.pyo 1296${PYSITELIB}/mercurial/thirdparty/zope/__init__.pyo
1317${PYSITELIB}/mercurial/thirdparty/zope/interface/__init__.py 1297${PYSITELIB}/mercurial/thirdparty/zope/interface/__init__.py
1318${PYSITELIB}/mercurial/thirdparty/zope/interface/__init__.pyc 1298${PYSITELIB}/mercurial/thirdparty/zope/interface/__init__.pyc
1319${PYSITELIB}/mercurial/thirdparty/zope/interface/__init__.pyo 1299${PYSITELIB}/mercurial/thirdparty/zope/interface/__init__.pyo
1320${PYSITELIB}/mercurial/thirdparty/zope/interface/_compat.py 1300${PYSITELIB}/mercurial/thirdparty/zope/interface/_compat.py
1321${PYSITELIB}/mercurial/thirdparty/zope/interface/_compat.pyc 1301${PYSITELIB}/mercurial/thirdparty/zope/interface/_compat.pyc
1322${PYSITELIB}/mercurial/thirdparty/zope/interface/_compat.pyo 1302${PYSITELIB}/mercurial/thirdparty/zope/interface/_compat.pyo
1323${PYSITELIB}/mercurial/thirdparty/zope/interface/_flatten.py 1303${PYSITELIB}/mercurial/thirdparty/zope/interface/_flatten.py
1324${PYSITELIB}/mercurial/thirdparty/zope/interface/_flatten.pyc 1304${PYSITELIB}/mercurial/thirdparty/zope/interface/_flatten.pyc
1325${PYSITELIB}/mercurial/thirdparty/zope/interface/_flatten.pyo 1305${PYSITELIB}/mercurial/thirdparty/zope/interface/_flatten.pyo
@@ -1368,26 +1348,29 @@ ${PYSITELIB}/mercurial/ui.pyc @@ -1368,26 +1348,29 @@ ${PYSITELIB}/mercurial/ui.pyc
1368${PYSITELIB}/mercurial/ui.pyo 1348${PYSITELIB}/mercurial/ui.pyo
1369${PYSITELIB}/mercurial/unionrepo.py 1349${PYSITELIB}/mercurial/unionrepo.py
1370${PYSITELIB}/mercurial/unionrepo.pyc 1350${PYSITELIB}/mercurial/unionrepo.pyc
1371${PYSITELIB}/mercurial/unionrepo.pyo 1351${PYSITELIB}/mercurial/unionrepo.pyo
1372${PYSITELIB}/mercurial/upgrade.py 1352${PYSITELIB}/mercurial/upgrade.py
1373${PYSITELIB}/mercurial/upgrade.pyc 1353${PYSITELIB}/mercurial/upgrade.pyc
1374${PYSITELIB}/mercurial/upgrade.pyo 1354${PYSITELIB}/mercurial/upgrade.pyo
1375${PYSITELIB}/mercurial/upgrade_utils/__init__.py 1355${PYSITELIB}/mercurial/upgrade_utils/__init__.py
1376${PYSITELIB}/mercurial/upgrade_utils/__init__.pyc 1356${PYSITELIB}/mercurial/upgrade_utils/__init__.pyc
1377${PYSITELIB}/mercurial/upgrade_utils/__init__.pyo 1357${PYSITELIB}/mercurial/upgrade_utils/__init__.pyo
1378${PYSITELIB}/mercurial/upgrade_utils/actions.py 1358${PYSITELIB}/mercurial/upgrade_utils/actions.py
1379${PYSITELIB}/mercurial/upgrade_utils/actions.pyc 1359${PYSITELIB}/mercurial/upgrade_utils/actions.pyc
1380${PYSITELIB}/mercurial/upgrade_utils/actions.pyo 1360${PYSITELIB}/mercurial/upgrade_utils/actions.pyo
 1361${PYSITELIB}/mercurial/upgrade_utils/auto_upgrade.py
 1362${PYSITELIB}/mercurial/upgrade_utils/auto_upgrade.pyc
 1363${PYSITELIB}/mercurial/upgrade_utils/auto_upgrade.pyo
1381${PYSITELIB}/mercurial/upgrade_utils/engine.py 1364${PYSITELIB}/mercurial/upgrade_utils/engine.py
1382${PYSITELIB}/mercurial/upgrade_utils/engine.pyc 1365${PYSITELIB}/mercurial/upgrade_utils/engine.pyc
1383${PYSITELIB}/mercurial/upgrade_utils/engine.pyo 1366${PYSITELIB}/mercurial/upgrade_utils/engine.pyo
1384${PYSITELIB}/mercurial/url.py 1367${PYSITELIB}/mercurial/url.py
1385${PYSITELIB}/mercurial/url.pyc 1368${PYSITELIB}/mercurial/url.pyc
1386${PYSITELIB}/mercurial/url.pyo 1369${PYSITELIB}/mercurial/url.pyo
1387${PYSITELIB}/mercurial/urllibcompat.py 1370${PYSITELIB}/mercurial/urllibcompat.py
1388${PYSITELIB}/mercurial/urllibcompat.pyc 1371${PYSITELIB}/mercurial/urllibcompat.pyc
1389${PYSITELIB}/mercurial/urllibcompat.pyo 1372${PYSITELIB}/mercurial/urllibcompat.pyo
1390${PYSITELIB}/mercurial/util.py 1373${PYSITELIB}/mercurial/util.py
1391${PYSITELIB}/mercurial/util.pyc 1374${PYSITELIB}/mercurial/util.pyc
1392${PYSITELIB}/mercurial/util.pyo 1375${PYSITELIB}/mercurial/util.pyo
1393${PYSITELIB}/mercurial/utils/__init__.py 1376${PYSITELIB}/mercurial/utils/__init__.py
@@ -1450,14 +1433,16 @@ ${PYSITELIB}/mercurial/wireprototypes.py @@ -1450,14 +1433,16 @@ ${PYSITELIB}/mercurial/wireprototypes.py
1450${PYSITELIB}/mercurial/wireprotov1peer.py 1433${PYSITELIB}/mercurial/wireprotov1peer.py
1451${PYSITELIB}/mercurial/wireprotov1peer.pyc 1434${PYSITELIB}/mercurial/wireprotov1peer.pyc
1452${PYSITELIB}/mercurial/wireprotov1peer.pyo 1435${PYSITELIB}/mercurial/wireprotov1peer.pyo
1453${PYSITELIB}/mercurial/wireprotov1server.py 1436${PYSITELIB}/mercurial/wireprotov1server.py
1454${PYSITELIB}/mercurial/wireprotov1server.pyc 1437${PYSITELIB}/mercurial/wireprotov1server.pyc
1455${PYSITELIB}/mercurial/wireprotov1server.pyo 1438${PYSITELIB}/mercurial/wireprotov1server.pyo
1456${PYSITELIB}/mercurial/worker.py 1439${PYSITELIB}/mercurial/worker.py
1457${PYSITELIB}/mercurial/worker.pyc 1440${PYSITELIB}/mercurial/worker.pyc
1458${PYSITELIB}/mercurial/worker.pyo 1441${PYSITELIB}/mercurial/worker.pyo
1459${PYSITELIB}/mercurial/zstd.so 1442${PYSITELIB}/mercurial/zstd.so
1460man/man1/hg.1 1443man/man1/hg.1
1461man/man5/hgignore.5 1444man/man5/hgignore.5
1462man/man5/hgrc.5 1445man/man5/hgrc.5
 1446share/bash-completion/completions/hg
1463share/doc/mercurial/README.rst 1447share/doc/mercurial/README.rst
 1448share/zsh/site-functions/_hg

cvs diff -r1.119 -r1.120 pkgsrc/devel/py-mercurial/distinfo (expand / switch to unified diff)

--- pkgsrc/devel/py-mercurial/distinfo 2022/07/03 17:52:41 1.119
+++ pkgsrc/devel/py-mercurial/distinfo 2022/07/17 09:51:33 1.120
@@ -1,5 +1,5 @@ @@ -1,5 +1,5 @@
1$NetBSD: distinfo,v 1.119 2022/07/03 17:52:41 wiz Exp $ 1$NetBSD: distinfo,v 1.120 2022/07/17 09:51:33 wiz Exp $
2 2
3BLAKE2s (mercurial-6.1.4.tar.gz) = 0809f4c2d32ec30d2fc1fd7f4b2d0cb68bc12dfa262f7fdf6689ccac8419a08c 3BLAKE2s (mercurial-6.2.tar.gz) = f9350c968d2b73a46a2228bf1cb59f674c451c1d7018b0e5eb5217793cda0f83
4SHA512 (mercurial-6.1.4.tar.gz) = b43221c078efd4978fd47414d9442f423a97660e1f4c10d704a8d3403051778d2a25a0b4be6315d0a2126d01c14910ccbe9a5be6242b561a2bea0c522f54b731 4SHA512 (mercurial-6.2.tar.gz) = 0c988a558e60ba456196420dcf720558f6ce63fcc42bf43a8f6af16289b5f2a81738a4c038a620040394215e3e57ba254ee56fa072962f7bd0b3b191d8334fef
5Size (mercurial-6.1.4.tar.gz) = 8070694 bytes 5Size (mercurial-6.2.tar.gz) = 8053713 bytes

cvs diff -r1.5 -r1.6 pkgsrc/devel/py-mercurial/Attic/options.mk (expand / switch to unified diff)

--- pkgsrc/devel/py-mercurial/Attic/options.mk 2020/12/06 11:37:33 1.5
+++ pkgsrc/devel/py-mercurial/Attic/options.mk 2022/07/17 09:51:33 1.6
@@ -1,27 +1,27 @@ @@ -1,27 +1,27 @@
1# $NetBSD: options.mk,v 1.5 2020/12/06 11:37:33 wiz Exp $ 1# $NetBSD: options.mk,v 1.6 2022/07/17 09:51:33 wiz Exp $
2 2
3PKG_OPTIONS_VAR= PKG_OPTIONS.mercurial 3PKG_OPTIONS_VAR= PKG_OPTIONS.mercurial
4# 5.6.1 needs some "*-pre" crates that are not available 4# 5.6.1 needs some "*-pre" crates that are not available
5# then it fails with a missing Cargo.toml file error 5# then it fails with a missing Cargo.toml file error
6PKG_SUPPORTED_OPTIONS= #rust 6PKG_SUPPORTED_OPTIONS= #rust
7PKG_SUGGESTED_OPTIONS= #rust 7PKG_SUGGESTED_OPTIONS= #rust
8 8
9.include "../../mk/bsd.options.mk" 9.include "../../mk/bsd.options.mk"
10 10
11PLIST_VARS+= rust 11#PLIST_VARS+= rust
12 12
13.if !empty(PKG_OPTIONS:Mrust) 13.if !empty(PKG_OPTIONS:Mrust)
14PLIST.rust= yes 14#PLIST.rust= yes
15PYSETUPARGS+= --rust 15PYSETUPARGS+= --rust
16# for python3-sys 16# for python3-sys
17MAKE_ENV+= PYTHON_SYS_EXECUTABLE=${PYTHONBIN} 17MAKE_ENV+= PYTHON_SYS_EXECUTABLE=${PYTHONBIN}
18 18
19# When updating: 19# When updating:
20# cd ${WRKSRC} 20# cd ${WRKSRC}
21# cat $(find .. -name Cargo.lock) > Cargo.lock 21# cat $(find .. -name Cargo.lock) > Cargo.lock
22# cd - 22# cd -
23# make show-cargo-depends | sort -u 23# make show-cargo-depends | sort -u
24# 24#
25# After updating, check: 25# After updating, check:
26# hg debuginstall | grep -i rust 26# hg debuginstall | grep -i rust
27# to validate rust is in use 27# to validate rust is in use

cvs diff -r1.37 -r1.38 pkgsrc/devel/py-mercurial/version.mk (expand / switch to unified diff)

--- pkgsrc/devel/py-mercurial/version.mk 2022/07/03 17:52:41 1.37
+++ pkgsrc/devel/py-mercurial/version.mk 2022/07/17 09:51:33 1.38
@@ -1,3 +1,3 @@ @@ -1,3 +1,3 @@
1# $NetBSD: version.mk,v 1.37 2022/07/03 17:52:41 wiz Exp $ 1# $NetBSD: version.mk,v 1.38 2022/07/17 09:51:33 wiz Exp $
2 2
3VERSION= 6.1.4 3VERSION= 6.2