D4929: cmdutil: sort unresolved paths

2018-10-09 Thread indygreg (Gregory Szorc)
This revision was automatically updated to reflect the committed changes. Closed by commit rHG57500950f40e: cmdutil: sort unresolved paths (authored by indygreg, committed by ). REPOSITORY rHG Mercurial CHANGES SINCE LAST UPDATE https://phab.mercurial-scm.org/D4929?vs=11771=11773 REVISION

D4930: context: fix typo in introrev()

2018-10-09 Thread yuja (Yuya Nishihara)
yuja added a comment. > I didn't think about it while queuing this code, but I'm pretty sure > it's supposed to be "has stop rev", not "has top rev". I think "top rev" is correct since we'll walk down from the changeset revision. REPOSITORY rHG Mercurial REVISION DETAIL

Re: [PATCH 1 of 5] tests: import multiple modules separately

2018-10-09 Thread Yuya Nishihara
On Tue, 09 Oct 2018 02:34:36 +0900, FUJIWARA Katsunori wrote: > # HG changeset patch > # User FUJIWARA Katsunori > # Date 1534994441 -32400 > # Thu Aug 23 12:20:41 2018 +0900 > # Node ID fe5486e76d2610bdd20837b487deb3f0a9a2d820 > # Parent 1d09ba0d2ed3d19f1ca1b116591cc413eb87ac65 > #

Re: [PATCH 3 of 5] contrib: add an utility module to parse test scripts

2018-10-09 Thread Yuya Nishihara
On Tue, 09 Oct 2018 02:34:38 +0900, FUJIWARA Katsunori wrote: > # HG changeset patch > # User FUJIWARA Katsunori > # Date 1534994754 -32400 > # Thu Aug 23 12:25:54 2018 +0900 > # Node ID 92d0e6f411c72800b59adafccf50ac0b0d15ba17 > # Parent ecf28733d6b95c39068d7f593c0b9a98a068509f > #

Re: [PATCH 1 of 2] revlog: explicitly initialize static variables

2018-10-09 Thread Gregory Szorc
On Tue, Oct 9, 2018 at 6:00 AM Yuya Nishihara wrote: > # HG changeset patch > # User Yuya Nishihara > # Date 1539038525 -32400 > # Tue Oct 09 07:42:05 2018 +0900 > # Node ID fec6a0498695298ec0507a76cd26334794da93be > # Parent 8a08aefa9273e6f328f238e4793f9a43f314e471 > revlog: explicitly

[PATCH 2 of 6 V2] rust: iterator bindings to C code

2018-10-09 Thread Georges Racinet
# HG changeset patch # User Georges Racinet # Date 1538059896 -7200 # Thu Sep 27 16:51:36 2018 +0200 # Node ID 81b8781de6fad514634713fa2cb9f10c320d1af3 # Parent e466b892b487a2f258fe2000c76a9e916c7344d8 # EXP-Topic rustancestors-rfc rust: iterator bindings to C code In this changeset, still

[PATCH 5 of 6 V2] rust: making runnable without LD_LIBRARY_PATH

2018-10-09 Thread Georges Racinet
# HG changeset patch # User Georges Racinet # Date 1538059603 -7200 # Thu Sep 27 16:46:43 2018 +0200 # Node ID c5b4c3dd622ec7636eb78211b06cf86bb547444f # Parent 210cd79d35d50e989a7eabbcebb4addde9365f9e # EXP-Topic rustancestors-rfc rust: making runnable without LD_LIBRARY_PATH Building the

[PATCH 4 of 6 V2] rust: hooking into Python code

2018-10-09 Thread Georges Racinet
# HG changeset patch # User Georges Racinet # Date 1538060144 -7200 # Thu Sep 27 16:55:44 2018 +0200 # Node ID 210cd79d35d50e989a7eabbcebb4addde9365f9e # Parent cf5c799e65a1225538fa1246887e2efd94c09acc # EXP-Topic rustancestors-rfc rust: hooking into Python code We introduce a new class

