1d954582da
bzr-svn 1.0.2 2010-01-22 BUG FIXES * Cope with Google code Subversion repositories a bit better in the layout detection code. (Jelmer Vernooij) * Push tags when pushing to a new repository. (Jelmer Vernooij, #459444) * Cope with non-ascii URLs. * During connect. (#456548, Jelmer Vernooij) * During repository creation. (#458008, Jelmer Vernooij) * Cope with non-ascii characters in svn author names. (#460392, Jelmer Vernooij) * Fix expected URL in Repository.__repr__ tests that sometimes causes troubles if the temporary directory contains special characters. (John Szakmeister, #460899) * Cope with pushing new non-mainline revisions. (Jelmer Vernooij, #416328) * Support probing for Subversion repositories over existing HTTP transports using pycurl. (Jelmer Vernooij, #424626) * Show Subversion revno and uuid in "bzr version-info". (Jelmer Vernooij, #490771) * Properly handle invalid Subversion revision numbers. (Jelmer Vernooij, #504376) PERFORMANCE * When updating the log cache, fetch from newest to oldest revision as the Subversion database backends are optimized for this. (John Szakmeister) * Fetch history information newest revision to oldest revision because of speed. (John Szakmeister, #453789) * Add extra constraints in sqlite database. (Jelmer Vernooij) FEATURES * New variant of the 'trunk' layout named 'trunk-variable' that accepts branches with any level of nesting, at some performance cost. (Jelmer Vernooij) bzr-svn 1.0.1 2009-10-20 BUG FIXES * Mark as compatible with Bazaar 2.1. (Jelmer Vernooij) * Only use tdb if Tdb.get is there. (Jelmer Vernooij, #440211) * Cope with xdg_cache_home sometimes containing unicode. (Jelmer Vernooij) * Provide right infrastructure for bzrlib.tests.per_foreign_vcs. (Jelmer Vernooij)
37 lines
1.1 KiB
Makefile
37 lines
1.1 KiB
Makefile
# $NetBSD: Makefile,v 1.18 2011/07/22 14:17:37 obache Exp $
|
|
|
|
DISTNAME= bzr-svn-${VER}
|
|
CATEGORIES= devel scm
|
|
MASTER_SITES= http://launchpad.net/bzr-svn/1.0/${VER}/+download/
|
|
MASTER_SITES+= http://samba.org/~jelmer/bzr/
|
|
VER= 1.0.2
|
|
|
|
MAINTAINER= jan.m.danielsson@gmail.com
|
|
HOMEPAGE= http://bazaar-vcs.org/BzrForeignBranches/Subversion
|
|
COMMENT= Foreign Subversion repository support for Bazaar
|
|
LICENSE= gnu-gpl-v2
|
|
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
DEPENDS+= bzr>=2.0:../../devel/bzr
|
|
DEPENDS+= ${PYPKGPREFIX}-subvertpy>=0.6.1:../../devel/py-subvertpy
|
|
|
|
.include "../../lang/python/pyversion.mk"
|
|
|
|
.if ${PYVERSSUFFIX} == "2.4"
|
|
DEPENDS= ${PYPKGPREFIX}-sqlite2>=2.3.5:../../databases/py-sqlite2
|
|
.else
|
|
DEPENDS= ${PYPKGPREFIX}-sqlite3-[0-9]*:../../databases/py-sqlite3
|
|
.endif
|
|
|
|
# for make test
|
|
USE_TOOLS+= gmake
|
|
|
|
# NOTE: This must run in a UTF-8 locale, e.g. LC_TYPE=en_US.utf8 make test
|
|
#TEST_DEPENDS+= ${PYPKGPREFIX}-testtools-[0-9]*:../../devel/py-testtools
|
|
#TEST_DEPENDS+= ${PYPKGPREFIX}-paramiko-[0-9]*:../../security/py-paramiko
|
|
#TEST_TARGET= check-verbose
|
|
|
|
.include "../../devel/bzr/plugin.mk"
|
|
.include "../../lang/python/distutils.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|