[Bug 6473] New: __index__.py is generated with str instead of bytes

2021-01-24 Thread mercurial-bugs
https://bz.mercurial-scm.org/show_bug.cgi?id=6473 Bug ID: 6473 Summary: __index__.py is generated with str instead of bytes Product: Mercurial Version: 5.7rc0 Hardware: All OS: All Status: UNCONFIRMED

D9858: contrib: update PyOxidizer to 0.10.3

2021-01-24 Thread indygreg (Gregory Szorc)
indygreg created this revision. Herald added a reviewer: hg-reviewers. Herald added a subscriber: mercurial-patches. REVISION SUMMARY This is necessary to work around a bug that caused build failures on current stable with 0.9.0. This patch was used to build the 5.7rc0 Windows installers.

D9856: packaging: allow specifying modules to include with py2exe

2021-01-24 Thread mharbison72 (Matt Harbison)
mharbison72 created this revision. Herald added a reviewer: hg-reviewers. Herald added a subscriber: mercurial-patches. REVISION SUMMARY Maybe this was missing because there wasn't a need for it. REPOSITORY rHG Mercurial BRANCH stable REVISION DETAIL

D9857: packaging: include `windows_curses` when building py2exe

2021-01-24 Thread mharbison72 (Matt Harbison)
mharbison72 created this revision. Herald added a reviewer: hg-reviewers. Herald added a subscriber: mercurial-patches. REVISION SUMMARY The `_curses.pyd` module was previously being included by py2exe's module search, but it left out `_curses_panel.pyd`. REPOSITORY rHG Mercurial BRANCH

Re: Getting the revisions of .hgtags programatically

2021-01-24 Thread Joerg Sonnenberger
On Sun, Jan 24, 2021 at 10:59:30PM +, Roy Marples wrote: > On 24/01/2021 22:50, Joerg Sonnenberger wrote: > > On Sun, Jan 24, 2021 at 10:16:46PM +, Roy Marples wrote: > > > Hi Joerg > > > > > > On 24/01/2021 22:03, Joerg Sonnenberger wrote: > > > > Hello Roy, > > > > isn't repo.tagslist()

Re: Getting the revisions of .hgtags programatically

2021-01-24 Thread Georges Racinet
On 1/24/21 11:16 PM, Roy Marples via Mercurial-devel wrote: > Hi Joerg > > On 24/01/2021 22:03, Joerg Sonnenberger wrote: >> Hello Roy, >> isn't repo.tagslist() (and maybe filtering out local tags) already doing >> what you want? > > It is sort of. I use it to get a list of tag and yes, I filter

Re: Getting the revisions of .hgtags programatically

2021-01-24 Thread Roy Marples via Mercurial-devel
On 24/01/2021 22:50, Joerg Sonnenberger wrote: On Sun, Jan 24, 2021 at 10:16:46PM +, Roy Marples wrote: Hi Joerg On 24/01/2021 22:03, Joerg Sonnenberger wrote: Hello Roy, isn't repo.tagslist() (and maybe filtering out local tags) already doing what you want? It is sort of. I use it to

Re: Getting the revisions of .hgtags programatically

2021-01-24 Thread Joerg Sonnenberger
On Sun, Jan 24, 2021 at 10:16:46PM +, Roy Marples wrote: > Hi Joerg > > On 24/01/2021 22:03, Joerg Sonnenberger wrote: > > Hello Roy, > > isn't repo.tagslist() (and maybe filtering out local tags) already doing > > what you want? > > It is sort of. I use it to get a list of tag and yes, I

Re: Getting the revisions of .hgtags programatically

2021-01-24 Thread Roy Marples via Mercurial-devel
Hi Joerg On 24/01/2021 22:03, Joerg Sonnenberger wrote: Hello Roy, isn't repo.tagslist() (and maybe filtering out local tags) already doing what you want? It is sort of. I use it to get a list of tag and yes, I filter out non globals already. However, it only returns the revision tagged with

mercurial@46352: 10 new changesets (10 on stable)

2021-01-24 Thread Mercurial Commits
10 new changesets (10 on stable) in mercurial: https://www.mercurial-scm.org/repo/hg/rev/47b11629a0f2 changeset: 46343:47b11629a0f2 branch: stable user:Matt Harbison date:Wed Jan 20 00:40:41 2021 -0500 summary: tests: skip a detailed exit status in test-lfs-test-server

Re: Getting the revisions of .hgtags programatically

2021-01-24 Thread Joerg Sonnenberger
Hello Roy, isn't repo.tagslist() (and maybe filtering out local tags) already doing what you want? Joerg On Sat, Jan 23, 2021 at 01:56:52AM +, Roy Marples via Mercurial-devel wrote: > Hi List > > I'm working on added tag support to the fastexport extension. > I have little idea about the

Re: Getting the revisions of .hgtags programatically

2021-01-24 Thread Roy Marples via Mercurial-devel
On 24/01/2021 20:08, Pierre-Yves David wrote: Just a small note: Finding the revision introducing a tag is not that simple… because: 1) they might be multiple of them 2) merge "introduce" tags without being their first appearance. So you best bet is probably to walk history of the .hgtags

mercurial@46342: new changeset (1 on stable)

2021-01-24 Thread Mercurial Commits
New changeset (1 on stable) in mercurial: https://www.mercurial-scm.org/repo/hg/rev/c4787ea85cc7 changeset: 46342:c4787ea85cc7 branch: stable tag: tip parent: 46340:7e44d5ca2a2f user:Joerg Sonnenberger date:Wed Jan 20 14:57:56 2021 +0100 summary: tests:

Re: Getting the revisions of .hgtags programatically

2021-01-24 Thread Pierre-Yves David
Just a small note: Finding the revision introducing a tag is not that simple… because: 1) they might be multiple of them 2) merge "introduce" tags without being their first appearance. So you best bet is probably to walk history of the .hgtags revlogs (which might be what your are suggesting)