Re: [PATCH 1 of 3 v4] flags: allow specifying --no-boolean-flag on the command line (BC)

2016-09-17 Thread Yuya Nishihara
On Fri, 16 Sep 2016 11:15:01 -0400, Augie Fackler wrote: > # HG changeset patch > # User Augie Fackler > # Date 1473821877 14400 > # Tue Sep 13 22:57:57 2016 -0400 > # Node ID cb57a762749f29065635d0480bf5c87c644ba0c5 > # Parent 285a8c3e53f2183438f0cdbc238e4ab851d0d110 > flags: allow specifyi

Re: [PATCH 3 of 3 v4] help: mark boolean flags with [?] and explain that they can be negated (RFC)

2016-09-17 Thread Yuya Nishihara
On Fri, 16 Sep 2016 11:15:03 -0400, Augie Fackler wrote: > # HG changeset patch > # User Augie Fackler > # Date 1473821892 14400 > # Tue Sep 13 22:58:12 2016 -0400 > # Node ID bc6e18d8c469a1671c2d6725da5771fed3972323 > # Parent aea18fa52d954e234fdfd1d24d3f37f0cb03dc60 > help: mark boolean fl

Re: [PATCH 2 of 3 v4] diffopts: notice a negated boolean flag in diffopts

2016-09-17 Thread Yuya Nishihara
On Fri, 16 Sep 2016 11:15:02 -0400, Augie Fackler wrote: > # HG changeset patch > # User Augie Fackler > # Date 1472586907 14400 > # Tue Aug 30 15:55:07 2016 -0400 > # Node ID aea18fa52d954e234fdfd1d24d3f37f0cb03dc60 > # Parent cb57a762749f29065635d0480bf5c87c644ba0c5 > diffopts: notice a ne

Re: [PATCH] lazymanifest: write a more efficient, pypy friendly version of lazymanifest

2016-09-17 Thread Maciej Fijalkowski
Hi When I'm trying to do that, I get that: https://paste.pound-python.org/show/HZsFNvYPt8EAH2ugETpx/ and then it hangs (for both system hg and local hg) On Tue, Sep 13, 2016 at 12:59 PM, Pierre-Yves David wrote: > > > On 09/13/2016 12:52 PM, Pierre-Yves David wrote: >> >> >> >> On 09/13/2016 1

[PATCH 1 of 2] revset: add option to make matcher takes the ordering of the input set

2016-09-17 Thread Yuya Nishihara
# HG changeset patch # User Yuya Nishihara # Date 1462252708 -32400 # Tue May 03 14:18:28 2016 +0900 # Node ID 961b53cbadd0e17b1e5e745d0e3cc582cbf6603f # Parent e40343ce9c4c4819ea5669abb3447d5c031a8270 # EXP-Topic revsetflag revset: add option to make matcher takes the ordering of the input

[PATCH 2 of 2] log: drop hack to fix order of revset (issue5100)

2016-09-17 Thread Yuya Nishihara
# HG changeset patch # User Yuya Nishihara # Date 1462253040 -32400 # Tue May 03 14:24:00 2016 +0900 # Node ID f99625523f84eaaedf48897322d5c9f6dce64bd9 # Parent 961b53cbadd0e17b1e5e745d0e3cc582cbf6603f # EXP-Topic revsetflag log: drop hack to fix order of revset (issue5100) Specify ordered=

Re: [PATCH 2 of 2] log: drop hack to fix order of revset (issue5100)

2016-09-17 Thread Yuya Nishihara
On Sat, 17 Sep 2016 19:17:40 +0900, Yuya Nishihara wrote: > # HG changeset patch > # User Yuya Nishihara > # Date 1462253040 -32400 > # Tue May 03 14:24:00 2016 +0900 > # Node ID f99625523f84eaaedf48897322d5c9f6dce64bd9 > # Parent 961b53cbadd0e17b1e5e745d0e3cc582cbf6603f > # EXP-Topic revset

Re: [PATCH] lazymanifest: write a more efficient, pypy friendly version of lazymanifest

2016-09-17 Thread Pierre-Yves David
On 09/17/2016 11:17 AM, Maciej Fijalkowski wrote: Hi When I'm trying to do that, I get that: https://paste.pound-python.org/show/HZsFNvYPt8EAH2ugETpx/ and then it hangs (for both system hg and local hg) Can you add --debug to get a bit more data? -- Pierre-Yves David _

Re: [PATCH] lazymanifest: write a more efficient, pypy friendly version of lazymanifest

2016-09-17 Thread Maciej Fijalkowski
https://paste.pound-python.org/show/JB0RSPFycVzWS8X6C7hc/ On Sat, Sep 17, 2016 at 12:25 PM, Pierre-Yves David wrote: > > > On 09/17/2016 11:17 AM, Maciej Fijalkowski wrote: >> >> Hi >> >> When I'm trying to do that, I get that: >> >> https://paste.pound-python.org/show/HZsFNvYPt8EAH2ugETpx/ >> >>

Re: [PATCH] lazymanifest: write a more efficient, pypy friendly version of lazymanifest

2016-09-17 Thread Maciej Fijalkowski
ok, I think at the end it is that: received listkey for "obsolete": 16746270 bytes and it takes a while, but there is no progress nothing which seems like it's hanging On Sat, Sep 17, 2016 at 1:44 PM, Maciej Fijalkowski wrote: > https://paste.pound-python.org/show/JB0RSPFycVzWS8X6C7hc/ > > On S

Re: [PATCH] lazymanifest: write a more efficient, pypy friendly version of lazymanifest

