Update to 0.9.5:
New features: * Handle symlinks on systems without symlink support * hg archive supports symlinks * Display executable/symlink bit with "hg manifest -v" (see UpgradeNotes) * Improved hg verify diagostics * Faster revlog handling * Faster handling of large directories * Greatly improved handling of large files * Atom syndication support in hgweb * Improved test suite with parallel execution Fixes: * Fixes for some file copy and rename corner cases * Allow moving newly-added files before commit * Improve hg diff whitespace handling * Disallow fast-forward merge with an ancestor * Fix adding untracked files on directory renames * Fix hg archive %r format specifier * Fix re: and glob: patterns in .hgignore * Improve hg executable path resolution * Many options and hgrc parsing improvements * Better handling of VFAT filesystems on Linux * Fix tgz archival on Windows * Fix hg serve on Windows requiring pywin32 modules * Fix --profile under Windows New extensions: * alias - allow user-defined command aliases * children - show the children of the given or working dir revision * imerge - incremental interactive merging * interhg - modify changelog text as in InterWiki * record - darcs-style interactive change selection during commit New extension features: * convert * Now supports Subversion, Darcs and Mercurial as source SCMs * Use clone's behaviour for the default destination name * Force encoding to UTF-8 for converted repository * Support new-style .cvspass file format * Filter the files and directories to import * Remap paths to new locations during import * hgk * Fix hgk stopping because of untrusted repository warnings * Handle filenames with spaces * Improved documentation * mq * Autodetect --git patches on qrefresh
This commit is contained in:
parent
c89eeadb50
commit
d119f1d3fa
3 changed files with 54 additions and 7 deletions
|
@ -1,7 +1,7 @@
|
|||
# $NetBSD: Makefile,v 1.14 2007/07/03 17:24:53 wiz Exp $
|
||||
# $NetBSD: Makefile,v 1.15 2007/10/26 14:42:23 wiz Exp $
|
||||
#
|
||||
|
||||
DISTNAME= mercurial-0.9.4
|
||||
DISTNAME= mercurial-0.9.5
|
||||
CATEGORIES= devel scm
|
||||
MASTER_SITES= http://www.selenic.com/mercurial/release/
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
@comment $NetBSD: PLIST,v 1.9 2007/07/03 17:24:53 wiz Exp $
|
||||
@comment $NetBSD: PLIST,v 1.10 2007/10/26 14:42:23 wiz Exp $
|
||||
bin/hg
|
||||
bin/hgmerge
|
||||
${PYSITELIB}/hgext/__init__.py
|
||||
|
@ -7,9 +7,15 @@ ${PYSITELIB}/hgext/__init__.pyo
|
|||
${PYSITELIB}/hgext/acl.py
|
||||
${PYSITELIB}/hgext/acl.pyc
|
||||
${PYSITELIB}/hgext/acl.pyo
|
||||
${PYSITELIB}/hgext/alias.py
|
||||
${PYSITELIB}/hgext/alias.pyc
|
||||
${PYSITELIB}/hgext/alias.pyo
|
||||
${PYSITELIB}/hgext/bugzilla.py
|
||||
${PYSITELIB}/hgext/bugzilla.pyc
|
||||
${PYSITELIB}/hgext/bugzilla.pyo
|
||||
${PYSITELIB}/hgext/children.py
|
||||
${PYSITELIB}/hgext/children.pyc
|
||||
${PYSITELIB}/hgext/children.pyo
|
||||
${PYSITELIB}/hgext/convert/__init__.py
|
||||
${PYSITELIB}/hgext/convert/__init__.pyc
|
||||
${PYSITELIB}/hgext/convert/__init__.pyo
|
||||
|
@ -19,12 +25,24 @@ ${PYSITELIB}/hgext/convert/common.pyo
|
|||
${PYSITELIB}/hgext/convert/cvs.py
|
||||
${PYSITELIB}/hgext/convert/cvs.pyc
|
||||
${PYSITELIB}/hgext/convert/cvs.pyo
|
||||
${PYSITELIB}/hgext/convert/darcs.py
|
||||
${PYSITELIB}/hgext/convert/darcs.pyc
|
||||
${PYSITELIB}/hgext/convert/darcs.pyo
|
||||
${PYSITELIB}/hgext/convert/filemap.py
|
||||
${PYSITELIB}/hgext/convert/filemap.pyc
|
||||
${PYSITELIB}/hgext/convert/filemap.pyo
|
||||
${PYSITELIB}/hgext/convert/git.py
|
||||
${PYSITELIB}/hgext/convert/git.pyc
|
||||
${PYSITELIB}/hgext/convert/git.pyo
|
||||
${PYSITELIB}/hgext/convert/hg.py
|
||||
${PYSITELIB}/hgext/convert/hg.pyc
|
||||
${PYSITELIB}/hgext/convert/hg.pyo
|
||||
${PYSITELIB}/hgext/convert/subversion.py
|
||||
${PYSITELIB}/hgext/convert/subversion.pyc
|
||||
${PYSITELIB}/hgext/convert/subversion.pyo
|
||||
${PYSITELIB}/hgext/convert/transport.py
|
||||
${PYSITELIB}/hgext/convert/transport.pyc
|
||||
${PYSITELIB}/hgext/convert/transport.pyo
|
||||
${PYSITELIB}/hgext/extdiff.py
|
||||
${PYSITELIB}/hgext/extdiff.pyc
|
||||
${PYSITELIB}/hgext/extdiff.pyo
|
||||
|
@ -43,18 +61,30 @@ ${PYSITELIB}/hgext/hbisect.pyo
|
|||
${PYSITELIB}/hgext/hgk.py
|
||||
${PYSITELIB}/hgext/hgk.pyc
|
||||
${PYSITELIB}/hgext/hgk.pyo
|
||||
${PYSITELIB}/hgext/imerge.py
|
||||
${PYSITELIB}/hgext/imerge.pyc
|
||||
${PYSITELIB}/hgext/imerge.pyo
|
||||
${PYSITELIB}/hgext/interhg.py
|
||||
${PYSITELIB}/hgext/interhg.pyc
|
||||
${PYSITELIB}/hgext/interhg.pyo
|
||||
${PYSITELIB}/hgext/mq.py
|
||||
${PYSITELIB}/hgext/mq.pyc
|
||||
${PYSITELIB}/hgext/mq.pyo
|
||||
${PYSITELIB}/hgext/notify.py
|
||||
${PYSITELIB}/hgext/notify.pyc
|
||||
${PYSITELIB}/hgext/notify.pyo
|
||||
${PYSITELIB}/hgext/parentrevspec.py
|
||||
${PYSITELIB}/hgext/parentrevspec.pyc
|
||||
${PYSITELIB}/hgext/parentrevspec.pyo
|
||||
${PYSITELIB}/hgext/patchbomb.py
|
||||
${PYSITELIB}/hgext/patchbomb.pyc
|
||||
${PYSITELIB}/hgext/patchbomb.pyo
|
||||
${PYSITELIB}/hgext/purge.py
|
||||
${PYSITELIB}/hgext/purge.pyc
|
||||
${PYSITELIB}/hgext/purge.pyo
|
||||
${PYSITELIB}/hgext/record.py
|
||||
${PYSITELIB}/hgext/record.pyc
|
||||
${PYSITELIB}/hgext/record.pyo
|
||||
${PYSITELIB}/hgext/transplant.py
|
||||
${PYSITELIB}/hgext/transplant.pyc
|
||||
${PYSITELIB}/hgext/transplant.pyo
|
||||
|
@ -99,9 +129,13 @@ ${PYSITELIB}/mercurial/context.pyo
|
|||
${PYSITELIB}/mercurial/demandimport.py
|
||||
${PYSITELIB}/mercurial/demandimport.pyc
|
||||
${PYSITELIB}/mercurial/demandimport.pyo
|
||||
${PYSITELIB}/mercurial/diffhelpers.so
|
||||
${PYSITELIB}/mercurial/dirstate.py
|
||||
${PYSITELIB}/mercurial/dirstate.pyc
|
||||
${PYSITELIB}/mercurial/dirstate.pyo
|
||||
${PYSITELIB}/mercurial/dispatch.py
|
||||
${PYSITELIB}/mercurial/dispatch.pyc
|
||||
${PYSITELIB}/mercurial/dispatch.pyo
|
||||
${PYSITELIB}/mercurial/extensions.py
|
||||
${PYSITELIB}/mercurial/extensions.pyc
|
||||
${PYSITELIB}/mercurial/extensions.pyo
|
||||
|
@ -181,6 +215,10 @@ ${PYSITELIB}/mercurial/mpatch.so
|
|||
${PYSITELIB}/mercurial/node.py
|
||||
${PYSITELIB}/mercurial/node.pyc
|
||||
${PYSITELIB}/mercurial/node.pyo
|
||||
${PYSITELIB}/mercurial/osutil.py
|
||||
${PYSITELIB}/mercurial/osutil.pyc
|
||||
${PYSITELIB}/mercurial/osutil.pyo
|
||||
${PYSITELIB}/mercurial/osutil.so
|
||||
${PYSITELIB}/mercurial/patch.py
|
||||
${PYSITELIB}/mercurial/patch.pyc
|
||||
${PYSITELIB}/mercurial/patch.pyo
|
||||
|
@ -214,6 +252,13 @@ ${PYSITELIB}/mercurial/strutil.pyo
|
|||
${PYSITELIB}/mercurial/templater.py
|
||||
${PYSITELIB}/mercurial/templater.pyc
|
||||
${PYSITELIB}/mercurial/templater.pyo
|
||||
${PYSITELIB}/mercurial/templates/atom/changelog.tmpl
|
||||
${PYSITELIB}/mercurial/templates/atom/changelogentry.tmpl
|
||||
${PYSITELIB}/mercurial/templates/atom/filelog.tmpl
|
||||
${PYSITELIB}/mercurial/templates/atom/header.tmpl
|
||||
${PYSITELIB}/mercurial/templates/atom/map
|
||||
${PYSITELIB}/mercurial/templates/atom/tagentry.tmpl
|
||||
${PYSITELIB}/mercurial/templates/atom/tags.tmpl
|
||||
${PYSITELIB}/mercurial/templates/changelog.tmpl
|
||||
${PYSITELIB}/mercurial/templates/changelogentry.tmpl
|
||||
${PYSITELIB}/mercurial/templates/changeset.tmpl
|
||||
|
@ -237,6 +282,7 @@ ${PYSITELIB}/mercurial/templates/gitweb/header.tmpl
|
|||
${PYSITELIB}/mercurial/templates/gitweb/index.tmpl
|
||||
${PYSITELIB}/mercurial/templates/gitweb/manifest.tmpl
|
||||
${PYSITELIB}/mercurial/templates/gitweb/map
|
||||
${PYSITELIB}/mercurial/templates/gitweb/notfound.tmpl
|
||||
${PYSITELIB}/mercurial/templates/gitweb/search.tmpl
|
||||
${PYSITELIB}/mercurial/templates/gitweb/shortlog.tmpl
|
||||
${PYSITELIB}/mercurial/templates/gitweb/summary.tmpl
|
||||
|
@ -317,6 +363,7 @@ share/doc/mercurial/README
|
|||
@dirrm ${PYSITELIB}/mercurial/templates/raw
|
||||
@dirrm ${PYSITELIB}/mercurial/templates/old
|
||||
@dirrm ${PYSITELIB}/mercurial/templates/gitweb
|
||||
@dirrm ${PYSITELIB}/mercurial/templates/atom
|
||||
@dirrm ${PYSITELIB}/mercurial/templates
|
||||
@dirrm ${PYSITELIB}/mercurial/hgweb
|
||||
@dirrm ${PYSITELIB}/mercurial
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
$NetBSD: distinfo,v 1.9 2007/07/03 17:24:53 wiz Exp $
|
||||
$NetBSD: distinfo,v 1.10 2007/10/26 14:42:23 wiz Exp $
|
||||
|
||||
SHA1 (mercurial-0.9.4.tar.gz) = 8dbebd76ab59611177b8385bbb97c9a40fe71683
|
||||
RMD160 (mercurial-0.9.4.tar.gz) = bd70a49a98f53cd8bd553ca555fc25fd953ff538
|
||||
Size (mercurial-0.9.4.tar.gz) = 586918 bytes
|
||||
SHA1 (mercurial-0.9.5.tar.gz) = 889a83f4cdcead93323d7cf4276751cc20396455
|
||||
RMD160 (mercurial-0.9.5.tar.gz) = ea38d3142a4b1087e2777de3b70df8b4672cd237
|
||||
Size (mercurial-0.9.5.tar.gz) = 670808 bytes
|
||||
SHA1 (patch-aa) = 82eaf7bd589ab6c50912ea36496475923f6ae3db
|
||||
|
|
Loading…
Reference in a new issue