pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/devel/bzr bzr 2.0.0



details:   https://anonhg.NetBSD.org/pkgsrc/rev/0c8672f7c7f7
branches:  trunk
changeset: 400139:0c8672f7c7f7
user:      epg <epg%pkgsrc.org@localhost>
date:      Sun Oct 11 18:36:00 2009 +0000

description:
bzr 2.0.0
#########

:2.0.0: 2009-09-22
:Codename: Instant Karma

This release of Bazaar makes the 2a (previously 'brisbane-core') format
the default when new branches or repositories are created.  This format is
substantially smaller and faster for many operations.  Most of the work in
this release focuses on bug fixes and stabilization, covering both 2a and
previous formats.  (See the Upgrade Guide for information on migrating
existing projects.)

This release also improves the documentation content and presentation,
including adding Windows HtmlHelp manuals.

The Bazaar team decided that 2.0 will be a long-term supported release,
with bugfix-only 2.0.x releases based on it, continuing for at least six
months or until the following stable release.

Changes from 2.0.0rc2 to final
******************************

* Officially branded as 2.0.0 rather than 2.0 to clarify between things
  that "want to happen on the 2.0.x stable series" versus things that want
  to "land in 2.0.0". (Changes how bzrlib._format_version_tuple() handles
  micro = 0.) (John Arbash Meinel)

bzr 2.0.0rc2
############

:2.0.0rc2: 2009-09-10

New Features
************

