Fri Jul 17 20:35:48 2009 UTC ()
Update to 1.3. Set LICENSE. Disallow Python-2.3 (see below).

Major Changes

    * experimental support for sub-repositories
    * Python 2.3 is no longer supported; now requires Python 2.4-2.6

Commands

    * merge: add -P/--preview option
    * update: don't unlink added files when -C/--clean is specified
    * update: added -c/--check option to abort on local changes
    * update: allow merges going backwards
    * push: improved handling of named branches
    * branches/heads: add a -c/--closed option to show closed branches
    * help: new extensions topic

General

    * add patch.eol config setting to work with cross-platform patches
    * fixed support for SSL through proxies
    * add ability to load hooks from arbitrary Python modules
    * hide passwords for HTTP repositories in error and log output
    * fix Python 2.6 support in the Windows installer
    * add mechanism for specifying HTTP authentication details in hgrc
    * prompts and choices are now shown even in non-interactive mode
    * performance improvements, especially on Windows
    * much improved zsh completion
    * improved Danish, Japanese, Italian and simplified Chinese translations
    * new German, French, Greek, Brazilian Portuguese and traditional Chinese translations

Web interface

    * read configuration data from webdir configs
    * add branches page to hgweb
    * pluggable templater engine support
    * refresh hgwebdir configuration periodically
    * let web.encoding override ui.encoding setting
    * deal with dicts/lists like webdir config paths

Extensions

    * experimental share extension
    * the alias extension has been moved into core
    * mq
          o add -P/--push option to qimport
          o numerous bug fixes
    * convert
          o improved source detection
          o support for comments in author maps
          o add branch map support
          o add different ordering options
          o svn: support OS-specific authn providers
          o svn: improved tag support
          o git: add committer tag only when needed
          o bzr: fix renaming support
          o bzr: add support for filemaps
          o bzr: handle timestamps correctly
          o bzr: fix symlink handling
          o bzr: restore paths to source encoding
          o cvs: add support for CVS merge(point)s
          o cvs: add support for synthetic revisions
          o cvs: better support for branchpoints
          o cvs: deprecate use of external cvsps
          o mtn: improve renaming support
          o mtn: support mtn database files as source
          o mtn: improve date/time support
          o p4: better handling of keywords, binary files and symlinks
    * rebase
          o don't lose copy/rename info
          o keep original mq patch format
    * zeroconf
          o advertise repositories by hostname
          o try to guess IP address if necessary
    * patchbomb
          o option to set attachment name
          o support for In-Reply-To header
    * inotify
          o fix handling of untracked files moved out of repository
          o fix support for directory deletion
    * acl: now works with push over https


(wiz)
diff -r1.30 -r1.31 pkgsrc/devel/mercurial/Makefile
diff -r1.14 -r1.15 pkgsrc/devel/mercurial/PLIST
diff -r1.21 -r1.22 pkgsrc/devel/mercurial/distinfo

cvs diff -r1.30 -r1.31 pkgsrc/devel/mercurial/Makefile (expand / switch to unified diff)

--- pkgsrc/devel/mercurial/Makefile 2009/07/16 22:12:17 1.30
+++ pkgsrc/devel/mercurial/Makefile 2009/07/17 20:35:48 1.31
@@ -1,31 +1,33 @@ @@ -1,31 +1,33 @@
1# $NetBSD: Makefile,v 1.30 2009/07/16 22:12:17 zafer Exp $ 1# $NetBSD: Makefile,v 1.31 2009/07/17 20:35:48 wiz Exp $
2# 2#
3 3
4DISTNAME= mercurial-1.2.1 4DISTNAME= mercurial-1.3
5CATEGORIES= devel scm 5CATEGORIES= devel scm
6MASTER_SITES= http://mercurial.selenic.com/release/ 6MASTER_SITES= http://mercurial.selenic.com/release/
7 7
8MAINTAINER= wiz@NetBSD.org 8MAINTAINER= wiz@NetBSD.org
9HOMEPAGE= http://mercurial.selenic.com/wiki/ 9HOMEPAGE= http://mercurial.selenic.com/wiki/
10COMMENT= Fast, lightweight source control management system 10COMMENT= Fast, lightweight source control management system
11 11LICENSE= gnu-gpl-v2
12PKG_DESTDIR_SUPPORT= user-destdir 
13 12
14BUILD_DEPENDS+= xmlto-[0-9]*:../../textproc/xmlto 13BUILD_DEPENDS+= xmlto-[0-9]*:../../textproc/xmlto
15BUILD_DEPENDS+= asciidoc-[0-9]*:../../textproc/asciidoc 14BUILD_DEPENDS+= asciidoc-[0-9]*:../../textproc/asciidoc
16 15
17PY_PATCHPLIST= yes 16PKG_DESTDIR_SUPPORT= user-destdir
18PYDISTUTILSPKG= yes 17
19USE_TOOLS+= gmake msgfmt 18PY_PATCHPLIST= yes
 19PYDISTUTILSPKG= yes
 20PYTHON_VERSIONS_INCOMPATIBLE= 23
 21USE_TOOLS+= gmake msgfmt
