diff options
author | epg <epg@pkgsrc.org> | 2008-09-04 22:44:01 +0000 |
---|---|---|
committer | epg <epg@pkgsrc.org> | 2008-09-04 22:44:01 +0000 |
commit | 3dcfbefa20b9796802a8f5cced02903e04c6a13e (patch) | |
tree | 8444aa7794c5eabf2ace0628278763ed8029e707 | |
parent | f7e11387be5dfc0ec7a8db7b0054f95922393706 (diff) | |
download | pkgsrc-3dcfbefa20b9796802a8f5cced02903e04c6a13e.tar.gz |
bzr-svn 0.4.12 2008-09-01
BUG FIXES
* Cope with svn+ prefix when setting tags. (#261748)
* Fix contents of files when using stacked branching. (#262314)
* Fix compatibility with Bazaar 1.7.
* Use local application data directory on Windows for bzr-svn cache.
(#231041)
* No longer show backtrace when a generic DAV error occurs, as
this is usually a sign of a server-side error rather than a bug.
(#255159)
* Fix forward declarations of Python types, fixes
compilation on mingw. (#263284)
* Avoid explicit revnum reporting for inventory entries during fetch.
(It caused severe speed regressions and is not necessary).
* Fix size of bool variable in replacement stdbool.h. This was
causing strange errors on Windows, most notably slow fetches.
* Fix pull into Subversion working copies.
* Properly encode cache file path in case it contains non-ascii
characters. (#262923)
* Don't link explicitly against apr libraries. (#262711)
FEATURES
* Use native Windows password prompter on Windows. (#263287)
bzr-svn 0.4.11 2008-08-26
bzr-svn 0.4.11~rc2 2008-08-26
CHANGES
* Fix setup.py run with python2.4. (#256804)
* Use rst2html.py rather than rst2html if it is available.
BUG FIXES
* Parse http redirect errors in some non-English locales better.
* Avoid importing tags as branches in svn-import, now that tags are
converted to native Bazaar tags.
FEATURES
* svn-import will now remove branches removed in Subversion.
(#246243). The --keep option can be specified to keep
branches removed in Subversion around.
* Add --incremental option to bzr-svn for incremental imports.
* Set revision properties from v3 mappings when possible.
(#127736)
* Create tags base directory if it doesn't exist.
* Add --merged option to svn-push command.
* Improve tag/branch discovery.
-rw-r--r-- | devel/bzr-svn/Makefile | 15 | ||||
-rw-r--r-- | devel/bzr-svn/PLIST | 5 | ||||
-rw-r--r-- | devel/bzr-svn/distinfo | 8 |
3 files changed, 17 insertions, 11 deletions
diff --git a/devel/bzr-svn/Makefile b/devel/bzr-svn/Makefile index fbe1b25f1c1..45604713775 100644 --- a/devel/bzr-svn/Makefile +++ b/devel/bzr-svn/Makefile @@ -1,10 +1,9 @@ -# $NetBSD: Makefile,v 1.1.1.1 2008/08/26 01:44:50 epg Exp $ +# $NetBSD: Makefile,v 1.2 2008/09/04 22:44:01 epg Exp $ DISTNAME= bzr-svn-${VER} CATEGORIES= devel scm MASTER_SITES= http://launchpad.net/bzr-svn/0.4/${VER}/+download/ -MASTER_SITES= http://samba.org/~jelmer/bzr/ -VER= 0.4.11~rc1 +VER= 0.4.12 MAINTAINER= epg@NetBSD.org HOMEPAGE= http://bazaar-vcs.org/BzrForeignBranches/Subversion @@ -12,14 +11,12 @@ COMMENT= Foreign Subversion repositoriy support for Bazaar PKG_DESTDIR_SUPPORT= user-destdir -DEPENDS+= ${PYPKGPREFIX}-sqlite2>=2.3.5:../../databases/py-sqlite2 +DEPENDS+= ${SQLITE_DEP} # for make test USE_TOOLS+= gmake MAKE_ENV+= SVN_PREFIX=${BUILDLINK_PREFIX.subversion-base} -# no 2.4 support: https://bugs.launchpad.net/bzr-svn/+bug/256804 -PYTHON_VERSIONS_ACCEPTED=25 PYDISTUTILSPKG= yes # NOTE: This must run in a UTF-8 locale, e.g. LC_TYPE=en_US.utf8 make test TEST_TARGET= check-verbose @@ -28,3 +25,9 @@ TEST_TARGET= check-verbose .include "../../devel/subversion-base/buildlink3.mk" .include "../../lang/python/extension.mk" .include "../../mk/bsd.pkg.mk" + +.if ${PYVERSSUFFIX} == "2.5" || ${PYVERSSUFFIX} == "2.6" +SQLITE_DEP= ${PYPKGPREFIX}-sqlite3-[0-9]*:../../databases/py-sqlite3 +.else +SQLITE_DEP= ${PYPKGPREFIX}-sqlite2>=2.3.5:../../databases/py-sqlite2 +.endif diff --git a/devel/bzr-svn/PLIST b/devel/bzr-svn/PLIST index 5c20ae111e0..1ce0899f0c7 100644 --- a/devel/bzr-svn/PLIST +++ b/devel/bzr-svn/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.1.1.1 2008/08/26 01:44:50 epg Exp $ +@comment $NetBSD: PLIST,v 1.2 2008/09/04 22:44:01 epg Exp $ ${PYSITELIB}/bzrlib/plugins/svn/__init__.py ${PYSITELIB}/bzrlib/plugins/svn/__init__.pyc ${PYSITELIB}/bzrlib/plugins/svn/__init__.pyo @@ -86,6 +86,9 @@ ${PYSITELIB}/bzrlib/plugins/svn/revspec.pyo ${PYSITELIB}/bzrlib/plugins/svn/svk.py ${PYSITELIB}/bzrlib/plugins/svn/svk.pyc ${PYSITELIB}/bzrlib/plugins/svn/svk.pyo +${PYSITELIB}/bzrlib/plugins/svn/tags.py +${PYSITELIB}/bzrlib/plugins/svn/tags.pyc +${PYSITELIB}/bzrlib/plugins/svn/tags.pyo ${PYSITELIB}/bzrlib/plugins/svn/tests/__init__.py ${PYSITELIB}/bzrlib/plugins/svn/tests/__init__.pyc ${PYSITELIB}/bzrlib/plugins/svn/tests/__init__.pyo diff --git a/devel/bzr-svn/distinfo b/devel/bzr-svn/distinfo index d22da873524..e48808d32de 100644 --- a/devel/bzr-svn/distinfo +++ b/devel/bzr-svn/distinfo @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.1.1.1 2008/08/26 01:44:50 epg Exp $ +$NetBSD: distinfo,v 1.2 2008/09/04 22:44:01 epg Exp $ -SHA1 (bzr-svn-0.4.11~rc1.tar.gz) = f17db8db733879c879582cda9936d702d69a424b -RMD160 (bzr-svn-0.4.11~rc1.tar.gz) = 78f0125c6f71e5d325711d158e5073140611102e -Size (bzr-svn-0.4.11~rc1.tar.gz) = 211372 bytes +SHA1 (bzr-svn-0.4.12.tar.gz) = fd785e2f87f326dc8f37a50ec13582583df08b3f +RMD160 (bzr-svn-0.4.12.tar.gz) = 9b697ed178928e447c7ba04d33d5e49462fd52f3 +Size (bzr-svn-0.4.12.tar.gz) = 219324 bytes |