User-visible changes: - Client- and server-side bugfixes: * fix assertion on urls of the form 'file://./' * stop linking against psapi.dll on Windows * translation updates for Swedish - Client-side bugfixes: * revert: fix problems reverting moves * update: fix assertion when file external access is denied * merge: reduce network connections for automatic merge * merge: fix path corruption during reintegration * mergeinfo: fix crash * ra_serf: verify the result of xml parsing * ra_serf: improve error messages during commit * ra_local: fix error with repository in Windows drive root * fix crash on windows when piped command is interrupted * fix crash in the crash handler on windows * fix assertion when upgrading old working copies - Server-side bugfixes: * hotcopy: cleanup unpacked revprops with '--incremental' * fix OOM on concurrent requests at threaded server start * fsfs: improve error message when unsupported fsfs format found * fix memory problem in 3rd party FS module loader Developer-visible changes: - General: * allow compiling against serf 1.3 and later on Windows - Bindings: * javahl: canonicalize path for streaFileContent method
42 lines
1.3 KiB
Makefile
42 lines
1.3 KiB
Makefile
# $NetBSD: Makefile,v 1.58 2013/11/02 09:19:17 adam Exp $
|
|
|
|
PKGNAME= ${PYPKGPREFIX}-subversion-${SVNVER}
|
|
COMMENT= Python bindings and tools for Subversion
|
|
|
|
.include "../../devel/subversion/Makefile.common"
|
|
|
|
SHLIBTOOL_OVERRIDE= # empty
|
|
|
|
CONFIGURE_ENV+= PYTHON2=${PYTHONBIN:Q}
|
|
|
|
PY_PATCHPLIST= YES
|
|
PYTHON_PATCH_SCRIPTS= tools/hook-scripts/mailer/mailer.py
|
|
PYTHON_SELF_CONFLICT= YES
|
|
|
|
BUILD_TARGET= swig-py
|
|
INSTALL_TARGET= install-swig-py
|
|
|
|
MAKE_ENV+= EXTRA_CPPFLAGS=${BUILDLINK_CPPFLAGS:Q}
|
|
MAKE_FLAGS+= swig_pydir=${LOCALBASE}/${PYSITELIB}/libsvn \
|
|
swig_pydir_extra=${LOCALBASE}/${PYSITELIB}/svn
|
|
|
|
TEST_TARGET= all check check-swig-py
|
|
|
|
INSTALLATION_DIRS= ${SVNEXAMPLES}/python ${SVNEXAMPLES}/hook-scripts
|
|
|
|
post-patch:
|
|
${RM} ${WRKSRC}/build-outputs.mk
|
|
${CP} ${FILESDIR}/build-outputs.mk ${WRKSRC}/build-outputs.mk
|
|
|
|
post-install:
|
|
${INSTALL_DATA} ${WRKSRC}/tools/examples/*.py ${DESTDIR}${SVNEXAMPLES}/python
|
|
${INSTALL_DATA} ${WRKSRC}/tools/hook-scripts/mailer/mailer.py \
|
|
${DESTDIR}${SVNEXAMPLES}/hook-scripts
|
|
${INSTALL_DATA} \
|
|
${WRKSRC}/tools/hook-scripts/mailer/mailer.conf.example \
|
|
${DESTDIR}${SVNEXAMPLES}/hook-scripts
|
|
|
|
.include "../../devel/subversion-base/buildlink3.mk"
|
|
.include "../../lang/python/application.mk"
|
|
.include "../../lang/python/extension.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|