Sat Aug 3 08:30:05 2013 UTC ()
Update to 2.7:

Mercurial 2.7 (2013-08-01)

Regularly scheduled feature release. This release contains an
important fix for a merge ancestor calculation regression in the
2.6 series.

    ancestor: decrement ninteresting correctly (issue3984)
    bookmarks: allow bookmark command to take multiple arguments
    bookmarks: pull --update updates to active bookmark if it moved (issue4007)
    bookmarks: update only proper bookmarks on push -r/-B (issue 3973)
    changegroup: fix fastpath during commit
    checklink: work around sshfs brain-damage (issue3636)
    churn: split email aliases from the right
    commands: add checks for unfinished operations (issue3955)
    commit: enable --secret option
    convert: catch empty origpaths in svn gettags (issue3941)
    convert: fix bad conversion of copies when hg.startrev is specified
    convert: handle changeset sorting errors without traceback (issue3961)
    hgweb: fix incorrect way to count revisions in log (issue3977)
    hgweb: run search instead of showing wrong error for ambigious identifier
    histedit: don't clobber working copy on --abort if not on histedit cset
    histedit: refuse to edit history that contains merges (issue3962)
    import: cut commit messages at --- unconditionally (issue2148)
    largefiles: overridematch() should replace the file path instead of extending (issue3934)
    log: add a log style that is default+phase (issue3436)
    paper: add line wrapping switch to file source view
    paper: code selection without line numbers in file source view
    paper: highlight line which is linked to in source view
    progress: respect HGPLAIN
    rebase: allow aborting when descendants detected
    rebase: continue abort without strip for immutable csets (issue3997)
    rebase: don't clobber wd on --abort when we've updated away (issue4009)
    revert: make backup when unforgetting a file (issue3423)
    revlog: handle hidden revs in _partialmatch (issue3979)
    rollback: mark as deprecated
    splicemap: improve error handling when parsing (issue2084)
    splicemap: support paths with spaces in splicemap (issue3844)
    sslutil: force SSLv3 on Python 2.6 and later (issue3905)
    summary: augment output with info from extensions
    templater: add strip function with chars as an extra argument
    log: show style list when unknown style specified
    tip: deprecate the tip command
    update: add tracking of interrupted updates (issue3113)
    worker: check problem state correctly (issue3982)
    worker: properly report errors from worker processes (issue3982)


(wiz)
diff -r1.91 -r1.92 pkgsrc/devel/mercurial/Makefile
diff -r1.34 -r1.35 pkgsrc/devel/mercurial/PLIST
diff -r1.76 -r1.77 pkgsrc/devel/mercurial/distinfo

cvs diff -r1.91 -r1.92 pkgsrc/devel/mercurial/Makefile (switch to unified diff)

