pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/devel/bzr bzr 1.13 "paraskavedekatriaphobia" 2009-03-14
details: https://anonhg.NetBSD.org/pkgsrc/rev/d330b2e8b916
branches: trunk
changeset: 556242:d330b2e8b916
user: epg <epg%pkgsrc.org@localhost>
date: Wed Mar 18 06:05:43 2009 +0000
description:
bzr 1.13 "paraskavedekatriaphobia" 2009-03-14
---------------------------------------------
This release includes bug fixes and a few performance and feature improvements.
GNU Changelog output can now be produced by ``bzr log --format gnu-changelog``.
Debug flags can now be set in ``~/.bazaar/bazaar.conf``. Lightweight Checkouts
and Stacked Branches should both be much faster over remote connections.
CHANGES FROM bzr 1.13rc1 2009-03-10:
BUG FIXES:
* Fix "is not a stackable format" error when pushing a
stackable-format branch with an unstackable-format repository to a
destination with a default stacking policy. (Andrew Bennetts)
* Progress bars now show the rate of network activity for
``bzr+ssh://`` and ``bzr://`` connections. (Andrew Bennetts)
COMPATIBILITY BREAKS:
* ``bzr log --line`` now indicates which revisions are merges with
`[merge]` after the date. Scripts which parse the output of this
command may need to be adjusted.
(Neil Martinsen-Burrell)
NEW FEATURES:
* ``bzr reconfigure`` now supports --with-trees and --with-no-trees
options to change the default tree-creation policy of shared
repositories. (Matthew Fuller, Marius Kruger, #145033)
* Debug flags can now be set in ``~/.bazaar/bazaar.conf``.
(Martin Pool)
* Filtered views provide a mask over the tree so that users can focus
on a subset of a tree when doing their work. See ``Filtered views``
in chapter 7 of the User Guide and ``bzr help view`` for details.
(Ian Clatworthy)
* GNU Changelog output can now be produced by ``bzr log --format
gnu-changelog``. (Andrea Bolognani, Martin Pool)
* The ``-Dmemory`` flag now gives memory information on Windows.
(John Arbash Meinel)
* Multiple authors for a commit can now be recorded by using the "--author"
option multiple times. (James Westby, #185772)
* New clean-tree command, from bzrtools. (Aaron Bentley, Jelmer Vernoij)
* New command ``bzr launchpad-open`` opens a Launchpad web page for that
branch in your web browser, as long as the branch is on Launchpad at all.
(Jonathan Lange)
IMPROVEMENTS:
* ``bzr add`` no longer prints ``add completed`` on success. Failure
still prints an error message. (Robert Collins)
* ``bzr branch`` now has a ``--no-tree`` option which turns off the
generation of a working tree in the new branch.
(Daniel Watkins, John Klinger, #273993)
* Bazaar will now point out ``bzr+ssh://`` to the user when they
use ssh://. (Jelmer Vernooij, #330535)
* ``bzr -v info`` now omits the number of committers branch statistic,
making it many times faster for large projects. To include that
statistic in the output, use ``bzr -vv info``.
(Ian Clatworthy)
* ``bzr push`` to a ``bzr`` url (``bzr://``, ``bzr+ssh://`` etc) will
stream if the server is version 1.13 or greater, reducing roundtrips
significantly. (Andrew Bennetts, Robert Collins)
* Lightweight Checkouts and Stacked Branches should both be much
faster over remote connections. Building the working tree now
batches up requests into approx 5MB requests, rather than a separate
request for each file. (John Arbash Meinel)
* Support for GSSAPI authentication when using HTTP or HTTPS.
(Jelmer Vernooij)
* The ``bzr shelve`` prompt now includes a '?' help option to explain the
short options better. (Daniel Watkins, #327429)
* ``bzr lp-open`` now falls back to the push location if it cannot find a
public location. (Jonathan Lange, #332372)
* ``bzr lp-open`` will try to find the Launchpad URL for the location
passed on the command line. This makes ``bzr lp-open lp:foo`` work as
expected. (Jonathan Lange, #332705)
* ``bzr send`` now supports MH-E via ``emacsclient``. (Eric Gillespie)
BUG FIXES:
* Bazaar now gives a better message including the filename if it's
unable to read a file in the working directory, for example because
of a permission error. (Martin Pool, #338653)
* ``bzr send`` help is more specific about how to apply merge
directives. (Neil Martinsen-Burrell, #253470)
* ``bzr missing`` now uses ``Repository.get_revision_delta()`` rather
than fetching trees and determining a delta itself. (Jelmer
Vernooij, #315048)
* ``bzr push`` to a smart server no longer causes "Revision
{set([('null:',)])} not present ..." errors when the branch has
multiple root revisions. (Andrew Bennetts, #317654)
* ``bzr shelve`` now properly handle patches with no terminating newline.
(Benoît PIERRE, #303569)
* ``bzr unshelve`` gives a more palatable error if passed a non-integer
shelf id. (Daniel Watkins)
* Export now handles files that are not present in the tree.
(James Westby, #174539)
* Fixed "sprout() got an unexpected keyword argument 'source_branch'"
error branching from old repositories.
(Martin Pool, #321695)
* Make ``bzr push --quiet <non-local location>`` less chatty.
(Kent Gibson, #221461)
* Many Branch hooks would not fire with ``bzr://`` and ``bzr+ssh://``
branches, and this was not noticed due to a bug in the test logic
for branches. This is now fixed and a test added to prevent it
reoccuring. (Robert Collins, Andrew Bennetts)
* Restore the progress bar on Windows. We were disabling it when TERM
wasn't set, but Windows doesn't set TERM. (Alexander Belchenko)
* ``setup.py build_ext`` now gives a proper error when an extension
fails to build. (John Arbash Meinel)
* Symlinks to non ascii file names are now supported.
(Robert Collins, Vincent Ladeuil, #339055, #272444)
* Under rare circumstances (aka nobody reported a bug about it), the ftp
transport could revert to ascii mode. It now stays in binary mode except
when needed.
(Vincent Ladeuil)
* Unshelve does not generate warnings about progress bars.
(Aaron Bentley, #328148)
DOCUMENTATION:
* Added ``Organizing your workspace`` to the User Guide appendices,
summarizing some common ways of organizing trees, branches and
repositories and the processes/workflows implied/enabled by each.
(Ian Clatworthy)
* Hooks can now be self documenting. ``bzrlib.hooks.Hooks.create_hook``
is the entry point for this feature. (Robert Collins)
* The documentation for ``shelve`` and ``unshelve`` has been clarified.
(Daniel Watkins, #327421, #327425)
API CHANGES:
* ``bzr selftest`` now fails if the bazaar sources contain trailing
whitespace, non-unix style line endings and files not ending in a
newline. About 372 files and 3243 lines with trailing whitespace was
updated to comply with this. The code already complied with the other
criteria, but now it is enforced. (Marius Kruger)
* ``Branch.fetch`` and ``Repository.fetch`` now return None rather
than a count of copied revisions and failed revisions. A while back
we stopped ever reporting failed revisions because we started
erroring instead, and the copied revisions count is not used in the
UI at all - indeed it only reflects the repository status not
changes to the branch itself. (Robert Collins)
* MutableTree.commit now favours the "authors" argument, with the old
"author" argument being deprecated.
* Remove deprecated EmptyTree. (Martin Pool)
* ``Repository.fetch`` now accepts an optional ``fetch_spec``
parameter. A ``SearchResult`` or ``MiniSearchResult`` may be passed
to ``fetch_spec`` instead of a ``last_revision`` to specify exactly
which revisions to fetch. (Andrew Bennetts)
* ``RepositoryAcquisitionPolicy.acquire_repository`` now returns a
tuple of ``(repository, is_new_flag)``, rather than just the
repository. (Andrew Bennetts)
* Revision.get_apparent_author() is now deprecated, replaced by
Revision.get_apparent_authors(), which returns a list. The former
now returns the first item that would be returned from the second.
* The ``BranchBuilder`` test helper now accepts a ``timestamp``
parameter to ``build_commit`` and ``build_snapshot``. (Martin Pool)
* The ``_fetch_*`` attributes on ``Repository`` are now on
``RepositoryFormat``, more accurately reflecting their intent (they
describe a disk format capability, not state of a particular
repository of that format). (Robert Collins)
INTERNALS:
* Branching from a non-stacked branch on a smart protocol is now
free of virtual file system methods.
(Robert Collins, Andrew Bennetts)
* Branch and Repository creation on a bzr+ssh://server are now done
via RPC calls rather than VFS calls, reducing round trips for
pushing new branches substantially. (Robert Collins)
* ``Branch.clone`` now takes the ``repository_policy`` formerly used
inside ``BzrDir.clone_on_transport``, allowing stacking to be
configured before the branch tags and revision tip are set. This
fixes a race condition cloning stacked branches that would cause
plugins to have hooks called on non-stacked instances.
(Robert Collins, #334187)
* ``BzrDir.cloning_metadir`` now has a RPC call. (Robert Collins)
* ``BzrDirFormat.__str__`` now uses the human readable description
rather than the sometimes-absent disk label. (Robert Collins)
* ``bzrlib.fetch`` is now composed of a sender and a sink component
allowing for decoupling over a network connection. Fetching from
or into a RemoteRepository with a 1.13 server will use this to
stream the operation.
(Andrew Bennetts, Robert Collins)
* ``bzrlib.tests.run_suite`` accepts a runner_class parameter
supporting the use of different runners. (Robert Collins)
* Change how file_ids and revision_ids are interned as part of
inventory deserialization. Now we use the real ``intern()``, rather
than our own workaround that would also cache a Unicode copy of the
string, and never emptied the cache. This should slightly reduce
memory consumption. (John Arbash Meinel)
* New branch method ``create_clone_on_transport`` that returns a
branch object. (Robert Collins)
* New hook Commands['extend_command'] to allow plugins to access a
command object before the command is run (or help generated from
it), without overriding the command. (Robert Collins)
* New version of the ``BzrDir.find_repository`` verb supporting
``_network_name`` to support removing more _ensure_real calls.
(Robert Collins)
* ``RemoteBranchFormat`` no longer claims to have a disk format string.
(Robert Collins)
* ``Repository`` objects now have ``suspend_write_group`` and
``resume_write_group`` methods. These are currently only useful
with pack repositories. (Andrew Bennetts, Robert Collins)
* ``BzrDirFormat``, ``BranchFormat`` and ``RepositoryFormat`` objects
now have a ``network_name`` for passing the format across RPC calls.
(Robert Collins, Andrew Bennetts)
* ``RepositoryFormat`` objects now all have a new attribute
``_serializer`` used by fetch when reserialising is required.
(Robert Collins, Andrew Bennetts)
* Some methods have been pulled up from ``BzrBranch`` to ``Branch``
to aid branch types that are not bzr branch objects (like
RemoteBranch). (Robert Collins, Andrew Bennetts)
* Test adaptation has been made consistent throughout the built in
tests. ``TestScenarioApplier``, ``multiply_tests_from_modules``,
``adapt_tests``, ``adapt_modules`` have all been deleted. Please
use ``multiply_tests``, or for lower level needs ``apply_scenarios``
and ``apply_scenario``. (Robert Collins)
* ``TestSkipped`` is now detected by TestCase and passed to the
``TestResult`` by calling ``addSkip``. For older TestResult objects,
where ``addSkip`` is not available, ``addError`` is still called.
This permits test filtering in subunit to strip out skipped tests
resulting in a faster fix-shrink-list-run cycle. This is compatible
with the testtools protocol for skips. (Robert Collins)
* The ``_index`` of ``KnitVersionedFiles`` now supports the ability
to scan an underlying index that is going to be incorporated into
the ``KnitVersionedFiles`` object, to determine if it has missing
delta references. The method is ``scan_unvalidated_index``.
(Andrew Bennetts, Robert Collins)
* There is a RemoteSink object which handles pushing to smart servers.
(Andrew Bennetts, Robert Collins)
* ``TransportTraceDecorator`` now logs ``put_bytes_non_atomic`` and
``rmdir`` calls. (Robert Collins)
* ``VersionedFiles`` record adapters have had their signature change
from ``(record, record.get_bytes_as(record.storage_kind))`` to
``(record)`` reducing excess duplication and allowing adapters
to access private data in record to obtain content more
efficiently. (Robert Collins)
* We no longer probe to see if we should create a working tree during
clone if we cannot get a local_abspath for the new bzrdir.
(Robert Collins)
diffstat:
devel/bzr/Makefile | 4 ++--
devel/bzr/PLIST | 48 +++++++++++++++++++++++++++++++++++++++++++++++-
devel/bzr/distinfo | 8 ++++----
3 files changed, 53 insertions(+), 7 deletions(-)
diffs (204 lines):
diff -r 637f911927b4 -r d330b2e8b916 devel/bzr/Makefile
--- a/devel/bzr/Makefile Wed Mar 18 04:44:03 2009 +0000
+++ b/devel/bzr/Makefile Wed Mar 18 06:05:43 2009 +0000
@@ -1,10 +1,10 @@
-# $NetBSD: Makefile,v 1.34 2009/02/19 07:06:40 epg Exp $
+# $NetBSD: Makefile,v 1.35 2009/03/18 06:05:43 epg Exp $
DISTNAME= bzr-${VER}
#PKGREVISION= 1
CATEGORIES= devel scm
MASTER_SITES= http://launchpad.net/bzr/${VER}/${VER}/+download/
-VER= 1.12
+VER= 1.13
MAINTAINER= epg%NetBSD.org@localhost
HOMEPAGE= http://bazaar-vcs.org/
diff -r 637f911927b4 -r d330b2e8b916 devel/bzr/PLIST
--- a/devel/bzr/PLIST Wed Mar 18 04:44:03 2009 +0000
+++ b/devel/bzr/PLIST Wed Mar 18 06:05:43 2009 +0000
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.23 2009/02/19 07:06:40 epg Exp $
+@comment $NetBSD: PLIST,v 1.24 2009/03/18 06:05:44 epg Exp $
bin/bzr
${PYSITELIB}/bzrlib/__init__.py
${PYSITELIB}/bzrlib/__init__.pyc
@@ -174,6 +174,9 @@
${PYSITELIB}/bzrlib/chunk_writer.py
${PYSITELIB}/bzrlib/chunk_writer.pyc
${PYSITELIB}/bzrlib/chunk_writer.pyo
+${PYSITELIB}/bzrlib/clean_tree.py
+${PYSITELIB}/bzrlib/clean_tree.pyc
+${PYSITELIB}/bzrlib/clean_tree.pyo
${PYSITELIB}/bzrlib/cmd_version_info.py
${PYSITELIB}/bzrlib/cmd_version_info.pyc
${PYSITELIB}/bzrlib/cmd_version_info.pyo
@@ -606,6 +609,9 @@
${PYSITELIB}/bzrlib/tests/blackbox/test_checkout.py
${PYSITELIB}/bzrlib/tests/blackbox/test_checkout.pyc
${PYSITELIB}/bzrlib/tests/blackbox/test_checkout.pyo
+${PYSITELIB}/bzrlib/tests/blackbox/test_clean_tree.py
+${PYSITELIB}/bzrlib/tests/blackbox/test_clean_tree.pyc
+${PYSITELIB}/bzrlib/tests/blackbox/test_clean_tree.pyo
${PYSITELIB}/bzrlib/tests/blackbox/test_command_encoding.py
${PYSITELIB}/bzrlib/tests/blackbox/test_command_encoding.pyc
${PYSITELIB}/bzrlib/tests/blackbox/test_command_encoding.pyo
@@ -633,6 +639,9 @@
${PYSITELIB}/bzrlib/tests/blackbox/test_filesystem_cicp.py
${PYSITELIB}/bzrlib/tests/blackbox/test_filesystem_cicp.pyc
${PYSITELIB}/bzrlib/tests/blackbox/test_filesystem_cicp.pyo
+${PYSITELIB}/bzrlib/tests/blackbox/test_filtered_view_ops.py
+${PYSITELIB}/bzrlib/tests/blackbox/test_filtered_view_ops.pyc
+${PYSITELIB}/bzrlib/tests/blackbox/test_filtered_view_ops.pyo
${PYSITELIB}/bzrlib/tests/blackbox/test_find_merge_base.py
${PYSITELIB}/bzrlib/tests/blackbox/test_find_merge_base.pyc
${PYSITELIB}/bzrlib/tests/blackbox/test_find_merge_base.pyo
@@ -795,6 +804,9 @@
${PYSITELIB}/bzrlib/tests/blackbox/test_versioning.py
${PYSITELIB}/bzrlib/tests/blackbox/test_versioning.pyc
${PYSITELIB}/bzrlib/tests/blackbox/test_versioning.pyo
+${PYSITELIB}/bzrlib/tests/blackbox/test_view.py
+${PYSITELIB}/bzrlib/tests/blackbox/test_view.pyc
+${PYSITELIB}/bzrlib/tests/blackbox/test_view.pyo
${PYSITELIB}/bzrlib/tests/blackbox/test_whoami.py
${PYSITELIB}/bzrlib/tests/blackbox/test_whoami.pyc
${PYSITELIB}/bzrlib/tests/blackbox/test_whoami.pyo
@@ -819,6 +831,9 @@
${PYSITELIB}/bzrlib/tests/branch_implementations/test_create_checkout.py
${PYSITELIB}/bzrlib/tests/branch_implementations/test_create_checkout.pyc
${PYSITELIB}/bzrlib/tests/branch_implementations/test_create_checkout.pyo
+${PYSITELIB}/bzrlib/tests/branch_implementations/test_create_clone.py
+${PYSITELIB}/bzrlib/tests/branch_implementations/test_create_clone.pyc
+${PYSITELIB}/bzrlib/tests/branch_implementations/test_create_clone.pyo
${PYSITELIB}/bzrlib/tests/branch_implementations/test_dotted_revno_to_revision_id.py
${PYSITELIB}/bzrlib/tests/branch_implementations/test_dotted_revno_to_revision_id.pyc
${PYSITELIB}/bzrlib/tests/branch_implementations/test_dotted_revno_to_revision_id.pyo
@@ -963,6 +978,12 @@
${PYSITELIB}/bzrlib/tests/lock_helpers.py
${PYSITELIB}/bzrlib/tests/lock_helpers.pyc
${PYSITELIB}/bzrlib/tests/lock_helpers.pyo
+${PYSITELIB}/bzrlib/tests/per_interbranch/__init__.py
+${PYSITELIB}/bzrlib/tests/per_interbranch/__init__.pyc
+${PYSITELIB}/bzrlib/tests/per_interbranch/__init__.pyo
+${PYSITELIB}/bzrlib/tests/per_interbranch/test_update_revisions.py
+${PYSITELIB}/bzrlib/tests/per_interbranch/test_update_revisions.pyc
+${PYSITELIB}/bzrlib/tests/per_interbranch/test_update_revisions.pyo
${PYSITELIB}/bzrlib/tests/per_lock/__init__.py
${PYSITELIB}/bzrlib/tests/per_lock/__init__.pyc
${PYSITELIB}/bzrlib/tests/per_lock/__init__.pyo
@@ -1062,6 +1083,9 @@
${PYSITELIB}/bzrlib/tests/per_repository_reference/test_check.py
${PYSITELIB}/bzrlib/tests/per_repository_reference/test_check.pyc
${PYSITELIB}/bzrlib/tests/per_repository_reference/test_check.pyo
+${PYSITELIB}/bzrlib/tests/per_repository_reference/test_default_stacking.py
+${PYSITELIB}/bzrlib/tests/per_repository_reference/test_default_stacking.pyc
+${PYSITELIB}/bzrlib/tests/per_repository_reference/test_default_stacking.pyo
${PYSITELIB}/bzrlib/tests/ssl_certs/__init__.py
${PYSITELIB}/bzrlib/tests/ssl_certs/__init__.pyc
${PYSITELIB}/bzrlib/tests/ssl_certs/__init__.pyo
@@ -1122,6 +1146,9 @@
${PYSITELIB}/bzrlib/tests/test_chunk_writer.py
${PYSITELIB}/bzrlib/tests/test_chunk_writer.pyc
${PYSITELIB}/bzrlib/tests/test_chunk_writer.pyo
+${PYSITELIB}/bzrlib/tests/test_clean_tree.py
+${PYSITELIB}/bzrlib/tests/test_clean_tree.pyc
+${PYSITELIB}/bzrlib/tests/test_clean_tree.pyo
${PYSITELIB}/bzrlib/tests/test_commands.py
${PYSITELIB}/bzrlib/tests/test_commands.pyc
${PYSITELIB}/bzrlib/tests/test_commands.pyo
@@ -1140,6 +1167,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_debug.py
+${PYSITELIB}/bzrlib/tests/test_debug.pyc
+${PYSITELIB}/bzrlib/tests/test_debug.pyo
${PYSITELIB}/bzrlib/tests/test_decorators.py
${PYSITELIB}/bzrlib/tests/test_decorators.pyc
${PYSITELIB}/bzrlib/tests/test_decorators.pyo
@@ -1164,6 +1194,9 @@
${PYSITELIB}/bzrlib/tests/test_errors.py
${PYSITELIB}/bzrlib/tests/test_errors.pyc
${PYSITELIB}/bzrlib/tests/test_errors.pyo
+${PYSITELIB}/bzrlib/tests/test_export.py
+${PYSITELIB}/bzrlib/tests/test_export.pyc
+${PYSITELIB}/bzrlib/tests/test_export.pyo
${PYSITELIB}/bzrlib/tests/test_extract.py
${PYSITELIB}/bzrlib/tests/test_extract.pyc
${PYSITELIB}/bzrlib/tests/test_extract.pyo
@@ -1314,6 +1347,7 @@
${PYSITELIB}/bzrlib/tests/test_patches_data/diff-4
${PYSITELIB}/bzrlib/tests/test_patches_data/diff-5
${PYSITELIB}/bzrlib/tests/test_patches_data/diff-6
+${PYSITELIB}/bzrlib/tests/test_patches_data/diff-7
${PYSITELIB}/bzrlib/tests/test_patches_data/insert_top.patch
${PYSITELIB}/bzrlib/tests/test_patches_data/mod
${PYSITELIB}/bzrlib/tests/test_patches_data/mod-2
@@ -1321,12 +1355,14 @@
${PYSITELIB}/bzrlib/tests/test_patches_data/mod-4
${PYSITELIB}/bzrlib/tests/test_patches_data/mod-5
${PYSITELIB}/bzrlib/tests/test_patches_data/mod-6
+${PYSITELIB}/bzrlib/tests/test_patches_data/mod-7
${PYSITELIB}/bzrlib/tests/test_patches_data/orig
${PYSITELIB}/bzrlib/tests/test_patches_data/orig-2
${PYSITELIB}/bzrlib/tests/test_patches_data/orig-3
${PYSITELIB}/bzrlib/tests/test_patches_data/orig-4
${PYSITELIB}/bzrlib/tests/test_patches_data/orig-5
${PYSITELIB}/bzrlib/tests/test_patches_data/orig-6
+${PYSITELIB}/bzrlib/tests/test_patches_data/orig-7
${PYSITELIB}/bzrlib/tests/test_patches_data/patchtext.patch
${PYSITELIB}/bzrlib/tests/test_permissions.py
${PYSITELIB}/bzrlib/tests/test_permissions.pyc
@@ -1397,6 +1433,9 @@
${PYSITELIB}/bzrlib/tests/test_smart_add.py
${PYSITELIB}/bzrlib/tests/test_smart_add.pyc
${PYSITELIB}/bzrlib/tests/test_smart_add.pyo
+${PYSITELIB}/bzrlib/tests/test_smart_request.py
+${PYSITELIB}/bzrlib/tests/test_smart_request.pyc
+${PYSITELIB}/bzrlib/tests/test_smart_request.pyo
${PYSITELIB}/bzrlib/tests/test_smart_transport.py
${PYSITELIB}/bzrlib/tests/test_smart_transport.pyc
${PYSITELIB}/bzrlib/tests/test_smart_transport.pyo
@@ -1664,6 +1703,9 @@
${PYSITELIB}/bzrlib/tests/workingtree_implementations/test_unversion.py
${PYSITELIB}/bzrlib/tests/workingtree_implementations/test_unversion.pyc
${PYSITELIB}/bzrlib/tests/workingtree_implementations/test_unversion.pyo
+${PYSITELIB}/bzrlib/tests/workingtree_implementations/test_views.py
+${PYSITELIB}/bzrlib/tests/workingtree_implementations/test_views.pyc
+${PYSITELIB}/bzrlib/tests/workingtree_implementations/test_views.pyo
${PYSITELIB}/bzrlib/tests/workingtree_implementations/test_walkdirs.py
${PYSITELIB}/bzrlib/tests/workingtree_implementations/test_walkdirs.pyc
${PYSITELIB}/bzrlib/tests/workingtree_implementations/test_walkdirs.pyo
@@ -1856,6 +1898,9 @@
${PYSITELIB}/bzrlib/versionedfile.py
${PYSITELIB}/bzrlib/versionedfile.pyc
${PYSITELIB}/bzrlib/versionedfile.pyo
+${PYSITELIB}/bzrlib/views.py
+${PYSITELIB}/bzrlib/views.pyc
+${PYSITELIB}/bzrlib/views.pyo
${PYSITELIB}/bzrlib/weave.py
${PYSITELIB}/bzrlib/weave.pyc
${PYSITELIB}/bzrlib/weave.pyo
@@ -1911,6 +1956,7 @@
@dirrm ${PYSITELIB}/bzrlib/tests/per_repository_reference
@dirrm ${PYSITELIB}/bzrlib/tests/per_repository
@dirrm ${PYSITELIB}/bzrlib/tests/per_lock
+@dirrm ${PYSITELIB}/bzrlib/tests/per_interbranch
@dirrm ${PYSITELIB}/bzrlib/tests/inventory_implementations
@dirrm ${PYSITELIB}/bzrlib/tests/intertree_implementations
@dirrm ${PYSITELIB}/bzrlib/tests/interrepository_implementations
diff -r 637f911927b4 -r d330b2e8b916 devel/bzr/distinfo
--- a/devel/bzr/distinfo Wed Mar 18 04:44:03 2009 +0000
+++ b/devel/bzr/distinfo Wed Mar 18 06:05:43 2009 +0000
@@ -1,7 +1,7 @@
-$NetBSD: distinfo,v 1.27 2009/02/19 07:06:40 epg Exp $
+$NetBSD: distinfo,v 1.28 2009/03/18 06:05:44 epg Exp $
-SHA1 (bzr-1.12.tar.gz) = ad220b5ebc299d30feff680031b54685b2318bc7
-RMD160 (bzr-1.12.tar.gz) = 20f02d036c03a279d9808bb84ab375039cf4cf2a
-Size (bzr-1.12.tar.gz) = 4001912 bytes
+SHA1 (bzr-1.13.tar.gz) = 99365e938ee1df0292c209544488b1a44a0cd2b4
+RMD160 (bzr-1.13.tar.gz) = 6050de1ca6da34321938350d4d5dda7d0e7fc016
+Size (bzr-1.13.tar.gz) = 3989083 bytes
SHA1 (patch-aa) = 8eda90885b3127525330cd3432538fb2b4df98c1
SHA1 (patch-ab) = 2213a002f9bc0f5baba0554b6b375becf4d98d9c
Home |
Main Index |
Thread Index |
Old Index