[PATCH] patchbomb: allow specifying default --flag options via config(issue5354)

2017-02-20 Thread Pulkit Goyal
# HG changeset patch # User Pulkit Goyal <7895pul...@gmail.com> # Date 1487593583 -19800 # Mon Feb 20 17:56:23 2017 +0530 # Node ID 3c7e816697791c48de126c06c069af23c9e2bc3a # Parent 2c9e619ba9ee8e72370cc0f27f59da39947773b6 patchbomb: allow specifying default --flag options via config(issue535

Re: [PATCH 3 of 4 V2] serve: make the URL the same for `hg serve` and `hg serve -S`

2017-02-20 Thread Matt Harbison
On Mon, 20 Feb 2017 09:38:13 -0500, Yuya Nishihara wrote: On Thu, 16 Feb 2017 16:41:10 -0500, Matt Harbison wrote: # HG changeset patch # User Matt Harbison # Date 1486877030 18000 # Sun Feb 12 00:23:50 2017 -0500 # Node ID 38babd487181374325f3d27c5bc081dadf31b9b9 # Parent 27a4bc77e8b8e

Re: [PATCH 04 of 10 ipv6 V2] tinyproxy: use IPv6 if HGIPV6 is set to 1

2017-02-20 Thread Jun Wu
Excerpts from David Soria Parra's message of 2017-02-20 13:48:40 -0800: > On Fri, Feb 17, 2017 at 10:51:18AM -0800, Jun Wu wrote: > > # HG changeset patch > > # User Jun Wu > > # Date 1487228025 28800 > > # Wed Feb 15 22:53:45 2017 -0800 > > # Node ID c34ad0f0fc375de9e2d96d17ddcb644d9054d154

Re: [PATCH 1 of 4 V2] serve: add support for Mercurial subrepositories

2017-02-20 Thread Matt Harbison
On Mon, 20 Feb 2017 09:27:44 -0500, Yuya Nishihara wrote: On Thu, 16 Feb 2017 16:41:08 -0500, Matt Harbison wrote: # HG changeset patch # User Matt Harbison # Date 1486875517 18000 # Sat Feb 11 23:58:37 2017 -0500 # Node ID 4f2862487d789edc1f36b5687d828a2914e1dc32 # Parent afaf3c2b129c8

Re: [PATCH 2 of 4 V2] clone: use the HTTP 301 location to record the default path

2017-02-20 Thread Matt Harbison
On Mon, 20 Feb 2017 09:33:05 -0500, Yuya Nishihara wrote: On Thu, 16 Feb 2017 16:41:09 -0500, Matt Harbison wrote: # HG changeset patch # User Matt Harbison # Date 1487087965 18000 # Tue Feb 14 10:59:25 2017 -0500 # Node ID 27a4bc77e8b8e50abc76c387f117082e5853c47e # Parent 4f2862487d789

Re: [PATCH 1 of 2] dispatch: move detection of profiling earlier during startup

2017-02-20 Thread Bryan O'Sullivan
On Fri, Feb 17, 2017 at 4:16 PM, Jun Wu wrote: > This breaks extensions that wraps maybeprofile, namely > fb-hgext/profiling.py which tries to log interactive time. > > That said, I think we could just remove profiling.py as Simon's change is > a > superior solution. > Breaking out-of-tree exten

Re: [PATCH 04 of 10 ipv6 V2] tinyproxy: use IPv6 if HGIPV6 is set to 1

2017-02-20 Thread David Soria Parra
On Fri, Feb 17, 2017 at 10:51:18AM -0800, Jun Wu wrote: > # HG changeset patch > # User Jun Wu > # Date 1487228025 28800 > # Wed Feb 15 22:53:45 2017 -0800 > # Node ID c34ad0f0fc375de9e2d96d17ddcb644d9054d154 > # Parent 5e76ef1698fde7a47fa78003beac71324793d051 > # Available At https://bitbuc

Re: [PATCH] Make test suite more immune to environment variables

2017-02-20 Thread Bryan O'Sullivan
On Mon, Feb 20, 2017 at 9:27 AM, Dr Rainer Woitok wrote: > tests: make test suite more immune to environment variables > Good catch! ___ Mercurial-devel mailing list Mercurial-devel@mercurial-scm.org https://www.mercurial-scm.org/mailman/listinfo/mercu

[PATCH] Make test suite more immune to environment variables

2017-02-20 Thread Dr Rainer Woitok
tests: make test suite more immune to environment variables Plenty of tests break when "make tests" is run while environment variables "HGPLAIN" or "HGPLAINEXCEPT" are set (test "test-obsolete- checkheads.t" is just a single example). This patch causes script "run-tests.py" to also remove these t

[PATCH 1 of 5] txnutil: factor out the logic to read file in according to HG_PENDING

2017-02-20 Thread FUJIWARA Katsunori
# HG changeset patch # User FUJIWARA Katsunori # Date 1487607659 -32400 # Tue Feb 21 01:20:59 2017 +0900 # Node ID a09a59d24e389e291bb2bbf943644d60a9231ce0 # Parent 693a5bb478543a986808264e586073a3ceedc38f txnutil: factor out the logic to read file in according to HG_PENDING This patch adds

[PATCH 2 of 5] tests: make directory to prevent test process from going out of $TESTTMP

2017-02-20 Thread FUJIWARA Katsunori
# HG changeset patch # User FUJIWARA Katsunori # Date 1487607659 -32400 # Tue Feb 21 01:20:59 2017 +0900 # Node ID f2d15208edc48088e9e2e266f5c22b0310c70b2b # Parent a09a59d24e389e291bb2bbf943644d60a9231ce0 tests: make directory to prevent test process from going out of $TESTTMP Before this

