Date: Tue, 8 May 2018 04:54:36 +0000 (UTC) From: Peter Wemm <peter@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r333355 - in head/usr.bin/svn: . lib/libsvn_client lib/libsvn_delta lib/libsvn_fs_x lib/libsvn_ra_serf lib/libsvn_ra_svn lib/libsvn_repos lib/libsvn_subr svn Message-ID: <201805080454.w484saLN063947@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: peter Date: Tue May 8 04:54:36 2018 New Revision: 333355 URL: https://svnweb.freebsd.org/changeset/base/333355 Log: Update svn/svnlite from 1.9.7 to 1.10.0 Modified: head/usr.bin/svn/lib/libsvn_client/Makefile head/usr.bin/svn/lib/libsvn_delta/Makefile head/usr.bin/svn/lib/libsvn_fs_x/Makefile head/usr.bin/svn/lib/libsvn_ra_serf/Makefile head/usr.bin/svn/lib/libsvn_ra_svn/Makefile head/usr.bin/svn/lib/libsvn_repos/Makefile head/usr.bin/svn/lib/libsvn_subr/Makefile head/usr.bin/svn/svn/Makefile head/usr.bin/svn/svn_private_config.h Modified: head/usr.bin/svn/lib/libsvn_client/Makefile ============================================================================== --- head/usr.bin/svn/lib/libsvn_client/Makefile Tue May 8 04:52:52 2018 (r333354) +++ head/usr.bin/svn/lib/libsvn_client/Makefile Tue May 8 04:54:36 2018 (r333355) @@ -8,13 +8,14 @@ INTERNALLIB= yes LIB= svn_client SRCS= add.c blame.c cat.c changelist.c checkout.c cleanup.c \ - cmdline.c commit.c commit_util.c compat_providers.c copy.c \ - copy_foreign.c ctx.c delete.c deprecated.c diff.c \ - diff_local.c diff_summarize.c export.c externals.c import.c \ - info.c iprops.c list.c locking_commands.c log.c merge.c \ - mergeinfo.c mtcc.c patch.c prop_commands.c \ - ra.c relocate.c repos_diff.c resolved.c revert.c revisions.c \ - status.c switch.c update.c upgrade.c url.c util.c version.c + cmdline.c commit_util.c commit.c compat_providers.c \ + conflicts.c copy_foreign.c copy.c ctx.c delete.c deprecated.c \ + diff_local.c diff_summarize.c diff.c export.c externals.c \ + import.c info.c iprops.c list.c locking_commands.c log.c \ + merge_elements.c merge.c mergeinfo.c mtcc.c patch.c \ + prop_commands.c ra.c relocate.c repos_diff.c resolved.c \ + revert.c revisions.c shelve.c status.c switch.c update.c \ + upgrade.c url.c util.c version.c CFLAGS+= -I${SVNDIR}/include -I${SVNDIR} -I${.CURDIR}/../.. \ -I${.CURDIR}/../libapr \ Modified: head/usr.bin/svn/lib/libsvn_delta/Makefile ============================================================================== --- head/usr.bin/svn/lib/libsvn_delta/Makefile Tue May 8 04:52:52 2018 (r333354) +++ head/usr.bin/svn/lib/libsvn_delta/Makefile Tue May 8 04:54:36 2018 (r333355) @@ -7,8 +7,10 @@ INTERNALLIB= yes LIB= svn_delta -SRCS= cancel.c compat.c compose_delta.c debug_editor.c \ - default_editor.c deprecated.c depth_filter_editor.c editor.c \ +SRCS= branch.c branch_compat.c branch_migrate.c branch_nested.c \ + branch_repos.c cancel.c compat.c compose_delta.c \ + debug_editor.c default_editor.c deprecated.c \ + depth_filter_editor.c editor.c element.c \ path_driver.c svndiff.c text_delta.c version.c xdelta.c CFLAGS+= -I${SVNDIR}/include -I${SVNDIR} -I${.CURDIR}/../.. \ Modified: head/usr.bin/svn/lib/libsvn_fs_x/Makefile ============================================================================== --- head/usr.bin/svn/lib/libsvn_fs_x/Makefile Tue May 8 04:52:52 2018 (r333354) +++ head/usr.bin/svn/lib/libsvn_fs_x/Makefile Tue May 8 04:54:36 2018 (r333355) @@ -7,7 +7,8 @@ INTERNALLIB= yes LIB= svn_fs_x -SRCS= cached_data.c caching.c changes.c dag.c fs.c fs_id.c fs_x.c \ +SRCS= batch_fsync.c cached_data.c caching.c changes.c \ + dag_cache.c dag.c fs.c fs_id.c fs_x.c \ hotcopy.c id.c index.c lock.c low_level.c noderevs.c pack.c \ recovery.c rep-cache.c reps.c rev_file.c revprops.c \ string_table.c temp_serializer.c transaction.c tree.c \ Modified: head/usr.bin/svn/lib/libsvn_ra_serf/Makefile ============================================================================== --- head/usr.bin/svn/lib/libsvn_ra_serf/Makefile Tue May 8 04:52:52 2018 (r333354) +++ head/usr.bin/svn/lib/libsvn_ra_serf/Makefile Tue May 8 04:54:36 2018 (r333355) @@ -10,9 +10,10 @@ LIB= svn_ra_serf SRCS= blame.c blncache.c commit.c eagain_bucket.c \ get_deleted_rev.c get_file.c get_lock.c getdate.c \ getlocations.c getlocationsegments.c getlocks.c \ - inherited_props.c lock.c log.c merge.c mergeinfo.c \ - multistatus.c options.c property.c replay.c sb_bucket.c \ - serf.c stat.c update.c util.c util_error.c xml.c + inherited_props.c list.c lock.c log.c merge.c mergeinfo.c \ + multistatus.c options.c property.c replay.c \ + request_body.c sb_bucket.c serf.c stat.c stream_bucket.c \ + update.c util.c util_error.c xml.c CFLAGS+= -I${SVNDIR}/include -I${SVNDIR} -I${.CURDIR}/../.. \ -I${.CURDIR}/../libapr \ Modified: head/usr.bin/svn/lib/libsvn_ra_svn/Makefile ============================================================================== --- head/usr.bin/svn/lib/libsvn_ra_svn/Makefile Tue May 8 04:52:52 2018 (r333354) +++ head/usr.bin/svn/lib/libsvn_ra_svn/Makefile Tue May 8 04:54:36 2018 (r333355) @@ -8,7 +8,7 @@ INTERNALLIB= yes LIB= svn_ra_svn SRCS= client.c cram.c cyrus_auth.c deprecated.c editorp.c \ - internal_auth.c marshal.c streams.c version.c + internal_auth.c marshal.c streams.c wrapped_sasl.c version.c CFLAGS+= -I${SVNDIR}/include -I${SVNDIR} -I${.CURDIR}/../.. \ -I${.CURDIR}/../libapr \ Modified: head/usr.bin/svn/lib/libsvn_repos/Makefile ============================================================================== --- head/usr.bin/svn/lib/libsvn_repos/Makefile Tue May 8 04:52:52 2018 (r333354) +++ head/usr.bin/svn/lib/libsvn_repos/Makefile Tue May 8 04:54:36 2018 (r333355) @@ -7,9 +7,10 @@ INTERNALLIB= yes LIB= svn_repos -SRCS= authz.c authz_pool.c config_pool.c commit.c delta.c \ +SRCS= authz.c authz_info.c authz_parse.c \ + config_pool.c commit.c compat.c config_file.c delta.c \ deprecated.c dump.c fs-wrap.c hooks.c load-fs-vtable.c \ - load.c log.c node_tree.c notify.c replay.c reporter.c \ + list.c load.c log.c node_tree.c notify.c replay.c reporter.c \ repos.c rev_hunt.c CFLAGS+= -I${SVNDIR}/include -I${SVNDIR} -I${.CURDIR}/../.. \ Modified: head/usr.bin/svn/lib/libsvn_subr/Makefile ============================================================================== --- head/usr.bin/svn/lib/libsvn_subr/Makefile Tue May 8 04:52:52 2018 (r333354) +++ head/usr.bin/svn/lib/libsvn_subr/Makefile Tue May 8 04:54:36 2018 (r333355) @@ -2,18 +2,20 @@ .include "${.CURDIR}/../Makefile.inc" -.PATH: ${SVNDIR}/libsvn_subr +.PATH: ${SVNDIR}/libsvn_subr ${SVNDIR}/libsvn_subr/lz4 INTERNALLIB= yes LIB= svn_subr SRCS= adler32.c atomic.c auth.c base64.c bit_array.c \ cache-inprocess.c cache-membuffer.c cache-memcache.c \ - cache.c cache_config.c checksum.c cmdline.c compat.c \ - compress.c config.c config_auth.c config_file.c \ + cache.c cache-null.c cache_config.c checksum.c cmdline.c \ + compat.c compress_lz4.c compress_zlib.c \ + config.c config_auth.c config_file.c \ config_win.c crypto.c ctype.c date.c debug.c \ - deprecated.c dirent_uri.c dso.c eol.c error.c fnv1a.c \ - gpg_agent.c hash.c io.c iter.c lock.c log.c \ + deprecated.c dirent_uri.c dso.c \ + encode.c eol.c error.c fnv1a.c \ + gpg_agent.c hash.c io.c iter.c lock.c log.c lz4.c \ macos_keychain.c magic.c md5.c mergeinfo.c mutex.c nls.c \ object_pool.c opt.c packed_data.c path.c \ pool.c prefix_string.c prompt.c properties.c quoprint.c \ Modified: head/usr.bin/svn/svn/Makefile ============================================================================== --- head/usr.bin/svn/svn/Makefile Tue May 8 04:52:52 2018 (r333354) +++ head/usr.bin/svn/svn/Makefile Tue May 8 04:54:36 2018 (r333355) @@ -14,7 +14,8 @@ SRCS= add-cmd.c auth-cmd.c blame-cmd.c cat-cmd.c chang mergeinfo-cmd.c mkdir-cmd.c move-cmd.c notify.c patch-cmd.c \ propdel-cmd.c propedit-cmd.c propget-cmd.c proplist-cmd.c \ props.c propset-cmd.c relocate-cmd.c resolve-cmd.c \ - resolved-cmd.c revert-cmd.c status-cmd.c similarity.c status.c \ + resolved-cmd.c revert-cmd.c \ + shelve-cmd.c status-cmd.c similarity.c status.c \ svn.c switch-cmd.c unlock-cmd.c update-cmd.c upgrade-cmd.c util.c CFLAGS+=-I${SVNDIR}/include -I${SVNDIR} -I${.CURDIR:H} \ Modified: head/usr.bin/svn/svn_private_config.h ============================================================================== --- head/usr.bin/svn/svn_private_config.h Tue May 8 04:52:52 2018 (r333354) +++ head/usr.bin/svn/svn_private_config.h Tue May 8 04:54:36 2018 (r333355) @@ -52,6 +52,12 @@ /* Define to 1 if you have the <serf.h> header file. */ #define HAVE_SERF_H 1 +/* Define to use internal LZ4 code */ +#define SVN_INTERNAL_LZ4 1 + +/* Define to use internal UTF8PROC code */ +#define SVN_INTERNAL_UTF8PROC 1 + /* Define to 1 if you have the <stdbool.h> header file. */ #define HAVE_STDBOOL_H 1 @@ -110,7 +116,7 @@ #define PACKAGE_NAME "subversion" /* Define to the full name and version of this package. */ -#define PACKAGE_STRING "subversion 1.9.4" +#define PACKAGE_STRING "subversion 1.10.0" /* Define to the one symbol short name of this package. */ #define PACKAGE_TARNAME "subversion" @@ -119,7 +125,7 @@ #define PACKAGE_URL "" /* Define to the version of this package. */ -#define PACKAGE_VERSION "1.9.4" +#define PACKAGE_VERSION "1.10.0" /* Define to 1 if you have the ANSI C header files. */ #define STDC_HEADERS 1
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201805080454.w484saLN063947>