=============================
Mutable History For Mercurial
=============================
Evolve Extension
================
This package supplies the evolve extension for Mercurial,
**The full implementation of the changeset evolution concept is still in
progress.** Please subscribe to the `evolve-testers mailing list
<https://www.mercurial-scm.org/mailman/listinfo/evolve-testers>`_ to stay up to
date with changes.
This extension:
* enables the "`changeset evolution`_" feature of core Mercurial,
* provides a set of commands to rewrite history in a distributed way,
* issues various warning messages when "troubles" from changeset evolution
appear in your repository,
* provides an ``hg evolve`` command to deal with such troubles,
* improves performance of obsolescence marker exchange and discovery during
push and pull.
.. _`changeset evolution`: https://wiki.mercurial-scm.org/ChangesetEvolution
Documentation
-------------
We recommend reading the documentation first. An online version is available
here:
https://www.mercurial-scm.org/doc/evolution/
Source of the documentation can be found in ``docs/``.
How to Install
==============
Using Pip
---------
You can install the latest released version using pip::
$ pip install --user hg-evolve
Note: some distributions have adopted PEP 668 and made using ``pip install
--user`` more difficult than it should be. One of the cleanest ways around this
issue is to install both Mercurial and this extension in a separate virtual
environment. If you don't want to manage the virtual environment manually, you
can use Pipx.
Using Pipx
----------
Its documentation explains that "pipx is made specifically for application
installation", and the idea is that for every application it can create and
maintain a separate virtual environment and make all executables available on a
single path (e.g. ~/.local/bin/ on Linux, check ``pipx ensurepath``).
To create a virtual environment for hg and install evolve::
$ pipx install mercurial
$ pipx inject mercurial hg-evolve
# or pipx runpip mercurial install hg-evolve
Note: it's recommended to use ``inject`` command to install evolve, but
sometimes ``runpip`` could be used. On some setups ``inject`` might require
specifying the full path to the extension in the configuration file, while
``runpip`` might not.
Using Your Package Manager
--------------------------
Sometimes your distribution's package manager might have the newest (or recent
enough) version of the extension. For example, both `Debian`_ and `Ubuntu`_
currently have a package called ``mercurial-evolve``. Similarly, other
distributions might have it packaged, possibly under a slightly different name.
Try searching your package manager's database or see `this Repology page`_.
.. _`Debian`: https://packages.debian.org/search?keywords=mercurial-evolve&searchon=names&exact=1&suite=all§ion=all
.. _`Ubuntu`: https://packages.ubuntu.com/search?keywords=mercurial-evolve&searchon=names&exact=1&suite=all§ion=all
.. _`this Repology page`: https://repology.org/project/mercurial-evolve/related
From Source
-----------
To obtain a local version from source::
$ hg clone https://repo.mercurial-scm.org/evolve
There's no need to compile anything or run ``make``.
This method keeps the extension in its own repo, and you can use it by
specifying the full path to the ``hgext3rd/evolve/``.
Alternatively, you can install it::
$ cd evolve
# optionally `hg update <target revision>`
$ pip install --user .
This should avoid the need to specify the full path to the extension.
Enabling the Extension
----------------------
After installing the extension, you need to enable it before you can use it.
To do that, edit your hgrc::
$ hg config --edit # add these two lines:
[extensions]
evolve =
If you didn't install the extension or Mercurial can't find it on one of the
default paths, you need to specify the full path to ``hgext3rd/evolve/``::
[extensions]
evolve = ~/evolve/hgext3rd/evolve
Similarly, if you want to enable topic extension, do this::
$ hg config --edit
[extensions]
topic =
# or
topic = ~/evolve/hgext3rd/topic
Pitfalls
--------
If you get ``"failed to import extension evolve: No module named 'evolve'"``
error, there are a couple of things to check:
* make sure you gave pip/pipx the correct package name (it's ``hg-evolve``),
* make sure evolve is installed for the same version of Python that you use for
running Mercurial (``hg debuginstall | grep Python``),
* try specifying the full path to the ``hgext3rd/evolve/`` directory.
Extension Purpose
=================
The goal of this extension is to provide an appropriate place for code and
concepts related to `changeset evolution`_ to mature. In this extension we
allow hackier code, unlocking quick experimentation and faster iterations.
In addition, evolve extension supports a wide range of Mercurial versions,
allowing us to reach a larger user base for feedback. The extension is not tied
to the Mercurial release cycle and can release new features and bug fixes at a
higher rate if necessary.
Once a concept is deemed ready, its implementation is moved into core
Mercurial. The maturation period helped us to get a clearer picture of what was
needed. During the upstreaming process, we can use this clearer picture to
clean up the code and upgrade it to an appropriate quality for core Mercurial.
Python 3 Support
================
Mercurial announced official `support for Python 3`_ starting with its 5.2
release. Since 9.3.0, evolve has official support for Python 3.6+.
.. _`support for Python 3`: https://wiki.mercurial-scm.org/Python3
Python 2 Support
================
Python 2 is supported by evolve. However, Mercurial 6.2 release dropped support
for it, so evolve can work on Python 2 only on earlier versions.
Debian packages that are built using Heptapod CI only install files for Python
3, because they target current Debian stable.
How to Contribute
=================
Discussion happens in #hg-evolve and #mercurial on libera_ IRC network.
.. _libera: https://libera.chat/
Bugs are to be reported on the Mercurial's bug tracker (component:
`evolution`_).
.. _evolution: https://bz.mercurial-scm.org/buglist.cgi?component=evolution&query_format=advanced&resolution=---
The recommended way to submit a patch is to create a Merge Request on
https://foss.heptapod.net/mercurial/evolve. To do so, create an account and
request access. You'll then be able to create a topic-based merge request.
Alternatively, you can use the patchbomb extension to send email to `mercurial
devel <https://www.mercurial-scm.org/mailman/listinfo/mercurial-devel>`_.
Please make sure to use the evolve-ext flag when doing so. You can use a
command like this::
$ hg email --to mercurial-devel@mercurial-scm.org --flag evolve-ext --rev '<your patches>'
For guidelines on the patch description, see the `official Mercurial guideline`_.
.. _`official Mercurial guideline`: https://wiki.mercurial-scm.org/ContributingChanges#Patch_descriptions
Please don't forget to update and run the tests when you fix a bug or add a
feature. To run the tests, you need a working copy of Mercurial, say in
$HGSRC::
$ cd tests
$ python $HGSRC/tests/run-tests.py
When certain blocks of code need to cope with API changes in core Mercurial,
they should have comments in the ``hg <= x.y (commit hash)`` format. For
example, if a function needs another code path because of changes introduced in
02802fa87b74 that was first included in Mercurial 5.3, then the comment should
be::
# hg <= 5.2 (02802fa87b74)
See also tests/test-check-compat-strings.t.
Branch policy
-------------
The evolve tests are highly impacted by changes in core Mercurial. To deal with
this, we use named branches.
There are two main branches: "stable" and "default". Tests on these branches
are supposed to pass with the corresponding "default" and "stable" branch from
core Mercurial. The documentation is built from the tip of stable.
In addition, we have compatibility branches to check tests on older versions of
Mercurial. They are the "mercurial-x.y" branches. They are used to apply
expected test changes only, no code changes should happen there.
Test output changes from a changeset in core should add the following line to
their patch description::
CORE-TEST-OUTPUT-UPDATE: <changeset hash>
Format-source config
====================
Format-source helps smooth out the pain of merging after auto-formatting.
Follow the installation instructions at the `format-source`_ repo.
.. _`format-source`: https://foss.heptapod.net/mercurial/format-source
Then update your per-repo config file::
$ hg config --local --edit # add these lines:
[extensions]
formatsource =
[format-source]
byteify-strings = python3 ~/hg/contrib/byteify-strings.py --dictiter --treat-as-kwargs kwargs opts commitopts TROUBLES --allow-attr-methods
byteify-strings:mode.input = file
byteify-strings:mode.output = pipe
Release Checklist
=================
* use contrib/merge-test-compat.sh to merge with the test compatibility
branches,
* make sure the tests are happy on all supported versions,
* make sure there is no code difference between the compatibility branches and
stable (no diff within hgext3rd/),
* update the ``testedwith`` variable for all extensions (remove '.dev0'):
- hgext3rd/evolve/metadata.py
- hgext3rd/topic/__init__.py
- hgext3rd/pullbundle.py
* make sure CHANGELOG is up-to-date,
* add a date to the CHANGELOG entry for the target version,
* update the ``__version__`` field of all relevant extensions:
- hgext3rd/evolve/metadata.py
- hgext3rd/topic/__init__.py
- hgext3rd/pullbundle.py (if touched)
* create a new Debian changelog entry:
- debchange --newversion x.y.z-1 "new upstream release"
- debchange --release
* sanity check install and sdist targets of setup.py:
- python setup.py install --home=$(mktemp -d)
- python setup.py sdist
* tag the commit,
* move ``@`` bookmark to the new tag,
* push and publish the tag,
* upload the tarball to PyPI,
* build .deb on Heptapod CI for the tagged commit,
* make an announcement on evolve-testers@mercurial-scm.org and
mercurial@mercurial-scm.org,
* bump versions of all extensions and add ``.dev0`` (see existing commits as an
example):
- hgext3rd/evolve/metadata.py
- hgext3rd/topic/__init__.py
- hgext3rd/pullbundle.py
Version bump rules:
- stable branch x.y.z+1.dev0
- default branch x.y+1.0.dev0
* merge stable into default.
Raw data
{
"_id": null,
"home_page": "https://www.mercurial-scm.org/doc/evolution/",
"name": "hg-evolve",
"maintainer": null,
"docs_url": null,
"requires_python": null,
"maintainer_email": null,
"keywords": "hg mercurial",
"author": "Pierre-Yves David",
"author_email": "pierre-yves.david@ens-lyon.org",
"download_url": "https://files.pythonhosted.org/packages/c9/ee/87d027d25d13f75fbf68392f3c4c0e95a10f23a7bd4fb20b1773d85381db/hg-evolve-11.1.5.tar.gz",
"platform": null,
"description": "=============================\nMutable History For Mercurial\n=============================\n\nEvolve Extension\n================\n\nThis package supplies the evolve extension for Mercurial,\n\n**The full implementation of the changeset evolution concept is still in\nprogress.** Please subscribe to the `evolve-testers mailing list\n<https://www.mercurial-scm.org/mailman/listinfo/evolve-testers>`_ to stay up to\ndate with changes.\n\nThis extension:\n\n* enables the \"`changeset evolution`_\" feature of core Mercurial,\n\n* provides a set of commands to rewrite history in a distributed way,\n\n* issues various warning messages when \"troubles\" from changeset evolution\n appear in your repository,\n\n* provides an ``hg evolve`` command to deal with such troubles,\n\n* improves performance of obsolescence marker exchange and discovery during\n push and pull.\n\n.. _`changeset evolution`: https://wiki.mercurial-scm.org/ChangesetEvolution\n\nDocumentation\n-------------\n\nWe recommend reading the documentation first. An online version is available\nhere:\n\n https://www.mercurial-scm.org/doc/evolution/\n\nSource of the documentation can be found in ``docs/``.\n\nHow to Install\n==============\n\nUsing Pip\n---------\n\nYou can install the latest released version using pip::\n\n $ pip install --user hg-evolve\n\nNote: some distributions have adopted PEP 668 and made using ``pip install\n--user`` more difficult than it should be. One of the cleanest ways around this\nissue is to install both Mercurial and this extension in a separate virtual\nenvironment. If you don't want to manage the virtual environment manually, you\ncan use Pipx.\n\nUsing Pipx\n----------\n\nIts documentation explains that \"pipx is made specifically for application\ninstallation\", and the idea is that for every application it can create and\nmaintain a separate virtual environment and make all executables available on a\nsingle path (e.g. ~/.local/bin/ on Linux, check ``pipx ensurepath``).\n\nTo create a virtual environment for hg and install evolve::\n\n $ pipx install mercurial\n $ pipx inject mercurial hg-evolve\n # or pipx runpip mercurial install hg-evolve\n\nNote: it's recommended to use ``inject`` command to install evolve, but\nsometimes ``runpip`` could be used. On some setups ``inject`` might require\nspecifying the full path to the extension in the configuration file, while\n``runpip`` might not.\n\nUsing Your Package Manager\n--------------------------\n\nSometimes your distribution's package manager might have the newest (or recent\nenough) version of the extension. For example, both `Debian`_ and `Ubuntu`_\ncurrently have a package called ``mercurial-evolve``. Similarly, other\ndistributions might have it packaged, possibly under a slightly different name.\nTry searching your package manager's database or see `this Repology page`_.\n\n.. _`Debian`: https://packages.debian.org/search?keywords=mercurial-evolve&searchon=names&exact=1&suite=all§ion=all\n.. _`Ubuntu`: https://packages.ubuntu.com/search?keywords=mercurial-evolve&searchon=names&exact=1&suite=all§ion=all\n.. _`this Repology page`: https://repology.org/project/mercurial-evolve/related\n\nFrom Source\n-----------\n\nTo obtain a local version from source::\n\n $ hg clone https://repo.mercurial-scm.org/evolve\n\nThere's no need to compile anything or run ``make``.\n\nThis method keeps the extension in its own repo, and you can use it by\nspecifying the full path to the ``hgext3rd/evolve/``.\n\nAlternatively, you can install it::\n\n $ cd evolve\n # optionally `hg update <target revision>`\n $ pip install --user .\n\nThis should avoid the need to specify the full path to the extension.\n\nEnabling the Extension\n----------------------\n\nAfter installing the extension, you need to enable it before you can use it.\n\nTo do that, edit your hgrc::\n\n $ hg config --edit # add these two lines:\n [extensions]\n evolve =\n\nIf you didn't install the extension or Mercurial can't find it on one of the\ndefault paths, you need to specify the full path to ``hgext3rd/evolve/``::\n\n [extensions]\n evolve = ~/evolve/hgext3rd/evolve\n\nSimilarly, if you want to enable topic extension, do this::\n\n $ hg config --edit\n [extensions]\n topic =\n # or\n topic = ~/evolve/hgext3rd/topic\n\nPitfalls\n--------\n\nIf you get ``\"failed to import extension evolve: No module named 'evolve'\"``\nerror, there are a couple of things to check:\n\n* make sure you gave pip/pipx the correct package name (it's ``hg-evolve``),\n\n* make sure evolve is installed for the same version of Python that you use for\n running Mercurial (``hg debuginstall | grep Python``),\n\n* try specifying the full path to the ``hgext3rd/evolve/`` directory.\n\nExtension Purpose\n=================\n\nThe goal of this extension is to provide an appropriate place for code and\nconcepts related to `changeset evolution`_ to mature. In this extension we\nallow hackier code, unlocking quick experimentation and faster iterations.\n\nIn addition, evolve extension supports a wide range of Mercurial versions,\nallowing us to reach a larger user base for feedback. The extension is not tied\nto the Mercurial release cycle and can release new features and bug fixes at a\nhigher rate if necessary.\n\nOnce a concept is deemed ready, its implementation is moved into core\nMercurial. The maturation period helped us to get a clearer picture of what was\nneeded. During the upstreaming process, we can use this clearer picture to\nclean up the code and upgrade it to an appropriate quality for core Mercurial.\n\nPython 3 Support\n================\n\nMercurial announced official `support for Python 3`_ starting with its 5.2\nrelease. Since 9.3.0, evolve has official support for Python 3.6+.\n\n.. _`support for Python 3`: https://wiki.mercurial-scm.org/Python3\n\nPython 2 Support\n================\n\nPython 2 is supported by evolve. However, Mercurial 6.2 release dropped support\nfor it, so evolve can work on Python 2 only on earlier versions.\n\nDebian packages that are built using Heptapod CI only install files for Python\n3, because they target current Debian stable.\n\nHow to Contribute\n=================\n\nDiscussion happens in #hg-evolve and #mercurial on libera_ IRC network.\n\n.. _libera: https://libera.chat/\n\nBugs are to be reported on the Mercurial's bug tracker (component:\n`evolution`_).\n\n.. _evolution: https://bz.mercurial-scm.org/buglist.cgi?component=evolution&query_format=advanced&resolution=---\n\nThe recommended way to submit a patch is to create a Merge Request on\nhttps://foss.heptapod.net/mercurial/evolve. To do so, create an account and\nrequest access. You'll then be able to create a topic-based merge request.\n\nAlternatively, you can use the patchbomb extension to send email to `mercurial\ndevel <https://www.mercurial-scm.org/mailman/listinfo/mercurial-devel>`_.\nPlease make sure to use the evolve-ext flag when doing so. You can use a\ncommand like this::\n\n $ hg email --to mercurial-devel@mercurial-scm.org --flag evolve-ext --rev '<your patches>'\n\nFor guidelines on the patch description, see the `official Mercurial guideline`_.\n\n.. _`official Mercurial guideline`: https://wiki.mercurial-scm.org/ContributingChanges#Patch_descriptions\n\nPlease don't forget to update and run the tests when you fix a bug or add a\nfeature. To run the tests, you need a working copy of Mercurial, say in\n$HGSRC::\n\n $ cd tests\n $ python $HGSRC/tests/run-tests.py\n\nWhen certain blocks of code need to cope with API changes in core Mercurial,\nthey should have comments in the ``hg <= x.y (commit hash)`` format. For\nexample, if a function needs another code path because of changes introduced in\n02802fa87b74 that was first included in Mercurial 5.3, then the comment should\nbe::\n\n # hg <= 5.2 (02802fa87b74)\n\nSee also tests/test-check-compat-strings.t.\n\nBranch policy\n-------------\n\nThe evolve tests are highly impacted by changes in core Mercurial. To deal with\nthis, we use named branches.\n\nThere are two main branches: \"stable\" and \"default\". Tests on these branches\nare supposed to pass with the corresponding \"default\" and \"stable\" branch from\ncore Mercurial. The documentation is built from the tip of stable.\n\nIn addition, we have compatibility branches to check tests on older versions of\nMercurial. They are the \"mercurial-x.y\" branches. They are used to apply\nexpected test changes only, no code changes should happen there.\n\nTest output changes from a changeset in core should add the following line to\ntheir patch description::\n\n CORE-TEST-OUTPUT-UPDATE: <changeset hash>\n\nFormat-source config\n====================\n\nFormat-source helps smooth out the pain of merging after auto-formatting.\nFollow the installation instructions at the `format-source`_ repo.\n\n.. _`format-source`: https://foss.heptapod.net/mercurial/format-source\n\nThen update your per-repo config file::\n\n $ hg config --local --edit # add these lines:\n [extensions]\n formatsource =\n\n [format-source]\n byteify-strings = python3 ~/hg/contrib/byteify-strings.py --dictiter --treat-as-kwargs kwargs opts commitopts TROUBLES --allow-attr-methods\n byteify-strings:mode.input = file\n byteify-strings:mode.output = pipe\n\nRelease Checklist\n=================\n\n* use contrib/merge-test-compat.sh to merge with the test compatibility\n branches,\n\n* make sure the tests are happy on all supported versions,\n\n* make sure there is no code difference between the compatibility branches and\n stable (no diff within hgext3rd/),\n\n* update the ``testedwith`` variable for all extensions (remove '.dev0'):\n\n - hgext3rd/evolve/metadata.py\n - hgext3rd/topic/__init__.py\n - hgext3rd/pullbundle.py\n\n* make sure CHANGELOG is up-to-date,\n\n* add a date to the CHANGELOG entry for the target version,\n\n* update the ``__version__`` field of all relevant extensions:\n\n - hgext3rd/evolve/metadata.py\n - hgext3rd/topic/__init__.py\n - hgext3rd/pullbundle.py (if touched)\n\n* create a new Debian changelog entry:\n\n - debchange --newversion x.y.z-1 \"new upstream release\"\n - debchange --release\n\n* sanity check install and sdist targets of setup.py:\n\n - python setup.py install --home=$(mktemp -d)\n - python setup.py sdist\n\n* tag the commit,\n\n* move ``@`` bookmark to the new tag,\n\n* push and publish the tag,\n\n* upload the tarball to PyPI,\n\n* build .deb on Heptapod CI for the tagged commit,\n\n* make an announcement on evolve-testers@mercurial-scm.org and\n mercurial@mercurial-scm.org,\n\n* bump versions of all extensions and add ``.dev0`` (see existing commits as an\n example):\n\n - hgext3rd/evolve/metadata.py\n - hgext3rd/topic/__init__.py\n - hgext3rd/pullbundle.py\n\n Version bump rules:\n\n - stable branch x.y.z+1.dev0\n - default branch x.y+1.0.dev0\n\n* merge stable into default.",
"bugtrack_url": null,
"license": "GPLv2+",
"summary": "Flexible evolution of Mercurial history.",
"version": "11.1.5",
"project_urls": {
"Homepage": "https://www.mercurial-scm.org/doc/evolution/"
},
"split_keywords": [
"hg",
"mercurial"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "c9ee87d027d25d13f75fbf68392f3c4c0e95a10f23a7bd4fb20b1773d85381db",
"md5": "9e2a7468f016876f079a3f28930d8f81",
"sha256": "3669d2405b31085049b00240154cc180baa3b13771a1685cd48f5b77433848d2"
},
"downloads": -1,
"filename": "hg-evolve-11.1.5.tar.gz",
"has_sig": false,
"md5_digest": "9e2a7468f016876f079a3f28930d8f81",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 863227,
"upload_time": "2024-10-26T07:06:18",
"upload_time_iso_8601": "2024-10-26T07:06:18.283545Z",
"url": "https://files.pythonhosted.org/packages/c9/ee/87d027d25d13f75fbf68392f3c4c0e95a10f23a7bd4fb20b1773d85381db/hg-evolve-11.1.5.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-10-26 07:06:18",
"github": false,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"lcname": "hg-evolve"
}