[PATCH 6 of 6 V2] rust: rustlazyancestors.__contains__

2018-10-09 Thread Georges Racinet
# HG changeset patch # User Georges Racinet # Date 1539018701 -7200 # Mon Oct 08 19:11:41 2018 +0200 # Node ID 28fdd7b9c08ebb8bdd692f5d6f6dd4b94dbd40b5 # Parent c5b4c3dd622ec7636eb78211b06cf86bb547444f # EXP-Topic rustancestors-contains rust: rustlazyancestors.__contains__ This changeset

Re: [PATCH 1 of 6 V2] rust: pure Rust lazyancestors iterator

2018-10-09 Thread Georges Racinet
On 10/9/18 5:22 PM, Georges Racinet wrote: > # HG changeset patch > # User Georges Racinet > # Date 1538060596 -7200 > # Thu Sep 27 17:03:16 2018 +0200 > # Node ID e466b892b487a2f258fe2000c76a9e916c7344d8 > # Parent a66594c5fad422499bfaf669d182e02fe3c0be32 > # EXP-Topic rustancestors-rfc >

[PATCH 2 of 2] fuzz: report error if Python code raised exception

2018-10-09 Thread Yuya Nishihara
# HG changeset patch # User Yuya Nishihara # Date 1539038761 -32400 # Tue Oct 09 07:46:01 2018 +0900 # Node ID 5f7fc2ed2431c3ea50daa3ffedb9d9698c7fe53f # Parent fec6a0498695298ec0507a76cd26334794da93be fuzz: report error if Python code raised exception I think that's what we wanted to do,

[PATCH 1 of 2] revlog: explicitly initialize static variables

2018-10-09 Thread Yuya Nishihara
# HG changeset patch # User Yuya Nishihara # Date 1539038525 -32400 # Tue Oct 09 07:42:05 2018 +0900 # Node ID fec6a0498695298ec0507a76cd26334794da93be # Parent 8a08aefa9273e6f328f238e4793f9a43f314e471 revlog: explicitly initialize static variables I know .bss section is zero-filled, but

D4928: sqlitestore: file storage backend using SQLite (RFC)

2018-10-09 Thread indygreg (Gregory Szorc)
indygreg created this revision. Herald added subscribers: mercurial-devel, mjpieters. Herald added a reviewer: hg-reviewers. REVISION SUMMARY DON'T LAND. STILL EXPERIMENTAL. This commit provides an extension which uses SQLite to store file data (as opposed to revlogs). As the inline

[PATCH 1 of 6 V2] rust: pure Rust lazyancestors iterator

2018-10-09 Thread Georges Racinet
# HG changeset patch # User Georges Racinet # Date 1538060596 -7200 # Thu Sep 27 17:03:16 2018 +0200 # Node ID e466b892b487a2f258fe2000c76a9e916c7344d8 # Parent a66594c5fad422499bfaf669d182e02fe3c0be32 # EXP-Topic rustancestors-rfc rust: pure Rust lazyancestors iterator This is the first

[PATCH 3 of 6 V2] rust: exposing in parsers module

2018-10-09 Thread Georges Racinet
# HG changeset patch # User Georges Racinet # Date 1538060175 -7200 # Thu Sep 27 16:56:15 2018 +0200 # Node ID cf5c799e65a1225538fa1246887e2efd94c09acc # Parent 81b8781de6fad514634713fa2cb9f10c320d1af3 # EXP-Topic rustancestors-rfc rust: exposing in parsers module To build with the Rust

D4909: tests: deal with differences in tic from ncurses and NetBSD

2018-10-09 Thread joerg.sonnenberger (Joerg Sonnenberger)
This revision was automatically updated to reflect the committed changes. Closed by commit rHG34d9846023e6: tests: deal with differences in tic from ncurses and NetBSD (authored by joerg.sonnenberger, committed by ). REPOSITORY rHG Mercurial CHANGES SINCE LAST UPDATE