* Added post_commit hook for mutable trees. This allows the keywords
  plugin to expand keywords on files changed by the commit.
  (Ian Clatworthy, #408841)

Bug Fixes
*********

* Bazaar's native protocol code now correctly handles EINTR, which most
  noticeably occurs if you break in to the debugger while connected to a
  bzr+ssh server.  You can now can continue from the debugger (by typing
  'c') and the process continues.  However, note that pressing C-\ in the
  shell may still kill the SSH process, which is bug 162509, so you must
  sent a signal to the bzr process specifically, for example by typing
  ``kill -QUIT PID`` in another shell.  (Martin Pool, #341535)

* ``bzr check`` in pack-0.92, 1.6 and 1.9 format repositories will no
  longer report incorrect errors about ``Missing inventory ('TREE_ROOT', ...)``
  (Robert Collins, #416732)

* ``bzr info -v`` on a 2a format still claimed that it was a "Development
  format" (John Arbash Meinel, #424392)

* ``bzr log stacked-branch`` shows the full log including
  revisions that are in the fallback repository. (Regressed in 2.0rc1).
  (John Arbash Meinel, #419241)

* Clearer message when Bazaar runs out of memory, instead of a ``MemoryError``
  traceback.  (Martin Pool, #109115)

* Conversion to 2a will create a single pack for all the new revisions (as
  long as it ran without interruption). This improves both ``bzr upgrade``
  and ``bzr pull`` or ``bzr merge`` from local branches in older formats.
  The autopack logic that occurs every 100 revisions during local
  conversions was not returning that pack's identifier, which resulted in
  the partial packs created during the conversion not being consolidated
  at the end of the conversion process. (Robert Collins, #423818)

* Fetches from 2a to 2a are now again requested in 'groupcompress' order.
  Groups that are seen as 'underutilized' will be repacked on-the-fly.
  This means that when the source is fully packed, there is minimal
  overhead during the fetch, but if the source is poorly packed the result
  is a fairly well packed repository (not as good as 'bzr pack' but
  good-enough.) (Robert Collins, John Arbash Meinel, #402652)

* Fix a potential segmentation fault when doing 'log' of a branch that had
  ghosts in its mainline.  (Evaluating None as a tuple is bad.)
  (John Arbash Meinel, #419241)

* Fix a segmentation fault when computing the ``merge_sort`` of a graph
  that has a ghost in the mainline ancestry.
  (John Arbash Meinel, #419241)

* ``groupcompress`` sort order is now more stable, rather than relying on
  ``topo_sort`` ordering. The implementation is now
  ``KnownGraph.gc_sort``. (John Arbash Meinel)

* Local data conversion will generate correct deltas. This is a critical
  bugfix vs 2.0rc1, and all 2.0rc1 users should upgrade to 2.0rc2 before
  converting repositories. (Robert Collins, #422849)

* Network streams now decode adjacent records of the same type into a
  single stream, reducing layering churn. (Robert Collins)

* Prevent some kinds of incomplete data from being committed to a 2a
  repository, such as revisions without inventories, a missing chk_bytes
  record for an inventory, or a missing text referenced by an inventory.
  (Andrew Bennetts, #423506, #406687)

Documentation
*************

* Fix assertion error about "_remember_remote_is_before" when pushing to
  older smart servers.
  (Andrew Bennetts, #418931)

* Help on hooks no longer says 'Not deprecated' for hooks that are
  currently supported. (Ian Clatworthy, #422415)

* PDF and CHM (Windows HtmlHelp) formats are now supported for the
  user documentation. The HTML documentation is better broken up into
  topics. (Ian Clatworthy)

* The developer and foreign language documents are now separated
  out so that searching in the HTML and CHM files produces more
  useful results. (Ian Clatworthy)

* The main table of contents now provides links to the new Migration Docs
  and Plugins Guide. (Ian Clatworthy)


bzr 2.0.0rc1
############

:Codename: no worries
:2.0.0rc1: 2009-08-26

Compatibility Breaks
********************

* The default format for bzr is now ``2a``. This format brings many
  significant performance and size improvements. bzr can pull from
  any existing repository into a ``2a`` one, but can only transfer
  from ``2a`` into ``rich-root`` repositories. The Upgrade guide
  has more information about this change. (Robert Collins)

* On Windows auto-detection of Putty's plink.exe is disabled.
  Default SSH client for Windows is paramiko. User still can force
  usage of plink if explicitly set environment variable BZR_SSH=plink.
  (#414743, Alexander Belchenko)

New Features
************

* ``bzr branch --switch`` can now switch the checkout in the current directory
  to the newly created branch. (Lukáš Lalinský)

Bug Fixes
*********

* Fetches were being requested in 'groupcompress' order, but weren't
  recombining the groups. Thus they would 'fragment' to get the correct
  order, but not 'recombine' to actually benefit from it. Until we get
  recombining to work, switching to 'unordered' fetches avoids the
  fragmentation. (John Arbash Meinel, #402645)

* Fix a pycurl related test failure on karmic by recognizing an error
  raised by newer versions of pycurl.
  (Vincent Ladeuil, #306264)

* Fix a test failure on karmic by making a locale test more robust.
  (Vincent Ladeuil, #413514)

* Fix IndexError printing CannotBindAddress errors.
  (Martin Pool, #286871)

* Fix "Revision ... not present" errors when upgrading stacked branches,
  or when doing fetches from a stacked source to a stacked target.
  (Andrew Bennetts, #399140)

* ``bzr branch`` of 2a repositories over HTTP is much faster.  bzr now
  batches together small fetches from 2a repositories, rather than
  fetching only a few hundred bytes at a time.
  (Andrew Bennetts, #402657)

Improvements
************

* A better description of the platform is shown in crash tracebacks, ``bzr
  --version`` and ``bzr selftest``.
  (Martin Pool, #409137)

* bzr can now (again) capture crash data through the apport library,
  so that a single human-readable file can be attached to bug reports.
  This can be disabled by using ``-Dno_apport`` on the command line, or by
  putting ``no_apport`` into the ``debug_flags`` section of
  ``bazaar.conf``.
  (Martin Pool, Robert Collins, #389328)

* ``bzr push`` locally on windows will no longer give a locking error with
  dirstate based formats. (Robert Collins)

* ``bzr shelve`` and ``bzr unshelve`` now work on windows.
  (Robert Collins, #305006)

* Commit of specific files no longer prevents using the the iter_changes
  codepath. On 2a repositories, commit of specific files should now be as
  fast, or slightly faster, than a full commit. (Robert Collins)

* The internal core code that handles specific file operations like
  ``bzr st FILENAME`` or ``bzr commit FILENAME`` has been changed to
  include the parent directories if they have altered, and when a
  directory stops being a directory its children are always included. This
  fixes a number of causes for ``InconsistentDelta`` errors, and permits
  faster commit of specific paths. (Robert Collins, #347649)

Documentation
*************

* New developer documentation for content filtering.
  (Martin Pool)

API Changes
***********

* ``bzrlib.shelf_ui`` has had the ``from_args`` convenience methods of its
  classes changed to manage lock lifetime of the trees they open in a way
  consistent with reader-exclusive locks. (Robert Collins, #305006)

Internals
*********

Testing
*******

bzr 1.18.1
##########

:Codename:     nein nein nein!
:1.18.1:       2009-09-09

This release fixes two small but worthwhile bugs relevant to users on
Microsoft Windows: some commands that failed on with locking errors will
now work, and a bug that caused poor performance after committing a file
with line-ending conversion has now been fixed.  It also fixes a bug in
pushing to older servers.

Bug Fixes
*********

* Fixed a problem where using content filtering and especially end-of-line
  conversion will commit too many copies a file.
  (Martin Pool, #415508)

* Fix assertion error about ``_remember_remote_is_before`` in
  ``set_tags_bytes`` when pushing to older smart servers.
  (Andrew Bennetts, Alexander Belchenko, #418931)

Improvements
************

* ``bzr push`` locally on Windows will no longer give a locking error with
  dirstate based formats. (Robert Collins)

* ``bzr shelve`` and ``bzr unshelve`` now work on Windows.
  (Robert Collins, #305006)

API Changes
***********

* ``bzrlib.shelf_ui`` has had the ``from_args`` convenience methods of its
  classes changed to manage lock lifetime of the trees they open in a way
  consistent with reader-exclusive locks. (Robert Collins, #305006)

* ``Tree.path_content_summary`` may return a size of None, when called on
  a tree with content filtering where the size of the canonical form
  cannot be cheaply determined.  (Martin Pool)

diffstat:

 devel/bzr/Makefile |   6 +++---
 devel/bzr/PLIST    |  32 +++++++++++++++++++++++++-------
 devel/bzr/distinfo |   8 ++++----
 3 files changed, 32 insertions(+), 14 deletions(-)

diffs (141 lines):

diff -r d9d031aea3cf -r 0c8672f7c7f7 devel/bzr/Makefile
--- a/devel/bzr/Makefile        Sun Oct 11 18:24:33 2009 +0000
+++ b/devel/bzr/Makefile        Sun Oct 11 18:36:00 2009 +0000
@@ -1,10 +1,10 @@
-# $NetBSD: Makefile,v 1.42 2009/09/23 09:54:45 tron Exp $
+# $NetBSD: Makefile,v 1.43 2009/10/11 18:36:00 epg Exp $
 
 DISTNAME=              bzr-${VER}
 #PKGREVISION=          1
 CATEGORIES=            devel scm
-MASTER_SITES=          http://launchpad.net/bzr/1.18/${VER}/+download/
-VER=                   1.18
+MASTER_SITES=          http://launchpad.net/bzr/2.0/${VER}/+download/
+VER=                   2.0.0
 
 MAINTAINER=            epg%NetBSD.org@localhost
 HOMEPAGE=              http://bazaar-vcs.org/
diff -r d9d031aea3cf -r 0c8672f7c7f7 devel/bzr/PLIST
--- a/devel/bzr/PLIST   Sun Oct 11 18:24:33 2009 +0000
+++ b/devel/bzr/PLIST   Sun Oct 11 18:36:00 2009 +0000
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.30 2009/09/09 05:43:11 epg Exp $
+@comment $NetBSD: PLIST,v 1.31 2009/10/11 18:36:00 epg Exp $
 bin/bzr
 ${PYSITELIB}/bzrlib/__init__.py
 ${PYSITELIB}/bzrlib/__init__.pyc
@@ -228,6 +228,9 @@
 ${PYSITELIB}/bzrlib/counted_lock.py
 ${PYSITELIB}/bzrlib/counted_lock.pyc
 ${PYSITELIB}/bzrlib/counted_lock.pyo
+${PYSITELIB}/bzrlib/crash.py
+${PYSITELIB}/bzrlib/crash.pyc
+${PYSITELIB}/bzrlib/crash.pyo
 ${PYSITELIB}/bzrlib/debug.py
 ${PYSITELIB}/bzrlib/debug.pyc
 ${PYSITELIB}/bzrlib/debug.pyo
@@ -269,6 +272,9 @@
 ${PYSITELIB}/bzrlib/doc_generate/autodoc_rstx.py
 ${PYSITELIB}/bzrlib/doc_generate/autodoc_rstx.pyc
 ${PYSITELIB}/bzrlib/doc_generate/autodoc_rstx.pyo
+${PYSITELIB}/bzrlib/doc_generate/sphinx_conf.py
+${PYSITELIB}/bzrlib/doc_generate/sphinx_conf.pyc
+${PYSITELIB}/bzrlib/doc_generate/sphinx_conf.pyo
 ${PYSITELIB}/bzrlib/email_message.py
 ${PYSITELIB}/bzrlib/email_message.pyc
 ${PYSITELIB}/bzrlib/email_message.pyo
@@ -930,6 +936,9 @@
 ${PYSITELIB}/bzrlib/tests/fake_command.py
 ${PYSITELIB}/bzrlib/tests/fake_command.pyc
 ${PYSITELIB}/bzrlib/tests/fake_command.pyo
+${PYSITELIB}/bzrlib/tests/features.py
+${PYSITELIB}/bzrlib/tests/features.pyc
+${PYSITELIB}/bzrlib/tests/features.pyo
 ${PYSITELIB}/bzrlib/tests/file_utils.py
 ${PYSITELIB}/bzrlib/tests/file_utils.pyc
 ${PYSITELIB}/bzrlib/tests/file_utils.pyo
@@ -1089,6 +1098,9 @@
 ${PYSITELIB}/bzrlib/tests/per_lock/test_temporary_write_lock.py
 ${PYSITELIB}/bzrlib/tests/per_lock/test_temporary_write_lock.pyc
 ${PYSITELIB}/bzrlib/tests/per_lock/test_temporary_write_lock.pyo
+${PYSITELIB}/bzrlib/tests/per_pack_repository.py
+${PYSITELIB}/bzrlib/tests/per_pack_repository.pyc
+${PYSITELIB}/bzrlib/tests/per_pack_repository.pyo
 ${PYSITELIB}/bzrlib/tests/per_repository/__init__.py
 ${PYSITELIB}/bzrlib/tests/per_repository/__init__.pyc
 ${PYSITELIB}/bzrlib/tests/per_repository/__init__.pyo
@@ -1257,6 +1269,9 @@
 ${PYSITELIB}/bzrlib/tests/per_tree/test_walkdirs.py
 ${PYSITELIB}/bzrlib/tests/per_tree/test_walkdirs.pyc
 ${PYSITELIB}/bzrlib/tests/per_tree/test_walkdirs.pyo
+${PYSITELIB}/bzrlib/tests/per_versionedfile.py
+${PYSITELIB}/bzrlib/tests/per_versionedfile.pyc
+${PYSITELIB}/bzrlib/tests/per_versionedfile.pyo
 ${PYSITELIB}/bzrlib/tests/per_workingtree/__init__.py
 ${PYSITELIB}/bzrlib/tests/per_workingtree/__init__.pyc
 ${PYSITELIB}/bzrlib/tests/per_workingtree/__init__.pyo
@@ -1383,6 +1398,9 @@
 ${PYSITELIB}/bzrlib/tests/ssl_certs/create_ssls.py
 ${PYSITELIB}/bzrlib/tests/ssl_certs/create_ssls.pyc
 ${PYSITELIB}/bzrlib/tests/ssl_certs/create_ssls.pyo
+${PYSITELIB}/bzrlib/tests/ssl_certs/server.crt
+${PYSITELIB}/bzrlib/tests/ssl_certs/server_with_pass.key
+${PYSITELIB}/bzrlib/tests/ssl_certs/server_without_pass.key
 ${PYSITELIB}/bzrlib/tests/stub_sftp.py
 ${PYSITELIB}/bzrlib/tests/stub_sftp.pyc
 ${PYSITELIB}/bzrlib/tests/stub_sftp.pyo
@@ -1482,6 +1500,9 @@
 ${PYSITELIB}/bzrlib/tests/test_counted_lock.py
 ${PYSITELIB}/bzrlib/tests/test_counted_lock.pyc
 ${PYSITELIB}/bzrlib/tests/test_counted_lock.pyo
+${PYSITELIB}/bzrlib/tests/test_crash.py
+${PYSITELIB}/bzrlib/tests/test_crash.pyc
+${PYSITELIB}/bzrlib/tests/test_crash.pyo
 ${PYSITELIB}/bzrlib/tests/test_debug.py
 ${PYSITELIB}/bzrlib/tests/test_debug.pyc
 ${PYSITELIB}/bzrlib/tests/test_debug.pyo
@@ -1596,6 +1617,9 @@
 ${PYSITELIB}/bzrlib/tests/test_lazy_regex.py
 ${PYSITELIB}/bzrlib/tests/test_lazy_regex.pyc
 ${PYSITELIB}/bzrlib/tests/test_lazy_regex.pyo
+${PYSITELIB}/bzrlib/tests/test_lock.py
+${PYSITELIB}/bzrlib/tests/test_lock.pyc
+${PYSITELIB}/bzrlib/tests/test_lock.pyo
 ${PYSITELIB}/bzrlib/tests/test_lockable_files.py
 ${PYSITELIB}/bzrlib/tests/test_lockable_files.pyc
 ${PYSITELIB}/bzrlib/tests/test_lockable_files.pyo
@@ -1656,9 +1680,6 @@
 ${PYSITELIB}/bzrlib/tests/test_pack.py
 ${PYSITELIB}/bzrlib/tests/test_pack.pyc
 ${PYSITELIB}/bzrlib/tests/test_pack.pyo
-${PYSITELIB}/bzrlib/tests/test_pack_repository.py
-${PYSITELIB}/bzrlib/tests/test_pack_repository.pyc
-${PYSITELIB}/bzrlib/tests/test_pack_repository.pyo
 ${PYSITELIB}/bzrlib/tests/test_patch.py
 ${PYSITELIB}/bzrlib/tests/test_patch.pyc
 ${PYSITELIB}/bzrlib/tests/test_patch.pyo
@@ -1859,9 +1880,6 @@
 ${PYSITELIB}/bzrlib/tests/test_version_info.py
 ${PYSITELIB}/bzrlib/tests/test_version_info.pyc
 ${PYSITELIB}/bzrlib/tests/test_version_info.pyo
-${PYSITELIB}/bzrlib/tests/test_versionedfile.py
-${PYSITELIB}/bzrlib/tests/test_versionedfile.pyc
-${PYSITELIB}/bzrlib/tests/test_versionedfile.pyo
 ${PYSITELIB}/bzrlib/tests/test_weave.py
 ${PYSITELIB}/bzrlib/tests/test_weave.pyc
 ${PYSITELIB}/bzrlib/tests/test_weave.pyo
diff -r d9d031aea3cf -r 0c8672f7c7f7 devel/bzr/distinfo
--- a/devel/bzr/distinfo        Sun Oct 11 18:24:33 2009 +0000
+++ b/devel/bzr/distinfo        Sun Oct 11 18:36:00 2009 +0000
@@ -1,7 +1,7 @@
-$NetBSD: distinfo,v 1.33 2009/09/09 05:43:11 epg Exp $
+$NetBSD: distinfo,v 1.34 2009/10/11 18:36:00 epg Exp $
 
-SHA1 (bzr-1.18.tar.gz) = 0e738c089ad769eeea6f67befd3de93a402200a7
-RMD160 (bzr-1.18.tar.gz) = 307fe8770b96b1cc67c97ec7bc62ba915a0238bb
-Size (bzr-1.18.tar.gz) = 5977774 bytes
+SHA1 (bzr-2.0.0.tar.gz) = ed71f73229c1327e09ab2f26cd3870fd5570ba6a
+RMD160 (bzr-2.0.0.tar.gz) = 14ce780c90d24a432221ff0ac7c4625e1d7eef86
+Size (bzr-2.0.0.tar.gz) = 6085108 bytes
 SHA1 (patch-aa) = 8eda90885b3127525330cd3432538fb2b4df98c1
 SHA1 (patch-ab) = 042761dede5533cefbfa25ba548c3bb13236dce5


Home | Main Index | Thread Index | Old Index