[PATCH 3 of 5] bookmarks: check HG_PENDING strictly

2017-02-20 Thread FUJIWARA Katsunori
# HG changeset patch # User FUJIWARA Katsunori # Date 1487607660 -32400 # Tue Feb 21 01:21:00 2017 +0900 # Node ID 27497f44d54a0a0aa0f4efffb3a40c13a552ce83 # Parent f2d15208edc48088e9e2e266f5c22b0310c70b2b bookmarks: check HG_PENDING strictly Before this patch, checking HG_PENDING in bookma

[PATCH 4 of 5] phases: check HG_PENDING strictly

2017-02-20 Thread FUJIWARA Katsunori
# HG changeset patch # User FUJIWARA Katsunori # Date 1487607660 -32400 # Tue Feb 21 01:21:00 2017 +0900 # Node ID f307ed0b262616d31c43eb1e3655a21b1d90865c # Parent 27497f44d54a0a0aa0f4efffb3a40c13a552ce83 phases: check HG_PENDING strictly Before this patch, checking HG_PENDING in phases.py

[PATCH 5 of 5] localrepo: check HG_PENDING strictly

2017-02-20 Thread FUJIWARA Katsunori
# HG changeset patch # User FUJIWARA Katsunori # Date 1487607660 -32400 # Tue Feb 21 01:21:00 2017 +0900 # Node ID 0eebac024d47de9c94968f49bc9a0dcb2c8d3d2b # Parent f307ed0b262616d31c43eb1e3655a21b1d90865c localrepo: check HG_PENDING strictly Before this patch, checking HG_PENDING for chang

Re: [PATCH 3 of 4 V2] serve: make the URL the same for `hg serve` and `hg serve -S`

2017-02-20 Thread Yuya Nishihara
On Thu, 16 Feb 2017 16:41:10 -0500, Matt Harbison wrote: > # HG changeset patch > # User Matt Harbison > # Date 1486877030 18000 > # Sun Feb 12 00:23:50 2017 -0500 > # Node ID 38babd487181374325f3d27c5bc081dadf31b9b9 > # Parent 27a4bc77e8b8e50abc76c387f117082e5853c47e > serve: make the URL t

Re: [PATCH 2 of 4 V2] clone: use the HTTP 301 location to record the default path

2017-02-20 Thread Yuya Nishihara
On Thu, 16 Feb 2017 16:41:09 -0500, Matt Harbison wrote: > # HG changeset patch > # User Matt Harbison > # Date 1487087965 18000 > # Tue Feb 14 10:59:25 2017 -0500 > # Node ID 27a4bc77e8b8e50abc76c387f117082e5853c47e > # Parent 4f2862487d789edc1f36b5687d828a2914e1dc32 > clone: use the HTTP 3

Re: [PATCH 1 of 4 V2] serve: add support for Mercurial subrepositories

2017-02-20 Thread Yuya Nishihara
On Thu, 16 Feb 2017 16:41:08 -0500, Matt Harbison wrote: > # HG changeset patch > # User Matt Harbison > # Date 1486875517 18000 > # Sat Feb 11 23:58:37 2017 -0500 > # Node ID 4f2862487d789edc1f36b5687d828a2914e1dc32 > # Parent afaf3c2b129c8940387fd9928ae4fdc28259d13c > serve: add support fo

Re: [PATCH py3] ui: construct _keepalnum list in a python3-friendly way

2017-02-20 Thread Yuya Nishihara
On Sun, 19 Feb 2017 20:05:50 -0500, Augie Fackler wrote: > > > On Feb 19, 2017, at 9:29 AM, Yuya Nishihara wrote: > > > > On Sat, 18 Feb 2017 22:58:10 +, Martijn Pieters wrote: > >> On 16 Feb 2017, at 16:35, Augie Fackler >> > wrote: > >>> +if pycompat.ispy3: > >>>

RE: [PATCH 3 of 4 V3] update: also suggest --merge when non-linear update is aborted

2017-02-20 Thread Gábor STEFANIK
> -- This message, including its attachments, is confidential. For more information please read NNG's email policy here: http://www.nng.com/emailpolicy/ By responding to this email you accept the email policy. -Origi

[PATCH] repoview: separate cache hash computation from cache reading

2017-02-20 Thread Stanislau Hlebik
# HG changeset patch # User Stanislau Hlebik # Date 1487584447 28800 # Mon Feb 20 01:54:07 2017 -0800 # Node ID cb1151ce14f7ec9e2ca991bc8bd590020ec4b061 # Parent 693a5bb478543a986808264e586073a3ceedc38f repoview: separate cache hash computation from cache reading This change will make it ea

Re: RFC: bitmap storage for precursors and phases

2017-02-20 Thread Stanislau Hlebik
Excerpts from Augie Fackler's message of 2017-02-19 21:06:53 -0500: > On Fri, Feb 17, 2017 at 09:59:48PM +, Stanislau Hlebik wrote: > > Excerpts from Bryan O'Sullivan's message of 2017-02-17 13:29:58 -0800: > > > On Fri, Feb 17, 2017 at 10:30 AM, Jun Wu wrote: > > > > > > > Excerpts from Stani

Re: [PATCH 2 of 2 pager-tweaks] dispatch: consolidate pager flag handling to a single place

2017-02-20 Thread Martin von Zweigbergk via Mercurial-devel
On Sun, Feb 19, 2017 at 5:19 PM, Augie Fackler wrote: > # HG changeset patch > # User Augie Fackler > # Date 1487553371 18000 > # Sun Feb 19 20:16:11 2017 -0500 > # Node ID 86a8d5ba8a05485fa1f90927c41ead4e7bb84b54 > # Parent 147cbbe59b257eac92c779361894ae361a788f83 > dispatch: consolidate p