[PATCH] osutil: fix the declaration to work on different sizes of off_t

2016-09-08 Thread Maciej Fijalkowski
# HG changeset patch # User fijal # Date 1473323878 -7200 # Thu Sep 08 10:37:58 2016 +0200 # Node ID 8db87163c95d79da03644e3850551f3bfa802262 # Parent e20945831e4f9362d2e113bafe527e2a0554f4b4 osutil: fix the declaration to work on different sizes of off_t diff --git a/setup_osutil_cffi.py

Re: [PATCH] mpatch: add missing file

2016-09-08 Thread Maciej Fijalkowski
ups, it seems this has been committed (?) On Thu, Sep 8, 2016 at 10:04 AM, Maciej Fijalkowski wrote: > # HG changeset patch > # User fijal > # Date 1473321829 -7200 > # Thu Sep 08 10:03:49 2016 +0200 > # Node ID e812104013b1281b24dff50dd902897d24b0e29f > # Parent

[PATCH] mpatch: add missing file

2016-09-08 Thread Maciej Fijalkowski
# HG changeset patch # User fijal # Date 1473321829 -7200 # Thu Sep 08 10:03:49 2016 +0200 # Node ID e812104013b1281b24dff50dd902897d24b0e29f # Parent 64e432c2740087b7c042346f55af9512ead0f849 mpatch: add missing file diff --git a/setup_mpatch_cffi.py b/setup_mpatch_cffi.py new file mode

Re: [PATCH] mpatch: add missing file

2016-09-08 Thread Gregory Szorc
I sent it a few weeks ago after I couldn't build @ with PyPy. You may want to verify the content matches. > On Sep 8, 2016, at 01:07, Maciej Fijalkowski wrote: > > ups, it seems this has been committed (?) > >> On Thu, Sep 8, 2016 at 10:04 AM, Maciej Fijalkowski

[PATCH 3 of 4] debugrevspec: add option to print parsed tree at given stages

2016-09-08 Thread Yuya Nishihara
# HG changeset patch # User Yuya Nishihara # Date 1471750437 -32400 # Sun Aug 21 12:33:57 2016 +0900 # Node ID 737f256f394d4401e554413fc77cfc85b8337d32 # Parent 42823004ac293802357b2ec9b7821d5e8ea515f9 debugrevspec: add option to print parsed tree at given stages "-p " is

[PATCH 4 of 4] debugrevspec: deprecate --optimize option

2016-09-08 Thread Yuya Nishihara
# HG changeset patch # User Yuya Nishihara # Date 1471750583 -32400 # Sun Aug 21 12:36:23 2016 +0900 # Node ID 06ffd3f76a7c117d3b11bebae909a4fb32c5f82a # Parent 737f256f394d4401e554413fc77cfc85b8337d32 debugrevspec: deprecate --optimize option This option has been superseded

[PATCH 1 of 4] debugrevspec: build parsed tree even if no --verbose specified

2016-09-08 Thread Yuya Nishihara
# HG changeset patch # User Yuya Nishihara # Date 1471747854 -32400 # Sun Aug 21 11:50:54 2016 +0900 # Node ID f3f3289bfa565f21e50b2f14d4ab4c6d0df349fd # Parent e20945831e4f9362d2e113bafe527e2a0554f4b4 debugrevspec: build parsed tree even if no --verbose specified Prepares

Re: [PATCH V3] update: warn if cwd was deleted

2016-09-08 Thread Bryan O'Sullivan
You are performing these getcwd calls inside what should be a fast inner loop. This is going to dramatically slow the common case down by doing a whole lot of redundant work. All you need to do to fix this is check getcwd once before the loop begins, and then again after it ends. On Mon, Sep 5,

Re: [PATCH] osutil: fix the declaration to work on different sizes of off_t

2016-09-08 Thread Augie Fackler
On Thu, Sep 08, 2016 at 10:38:08AM +0200, Maciej Fijalkowski wrote: > # HG changeset patch > # User fijal > # Date 1473323878 -7200 > # Thu Sep 08 10:37:58 2016 +0200 > # Node ID 8db87163c95d79da03644e3850551f3bfa802262 > # Parent e20945831e4f9362d2e113bafe527e2a0554f4b4 > osutil: fix the

Re: [PATCH 2 of 3 V2] manifest: make uses of _mancache aware of contexts

2016-09-08 Thread Durham Goode
On 9/7/16 9:10 AM, Pierre-Yves David wrote: On 09/07/2016 05:35 PM, Pierre-Yves David wrote: On 09/03/2016 05:51 PM, Yuya Nishihara wrote: On Wed, 31 Aug 2016 13:30:20 -0700, Durham Goode wrote: # HG changeset patch # User Durham Goode # Date 1472518929 25200 # Mon

[PATCH STABLE] keyword: use fctx.filenode() instead of internal var (issue5364)

2016-09-08 Thread Christian Ebert
# HG changeset patch # User Christian Ebert # Date 1473350741 -3600 # Thu Sep 08 17:05:41 2016 +0100 # Branch stable # Node ID d4f2b7b5b2e382dcc34409ddcb89b9280262c2d0 # Parent e7766022a61a66a7c4218526b647f96bd442a4ce keyword: use fctx.filenode() instead of internal var

Re: [PATCH 2 of 3 V2] manifest: make uses of _mancache aware of contexts

2016-09-08 Thread Martin von Zweigbergk via Mercurial-devel
Dropped. On Thu, Sep 8, 2016 at 11:19 AM, Durham Goode wrote: > > > On 9/7/16 9:10 AM, Pierre-Yves David wrote: >> >> >> >> On 09/07/2016 05:35 PM, Pierre-Yves David wrote: >>> >>> >>> >>> On 09/03/2016 05:51 PM, Yuya Nishihara wrote: On Wed, 31 Aug 2016 13:30:20 -0700,