2016-09-17 Thread Maciej Fijalkowski
managed to pull that. How do I incorporate my fixes for the problems now? On Sat, Sep 17, 2016 at 1:45 PM, Maciej Fijalkowski wrote: > ok, I think at the end it is that: > > received listkey for "obsolete": 16746270 bytes > > and it takes a while, but there is no progress nothing which seems > li

Re: [PATCH] lazymanifest: write a more efficient, pypy friendly version of lazymanifest

2016-09-17 Thread Maciej Fijalkowski
I have fixed the problem with the test that you listed. I'm still completely unable to finish the test run - with -j it randomly hangs and does nothing with no extra output On Sat, Sep 17, 2016 at 1:47 PM, Maciej Fijalkowski wrote: > managed to pull that. How do I incorporate my fixes for the pro

[Bug 5372] New: RPM download links point to previous version

2016-09-17 Thread bugzilla
https://bz.mercurial-scm.org/show_bug.cgi?id=5372 Bug ID: 5372 Summary: RPM download links point to previous version Product: Mercurial Version: unspecified Hardware: All OS: All Status: UNCONFIRMED Severi

[PATCH] rebase: rebase changesets with branch grouped

2016-09-17 Thread Xidorn Quan
# HG changeset patch # User Xidorn Quan # Date 1474095776 -36000 # Sat Sep 17 17:02:56 2016 +1000 # Node ID 88184dc23ccacfc8ae450abc5d574b8b028bca79 # Parent 285a8c3e53f2183438f0cdbc238e4ab851d0d110 rebase: rebase changesets with branch grouped diff --git a/hgext/rebase.py b/hgext/rebase.py

Re: [PATCH] rebase: rebase changesets with branch grouped

2016-09-17 Thread Martin von Zweigbergk via Mercurial-devel
There's a topoiter or topoorder somewhere that is used by "hg log". Can that be used here? Sorry, on mobile and too lazy to find the exact function. On Sat, Sep 17, 2016, 08:18 Xidorn Quan wrote: > # HG changeset patch > # User Xidorn Quan > # Date 1474095776 -36000 > # Sat Sep 17 17:02:56

[Bug 5373] New: test-highlight.t fails when ipython is installed

2016-09-17 Thread bugzilla
https://bz.mercurial-scm.org/show_bug.cgi?id=5373 Bug ID: 5373 Summary: test-highlight.t fails when ipython is installed Product: Mercurial Version: unspecified Hardware: PC OS: Mac OS Status: UNCONFIRMED

[PATCH] lazymanifest: write a more efficient, pypy friendly version of lazymanifest

2016-09-17 Thread Maciej Fijalkowski
# HG changeset patch # User Maciej Fijalkowski # Date 1473680234 -7200 # Mon Sep 12 13:37:14 2016 +0200 # Node ID 7551f1e60b2155462d89a9571eec065e9f67debc # Parent df05c43bd1e64f1620d0b2e502f4603c1e5a8341 lazymanifest: write a more efficient, pypy friendly version of lazymanifest diff --git

Re: [PATCH] lazymanifest: write a more efficient, pypy friendly version of lazymanifest

2016-09-17 Thread Maciej Fijalkowski
I'll resend it with v2 On Sat, Sep 17, 2016 at 8:21 PM, Maciej Fijalkowski wrote: > # HG changeset patch > # User Maciej Fijalkowski > # Date 1473680234 -7200 > # Mon Sep 12 13:37:14 2016 +0200 > # Node ID 7551f1e60b2155462d89a9571eec065e9f67debc > # Parent df05c43bd1e64f1620d0b2e502f4603c

[PATCH v2] lazymanifest: write a more efficient, pypy friendly version of lazymanifest

2016-09-17 Thread Maciej Fijalkowski
# HG changeset patch # User Maciej Fijalkowski # Date 1473680234 -7200 # Mon Sep 12 13:37:14 2016 +0200 # Node ID 7551f1e60b2155462d89a9571eec065e9f67debc # Parent df05c43bd1e64f1620d0b2e502f4603c1e5a8341 lazymanifest: write a more efficient, pypy friendly version of lazymanifest diff --git

Re: [PATCH v2] lazymanifest: write a more efficient, pypy friendly version of lazymanifest

2016-09-17 Thread Maciej Fijalkowski
This should fix the issues presented. There is one problem which is that the hash in test-rebase-detach changes. The way I see it is just an RNG phase-shift, but it might be a real bug. Some actual input will be appreciated. On Sat, Sep 17, 2016 at 8:22 PM, Maciej Fijalkowski wrote: > # HG cha

Re: [PATCH 3 of 3 v4] help: mark boolean flags with [?] and explain that they can be negated (RFC)

2016-09-17 Thread kbullock+mercurial
> On Sep 17, 2016, at 02:58, Yuya Nishihara wrote: > > On Fri, 16 Sep 2016 11:15:03 -0400, Augie Fackler wrote: >> # HG changeset patch >> # User Augie Fackler >> # Date 1473821892 14400 >> # Tue Sep 13 22:58:12 2016 -0400 >> # Node ID bc6e18d8c469a1671c2d6725da5771fed3972323 >> # Parent a

Re: [PATCH 3 of 3 v4] help: mark boolean flags with [?] and explain that they can be negated (RFC)

2016-09-17 Thread Martin von Zweigbergk via Mercurial-devel
How about --[no-]commit? On Sat, Sep 17, 2016, 14:26 wrote: > > On Sep 17, 2016, at 02:58, Yuya Nishihara wrote: > > > > On Fri, 16 Sep 2016 11:15:03 -0400, Augie Fackler wrote: > >> # HG changeset patch > >> # User Augie Fackler > >> # Date 1473821892 14400 > >> # Tue Sep 13 22:58:12 201