# HG changeset patch # User Pierre-Yves David # Date 1456402716 -3600 # Node ID a3da15803b7a459d59f42c57661f9ef8d2c6325c # Parent c216b175d53504df36eba57870bb3cdff19b10bd# Parent 160968654581eb83f58f2b913124a16f7bef56ee merge stable into default diff -r c216b175d535 -r a3da15803b7a README --- a/README Sun Feb 14 14:37:40 2016 +0000 +++ b/README Thu Feb 25 13:18:36 2016 +0100 @@ -16,7 +16,7 @@ You can enable it by adding the line below to the ``extensions`` section of your hgrc:: - evolve = PATH/TO/mutable-history/hgext/evolve.py + evolve = PATH/TO/evolve-main/hgext/evolve.py We recommend reading the documentation first. An online version is available here: diff -r c216b175d535 -r a3da15803b7a debian/control --- a/debian/control Sun Feb 14 14:37:40 2016 +0000 +++ b/debian/control Thu Feb 25 13:18:36 2016 +0100 @@ -15,7 +15,7 @@ librsvg2-bin, wget, Python-Version: >= 2.6 -Homepage: https://bitbucket.org/marmoute/mutable-history +Homepage: http://evolution.experimentalworks.net/ Package: mercurial-evolve Architecture: all diff -r c216b175d535 -r a3da15803b7a debian/copyright --- a/debian/copyright Sun Feb 14 14:37:40 2016 +0000 +++ b/debian/copyright Thu Feb 25 13:18:36 2016 +0100 @@ -1,5 +1,5 @@ This software was downloaded from -https://bitbucket.org/marmoute/mutable-history +http://hg.netv6.net/evolve-main/ Copyright 2011 Peter Arrenbrecht Logilab SA diff -r c216b175d535 -r a3da15803b7a docs/index.rst --- a/docs/index.rst Sun Feb 14 14:37:40 2016 +0000 +++ b/docs/index.rst Thu Feb 25 13:18:36 2016 +0100 @@ -113,7 +113,7 @@ #. Clone the ``evolve`` repository:: cd ~/src - hg clone https://bitbucket.org/marmoute/mutable-history + hg clone http://hg.netv6.net/evolve-main #. Configure the extension, either locally :: @@ -125,7 +125,7 @@ Then add :: - evolve=~/src/mutable-history/hgext/evolve.py + evolve=~/src/evolve-main/hgext/evolve.py in the ``[extensions]`` section (adding the section if necessary). Use the directory that you actually cloned to, of course. diff -r c216b175d535 -r a3da15803b7a docs/sharing.rst --- a/docs/sharing.rst Sun Feb 14 14:37:40 2016 +0000 +++ b/docs/sharing.rst Thu Feb 25 13:18:36 2016 +0100 @@ -102,7 +102,7 @@ publish = false [extensions] - evolve = /path/to/mutable-history/hgext/evolve.py + evolve = /path/to/evolve-main/hgext/evolve.py Then edit the configuration for ``dev-repo``:: @@ -111,7 +111,7 @@ and add :: [extensions] - evolve = /path/to/mutable-history/hgext/evolve.py + evolve = /path/to/evolve-main/hgext/evolve.py Keep in mind that in real life, these repositories would probably be on separate computers, so you'd have to login to each one to configure @@ -331,7 +331,7 @@ and add :: [extensions] - evolve = /path/to/mutable-history/hgext/evolve.py + evolve = /path/to/evolve-main/hgext/evolve.py Then edit Bob's repository configuration:: @@ -545,7 +545,7 @@ [extensions] rebase = - evolve = /path/to/mutable-history/hgext/evolve.py + evolve = /path/to/evolve-main/hgext/evolve.py [phases] publish = false diff -r c216b175d535 -r a3da15803b7a hgext/evolve.py --- a/hgext/evolve.py Sun Feb 14 14:37:40 2016 +0000 +++ b/hgext/evolve.py Thu Feb 25 13:18:36 2016 +0100 @@ -2709,7 +2709,7 @@ lockmod.release(tr, lock, wlock) @command('^split', - [('r', 'rev', [], _("revision to fold")), + [('r', 'rev', [], _("revision to split")), ] + commitopts + commitopts2, _('hg split [OPTION]... [-r] REV')) def cmdsplit(ui, repo, *revs, **opts): diff -r c216b175d535 -r a3da15803b7a setup.py --- a/setup.py Sun Feb 14 14:37:40 2016 +0000 +++ b/setup.py Thu Feb 25 13:18:36 2016 +0100 @@ -29,7 +29,7 @@ author='Pierre-Yves David', maintainer='Pierre-Yves David', maintainer_email='pierre-yves.david@ens-lyon.org', - url='https://bitbucket.org/marmoute/mutable-history', + url='http://evolution.experimentalworks.net/', description='Flexible evolution of Mercurial history.', long_description=open('README').read(), keywords='hg mercurial',