Source-Changes-HG archive

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

[pkgsrc/trunk]: pkgsrc/devel/breezy devel/breezy: update to 3.1.0.



details:   https://anonhg.NetBSD.org/pkgsrc/rev/e1a48d4372a5
branches:  trunk
changeset: 435932:e1a48d4372a5
user:      rhialto <rhialto%pkgsrc.org@localhost>
date:      Mon Jul 20 20:04:32 2020 +0000

description:
devel/breezy: update to 3.1.0.


3.1.0

    2020-05-21

External Compatibility Breaks

    The brz init-repo command has been renamed to brz init-shared-repo to
emphasize that it creates shared repositories rather than just any kind of
repository. (Jelmer Vernooij)

New Features

    A new brz land command can merge merge proposals on Launchpad, GitHub and
GitLab sites. (Jelmer Vernooij, #1816213)

    The 'patch' command is now bundled with brz. Imported from bzrtools by
Aaron Bentley. (Jelmer Vernooij)

    The 'quilt' plugin, extracted from brz-debian, is now bundled. (Jelmer
Vernooij)

    A new calculate_revnos configuration option (defaults to enabled)
can be used to disable revno display for branch formats that do not
natively store revnos. This speeds up brz log on the Samba git branch by
33%. (Jelmer Vernooij)

    Directly read mtab rather than using psutil when trying to figure out
filesystem types. This removes a dependency that not all users may have
installed and speeds up import time since psutil brings in various other
modules. (Jelmer Vernooij)

    brz diff now has a --color argument that can write color diff
output. This is based on the cdiff code in bzrtools by Aaron Bentley.
(Jelmer Vernooij, #376594)

    Information about tree references can now be updated on remote branches.
(Jelmer Vernooij)

    Warn the user when they attempt to use Breezy in a Subversion
working copy.  (Jelmer Vernooij)

    Add a basic Mercurial plugin that mentions that .hg repositories are
unsupported when the user attempts to access one. (Jelmer Vernooij)

    The 2a format now officially supports storing tree references. It
always partially supported storing tree reference data, and would
happily pull in tree reference data from other repository formats.
(Jelmer Vernooij)

    A new fossil plugin has been added that warns users when they
attempt to access Fossil repositories. (Jelmer Vernooij, #1848821)

    When pushing to Git repositories, symrefs are now followed. (Jelmer
Vernooij, #1800393)

    New brz clone command, which clones everything under a control
directory.  I.e. all colocated branches, like git clone. (Jelmer
Vernooij, #831939)

    brz sprout is now an alias for brz branch. (Jelmer Vernooij)

    brz branch now accepts a -b flag with the name of the colocated
branch to sprout. (Jelmer Vernooij, #1869977)

    Add a breezy.__main__ module so that python3 -m breezy works.
(Jelmer Vernooij)

Improvements

    A new --commit-message option has been added to brz propose, for
hosting sites that support it. (Jelmer Vernooij)

    Automatically upgrade to branch format 8 when setting branch
references.  (Jelmer Vernooij)

    The ssh configuration variable can be used to set the default SSH
implementation. (Jelmer Vernooij, #650757)

    locks.steal_dead is now enabled by default. (Jelmer Vernooij,
#220464)

    The substitution variables for the change_editor configuration
option are now '{old_path}' and '{new_path}' rather than '@old_path' and
'@new_path'. The former is more consistent with the way substitutions
work in other configuration options. The old syntax is still supported.
(Jelmer Vernooij, #708718)

    The brz inventory command now accepts a --include-root argument to
show the tree root. (Jelmer Vernooij)

    Fix support for reading Git repositories over HTTP without a smart
server.  (Jelmer Vernooij)

    CVS pserver URLs now indicate that the pserver protocol is not
supported.  (Jelmer Vernooij)

    Git repositories with submodules can now be imported into 2a
branches; submodules are converted to nested trees. (Jelmer Vernooij,
#402814)

    Python 3 is now used by default to run scripts, etc. from the
makefile.  (Jelmer Vernooij)

    .git/config is now consulted to determine the users' identity for
commits, and the gpg_signing_key. (Jelmer Vernooij)

    Ignore special files (fifos, block/character devices, sockets) when
finding changes in Git working trees. (Jelmer Vernooij, #1857244)

    Parse error messages from stderr when a remote Git server hangs up.
(Jelmer Vernooij)

Bug Fixes

    Print a sensible error message when conversion for an option fails (i.e.
when a non-int is specified as the value for an integer parameter) (#237844,
Jelmer Vernooij)

    Don't include timestamps in filenames when reporting on binary files in
diff. (Jelmer Vernooij, #71307)

    Ignore UnknownFormatErrors when scanning for control directories. (Jelmer
Vernooij, #468332)

    Fix fetching from remote git repositories in brz git-import. (Jelmer
Vernooij, #1836238)

    A new TreeEntry.is_unmodified method has added, which allows merge to check
for unmodified files without relying on the .revision attribute that is not
available for Git trees. This fixes LCA merges for Git repositories. (Jelmer
Vernooij, #1826663)

    Fix passing of directories in specific_files to
GitWorkingTree.iter_entries_by_dir(). (Jelmer Vernooij, #1844054)

    Fix brz diff --using when {old_path} and {new_path} are not specified in
the template. (#1847915, Jelmer Vernooij)

    Ignore ghost tags when interacting with remote Git repositories. (Jelmer
Vernooij)

    Fix setup_ui=False when initializing Breezy. (Jelmer Vernooij, #1852647)

    Fix backwards compatibility with Bazaar by supporting the $BZR_EMAIL
variable. (Jelmer Vernooij, #1869178)

    Cope with non-ascii characters in Git signatures. (Jelmer Vernooij,
#1869533)

    Fix use of proxy_bypass on Python 3. (Jelmer Vernooij, #1878698)

    Create $XDG_HOME_DIR if it does not exist. (Jelmer Vernooij)

API Changes

    New Tree.get_transform method for getting a TreeTransform object. (Jelmer
Vernooijj)

    The Tree.get_root_id method has been removed. Use Tree.path2id('') instead.
(Jelmer Vernooij)

    Repository.find_branches now returns an iterator rather than a list.
(Jelmer Vernooij, #413970)

    New Tree.get_nested_tree method for retrieving a nested tree. (Jelmer
Vernooij)

    The ControlDirFormat.register_server_prober method has been removed.
Instead, probers can now have a priority method to influence when they are run.
(Jelmer Vernooij)

    New urlutils.strip_segment_parameters function for stripping segment
parameters from a URL. (Jelmer Vernooij)

    Tree.id2path has a new optional argument recurse, that determines whether
it scans through nested trees. (Jelmer Vernooij)

    VersionedFiles.add_content can now be used to add content from
ContentFactory objects. (Jelmer Vernooij)



3.0.2
2019-11-19

Bug Fixes

    Disable loading from entrypoints by default, since it can significantly
slow down startup on some platforms. (Jelmer Vernooij, #1832868)

    Don't fail when unable to write per-user ignore list due to one of the
intermediate directories not existing (Jelmer Vernooij, #1851904)

    Fix file graph operations on Git repositories. (Jelmer Vernooij,
#1847913)

    Allow running tests without launchpadlib installed. (Jelmer Vernooij,
#1849988)

    Fix compatibility with Python 3.8. (Jelmer Vernooij, Victor Stinner,
#1844684)

diffstat:

 devel/breezy/Makefile |     5 +-
 devel/breezy/PLIST    |  3737 +++++++++++++++++++++++++-----------------------
 devel/breezy/distinfo |    10 +-
 3 files changed, 1950 insertions(+), 1802 deletions(-)

diffs (truncated from 4784 to 300 lines):

diff -r 4e0af9520699 -r e1a48d4372a5 devel/breezy/Makefile
--- a/devel/breezy/Makefile     Mon Jul 20 19:47:18 2020 +0000
+++ b/devel/breezy/Makefile     Mon Jul 20 20:04:32 2020 +0000
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.4 2020/01/26 17:30:56 rillig Exp $
+# $NetBSD: Makefile,v 1.5 2020/07/20 20:04:32 rhialto Exp $
 
-DISTNAME=      breezy-3.0.1
+DISTNAME=      breezy-3.1.0
 CATEGORIES=    devel scm
 MASTER_SITES=  https://launchpad.net/brz/${PKGVERSION_NOREV:R}/${PKGVERSION_NOREV}/+download/
 
@@ -27,7 +27,6 @@
 REPLACE_PYTHON+=       breezy/git/bzr-upload-pack
 REPLACE_PYTHON+=       breezy/git/git-remote-bzr
 REPLACE_PYTHON+=       breezy/git/git_remote_helper.py
-REPLACE_PYTHON+=       breezy/patiencediff.py breezy/_patiencediff_py.py
 REPLACE_PYTHON+=       breezy/plugins/bash_completion/bashcomp.py
 REPLACE_PYTHON+=       breezy/tests/ssl_certs/create_ssls.py
 REPLACE_PYTHON+=       breezy/version_info_formats/format_python.py
diff -r 4e0af9520699 -r e1a48d4372a5 devel/breezy/PLIST
--- a/devel/breezy/PLIST        Mon Jul 20 19:47:18 2020 +0000
+++ b/devel/breezy/PLIST        Mon Jul 20 20:04:32 2020 +0000
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.1 2019/10/27 13:05:46 rhialto Exp $
+@comment $NetBSD: PLIST,v 1.2 2020/07/20 20:04:32 rhialto Exp $
 bin/brz
 bin/bzr-receive-pack
 bin/bzr-upload-pack
@@ -9,772 +9,620 @@
 ${PYSITELIB}/${EGG_INFODIR}/requires.txt
 ${PYSITELIB}/${EGG_INFODIR}/top_level.txt
 ${PYSITELIB}/breezy/__init__.py
+${PYSITELIB}/breezy/__init__.pyc
 ${PYSITELIB}/breezy/__init__.pyo
-${PYSITELIB}/breezy/__init__.pyc
-${PYSITELIB}/breezy/_annotator_py.pyo
+${PYSITELIB}/breezy/__main__.py
+${PYSITELIB}/breezy/__main__.pyc
+${PYSITELIB}/breezy/__main__.pyo
+${PYSITELIB}/breezy/_annotator_py.py
 ${PYSITELIB}/breezy/_annotator_py.pyc
-${PYSITELIB}/breezy/_chunks_to_lines_py.pyo
-${PYSITELIB}/breezy/_chunks_to_lines_py.pyc
-${PYSITELIB}/breezy/_known_graph_py.pyo
-${PYSITELIB}/breezy/_known_graph_py.pyc
-${PYSITELIB}/breezy/_patiencediff_py.pyo
-${PYSITELIB}/breezy/_patiencediff_py.pyc
-${PYSITELIB}/breezy/_readdir_py.pyo
-${PYSITELIB}/breezy/_readdir_py.pyc
-${PYSITELIB}/breezy/_rio_py.pyo
-${PYSITELIB}/breezy/_rio_py.pyc
-${PYSITELIB}/breezy/_static_tuple_py.pyo
-${PYSITELIB}/breezy/_static_tuple_py.pyc
-${PYSITELIB}/breezy/_termcolor.pyo
-${PYSITELIB}/breezy/_termcolor.pyc
-${PYSITELIB}/breezy/add.pyo
-${PYSITELIB}/breezy/add.pyc
-${PYSITELIB}/breezy/annotate.pyo
-${PYSITELIB}/breezy/annotate.pyc
-${PYSITELIB}/breezy/atomicfile.pyo
-${PYSITELIB}/breezy/atomicfile.pyc
-${PYSITELIB}/breezy/bencode.pyo
-${PYSITELIB}/breezy/bencode.pyc
-${PYSITELIB}/breezy/bisect.pyo
-${PYSITELIB}/breezy/bisect.pyc
-${PYSITELIB}/breezy/bisect_multi.pyo
-${PYSITELIB}/breezy/bisect_multi.pyc
-${PYSITELIB}/breezy/branch.pyo
-${PYSITELIB}/breezy/branch.pyc
-${PYSITELIB}/breezy/branchbuilder.pyo
-${PYSITELIB}/breezy/branchbuilder.pyc
-${PYSITELIB}/breezy/breakin.pyo
-${PYSITELIB}/breezy/breakin.pyc
-${PYSITELIB}/breezy/bugtracker.pyo
-${PYSITELIB}/breezy/bugtracker.pyc
-${PYSITELIB}/breezy/builtins.pyo
-${PYSITELIB}/breezy/builtins.pyc
-${PYSITELIB}/breezy/bzr_distutils.pyo
-${PYSITELIB}/breezy/bzr_distutils.pyc
-${PYSITELIB}/breezy/cache_utf8.pyo
-${PYSITELIB}/breezy/cache_utf8.pyc
-${PYSITELIB}/breezy/cethread.pyo
-${PYSITELIB}/breezy/cethread.pyc
-${PYSITELIB}/breezy/check.pyo
-${PYSITELIB}/breezy/check.pyc
-${PYSITELIB}/breezy/chunk_writer.pyo
-${PYSITELIB}/breezy/chunk_writer.pyc
-${PYSITELIB}/breezy/clean_tree.pyo
-${PYSITELIB}/breezy/clean_tree.pyc
-${PYSITELIB}/breezy/cleanup.pyo
-${PYSITELIB}/breezy/cleanup.pyc
-${PYSITELIB}/breezy/cmd_test_script.pyo
-${PYSITELIB}/breezy/cmd_test_script.pyc
-${PYSITELIB}/breezy/cmd_version_info.pyo
-${PYSITELIB}/breezy/cmd_version_info.pyc
-${PYSITELIB}/breezy/cmdline.pyo
-${PYSITELIB}/breezy/cmdline.pyc
-${PYSITELIB}/breezy/commands.pyo
-${PYSITELIB}/breezy/commands.pyc
-${PYSITELIB}/breezy/commit.pyo
-${PYSITELIB}/breezy/commit.pyc
-${PYSITELIB}/breezy/commit_signature_commands.pyo
-${PYSITELIB}/breezy/commit_signature_commands.pyc
-${PYSITELIB}/breezy/config.pyo
-${PYSITELIB}/breezy/config.pyc
-${PYSITELIB}/breezy/conflicts.pyo
-${PYSITELIB}/breezy/conflicts.pyc
-${PYSITELIB}/breezy/controldir.pyo
-${PYSITELIB}/breezy/controldir.pyc
-${PYSITELIB}/breezy/counted_lock.pyo
-${PYSITELIB}/breezy/counted_lock.pyc
-${PYSITELIB}/breezy/crash.pyo
-${PYSITELIB}/breezy/crash.pyc
-${PYSITELIB}/breezy/debug.pyo
-${PYSITELIB}/breezy/debug.pyc
-${PYSITELIB}/breezy/decorators.pyo
-${PYSITELIB}/breezy/decorators.pyc
-${PYSITELIB}/breezy/delta.pyo
-${PYSITELIB}/breezy/delta.pyc
-${PYSITELIB}/breezy/diff.pyo
-${PYSITELIB}/breezy/diff.pyc
-${PYSITELIB}/breezy/directory_service.pyo
-${PYSITELIB}/breezy/directory_service.pyc
-${PYSITELIB}/breezy/email_message.pyo
-${PYSITELIB}/breezy/email_message.pyc
-${PYSITELIB}/breezy/errors.pyo
-${PYSITELIB}/breezy/errors.pyc
-${PYSITELIB}/breezy/estimate_compressed_size.pyo
-${PYSITELIB}/breezy/estimate_compressed_size.pyc
-${PYSITELIB}/breezy/export.pyo
-${PYSITELIB}/breezy/export.pyc
-${PYSITELIB}/breezy/export_pot.pyo
-${PYSITELIB}/breezy/export_pot.pyc
-${PYSITELIB}/breezy/externalcommand.pyo
-${PYSITELIB}/breezy/externalcommand.pyc
-${PYSITELIB}/breezy/fetch_ghosts.pyo
-${PYSITELIB}/breezy/fetch_ghosts.pyc
-${PYSITELIB}/breezy/fifo_cache.pyo
-${PYSITELIB}/breezy/fifo_cache.pyc
-${PYSITELIB}/breezy/filter_tree.pyo
-${PYSITELIB}/breezy/filter_tree.pyc
-${PYSITELIB}/breezy/foreign.pyo
-${PYSITELIB}/breezy/foreign.pyc
-${PYSITELIB}/breezy/globbing.pyo
-${PYSITELIB}/breezy/globbing.pyc
-${PYSITELIB}/breezy/gpg.pyo
-${PYSITELIB}/breezy/gpg.pyc
-${PYSITELIB}/breezy/graph.pyo
-${PYSITELIB}/breezy/graph.pyc
-${PYSITELIB}/breezy/grep.pyo
-${PYSITELIB}/breezy/grep.pyc
-${PYSITELIB}/breezy/hashcache.pyo
-${PYSITELIB}/breezy/hashcache.pyc
-${PYSITELIB}/breezy/help.pyo
-${PYSITELIB}/breezy/help.pyc
-${PYSITELIB}/breezy/hooks.pyo
-${PYSITELIB}/breezy/hooks.pyc
-${PYSITELIB}/breezy/i18n.pyo
-${PYSITELIB}/breezy/i18n.pyc
-${PYSITELIB}/breezy/identitymap.pyo
-${PYSITELIB}/breezy/identitymap.pyc
-${PYSITELIB}/breezy/ignores.pyo
-${PYSITELIB}/breezy/ignores.pyc
-${PYSITELIB}/breezy/info.pyo
-${PYSITELIB}/breezy/info.pyc
-${PYSITELIB}/breezy/inter.pyo
-${PYSITELIB}/breezy/inter.pyc
-${PYSITELIB}/breezy/intset.pyo
-${PYSITELIB}/breezy/intset.pyc
-${PYSITELIB}/breezy/iterablefile.pyo
-${PYSITELIB}/breezy/iterablefile.pyc
-${PYSITELIB}/breezy/lazy_import.pyo
-${PYSITELIB}/breezy/lazy_import.pyc
-${PYSITELIB}/breezy/lazy_regex.pyo
-${PYSITELIB}/breezy/lazy_regex.pyc
-${PYSITELIB}/breezy/library_state.pyo
-${PYSITELIB}/breezy/library_state.pyc
-${PYSITELIB}/breezy/location.pyo
-${PYSITELIB}/breezy/location.pyc
-${PYSITELIB}/breezy/lock.pyo
-${PYSITELIB}/breezy/lock.pyc
-${PYSITELIB}/breezy/lockable_files.pyo
-${PYSITELIB}/breezy/lockable_files.pyc
-${PYSITELIB}/breezy/lockdir.pyo
-${PYSITELIB}/breezy/lockdir.pyc
-${PYSITELIB}/breezy/log.pyo
-${PYSITELIB}/breezy/log.pyc
-${PYSITELIB}/breezy/lru_cache.pyo
-${PYSITELIB}/breezy/lru_cache.pyc
-${PYSITELIB}/breezy/lsprof.pyo
-${PYSITELIB}/breezy/lsprof.pyc
-${PYSITELIB}/breezy/mail_client.pyo
-${PYSITELIB}/breezy/mail_client.pyc
-${PYSITELIB}/breezy/memorytree.pyo
-${PYSITELIB}/breezy/memorytree.pyc
-${PYSITELIB}/breezy/merge.pyo
-${PYSITELIB}/breezy/merge.pyc
-${PYSITELIB}/breezy/merge3.pyo
-${PYSITELIB}/breezy/merge3.pyc
-${PYSITELIB}/breezy/merge_directive.pyo
-${PYSITELIB}/breezy/merge_directive.pyc
-${PYSITELIB}/breezy/mergetools.pyo
-${PYSITELIB}/breezy/mergetools.pyc
-${PYSITELIB}/breezy/missing.pyo
-${PYSITELIB}/breezy/missing.pyc
-${PYSITELIB}/breezy/msgeditor.pyo
-${PYSITELIB}/breezy/msgeditor.pyc
-${PYSITELIB}/breezy/multiparent.pyo
-${PYSITELIB}/breezy/multiparent.pyc
-${PYSITELIB}/breezy/mutabletree.pyo
-${PYSITELIB}/breezy/mutabletree.pyc
-${PYSITELIB}/breezy/option.pyo
-${PYSITELIB}/breezy/option.pyc
-${PYSITELIB}/breezy/osutils.pyo
-${PYSITELIB}/breezy/osutils.pyc
-${PYSITELIB}/breezy/patch.pyo
-${PYSITELIB}/breezy/patch.pyc
-${PYSITELIB}/breezy/patches.pyo
-${PYSITELIB}/breezy/patches.pyc
-${PYSITELIB}/breezy/patiencediff.pyo
-${PYSITELIB}/breezy/patiencediff.pyc
-${PYSITELIB}/breezy/plugin.pyo
-${PYSITELIB}/breezy/plugin.pyc
-${PYSITELIB}/breezy/progress.pyo
-${PYSITELIB}/breezy/progress.pyc
-${PYSITELIB}/breezy/push.pyo
-${PYSITELIB}/breezy/push.pyc
-${PYSITELIB}/breezy/pyutils.pyo
-${PYSITELIB}/breezy/pyutils.pyc
-${PYSITELIB}/breezy/reconcile.pyo
-${PYSITELIB}/breezy/reconcile.pyc
-${PYSITELIB}/breezy/reconfigure.pyo
-${PYSITELIB}/breezy/reconfigure.pyc
-${PYSITELIB}/breezy/recordcounter.pyo
-${PYSITELIB}/breezy/recordcounter.pyc
-${PYSITELIB}/breezy/registry.pyo
-${PYSITELIB}/breezy/registry.pyc
-${PYSITELIB}/breezy/rename_map.pyo
-${PYSITELIB}/breezy/rename_map.pyc
-${PYSITELIB}/breezy/repository.pyo
-${PYSITELIB}/breezy/repository.pyc
-${PYSITELIB}/breezy/revision.pyo
-${PYSITELIB}/breezy/revision.pyc
-${PYSITELIB}/breezy/revisionspec.pyo
-${PYSITELIB}/breezy/revisionspec.pyc
-${PYSITELIB}/breezy/revisiontree.pyo
-${PYSITELIB}/breezy/revisiontree.pyc
-${PYSITELIB}/breezy/rio.pyo
-${PYSITELIB}/breezy/rio.pyc
-${PYSITELIB}/breezy/rules.pyo
-${PYSITELIB}/breezy/rules.pyc
-${PYSITELIB}/breezy/send.pyo
-${PYSITELIB}/breezy/send.pyc
-${PYSITELIB}/breezy/shelf.pyo
-${PYSITELIB}/breezy/shelf.pyc
-${PYSITELIB}/breezy/shelf_ui.pyo
-${PYSITELIB}/breezy/shelf_ui.pyc
-${PYSITELIB}/breezy/shellcomplete.pyo
-${PYSITELIB}/breezy/shellcomplete.pyc
-${PYSITELIB}/breezy/sixish.pyo
-${PYSITELIB}/breezy/sixish.pyc
-${PYSITELIB}/breezy/smtp_connection.pyo
-${PYSITELIB}/breezy/smtp_connection.pyc
-${PYSITELIB}/breezy/static_tuple.pyo
-${PYSITELIB}/breezy/static_tuple.pyc
-${PYSITELIB}/breezy/status.pyo
-${PYSITELIB}/breezy/status.pyc
-${PYSITELIB}/breezy/strace.pyo
-${PYSITELIB}/breezy/strace.pyc
-${PYSITELIB}/breezy/switch.pyo
-${PYSITELIB}/breezy/switch.pyc
-${PYSITELIB}/breezy/symbol_versioning.pyo
-${PYSITELIB}/breezy/symbol_versioning.pyc
-${PYSITELIB}/breezy/tag.pyo
-${PYSITELIB}/breezy/tag.pyc
-${PYSITELIB}/breezy/textfile.pyo
-${PYSITELIB}/breezy/textfile.pyc
-${PYSITELIB}/breezy/textmerge.pyo
-${PYSITELIB}/breezy/textmerge.pyc
-${PYSITELIB}/breezy/timestamp.pyo
-${PYSITELIB}/breezy/timestamp.pyc
-${PYSITELIB}/breezy/trace.pyo
-${PYSITELIB}/breezy/trace.pyc
-${PYSITELIB}/breezy/transactions.pyo
-${PYSITELIB}/breezy/transactions.pyc
-${PYSITELIB}/breezy/transform.pyo
-${PYSITELIB}/breezy/transform.pyc
-${PYSITELIB}/breezy/tree.pyo
-${PYSITELIB}/breezy/tree.pyc
-${PYSITELIB}/breezy/treebuilder.pyo
-${PYSITELIB}/breezy/treebuilder.pyc
-${PYSITELIB}/breezy/tsort.pyo
-${PYSITELIB}/breezy/tsort.pyc
-${PYSITELIB}/breezy/tuned_gzip.pyo
-${PYSITELIB}/breezy/tuned_gzip.pyc
-${PYSITELIB}/breezy/uncommit.pyo
-${PYSITELIB}/breezy/uncommit.pyc
-${PYSITELIB}/breezy/upgrade.pyo
-${PYSITELIB}/breezy/upgrade.pyc



Home | Main Index | Thread Index | Old Index