summaryrefslogtreecommitdiff
path: root/devel/mercurial
diff options
context:
space:
mode:
authorwiz <wiz@pkgsrc.org>2006-05-30 21:10:56 +0000
committerwiz <wiz@pkgsrc.org>2006-05-30 21:10:56 +0000
commit7043b67ef73daa9405c33f0436f86a91fd506db6 (patch)
treee56390358adb701c426fb11e506cd5852e5eb9a7 /devel/mercurial
parent617dd0efe184ab7f47c3c0a3f995b25aee137d71 (diff)
downloadpkgsrc-7043b67ef73daa9405c33f0436f86a91fd506db6.tar.gz
Update to 0.9:
Major changes between Mercurial 0.8.1 and 0.9: - The repository file format has been improved. - This has resulted in an average 40% reduction in disk space usage. - The new format (called RevlogNG) is now the default. - Mercurial works perfectly with both the old and new repository file formats. It can transfer changes transparently between repositories of either format. - To use the new repository format, simply use `hg clone --pull` to clone an existing repository. - Note: Versions 0.8.1 and earlier of Mercurial cannot read RevlogNG repositories directly, but they can `clone`, `pull` from, and `push` to servers that are serving RevlogNG repositories. - Memory usage has been improved by over 50% for many common operations. - Substantial performance improvements on large repositories. - New commands: - 'archive' - generate a directory tree snapshot, tarball, or zip file of a revision - Deprecated commands: - 'addremove' - replaced by 'add' and 'remove --after' - 'forget' - replaced by 'revert' - 'undo' - replaced by 'rollback' - New extensions: - Bugzilla integration hook - Email notification hook - Nested repositories are now supported. Mercurial will not recurse into a subdirectory that contains a '.hg' directory. It is treated as a separate repository. - The standalone web server, 'hg serve', is now threaded, so it can talk to multiple clients at a time. - The web server can now display a "message of the day". - Support added for hooks written in Python. - Many improvements and clarifications to built-in help. Sort PLIST.
Diffstat (limited to 'devel/mercurial')
-rw-r--r--devel/mercurial/Makefile4
-rw-r--r--devel/mercurial/PLIST28
-rw-r--r--devel/mercurial/distinfo8
3 files changed, 26 insertions, 14 deletions
diff --git a/devel/mercurial/Makefile b/devel/mercurial/Makefile
index 460588ba2b2..e755159378a 100644
--- a/devel/mercurial/Makefile
+++ b/devel/mercurial/Makefile
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.8 2006/04/08 23:21:38 minskim Exp $
+# $NetBSD: Makefile,v 1.9 2006/05/30 21:10:56 wiz Exp $
#
-DISTNAME= mercurial-0.8.1
+DISTNAME= mercurial-0.9
CATEGORIES= devel
MASTER_SITES= http://www.selenic.com/mercurial/release/
diff --git a/devel/mercurial/PLIST b/devel/mercurial/PLIST
index dd1d327bfad..5b8a09268dc 100644
--- a/devel/mercurial/PLIST
+++ b/devel/mercurial/PLIST
@@ -1,9 +1,12 @@
-@comment $NetBSD: PLIST,v 1.4 2006/04/08 23:21:38 minskim Exp $
+@comment $NetBSD: PLIST,v 1.5 2006/05/30 21:10:56 wiz Exp $
bin/hg
bin/hgmerge
${PYSITELIB}/hgext/__init__.py
${PYSITELIB}/hgext/__init__.pyc
${PYSITELIB}/hgext/__init__.pyo
+${PYSITELIB}/hgext/bugzilla.py
+${PYSITELIB}/hgext/bugzilla.pyc
+${PYSITELIB}/hgext/bugzilla.pyo
${PYSITELIB}/hgext/gpg.py
${PYSITELIB}/hgext/gpg.pyc
${PYSITELIB}/hgext/gpg.pyo
@@ -13,6 +16,9 @@ ${PYSITELIB}/hgext/hbisect.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/patchbomb.py
${PYSITELIB}/hgext/patchbomb.pyc
${PYSITELIB}/hgext/patchbomb.pyo
@@ -28,6 +34,9 @@ ${PYSITELIB}/mercurial/__version__.pyo
${PYSITELIB}/mercurial/appendfile.py
${PYSITELIB}/mercurial/appendfile.pyc
${PYSITELIB}/mercurial/appendfile.pyo
+${PYSITELIB}/mercurial/archival.py
+${PYSITELIB}/mercurial/archival.pyc
+${PYSITELIB}/mercurial/archival.pyo
${PYSITELIB}/mercurial/bdiff.so
${PYSITELIB}/mercurial/bundlerepo.py
${PYSITELIB}/mercurial/bundlerepo.pyc
@@ -105,6 +114,9 @@ ${PYSITELIB}/mercurial/sshrepo.pyo
${PYSITELIB}/mercurial/statichttprepo.py
${PYSITELIB}/mercurial/statichttprepo.pyc
${PYSITELIB}/mercurial/statichttprepo.pyo
+${PYSITELIB}/mercurial/templater.py
+${PYSITELIB}/mercurial/templater.pyc
+${PYSITELIB}/mercurial/templater.pyo
${PYSITELIB}/mercurial/templates/changelog-gitweb.tmpl
${PYSITELIB}/mercurial/templates/changelog-rss.tmpl
${PYSITELIB}/mercurial/templates/changelog.tmpl
@@ -127,7 +139,6 @@ ${PYSITELIB}/mercurial/templates/filelog.tmpl
${PYSITELIB}/mercurial/templates/filelogentry-rss.tmpl
${PYSITELIB}/mercurial/templates/filelogentry.tmpl
${PYSITELIB}/mercurial/templates/filerevision-gitweb.tmpl
-${PYSITELIB}/mercurial/templates/filerevision-raw.tmpl
${PYSITELIB}/mercurial/templates/filerevision.tmpl
${PYSITELIB}/mercurial/templates/footer-gitweb.tmpl
${PYSITELIB}/mercurial/templates/footer.tmpl
@@ -149,17 +160,14 @@ ${PYSITELIB}/mercurial/templates/notfound.tmpl
${PYSITELIB}/mercurial/templates/search-gitweb.tmpl
${PYSITELIB}/mercurial/templates/search.tmpl
${PYSITELIB}/mercurial/templates/shortlog-gitweb.tmpl
+${PYSITELIB}/mercurial/templates/static/hgicon.png
+${PYSITELIB}/mercurial/templates/static/style-gitweb.css
+${PYSITELIB}/mercurial/templates/static/style.css
${PYSITELIB}/mercurial/templates/summary-gitweb.tmpl
${PYSITELIB}/mercurial/templates/tagentry-rss.tmpl
${PYSITELIB}/mercurial/templates/tags-gitweb.tmpl
${PYSITELIB}/mercurial/templates/tags-rss.tmpl
${PYSITELIB}/mercurial/templates/tags.tmpl
-${PYSITELIB}/mercurial/templates/static/hgicon.png
-${PYSITELIB}/mercurial/templates/static/style-gitweb.css
-${PYSITELIB}/mercurial/templates/static/style.css
-${PYSITELIB}/mercurial/templater.py
-${PYSITELIB}/mercurial/templater.pyc
-${PYSITELIB}/mercurial/templater.pyo
${PYSITELIB}/mercurial/transaction.py
${PYSITELIB}/mercurial/transaction.pyc
${PYSITELIB}/mercurial/transaction.pyo
@@ -169,11 +177,15 @@ ${PYSITELIB}/mercurial/ui.pyo
${PYSITELIB}/mercurial/util.py
${PYSITELIB}/mercurial/util.pyc
${PYSITELIB}/mercurial/util.pyo
+${PYSITELIB}/mercurial/util_win32.py
+${PYSITELIB}/mercurial/util_win32.pyc
+${PYSITELIB}/mercurial/util_win32.pyo
${PYSITELIB}/mercurial/version.py
${PYSITELIB}/mercurial/version.pyc
${PYSITELIB}/mercurial/version.pyo
man/man1/hg.1
man/man1/hgmerge.1
+man/man5/hgignore.5
man/man5/hgrc.5
share/doc/mercurial/README
share/doc/mercurial/comparison.txt
diff --git a/devel/mercurial/distinfo b/devel/mercurial/distinfo
index 5a00b197d31..d6c99182e2e 100644
--- a/devel/mercurial/distinfo
+++ b/devel/mercurial/distinfo
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.4 2006/04/08 23:21:38 minskim Exp $
+$NetBSD: distinfo,v 1.5 2006/05/30 21:10:56 wiz Exp $
-SHA1 (mercurial-0.8.1.tar.gz) = 7d71b6d0f73ec8b90d774b5251e69023e1ca7857
-RMD160 (mercurial-0.8.1.tar.gz) = 0dca740eb32297813489162f9564ba349747be35
-Size (mercurial-0.8.1.tar.gz) = 284529 bytes
+SHA1 (mercurial-0.9.tar.gz) = d633a9fee89ed8aee22d5a52138c673e01feed7f
+RMD160 (mercurial-0.9.tar.gz) = 4ab0646abeea17bebf2262457448ef39959b5311
+Size (mercurial-0.9.tar.gz) = 326107 bytes