20 22
21INSTALLATION_DIRS= bin ${PKGMANDIR}/man1 ${PKGMANDIR}/man5 23INSTALLATION_DIRS= bin ${PKGMANDIR}/man1 ${PKGMANDIR}/man5
22 24
23post-install: 25post-install:
24 ${INSTALL_DATA} ${WRKSRC}/doc/*.1 ${DESTDIR}${PREFIX}/${PKGMANDIR}/man1 26 ${INSTALL_DATA} ${WRKSRC}/doc/*.1 ${DESTDIR}${PREFIX}/${PKGMANDIR}/man1
25 ${INSTALL_DATA} ${WRKSRC}/doc/*.5 ${DESTDIR}${PREFIX}/${PKGMANDIR}/man5 27 ${INSTALL_DATA} ${WRKSRC}/doc/*.5 ${DESTDIR}${PREFIX}/${PKGMANDIR}/man5
26 ${INSTALL_DATA_DIR} ${DESTDIR}${PREFIX}/share/doc/mercurial 28 ${INSTALL_DATA_DIR} ${DESTDIR}${PREFIX}/share/doc/mercurial
27 ${INSTALL_DATA} ${WRKSRC}/README \ 29 ${INSTALL_DATA} ${WRKSRC}/README \
28 ${DESTDIR}${PREFIX}/share/doc/mercurial 30 ${DESTDIR}${PREFIX}/share/doc/mercurial
29 31
30.include "../../lang/python/extension.mk" 32.include "../../lang/python/extension.mk"
31.include "../../mk/bsd.pkg.mk" 33.include "../../mk/bsd.pkg.mk"

cvs diff -r1.14 -r1.15 pkgsrc/devel/mercurial/Attic/PLIST (expand / switch to unified diff)

--- pkgsrc/devel/mercurial/Attic/PLIST 2009/06/14 17:48:58 1.14
+++ pkgsrc/devel/mercurial/Attic/PLIST 2009/07/17 20:35:48 1.15
@@ -1,24 +1,21 @@ @@ -1,24 +1,21 @@
1@comment $NetBSD: PLIST,v 1.14 2009/06/14 17:48:58 joerg Exp $ 1@comment $NetBSD: PLIST,v 1.15 2009/07/17 20:35:48 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/alias.py 
10${PYSITELIB}/hgext/alias.pyc 
11${PYSITELIB}/hgext/alias.pyo 
12${PYSITELIB}/hgext/bookmarks.py 9${PYSITELIB}/hgext/bookmarks.py
13${PYSITELIB}/hgext/bookmarks.pyc 10${PYSITELIB}/hgext/bookmarks.pyc
14${PYSITELIB}/hgext/bookmarks.pyo 11${PYSITELIB}/hgext/bookmarks.pyo
15${PYSITELIB}/hgext/bugzilla.py 12${PYSITELIB}/hgext/bugzilla.py
16${PYSITELIB}/hgext/bugzilla.pyc 13${PYSITELIB}/hgext/bugzilla.pyc
17${PYSITELIB}/hgext/bugzilla.pyo 14${PYSITELIB}/hgext/bugzilla.pyo
18${PYSITELIB}/hgext/children.py 15${PYSITELIB}/hgext/children.py
19${PYSITELIB}/hgext/children.pyc 16${PYSITELIB}/hgext/children.pyc
20${PYSITELIB}/hgext/children.pyo 17${PYSITELIB}/hgext/children.pyo
21${PYSITELIB}/hgext/churn.py 18${PYSITELIB}/hgext/churn.py
22${PYSITELIB}/hgext/churn.pyc 19${PYSITELIB}/hgext/churn.pyc
23${PYSITELIB}/hgext/churn.pyo 20${PYSITELIB}/hgext/churn.pyo
24${PYSITELIB}/hgext/color.py 21${PYSITELIB}/hgext/color.py
@@ -113,26 +110,29 @@ ${PYSITELIB}/hgext/parentrevspec.pyc @@ -113,26 +110,29 @@ ${PYSITELIB}/hgext/parentrevspec.pyc
113${PYSITELIB}/hgext/parentrevspec.pyo 110${PYSITELIB}/hgext/parentrevspec.pyo
114${PYSITELIB}/hgext/patchbomb.py 111${PYSITELIB}/hgext/patchbomb.py
115${PYSITELIB}/hgext/patchbomb.pyc 112${PYSITELIB}/hgext/patchbomb.pyc
116${PYSITELIB}/hgext/patchbomb.pyo 113${PYSITELIB}/hgext/patchbomb.pyo
117${PYSITELIB}/hgext/purge.py 114${PYSITELIB}/hgext/purge.py
118${PYSITELIB}/hgext/purge.pyc 115${PYSITELIB}/hgext/purge.pyc
119${PYSITELIB}/hgext/purge.pyo 116${PYSITELIB}/hgext/purge.pyo
120${PYSITELIB}/hgext/rebase.py 117${PYSITELIB}/hgext/rebase.py
121${PYSITELIB}/hgext/rebase.pyc 118${PYSITELIB}/hgext/rebase.pyc
122${PYSITELIB}/hgext/rebase.pyo 119${PYSITELIB}/hgext/rebase.pyo
123${PYSITELIB}/hgext/record.py 120${PYSITELIB}/hgext/record.py
124${PYSITELIB}/hgext/record.pyc 121${PYSITELIB}/hgext/record.pyc
125${PYSITELIB}/hgext/record.pyo 122${PYSITELIB}/hgext/record.pyo
 123${PYSITELIB}/hgext/share.py
 124${PYSITELIB}/hgext/share.pyc
 125${PYSITELIB}/hgext/share.pyo
126${PYSITELIB}/hgext/transplant.py 126${PYSITELIB}/hgext/transplant.py
127${PYSITELIB}/hgext/transplant.pyc 127${PYSITELIB}/hgext/transplant.pyc
128${PYSITELIB}/hgext/transplant.pyo 128${PYSITELIB}/hgext/transplant.pyo
129${PYSITELIB}/hgext/win32mbcs.py 129${PYSITELIB}/hgext/win32mbcs.py
130${PYSITELIB}/hgext/win32mbcs.pyc 130${PYSITELIB}/hgext/win32mbcs.pyc
131${PYSITELIB}/hgext/win32mbcs.pyo 131${PYSITELIB}/hgext/win32mbcs.pyo
132${PYSITELIB}/hgext/win32text.py 132${PYSITELIB}/hgext/win32text.py
133${PYSITELIB}/hgext/win32text.pyc 133${PYSITELIB}/hgext/win32text.pyc
134${PYSITELIB}/hgext/win32text.pyo 134${PYSITELIB}/hgext/win32text.pyo
135${PYSITELIB}/hgext/zeroconf/Zeroconf.py 135${PYSITELIB}/hgext/zeroconf/Zeroconf.py
136${PYSITELIB}/hgext/zeroconf/Zeroconf.pyc 136${PYSITELIB}/hgext/zeroconf/Zeroconf.pyc
137${PYSITELIB}/hgext/zeroconf/Zeroconf.pyo 137${PYSITELIB}/hgext/zeroconf/Zeroconf.pyo
138${PYSITELIB}/hgext/zeroconf/__init__.py 138${PYSITELIB}/hgext/zeroconf/__init__.py
@@ -160,42 +160,48 @@ ${PYSITELIB}/mercurial/byterange.pyc @@ -160,42 +160,48 @@ ${PYSITELIB}/mercurial/byterange.pyc
160${PYSITELIB}/mercurial/byterange.pyo 160${PYSITELIB}/mercurial/byterange.pyo
161${PYSITELIB}/mercurial/changegroup.py 161${PYSITELIB}/mercurial/changegroup.py
162${PYSITELIB}/mercurial/changegroup.pyc 162${PYSITELIB}/mercurial/changegroup.pyc
163${PYSITELIB}/mercurial/changegroup.pyo 163${PYSITELIB}/mercurial/changegroup.pyo
164${PYSITELIB}/mercurial/changelog.py 164${PYSITELIB}/mercurial/changelog.py
165${PYSITELIB}/mercurial/changelog.pyc 165${PYSITELIB}/mercurial/changelog.pyc
166${PYSITELIB}/mercurial/changelog.pyo 166${PYSITELIB}/mercurial/changelog.pyo
167${PYSITELIB}/mercurial/cmdutil.py 167${PYSITELIB}/mercurial/cmdutil.py
168${PYSITELIB}/mercurial/cmdutil.pyc 168${PYSITELIB}/mercurial/cmdutil.pyc
169${PYSITELIB}/mercurial/cmdutil.pyo 169${PYSITELIB}/mercurial/cmdutil.pyo
170${PYSITELIB}/mercurial/commands.py 170${PYSITELIB}/mercurial/commands.py
171${PYSITELIB}/mercurial/commands.pyc 171${PYSITELIB}/mercurial/commands.pyc
172${PYSITELIB}/mercurial/commands.pyo 172${PYSITELIB}/mercurial/commands.pyo
 173${PYSITELIB}/mercurial/config.py
 174${PYSITELIB}/mercurial/config.pyc
 175${PYSITELIB}/mercurial/config.pyo
173${PYSITELIB}/mercurial/context.py 176${PYSITELIB}/mercurial/context.py
174${PYSITELIB}/mercurial/context.pyc 177${PYSITELIB}/mercurial/context.pyc
175${PYSITELIB}/mercurial/context.pyo 178${PYSITELIB}/mercurial/context.pyo
176${PYSITELIB}/mercurial/copies.py 179${PYSITELIB}/mercurial/copies.py
177${PYSITELIB}/mercurial/copies.pyc 180${PYSITELIB}/mercurial/copies.pyc
178${PYSITELIB}/mercurial/copies.pyo 181${PYSITELIB}/mercurial/copies.pyo
179${PYSITELIB}/mercurial/demandimport.py 182${PYSITELIB}/mercurial/demandimport.py
180${PYSITELIB}/mercurial/demandimport.pyc 183${PYSITELIB}/mercurial/demandimport.pyc
181${PYSITELIB}/mercurial/demandimport.pyo 184${PYSITELIB}/mercurial/demandimport.pyo
182${PYSITELIB}/mercurial/diffhelpers.so 185${PYSITELIB}/mercurial/diffhelpers.so
183${PYSITELIB}/mercurial/dirstate.py 186${PYSITELIB}/mercurial/dirstate.py
184${PYSITELIB}/mercurial/dirstate.pyc 187${PYSITELIB}/mercurial/dirstate.pyc
185${PYSITELIB}/mercurial/dirstate.pyo 188${PYSITELIB}/mercurial/dirstate.pyo
186${PYSITELIB}/mercurial/dispatch.py 189${PYSITELIB}/mercurial/dispatch.py
187${PYSITELIB}/mercurial/dispatch.pyc 190${PYSITELIB}/mercurial/dispatch.pyc
188${PYSITELIB}/mercurial/dispatch.pyo 191${PYSITELIB}/mercurial/dispatch.pyo
 192${PYSITELIB}/mercurial/encoding.py
 193${PYSITELIB}/mercurial/encoding.pyc
 194${PYSITELIB}/mercurial/encoding.pyo
189${PYSITELIB}/mercurial/error.py 195${PYSITELIB}/mercurial/error.py
190${PYSITELIB}/mercurial/error.pyc 196${PYSITELIB}/mercurial/error.pyc
191${PYSITELIB}/mercurial/error.pyo 197${PYSITELIB}/mercurial/error.pyo
192${PYSITELIB}/mercurial/extensions.py 198${PYSITELIB}/mercurial/extensions.py
193${PYSITELIB}/mercurial/extensions.pyc 199${PYSITELIB}/mercurial/extensions.pyc
194${PYSITELIB}/mercurial/extensions.pyo 200${PYSITELIB}/mercurial/extensions.pyo
195${PYSITELIB}/mercurial/fancyopts.py 201${PYSITELIB}/mercurial/fancyopts.py
196${PYSITELIB}/mercurial/fancyopts.pyc 202${PYSITELIB}/mercurial/fancyopts.pyc
197${PYSITELIB}/mercurial/fancyopts.pyo 203${PYSITELIB}/mercurial/fancyopts.pyo
198${PYSITELIB}/mercurial/filelog.py 204${PYSITELIB}/mercurial/filelog.py
199${PYSITELIB}/mercurial/filelog.pyc 205${PYSITELIB}/mercurial/filelog.pyc
200${PYSITELIB}/mercurial/filelog.pyo 206${PYSITELIB}/mercurial/filelog.pyo
201${PYSITELIB}/mercurial/filemerge.py 207${PYSITELIB}/mercurial/filemerge.py
@@ -243,72 +249,89 @@ ${PYSITELIB}/mercurial/hgweb/webutil.pyo @@ -243,72 +249,89 @@ ${PYSITELIB}/mercurial/hgweb/webutil.pyo
243${PYSITELIB}/mercurial/hgweb/wsgicgi.py 249${PYSITELIB}/mercurial/hgweb/wsgicgi.py
244${PYSITELIB}/mercurial/hgweb/wsgicgi.pyc 250${PYSITELIB}/mercurial/hgweb/wsgicgi.pyc
245${PYSITELIB}/mercurial/hgweb/wsgicgi.pyo 251${PYSITELIB}/mercurial/hgweb/wsgicgi.pyo
246${PYSITELIB}/mercurial/hook.py 252${PYSITELIB}/mercurial/hook.py
247${PYSITELIB}/mercurial/hook.pyc 253${PYSITELIB}/mercurial/hook.pyc
248${PYSITELIB}/mercurial/hook.pyo 254${PYSITELIB}/mercurial/hook.pyo
249${PYSITELIB}/mercurial/httprepo.py 255${PYSITELIB}/mercurial/httprepo.py
250${PYSITELIB}/mercurial/httprepo.pyc 256${PYSITELIB}/mercurial/httprepo.pyc
251${PYSITELIB}/mercurial/httprepo.pyo 257${PYSITELIB}/mercurial/httprepo.pyo
252${PYSITELIB}/mercurial/i18n.py 258${PYSITELIB}/mercurial/i18n.py
253${PYSITELIB}/mercurial/i18n.pyc 259${PYSITELIB}/mercurial/i18n.pyc
254${PYSITELIB}/mercurial/i18n.pyo 260${PYSITELIB}/mercurial/i18n.pyo
255${PYSITELIB}/mercurial/i18n/da.po 261${PYSITELIB}/mercurial/i18n/da.po
 262${PYSITELIB}/mercurial/i18n/de.po
 263${PYSITELIB}/mercurial/i18n/el.po
 264${PYSITELIB}/mercurial/i18n/fr.po
 265${PYSITELIB}/mercurial/i18n/hggettext
256${PYSITELIB}/mercurial/i18n/it.po 266${PYSITELIB}/mercurial/i18n/it.po
257${PYSITELIB}/mercurial/i18n/ja.po 267${PYSITELIB}/mercurial/i18n/ja.po
258${PYSITELIB}/mercurial/i18n/zh.po 268${PYSITELIB}/mercurial/i18n/pt_BR.po
 269${PYSITELIB}/mercurial/i18n/zh_CN.po
 270${PYSITELIB}/mercurial/i18n/zh_TW.po
259${PYSITELIB}/mercurial/ignore.py 271${PYSITELIB}/mercurial/ignore.py
260${PYSITELIB}/mercurial/ignore.pyc 272${PYSITELIB}/mercurial/ignore.pyc
261${PYSITELIB}/mercurial/ignore.pyo 273${PYSITELIB}/mercurial/ignore.pyo
262${PYSITELIB}/mercurial/keepalive.py 274${PYSITELIB}/mercurial/keepalive.py
263${PYSITELIB}/mercurial/keepalive.pyc 275${PYSITELIB}/mercurial/keepalive.pyc
264${PYSITELIB}/mercurial/keepalive.pyo 276${PYSITELIB}/mercurial/keepalive.pyo
265${PYSITELIB}/mercurial/locale/da/LC_MESSAGES/hg.mo 277${PYSITELIB}/mercurial/locale/da/LC_MESSAGES/hg.mo
 278${PYSITELIB}/mercurial/locale/de/LC_MESSAGES/hg.mo
 279${PYSITELIB}/mercurial/locale/el/LC_MESSAGES/hg.mo
 280${PYSITELIB}/mercurial/locale/fr/LC_MESSAGES/hg.mo
266${PYSITELIB}/mercurial/locale/it/LC_MESSAGES/hg.mo 281${PYSITELIB}/mercurial/locale/it/LC_MESSAGES/hg.mo
267${PYSITELIB}/mercurial/locale/ja/LC_MESSAGES/hg.mo 282${PYSITELIB}/mercurial/locale/ja/LC_MESSAGES/hg.mo
268${PYSITELIB}/mercurial/locale/zh/LC_MESSAGES/hg.mo 283${PYSITELIB}/mercurial/locale/pt_BR/LC_MESSAGES/hg.mo
 284${PYSITELIB}/mercurial/locale/zh_CN/LC_MESSAGES/hg.mo
 285${PYSITELIB}/mercurial/locale/zh_TW/LC_MESSAGES/hg.mo
269${PYSITELIB}/mercurial/localrepo.py 286${PYSITELIB}/mercurial/localrepo.py
270${PYSITELIB}/mercurial/localrepo.pyc 287${PYSITELIB}/mercurial/localrepo.pyc
271${PYSITELIB}/mercurial/localrepo.pyo 288${PYSITELIB}/mercurial/localrepo.pyo
272${PYSITELIB}/mercurial/lock.py 289${PYSITELIB}/mercurial/lock.py
273${PYSITELIB}/mercurial/lock.pyc 290${PYSITELIB}/mercurial/lock.pyc
274${PYSITELIB}/mercurial/lock.pyo 291${PYSITELIB}/mercurial/lock.pyo
275${PYSITELIB}/mercurial/lsprof.py 292${PYSITELIB}/mercurial/lsprof.py
276${PYSITELIB}/mercurial/lsprof.pyc 293${PYSITELIB}/mercurial/lsprof.pyc
277${PYSITELIB}/mercurial/lsprof.pyo 294${PYSITELIB}/mercurial/lsprof.pyo
 295${PYSITELIB}/mercurial/lsprofcalltree.py
 296${PYSITELIB}/mercurial/lsprofcalltree.pyc
 297${PYSITELIB}/mercurial/lsprofcalltree.pyo
278${PYSITELIB}/mercurial/mail.py 298${PYSITELIB}/mercurial/mail.py
279${PYSITELIB}/mercurial/mail.pyc 299${PYSITELIB}/mercurial/mail.pyc
280${PYSITELIB}/mercurial/mail.pyo 300${PYSITELIB}/mercurial/mail.pyo
281${PYSITELIB}/mercurial/manifest.py 301${PYSITELIB}/mercurial/manifest.py
282${PYSITELIB}/mercurial/manifest.pyc 302${PYSITELIB}/mercurial/manifest.pyc
283${PYSITELIB}/mercurial/manifest.pyo 303${PYSITELIB}/mercurial/manifest.pyo
284${PYSITELIB}/mercurial/match.py 304${PYSITELIB}/mercurial/match.py
285${PYSITELIB}/mercurial/match.pyc 305${PYSITELIB}/mercurial/match.pyc
286${PYSITELIB}/mercurial/match.pyo 306${PYSITELIB}/mercurial/match.pyo
287${PYSITELIB}/mercurial/mdiff.py 307${PYSITELIB}/mercurial/mdiff.py
288${PYSITELIB}/mercurial/mdiff.pyc 308${PYSITELIB}/mercurial/mdiff.pyc
289${PYSITELIB}/mercurial/mdiff.pyo 309${PYSITELIB}/mercurial/mdiff.pyo
290${PYSITELIB}/mercurial/merge.py 310${PYSITELIB}/mercurial/merge.py
291${PYSITELIB}/mercurial/merge.pyc 311${PYSITELIB}/mercurial/merge.pyc
292${PYSITELIB}/mercurial/merge.pyo 312${PYSITELIB}/mercurial/merge.pyo
293${PYSITELIB}/mercurial/mpatch.so 313${PYSITELIB}/mercurial/mpatch.so
294${PYSITELIB}/mercurial/node.py 314${PYSITELIB}/mercurial/node.py
295${PYSITELIB}/mercurial/node.pyc 315${PYSITELIB}/mercurial/node.pyc
296${PYSITELIB}/mercurial/node.pyo 316${PYSITELIB}/mercurial/node.pyo
297${PYSITELIB}/mercurial/osutil.so 317${PYSITELIB}/mercurial/osutil.so
298${PYSITELIB}/mercurial/parsers.so 318${PYSITELIB}/mercurial/parsers.so
299${PYSITELIB}/mercurial/patch.py 319${PYSITELIB}/mercurial/patch.py
300${PYSITELIB}/mercurial/patch.pyc 320${PYSITELIB}/mercurial/patch.pyc
301${PYSITELIB}/mercurial/patch.pyo 321${PYSITELIB}/mercurial/patch.pyo
 322${PYSITELIB}/mercurial/posix.py
 323${PYSITELIB}/mercurial/posix.pyc
 324${PYSITELIB}/mercurial/posix.pyo
302${PYSITELIB}/mercurial/repair.py 325${PYSITELIB}/mercurial/repair.py
303${PYSITELIB}/mercurial/repair.pyc 326${PYSITELIB}/mercurial/repair.pyc
304${PYSITELIB}/mercurial/repair.pyo 327${PYSITELIB}/mercurial/repair.pyo
305${PYSITELIB}/mercurial/repo.py 328${PYSITELIB}/mercurial/repo.py
306${PYSITELIB}/mercurial/repo.pyc 329${PYSITELIB}/mercurial/repo.pyc
307${PYSITELIB}/mercurial/repo.pyo 330${PYSITELIB}/mercurial/repo.pyo
308${PYSITELIB}/mercurial/revlog.py 331${PYSITELIB}/mercurial/revlog.py
309${PYSITELIB}/mercurial/revlog.pyc 332${PYSITELIB}/mercurial/revlog.pyc
310${PYSITELIB}/mercurial/revlog.pyo 333${PYSITELIB}/mercurial/revlog.pyo
311${PYSITELIB}/mercurial/simplemerge.py 334${PYSITELIB}/mercurial/simplemerge.py
312${PYSITELIB}/mercurial/simplemerge.pyc 335${PYSITELIB}/mercurial/simplemerge.pyc
313${PYSITELIB}/mercurial/simplemerge.pyo 336${PYSITELIB}/mercurial/simplemerge.pyo
314${PYSITELIB}/mercurial/sshrepo.py 337${PYSITELIB}/mercurial/sshrepo.py
@@ -319,83 +342,89 @@ ${PYSITELIB}/mercurial/sshserver.pyc @@ -319,83 +342,89 @@ ${PYSITELIB}/mercurial/sshserver.pyc
319${PYSITELIB}/mercurial/sshserver.pyo 342${PYSITELIB}/mercurial/sshserver.pyo
320${PYSITELIB}/mercurial/statichttprepo.py 343${PYSITELIB}/mercurial/statichttprepo.py
321${PYSITELIB}/mercurial/statichttprepo.pyc 344${PYSITELIB}/mercurial/statichttprepo.pyc
322${PYSITELIB}/mercurial/statichttprepo.pyo 345${PYSITELIB}/mercurial/statichttprepo.pyo
323${PYSITELIB}/mercurial/store.py 346${PYSITELIB}/mercurial/store.py
324${PYSITELIB}/mercurial/store.pyc 347${PYSITELIB}/mercurial/store.pyc
325${PYSITELIB}/mercurial/store.pyo 348${PYSITELIB}/mercurial/store.pyo
326${PYSITELIB}/mercurial/streamclone.py 349${PYSITELIB}/mercurial/streamclone.py
327${PYSITELIB}/mercurial/streamclone.pyc 350${PYSITELIB}/mercurial/streamclone.pyc
328${PYSITELIB}/mercurial/streamclone.pyo 351${PYSITELIB}/mercurial/streamclone.pyo
329${PYSITELIB}/mercurial/strutil.py 352${PYSITELIB}/mercurial/strutil.py
330${PYSITELIB}/mercurial/strutil.pyc 353${PYSITELIB}/mercurial/strutil.pyc
331${PYSITELIB}/mercurial/strutil.pyo 354${PYSITELIB}/mercurial/strutil.pyo
 355${PYSITELIB}/mercurial/subrepo.py
 356${PYSITELIB}/mercurial/subrepo.pyc
 357${PYSITELIB}/mercurial/subrepo.pyo
332${PYSITELIB}/mercurial/templatefilters.py 358${PYSITELIB}/mercurial/templatefilters.py
333${PYSITELIB}/mercurial/templatefilters.pyc 359${PYSITELIB}/mercurial/templatefilters.pyc
334${PYSITELIB}/mercurial/templatefilters.pyo 360${PYSITELIB}/mercurial/templatefilters.pyo
335${PYSITELIB}/mercurial/templater.py 361${PYSITELIB}/mercurial/templater.py
336${PYSITELIB}/mercurial/templater.pyc 362${PYSITELIB}/mercurial/templater.pyc
337${PYSITELIB}/mercurial/templater.pyo 363${PYSITELIB}/mercurial/templater.pyo
338${PYSITELIB}/mercurial/templates/atom/changelog.tmpl 364${PYSITELIB}/mercurial/templates/atom/changelog.tmpl
339${PYSITELIB}/mercurial/templates/atom/changelogentry.tmpl 365${PYSITELIB}/mercurial/templates/atom/changelogentry.tmpl
340${PYSITELIB}/mercurial/templates/atom/error.tmpl 366${PYSITELIB}/mercurial/templates/atom/error.tmpl
341${PYSITELIB}/mercurial/templates/atom/filelog.tmpl 367${PYSITELIB}/mercurial/templates/atom/filelog.tmpl
342${PYSITELIB}/mercurial/templates/atom/header.tmpl 368${PYSITELIB}/mercurial/templates/atom/header.tmpl
343${PYSITELIB}/mercurial/templates/atom/map 369${PYSITELIB}/mercurial/templates/atom/map
344${PYSITELIB}/mercurial/templates/atom/tagentry.tmpl 370${PYSITELIB}/mercurial/templates/atom/tagentry.tmpl
345${PYSITELIB}/mercurial/templates/atom/tags.tmpl 371${PYSITELIB}/mercurial/templates/atom/tags.tmpl
346${PYSITELIB}/mercurial/templates/coal/header.tmpl 372${PYSITELIB}/mercurial/templates/coal/header.tmpl
347${PYSITELIB}/mercurial/templates/coal/map 373${PYSITELIB}/mercurial/templates/coal/map
 374${PYSITELIB}/mercurial/templates/gitweb/branches.tmpl
348${PYSITELIB}/mercurial/templates/gitweb/changelog.tmpl 375${PYSITELIB}/mercurial/templates/gitweb/changelog.tmpl
349${PYSITELIB}/mercurial/templates/gitweb/changelogentry.tmpl 376${PYSITELIB}/mercurial/templates/gitweb/changelogentry.tmpl
350${PYSITELIB}/mercurial/templates/gitweb/changeset.tmpl 377${PYSITELIB}/mercurial/templates/gitweb/changeset.tmpl
351${PYSITELIB}/mercurial/templates/gitweb/error.tmpl 378${PYSITELIB}/mercurial/templates/gitweb/error.tmpl
352${PYSITELIB}/mercurial/templates/gitweb/fileannotate.tmpl 379${PYSITELIB}/mercurial/templates/gitweb/fileannotate.tmpl
353${PYSITELIB}/mercurial/templates/gitweb/filediff.tmpl 380${PYSITELIB}/mercurial/templates/gitweb/filediff.tmpl
354${PYSITELIB}/mercurial/templates/gitweb/filelog.tmpl 381${PYSITELIB}/mercurial/templates/gitweb/filelog.tmpl
355${PYSITELIB}/mercurial/templates/gitweb/filerevision.tmpl 382${PYSITELIB}/mercurial/templates/gitweb/filerevision.tmpl
356${PYSITELIB}/mercurial/templates/gitweb/footer.tmpl 383${PYSITELIB}/mercurial/templates/gitweb/footer.tmpl
357${PYSITELIB}/mercurial/templates/gitweb/graph.tmpl 384${PYSITELIB}/mercurial/templates/gitweb/graph.tmpl
358${PYSITELIB}/mercurial/templates/gitweb/header.tmpl 385${PYSITELIB}/mercurial/templates/gitweb/header.tmpl
359${PYSITELIB}/mercurial/templates/gitweb/index.tmpl 386${PYSITELIB}/mercurial/templates/gitweb/index.tmpl
360${PYSITELIB}/mercurial/templates/gitweb/manifest.tmpl 387${PYSITELIB}/mercurial/templates/gitweb/manifest.tmpl
361${PYSITELIB}/mercurial/templates/gitweb/map 388${PYSITELIB}/mercurial/templates/gitweb/map
362${PYSITELIB}/mercurial/templates/gitweb/notfound.tmpl 389${PYSITELIB}/mercurial/templates/gitweb/notfound.tmpl
363${PYSITELIB}/mercurial/templates/gitweb/search.tmpl 390${PYSITELIB}/mercurial/templates/gitweb/search.tmpl
364${PYSITELIB}/mercurial/templates/gitweb/shortlog.tmpl 391${PYSITELIB}/mercurial/templates/gitweb/shortlog.tmpl
365${PYSITELIB}/mercurial/templates/gitweb/summary.tmpl 392${PYSITELIB}/mercurial/templates/gitweb/summary.tmpl
366${PYSITELIB}/mercurial/templates/gitweb/tags.tmpl 393${PYSITELIB}/mercurial/templates/gitweb/tags.tmpl
367${PYSITELIB}/mercurial/templates/map-cmdline.changelog 394${PYSITELIB}/mercurial/templates/map-cmdline.changelog
368${PYSITELIB}/mercurial/templates/map-cmdline.compact 395${PYSITELIB}/mercurial/templates/map-cmdline.compact
369${PYSITELIB}/mercurial/templates/map-cmdline.default 396${PYSITELIB}/mercurial/templates/map-cmdline.default
 397${PYSITELIB}/mercurial/templates/monoblue/branches.tmpl
370${PYSITELIB}/mercurial/templates/monoblue/changelog.tmpl 398${PYSITELIB}/mercurial/templates/monoblue/changelog.tmpl
371${PYSITELIB}/mercurial/templates/monoblue/changelogentry.tmpl 399${PYSITELIB}/mercurial/templates/monoblue/changelogentry.tmpl
372${PYSITELIB}/mercurial/templates/monoblue/changeset.tmpl 400${PYSITELIB}/mercurial/templates/monoblue/changeset.tmpl
373${PYSITELIB}/mercurial/templates/monoblue/error.tmpl 401${PYSITELIB}/mercurial/templates/monoblue/error.tmpl
374${PYSITELIB}/mercurial/templates/monoblue/fileannotate.tmpl 402${PYSITELIB}/mercurial/templates/monoblue/fileannotate.tmpl
375${PYSITELIB}/mercurial/templates/monoblue/filediff.tmpl 403${PYSITELIB}/mercurial/templates/monoblue/filediff.tmpl
376${PYSITELIB}/mercurial/templates/monoblue/filelog.tmpl 404${PYSITELIB}/mercurial/templates/monoblue/filelog.tmpl
377${PYSITELIB}/mercurial/templates/monoblue/filerevision.tmpl 405${PYSITELIB}/mercurial/templates/monoblue/filerevision.tmpl
378${PYSITELIB}/mercurial/templates/monoblue/footer.tmpl 406${PYSITELIB}/mercurial/templates/monoblue/footer.tmpl
379${PYSITELIB}/mercurial/templates/monoblue/graph.tmpl 407${PYSITELIB}/mercurial/templates/monoblue/graph.tmpl
380${PYSITELIB}/mercurial/templates/monoblue/header.tmpl 408${PYSITELIB}/mercurial/templates/monoblue/header.tmpl
381${PYSITELIB}/mercurial/templates/monoblue/index.tmpl 409${PYSITELIB}/mercurial/templates/monoblue/index.tmpl
382${PYSITELIB}/mercurial/templates/monoblue/manifest.tmpl 410${PYSITELIB}/mercurial/templates/monoblue/manifest.tmpl
383${PYSITELIB}/mercurial/templates/monoblue/map 411${PYSITELIB}/mercurial/templates/monoblue/map
384${PYSITELIB}/mercurial/templates/monoblue/notfound.tmpl 412${PYSITELIB}/mercurial/templates/monoblue/notfound.tmpl
385${PYSITELIB}/mercurial/templates/monoblue/search.tmpl 413${PYSITELIB}/mercurial/templates/monoblue/search.tmpl
386${PYSITELIB}/mercurial/templates/monoblue/shortlog.tmpl 414${PYSITELIB}/mercurial/templates/monoblue/shortlog.tmpl
387${PYSITELIB}/mercurial/templates/monoblue/summary.tmpl 415${PYSITELIB}/mercurial/templates/monoblue/summary.tmpl
388${PYSITELIB}/mercurial/templates/monoblue/tags.tmpl 416${PYSITELIB}/mercurial/templates/monoblue/tags.tmpl
 417${PYSITELIB}/mercurial/templates/paper/branches.tmpl
389${PYSITELIB}/mercurial/templates/paper/changeset.tmpl 418${PYSITELIB}/mercurial/templates/paper/changeset.tmpl
390${PYSITELIB}/mercurial/templates/paper/error.tmpl 419${PYSITELIB}/mercurial/templates/paper/error.tmpl
391${PYSITELIB}/mercurial/templates/paper/fileannotate.tmpl 420${PYSITELIB}/mercurial/templates/paper/fileannotate.tmpl
392${PYSITELIB}/mercurial/templates/paper/filediff.tmpl 421${PYSITELIB}/mercurial/templates/paper/filediff.tmpl
393${PYSITELIB}/mercurial/templates/paper/filelog.tmpl 422${PYSITELIB}/mercurial/templates/paper/filelog.tmpl
394${PYSITELIB}/mercurial/templates/paper/filelogentry.tmpl 423${PYSITELIB}/mercurial/templates/paper/filelogentry.tmpl
395${PYSITELIB}/mercurial/templates/paper/filerevision.tmpl 424${PYSITELIB}/mercurial/templates/paper/filerevision.tmpl
396${PYSITELIB}/mercurial/templates/paper/footer.tmpl 425${PYSITELIB}/mercurial/templates/paper/footer.tmpl
397${PYSITELIB}/mercurial/templates/paper/graph.tmpl 426${PYSITELIB}/mercurial/templates/paper/graph.tmpl
398${PYSITELIB}/mercurial/templates/paper/header.tmpl 427${PYSITELIB}/mercurial/templates/paper/header.tmpl
399${PYSITELIB}/mercurial/templates/paper/index.tmpl 428${PYSITELIB}/mercurial/templates/paper/index.tmpl
400${PYSITELIB}/mercurial/templates/paper/manifest.tmpl 429${PYSITELIB}/mercurial/templates/paper/manifest.tmpl
401${PYSITELIB}/mercurial/templates/paper/map 430${PYSITELIB}/mercurial/templates/paper/map
@@ -411,26 +440,27 @@ ${PYSITELIB}/mercurial/templates/raw/fil @@ -411,26 +440,27 @@ ${PYSITELIB}/mercurial/templates/raw/fil
411${PYSITELIB}/mercurial/templates/raw/index.tmpl 440${PYSITELIB}/mercurial/templates/raw/index.tmpl
412${PYSITELIB}/mercurial/templates/raw/manifest.tmpl 441${PYSITELIB}/mercurial/templates/raw/manifest.tmpl
413${PYSITELIB}/mercurial/templates/raw/map 442${PYSITELIB}/mercurial/templates/raw/map
414${PYSITELIB}/mercurial/templates/raw/notfound.tmpl 443${PYSITELIB}/mercurial/templates/raw/notfound.tmpl
415${PYSITELIB}/mercurial/templates/rss/changelog.tmpl 444${PYSITELIB}/mercurial/templates/rss/changelog.tmpl
416${PYSITELIB}/mercurial/templates/rss/changelogentry.tmpl 445${PYSITELIB}/mercurial/templates/rss/changelogentry.tmpl
417${PYSITELIB}/mercurial/templates/rss/error.tmpl 446${PYSITELIB}/mercurial/templates/rss/error.tmpl
418${PYSITELIB}/mercurial/templates/rss/filelog.tmpl 447${PYSITELIB}/mercurial/templates/rss/filelog.tmpl
419${PYSITELIB}/mercurial/templates/rss/filelogentry.tmpl 448${PYSITELIB}/mercurial/templates/rss/filelogentry.tmpl
420${PYSITELIB}/mercurial/templates/rss/header.tmpl 449${PYSITELIB}/mercurial/templates/rss/header.tmpl
421${PYSITELIB}/mercurial/templates/rss/map 450${PYSITELIB}/mercurial/templates/rss/map
422${PYSITELIB}/mercurial/templates/rss/tagentry.tmpl 451${PYSITELIB}/mercurial/templates/rss/tagentry.tmpl
423${PYSITELIB}/mercurial/templates/rss/tags.tmpl 452${PYSITELIB}/mercurial/templates/rss/tags.tmpl
 453${PYSITELIB}/mercurial/templates/spartan/branches.tmpl
424${PYSITELIB}/mercurial/templates/spartan/changelog.tmpl 454${PYSITELIB}/mercurial/templates/spartan/changelog.tmpl
425${PYSITELIB}/mercurial/templates/spartan/changelogentry.tmpl 455${PYSITELIB}/mercurial/templates/spartan/changelogentry.tmpl
426${PYSITELIB}/mercurial/templates/spartan/changeset.tmpl 456${PYSITELIB}/mercurial/templates/spartan/changeset.tmpl
427${PYSITELIB}/mercurial/templates/spartan/error.tmpl 457${PYSITELIB}/mercurial/templates/spartan/error.tmpl
428${PYSITELIB}/mercurial/templates/spartan/fileannotate.tmpl 458${PYSITELIB}/mercurial/templates/spartan/fileannotate.tmpl
429${PYSITELIB}/mercurial/templates/spartan/filediff.tmpl 459${PYSITELIB}/mercurial/templates/spartan/filediff.tmpl
430${PYSITELIB}/mercurial/templates/spartan/filelog.tmpl 460${PYSITELIB}/mercurial/templates/spartan/filelog.tmpl
431${PYSITELIB}/mercurial/templates/spartan/filelogentry.tmpl 461${PYSITELIB}/mercurial/templates/spartan/filelogentry.tmpl
432${PYSITELIB}/mercurial/templates/spartan/filerevision.tmpl 462${PYSITELIB}/mercurial/templates/spartan/filerevision.tmpl
433${PYSITELIB}/mercurial/templates/spartan/footer.tmpl 463${PYSITELIB}/mercurial/templates/spartan/footer.tmpl
434${PYSITELIB}/mercurial/templates/spartan/graph.tmpl 464${PYSITELIB}/mercurial/templates/spartan/graph.tmpl
435${PYSITELIB}/mercurial/templates/spartan/header.tmpl 465${PYSITELIB}/mercurial/templates/spartan/header.tmpl
436${PYSITELIB}/mercurial/templates/spartan/index.tmpl 466${PYSITELIB}/mercurial/templates/spartan/index.tmpl
@@ -456,23 +486,26 @@ ${PYSITELIB}/mercurial/templates/static/ @@ -456,23 +486,26 @@ ${PYSITELIB}/mercurial/templates/static/
456${PYSITELIB}/mercurial/templates/template-vars.txt 486${PYSITELIB}/mercurial/templates/template-vars.txt
457${PYSITELIB}/mercurial/transaction.py 487${PYSITELIB}/mercurial/transaction.py
458${PYSITELIB}/mercurial/transaction.pyc 488${PYSITELIB}/mercurial/transaction.pyc
459${PYSITELIB}/mercurial/transaction.pyo 489${PYSITELIB}/mercurial/transaction.pyo
460${PYSITELIB}/mercurial/ui.py 490${PYSITELIB}/mercurial/ui.py
461${PYSITELIB}/mercurial/ui.pyc 491${PYSITELIB}/mercurial/ui.pyc
462${PYSITELIB}/mercurial/ui.pyo 492${PYSITELIB}/mercurial/ui.pyo
463${PYSITELIB}/mercurial/url.py 493${PYSITELIB}/mercurial/url.py
464${PYSITELIB}/mercurial/url.pyc 494${PYSITELIB}/mercurial/url.pyc
465${PYSITELIB}/mercurial/url.pyo 495${PYSITELIB}/mercurial/url.pyo
466${PYSITELIB}/mercurial/util.py 496${PYSITELIB}/mercurial/util.py
467${PYSITELIB}/mercurial/util.pyc 497${PYSITELIB}/mercurial/util.pyc
468${PYSITELIB}/mercurial/util.pyo 498${PYSITELIB}/mercurial/util.pyo
469${PYSITELIB}/mercurial/util_win32.py 
470${PYSITELIB}/mercurial/util_win32.pyc 
471${PYSITELIB}/mercurial/util_win32.pyo 
472${PYSITELIB}/mercurial/verify.py 499${PYSITELIB}/mercurial/verify.py
473${PYSITELIB}/mercurial/verify.pyc 500${PYSITELIB}/mercurial/verify.pyc
474${PYSITELIB}/mercurial/verify.pyo 501${PYSITELIB}/mercurial/verify.pyo
 502${PYSITELIB}/mercurial/win32.py
 503${PYSITELIB}/mercurial/win32.pyc
 504${PYSITELIB}/mercurial/win32.pyo
 505${PYSITELIB}/mercurial/windows.py
 506${PYSITELIB}/mercurial/windows.pyc
 507${PYSITELIB}/mercurial/windows.pyo
475man/man1/hg.1 508man/man1/hg.1
476man/man5/hgignore.5 509man/man5/hgignore.5
477man/man5/hgrc.5 510man/man5/hgrc.5
478share/doc/mercurial/README 511share/doc/mercurial/README

cvs diff -r1.21 -r1.22 pkgsrc/devel/mercurial/Attic/distinfo (expand / switch to unified diff)

--- pkgsrc/devel/mercurial/Attic/distinfo 2009/03/22 09:40:01 1.21
+++ pkgsrc/devel/mercurial/Attic/distinfo 2009/07/17 20:35:48 1.22
@@ -1,5 +1,5 @@ @@ -1,5 +1,5 @@
1$NetBSD: distinfo,v 1.21 2009/03/22 09:40:01 wiz Exp $ 1$NetBSD: distinfo,v 1.22 2009/07/17 20:35:48 wiz Exp $
2 2
3SHA1 (mercurial-1.2.1.tar.gz) = f40282bbb17fedb08b16aa7a4eeb1da7b6a6f1cb 3SHA1 (mercurial-1.3.tar.gz) = af1bfc2817e0719124593e4ec03f0056a4b2870c
4RMD160 (mercurial-1.2.1.tar.gz) = 37c94e5ef9cdc639fe23622ddaf97b2230ec2216 4RMD160 (mercurial-1.3.tar.gz) = 20032f18a2bbe1d60969567299bb9ca3392fe6d9
5Size (mercurial-1.2.1.tar.gz) = 1269393 bytes 5Size (mercurial-1.3.tar.gz) = 1768227 bytes