- May 04, 2020
-
-
Manuel Jacob authored
-
- May 03, 2020
-
-
Manuel Jacob authored
-
Manuel Jacob authored
-
Manuel Jacob authored
-
- Mar 06, 2020
-
-
Manuel Jacob authored
-
Manuel Jacob authored
-
Manuel Jacob authored
-
- May 03, 2020
-
-
Manuel Jacob authored
-
Manuel Jacob authored
These files were byteified using hg’s contrib/byteify-strings.py: - contrib/hggitperf.py - hggit/compat.py - hggit/git2hg.py - hggit/gitdirstate.py - hggit/gitrepo.py - hggit/git_handler.py - hggit/hg2git.py - hggit/hgrepo.py - hggit/overlay.py - hggit/util.py - hggit/verify.py - hggit/_ssh.py - hggit/__init__.py - tests/commitextra.py Additionally, "--treat-as-kwargs opts kwargs" were passed as arguments. Some of the changes will be undone later. Because of the large amount of literals that should be changed in comparison to the few literals that should stay, it seemed better to do it this way around. Raw literals are not changed by the script. Some of them will be changed manually in a separate changeset.
-
Manuel Jacob authored
-
Manuel Jacob authored
-
Manuel Jacob authored
-
Manuel Jacob authored
-
- Mar 10, 2020
-
-
Georges Racinet authored
with the newly created ci-py2-hg-git images, we'll get slightly faster builds, using less bandwidth and power.
-
Georges Racinet authored
The 'current' stage will run the tests against the latest released Mercurial version available in our base Docker images, while the 'compat' stage will run against all other versions. This way, most failures in ordinary development will be detected early and the full compatibility jobs won't be launched (they will eventually, once the failures against the current version are resolved)
-
Georges Racinet authored
As usual, this is the latest released version.
-
- Nov 24, 2019
-
-
timeless developer authored
Made compatible with older Mercurial versions by Manuel Jacob.
-
- Mar 06, 2020
-
-
Manuel Jacob authored
Newer versions of Mercurial that properly support Python 3 have them in pycompat. For older versions of Mercurial we define them, but only for Python 2.
-
Manuel Jacob authored
The StringIO and cStringIO modules were removed in Python 3. io.BytesIO works consistently across Python 2 and Python 3.
-
Manuel Jacob authored
The pos attribute is mostly an implementation detail.
-
Manuel Jacob authored
The except handler re-raises the exception directly, so there’s no reason to have it. In the past, this except handler had a special case for compatibility.
-
- Nov 25, 2019
-
-
timeless developer authored
-
- Nov 24, 2019
-
-
timeless developer authored
-
- Dec 23, 2019
-
-
Georges Racinet authored
-
- Mar 05, 2020
-
-
Manuel Jacob authored
* run `find . -name "*.py" -print0 -o -path ./tests/hghave | xargs -I {} -0 2to3 --fix=print --write {}` * run `find . -name "*.py" -print0 -o -path ./tests/hghave | xargs -I {} -0 2to3 --doctests_only --fix=print --write {}` * remove extra newline at end of files introduced by last command * add `from __future__ import print_function` to Python files
-
- Nov 22, 2019
-
-
timeless developer authored
-
- Nov 24, 2019
-
-
timeless developer authored
-
- Nov 12, 2019
-
-
muxator authored
Command executed: find . -name "*.py" -print0 | xargs -I {} -0 2to3 --fix=import --write {}
-
muxator authored
Command executed: find . -name "*.py" -print0 | xargs -I {} -0 2to3 --fix=numliterals --write {}
-
muxator authored
Command executed: find . -name "*.py" -print0 | xargs -I {} -0 2to3 --fix=except --write {}
-
muxator authored
Before this patch: --- /opt/mercurial/hg-git/tests/test-check-pyflakes.t +++ /opt/mercurial/hg-git/tests/test-check-pyflakes.t.err @@ -17,3 +17,8 @@ > -X tests/ \ > 2>/dev/null \ > | xargs pyflakes 2>/dev/null + hggit/__init__.py:59: local variable 'e' is assigned to but never used
-
- Mar 05, 2020
-
-
Manuel Jacob authored
After copying the files, a6ddd3f835af was reapplied.
-
- Jun 03, 2019
-
-
Manuel Jacob authored
This functionality was there before, but didn’t work with dulwich >= 0.19.0, which we now depend on, and was therefore removed.
-
Manuel Jacob authored
Dulwich 0.19.0 switched to urllib3 and therefore doesn’t accept the `opener` argument anymore. Therefore the code that builds and tries to pass the opener can be removed.
-
- Mar 01, 2020
-
-
Georges Racinet authored
In dbbae122f5e4 of Mercurial, the `default` kwarg has been removed. Now `manifest.flags()` always returns an empty string as a default, and that's exactly what we were asking anyway.
-
- Jan 11, 2020
-
-
Georges Racinet authored
This is the same as what's been done earlier for heptapod/hg-git: `/usr/bin/ssh` is no longer installed with `git-core` because the base image skips install of `Recommends` dependencies.
-
- Dec 08, 2019
-
-
Georges Racinet authored
This `_maybe_filtered` attribute has been introduced in Mercurial revision 8a37203ab1d5, and is henceforth expected by some callers. Adding it inconditionnally should not harm on previous versions: it would simply not get used.
-
Georges Racinet authored
as of Mercurial c5548b0b6847, status is no more a tuple. Its attributes must be accessed explicitely. These attributes have been available since 3.2 (introduced in cb4449921a1d), so that we don't need to introduce a conditional such as `isinstance(tuple)`. Technically, these are slots, so that performance-wise, such prefetching in locals should not matter, but they make for the smallest changeset.
-
- Dec 22, 2019
-
-
Georges Racinet authored
Currently, the tests fail for this version of Mercurial, hence we'll add the job once they are fixed. Ideally, this changeset should be rebased on top of a revision that fixes hg-git for Mercurial default, hence validating the fix.
-
Georges Racinet authored
All commands that make use of Python and are meant to retrieve or prebuild code should not themselves use potentially incompatible stuff from /ci/repos/mercurial. For instance, updating Mercurial to 'stable' should not risk using a random version of the mercurial Python package. It must instead use the one provided system-wide, that is consistent with the `hg` command.
-