D4908: extensions: fix close-head -r listification

2018-10-09 Thread joerg.sonnenberger (Joerg Sonnenberger)
This revision was automatically updated to reflect the committed changes. Closed by commit rHG12a72729678e: closehead: fix close-head -r listification (authored by joerg.sonnenberger, committed by ). REPOSITORY rHG Mercurial CHANGES SINCE LAST UPDATE

D4910: tests: do not change sys.path, it can break loading cext.parsers

2018-10-09 Thread joerg.sonnenberger (Joerg Sonnenberger)
This revision was automatically updated to reflect the committed changes. Closed by commit rHG8a08aefa9273: tests: do not change sys.path, it can break loading cext.parsers (authored by joerg.sonnenberger, committed by ). CHANGED PRIOR TO COMMIT

D4876: amend: add config to skip amend if only date is changed (issue5828)

2018-10-09 Thread yuja (Yuya Nishihara)
yuja added a comment. > I should be easy to introduce such an option and make amend respect it (similar amount of code as this patch), so I'd just like to hear if others think it's a good idea first. If others agree with it, then it seems better to introduce the generic option right away.

Re: D4876: amend: add config to skip amend if only date is changed (issue5828)

2018-10-09 Thread Yuya Nishihara
> I should be easy to introduce such an option and make amend respect it > (similar amount of code as this patch), so I'd just like to hear if others > think it's a good idea first. If others agree with it, then it seems better > to introduce the generic option right away. I can't/won't

Re: [PATCH 3 of 5] contrib: add an utility module to parse test scripts

2018-10-09 Thread FUJIWARA Katsunori
At Tue, 9 Oct 2018 21:02:04 +0900, Yuya Nishihara wrote: > > On Tue, 09 Oct 2018 02:34:38 +0900, FUJIWARA Katsunori wrote: > > # HG changeset patch > > # User FUJIWARA Katsunori > > # Date 1534994754 -32400 > > # Thu Aug 23 12:25:54 2018 +0900 > > # Node ID

Re: D4930: context: fix typo in introrev()

2018-10-09 Thread Yuya Nishihara
> I didn't think about it while queuing this code, but I'm pretty sure > it's supposed to be "has stop rev", not "has top rev". I think "top rev" is correct since we'll walk down from the changeset revision. ___ Mercurial-devel mailing list

Re: [PATCH 08 of 10 V4] context: floor adjustlinkrev graph walk during copy tracing

2018-10-09 Thread Martin von Zweigbergk via Mercurial-devel
On Tue, Oct 9, 2018 at 12:00 PM Boris FELD wrote: > > On 04/10/2018 19:23, Martin von Zweigbergk via Mercurial-devel wrote: > > > > On Thu, Oct 4, 2018 at 7:44 AM Boris Feld wrote: > >> # HG changeset patch >> # User Boris Feld >> # Date 1536255188 14400 >> # Thu Sep 06 13:33:08 2018

D4930: context: fix typo in introrev()

2018-10-09 Thread martinvonz (Martin von Zweigbergk)
martinvonz added a comment. In https://phab.mercurial-scm.org/D4930#74270, @yuja wrote: > > I didn't think about it while queuing this code, but I'm pretty sure > > it's supposed to be "has stop rev", not "has top rev". > > I think "top rev" is correct since we'll walk down from

Re: [PATCH 08 of 10 V4] context: floor adjustlinkrev graph walk during copy tracing

2018-10-09 Thread Boris FELD
On 04/10/2018 19:23, Martin von Zweigbergk via Mercurial-devel wrote: > > > On Thu, Oct 4, 2018 at 7:44 AM Boris Feld > wrote: > > # HG changeset patch > # User Boris Feld > > # Date 1536255188 14400 > #      Thu

