~ubuntu-branches/debian/sid/subversion/sid

« back to all changes in this revision

Viewing changes to subversion/bindings/javahl/src/org/tigris/subversion/javahl/SVNClient.java

  • Committer: Package Import Robot
  • Author(s): James McCoy, Peter Samuelson, James McCoy
  • Date: 2014-01-12 19:48:33 UTC
  • mfrom: (0.2.10)
  • Revision ID: package-import@ubuntu.com-20140112194833-w3axfwksn296jn5x
Tags: 1.8.5-1
[ Peter Samuelson ]
* New upstream release.  (Closes: #725787) Rediff patches:
  - Remove apr-abi1 (applied upstream), rename apr-abi2 to apr-abi
  - Remove loosen-sqlite-version-check (shouldn't be needed)
  - Remove java-osgi-metadata (applied upstream)
  - svnmucc prompts for a changelog if none is provided. (Closes: #507430)
  - Remove fix-bdb-version-detection, upstream uses "apu-config --dbm-libs"
  - Remove ruby-test-wc (applied upstream)
  - Fix “svn diff -r N file” when file has svn:mime-type set.
    (Closes: #734163)
  - Support specifying an encoding for mod_dav_svn's environment in which
    hooks are run.  (Closes: #601544)
  - Fix ordering of “svnadmin dump” paths with certain APR versions.
    (Closes: #687291)
  - Provide a better error message when authentication fails with an
    svn+ssh:// URL.  (Closes: #273874)
  - Updated Polish translations.  (Closes: #690815)

[ James McCoy ]
* Remove all traces of libneon, replaced by libserf.
* patches/sqlite_3.8.x_workaround: Upstream fix for wc-queries-test test
  failurse.
* Run configure with --with-apache-libexecdir, which allows removing part of
  patches/rpath.
* Re-enable auth-test as upstream has fixed the problem of picking up
  libraries from the environment rather than the build tree.
  (Closes: #654172)
* Point LD_LIBRARY_PATH at the built auth libraries when running the svn
  command during the build.  (Closes: #678224)
* Add a NEWS entry describing how to configure mod_dav_svn to understand
  UTF-8.  (Closes: #566148)
* Remove ancient transitional package, libsvn-ruby.
* Enable compatibility with Sqlite3 versions back to Wheezy.
* Enable hardening flags.  (Closes: #734918)
* patches/build-fixes: Enable verbose build logs.
* Build against the default ruby version.  (Closes: #722393)

Show diffs side-by-side

added added

removed removed

Lines of Context:
795
795
    /**
796
796
     * @since 1.5
797
797
     */
 
798
    @SuppressWarnings("unchecked")
798
799
    public void remove(String[] paths, String message, boolean force,
799
800
                       boolean keepLocal, Map revpropTable)
800
801
            throws ClientException
964
965
    /**
965
966
     * @since 1.5
966
967
     */
 
968
    @SuppressWarnings("unchecked")
967
969
    public long commit(String[] paths, String message, int depth,
968
970
                       boolean noUnlock, boolean keepChangelist,
969
971
                       String[] changelists, Map revpropTable)
998
1000
    /**
999
1001
     * @since 1.7
1000
1002
     */
 
1003
    @SuppressWarnings("unchecked")
1001
1004
    public void copy(CopySource[] sources, String destPath, String message,
1002
1005
                     boolean copyAsChild, boolean makeParents,
1003
1006
                     boolean ignoreExternals, Map revpropTable)
1031
1034
     *                              boolean, boolean, Map)} instead.
1032
1035
     * @since 1.5
1033
1036
     */
 
1037
    @SuppressWarnings("unchecked")
1034
1038
    public void copy(CopySource[] sources, String destPath, String message,
1035
1039
                     boolean copyAsChild, boolean makeParents,
1036
1040
                     Map revpropTable)
1057
1061
    /**
1058
1062
     * @since 1.5
1059
1063
     */
 
1064
    @SuppressWarnings("unchecked")
1060
1065
    public void move(String[] srcPaths, String destPath, String message,
1061
1066
                     boolean force, boolean moveAsChild,
1062
1067
                     boolean makeParents, Map revpropTable)
1106
1111
    /**
1107
1112
     * @since 1.5
1108
1113
     */
 
1114
    @SuppressWarnings("unchecked")
1109
1115
    public void mkdir(String[] paths, String message,
1110
1116
                      boolean makeParents, Map revpropTable)
1111
1117
            throws ClientException
1306
1312
    /**
1307
1313
     * @since 1.5
1308
1314
     */
 
1315
    @SuppressWarnings("unchecked")
1309
1316
    public void doImport(String path, String url, String message,
1310
1317
                         int depth, boolean noIgnore,
1311
1318
                         boolean ignoreUnknownNodeTypes, Map revpropTable)
1888
1895
    /**
1889
1896
     * @since 1.5
1890
1897
     */
 
1898
    @SuppressWarnings("unchecked")
1891
1899
    public void propertySet(String path, String name, String value, int depth,
1892
1900
                            String[] changelists, boolean force,
1893
1901
                            Map revpropTable)