diff options
author | wiz <wiz> | 2006-10-04 20:55:14 +0000 |
---|---|---|
committer | wiz <wiz> | 2006-10-04 20:55:14 +0000 |
commit | b1d0ffafee3d164523010a68a7e7f8509801b6bf (patch) | |
tree | 8ff91316dbdcba50aabd3deb91036f81b201ece9 /devel/bzr/Makefile | |
parent | f37dd79c981e422625cf24bdb13c30e7a0789270 (diff) | |
download | pkgsrc-b1d0ffafee3d164523010a68a7e7f8509801b6bf.tar.gz |
Update to 0.11:
bzr 0.11 2006-10-02
* Smart server transport test failures on windows fixed. (Lukáš Lalinský).
bzr 0.11rc2 2006-09-27
BUG FIXES:
* Test suite hangs on windows fixed. (Andrew Bennets, Alexander Belchenko).
* Commit performance regression fixed. (Aaron Bentley, Robert Collins, John
Arbash Meinel).
bzr 0.11rc1 2006-09-25
IMPROVEMENTS:
* Knit files now wait to create their contents until the first data is
added. The old code used to create an empty .knit and a .kndx with just
the header. However, this caused a lot of extra round trips over sftp.
This can change the time for ``bzr push`` to create a new remote branch
from 160s down to 100s. This also affects ``bzr commit`` performance when
adding new files, ``bzr commit`` on a new kernel-like tree drops from 50s
down to 40s (John Arbash Meinel, #44692)
* When an entire subtree has been deleted, commit will now report that
just the top of the subtree has been deleted, rather than reporting
all the individual items. (Robert Collins)
* Commit performs one less XML parse. (Robert Collins)
* ``bzr checkout`` now operates on readonly branches as well
as readwrite branches. This fixes bug #39542. (Robert Collins)
* ``bzr bind`` no longer synchronises history with the master branch.
Binding should be followed by an update or push to synchronise the
two branches. This is closely related to the fix for bug #39542.
(Robert Collins)
* ``bzrlib.lazy_import.lazy_import`` function to create on-demand
objects. This allows all imports to stay at the global scope, but
modules will not actually be imported if they are not used.
(John Arbash Meinel)
* Support bzr:// and bzr+ssh:// urls to work with the new RPC-based
transport which will be used with the upcoming high-performance smart
server. The new command ``bzr serve`` will invoke bzr in server mode,
which processes these requests. (Andrew Bennetts, Robert Collins, Martin
Pool)
* New command ``bzr version-info`` which can be used to get a summary
of the current state of the tree. This is especially useful as part
of a build commands. See ``doc/version_info.txt`` for more information
(John Arbash Meinel)
bzr 0.10 2006-08-29
IMPROVEMENTS:
* 'merge' now takes --uncommitted, to apply uncommitted changes from a
tree. (Aaron Bentley)
* 'bzr add --file-ids-from' can be used to specify another path to use
for creating file ids, rather than generating all new ones. Internally,
the 'action' passed to smart_add_tree() can return file_ids that
will be used, rather than having bzrlib generate new ones.
(John Arbash Meinel, #55781)
* ``bzr selftest --benchmark`` now allows a ``--cache-dir`` parameter.
This will cache some of the intermediate trees, and decrease the
setup time for benchmark tests. (John Arbash Meinel)
* Inverse forms are provided for all boolean options. For example,
--strict has --no-strict, --no-recurse has --recurse (Aaron Bentley)
* Serialize out Inventories directly, rather than using ElementTree.
Writing out a kernel sized inventory drops from 2s down to ~350ms.
(Robert Collins, John Arbash Meinel)
(BUG FIXES, INTERNALS, and TESTING updates removed from commit message)
Diffstat (limited to 'devel/bzr/Makefile')
-rw-r--r-- | devel/bzr/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/devel/bzr/Makefile b/devel/bzr/Makefile index f78dc169ae5..58c5feeeeb2 100644 --- a/devel/bzr/Makefile +++ b/devel/bzr/Makefile @@ -1,13 +1,13 @@ -# $NetBSD: Makefile,v 1.6 2006/08/13 23:47:38 wiz Exp $ +# $NetBSD: Makefile,v 1.7 2006/10/04 20:55:14 wiz Exp $ # -DISTNAME= bzr-0.9 +DISTNAME= bzr-0.11 CATEGORIES= devel -MASTER_SITES= http://www.bazaar-ng.org/pkg/ +MASTER_SITES= http://bazaar-vcs.org/releases/src/ MAINTAINER= pkgsrc-users@NetBSD.org -HOMEPAGE= http://www.bazaar-ng.org/ -COMMENT= Open source distributed version control system (Bazaar-NG) +HOMEPAGE= http://bazaar-vcs.org/ +COMMENT= Open source distributed version control system DEPENDS+= ${PYPKGPREFIX}-expat>=0:../../textproc/py-expat |