--- pkgsrc/devel/mercurial/Makefile 2013/07/02 06:36:27 1.91
+++ pkgsrc/devel/mercurial/Makefile 2013/08/03 08:30:05 1.92
@@ -1,33 +1,33 @@ @@ -1,33 +1,33 @@
1# $NetBSD: Makefile,v 1.91 2013/07/02 06:36:27 wiz Exp $ 1# $NetBSD: Makefile,v 1.92 2013/08/03 08:30:05 wiz Exp $
2 2
3DISTNAME= mercurial-2.6.3 3DISTNAME= mercurial-2.7
4CATEGORIES= devel scm 4CATEGORIES= devel scm
5MASTER_SITES= http://mercurial.selenic.com/release/ 5MASTER_SITES= http://mercurial.selenic.com/release/
6 6
7MAINTAINER= wiz@NetBSD.org 7MAINTAINER= wiz@NetBSD.org
8HOMEPAGE= http://mercurial.selenic.com/ 8HOMEPAGE= http://mercurial.selenic.com/
9COMMENT= Fast, lightweight source control management system 9COMMENT= Fast, lightweight source control management system
10LICENSE= gnu-gpl-v2 OR gnu-gpl-v3 # OR newer 10LICENSE= gnu-gpl-v2 OR gnu-gpl-v3 # OR newer
11 11
12BUILD_DEPENDS+= xmlto-[0-9]*:../../textproc/xmlto 12BUILD_DEPENDS+= xmlto-[0-9]*:../../textproc/xmlto
13BUILD_DEPENDS+= asciidoc-[0-9]*:../../textproc/asciidoc 13BUILD_DEPENDS+= asciidoc-[0-9]*:../../textproc/asciidoc
14 14
15USE_TOOLS+= gmake msgfmt 15USE_TOOLS+= gmake msgfmt
16 16
17INSTALLATION_DIRS= bin ${PKGMANDIR}/man1 ${PKGMANDIR}/man5 17INSTALLATION_DIRS= bin ${PKGMANDIR}/man1 ${PKGMANDIR}/man5
18INSTALLATION_DIRS+= share/doc/mercurial 18INSTALLATION_DIRS+= share/doc/mercurial
19 19
20post-install: 20post-install:
21 ${INSTALL_DATA} ${WRKSRC}/doc/*.1 ${DESTDIR}${PREFIX}/${PKGMANDIR}/man1 21 ${INSTALL_DATA} ${WRKSRC}/doc/*.1 ${DESTDIR}${PREFIX}/${PKGMANDIR}/man1
22 ${INSTALL_DATA} ${WRKSRC}/doc/*.5 ${DESTDIR}${PREFIX}/${PKGMANDIR}/man5 22 ${INSTALL_DATA} ${WRKSRC}/doc/*.5 ${DESTDIR}${PREFIX}/${PKGMANDIR}/man5
23 ${INSTALL_DATA} ${WRKSRC}/README \ 23 ${INSTALL_DATA} ${WRKSRC}/README \
24 ${DESTDIR}${PREFIX}/share/doc/mercurial 24 ${DESTDIR}${PREFIX}/share/doc/mercurial
25 25
26.include "../../mk/bsd.prefs.mk" 26.include "../../mk/bsd.prefs.mk"
27 27
28.if ${OPSYS} == "Linux" && empty(OS_VERSION:M2.4.*) && empty(OS_VERSION:M2.2.*) 28.if ${OPSYS} == "Linux" && empty(OS_VERSION:M2.4.*) && empty(OS_VERSION:M2.2.*)
29PLIST_SRC+= ${.CURDIR}/PLIST ${.CURDIR}/PLIST.inotify 29PLIST_SRC+= ${.CURDIR}/PLIST ${.CURDIR}/PLIST.inotify
30.endif 30.endif
31 31
32.include "../../lang/python/distutils.mk" 32.include "../../lang/python/distutils.mk"
33.include "../../mk/bsd.pkg.mk" 33.include "../../mk/bsd.pkg.mk"

cvs diff -r1.34 -r1.35 pkgsrc/devel/mercurial/Attic/PLIST (switch to unified diff)

--- pkgsrc/devel/mercurial/Attic/PLIST 2013/05/03 21:26:14 1.34
+++ pkgsrc/devel/mercurial/Attic/PLIST 2013/08/03 08:30:05 1.35
@@ -1,696 +1,704 @@ @@ -1,696 +1,704 @@
1@comment $NetBSD: PLIST,v 1.34 2013/05/03 21:26:14 wiz Exp $ 1@comment $NetBSD: PLIST,v 1.35 2013/08/03 08:30:05 wiz Exp $
2bin/hg 2bin/hg
3${PYSITELIB}/hgext/__init__.py 3${PYSITELIB}/hgext/__init__.py
4${PYSITELIB}/hgext/__init__.pyc 4${PYSITELIB}/hgext/__init__.pyc
5${PYSITELIB}/hgext/__init__.pyo 5${PYSITELIB}/hgext/__init__.pyo
6${PYSITELIB}/hgext/acl.py 6${PYSITELIB}/hgext/acl.py
7${PYSITELIB}/hgext/acl.pyc 7${PYSITELIB}/hgext/acl.pyc
8${PYSITELIB}/hgext/acl.pyo 8${PYSITELIB}/hgext/acl.pyo
9${PYSITELIB}/hgext/blackbox.py 9${PYSITELIB}/hgext/blackbox.py
10${PYSITELIB}/hgext/blackbox.pyc 10${PYSITELIB}/hgext/blackbox.pyc
11${PYSITELIB}/hgext/blackbox.pyo 11${PYSITELIB}/hgext/blackbox.pyo
12${PYSITELIB}/hgext/bugzilla.py 12${PYSITELIB}/hgext/bugzilla.py
13${PYSITELIB}/hgext/bugzilla.pyc 13${PYSITELIB}/hgext/bugzilla.pyc
14${PYSITELIB}/hgext/bugzilla.pyo 14${PYSITELIB}/hgext/bugzilla.pyo
15${PYSITELIB}/hgext/children.py 15${PYSITELIB}/hgext/children.py
16${PYSITELIB}/hgext/children.pyc 16${PYSITELIB}/hgext/children.pyc
17${PYSITELIB}/hgext/children.pyo 17${PYSITELIB}/hgext/children.pyo
18${PYSITELIB}/hgext/churn.py 18${PYSITELIB}/hgext/churn.py
19${PYSITELIB}/hgext/churn.pyc 19${PYSITELIB}/hgext/churn.pyc
20${PYSITELIB}/hgext/churn.pyo 20${PYSITELIB}/hgext/churn.pyo
21${PYSITELIB}/hgext/color.py 21${PYSITELIB}/hgext/color.py
22${PYSITELIB}/hgext/color.pyc 22${PYSITELIB}/hgext/color.pyc
23${PYSITELIB}/hgext/color.pyo 23${PYSITELIB}/hgext/color.pyo
24${PYSITELIB}/hgext/convert/__init__.py 24${PYSITELIB}/hgext/convert/__init__.py
25${PYSITELIB}/hgext/convert/__init__.pyc 25${PYSITELIB}/hgext/convert/__init__.pyc
26${PYSITELIB}/hgext/convert/__init__.pyo 26${PYSITELIB}/hgext/convert/__init__.pyo
27${PYSITELIB}/hgext/convert/bzr.py 27${PYSITELIB}/hgext/convert/bzr.py
28${PYSITELIB}/hgext/convert/bzr.pyc 28${PYSITELIB}/hgext/convert/bzr.pyc
29${PYSITELIB}/hgext/convert/bzr.pyo 29${PYSITELIB}/hgext/convert/bzr.pyo
30${PYSITELIB}/hgext/convert/common.py 30${PYSITELIB}/hgext/convert/common.py
31${PYSITELIB}/hgext/convert/common.pyc 31${PYSITELIB}/hgext/convert/common.pyc
32${PYSITELIB}/hgext/convert/common.pyo 32${PYSITELIB}/hgext/convert/common.pyo
33${PYSITELIB}/hgext/convert/convcmd.py 33${PYSITELIB}/hgext/convert/convcmd.py
34${PYSITELIB}/hgext/convert/convcmd.pyc 34${PYSITELIB}/hgext/convert/convcmd.pyc
35${PYSITELIB}/hgext/convert/convcmd.pyo 35${PYSITELIB}/hgext/convert/convcmd.pyo
36${PYSITELIB}/hgext/convert/cvs.py 36${PYSITELIB}/hgext/convert/cvs.py
37${PYSITELIB}/hgext/convert/cvs.pyc 37${PYSITELIB}/hgext/convert/cvs.pyc
38${PYSITELIB}/hgext/convert/cvs.pyo 38${PYSITELIB}/hgext/convert/cvs.pyo
39${PYSITELIB}/hgext/convert/cvsps.py 39${PYSITELIB}/hgext/convert/cvsps.py
40${PYSITELIB}/hgext/convert/cvsps.pyc 40${PYSITELIB}/hgext/convert/cvsps.pyc
41${PYSITELIB}/hgext/convert/cvsps.pyo 41${PYSITELIB}/hgext/convert/cvsps.pyo
42${PYSITELIB}/hgext/convert/darcs.py 42${PYSITELIB}/hgext/convert/darcs.py
43${PYSITELIB}/hgext/convert/darcs.pyc 43${PYSITELIB}/hgext/convert/darcs.pyc
44${PYSITELIB}/hgext/convert/darcs.pyo 44${PYSITELIB}/hgext/convert/darcs.pyo
45${PYSITELIB}/hgext/convert/filemap.py 45${PYSITELIB}/hgext/convert/filemap.py
46${PYSITELIB}/hgext/convert/filemap.pyc 46${PYSITELIB}/hgext/convert/filemap.pyc
47${PYSITELIB}/hgext/convert/filemap.pyo 47${PYSITELIB}/hgext/convert/filemap.pyo
48${PYSITELIB}/hgext/convert/git.py 48${PYSITELIB}/hgext/convert/git.py
49${PYSITELIB}/hgext/convert/git.pyc 49${PYSITELIB}/hgext/convert/git.pyc
50${PYSITELIB}/hgext/convert/git.pyo 50${PYSITELIB}/hgext/convert/git.pyo
51${PYSITELIB}/hgext/convert/gnuarch.py 51${PYSITELIB}/hgext/convert/gnuarch.py
52${PYSITELIB}/hgext/convert/gnuarch.pyc 52${PYSITELIB}/hgext/convert/gnuarch.pyc
53${PYSITELIB}/hgext/convert/gnuarch.pyo 53${PYSITELIB}/hgext/convert/gnuarch.pyo
54${PYSITELIB}/hgext/convert/hg.py 54${PYSITELIB}/hgext/convert/hg.py
55${PYSITELIB}/hgext/convert/hg.pyc 55${PYSITELIB}/hgext/convert/hg.pyc
56${PYSITELIB}/hgext/convert/hg.pyo 56${PYSITELIB}/hgext/convert/hg.pyo
57${PYSITELIB}/hgext/convert/monotone.py 57${PYSITELIB}/hgext/convert/monotone.py
58${PYSITELIB}/hgext/convert/monotone.pyc 58${PYSITELIB}/hgext/convert/monotone.pyc
59${PYSITELIB}/hgext/convert/monotone.pyo 59${PYSITELIB}/hgext/convert/monotone.pyo
60${PYSITELIB}/hgext/convert/p4.py 60${PYSITELIB}/hgext/convert/p4.py
61${PYSITELIB}/hgext/convert/p4.pyc 61${PYSITELIB}/hgext/convert/p4.pyc
62${PYSITELIB}/hgext/convert/p4.pyo 62${PYSITELIB}/hgext/convert/p4.pyo
63${PYSITELIB}/hgext/convert/subversion.py 63${PYSITELIB}/hgext/convert/subversion.py
64${PYSITELIB}/hgext/convert/subversion.pyc 64${PYSITELIB}/hgext/convert/subversion.pyc
65${PYSITELIB}/hgext/convert/subversion.pyo 65${PYSITELIB}/hgext/convert/subversion.pyo
66${PYSITELIB}/hgext/convert/transport.py 66${PYSITELIB}/hgext/convert/transport.py
67${PYSITELIB}/hgext/convert/transport.pyc 67${PYSITELIB}/hgext/convert/transport.pyc
68${PYSITELIB}/hgext/convert/transport.pyo 68${PYSITELIB}/hgext/convert/transport.pyo
69${PYSITELIB}/hgext/eol.py 69${PYSITELIB}/hgext/eol.py
70${PYSITELIB}/hgext/eol.pyc 70${PYSITELIB}/hgext/eol.pyc
71${PYSITELIB}/hgext/eol.pyo 71${PYSITELIB}/hgext/eol.pyo
72${PYSITELIB}/hgext/extdiff.py 72${PYSITELIB}/hgext/extdiff.py
73${PYSITELIB}/hgext/extdiff.pyc 73${PYSITELIB}/hgext/extdiff.pyc
74${PYSITELIB}/hgext/extdiff.pyo 74${PYSITELIB}/hgext/extdiff.pyo
75${PYSITELIB}/hgext/factotum.py 75${PYSITELIB}/hgext/factotum.py
76${PYSITELIB}/hgext/factotum.pyc 76${PYSITELIB}/hgext/factotum.pyc
77${PYSITELIB}/hgext/factotum.pyo 77${PYSITELIB}/hgext/factotum.pyo
78${PYSITELIB}/hgext/fetch.py 78${PYSITELIB}/hgext/fetch.py
79${PYSITELIB}/hgext/fetch.pyc 79${PYSITELIB}/hgext/fetch.pyc
80${PYSITELIB}/hgext/fetch.pyo 80${PYSITELIB}/hgext/fetch.pyo
81${PYSITELIB}/hgext/gpg.py 81${PYSITELIB}/hgext/gpg.py
82${PYSITELIB}/hgext/gpg.pyc 82${PYSITELIB}/hgext/gpg.pyc
83${PYSITELIB}/hgext/gpg.pyo 83${PYSITELIB}/hgext/gpg.pyo
84${PYSITELIB}/hgext/graphlog.py 84${PYSITELIB}/hgext/graphlog.py
85${PYSITELIB}/hgext/graphlog.pyc 85${PYSITELIB}/hgext/graphlog.pyc
86${PYSITELIB}/hgext/graphlog.pyo 86${PYSITELIB}/hgext/graphlog.pyo
87${PYSITELIB}/hgext/hgcia.py 87${PYSITELIB}/hgext/hgcia.py
88${PYSITELIB}/hgext/hgcia.pyc 88${PYSITELIB}/hgext/hgcia.pyc
89${PYSITELIB}/hgext/hgcia.pyo 89${PYSITELIB}/hgext/hgcia.pyo
90${PYSITELIB}/hgext/hgk.py 90${PYSITELIB}/hgext/hgk.py
91${PYSITELIB}/hgext/hgk.pyc 91${PYSITELIB}/hgext/hgk.pyc
92${PYSITELIB}/hgext/hgk.pyo 92${PYSITELIB}/hgext/hgk.pyo
93${PYSITELIB}/hgext/highlight/__init__.py 93${PYSITELIB}/hgext/highlight/__init__.py
94${PYSITELIB}/hgext/highlight/__init__.pyc 94${PYSITELIB}/hgext/highlight/__init__.pyc
95${PYSITELIB}/hgext/highlight/__init__.pyo 95${PYSITELIB}/hgext/highlight/__init__.pyo
96${PYSITELIB}/hgext/highlight/highlight.py 96${PYSITELIB}/hgext/highlight/highlight.py
97${PYSITELIB}/hgext/highlight/highlight.pyc 97${PYSITELIB}/hgext/highlight/highlight.pyc
98${PYSITELIB}/hgext/highlight/highlight.pyo 98${PYSITELIB}/hgext/highlight/highlight.pyo
99${PYSITELIB}/hgext/histedit.py 99${PYSITELIB}/hgext/histedit.py
100${PYSITELIB}/hgext/histedit.pyc 100${PYSITELIB}/hgext/histedit.pyc
101${PYSITELIB}/hgext/histedit.pyo 101${PYSITELIB}/hgext/histedit.pyo
102${PYSITELIB}/hgext/interhg.py 102${PYSITELIB}/hgext/interhg.py
103${PYSITELIB}/hgext/interhg.pyc 103${PYSITELIB}/hgext/interhg.pyc
104${PYSITELIB}/hgext/interhg.pyo 104${PYSITELIB}/hgext/interhg.pyo
105${PYSITELIB}/hgext/keyword.py 105${PYSITELIB}/hgext/keyword.py
106${PYSITELIB}/hgext/keyword.pyc 106${PYSITELIB}/hgext/keyword.pyc
107${PYSITELIB}/hgext/keyword.pyo 107${PYSITELIB}/hgext/keyword.pyo
108${PYSITELIB}/hgext/largefiles/__init__.py 108${PYSITELIB}/hgext/largefiles/__init__.py
109${PYSITELIB}/hgext/largefiles/__init__.pyc 109${PYSITELIB}/hgext/largefiles/__init__.pyc
110${PYSITELIB}/hgext/largefiles/__init__.pyo 110${PYSITELIB}/hgext/largefiles/__init__.pyo
111${PYSITELIB}/hgext/largefiles/basestore.py 111${PYSITELIB}/hgext/largefiles/basestore.py
112${PYSITELIB}/hgext/largefiles/basestore.pyc 112${PYSITELIB}/hgext/largefiles/basestore.pyc
113${PYSITELIB}/hgext/largefiles/basestore.pyo 113${PYSITELIB}/hgext/largefiles/basestore.pyo
114${PYSITELIB}/hgext/largefiles/lfcommands.py 114${PYSITELIB}/hgext/largefiles/lfcommands.py
115${PYSITELIB}/hgext/largefiles/lfcommands.pyc 115${PYSITELIB}/hgext/largefiles/lfcommands.pyc
116${PYSITELIB}/hgext/largefiles/lfcommands.pyo 116${PYSITELIB}/hgext/largefiles/lfcommands.pyo
117${PYSITELIB}/hgext/largefiles/lfutil.py 117${PYSITELIB}/hgext/largefiles/lfutil.py
118${PYSITELIB}/hgext/largefiles/lfutil.pyc 118${PYSITELIB}/hgext/largefiles/lfutil.pyc
119${PYSITELIB}/hgext/largefiles/lfutil.pyo 119${PYSITELIB}/hgext/largefiles/lfutil.pyo
120${PYSITELIB}/hgext/largefiles/localstore.py 120${PYSITELIB}/hgext/largefiles/localstore.py
121${PYSITELIB}/hgext/largefiles/localstore.pyc 121${PYSITELIB}/hgext/largefiles/localstore.pyc
122${PYSITELIB}/hgext/largefiles/localstore.pyo 122${PYSITELIB}/hgext/largefiles/localstore.pyo
123${PYSITELIB}/hgext/largefiles/overrides.py 123${PYSITELIB}/hgext/largefiles/overrides.py
124${PYSITELIB}/hgext/largefiles/overrides.pyc 124${PYSITELIB}/hgext/largefiles/overrides.pyc
125${PYSITELIB}/hgext/largefiles/overrides.pyo 125${PYSITELIB}/hgext/largefiles/overrides.pyo
126${PYSITELIB}/hgext/largefiles/proto.py 126${PYSITELIB}/hgext/largefiles/proto.py
127${PYSITELIB}/hgext/largefiles/proto.pyc 127${PYSITELIB}/hgext/largefiles/proto.pyc
128${PYSITELIB}/hgext/largefiles/proto.pyo 128${PYSITELIB}/hgext/largefiles/proto.pyo
129${PYSITELIB}/hgext/largefiles/remotestore.py 129${PYSITELIB}/hgext/largefiles/remotestore.py
130${PYSITELIB}/hgext/largefiles/remotestore.pyc 130${PYSITELIB}/hgext/largefiles/remotestore.pyc
131${PYSITELIB}/hgext/largefiles/remotestore.pyo 131${PYSITELIB}/hgext/largefiles/remotestore.pyo
132${PYSITELIB}/hgext/largefiles/reposetup.py 132${PYSITELIB}/hgext/largefiles/reposetup.py
133${PYSITELIB}/hgext/largefiles/reposetup.pyc 133${PYSITELIB}/hgext/largefiles/reposetup.pyc
134${PYSITELIB}/hgext/largefiles/reposetup.pyo 134${PYSITELIB}/hgext/largefiles/reposetup.pyo
135${PYSITELIB}/hgext/largefiles/uisetup.py 135${PYSITELIB}/hgext/largefiles/uisetup.py
136${PYSITELIB}/hgext/largefiles/uisetup.pyc 136${PYSITELIB}/hgext/largefiles/uisetup.pyc
137${PYSITELIB}/hgext/largefiles/uisetup.pyo 137${PYSITELIB}/hgext/largefiles/uisetup.pyo
138${PYSITELIB}/hgext/largefiles/wirestore.py 138${PYSITELIB}/hgext/largefiles/wirestore.py
139${PYSITELIB}/hgext/largefiles/wirestore.pyc 139${PYSITELIB}/hgext/largefiles/wirestore.pyc
140${PYSITELIB}/hgext/largefiles/wirestore.pyo 140${PYSITELIB}/hgext/largefiles/wirestore.pyo
141${PYSITELIB}/hgext/mq.py 141${PYSITELIB}/hgext/mq.py
142${PYSITELIB}/hgext/mq.pyc 142${PYSITELIB}/hgext/mq.pyc
143${PYSITELIB}/hgext/mq.pyo 143${PYSITELIB}/hgext/mq.pyo
144${PYSITELIB}/hgext/notify.py 144${PYSITELIB}/hgext/notify.py
145${PYSITELIB}/hgext/notify.pyc 145${PYSITELIB}/hgext/notify.pyc
146${PYSITELIB}/hgext/notify.pyo 146${PYSITELIB}/hgext/notify.pyo
147${PYSITELIB}/hgext/pager.py 147${PYSITELIB}/hgext/pager.py
148${PYSITELIB}/hgext/pager.pyc 148${PYSITELIB}/hgext/pager.pyc
149${PYSITELIB}/hgext/pager.pyo 149${PYSITELIB}/hgext/pager.pyo
150${PYSITELIB}/hgext/patchbomb.py 150${PYSITELIB}/hgext/patchbomb.py
151${PYSITELIB}/hgext/patchbomb.pyc 151${PYSITELIB}/hgext/patchbomb.pyc
152${PYSITELIB}/hgext/patchbomb.pyo 152${PYSITELIB}/hgext/patchbomb.pyo
153${PYSITELIB}/hgext/progress.py 153${PYSITELIB}/hgext/progress.py
154${PYSITELIB}/hgext/progress.pyc 154${PYSITELIB}/hgext/progress.pyc
155${PYSITELIB}/hgext/progress.pyo 155${PYSITELIB}/hgext/progress.pyo
156${PYSITELIB}/hgext/purge.py 156${PYSITELIB}/hgext/purge.py
157${PYSITELIB}/hgext/purge.pyc 157${PYSITELIB}/hgext/purge.pyc
158${PYSITELIB}/hgext/purge.pyo 158${PYSITELIB}/hgext/purge.pyo
159${PYSITELIB}/hgext/rebase.py 159${PYSITELIB}/hgext/rebase.py
160${PYSITELIB}/hgext/rebase.pyc 160${PYSITELIB}/hgext/rebase.pyc
161${PYSITELIB}/hgext/rebase.pyo 161${PYSITELIB}/hgext/rebase.pyo
162${PYSITELIB}/hgext/record.py 162${PYSITELIB}/hgext/record.py
163${PYSITELIB}/hgext/record.pyc 163${PYSITELIB}/hgext/record.pyc
164${PYSITELIB}/hgext/record.pyo 164${PYSITELIB}/hgext/record.pyo
165${PYSITELIB}/hgext/relink.py 165${PYSITELIB}/hgext/relink.py
166${PYSITELIB}/hgext/relink.pyc 166${PYSITELIB}/hgext/relink.pyc
167${PYSITELIB}/hgext/relink.pyo 167${PYSITELIB}/hgext/relink.pyo
168${PYSITELIB}/hgext/schemes.py 168${PYSITELIB}/hgext/schemes.py
169${PYSITELIB}/hgext/schemes.pyc 169${PYSITELIB}/hgext/schemes.pyc
170${PYSITELIB}/hgext/schemes.pyo 170${PYSITELIB}/hgext/schemes.pyo
171${PYSITELIB}/hgext/share.py 171${PYSITELIB}/hgext/share.py
172${PYSITELIB}/hgext/share.pyc 172${PYSITELIB}/hgext/share.pyc
173${PYSITELIB}/hgext/share.pyo 173${PYSITELIB}/hgext/share.pyo
174${PYSITELIB}/hgext/transplant.py 174${PYSITELIB}/hgext/transplant.py
175${PYSITELIB}/hgext/transplant.pyc 175${PYSITELIB}/hgext/transplant.pyc
176${PYSITELIB}/hgext/transplant.pyo 176${PYSITELIB}/hgext/transplant.pyo
177${PYSITELIB}/hgext/win32mbcs.py 177${PYSITELIB}/hgext/win32mbcs.py
178${PYSITELIB}/hgext/win32mbcs.pyc 178${PYSITELIB}/hgext/win32mbcs.pyc
179${PYSITELIB}/hgext/win32mbcs.pyo 179${PYSITELIB}/hgext/win32mbcs.pyo
180${PYSITELIB}/hgext/win32text.py 180${PYSITELIB}/hgext/win32text.py
181${PYSITELIB}/hgext/win32text.pyc 181${PYSITELIB}/hgext/win32text.pyc
182${PYSITELIB}/hgext/win32text.pyo 182${PYSITELIB}/hgext/win32text.pyo
183${PYSITELIB}/hgext/zeroconf/Zeroconf.py 183${PYSITELIB}/hgext/zeroconf/Zeroconf.py
184${PYSITELIB}/hgext/zeroconf/Zeroconf.pyc 184${PYSITELIB}/hgext/zeroconf/Zeroconf.pyc
185${PYSITELIB}/hgext/zeroconf/Zeroconf.pyo 185${PYSITELIB}/hgext/zeroconf/Zeroconf.pyo
186${PYSITELIB}/hgext/zeroconf/__init__.py 186${PYSITELIB}/hgext/zeroconf/__init__.py
187${PYSITELIB}/hgext/zeroconf/__init__.pyc 187${PYSITELIB}/hgext/zeroconf/__init__.pyc
188${PYSITELIB}/hgext/zeroconf/__init__.pyo 188${PYSITELIB}/hgext/zeroconf/__init__.pyo
189${PYSITELIB}/${EGG_FILE} 189${PYSITELIB}/${EGG_FILE}
190${PYSITELIB}/mercurial/__init__.py 190${PYSITELIB}/mercurial/__init__.py
191${PYSITELIB}/mercurial/__init__.pyc 191${PYSITELIB}/mercurial/__init__.pyc
192${PYSITELIB}/mercurial/__init__.pyo 192${PYSITELIB}/mercurial/__init__.pyo
193${PYSITELIB}/mercurial/__version__.py 193${PYSITELIB}/mercurial/__version__.py
194${PYSITELIB}/mercurial/__version__.pyc 194${PYSITELIB}/mercurial/__version__.pyc
195${PYSITELIB}/mercurial/__version__.pyo 195${PYSITELIB}/mercurial/__version__.pyo
196${PYSITELIB}/mercurial/ancestor.py 196${PYSITELIB}/mercurial/ancestor.py
197${PYSITELIB}/mercurial/ancestor.pyc 197${PYSITELIB}/mercurial/ancestor.pyc
198${PYSITELIB}/mercurial/ancestor.pyo 198${PYSITELIB}/mercurial/ancestor.pyo
199${PYSITELIB}/mercurial/archival.py 199${PYSITELIB}/mercurial/archival.py
200${PYSITELIB}/mercurial/archival.pyc 200${PYSITELIB}/mercurial/archival.pyc
201${PYSITELIB}/mercurial/archival.pyo 201${PYSITELIB}/mercurial/archival.pyo
202${PYSITELIB}/mercurial/base85.so 202${PYSITELIB}/mercurial/base85.so
203${PYSITELIB}/mercurial/bdiff.so 203${PYSITELIB}/mercurial/bdiff.so
204${PYSITELIB}/mercurial/bookmarks.py 204${PYSITELIB}/mercurial/bookmarks.py
205${PYSITELIB}/mercurial/bookmarks.pyc 205${PYSITELIB}/mercurial/bookmarks.pyc
206${PYSITELIB}/mercurial/bookmarks.pyo 206${PYSITELIB}/mercurial/bookmarks.pyo
207${PYSITELIB}/mercurial/branchmap.py 207${PYSITELIB}/mercurial/branchmap.py
208${PYSITELIB}/mercurial/branchmap.pyc 208${PYSITELIB}/mercurial/branchmap.pyc
209${PYSITELIB}/mercurial/branchmap.pyo 209${PYSITELIB}/mercurial/branchmap.pyo
210${PYSITELIB}/mercurial/bundlerepo.py 210${PYSITELIB}/mercurial/bundlerepo.py
211${PYSITELIB}/mercurial/bundlerepo.pyc 211${PYSITELIB}/mercurial/bundlerepo.pyc
212${PYSITELIB}/mercurial/bundlerepo.pyo 212${PYSITELIB}/mercurial/bundlerepo.pyo
213${PYSITELIB}/mercurial/byterange.py 213${PYSITELIB}/mercurial/byterange.py
214${PYSITELIB}/mercurial/byterange.pyc 214${PYSITELIB}/mercurial/byterange.pyc
215${PYSITELIB}/mercurial/byterange.pyo 215${PYSITELIB}/mercurial/byterange.pyo
216${PYSITELIB}/mercurial/changegroup.py 216${PYSITELIB}/mercurial/changegroup.py
217${PYSITELIB}/mercurial/changegroup.pyc 217${PYSITELIB}/mercurial/changegroup.pyc
218${PYSITELIB}/mercurial/changegroup.pyo 218${PYSITELIB}/mercurial/changegroup.pyo
219${PYSITELIB}/mercurial/changelog.py 219${PYSITELIB}/mercurial/changelog.py
220${PYSITELIB}/mercurial/changelog.pyc 220${PYSITELIB}/mercurial/changelog.pyc
221${PYSITELIB}/mercurial/changelog.pyo 221${PYSITELIB}/mercurial/changelog.pyo
222${PYSITELIB}/mercurial/cmdutil.py 222${PYSITELIB}/mercurial/cmdutil.py
223${PYSITELIB}/mercurial/cmdutil.pyc 223${PYSITELIB}/mercurial/cmdutil.pyc
224${PYSITELIB}/mercurial/cmdutil.pyo 224${PYSITELIB}/mercurial/cmdutil.pyo
225${PYSITELIB}/mercurial/commands.py 225${PYSITELIB}/mercurial/commands.py
226${PYSITELIB}/mercurial/commands.pyc 226${PYSITELIB}/mercurial/commands.pyc
227${PYSITELIB}/mercurial/commands.pyo 227${PYSITELIB}/mercurial/commands.pyo
228${PYSITELIB}/mercurial/commandserver.py 228${PYSITELIB}/mercurial/commandserver.py
229${PYSITELIB}/mercurial/commandserver.pyc 229${PYSITELIB}/mercurial/commandserver.pyc
230${PYSITELIB}/mercurial/commandserver.pyo 230${PYSITELIB}/mercurial/commandserver.pyo
231${PYSITELIB}/mercurial/config.py 231${PYSITELIB}/mercurial/config.py
232${PYSITELIB}/mercurial/config.pyc 232${PYSITELIB}/mercurial/config.pyc
233${PYSITELIB}/mercurial/config.pyo 233${PYSITELIB}/mercurial/config.pyo
234${PYSITELIB}/mercurial/context.py 234${PYSITELIB}/mercurial/context.py
235${PYSITELIB}/mercurial/context.pyc 235${PYSITELIB}/mercurial/context.pyc
236${PYSITELIB}/mercurial/context.pyo 236${PYSITELIB}/mercurial/context.pyo
237${PYSITELIB}/mercurial/copies.py 237${PYSITELIB}/mercurial/copies.py
238${PYSITELIB}/mercurial/copies.pyc 238${PYSITELIB}/mercurial/copies.pyc
239${PYSITELIB}/mercurial/copies.pyo 239${PYSITELIB}/mercurial/copies.pyo
240${PYSITELIB}/mercurial/dagparser.py 240${PYSITELIB}/mercurial/dagparser.py
241${PYSITELIB}/mercurial/dagparser.pyc 241${PYSITELIB}/mercurial/dagparser.pyc
242${PYSITELIB}/mercurial/dagparser.pyo 242${PYSITELIB}/mercurial/dagparser.pyo
243${PYSITELIB}/mercurial/dagutil.py 243${PYSITELIB}/mercurial/dagutil.py
244${PYSITELIB}/mercurial/dagutil.pyc 244${PYSITELIB}/mercurial/dagutil.pyc
245${PYSITELIB}/mercurial/dagutil.pyo 245${PYSITELIB}/mercurial/dagutil.pyo
246${PYSITELIB}/mercurial/demandimport.py 246${PYSITELIB}/mercurial/demandimport.py
247${PYSITELIB}/mercurial/demandimport.pyc 247${PYSITELIB}/mercurial/demandimport.pyc
248${PYSITELIB}/mercurial/demandimport.pyo 248${PYSITELIB}/mercurial/demandimport.pyo
249${PYSITELIB}/mercurial/dicthelpers.py 249${PYSITELIB}/mercurial/dicthelpers.py
250${PYSITELIB}/mercurial/dicthelpers.pyc 250${PYSITELIB}/mercurial/dicthelpers.pyc
251${PYSITELIB}/mercurial/dicthelpers.pyo 251${PYSITELIB}/mercurial/dicthelpers.pyo
252${PYSITELIB}/mercurial/diffhelpers.so 252${PYSITELIB}/mercurial/diffhelpers.so
253${PYSITELIB}/mercurial/dirstate.py 253${PYSITELIB}/mercurial/dirstate.py
254${PYSITELIB}/mercurial/dirstate.pyc 254${PYSITELIB}/mercurial/dirstate.pyc
255${PYSITELIB}/mercurial/dirstate.pyo 255${PYSITELIB}/mercurial/dirstate.pyo
256${PYSITELIB}/mercurial/discovery.py 256${PYSITELIB}/mercurial/discovery.py
257${PYSITELIB}/mercurial/discovery.pyc 257${PYSITELIB}/mercurial/discovery.pyc
258${PYSITELIB}/mercurial/discovery.pyo 258${PYSITELIB}/mercurial/discovery.pyo
259${PYSITELIB}/mercurial/dispatch.py 259${PYSITELIB}/mercurial/dispatch.py
260${PYSITELIB}/mercurial/dispatch.pyc 260${PYSITELIB}/mercurial/dispatch.pyc
261${PYSITELIB}/mercurial/dispatch.pyo 261${PYSITELIB}/mercurial/dispatch.pyo
262${PYSITELIB}/mercurial/encoding.py 262${PYSITELIB}/mercurial/encoding.py
263${PYSITELIB}/mercurial/encoding.pyc 263${PYSITELIB}/mercurial/encoding.pyc
264${PYSITELIB}/mercurial/encoding.pyo 264${PYSITELIB}/mercurial/encoding.pyo
265${PYSITELIB}/mercurial/error.py 265${PYSITELIB}/mercurial/error.py
266${PYSITELIB}/mercurial/error.pyc 266${PYSITELIB}/mercurial/error.pyc
267${PYSITELIB}/mercurial/error.pyo 267${PYSITELIB}/mercurial/error.pyo
268${PYSITELIB}/mercurial/extensions.py 268${PYSITELIB}/mercurial/extensions.py
269${PYSITELIB}/mercurial/extensions.pyc 269${PYSITELIB}/mercurial/extensions.pyc
270${PYSITELIB}/mercurial/extensions.pyo 270${PYSITELIB}/mercurial/extensions.pyo
271${PYSITELIB}/mercurial/fancyopts.py 271${PYSITELIB}/mercurial/fancyopts.py
272${PYSITELIB}/mercurial/fancyopts.pyc 272${PYSITELIB}/mercurial/fancyopts.pyc
273${PYSITELIB}/mercurial/fancyopts.pyo 273${PYSITELIB}/mercurial/fancyopts.pyo
274${PYSITELIB}/mercurial/filelog.py 274${PYSITELIB}/mercurial/filelog.py
275${PYSITELIB}/mercurial/filelog.pyc 275${PYSITELIB}/mercurial/filelog.pyc
276${PYSITELIB}/mercurial/filelog.pyo 276${PYSITELIB}/mercurial/filelog.pyo
277${PYSITELIB}/mercurial/filemerge.py 277${PYSITELIB}/mercurial/filemerge.py
278${PYSITELIB}/mercurial/filemerge.pyc 278${PYSITELIB}/mercurial/filemerge.pyc
279${PYSITELIB}/mercurial/filemerge.pyo 279${PYSITELIB}/mercurial/filemerge.pyo
280${PYSITELIB}/mercurial/fileset.py 280${PYSITELIB}/mercurial/fileset.py
281${PYSITELIB}/mercurial/fileset.pyc 281${PYSITELIB}/mercurial/fileset.pyc
282${PYSITELIB}/mercurial/fileset.pyo 282${PYSITELIB}/mercurial/fileset.pyo
283${PYSITELIB}/mercurial/formatter.py 283${PYSITELIB}/mercurial/formatter.py
284${PYSITELIB}/mercurial/formatter.pyc 284${PYSITELIB}/mercurial/formatter.pyc
285${PYSITELIB}/mercurial/formatter.pyo 285${PYSITELIB}/mercurial/formatter.pyo
286${PYSITELIB}/mercurial/graphmod.py 286${PYSITELIB}/mercurial/graphmod.py
287${PYSITELIB}/mercurial/graphmod.pyc 287${PYSITELIB}/mercurial/graphmod.pyc
288${PYSITELIB}/mercurial/graphmod.pyo 288${PYSITELIB}/mercurial/graphmod.pyo
289${PYSITELIB}/mercurial/hbisect.py 289${PYSITELIB}/mercurial/hbisect.py
290${PYSITELIB}/mercurial/hbisect.pyc 290${PYSITELIB}/mercurial/hbisect.pyc
291${PYSITELIB}/mercurial/hbisect.pyo 291${PYSITELIB}/mercurial/hbisect.pyo
292${PYSITELIB}/mercurial/help.py 292${PYSITELIB}/mercurial/help.py
293${PYSITELIB}/mercurial/help.pyc 293${PYSITELIB}/mercurial/help.pyc
294${PYSITELIB}/mercurial/help.pyo 294${PYSITELIB}/mercurial/help.pyo
 295${PYSITELIB}/mercurial/help/common.txt
295${PYSITELIB}/mercurial/help/config.txt 296${PYSITELIB}/mercurial/help/config.txt
296${PYSITELIB}/mercurial/help/dates.txt 297${PYSITELIB}/mercurial/help/dates.txt
297${PYSITELIB}/mercurial/help/diffs.txt 298${PYSITELIB}/mercurial/help/diffs.txt
298${PYSITELIB}/mercurial/help/environment.txt 299${PYSITELIB}/mercurial/help/environment.txt
299${PYSITELIB}/mercurial/help/extensions.txt 300${PYSITELIB}/mercurial/help/extensions.txt
300${PYSITELIB}/mercurial/help/filesets.txt 301${PYSITELIB}/mercurial/help/filesets.txt
301${PYSITELIB}/mercurial/help/glossary.txt 302${PYSITELIB}/mercurial/help/glossary.txt
 303${PYSITELIB}/mercurial/help/hg.1.txt
 304${PYSITELIB}/mercurial/help/hgignore.5.txt
302${PYSITELIB}/mercurial/help/hgignore.txt 305${PYSITELIB}/mercurial/help/hgignore.txt
 306${PYSITELIB}/mercurial/help/hgrc.5.txt
303${PYSITELIB}/mercurial/help/hgweb.txt 307${PYSITELIB}/mercurial/help/hgweb.txt
304${PYSITELIB}/mercurial/help/merge-tools.txt 308${PYSITELIB}/mercurial/help/merge-tools.txt
305${PYSITELIB}/mercurial/help/multirevs.txt 309${PYSITELIB}/mercurial/help/multirevs.txt
306${PYSITELIB}/mercurial/help/patterns.txt 310${PYSITELIB}/mercurial/help/patterns.txt
307${PYSITELIB}/mercurial/help/phases.txt 311${PYSITELIB}/mercurial/help/phases.txt
308${PYSITELIB}/mercurial/help/revisions.txt 312${PYSITELIB}/mercurial/help/revisions.txt
309${PYSITELIB}/mercurial/help/revsets.txt 313${PYSITELIB}/mercurial/help/revsets.txt
310${PYSITELIB}/mercurial/help/subrepos.txt 314${PYSITELIB}/mercurial/help/subrepos.txt
311${PYSITELIB}/mercurial/help/templates.txt 315${PYSITELIB}/mercurial/help/templates.txt
312${PYSITELIB}/mercurial/help/urls.txt 316${PYSITELIB}/mercurial/help/urls.txt
313${PYSITELIB}/mercurial/hg.py 317${PYSITELIB}/mercurial/hg.py
314${PYSITELIB}/mercurial/hg.pyc 318${PYSITELIB}/mercurial/hg.pyc
315${PYSITELIB}/mercurial/hg.pyo 319${PYSITELIB}/mercurial/hg.pyo
316${PYSITELIB}/mercurial/hgweb/__init__.py 320${PYSITELIB}/mercurial/hgweb/__init__.py
317${PYSITELIB}/mercurial/hgweb/__init__.pyc 321${PYSITELIB}/mercurial/hgweb/__init__.pyc
318${PYSITELIB}/mercurial/hgweb/__init__.pyo 322${PYSITELIB}/mercurial/hgweb/__init__.pyo
319${PYSITELIB}/mercurial/hgweb/common.py 323${PYSITELIB}/mercurial/hgweb/common.py
320${PYSITELIB}/mercurial/hgweb/common.pyc 324${PYSITELIB}/mercurial/hgweb/common.pyc
321${PYSITELIB}/mercurial/hgweb/common.pyo 325${PYSITELIB}/mercurial/hgweb/common.pyo
322${PYSITELIB}/mercurial/hgweb/hgweb_mod.py 326${PYSITELIB}/mercurial/hgweb/hgweb_mod.py
323${PYSITELIB}/mercurial/hgweb/hgweb_mod.pyc 327${PYSITELIB}/mercurial/hgweb/hgweb_mod.pyc
324${PYSITELIB}/mercurial/hgweb/hgweb_mod.pyo 328${PYSITELIB}/mercurial/hgweb/hgweb_mod.pyo
325${PYSITELIB}/mercurial/hgweb/hgwebdir_mod.py 329${PYSITELIB}/mercurial/hgweb/hgwebdir_mod.py
326${PYSITELIB}/mercurial/hgweb/hgwebdir_mod.pyc 330${PYSITELIB}/mercurial/hgweb/hgwebdir_mod.pyc
327${PYSITELIB}/mercurial/hgweb/hgwebdir_mod.pyo 331${PYSITELIB}/mercurial/hgweb/hgwebdir_mod.pyo
328${PYSITELIB}/mercurial/hgweb/protocol.py 332${PYSITELIB}/mercurial/hgweb/protocol.py
329${PYSITELIB}/mercurial/hgweb/protocol.pyc 333${PYSITELIB}/mercurial/hgweb/protocol.pyc
330${PYSITELIB}/mercurial/hgweb/protocol.pyo 334${PYSITELIB}/mercurial/hgweb/protocol.pyo
331${PYSITELIB}/mercurial/hgweb/request.py 335${PYSITELIB}/mercurial/hgweb/request.py
332${PYSITELIB}/mercurial/hgweb/request.pyc 336${PYSITELIB}/mercurial/hgweb/request.pyc
333${PYSITELIB}/mercurial/hgweb/request.pyo 337${PYSITELIB}/mercurial/hgweb/request.pyo
334${PYSITELIB}/mercurial/hgweb/server.py 338${PYSITELIB}/mercurial/hgweb/server.py
335${PYSITELIB}/mercurial/hgweb/server.pyc 339${PYSITELIB}/mercurial/hgweb/server.pyc
336${PYSITELIB}/mercurial/hgweb/server.pyo 340${PYSITELIB}/mercurial/hgweb/server.pyo
337${PYSITELIB}/mercurial/hgweb/webcommands.py 341${PYSITELIB}/mercurial/hgweb/webcommands.py
338${PYSITELIB}/mercurial/hgweb/webcommands.pyc 342${PYSITELIB}/mercurial/hgweb/webcommands.pyc
339${PYSITELIB}/mercurial/hgweb/webcommands.pyo 343${PYSITELIB}/mercurial/hgweb/webcommands.pyo
340${PYSITELIB}/mercurial/hgweb/webutil.py 344${PYSITELIB}/mercurial/hgweb/webutil.py
341${PYSITELIB}/mercurial/hgweb/webutil.pyc 345${PYSITELIB}/mercurial/hgweb/webutil.pyc
342${PYSITELIB}/mercurial/hgweb/webutil.pyo 346${PYSITELIB}/mercurial/hgweb/webutil.pyo
343${PYSITELIB}/mercurial/hgweb/wsgicgi.py 347${PYSITELIB}/mercurial/hgweb/wsgicgi.py
344${PYSITELIB}/mercurial/hgweb/wsgicgi.pyc 348${PYSITELIB}/mercurial/hgweb/wsgicgi.pyc
345${PYSITELIB}/mercurial/hgweb/wsgicgi.pyo 349${PYSITELIB}/mercurial/hgweb/wsgicgi.pyo
346${PYSITELIB}/mercurial/hook.py 350${PYSITELIB}/mercurial/hook.py
347${PYSITELIB}/mercurial/hook.pyc 351${PYSITELIB}/mercurial/hook.pyc
348${PYSITELIB}/mercurial/hook.pyo 352${PYSITELIB}/mercurial/hook.pyo
349${PYSITELIB}/mercurial/httpclient/__init__.py 353${PYSITELIB}/mercurial/httpclient/__init__.py
350${PYSITELIB}/mercurial/httpclient/__init__.pyc 354${PYSITELIB}/mercurial/httpclient/__init__.pyc
351${PYSITELIB}/mercurial/httpclient/__init__.pyo 355${PYSITELIB}/mercurial/httpclient/__init__.pyo
352${PYSITELIB}/mercurial/httpclient/_readers.py 356${PYSITELIB}/mercurial/httpclient/_readers.py
353${PYSITELIB}/mercurial/httpclient/_readers.pyc 357${PYSITELIB}/mercurial/httpclient/_readers.pyc
354${PYSITELIB}/mercurial/httpclient/_readers.pyo 358${PYSITELIB}/mercurial/httpclient/_readers.pyo
355${PYSITELIB}/mercurial/httpclient/socketutil.py 359${PYSITELIB}/mercurial/httpclient/socketutil.py
356${PYSITELIB}/mercurial/httpclient/socketutil.pyc 360${PYSITELIB}/mercurial/httpclient/socketutil.pyc
357${PYSITELIB}/mercurial/httpclient/socketutil.pyo 361${PYSITELIB}/mercurial/httpclient/socketutil.pyo
358${PYSITELIB}/mercurial/httpconnection.py 362${PYSITELIB}/mercurial/httpconnection.py
359${PYSITELIB}/mercurial/httpconnection.pyc 363${PYSITELIB}/mercurial/httpconnection.pyc
360${PYSITELIB}/mercurial/httpconnection.pyo 364${PYSITELIB}/mercurial/httpconnection.pyo
361${PYSITELIB}/mercurial/httppeer.py 365${PYSITELIB}/mercurial/httppeer.py
362${PYSITELIB}/mercurial/httppeer.pyc 366${PYSITELIB}/mercurial/httppeer.pyc
363${PYSITELIB}/mercurial/httppeer.pyo 367${PYSITELIB}/mercurial/httppeer.pyo
364${PYSITELIB}/mercurial/i18n.py 368${PYSITELIB}/mercurial/i18n.py
365${PYSITELIB}/mercurial/i18n.pyc 369${PYSITELIB}/mercurial/i18n.pyc
366${PYSITELIB}/mercurial/i18n.pyo 370${PYSITELIB}/mercurial/i18n.pyo
367${PYSITELIB}/mercurial/ignore.py 371${PYSITELIB}/mercurial/ignore.py
368${PYSITELIB}/mercurial/ignore.pyc 372${PYSITELIB}/mercurial/ignore.pyc
369${PYSITELIB}/mercurial/ignore.pyo 373${PYSITELIB}/mercurial/ignore.pyo
370${PYSITELIB}/mercurial/keepalive.py 374${PYSITELIB}/mercurial/keepalive.py
371${PYSITELIB}/mercurial/keepalive.pyc 375${PYSITELIB}/mercurial/keepalive.pyc
372${PYSITELIB}/mercurial/keepalive.pyo 376${PYSITELIB}/mercurial/keepalive.pyo
373${PYSITELIB}/mercurial/locale/da/LC_MESSAGES/hg.mo 377${PYSITELIB}/mercurial/locale/da/LC_MESSAGES/hg.mo
374${PYSITELIB}/mercurial/locale/de/LC_MESSAGES/hg.mo 378${PYSITELIB}/mercurial/locale/de/LC_MESSAGES/hg.mo
375${PYSITELIB}/mercurial/locale/el/LC_MESSAGES/hg.mo 379${PYSITELIB}/mercurial/locale/el/LC_MESSAGES/hg.mo
376${PYSITELIB}/mercurial/locale/fr/LC_MESSAGES/hg.mo 380${PYSITELIB}/mercurial/locale/fr/LC_MESSAGES/hg.mo
377${PYSITELIB}/mercurial/locale/it/LC_MESSAGES/hg.mo 381${PYSITELIB}/mercurial/locale/it/LC_MESSAGES/hg.mo
378${PYSITELIB}/mercurial/locale/ja/LC_MESSAGES/hg.mo 382${PYSITELIB}/mercurial/locale/ja/LC_MESSAGES/hg.mo
379${PYSITELIB}/mercurial/locale/pt_BR/LC_MESSAGES/hg.mo 383${PYSITELIB}/mercurial/locale/pt_BR/LC_MESSAGES/hg.mo
380${PYSITELIB}/mercurial/locale/ro/LC_MESSAGES/hg.mo 384${PYSITELIB}/mercurial/locale/ro/LC_MESSAGES/hg.mo
381${PYSITELIB}/mercurial/locale/ru/LC_MESSAGES/hg.mo 385${PYSITELIB}/mercurial/locale/ru/LC_MESSAGES/hg.mo
382${PYSITELIB}/mercurial/locale/sv/LC_MESSAGES/hg.mo 386${PYSITELIB}/mercurial/locale/sv/LC_MESSAGES/hg.mo
383${PYSITELIB}/mercurial/locale/zh_CN/LC_MESSAGES/hg.mo 387${PYSITELIB}/mercurial/locale/zh_CN/LC_MESSAGES/hg.mo
384${PYSITELIB}/mercurial/locale/zh_TW/LC_MESSAGES/hg.mo 388${PYSITELIB}/mercurial/locale/zh_TW/LC_MESSAGES/hg.mo
385${PYSITELIB}/mercurial/localrepo.py 389${PYSITELIB}/mercurial/localrepo.py
386${PYSITELIB}/mercurial/localrepo.pyc 390${PYSITELIB}/mercurial/localrepo.pyc
387${PYSITELIB}/mercurial/localrepo.pyo 391${PYSITELIB}/mercurial/localrepo.pyo
388${PYSITELIB}/mercurial/lock.py 392${PYSITELIB}/mercurial/lock.py
389${PYSITELIB}/mercurial/lock.pyc 393${PYSITELIB}/mercurial/lock.pyc
390${PYSITELIB}/mercurial/lock.pyo 394${PYSITELIB}/mercurial/lock.pyo
391${PYSITELIB}/mercurial/lsprof.py 395${PYSITELIB}/mercurial/lsprof.py
392${PYSITELIB}/mercurial/lsprof.pyc 396${PYSITELIB}/mercurial/lsprof.pyc
393${PYSITELIB}/mercurial/lsprof.pyo 397${PYSITELIB}/mercurial/lsprof.pyo
394${PYSITELIB}/mercurial/lsprofcalltree.py 398${PYSITELIB}/mercurial/lsprofcalltree.py
395${PYSITELIB}/mercurial/lsprofcalltree.pyc 399${PYSITELIB}/mercurial/lsprofcalltree.pyc
396${PYSITELIB}/mercurial/lsprofcalltree.pyo 400${PYSITELIB}/mercurial/lsprofcalltree.pyo
397${PYSITELIB}/mercurial/mail.py 401${PYSITELIB}/mercurial/mail.py
398${PYSITELIB}/mercurial/mail.pyc 402${PYSITELIB}/mercurial/mail.pyc
399${PYSITELIB}/mercurial/mail.pyo 403${PYSITELIB}/mercurial/mail.pyo
400${PYSITELIB}/mercurial/manifest.py 404${PYSITELIB}/mercurial/manifest.py
401${PYSITELIB}/mercurial/manifest.pyc 405${PYSITELIB}/mercurial/manifest.pyc
402${PYSITELIB}/mercurial/manifest.pyo 406${PYSITELIB}/mercurial/manifest.pyo
403${PYSITELIB}/mercurial/match.py 407${PYSITELIB}/mercurial/match.py
404${PYSITELIB}/mercurial/match.pyc 408${PYSITELIB}/mercurial/match.pyc
405${PYSITELIB}/mercurial/match.pyo 409${PYSITELIB}/mercurial/match.pyo
406${PYSITELIB}/mercurial/mdiff.py 410${PYSITELIB}/mercurial/mdiff.py
407${PYSITELIB}/mercurial/mdiff.pyc 411${PYSITELIB}/mercurial/mdiff.pyc
408${PYSITELIB}/mercurial/mdiff.pyo 412${PYSITELIB}/mercurial/mdiff.pyo
409${PYSITELIB}/mercurial/merge.py 413${PYSITELIB}/mercurial/merge.py
410${PYSITELIB}/mercurial/merge.pyc 414${PYSITELIB}/mercurial/merge.pyc
411${PYSITELIB}/mercurial/merge.pyo 415${PYSITELIB}/mercurial/merge.pyo
412${PYSITELIB}/mercurial/minirst.py 416${PYSITELIB}/mercurial/minirst.py
413${PYSITELIB}/mercurial/minirst.pyc 417${PYSITELIB}/mercurial/minirst.pyc
414${PYSITELIB}/mercurial/minirst.pyo 418${PYSITELIB}/mercurial/minirst.pyo
415${PYSITELIB}/mercurial/mpatch.so 419${PYSITELIB}/mercurial/mpatch.so
416${PYSITELIB}/mercurial/node.py 420${PYSITELIB}/mercurial/node.py
417${PYSITELIB}/mercurial/node.pyc 421${PYSITELIB}/mercurial/node.pyc
418${PYSITELIB}/mercurial/node.pyo 422${PYSITELIB}/mercurial/node.pyo
419${PYSITELIB}/mercurial/obsolete.py 423${PYSITELIB}/mercurial/obsolete.py
420${PYSITELIB}/mercurial/obsolete.pyc 424${PYSITELIB}/mercurial/obsolete.pyc
421${PYSITELIB}/mercurial/obsolete.pyo 425${PYSITELIB}/mercurial/obsolete.pyo
422${PYSITELIB}/mercurial/osutil.so 426${PYSITELIB}/mercurial/osutil.so
423${PYSITELIB}/mercurial/parser.py 427${PYSITELIB}/mercurial/parser.py
424${PYSITELIB}/mercurial/parser.pyc 428${PYSITELIB}/mercurial/parser.pyc
425${PYSITELIB}/mercurial/parser.pyo 429${PYSITELIB}/mercurial/parser.pyo
426${PYSITELIB}/mercurial/parsers.so 430${PYSITELIB}/mercurial/parsers.so
427${PYSITELIB}/mercurial/patch.py 431${PYSITELIB}/mercurial/patch.py
428${PYSITELIB}/mercurial/patch.pyc 432${PYSITELIB}/mercurial/patch.pyc
429${PYSITELIB}/mercurial/patch.pyo 433${PYSITELIB}/mercurial/patch.pyo
430${PYSITELIB}/mercurial/peer.py 434${PYSITELIB}/mercurial/peer.py
431${PYSITELIB}/mercurial/peer.pyc 435${PYSITELIB}/mercurial/peer.pyc
432${PYSITELIB}/mercurial/peer.pyo 436${PYSITELIB}/mercurial/peer.pyo
433${PYSITELIB}/mercurial/phases.py 437${PYSITELIB}/mercurial/phases.py
434${PYSITELIB}/mercurial/phases.pyc 438${PYSITELIB}/mercurial/phases.pyc
435${PYSITELIB}/mercurial/phases.pyo 439${PYSITELIB}/mercurial/phases.pyo
436${PYSITELIB}/mercurial/posix.py 440${PYSITELIB}/mercurial/posix.py
437${PYSITELIB}/mercurial/posix.pyc 441${PYSITELIB}/mercurial/posix.pyc
438${PYSITELIB}/mercurial/posix.pyo 442${PYSITELIB}/mercurial/posix.pyo
439${PYSITELIB}/mercurial/pushkey.py 443${PYSITELIB}/mercurial/pushkey.py
440${PYSITELIB}/mercurial/pushkey.pyc 444${PYSITELIB}/mercurial/pushkey.pyc
441${PYSITELIB}/mercurial/pushkey.pyo 445${PYSITELIB}/mercurial/pushkey.pyo
442${PYSITELIB}/mercurial/pvec.py 446${PYSITELIB}/mercurial/pvec.py
443${PYSITELIB}/mercurial/pvec.pyc 447${PYSITELIB}/mercurial/pvec.pyc
444${PYSITELIB}/mercurial/pvec.pyo 448${PYSITELIB}/mercurial/pvec.pyo
445${PYSITELIB}/mercurial/py3kcompat.py 449${PYSITELIB}/mercurial/py3kcompat.py
446${PYSITELIB}/mercurial/py3kcompat.pyc 450${PYSITELIB}/mercurial/py3kcompat.pyc
447${PYSITELIB}/mercurial/py3kcompat.pyo 451${PYSITELIB}/mercurial/py3kcompat.pyo
448${PYSITELIB}/mercurial/repair.py 452${PYSITELIB}/mercurial/repair.py
449${PYSITELIB}/mercurial/repair.pyc 453${PYSITELIB}/mercurial/repair.pyc
450${PYSITELIB}/mercurial/repair.pyo 454${PYSITELIB}/mercurial/repair.pyo
451${PYSITELIB}/mercurial/repoview.py 455${PYSITELIB}/mercurial/repoview.py
452${PYSITELIB}/mercurial/repoview.pyc 456${PYSITELIB}/mercurial/repoview.pyc
453${PYSITELIB}/mercurial/repoview.pyo 457${PYSITELIB}/mercurial/repoview.pyo
454${PYSITELIB}/mercurial/revlog.py 458${PYSITELIB}/mercurial/revlog.py
455${PYSITELIB}/mercurial/revlog.pyc 459${PYSITELIB}/mercurial/revlog.pyc
456${PYSITELIB}/mercurial/revlog.pyo 460${PYSITELIB}/mercurial/revlog.pyo
457${PYSITELIB}/mercurial/revset.py 461${PYSITELIB}/mercurial/revset.py
458${PYSITELIB}/mercurial/revset.pyc 462${PYSITELIB}/mercurial/revset.pyc
459${PYSITELIB}/mercurial/revset.pyo 463${PYSITELIB}/mercurial/revset.pyo
460${PYSITELIB}/mercurial/scmposix.py 464${PYSITELIB}/mercurial/scmposix.py
461${PYSITELIB}/mercurial/scmposix.pyc 465${PYSITELIB}/mercurial/scmposix.pyc
462${PYSITELIB}/mercurial/scmposix.pyo 466${PYSITELIB}/mercurial/scmposix.pyo
463${PYSITELIB}/mercurial/scmutil.py 467${PYSITELIB}/mercurial/scmutil.py
464${PYSITELIB}/mercurial/scmutil.pyc 468${PYSITELIB}/mercurial/scmutil.pyc
465${PYSITELIB}/mercurial/scmutil.pyo 469${PYSITELIB}/mercurial/scmutil.pyo
466${PYSITELIB}/mercurial/scmwindows.py 470${PYSITELIB}/mercurial/scmwindows.py
467${PYSITELIB}/mercurial/scmwindows.pyc 471${PYSITELIB}/mercurial/scmwindows.pyc
468${PYSITELIB}/mercurial/scmwindows.pyo 472${PYSITELIB}/mercurial/scmwindows.pyo
469${PYSITELIB}/mercurial/setdiscovery.py 473${PYSITELIB}/mercurial/setdiscovery.py
470${PYSITELIB}/mercurial/setdiscovery.pyc 474${PYSITELIB}/mercurial/setdiscovery.pyc
471${PYSITELIB}/mercurial/setdiscovery.pyo 475${PYSITELIB}/mercurial/setdiscovery.pyo
472${PYSITELIB}/mercurial/similar.py 476${PYSITELIB}/mercurial/similar.py
473${PYSITELIB}/mercurial/similar.pyc 477${PYSITELIB}/mercurial/similar.pyc
474${PYSITELIB}/mercurial/similar.pyo 478${PYSITELIB}/mercurial/similar.pyo
475${PYSITELIB}/mercurial/simplemerge.py 479${PYSITELIB}/mercurial/simplemerge.py
476${PYSITELIB}/mercurial/simplemerge.pyc 480${PYSITELIB}/mercurial/simplemerge.pyc
477${PYSITELIB}/mercurial/simplemerge.pyo 481${PYSITELIB}/mercurial/simplemerge.pyo
478${PYSITELIB}/mercurial/sshpeer.py 482${PYSITELIB}/mercurial/sshpeer.py
479${PYSITELIB}/mercurial/sshpeer.pyc 483${PYSITELIB}/mercurial/sshpeer.pyc
480${PYSITELIB}/mercurial/sshpeer.pyo 484${PYSITELIB}/mercurial/sshpeer.pyo
481${PYSITELIB}/mercurial/sshserver.py 485${PYSITELIB}/mercurial/sshserver.py
482${PYSITELIB}/mercurial/sshserver.pyc 486${PYSITELIB}/mercurial/sshserver.pyc
483${PYSITELIB}/mercurial/sshserver.pyo 487${PYSITELIB}/mercurial/sshserver.pyo
484${PYSITELIB}/mercurial/sslutil.py 488${PYSITELIB}/mercurial/sslutil.py
485${PYSITELIB}/mercurial/sslutil.pyc 489${PYSITELIB}/mercurial/sslutil.pyc
486${PYSITELIB}/mercurial/sslutil.pyo 490${PYSITELIB}/mercurial/sslutil.pyo
487${PYSITELIB}/mercurial/statichttprepo.py 491${PYSITELIB}/mercurial/statichttprepo.py
488${PYSITELIB}/mercurial/statichttprepo.pyc 492${PYSITELIB}/mercurial/statichttprepo.pyc
489${PYSITELIB}/mercurial/statichttprepo.pyo 493${PYSITELIB}/mercurial/statichttprepo.pyo
490${PYSITELIB}/mercurial/store.py 494${PYSITELIB}/mercurial/store.py
491${PYSITELIB}/mercurial/store.pyc 495${PYSITELIB}/mercurial/store.pyc
492${PYSITELIB}/mercurial/store.pyo 496${PYSITELIB}/mercurial/store.pyo
493${PYSITELIB}/mercurial/strutil.py 497${PYSITELIB}/mercurial/strutil.py
494${PYSITELIB}/mercurial/strutil.pyc 498${PYSITELIB}/mercurial/strutil.pyc
495${PYSITELIB}/mercurial/strutil.pyo 499${PYSITELIB}/mercurial/strutil.pyo
496${PYSITELIB}/mercurial/subrepo.py 500${PYSITELIB}/mercurial/subrepo.py
497${PYSITELIB}/mercurial/subrepo.pyc 501${PYSITELIB}/mercurial/subrepo.pyc
498${PYSITELIB}/mercurial/subrepo.pyo 502${PYSITELIB}/mercurial/subrepo.pyo
499${PYSITELIB}/mercurial/tags.py 503${PYSITELIB}/mercurial/tags.py
500${PYSITELIB}/mercurial/tags.pyc 504${PYSITELIB}/mercurial/tags.pyc
501${PYSITELIB}/mercurial/tags.pyo 505${PYSITELIB}/mercurial/tags.pyo
502${PYSITELIB}/mercurial/templatefilters.py 506${PYSITELIB}/mercurial/templatefilters.py
503${PYSITELIB}/mercurial/templatefilters.pyc 507${PYSITELIB}/mercurial/templatefilters.pyc
504${PYSITELIB}/mercurial/templatefilters.pyo 508${PYSITELIB}/mercurial/templatefilters.pyo
505${PYSITELIB}/mercurial/templatekw.py 509${PYSITELIB}/mercurial/templatekw.py
506${PYSITELIB}/mercurial/templatekw.pyc 510${PYSITELIB}/mercurial/templatekw.pyc
507${PYSITELIB}/mercurial/templatekw.pyo 511${PYSITELIB}/mercurial/templatekw.pyo
508${PYSITELIB}/mercurial/templater.py 512${PYSITELIB}/mercurial/templater.py
509${PYSITELIB}/mercurial/templater.pyc 513${PYSITELIB}/mercurial/templater.pyc
510${PYSITELIB}/mercurial/templater.pyo 514${PYSITELIB}/mercurial/templater.pyo
511${PYSITELIB}/mercurial/templates/atom/bookmarkentry.tmpl 515${PYSITELIB}/mercurial/templates/atom/bookmarkentry.tmpl
512${PYSITELIB}/mercurial/templates/atom/bookmarks.tmpl 516${PYSITELIB}/mercurial/templates/atom/bookmarks.tmpl
513${PYSITELIB}/mercurial/templates/atom/branchentry.tmpl 517${PYSITELIB}/mercurial/templates/atom/branchentry.tmpl
514${PYSITELIB}/mercurial/templates/atom/branches.tmpl 518${PYSITELIB}/mercurial/templates/atom/branches.tmpl
515${PYSITELIB}/mercurial/templates/atom/changelog.tmpl 519${PYSITELIB}/mercurial/templates/atom/changelog.tmpl
516${PYSITELIB}/mercurial/templates/atom/changelogentry.tmpl 520${PYSITELIB}/mercurial/templates/atom/changelogentry.tmpl
517${PYSITELIB}/mercurial/templates/atom/error.tmpl 521${PYSITELIB}/mercurial/templates/atom/error.tmpl
518${PYSITELIB}/mercurial/templates/atom/filelog.tmpl 522${PYSITELIB}/mercurial/templates/atom/filelog.tmpl
519${PYSITELIB}/mercurial/templates/atom/header.tmpl 523${PYSITELIB}/mercurial/templates/atom/header.tmpl
520${PYSITELIB}/mercurial/templates/atom/map 524${PYSITELIB}/mercurial/templates/atom/map
521${PYSITELIB}/mercurial/templates/atom/tagentry.tmpl 525${PYSITELIB}/mercurial/templates/atom/tagentry.tmpl
522${PYSITELIB}/mercurial/templates/atom/tags.tmpl 526${PYSITELIB}/mercurial/templates/atom/tags.tmpl
523${PYSITELIB}/mercurial/templates/coal/header.tmpl 527${PYSITELIB}/mercurial/templates/coal/header.tmpl
524${PYSITELIB}/mercurial/templates/coal/map 528${PYSITELIB}/mercurial/templates/coal/map
525${PYSITELIB}/mercurial/templates/gitweb/bookmarks.tmpl 529${PYSITELIB}/mercurial/templates/gitweb/bookmarks.tmpl
526${PYSITELIB}/mercurial/templates/gitweb/branches.tmpl 530${PYSITELIB}/mercurial/templates/gitweb/branches.tmpl
527${PYSITELIB}/mercurial/templates/gitweb/changelog.tmpl 531${PYSITELIB}/mercurial/templates/gitweb/changelog.tmpl
528${PYSITELIB}/mercurial/templates/gitweb/changelogentry.tmpl 532${PYSITELIB}/mercurial/templates/gitweb/changelogentry.tmpl
529${PYSITELIB}/mercurial/templates/gitweb/changeset.tmpl 533${PYSITELIB}/mercurial/templates/gitweb/changeset.tmpl
530${PYSITELIB}/mercurial/templates/gitweb/error.tmpl 534${PYSITELIB}/mercurial/templates/gitweb/error.tmpl
531${PYSITELIB}/mercurial/templates/gitweb/fileannotate.tmpl 535${PYSITELIB}/mercurial/templates/gitweb/fileannotate.tmpl
532${PYSITELIB}/mercurial/templates/gitweb/filecomparison.tmpl 536${PYSITELIB}/mercurial/templates/gitweb/filecomparison.tmpl
533${PYSITELIB}/mercurial/templates/gitweb/filediff.tmpl 537${PYSITELIB}/mercurial/templates/gitweb/filediff.tmpl
534${PYSITELIB}/mercurial/templates/gitweb/filelog.tmpl 538${PYSITELIB}/mercurial/templates/gitweb/filelog.tmpl
535${PYSITELIB}/mercurial/templates/gitweb/filerevision.tmpl 539${PYSITELIB}/mercurial/templates/gitweb/filerevision.tmpl
536${PYSITELIB}/mercurial/templates/gitweb/footer.tmpl 540${PYSITELIB}/mercurial/templates/gitweb/footer.tmpl
537${PYSITELIB}/mercurial/templates/gitweb/graph.tmpl 541${PYSITELIB}/mercurial/templates/gitweb/graph.tmpl
538${PYSITELIB}/mercurial/templates/gitweb/header.tmpl 542${PYSITELIB}/mercurial/templates/gitweb/header.tmpl
539${PYSITELIB}/mercurial/templates/gitweb/help.tmpl 543${PYSITELIB}/mercurial/templates/gitweb/help.tmpl
540${PYSITELIB}/mercurial/templates/gitweb/helptopics.tmpl 544${PYSITELIB}/mercurial/templates/gitweb/helptopics.tmpl
541${PYSITELIB}/mercurial/templates/gitweb/index.tmpl 545${PYSITELIB}/mercurial/templates/gitweb/index.tmpl
542${PYSITELIB}/mercurial/templates/gitweb/manifest.tmpl 546${PYSITELIB}/mercurial/templates/gitweb/manifest.tmpl
543${PYSITELIB}/mercurial/templates/gitweb/map 547${PYSITELIB}/mercurial/templates/gitweb/map
544${PYSITELIB}/mercurial/templates/gitweb/notfound.tmpl 548${PYSITELIB}/mercurial/templates/gitweb/notfound.tmpl
545${PYSITELIB}/mercurial/templates/gitweb/search.tmpl 549${PYSITELIB}/mercurial/templates/gitweb/search.tmpl
546${PYSITELIB}/mercurial/templates/gitweb/shortlog.tmpl 550${PYSITELIB}/mercurial/templates/gitweb/shortlog.tmpl
547${PYSITELIB}/mercurial/templates/gitweb/summary.tmpl 551${PYSITELIB}/mercurial/templates/gitweb/summary.tmpl
548${PYSITELIB}/mercurial/templates/gitweb/tags.tmpl 552${PYSITELIB}/mercurial/templates/gitweb/tags.tmpl
549${PYSITELIB}/mercurial/templates/map-cmdline.bisect 553${PYSITELIB}/mercurial/templates/map-cmdline.bisect
550${PYSITELIB}/mercurial/templates/map-cmdline.changelog 554${PYSITELIB}/mercurial/templates/map-cmdline.changelog
551${PYSITELIB}/mercurial/templates/map-cmdline.compact 555${PYSITELIB}/mercurial/templates/map-cmdline.compact
552${PYSITELIB}/mercurial/templates/map-cmdline.default 556${PYSITELIB}/mercurial/templates/map-cmdline.default
 557${PYSITELIB}/mercurial/templates/map-cmdline.phases
553${PYSITELIB}/mercurial/templates/map-cmdline.xml 558${PYSITELIB}/mercurial/templates/map-cmdline.xml
554${PYSITELIB}/mercurial/templates/monoblue/bookmarks.tmpl 559${PYSITELIB}/mercurial/templates/monoblue/bookmarks.tmpl
555${PYSITELIB}/mercurial/templates/monoblue/branches.tmpl 560${PYSITELIB}/mercurial/templates/monoblue/branches.tmpl
556${PYSITELIB}/mercurial/templates/monoblue/changelog.tmpl 561${PYSITELIB}/mercurial/templates/monoblue/changelog.tmpl
557${PYSITELIB}/mercurial/templates/monoblue/changelogentry.tmpl 562${PYSITELIB}/mercurial/templates/monoblue/changelogentry.tmpl
558${PYSITELIB}/mercurial/templates/monoblue/changeset.tmpl 563${PYSITELIB}/mercurial/templates/monoblue/changeset.tmpl
559${PYSITELIB}/mercurial/templates/monoblue/error.tmpl 564${PYSITELIB}/mercurial/templates/monoblue/error.tmpl
560${PYSITELIB}/mercurial/templates/monoblue/fileannotate.tmpl 565${PYSITELIB}/mercurial/templates/monoblue/fileannotate.tmpl
561${PYSITELIB}/mercurial/templates/monoblue/filecomparison.tmpl 566${PYSITELIB}/mercurial/templates/monoblue/filecomparison.tmpl
562${PYSITELIB}/mercurial/templates/monoblue/filediff.tmpl 567${PYSITELIB}/mercurial/templates/monoblue/filediff.tmpl
563${PYSITELIB}/mercurial/templates/monoblue/filelog.tmpl 568${PYSITELIB}/mercurial/templates/monoblue/filelog.tmpl
564${PYSITELIB}/mercurial/templates/monoblue/filerevision.tmpl 569${PYSITELIB}/mercurial/templates/monoblue/filerevision.tmpl
565${PYSITELIB}/mercurial/templates/monoblue/footer.tmpl 570${PYSITELIB}/mercurial/templates/monoblue/footer.tmpl
566${PYSITELIB}/mercurial/templates/monoblue/graph.tmpl 571${PYSITELIB}/mercurial/templates/monoblue/graph.tmpl
567${PYSITELIB}/mercurial/templates/monoblue/header.tmpl 572${PYSITELIB}/mercurial/templates/monoblue/header.tmpl
568${PYSITELIB}/mercurial/templates/monoblue/help.tmpl 573${PYSITELIB}/mercurial/templates/monoblue/help.tmpl
569${PYSITELIB}/mercurial/templates/monoblue/helptopics.tmpl 574${PYSITELIB}/mercurial/templates/monoblue/helptopics.tmpl
570${PYSITELIB}/mercurial/templates/monoblue/index.tmpl 575${PYSITELIB}/mercurial/templates/monoblue/index.tmpl
571${PYSITELIB}/mercurial/templates/monoblue/manifest.tmpl 576${PYSITELIB}/mercurial/templates/monoblue/manifest.tmpl
572${PYSITELIB}/mercurial/templates/monoblue/map 577${PYSITELIB}/mercurial/templates/monoblue/map
573${PYSITELIB}/mercurial/templates/monoblue/notfound.tmpl 578${PYSITELIB}/mercurial/templates/monoblue/notfound.tmpl
574${PYSITELIB}/mercurial/templates/monoblue/search.tmpl 579${PYSITELIB}/mercurial/templates/monoblue/search.tmpl
575${PYSITELIB}/mercurial/templates/monoblue/shortlog.tmpl 580${PYSITELIB}/mercurial/templates/monoblue/shortlog.tmpl
576${PYSITELIB}/mercurial/templates/monoblue/summary.tmpl 581${PYSITELIB}/mercurial/templates/monoblue/summary.tmpl
577${PYSITELIB}/mercurial/templates/monoblue/tags.tmpl 582${PYSITELIB}/mercurial/templates/monoblue/tags.tmpl
578${PYSITELIB}/mercurial/templates/paper/bookmarks.tmpl 583${PYSITELIB}/mercurial/templates/paper/bookmarks.tmpl
579${PYSITELIB}/mercurial/templates/paper/branches.tmpl 584${PYSITELIB}/mercurial/templates/paper/branches.tmpl
580${PYSITELIB}/mercurial/templates/paper/changeset.tmpl 585${PYSITELIB}/mercurial/templates/paper/changeset.tmpl
581${PYSITELIB}/mercurial/templates/paper/diffstat.tmpl 586${PYSITELIB}/mercurial/templates/paper/diffstat.tmpl
582${PYSITELIB}/mercurial/templates/paper/error.tmpl 587${PYSITELIB}/mercurial/templates/paper/error.tmpl
583${PYSITELIB}/mercurial/templates/paper/fileannotate.tmpl 588${PYSITELIB}/mercurial/templates/paper/fileannotate.tmpl
584${PYSITELIB}/mercurial/templates/paper/filecomparison.tmpl 589${PYSITELIB}/mercurial/templates/paper/filecomparison.tmpl
585${PYSITELIB}/mercurial/templates/paper/filediff.tmpl 590${PYSITELIB}/mercurial/templates/paper/filediff.tmpl
586${PYSITELIB}/mercurial/templates/paper/filelog.tmpl 591${PYSITELIB}/mercurial/templates/paper/filelog.tmpl
587${PYSITELIB}/mercurial/templates/paper/filelogentry.tmpl 592${PYSITELIB}/mercurial/templates/paper/filelogentry.tmpl
588${PYSITELIB}/mercurial/templates/paper/filerevision.tmpl 593${PYSITELIB}/mercurial/templates/paper/filerevision.tmpl
589${PYSITELIB}/mercurial/templates/paper/footer.tmpl 594${PYSITELIB}/mercurial/templates/paper/footer.tmpl
590${PYSITELIB}/mercurial/templates/paper/graph.tmpl 595${PYSITELIB}/mercurial/templates/paper/graph.tmpl
591${PYSITELIB}/mercurial/templates/paper/header.tmpl 596${PYSITELIB}/mercurial/templates/paper/header.tmpl
592${PYSITELIB}/mercurial/templates/paper/help.tmpl 597${PYSITELIB}/mercurial/templates/paper/help.tmpl
593${PYSITELIB}/mercurial/templates/paper/helptopics.tmpl 598${PYSITELIB}/mercurial/templates/paper/helptopics.tmpl
594${PYSITELIB}/mercurial/templates/paper/index.tmpl 599${PYSITELIB}/mercurial/templates/paper/index.tmpl
595${PYSITELIB}/mercurial/templates/paper/manifest.tmpl 600${PYSITELIB}/mercurial/templates/paper/manifest.tmpl
596${PYSITELIB}/mercurial/templates/paper/map 601${PYSITELIB}/mercurial/templates/paper/map
597${PYSITELIB}/mercurial/templates/paper/notfound.tmpl 602${PYSITELIB}/mercurial/templates/paper/notfound.tmpl
598${PYSITELIB}/mercurial/templates/paper/search.tmpl 603${PYSITELIB}/mercurial/templates/paper/search.tmpl
599${PYSITELIB}/mercurial/templates/paper/shortlog.tmpl 604${PYSITELIB}/mercurial/templates/paper/shortlog.tmpl
600${PYSITELIB}/mercurial/templates/paper/shortlogentry.tmpl 605${PYSITELIB}/mercurial/templates/paper/shortlogentry.tmpl
601${PYSITELIB}/mercurial/templates/paper/tags.tmpl 606${PYSITELIB}/mercurial/templates/paper/tags.tmpl
 607${PYSITELIB}/mercurial/templates/raw/changelog.tmpl
602${PYSITELIB}/mercurial/templates/raw/changeset.tmpl 608${PYSITELIB}/mercurial/templates/raw/changeset.tmpl
603${PYSITELIB}/mercurial/templates/raw/error.tmpl 609${PYSITELIB}/mercurial/templates/raw/error.tmpl
604${PYSITELIB}/mercurial/templates/raw/fileannotate.tmpl 610${PYSITELIB}/mercurial/templates/raw/fileannotate.tmpl
605${PYSITELIB}/mercurial/templates/raw/filediff.tmpl 611${PYSITELIB}/mercurial/templates/raw/filediff.tmpl
606${PYSITELIB}/mercurial/templates/raw/graph.tmpl 612${PYSITELIB}/mercurial/templates/raw/graph.tmpl
607${PYSITELIB}/mercurial/templates/raw/graphedge.tmpl 613${PYSITELIB}/mercurial/templates/raw/graphedge.tmpl
608${PYSITELIB}/mercurial/templates/raw/graphnode.tmpl 614${PYSITELIB}/mercurial/templates/raw/graphnode.tmpl
609${PYSITELIB}/mercurial/templates/raw/index.tmpl 615${PYSITELIB}/mercurial/templates/raw/index.tmpl
 616${PYSITELIB}/mercurial/templates/raw/logentry.tmpl
610${PYSITELIB}/mercurial/templates/raw/manifest.tmpl 617${PYSITELIB}/mercurial/templates/raw/manifest.tmpl
611${PYSITELIB}/mercurial/templates/raw/map 618${PYSITELIB}/mercurial/templates/raw/map
612${PYSITELIB}/mercurial/templates/raw/notfound.tmpl 619${PYSITELIB}/mercurial/templates/raw/notfound.tmpl
 620${PYSITELIB}/mercurial/templates/raw/search.tmpl
613${PYSITELIB}/mercurial/templates/rss/bookmarkentry.tmpl 621${PYSITELIB}/mercurial/templates/rss/bookmarkentry.tmpl
614${PYSITELIB}/mercurial/templates/rss/bookmarks.tmpl 622${PYSITELIB}/mercurial/templates/rss/bookmarks.tmpl
615${PYSITELIB}/mercurial/templates/rss/branchentry.tmpl 623${PYSITELIB}/mercurial/templates/rss/branchentry.tmpl
616${PYSITELIB}/mercurial/templates/rss/branches.tmpl 624${PYSITELIB}/mercurial/templates/rss/branches.tmpl
617${PYSITELIB}/mercurial/templates/rss/changelog.tmpl 625${PYSITELIB}/mercurial/templates/rss/changelog.tmpl
618${PYSITELIB}/mercurial/templates/rss/changelogentry.tmpl 626${PYSITELIB}/mercurial/templates/rss/changelogentry.tmpl
619${PYSITELIB}/mercurial/templates/rss/error.tmpl 627${PYSITELIB}/mercurial/templates/rss/error.tmpl
620${PYSITELIB}/mercurial/templates/rss/filelog.tmpl 628${PYSITELIB}/mercurial/templates/rss/filelog.tmpl
621${PYSITELIB}/mercurial/templates/rss/filelogentry.tmpl 629${PYSITELIB}/mercurial/templates/rss/filelogentry.tmpl
622${PYSITELIB}/mercurial/templates/rss/header.tmpl 630${PYSITELIB}/mercurial/templates/rss/header.tmpl
623${PYSITELIB}/mercurial/templates/rss/map 631${PYSITELIB}/mercurial/templates/rss/map
624${PYSITELIB}/mercurial/templates/rss/tagentry.tmpl 632${PYSITELIB}/mercurial/templates/rss/tagentry.tmpl
625${PYSITELIB}/mercurial/templates/rss/tags.tmpl 633${PYSITELIB}/mercurial/templates/rss/tags.tmpl
626${PYSITELIB}/mercurial/templates/spartan/branches.tmpl 634${PYSITELIB}/mercurial/templates/spartan/branches.tmpl
627${PYSITELIB}/mercurial/templates/spartan/changelog.tmpl 635${PYSITELIB}/mercurial/templates/spartan/changelog.tmpl
628${PYSITELIB}/mercurial/templates/spartan/changelogentry.tmpl 636${PYSITELIB}/mercurial/templates/spartan/changelogentry.tmpl
629${PYSITELIB}/mercurial/templates/spartan/changeset.tmpl 637${PYSITELIB}/mercurial/templates/spartan/changeset.tmpl
630${PYSITELIB}/mercurial/templates/spartan/error.tmpl 638${PYSITELIB}/mercurial/templates/spartan/error.tmpl
631${PYSITELIB}/mercurial/templates/spartan/fileannotate.tmpl 639${PYSITELIB}/mercurial/templates/spartan/fileannotate.tmpl
632${PYSITELIB}/mercurial/templates/spartan/filediff.tmpl 640${PYSITELIB}/mercurial/templates/spartan/filediff.tmpl
633${PYSITELIB}/mercurial/templates/spartan/filelog.tmpl 641${PYSITELIB}/mercurial/templates/spartan/filelog.tmpl
634${PYSITELIB}/mercurial/templates/spartan/filelogentry.tmpl 642${PYSITELIB}/mercurial/templates/spartan/filelogentry.tmpl
635${PYSITELIB}/mercurial/templates/spartan/filerevision.tmpl 643${PYSITELIB}/mercurial/templates/spartan/filerevision.tmpl
636${PYSITELIB}/mercurial/templates/spartan/footer.tmpl 644${PYSITELIB}/mercurial/templates/spartan/footer.tmpl
637${PYSITELIB}/mercurial/templates/spartan/graph.tmpl 645${PYSITELIB}/mercurial/templates/spartan/graph.tmpl
638${PYSITELIB}/mercurial/templates/spartan/header.tmpl 646${PYSITELIB}/mercurial/templates/spartan/header.tmpl
639${PYSITELIB}/mercurial/templates/spartan/index.tmpl 647${PYSITELIB}/mercurial/templates/spartan/index.tmpl
640${PYSITELIB}/mercurial/templates/spartan/manifest.tmpl 648${PYSITELIB}/mercurial/templates/spartan/manifest.tmpl
641${PYSITELIB}/mercurial/templates/spartan/map 649${PYSITELIB}/mercurial/templates/spartan/map
642${PYSITELIB}/mercurial/templates/spartan/notfound.tmpl 650${PYSITELIB}/mercurial/templates/spartan/notfound.tmpl
643${PYSITELIB}/mercurial/templates/spartan/search.tmpl 651${PYSITELIB}/mercurial/templates/spartan/search.tmpl
644${PYSITELIB}/mercurial/templates/spartan/shortlog.tmpl 652${PYSITELIB}/mercurial/templates/spartan/shortlog.tmpl
645${PYSITELIB}/mercurial/templates/spartan/shortlogentry.tmpl 653${PYSITELIB}/mercurial/templates/spartan/shortlogentry.tmpl
646${PYSITELIB}/mercurial/templates/spartan/tags.tmpl 654${PYSITELIB}/mercurial/templates/spartan/tags.tmpl
647${PYSITELIB}/mercurial/templates/static/background.png 655${PYSITELIB}/mercurial/templates/static/background.png
648${PYSITELIB}/mercurial/templates/static/coal-file.png 656${PYSITELIB}/mercurial/templates/static/coal-file.png
649${PYSITELIB}/mercurial/templates/static/coal-folder.png 657${PYSITELIB}/mercurial/templates/static/coal-folder.png
650${PYSITELIB}/mercurial/templates/static/excanvas.js 658${PYSITELIB}/mercurial/templates/static/excanvas.js
651${PYSITELIB}/mercurial/templates/static/feed-icon-14x14.png 659${PYSITELIB}/mercurial/templates/static/feed-icon-14x14.png
652${PYSITELIB}/mercurial/templates/static/hgicon.png 660${PYSITELIB}/mercurial/templates/static/hgicon.png
653${PYSITELIB}/mercurial/templates/static/hglogo.png 661${PYSITELIB}/mercurial/templates/static/hglogo.png
654${PYSITELIB}/mercurial/templates/static/mercurial.js 662${PYSITELIB}/mercurial/templates/static/mercurial.js
655${PYSITELIB}/mercurial/templates/static/style-coal.css 663${PYSITELIB}/mercurial/templates/static/style-coal.css
656${PYSITELIB}/mercurial/templates/static/style-gitweb.css 664${PYSITELIB}/mercurial/templates/static/style-gitweb.css
657${PYSITELIB}/mercurial/templates/static/style-monoblue.css 665${PYSITELIB}/mercurial/templates/static/style-monoblue.css
658${PYSITELIB}/mercurial/templates/static/style-paper.css 666${PYSITELIB}/mercurial/templates/static/style-paper.css
659${PYSITELIB}/mercurial/templates/static/style.css 667${PYSITELIB}/mercurial/templates/static/style.css
660${PYSITELIB}/mercurial/transaction.py 668${PYSITELIB}/mercurial/transaction.py
661${PYSITELIB}/mercurial/transaction.pyc 669${PYSITELIB}/mercurial/transaction.pyc
662${PYSITELIB}/mercurial/transaction.pyo 670${PYSITELIB}/mercurial/transaction.pyo
663${PYSITELIB}/mercurial/treediscovery.py 671${PYSITELIB}/mercurial/treediscovery.py
664${PYSITELIB}/mercurial/treediscovery.pyc 672${PYSITELIB}/mercurial/treediscovery.pyc
665${PYSITELIB}/mercurial/treediscovery.pyo 673${PYSITELIB}/mercurial/treediscovery.pyo
666${PYSITELIB}/mercurial/ui.py 674${PYSITELIB}/mercurial/ui.py
667${PYSITELIB}/mercurial/ui.pyc 675${PYSITELIB}/mercurial/ui.pyc
668${PYSITELIB}/mercurial/ui.pyo 676${PYSITELIB}/mercurial/ui.pyo
669${PYSITELIB}/mercurial/unionrepo.py 677${PYSITELIB}/mercurial/unionrepo.py
670${PYSITELIB}/mercurial/unionrepo.pyc 678${PYSITELIB}/mercurial/unionrepo.pyc
671${PYSITELIB}/mercurial/unionrepo.pyo 679${PYSITELIB}/mercurial/unionrepo.pyo
672${PYSITELIB}/mercurial/url.py 680${PYSITELIB}/mercurial/url.py
673${PYSITELIB}/mercurial/url.pyc 681${PYSITELIB}/mercurial/url.pyc
674${PYSITELIB}/mercurial/url.pyo 682${PYSITELIB}/mercurial/url.pyo
675${PYSITELIB}/mercurial/util.py 683${PYSITELIB}/mercurial/util.py
676${PYSITELIB}/mercurial/util.pyc 684${PYSITELIB}/mercurial/util.pyc
677${PYSITELIB}/mercurial/util.pyo 685${PYSITELIB}/mercurial/util.pyo
678${PYSITELIB}/mercurial/verify.py 686${PYSITELIB}/mercurial/verify.py
679${PYSITELIB}/mercurial/verify.pyc 687${PYSITELIB}/mercurial/verify.pyc
680${PYSITELIB}/mercurial/verify.pyo 688${PYSITELIB}/mercurial/verify.pyo
681${PYSITELIB}/mercurial/win32.py 689${PYSITELIB}/mercurial/win32.py
682${PYSITELIB}/mercurial/win32.pyc 690${PYSITELIB}/mercurial/win32.pyc
683${PYSITELIB}/mercurial/win32.pyo 691${PYSITELIB}/mercurial/win32.pyo
684${PYSITELIB}/mercurial/windows.py 692${PYSITELIB}/mercurial/windows.py
685${PYSITELIB}/mercurial/windows.pyc 693${PYSITELIB}/mercurial/windows.pyc
686${PYSITELIB}/mercurial/windows.pyo 694${PYSITELIB}/mercurial/windows.pyo
687${PYSITELIB}/mercurial/wireproto.py 695${PYSITELIB}/mercurial/wireproto.py
688${PYSITELIB}/mercurial/wireproto.pyc 696${PYSITELIB}/mercurial/wireproto.pyc
689${PYSITELIB}/mercurial/wireproto.pyo 697${PYSITELIB}/mercurial/wireproto.pyo
690${PYSITELIB}/mercurial/worker.py 698${PYSITELIB}/mercurial/worker.py
691${PYSITELIB}/mercurial/worker.pyc 699${PYSITELIB}/mercurial/worker.pyc
692${PYSITELIB}/mercurial/worker.pyo 700${PYSITELIB}/mercurial/worker.pyo
693man/man1/hg.1 701man/man1/hg.1
694man/man5/hgignore.5 702man/man5/hgignore.5
695man/man5/hgrc.5 703man/man5/hgrc.5
696share/doc/mercurial/README 704share/doc/mercurial/README

cvs diff -r1.76 -r1.77 pkgsrc/devel/mercurial/Attic/distinfo (switch to unified diff)

--- pkgsrc/devel/mercurial/Attic/distinfo 2013/07/02 06:36:27 1.76
+++ pkgsrc/devel/mercurial/Attic/distinfo 2013/08/03 08:30:05 1.77
@@ -1,5 +1,5 @@ @@ -1,5 +1,5 @@
1$NetBSD: distinfo,v 1.76 2013/07/02 06:36:27 wiz Exp $ 1$NetBSD: distinfo,v 1.77 2013/08/03 08:30:05 wiz Exp $
2 2
3SHA1 (mercurial-2.6.3.tar.gz) = d42f6021c1f45e9cf761f07b6d34c8a7e45a4c8d 3SHA1 (mercurial-2.7.tar.gz) = 185be3422fd8e14167a6b188c89cc1e24be894f9
4RMD160 (mercurial-2.6.3.tar.gz) = 4f1f849ad606c3104cf9938741d5feb21fa9501f 4RMD160 (mercurial-2.7.tar.gz) = 792d0a69cab6a6a132a1d1c41f4d903cb9c519e9
5Size (mercurial-2.6.3.tar.gz) = 3736480 bytes 5Size (mercurial-2.7.tar.gz) = 3755724 bytes