diff options
author | gdt <gdt@pkgsrc.org> | 2008-01-22 00:49:16 +0000 |
---|---|---|
committer | gdt <gdt@pkgsrc.org> | 2008-01-22 00:49:16 +0000 |
commit | 0b3c5f50179d0af1a01f244badf2c7ea0a0d38db (patch) | |
tree | f432167c12a376bc30b147eaae01b36689176514 /devel/bzr/Makefile | |
parent | ab11d07c649dfdbe8ca0ff39ad1ba7ac0ee2df91 (diff) | |
download | pkgsrc-0b3c5f50179d0af1a01f244badf2c7ea0a0d38db.tar.gz |
Update to 1.1 from Nick Goffee of BBN Technologies via private mail.
For the full list of changes, see NEWS.
[many bugfixes]
* The syntax ``bzr diff branch1 branch2`` is no longer supported.
Use ``bzr diff branch1 --new branch2`` instead. This change has
been made to remove the ambiguity where ``branch2`` is in fact a
specific file to diff within ``branch1``.
* diff '--using' allows an external diff tool to be used for files.
(Aaron Bentley)
* New "lca" merge-type for fast everyday merging that also supports
criss-cross merges. (Aaron Bentley)
* ``merge`` now warns when merge directives cause cherrypicks.
(Aaron Bentley)
* ``split`` now supported, to enable splitting large trees into smaller
pieces. (Aaron Bentley)
* Reference material has now be moved out of the User Guide and added
to the User Reference. The User Reference has gained 4 sections as
a result: Authenication Settings, Configuration Settings, Conflicts
and Hooks. All help topics are now dumped into text format in the
doc/en/user-reference directory for those who like browsing that
information in their editor. (Ian Clatworthy)
* Annotate merge (merge-type=weave) now supports cherrypicking.
(Aaron Bentley)
* ``switch`` can now be used on heavyweight checkouts as well as
lightweight ones. After switching a heavyweight checkout, the
local branch is a mirror/cache of the new bound branch and
uncommitted changes in the working tree are merged. As a safety
check, if there are local commits in a checkout which have not
been committed to the previously bound branch, then ``switch``
fails unless the ``--force`` option is given. This option is
now also required if the branch a lightweight checkout is pointing
to has been moved. (Ian Clatworthy)
* The default repository format is now ``pack-0.92``. This
default is used when creating new repositories with ``init`` and
``init-repo``, and when branching over bzr+ssh or bzr+hpss.
(See https://bugs.launchpad.net/bugs/164626)
This format can be read and written by Bazaar 0.92 and later, and
data can be transferred to and from older formats.
To upgrade, please reconcile your repository (``bzr reconcile``), and then
upgrade (``bzr upgrade``).
``pack-0.92`` offers substantially better scaling and performance than the
previous knits format. Some operations are slower where the code already
had bad scaling characteristics under knits, the pack format makes such
operations more visible as part of being more scalable overall. We will
correct such operations over the coming releases and encourage the filing
of bugs on any operation which you observe to be slower in a packs
repository. One particular case that we do not intend to fix is pulling
data from a pack repository into a knit repository over a high latency
link; downgrading such data requires reinsertion of the file texts, and
this is a classic space/time tradeoff. The current implementation is
conservative on memory usage because we need to support converting data
from any tree without problems.
(Robert Collins, Martin Pool, #164476)
* The pack format is now accessible as "pack-0.92", or "pack-0.92-subtree"
to enable the subtree functions (for example, for bzr-svn).
See http://doc.bazaar-vcs.org/latest/developer/packrepo.html
(Martin Pool)
* New ``authentication.conf`` file holding the password or other credentials
for remote servers. This can be used for ssh, sftp, smtp and other
supported transports.
(Vincent Ladeuil)
* ``switch`` command added for changing the branch a lightweight checkout
is associated with and updating the tree to reflect the latest content
accordingly. This command was previously part of the BzrTools plug-in.
(Ian Clatworthy, Aaron Bentley, David Allouche)
* ``reconfigure`` command can now convert branches, trees, or checkouts to
lightweight checkouts. (Aaron Bentley)
* ``bzr merge`` now warns when it encounters a criss-cross merge.
(Aaron Bentley)
Diffstat (limited to 'devel/bzr/Makefile')
-rw-r--r-- | devel/bzr/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/devel/bzr/Makefile b/devel/bzr/Makefile index 4aa7c1288a0..aa0411dc224 100644 --- a/devel/bzr/Makefile +++ b/devel/bzr/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.18 2007/11/29 20:03:14 wiz Exp $ +# $NetBSD: Makefile,v 1.19 2008/01/22 00:49:16 gdt Exp $ # -DISTNAME= bzr-0.92 +DISTNAME= bzr-1.1 CATEGORIES= devel scm MASTER_SITES= http://bazaar-vcs.org/releases/src/ |