Mon Aug 30 17:55:25 2021 UTC ()
py-mercurial: update to 5.9.

== New Features ==

 * `hg config` now has a `--source` option to show where each
   configuration value comes from.

== Internal API Changes ==

The Dirstate API have been updated as the previous function leaked some
internal details and did not distinct between two important cases: "We are
changing parent and need to adjust the dirstate" and "some command is changing
which file is tracked". To clarify the situation:

* the following functions have been deprecated,

  - dirstate.add,
  - dirstate.normal,
  - dirstate.normallookup,
  - dirstate.merge,
  - dirstate.otherparent,
  - dirstate.remove,
  - dirstate.drop,

* these new functions are added for the "adjusting parents" use-case:

  - dirstate.update_file,
  - dirstate.update_file_p1,

* these new function are added for the "adjusting wc file" use-case":

  - dirstate.set_tracked,
  - dirstate.set_untracked,
  - dirstate.set_clean,
  - dirstate.set_possibly_dirty,

See inline documentation of the new functions for details.


(wiz)
diff -r1.57 -r1.58 pkgsrc/devel/py-mercurial/Makefile
diff -r1.34 -r1.35 pkgsrc/devel/py-mercurial/PLIST
diff -r1.104 -r1.105 pkgsrc/devel/py-mercurial/distinfo
diff -r1.24 -r1.25 pkgsrc/devel/py-mercurial/version.mk

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

