NOTICE: This package has been removed from pkgsrc

./wip/bzr, Bazaar open source distributed version control system

[ CVSweb ] [ Homepage ] [ RSS ] [ Required by ]


Branch: CURRENT, Version: 2.4.2, Package name: bzr-2.4.2, Maintainer: ddeus.pkgsrc

bazaar-ng is a distributed/decentralized version control system.

Features include:
* simple to use
* runs on Unix and Windows
* branches can be hosted on an http server with no special software
* full directory versioning including tracking subdirectories,
file renames, symlinks and execute-bits
* friendly interface that should be familiar to users of cvs,
svn or other systems
* Python interface for extending and embedding, including a
plugin interface
* strong integrity protection, including gpg-signing
* vibrant and active community

For usage instructions run "bzr help".


Required to run:
[textproc/py-expat] [lang/python26]

Required to build:
[textproc/py-docutils] [lang/py-pyrex] [devel/gmake]

Master sites:

SHA1: 3663b862dc8fb9729f9aae2427cbab2af9c901ad
RMD160: 47ecfd1651d10aeea28c0dff3124c637dbbb93ab
Filesize: 7352.267 KB

Version history: (Expand)


CVS history: (Expand)


   2012-04-08 23:24:36 by Thomas Klausner | Files touched by this commit (30) | Package removed
Log message:
Remove *bzr* packages, the ones in pkgsrc itself are the same or newer.
   2011-11-27 11:58:36 by Oleksandr Kozachuk | Files touched by this commit (1)
Log message:
Fix dependency to py-testtools.
   2011-11-27 11:22:12 by Aleksey Cheusov | Files touched by this commit (1)
Log message:
Use ${VER:R} instead of 2.4

   2011-11-24 14:01:58 by Oleksandr Kozachuk | Files touched by this commit (6)
Log message:
Fix python version, bazaar 2.4 supports only python 2.6 and 2.7.
   2011-11-22 21:25:43 by Oleksandr Kozachuk | Files touched by this commit (1)
Log message:
Fix the list of python scripts ("#!/usr/bin/env python" problem).
   2011-11-22 15:13:22 by Greg Troxel | Files touched by this commit (3)
Log message:
rename patch so that it matches what is in pkgsrc, reducing the diff
when moving this packge to pkgsrc.
   2011-11-22 10:48:12 by Oleksandr Kozachuk | Files touched by this commit (1)
Log message:
Changed the maintainer to me and limited python version to 2.{7,6,5}.
   2011-11-16 11:10:13 by Oleksandr Kozachuk | Files touched by this commit (3)
Log message:
New stable Bazaar version 2.4.2.

bzr 2.4.2
#########

:2.4.2: 2011-10-27

This is a bugfix release. Most of the bugs dealt with portability
issues. Upgrading is recommended for all users of earlier 2.4 releases.

External Compatibility Breaks
*****************************

None.

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

None.

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

* Fixed a bug where ``bzr tags -r x..y`` loaded the branch history once for
  every revision in the range; it's now much faster. (Vincent Ladeuil, #857335)

Bug Fixes
*********

* Fixed an infinite loop when creating a repo at the root of the filesystem, 
  i.e. "/", due to posixpath.normpath() not collapsing 2 leading \ 
slashes into 
  one, thus respecting the POSIX standard, but making relpath() loop infinitely.
  (Florian Vichot, #861008)

* Fixed loading of external merge tools from config to properly decode
  command-lines which contain embedded quotes. (Gordon Tyler, #828803)

* Include declaration of 'changed' to avoid an UnboundLocalError in dirstate
  pyrex code with new Cython versions. (Denys Duchier, #837221)

* Prevent several kinds of OverflowError and other fallout from failing to fit
  stat fields into four bytes in dirstate pack_stat implementations.
  (Martin Packman, #683191 #706957)

* Return early from create_delta_index_from_delta given tiny inputs. This
  avoids raising a spurious MemoryError on certain platforms such as AIX.
  (John Arbash Meinel, #856731)
  
Documentation
*************

* Corrected documentation for ``bzr serve`` in the Admin Guide.
  (Morten Bøgeskov, Martin Pool, #832576)

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

None.

Internals
*********

No changes.

Testing
*******

* Accept both old and new style testtools output in selftest tests.
  (Jelmer Vernooij, Martin Packman, #815423)

* Fix the race for TestingThreadingTCPServer in
  test_server_crash_while_responding. (Vincent Ladeuil, #869366)

* Really corrupt the pack file without depending on a special length or value.
  (Vincent Ladeuil, #807032)