pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/devel/py-mercurial



Module Name:    pkgsrc
Committed By:   wiz
Date:           Tue Apr 18 07:46:32 UTC 2023

Modified Files:
        pkgsrc/devel/py-mercurial: Makefile distinfo version.mk
Removed Files:
        pkgsrc/devel/py-mercurial/patches: patch-tests_run-tests.py

Log Message:
py-mercurial: update to 6.4.1.

= Mercurial 6.4.1 =

 * rhg: fix a bug in path encoding
 * rhg: don't crash on empty directory names in path_encode, just in case
 * commands: correct documentation of hg serve’s --ipv6 options
 * run-tests: remove obsolete coverage check and packaging import (issue6805)
 * chg: populate CHGHG if not set
 * match: sort patterns before compiling them into a regex
 * match: match explicit file using a set
 * rebase: do not cleanup the working copy when --dry-run is used (issue6802)
 * sslutil: set context security level for legacy tls testing (issue6760)


To generate a diff of this commit:
cvs rdiff -u -r1.80 -r1.81 pkgsrc/devel/py-mercurial/Makefile
cvs rdiff -u -r1.128 -r1.129 pkgsrc/devel/py-mercurial/distinfo
cvs rdiff -u -r1.45 -r1.46 pkgsrc/devel/py-mercurial/version.mk
cvs rdiff -u -r1.3 -r0 \
    pkgsrc/devel/py-mercurial/patches/patch-tests_run-tests.py

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/devel/py-mercurial/Makefile
diff -u pkgsrc/devel/py-mercurial/Makefile:1.80 pkgsrc/devel/py-mercurial/Makefile:1.81
--- pkgsrc/devel/py-mercurial/Makefile:1.80     Wed Apr 12 10:39:06 2023
+++ pkgsrc/devel/py-mercurial/Makefile  Tue Apr 18 07:46:32 2023
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.80 2023/04/12 10:39:06 wiz Exp $
+# $NetBSD: Makefile,v 1.81 2023/04/18 07:46:32 wiz Exp $
 #
 # Changelog sometimes at: https://www.mercurial-scm.org/wiki/WhatsNew
 
@@ -29,12 +29,7 @@ PYTHON_SELF_CONFLICT=                yes
 .include "version.mk"
 
 USE_TOOLS+=            bash:test
-# Known test failures as of 6.4
-# test-revlog-delta-find.t
-# https://bz.mercurial-scm.org/show_bug.cgi?id=6808
-# (fixed in pkgsrc)
-# test-transaction-rollback-on-revlog-split.t
-# https://bz.mercurial-scm.org/show_bug.cgi?id=6807
+# Known test failures as of 6.4.1
 # test-remotefilelog-gc.t
 # https://bz.mercurial-scm.org/show_bug.cgi?id=6783
 # test-push-cgi.t, test-oldcgi.t, test-newcgi.t, test-newercgi.t, test-clone-cgi.t
@@ -43,8 +38,11 @@ USE_TOOLS+=          bash:test
 # https://bz.mercurial-scm.org/show_bug.cgi?id=6727
 # test-demandimport.py
 # https://bz.mercurial-scm.org/show_bug.cgi?id=6786
+# test-revlog-delta-find.t
+# https://bz.mercurial-scm.org/show_bug.cgi?id=6808
+# (fixed in pkgsrc)
 #
-# Ran 919 tests, 82 skipped, 10 failed.
+# Ran 920 tests, 82 skipped, 8 failed.
 
 TEST_TARGET=           tests
 TEST_MAKE_FLAGS+=      PYTHON=${PYTHONBIN} TESTFLAGS=${_MAKE_JOBS:Q}

Index: pkgsrc/devel/py-mercurial/distinfo
diff -u pkgsrc/devel/py-mercurial/distinfo:1.128 pkgsrc/devel/py-mercurial/distinfo:1.129
--- pkgsrc/devel/py-mercurial/distinfo:1.128    Wed Apr 12 10:39:06 2023
+++ pkgsrc/devel/py-mercurial/distinfo  Tue Apr 18 07:46:32 2023
@@ -1,7 +1,6 @@
-$NetBSD: distinfo,v 1.128 2023/04/12 10:39:06 wiz Exp $
+$NetBSD: distinfo,v 1.129 2023/04/18 07:46:32 wiz Exp $
 
-BLAKE2s (mercurial-6.4.tar.gz) = 5d243db3df70d23144ec1dcf97684299d4d6f7ed60105000a37849c395698fdd
-SHA512 (mercurial-6.4.tar.gz) = a7810eddd0fd2a331215a5f7e9c81df4d860cf695aec3c5e3984821827b5427b5a01b68c07b9711e86db2f9b0ef5b5d3d6251a7dc76f99375c457920ce36c96f
-Size (mercurial-6.4.tar.gz) = 8169322 bytes
-SHA1 (patch-tests_run-tests.py) = 71830d075db9f6ed729ead0ec6be075d44fb2b95
+BLAKE2s (mercurial-6.4.1.tar.gz) = 8e305b9a2f66150a4d92e08790851b1c2e94cdf0043691b42379e592c670f123
+SHA512 (mercurial-6.4.1.tar.gz) = bb4e0364f7b1381a9a047bf6b12d1807c5cd1b3a42a9e3d2f7bc08684d3192dc9848dfe4c49f0c2c0d92ed4aa2884b0e5bce50cb9635e4dd3f571b63b899aea8
+Size (mercurial-6.4.1.tar.gz) = 8173449 bytes
 SHA1 (patch-tests_test-revlog-delta-find.t) = 4af19d6ece17d0aa12ce504fcdd1662812d993cb

Index: pkgsrc/devel/py-mercurial/version.mk
diff -u pkgsrc/devel/py-mercurial/version.mk:1.45 pkgsrc/devel/py-mercurial/version.mk:1.46
--- pkgsrc/devel/py-mercurial/version.mk:1.45   Wed Mar 29 11:29:27 2023
+++ pkgsrc/devel/py-mercurial/version.mk        Tue Apr 18 07:46:32 2023
@@ -1,3 +1,3 @@
-# $NetBSD: version.mk,v 1.45 2023/03/29 11:29:27 wiz Exp $
+# $NetBSD: version.mk,v 1.46 2023/04/18 07:46:32 wiz Exp $
 
-VERSION=       6.4
+VERSION=       6.4.1



Home | Main Index | Thread Index | Old Index