--- pkgsrc/devel/py-mercurial/Makefile 2021/07/15 12:37:02 1.57
+++ pkgsrc/devel/py-mercurial/Makefile 2021/08/30 17:55:25 1.58
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1# $NetBSD: Makefile,v 1.57 2021/07/15 12:37:02 wiz Exp $ 1# $NetBSD: Makefile,v 1.58 2021/08/30 17:55:25 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
@@ -21,30 +21,36 @@ TEST_DEPENDS+= ${PYPKGPREFIX}-sqlite3-[0 @@ -21,30 +21,36 @@ TEST_DEPENDS+= ${PYPKGPREFIX}-sqlite3-[0
21# https://bz.mercurial-scm.org/show_bug.cgi?id=4483 21# https://bz.mercurial-scm.org/show_bug.cgi?id=4483
22# https://bz.mercurial-scm.org/show_bug.cgi?id=4485 22# https://bz.mercurial-scm.org/show_bug.cgi?id=4485
23TEST_DEPENDS+= unzip-[0-9]*:../../archivers/unzip 23TEST_DEPENDS+= unzip-[0-9]*:../../archivers/unzip
24 24
25USE_TOOLS+= gmake msgfmt 25USE_TOOLS+= gmake msgfmt
26 26
27INSTALLATION_DIRS= bin ${PKGMANDIR}/man1 ${PKGMANDIR}/man5 27INSTALLATION_DIRS= bin ${PKGMANDIR}/man1 ${PKGMANDIR}/man5
28INSTALLATION_DIRS+= share/doc/mercurial 28INSTALLATION_DIRS+= share/doc/mercurial
29 29
30.include "version.mk" 30.include "version.mk"
31.include "options.mk" 31.include "options.mk"
32 32
33USE_TOOLS+= bash:test 33USE_TOOLS+= bash:test
34# Known test failures as of 5.8.1 34# Known test failures as of 5.9
35# test-persistent-nodemap.t 35# test-persistent-nodemap.t
36# https://bz.mercurial-scm.org/show_bug.cgi?id=6523 36# https://bz.mercurial-scm.org/show_bug.cgi?id=6523
 37# test-censor.t
 38# https://bz.mercurial-scm.org/show_bug.cgi?id=6585
 39# test-manifest.t
 40# https://bz.mercurial-scm.org/show_bug.cgi?id=6586
 41# test-removeemptydirs.t
 42# https://bz.mercurial-scm.org/show_bug.cgi?id=6587
37# 43#
38# Ran 879 tests, 81 skipped, 1 failed. 44# Ran 888 tests, 97 skipped, 4 failed.
39 45
40TEST_TARGET= tests 46TEST_TARGET= tests
41TEST_MAKE_FLAGS+= PYTHON=${PYTHONBIN} TESTFLAGS=${_MAKE_JOBS:Q} 47TEST_MAKE_FLAGS+= PYTHON=${PYTHONBIN} TESTFLAGS=${_MAKE_JOBS:Q}
42 48
43post-install: 49post-install:
44 ${INSTALL_DATA} ${WRKSRC}/doc/*.1 ${DESTDIR}${PREFIX}/${PKGMANDIR}/man1 50 ${INSTALL_DATA} ${WRKSRC}/doc/*.1 ${DESTDIR}${PREFIX}/${PKGMANDIR}/man1
45 ${INSTALL_DATA} ${WRKSRC}/doc/*.5 ${DESTDIR}${PREFIX}/${PKGMANDIR}/man5 51 ${INSTALL_DATA} ${WRKSRC}/doc/*.5 ${DESTDIR}${PREFIX}/${PKGMANDIR}/man5
46 ${INSTALL_DATA} ${WRKSRC}/README.rst \ 52 ${INSTALL_DATA} ${WRKSRC}/README.rst \
47 ${DESTDIR}${PREFIX}/share/doc/mercurial 53 ${DESTDIR}${PREFIX}/share/doc/mercurial
48 54
49.include "../../lang/python/distutils.mk" 55.include "../../lang/python/distutils.mk"
50.include "../../mk/bsd.pkg.mk" 56.include "../../mk/bsd.pkg.mk"

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

--- pkgsrc/devel/py-mercurial/PLIST 2021/05/20 09:08:27 1.34
+++ pkgsrc/devel/py-mercurial/PLIST 2021/08/30 17:55:25 1.35
@@ -1,16 +1,15 @@ @@ -1,16 +1,15 @@
1@comment $NetBSD: PLIST,v 1.34 2021/05/20 09:08:27 wiz Exp $ 1@comment $NetBSD: PLIST,v 1.35 2021/08/30 17:55:25 wiz Exp $
2bin/hg 2bin/hg
3${PYSITELIB}/${EGG_FILE} 
4${PYSITELIB}/hgdemandimport/__init__.py 3${PYSITELIB}/hgdemandimport/__init__.py
5${PYSITELIB}/hgdemandimport/__init__.pyc 4${PYSITELIB}/hgdemandimport/__init__.pyc
6${PYSITELIB}/hgdemandimport/__init__.pyo 5${PYSITELIB}/hgdemandimport/__init__.pyo
7${PYSITELIB}/hgdemandimport/demandimportpy2.py 6${PYSITELIB}/hgdemandimport/demandimportpy2.py
8${PYSITELIB}/hgdemandimport/demandimportpy2.pyc 7${PYSITELIB}/hgdemandimport/demandimportpy2.pyc
9${PYSITELIB}/hgdemandimport/demandimportpy2.pyo 8${PYSITELIB}/hgdemandimport/demandimportpy2.pyo
10${PYSITELIB}/hgdemandimport/demandimportpy3.py 9${PYSITELIB}/hgdemandimport/demandimportpy3.py
11${PYSITELIB}/hgdemandimport/demandimportpy3.pyc 10${PYSITELIB}/hgdemandimport/demandimportpy3.pyc
12${PYSITELIB}/hgdemandimport/demandimportpy3.pyo 11${PYSITELIB}/hgdemandimport/demandimportpy3.pyo
13${PYSITELIB}/hgdemandimport/tracing.py 12${PYSITELIB}/hgdemandimport/tracing.py
14${PYSITELIB}/hgdemandimport/tracing.pyc 13${PYSITELIB}/hgdemandimport/tracing.pyc
15${PYSITELIB}/hgdemandimport/tracing.pyo 14${PYSITELIB}/hgdemandimport/tracing.pyo
16${PYSITELIB}/hgext/__init__.py 15${PYSITELIB}/hgext/__init__.py
@@ -454,26 +453,27 @@ ${PYSITELIB}/hgext/win32mbcs.pyc @@ -454,26 +453,27 @@ ${PYSITELIB}/hgext/win32mbcs.pyc
454${PYSITELIB}/hgext/win32mbcs.pyo 453${PYSITELIB}/hgext/win32mbcs.pyo
455${PYSITELIB}/hgext/win32text.py 454${PYSITELIB}/hgext/win32text.py
456${PYSITELIB}/hgext/win32text.pyc 455${PYSITELIB}/hgext/win32text.pyc
457${PYSITELIB}/hgext/win32text.pyo 456${PYSITELIB}/hgext/win32text.pyo
458${PYSITELIB}/hgext/zeroconf/Zeroconf.py 457${PYSITELIB}/hgext/zeroconf/Zeroconf.py
459${PYSITELIB}/hgext/zeroconf/Zeroconf.pyc 458${PYSITELIB}/hgext/zeroconf/Zeroconf.pyc
460${PYSITELIB}/hgext/zeroconf/Zeroconf.pyo 459${PYSITELIB}/hgext/zeroconf/Zeroconf.pyo
461${PYSITELIB}/hgext/zeroconf/__init__.py 460${PYSITELIB}/hgext/zeroconf/__init__.py
462${PYSITELIB}/hgext/zeroconf/__init__.pyc 461${PYSITELIB}/hgext/zeroconf/__init__.pyc
463${PYSITELIB}/hgext/zeroconf/__init__.pyo 462${PYSITELIB}/hgext/zeroconf/__init__.pyo
464${PYSITELIB}/hgext3rd/__init__.py 463${PYSITELIB}/hgext3rd/__init__.py
465${PYSITELIB}/hgext3rd/__init__.pyc 464${PYSITELIB}/hgext3rd/__init__.pyc
466${PYSITELIB}/hgext3rd/__init__.pyo 465${PYSITELIB}/hgext3rd/__init__.pyo
 466${PYSITELIB}/${EGG_FILE}
467${PYSITELIB}/mercurial/__init__.py 467${PYSITELIB}/mercurial/__init__.py
468${PYSITELIB}/mercurial/__init__.pyc 468${PYSITELIB}/mercurial/__init__.pyc
469${PYSITELIB}/mercurial/__init__.pyo 469${PYSITELIB}/mercurial/__init__.pyo
470${PYSITELIB}/mercurial/__modulepolicy__.py 470${PYSITELIB}/mercurial/__modulepolicy__.py
471${PYSITELIB}/mercurial/__modulepolicy__.pyc 471${PYSITELIB}/mercurial/__modulepolicy__.pyc
472${PYSITELIB}/mercurial/__modulepolicy__.pyo 472${PYSITELIB}/mercurial/__modulepolicy__.pyo
473${PYSITELIB}/mercurial/__version__.py 473${PYSITELIB}/mercurial/__version__.py
474${PYSITELIB}/mercurial/__version__.pyc 474${PYSITELIB}/mercurial/__version__.pyc
475${PYSITELIB}/mercurial/__version__.pyo 475${PYSITELIB}/mercurial/__version__.pyo
476${PYSITELIB}/mercurial/ancestor.py 476${PYSITELIB}/mercurial/ancestor.py
477${PYSITELIB}/mercurial/ancestor.pyc 477${PYSITELIB}/mercurial/ancestor.pyc
478${PYSITELIB}/mercurial/ancestor.pyo 478${PYSITELIB}/mercurial/ancestor.pyo
479${PYSITELIB}/mercurial/archival.py 479${PYSITELIB}/mercurial/archival.py
@@ -583,26 +583,35 @@ ${PYSITELIB}/mercurial/destutil.pyc @@ -583,26 +583,35 @@ ${PYSITELIB}/mercurial/destutil.pyc
583${PYSITELIB}/mercurial/destutil.pyo 583${PYSITELIB}/mercurial/destutil.pyo
584${PYSITELIB}/mercurial/diffhelper.py 584${PYSITELIB}/mercurial/diffhelper.py
585${PYSITELIB}/mercurial/diffhelper.pyc 585${PYSITELIB}/mercurial/diffhelper.pyc
586${PYSITELIB}/mercurial/diffhelper.pyo 586${PYSITELIB}/mercurial/diffhelper.pyo
587${PYSITELIB}/mercurial/diffutil.py 587${PYSITELIB}/mercurial/diffutil.py
588${PYSITELIB}/mercurial/diffutil.pyc 588${PYSITELIB}/mercurial/diffutil.pyc
589${PYSITELIB}/mercurial/diffutil.pyo 589${PYSITELIB}/mercurial/diffutil.pyo
590${PYSITELIB}/mercurial/dirstate.py 590${PYSITELIB}/mercurial/dirstate.py
591${PYSITELIB}/mercurial/dirstate.pyc 591${PYSITELIB}/mercurial/dirstate.pyc
592${PYSITELIB}/mercurial/dirstate.pyo 592${PYSITELIB}/mercurial/dirstate.pyo
593${PYSITELIB}/mercurial/dirstateguard.py 593${PYSITELIB}/mercurial/dirstateguard.py
594${PYSITELIB}/mercurial/dirstateguard.pyc 594${PYSITELIB}/mercurial/dirstateguard.pyc
595${PYSITELIB}/mercurial/dirstateguard.pyo 595${PYSITELIB}/mercurial/dirstateguard.pyo
 596${PYSITELIB}/mercurial/dirstatemap.py
 597${PYSITELIB}/mercurial/dirstatemap.pyc
 598${PYSITELIB}/mercurial/dirstatemap.pyo
 599${PYSITELIB}/mercurial/dirstateutils/__init__.py
 600${PYSITELIB}/mercurial/dirstateutils/__init__.pyc
 601${PYSITELIB}/mercurial/dirstateutils/__init__.pyo
 602${PYSITELIB}/mercurial/dirstateutils/docket.py
 603${PYSITELIB}/mercurial/dirstateutils/docket.pyc
 604${PYSITELIB}/mercurial/dirstateutils/docket.pyo
596${PYSITELIB}/mercurial/discovery.py 605${PYSITELIB}/mercurial/discovery.py
597${PYSITELIB}/mercurial/discovery.pyc 606${PYSITELIB}/mercurial/discovery.pyc
598${PYSITELIB}/mercurial/discovery.pyo 607${PYSITELIB}/mercurial/discovery.pyo
599${PYSITELIB}/mercurial/dispatch.py 608${PYSITELIB}/mercurial/dispatch.py
600${PYSITELIB}/mercurial/dispatch.pyc 609${PYSITELIB}/mercurial/dispatch.pyc
601${PYSITELIB}/mercurial/dispatch.pyo 610${PYSITELIB}/mercurial/dispatch.pyo
602${PYSITELIB}/mercurial/dummycert.pem 611${PYSITELIB}/mercurial/dummycert.pem
603${PYSITELIB}/mercurial/encoding.py 612${PYSITELIB}/mercurial/encoding.py
604${PYSITELIB}/mercurial/encoding.pyc 613${PYSITELIB}/mercurial/encoding.pyc
605${PYSITELIB}/mercurial/encoding.pyo 614${PYSITELIB}/mercurial/encoding.pyo
606${PYSITELIB}/mercurial/error.py 615${PYSITELIB}/mercurial/error.py
607${PYSITELIB}/mercurial/error.pyc 616${PYSITELIB}/mercurial/error.pyc
608${PYSITELIB}/mercurial/error.pyo 617${PYSITELIB}/mercurial/error.pyo
@@ -649,26 +658,27 @@ ${PYSITELIB}/mercurial/help.py @@ -649,26 +658,27 @@ ${PYSITELIB}/mercurial/help.py
649${PYSITELIB}/mercurial/help.pyc 658${PYSITELIB}/mercurial/help.pyc
650${PYSITELIB}/mercurial/help.pyo 659${PYSITELIB}/mercurial/help.pyo
651${PYSITELIB}/mercurial/helptext/__init__.py 660${PYSITELIB}/mercurial/helptext/__init__.py
652${PYSITELIB}/mercurial/helptext/__init__.pyc 661${PYSITELIB}/mercurial/helptext/__init__.pyc
653${PYSITELIB}/mercurial/helptext/__init__.pyo 662${PYSITELIB}/mercurial/helptext/__init__.pyo
654${PYSITELIB}/mercurial/helptext/bundlespec.txt 663${PYSITELIB}/mercurial/helptext/bundlespec.txt
655${PYSITELIB}/mercurial/helptext/color.txt 664${PYSITELIB}/mercurial/helptext/color.txt
656${PYSITELIB}/mercurial/helptext/common.txt 665${PYSITELIB}/mercurial/helptext/common.txt
657${PYSITELIB}/mercurial/helptext/config.txt 666${PYSITELIB}/mercurial/helptext/config.txt
658${PYSITELIB}/mercurial/helptext/dates.txt 667${PYSITELIB}/mercurial/helptext/dates.txt
659${PYSITELIB}/mercurial/helptext/deprecated.txt 668${PYSITELIB}/mercurial/helptext/deprecated.txt
660${PYSITELIB}/mercurial/helptext/diffs.txt 669${PYSITELIB}/mercurial/helptext/diffs.txt
661${PYSITELIB}/mercurial/helptext/environment.txt 670${PYSITELIB}/mercurial/helptext/environment.txt
 671${PYSITELIB}/mercurial/helptext/evolution.txt
662${PYSITELIB}/mercurial/helptext/extensions.txt 672${PYSITELIB}/mercurial/helptext/extensions.txt
663${PYSITELIB}/mercurial/helptext/filesets.txt 673${PYSITELIB}/mercurial/helptext/filesets.txt
664${PYSITELIB}/mercurial/helptext/flags.txt 674${PYSITELIB}/mercurial/helptext/flags.txt
665${PYSITELIB}/mercurial/helptext/glossary.txt 675${PYSITELIB}/mercurial/helptext/glossary.txt
666${PYSITELIB}/mercurial/helptext/hg-ssh.8.txt 676${PYSITELIB}/mercurial/helptext/hg-ssh.8.txt
667${PYSITELIB}/mercurial/helptext/hg.1.txt 677${PYSITELIB}/mercurial/helptext/hg.1.txt
668${PYSITELIB}/mercurial/helptext/hgignore.5.txt 678${PYSITELIB}/mercurial/helptext/hgignore.5.txt
669${PYSITELIB}/mercurial/helptext/hgignore.txt 679${PYSITELIB}/mercurial/helptext/hgignore.txt
670${PYSITELIB}/mercurial/helptext/hgrc.5.txt 680${PYSITELIB}/mercurial/helptext/hgrc.5.txt
671${PYSITELIB}/mercurial/helptext/hgweb.txt 681${PYSITELIB}/mercurial/helptext/hgweb.txt
672${PYSITELIB}/mercurial/helptext/internals/__init__.py 682${PYSITELIB}/mercurial/helptext/internals/__init__.py
673${PYSITELIB}/mercurial/helptext/internals/__init__.pyc 683${PYSITELIB}/mercurial/helptext/internals/__init__.pyc
674${PYSITELIB}/mercurial/helptext/internals/__init__.pyo 684${PYSITELIB}/mercurial/helptext/internals/__init__.pyo
@@ -914,32 +924,44 @@ ${PYSITELIB}/mercurial/revlog.pyc @@ -914,32 +924,44 @@ ${PYSITELIB}/mercurial/revlog.pyc
914${PYSITELIB}/mercurial/revlog.pyo 924${PYSITELIB}/mercurial/revlog.pyo
915${PYSITELIB}/mercurial/revlogutils/__init__.py 925${PYSITELIB}/mercurial/revlogutils/__init__.py
916${PYSITELIB}/mercurial/revlogutils/__init__.pyc 926${PYSITELIB}/mercurial/revlogutils/__init__.pyc
917${PYSITELIB}/mercurial/revlogutils/__init__.pyo 927${PYSITELIB}/mercurial/revlogutils/__init__.pyo
918${PYSITELIB}/mercurial/revlogutils/concurrency_checker.py 928${PYSITELIB}/mercurial/revlogutils/concurrency_checker.py
919${PYSITELIB}/mercurial/revlogutils/concurrency_checker.pyc 929${PYSITELIB}/mercurial/revlogutils/concurrency_checker.pyc
920${PYSITELIB}/mercurial/revlogutils/concurrency_checker.pyo 930${PYSITELIB}/mercurial/revlogutils/concurrency_checker.pyo
921${PYSITELIB}/mercurial/revlogutils/constants.py 931${PYSITELIB}/mercurial/revlogutils/constants.py
922${PYSITELIB}/mercurial/revlogutils/constants.pyc 932${PYSITELIB}/mercurial/revlogutils/constants.pyc
923${PYSITELIB}/mercurial/revlogutils/constants.pyo 933${PYSITELIB}/mercurial/revlogutils/constants.pyo
924${PYSITELIB}/mercurial/revlogutils/deltas.py 934${PYSITELIB}/mercurial/revlogutils/deltas.py
925${PYSITELIB}/mercurial/revlogutils/deltas.pyc 935${PYSITELIB}/mercurial/revlogutils/deltas.pyc
926${PYSITELIB}/mercurial/revlogutils/deltas.pyo 936${PYSITELIB}/mercurial/revlogutils/deltas.pyo
 937${PYSITELIB}/mercurial/revlogutils/docket.py
 938${PYSITELIB}/mercurial/revlogutils/docket.pyc
 939${PYSITELIB}/mercurial/revlogutils/docket.pyo
927${PYSITELIB}/mercurial/revlogutils/flagutil.py 940${PYSITELIB}/mercurial/revlogutils/flagutil.py
928${PYSITELIB}/mercurial/revlogutils/flagutil.pyc 941${PYSITELIB}/mercurial/revlogutils/flagutil.pyc
929${PYSITELIB}/mercurial/revlogutils/flagutil.pyo 942${PYSITELIB}/mercurial/revlogutils/flagutil.pyo
930${PYSITELIB}/mercurial/revlogutils/nodemap.py 943${PYSITELIB}/mercurial/revlogutils/nodemap.py
931${PYSITELIB}/mercurial/revlogutils/nodemap.pyc 944${PYSITELIB}/mercurial/revlogutils/nodemap.pyc
932${PYSITELIB}/mercurial/revlogutils/nodemap.pyo 945${PYSITELIB}/mercurial/revlogutils/nodemap.pyo
 946${PYSITELIB}/mercurial/revlogutils/randomaccessfile.py
 947${PYSITELIB}/mercurial/revlogutils/randomaccessfile.pyc
 948${PYSITELIB}/mercurial/revlogutils/randomaccessfile.pyo
 949${PYSITELIB}/mercurial/revlogutils/revlogv0.py
 950${PYSITELIB}/mercurial/revlogutils/revlogv0.pyc
 951${PYSITELIB}/mercurial/revlogutils/revlogv0.pyo
 952${PYSITELIB}/mercurial/revlogutils/rewrite.py
 953${PYSITELIB}/mercurial/revlogutils/rewrite.pyc
 954${PYSITELIB}/mercurial/revlogutils/rewrite.pyo
933${PYSITELIB}/mercurial/revlogutils/sidedata.py 955${PYSITELIB}/mercurial/revlogutils/sidedata.py
934${PYSITELIB}/mercurial/revlogutils/sidedata.pyc 956${PYSITELIB}/mercurial/revlogutils/sidedata.pyc
935${PYSITELIB}/mercurial/revlogutils/sidedata.pyo 957${PYSITELIB}/mercurial/revlogutils/sidedata.pyo
936${PYSITELIB}/mercurial/revset.py 958${PYSITELIB}/mercurial/revset.py
937${PYSITELIB}/mercurial/revset.pyc 959${PYSITELIB}/mercurial/revset.pyc
938${PYSITELIB}/mercurial/revset.pyo 960${PYSITELIB}/mercurial/revset.pyo
939${PYSITELIB}/mercurial/revsetlang.py 961${PYSITELIB}/mercurial/revsetlang.py
940${PYSITELIB}/mercurial/revsetlang.pyc 962${PYSITELIB}/mercurial/revsetlang.pyc
941${PYSITELIB}/mercurial/revsetlang.pyo 963${PYSITELIB}/mercurial/revsetlang.pyo
942${PYSITELIB}/mercurial/rewriteutil.py 964${PYSITELIB}/mercurial/rewriteutil.py
943${PYSITELIB}/mercurial/rewriteutil.pyc 965${PYSITELIB}/mercurial/rewriteutil.pyc
944${PYSITELIB}/mercurial/rewriteutil.pyo 966${PYSITELIB}/mercurial/rewriteutil.pyo
945${PLIST.rust}${PYSITELIB}/mercurial/rustext.so 967${PLIST.rust}${PYSITELIB}/mercurial/rustext.so

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

--- pkgsrc/devel/py-mercurial/distinfo 2021/07/15 12:37:02 1.104
+++ pkgsrc/devel/py-mercurial/distinfo 2021/08/30 17:55:25 1.105
@@ -1,6 +1,6 @@ @@ -1,6 +1,6 @@
1$NetBSD: distinfo,v 1.104 2021/07/15 12:37:02 wiz Exp $ 1$NetBSD: distinfo,v 1.105 2021/08/30 17:55:25 wiz Exp $
2 2
3SHA1 (mercurial-5.8.1.tar.gz) = 4295b476c35d751c1411879b4c04d54416c3e702 3SHA1 (mercurial-5.9.tar.gz) = a541842329b8e80e530ee5f678362f655a1b788e
4RMD160 (mercurial-5.8.1.tar.gz) = 0c6dde2ddcd08aeed00e422e04bed62bd3fd75f9 4RMD160 (mercurial-5.9.tar.gz) = 6b8aeb1c3f171c04274598cfa8264fc15b735b0f
5SHA512 (mercurial-5.8.1.tar.gz) = d17c809fc48c55d646b677ad23b5cf4a1755f5a81790988109cd50ac259acc230edad7bf5ccc7a6384a490aeba4a7492327bb9878a541d5fa7207e2c378be966 5SHA512 (mercurial-5.9.tar.gz) = f75aba3205d49e2a7fda1963839344798608a3698e066fc7fb12acb1a6c713691d2bd5d266d633a08bd54dde98b71ef04fe6600807ed6ceddb3a4937506b3325
6Size (mercurial-5.8.1.tar.gz) = 7988000 bytes 6Size (mercurial-5.9.tar.gz) = 8118681 bytes

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

--- pkgsrc/devel/py-mercurial/version.mk 2021/07/15 12:37:02 1.24
+++ pkgsrc/devel/py-mercurial/version.mk 2021/08/30 17:55:25 1.25
@@ -1,3 +1,3 @@ @@ -1,3 +1,3 @@
1# $NetBSD: version.mk,v 1.24 2021/07/15 12:37:02 wiz Exp $ 1# $NetBSD: version.mk,v 1.25 2021/08/30 17:55:25 wiz Exp $
2 2
3VERSION= 5.8.1 3VERSION= 5.9