c99d411acd
Version 1.13.0 User-visible changes: - Minor new features and improvements: * New 'svnadmin rev-size' command to report revision size * In 'svn help', hide experimental commands and global options * Add a hint about mod_dav_svn misconfiguration * Performance improvement for 'svn st' etc., in WC SQLite DB - Client-side bugfixes: * Windows: avoid delays in SSL certificate validation override * Fix 'svn patch' setting mode 0600 on patched files with props * Fix "svn diff --changelist ARG" broken in subdirectories * Fix misleading 'redirect cycle' error on a non-repository URL - Server-side bugfixes: * svnserve: Report some errors that we previously ignored * Make server code more resilient to malformed paths and URLs * Make dump stream parser more resilient to malformed dump stream * mod_dav_svn: Fix missing Last-Modified header on 'external' GET requests - Client-side and server-side bugfixes: * Fix excessive memory usage in some cases reading binary data * Win32: fix svn_io_file_rename2() spinning in a retry loop - Other tool improvements and bugfixes: * svn_load_dirs.pl: do not show password; fix cleanup Developer-visible changes: * New svn_fs_ioctl() API for FSFS stats, dump/load index, rev-size Version 1.12.2 User-visible changes: * Fix conflict resolver bug: local and incoming edits swapped. * Fix memory lifetime problem in a libsvn_wc error code path. * Faster Windows file existence checks, improving 'svn st' etc. Developer-visible changes: * Allow generating Visual Studio 2019 projects * Fix build with APR 1.7.0. * Fix building Subversion with Visual Studio 2005 and 2008. * Allow svnserve's 'get-deleted-rev' API to return 'not deleted'. Version 1.12.1 (Not released; see changes for 1.12.2.)
27 lines
1,002 B
Makefile
27 lines
1,002 B
Makefile
# $NetBSD: Makefile,v 1.65 2020/02/24 16:10:33 adam Exp $
|
|
|
|
PKGNAME= subversion-${SVNVER}
|
|
COMMENT= Version control system, meta-package
|
|
|
|
META_PACKAGE= yes
|
|
|
|
.include "../../devel/subversion/Makefile.common"
|
|
|
|
DEPENDS+= subversion-base-${SVNVER}{,nb[0-9]*}:../../devel/subversion-base
|
|
DEPENDS+= ${APACHE_PKG_PREFIX}-subversion-${SVNVER}{,nb[0-9]*}:../../www/ap2-subversion
|
|
DEPENDS+= p5-subversion-${SVNVER}{,nb[0-9]*}:../../devel/p5-subversion
|
|
DEPENDS+= ${PYPKGPREFIX}-subversion-${SVNVER}{,nb[0-9]*}:../../devel/py-subversion
|
|
DEPENDS+= ${RUBY_PKGPREFIX}-subversion-${SVNVER}{,nb[0-9]*}:../../devel/ruby-subversion
|
|
|
|
.if !empty(PKG_OPTIONS:Mjava)
|
|
# The standard implementation of java is non-portable and non-free, so
|
|
# we do not depend on it by default.
|
|
DEPENDS+= java-subversion-${SVNVER}{,nb[0-9]*}:../../devel/java-subversion
|
|
.endif
|
|
|
|
CATEGORIES+= meta-pkgs
|
|
|
|
.include "../../lang/python/pyversion.mk"
|
|
.include "../../lang/ruby/rubyversion.mk"
|
|
.include "../../mk/apache.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|