7282747c9d
bzr 2.0.3 ######### :Codename: little italy :2.0.3: 2009-12-14 The third stable release of Bazaar has a small handful of bugfixes. As expected, this has no internal or external compatibility changes versus 2.0.2 (or 2.0.0). Bug Fixes ********* * ``bzr push --use-existing-dir`` no longer crashes if the directory exists but contains an invalid ``.bzr`` directory. (Andrew Bennetts, #423563) * Content filters are now applied correctly after pull, merge and switch. (Ian Clatworthy, #385879) * Fix a potential segfault in the groupcompress hash map handling code. When inserting new entries, if the final hash bucket was empty, we could end up trying to access if ``(last_entry+1)->ptr == NULL``. (John Arbash Meinel, #490228) * Improve "Binary files differ" hunk handling. (Aaron Bentley, #436325) bzr 2.0.2 ######### :Codename: after the scare :2.0.2: 2009-11-02 The second in our "let's keep the stable bugfixes flowing" series. As expected this has a few (~9) bugfixes relative to 2.0.1, and no major api changes or features. Bug Fixes ********* * Avoid "NoneType has no attribute st_mode" error when files disappear from a directory while it's being read. (Martin Pool, #446033) * Content filters are now applied correctly after revert. (Ian Clatworthy) * Diff parsing handles "Binary files differ" hunks. (Aaron Bentley, #436325) * Fetching from stacked pre-2a repository via a smart server no longer fails intermittently with "second push failed to complete". (Andrew Bennetts, #437626) * Fix typos left after test_selftest refactoring. (Vincent Ladeuil, Matt Nordhoff, #461149) * Fixed ``ObjectNotLocked`` errors during ``bzr log -r NNN somefile``. (Andrew Bennetts, #445171) * PreviewTree file names are not limited by the encoding of the temp directory's filesystem. (Aaron Bentley, #436794) Improvements ************ * ``bzr log`` now read-locks branches exactly once, so makes better use of data caches. (Andrew Bennetts) Documentation ************* * Filtered views user documentation upgraded to refer to format 2a instead of pre-2.0 formats. (Ian Clatworthy)
46 lines
1.2 KiB
Makefile
46 lines
1.2 KiB
Makefile
# $NetBSD: Makefile,v 1.47 2010/02/16 11:27:27 wiz Exp $
|
|
|
|
DISTNAME= bzr-${VER}
|
|
CATEGORIES= devel scm
|
|
MASTER_SITES= http://launchpad.net/bzr/2.0/${VER}/+download/
|
|
VER= 2.0.3
|
|
|
|
MAINTAINER= epg@NetBSD.org
|
|
HOMEPAGE= http://bazaar-vcs.org/
|
|
COMMENT= Bazaar open source distributed version control system
|
|
LICENSE= gnu-gpl-v2
|
|
|
|
DEPENDS+= ${PYPKGPREFIX}-expat>=0:../../textproc/py-expat
|
|
BUILD_DEPENDS+= ${PYPKGPREFIX}-docutils>=0:../../textproc/py-docutils
|
|
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
USE_TOOLS+= gmake
|
|
|
|
PY_PATCHPLIST= yes
|
|
PYDISTUTILSPKG= yes
|
|
|
|
PYTHON_PATCH_SCRIPTS= bzr bzrlib/weave.py
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
.if !empty(PKGSRC_RUN_TEST:M[Yy][Ee][Ss])
|
|
DEPENDS+= ${PYPKGPREFIX}-medusa>=0:../../net/py-medusa
|
|
.endif
|
|
|
|
SUBST_CLASSES+= python
|
|
SUBST_MESSAGE.python= Fix python path for test case.
|
|
SUBST_STAGE.python= post-extract
|
|
SUBST_FILES.python+= Makefile
|
|
SUBST_SED.python+= -e 's,=python,=${PYTHONBIN},'
|
|
|
|
post-build:
|
|
cd ${WRKSRC} && ${PYTHONBIN} tools/generate_docs.py man
|
|
|
|
do-test:
|
|
# XXX shouldn't HOME=FAKEHOME already be set?
|
|
HOME=${FAKEHOMEDIR}; cd ${WRKSRC} && ./bzr selftest -v
|
|
|
|
.include "../../lang/python/application.mk"
|
|
.include "../../lang/python/extension.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|