hg-evolve


Namehg-evolve JSON
Version 11.1.3 PyPI version JSON
download
home_pagehttps://www.mercurial-scm.org/doc/evolution/
SummaryFlexible evolution of Mercurial history.
upload_time2024-04-12 19:36:49
maintainerNone
docs_urlNone
authorPierre-Yves David
requires_pythonNone
licenseGPLv2+
keywords hg mercurial
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            =============================
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://www.mercurial-scm.org/wiki/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

Then enable it in your hgrc::

    $ hg config --edit # add these two lines:
    [extensions]
    evolve =

From Source
-----------

To install a local version from source::

    $ hg clone https://www.mercurial-scm.org/repo/evolve/
    $ cd evolve
    # optionally `hg update <target revision>`
    $ pip install --user .

Then enable it in your hgrc::

    $ hg config --edit # add these two lines:
    [extensions]
    evolve =

It's also possible to use evolve without installing it, in which case you will
need to provide the full path to ``hgext3rd/evolve/``, for example::

    [extensions]
    evolve = ~/evolve/hgext3rd/evolve

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 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``).

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://www.mercurial-scm.org/wiki/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://mercurial-scm.org/wiki/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/94/f7/f3781a1d9a0128ca8a69351db1f3a10dedf96a0838f5daecb90ed1b69fd7/hg-evolve-11.1.3.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://www.mercurial-scm.org/wiki/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\nThen enable it in your hgrc::\n\n    $ hg config --edit # add these two lines:\n    [extensions]\n    evolve =\n\nFrom Source\n-----------\n\nTo install a local version from source::\n\n    $ hg clone https://www.mercurial-scm.org/repo/evolve/\n    $ cd evolve\n    # optionally `hg update <target revision>`\n    $ pip install --user .\n\nThen enable it in your hgrc::\n\n    $ hg config --edit # add these two lines:\n    [extensions]\n    evolve =\n\nIt's also possible to use evolve without installing it, in which case you will\nneed to provide the full path to ``hgext3rd/evolve/``, for example::\n\n    [extensions]\n    evolve = ~/evolve/hgext3rd/evolve\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 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\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://www.mercurial-scm.org/wiki/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://mercurial-scm.org/wiki/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.3",
    "project_urls": {
        "Homepage": "https://www.mercurial-scm.org/doc/evolution/"
    },
    "split_keywords": [
        "hg",
        "mercurial"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "94f7f3781a1d9a0128ca8a69351db1f3a10dedf96a0838f5daecb90ed1b69fd7",
                "md5": "3475861892347941f969cf3ba8e5a046",
                "sha256": "5943cea24feda59252a2893308810744a0254f3799e91258d0889c9604143acf"
            },
            "downloads": -1,
            "filename": "hg-evolve-11.1.3.tar.gz",
            "has_sig": false,
            "md5_digest": "3475861892347941f969cf3ba8e5a046",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 860995,
            "upload_time": "2024-04-12T19:36:49",
            "upload_time_iso_8601": "2024-04-12T19:36:49.153555Z",
            "url": "https://files.pythonhosted.org/packages/94/f7/f3781a1d9a0128ca8a69351db1f3a10dedf96a0838f5daecb90ed1b69fd7/hg-evolve-11.1.3.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-12 19:36:49",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "hg-evolve"
}
        
Elapsed time: 0.23110s