From 81ae73615831a12c2a047d0ef2f7411b963a0509 Mon Sep 17 00:00:00 2001 From: Leon Anavi Date: Tue, 25 Aug 2020 12:54:07 +0300 Subject: [PATCH] mercurial: Upgrade 5.4 -> 5.5 Upgrade to release 5.5: - clonebundles can be annotated with the expected memory requirements using the REQUIREDRAM option. This allows clients to skip bundles created with large zstd windows and fallback to larger, but less demanding bundles. - The phabricator extension now provides more functionality of the arcanist CLI like changing the status of a differential. - Phases processing is much faster, especially for repositories with old non-public changesets. - For the case when connected to a TTY, stdout was fixed to be line-buffered on Python 3 - Subversion sources of the convert extension were fixed to work on Python 3 - Subversion sources of the convert extension now interpret the encoding of URLs like Subversion. - The empty changeset check of in-memory rebases was fixed to match that of normal rebases (and that of the commit command). - The push command now checks the correct set of outgoing changesets for obsolete and unstable changesets. Previously, it could happen that the check prevented pushing changesets which were already on the server. More details are available at: https://www.mercurial-scm.org/wiki/Release5.5 Signed-off-by: Leon Anavi Signed-off-by: Khem Raj --- .../mercurial/{mercurial_5.4.bb => mercurial_5.5.bb} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename meta-oe/recipes-devtools/mercurial/{mercurial_5.4.bb => mercurial_5.5.bb} (87%) diff --git a/meta-oe/recipes-devtools/mercurial/mercurial_5.4.bb b/meta-oe/recipes-devtools/mercurial/mercurial_5.5.bb similarity index 87% rename from meta-oe/recipes-devtools/mercurial/mercurial_5.4.bb rename to meta-oe/recipes-devtools/mercurial/mercurial_5.5.bb index fa3c734519..7980960f1f 100644 --- a/meta-oe/recipes-devtools/mercurial/mercurial_5.4.bb +++ b/meta-oe/recipes-devtools/mercurial/mercurial_5.5.bb @@ -10,8 +10,8 @@ RDEPENDS_${PN} = "python3 python3-modules" inherit python3native SRC_URI = "https://www.mercurial-scm.org/release/${BP}.tar.gz" -SRC_URI[md5sum] = "0859029d0bb54bcf7c583c55680573cb" -SRC_URI[sha256sum] = "1df8d1978aefcbb65dc51e3666a452583f47aeaf3c5682e4c00a3b23cd805d6a" +SRC_URI[md5sum] = "17b21729cbc61dda80b2e3dfc046319f" +SRC_URI[sha256sum] = "c1ed28e1534304a7a4981ed59905286d1c56acd5b75755eedd184171a4a782b4" S = "${WORKDIR}/mercurial-${PV}"