D4930: context: fix typo in introrev()

2018-10-09 Thread martinvonz (Martin von Zweigbergk)
martinvonz created this revision. Herald added a subscriber: mercurial-devel. Herald added a reviewer: hg-reviewers. REVISION SUMMARY I didn't think about it while queuing this code, but I'm pretty sure it's supposed to be "has stop rev", not "has top rev". REPOSITORY rHG Mercurial

D4929: cmdutil: sort unresolved paths

2018-10-09 Thread indygreg (Gregory Szorc)
indygreg created this revision. Herald added a subscriber: mercurial-devel. Herald added a reviewer: hg-reviewers. REVISION SUMMARY I noticed that `hg status` was printing unresolved paths in a non-deterministic order. This patch fixes that. I'm not sure if the sorting should be done in

[PATCH 6 of 6] packaging: "make deb" no longer fails

2018-10-09 Thread Antonio Muci via Mercurial-devel
# HG changeset patch # User muxator # Date 1539116950 -7200 # Tue Oct 09 22:29:10 2018 +0200 # Node ID 5d892da53728de160568a72a37dda9abcf1f7e9a # Parent 4d7d83159122473ab69f9b9c16fab69d10232d78 packaging: "make deb" no longer fails Release 4.7 rationalized the layout of the build scripts.

[PATCH 4 of 6] packaging: builddeb's cleanup needs to expand PWD, safely

2018-10-09 Thread Antonio Muci via Mercurial-devel
# HG changeset patch # User muxator # Date 1539116315 -7200 # Tue Oct 09 22:18:35 2018 +0200 # Node ID 374fcdd01ef6b813d578d865eaccb94d3cda5dc8 # Parent 186a840796aae2aa48ca5228fc7225779e3e0ee9 packaging: builddeb's cleanup needs to expand PWD, safely Single quotes would not expand the

[PATCH 1 of 6] packaging: print more specific error messages when builddeb fails

2018-10-09 Thread Antonio Muci via Mercurial-devel
# HG changeset patch # User muxator # Date 1539113979 -7200 # Tue Oct 09 21:39:39 2018 +0200 # Node ID 42d6233230fb917da7f53f181f29b4c4c209b65e # Parent a66594c5fad422499bfaf669d182e02fe3c0be32 packaging: print more specific error messages when builddeb fails diff --git

[PATCH 2 of 6] packaging: print full path to the packages when builddeb finishes successfully

2018-10-09 Thread Antonio Muci via Mercurial-devel
# HG changeset patch # User muxator # Date 1539114049 -7200 # Tue Oct 09 21:40:49 2018 +0200 # Node ID f774dfa1595d4935879d2abbb8b4c802d8af0c65 # Parent 42d6233230fb917da7f53f181f29b4c4c209b65e packaging: print full path to the packages when builddeb finishes successfully diff --git

[PATCH 3 of 6] packaging: blindly factor out trap's cleanup function in builddeb

2018-10-09 Thread Antonio Muci via Mercurial-devel
# HG changeset patch # User muxator # Date 1539116185 -7200 # Tue Oct 09 22:16:25 2018 +0200 # Node ID 186a840796aae2aa48ca5228fc7225779e3e0ee9 # Parent f774dfa1595d4935879d2abbb8b4c802d8af0c65 packaging: blindly factor out trap's cleanup function in builddeb This commit blindly extracts

[PATCH 5 of 6] packaging: cleanup() did not read the value of $CLEANUP

2018-10-09 Thread Antonio Muci via Mercurial-devel
# HG changeset patch # User muxator # Date 1539116678 -7200 # Tue Oct 09 22:24:38 2018 +0200 # Node ID 4d7d83159122473ab69f9b9c16fab69d10232d78 # Parent 374fcdd01ef6b813d578d865eaccb94d3cda5dc8 packaging: cleanup() did not read the value of $CLEANUP When the original author put CLEANUP in