summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrecht <recht@pkgsrc.org>2007-03-22 20:25:09 +0000
committerrecht <recht@pkgsrc.org>2007-03-22 20:25:09 +0000
commit257b7b67524df5187b2b5fc1ce928aea21493465 (patch)
tree56e8d93bffaeebdcdadd23f1476174978a3be79d
parent1a92280a3b73cc7e63f9838731ffc349cb2949e6 (diff)
downloadpkgsrc-257b7b67524df5187b2b5fc1ce928aea21493465.tar.gz
update to bzr-0.14
bzr 0.14 2007-01-23 IMPROVEMENTS: * ``bzr help global-options`` describes the global options. (Aaron Bentley) BUG FIXES: * Skip documentation generation tests if the tools to do so are not available. Fixes running selftest for installled copies of bzr. (John Arbash Meinel, #80330) * Fix the code that discovers whether bzr is being run from it's working tree to handle the case when it isn't but the directory it is in is below a repository. (James Westby, #77306) bzr 0.14rc1 2007-01-16 IMPROVEMENTS: * New connection: ``bzr+http://`` which supports tunnelling the smart protocol over an HTTP connection. If writing is enabled on the bzr server, then you can write over the http connection. (Andrew Bennetts, John Arbash Meinel) * Aliases now support quotation marks, so they can contain whitespace (Marius Kruger) * PyCurlTransport now use a single curl object. By specifying explicitly the 'Range' header, we avoid the need to use two different curl objects (and two connections to the same server). (Vincent Ladeuil) * ``bzr commit`` does not prompt for a message until it is very likely to succeed. (Aaron Bentley) * ``bzr conflicts`` now takes --text to list pathnames of text conflicts (Aaron Bentley) * Fix ``iter_lines_added_or_present_in_versions`` to use a set instead of a list while checking if a revision id was requested. Takes 10s off of the ``fileids_affected_by_revision_ids`` time, which is 10s of the ``bzr branch`` time. Also improve ``fileids_...`` time by filtering lines with a regex rather than multiple ``str.find()`` calls. (saves another 300ms) (John Arbash Meinel) * Policy can be set for each configuration key. This allows keys to be inherited properly across configuration entries. For example, this should enable you to do:: [/home/user/project] push_location = sftp://host/srv/project/ push_location:policy = appendpath And then a branch like ``/home/user/project/mybranch`` should get an automatic push location of ``sftp://host/srv/project/mybranch``. (James Henstridge) * Added ``bzr status --short`` to make status report svn style flags for each file. For example:: $ bzr status --short A foo A bar D baz ? wooley * 'bzr selftest --clean-output' allows easily clean temporary tests directories without running tests. (Alexander Belchenko) * ``bzr help hidden-commands`` lists all hidden commands. (Aaron Bentley) * ``bzr merge`` now has an option ``--pull`` to fall back to pull if local is fully merged into remote. (Jan Hudec) * ``bzr help formats`` describes available directory formats. (Aaron Bentley) INTERNALS: * A few tweaks directly to ``fileids_affected_by_revision_ids`` to help speed up processing, as well allowing to extract unannotated lines. Between the two ``fileids_affected_by_revision_ids`` is improved by approx 10%. (John Arbash Meinel) * Change Revision serialization to only write out millisecond resolution. Rather than expecting floating point serialization to preserve more resolution than we need. (Henri Weichers, Martin Pool) * Test suite ends cleanly on Windows. (Vincent Ladeuil) * When 'encoding_type' attribute of class Command is equal to 'exact', force sys.stdout to be a binary stream on Windows, and therefore keep exact line-endings (without LF -> CRLF conversion). (Alexander Belchenko) * Single-letter short options are no longer globally declared. (Martin Pool) * Before using detected user/terminal encoding bzr should check that Python has corresponding codec. (Alexander Belchenko) * Formats for end-user selection are provided via a FormatRegistry (Aaron Bentley) BUG FIXES: * ``bzr missing --verbose`` was showing adds/removals in the wrong direction. (John Arbash Meinel) * ``bzr annotate`` now defaults to showing dotted revnos for merged revisions. It cuts them off at a depth of 12 characters, but you can supply ``--long`` to see the full number. You can also use ``--show-ids`` to display the original revision ids, rather than revision numbers and committer names. (John Arbash Meinel, #75637) * bzr now supports Win32 UNC path (e.g. \\HOST\path). (Alexander Belchenko, #57869) * Win32-specific: output of cat, bundle and diff commands don't mangle line-endings (Alexander Belchenko, #55276) * Replace broken fnmatch based ignore pattern matching with custom pattern matcher. (Kent Gibson, Jan Hudec #57637) * pycurl and urllib can detect short reads at different places. Update the test suite to test more cases. Also detect http error code 416 which was raised for that specific bug. Also enhance the urllib robustness by detecting invalid ranges (and pycurl's one by detecting short reads during the initial GET). (Vincent Ladeuil, #73948) * The urllib connection sharing interacts badly with urllib2 proxy setting (the connections didn't go thru the proxy anymore). Defining a proper ProxyHandler solves the problem. (Vincent Ladeuil, #74759) * Use urlutils to generate relative URLs, not osutils (Aaron Bentley, #76229) * ``bzr status`` in a readonly directory should work without giving lots of errors. (John Arbash Meinel, #76299) * Mention the revisionspec topic for the revision option help. (Wouter van Heyst, #31663) * Allow plugins import from zip archives. (Alexander Belchenko, #68124)
-rw-r--r--devel/bzr/Makefile4
-rw-r--r--devel/bzr/PLIST29
-rw-r--r--devel/bzr/distinfo10
-rw-r--r--devel/bzr/patches/patch-ab8
4 files changed, 36 insertions, 15 deletions
diff --git a/devel/bzr/Makefile b/devel/bzr/Makefile
index 6d2a382e4d9..ff19daa5ddd 100644
--- a/devel/bzr/Makefile
+++ b/devel/bzr/Makefile
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.11 2007/02/17 20:59:47 wiz Exp $
+# $NetBSD: Makefile,v 1.12 2007/03/22 20:25:09 recht Exp $
#
-DISTNAME= bzr-0.13
+DISTNAME= bzr-0.14
CATEGORIES= devel scm
MASTER_SITES= http://bazaar-vcs.org/releases/src/
diff --git a/devel/bzr/PLIST b/devel/bzr/PLIST
index 3bb3fb46feb..436feaba5c2 100644
--- a/devel/bzr/PLIST
+++ b/devel/bzr/PLIST
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.7 2006/12/07 17:07:40 wiz Exp $
+@comment $NetBSD: PLIST,v 1.8 2007/03/22 20:25:09 recht Exp $
bin/bzr
${PYSITELIB}/bzrlib/__init__.py
${PYSITELIB}/bzrlib/__init__.pyc
@@ -179,6 +179,9 @@ ${PYSITELIB}/bzrlib/fetch.pyo
${PYSITELIB}/bzrlib/generate_ids.py
${PYSITELIB}/bzrlib/generate_ids.pyc
${PYSITELIB}/bzrlib/generate_ids.pyo
+${PYSITELIB}/bzrlib/globbing.py
+${PYSITELIB}/bzrlib/globbing.pyc
+${PYSITELIB}/bzrlib/globbing.pyo
${PYSITELIB}/bzrlib/gpg.py
${PYSITELIB}/bzrlib/gpg.pyc
${PYSITELIB}/bzrlib/gpg.pyo
@@ -632,6 +635,9 @@ ${PYSITELIB}/bzrlib/tests/stub_sftp.pyo
${PYSITELIB}/bzrlib/tests/test_ancestry.py
${PYSITELIB}/bzrlib/tests/test_ancestry.pyc
${PYSITELIB}/bzrlib/tests/test_ancestry.pyo
+${PYSITELIB}/bzrlib/tests/test_annotate.py
+${PYSITELIB}/bzrlib/tests/test_annotate.pyc
+${PYSITELIB}/bzrlib/tests/test_annotate.pyo
${PYSITELIB}/bzrlib/tests/test_api.py
${PYSITELIB}/bzrlib/tests/test_api.pyc
${PYSITELIB}/bzrlib/tests/test_api.pyo
@@ -653,9 +659,9 @@ ${PYSITELIB}/bzrlib/tests/test_bzrdir.pyo
${PYSITELIB}/bzrlib/tests/test_cache_utf8.py
${PYSITELIB}/bzrlib/tests/test_cache_utf8.pyc
${PYSITELIB}/bzrlib/tests/test_cache_utf8.pyo
-${PYSITELIB}/bzrlib/tests/test_command.py
-${PYSITELIB}/bzrlib/tests/test_command.pyc
-${PYSITELIB}/bzrlib/tests/test_command.pyo
+${PYSITELIB}/bzrlib/tests/test_commands.py
+${PYSITELIB}/bzrlib/tests/test_commands.pyc
+${PYSITELIB}/bzrlib/tests/test_commands.pyo
${PYSITELIB}/bzrlib/tests/test_commit.py
${PYSITELIB}/bzrlib/tests/test_commit.pyc
${PYSITELIB}/bzrlib/tests/test_commit.pyo
@@ -689,9 +695,15 @@ ${PYSITELIB}/bzrlib/tests/test_fetch.pyo
${PYSITELIB}/bzrlib/tests/test_ftp_transport.py
${PYSITELIB}/bzrlib/tests/test_ftp_transport.pyc
${PYSITELIB}/bzrlib/tests/test_ftp_transport.pyo
+${PYSITELIB}/bzrlib/tests/test_generate_docs.py
+${PYSITELIB}/bzrlib/tests/test_generate_docs.pyc
+${PYSITELIB}/bzrlib/tests/test_generate_docs.pyo
${PYSITELIB}/bzrlib/tests/test_generate_ids.py
${PYSITELIB}/bzrlib/tests/test_generate_ids.pyc
${PYSITELIB}/bzrlib/tests/test_generate_ids.pyo
+${PYSITELIB}/bzrlib/tests/test_globbing.py
+${PYSITELIB}/bzrlib/tests/test_globbing.pyc
+${PYSITELIB}/bzrlib/tests/test_globbing.pyo
${PYSITELIB}/bzrlib/tests/test_gpg.py
${PYSITELIB}/bzrlib/tests/test_gpg.pyc
${PYSITELIB}/bzrlib/tests/test_gpg.pyo
@@ -761,6 +773,9 @@ ${PYSITELIB}/bzrlib/tests/test_options.pyo
${PYSITELIB}/bzrlib/tests/test_osutils.py
${PYSITELIB}/bzrlib/tests/test_osutils.pyc
${PYSITELIB}/bzrlib/tests/test_osutils.pyo
+${PYSITELIB}/bzrlib/tests/test_osutils_encodings.py
+${PYSITELIB}/bzrlib/tests/test_osutils_encodings.pyc
+${PYSITELIB}/bzrlib/tests/test_osutils_encodings.pyo
${PYSITELIB}/bzrlib/tests/test_patch.py
${PYSITELIB}/bzrlib/tests/test_patch.pyc
${PYSITELIB}/bzrlib/tests/test_patch.pyo
@@ -928,6 +943,9 @@ ${PYSITELIB}/bzrlib/tests/tree_implementations/__init__.pyo
${PYSITELIB}/bzrlib/tests/tree_implementations/test_test_trees.py
${PYSITELIB}/bzrlib/tests/tree_implementations/test_test_trees.pyc
${PYSITELIB}/bzrlib/tests/tree_implementations/test_test_trees.pyo
+${PYSITELIB}/bzrlib/tests/tree_implementations/test_tree.py
+${PYSITELIB}/bzrlib/tests/tree_implementations/test_tree.pyc
+${PYSITELIB}/bzrlib/tests/tree_implementations/test_tree.pyo
${PYSITELIB}/bzrlib/tests/treeshape.py
${PYSITELIB}/bzrlib/tests/treeshape.pyc
${PYSITELIB}/bzrlib/tests/treeshape.pyo
@@ -982,6 +1000,9 @@ ${PYSITELIB}/bzrlib/tests/workingtree_implementations/test_put_file.pyo
${PYSITELIB}/bzrlib/tests/workingtree_implementations/test_read_working_inventory.py
${PYSITELIB}/bzrlib/tests/workingtree_implementations/test_read_working_inventory.pyc
${PYSITELIB}/bzrlib/tests/workingtree_implementations/test_read_working_inventory.pyo
+${PYSITELIB}/bzrlib/tests/workingtree_implementations/test_readonly.py
+${PYSITELIB}/bzrlib/tests/workingtree_implementations/test_readonly.pyc
+${PYSITELIB}/bzrlib/tests/workingtree_implementations/test_readonly.pyo
${PYSITELIB}/bzrlib/tests/workingtree_implementations/test_set_root_id.py
${PYSITELIB}/bzrlib/tests/workingtree_implementations/test_set_root_id.pyc
${PYSITELIB}/bzrlib/tests/workingtree_implementations/test_set_root_id.pyo
diff --git a/devel/bzr/distinfo b/devel/bzr/distinfo
index 65e8df62565..7b356364fbf 100644
--- a/devel/bzr/distinfo
+++ b/devel/bzr/distinfo
@@ -1,7 +1,7 @@
-$NetBSD: distinfo,v 1.9 2006/12/07 17:07:40 wiz Exp $
+$NetBSD: distinfo,v 1.10 2007/03/22 20:25:10 recht Exp $
-SHA1 (bzr-0.13.tar.gz) = a53591cd90b8e24c519ca329dbac72c1f4c5f922
-RMD160 (bzr-0.13.tar.gz) = 7df30a2feb06683991ebc74156c528c3c3d69f28
-Size (bzr-0.13.tar.gz) = 1126005 bytes
+SHA1 (bzr-0.14.tar.gz) = 90c6278b332f369585ca6db47b65c4e7c60d6a6f
+RMD160 (bzr-0.14.tar.gz) = f75cd37e3c2d30ffc482f215cd60c47ee392f34e
+Size (bzr-0.14.tar.gz) = 1159335 bytes
SHA1 (patch-aa) = 8eda90885b3127525330cd3432538fb2b4df98c1
-SHA1 (patch-ab) = 52d9cce8bf089ae31b4ee6ee38732e5df4825911
+SHA1 (patch-ab) = 64c09adc9da3b6f074f25b8a94c28d931d6ff48f
diff --git a/devel/bzr/patches/patch-ab b/devel/bzr/patches/patch-ab
index 3429d3993bf..4c0f9ac9fbd 100644
--- a/devel/bzr/patches/patch-ab
+++ b/devel/bzr/patches/patch-ab
@@ -1,8 +1,8 @@
-$NetBSD: patch-ab,v 1.1 2006/10/22 06:52:57 rillig Exp $
+$NetBSD: patch-ab,v 1.2 2007/03/22 20:25:10 recht Exp $
---- setup.py.orig 2006-10-02 01:39:28.000000000 +0200
-+++ setup.py 2006-10-22 07:05:04.000000000 +0200
-@@ -207,7 +207,7 @@ elif 'py2exe' in sys.argv:
+--- setup.py.orig 2007-01-23 02:59:36.000000000 +0100
++++ setup.py 2007-03-22 21:18:22.000000000 +0100
+@@ -219,7 +219,7 @@
else:
# std setup
ARGS = {'scripts': ['bzr'],