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

« back to all changes in this revision

Viewing changes to subversion/bindings/swig/svn_wc.i

  • 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:
45
45
 
46
46
#ifdef SWIGRUBY
47
47
%ignore svn_wc_external_item_create;
 
48
%ignore svn_wc_external_item2_create;
48
49
%ignore svn_wc_external_item_dup;
49
50
%ignore svn_wc_external_item2_dup;
50
51
%ignore svn_wc_revision_status;
154
155
                  )
155
156
#endif
156
157
 
157
 
#ifndef SWIGPERL
158
158
%callback_typemap(svn_wc_status_func2_t status_func, void *status_baton,
159
159
                  svn_swig_py_status_func2,
160
 
                  ,
 
160
                  svn_swig_pl_status_func2,
161
161
                  svn_swig_rb_wc_status_func)
 
162
 
 
163
#ifdef SWIGPERL
 
164
%callback_typemap(svn_wc_status_func3_t status_func, void *status_baton,
 
165
                  ,
 
166
                  svn_swig_pl_status_func3,
 
167
                  ) 
162
168
#endif
163
169
 
164
170
#ifndef SWIGPERL
268
274
{
269
275
  svn_wc_external_item2_t(apr_pool_t *pool) {
270
276
    svn_error_t *err;
271
 
    const svn_wc_external_item2_t *self;
272
 
    err = svn_wc_external_item_create(&self, pool);
 
277
    svn_wc_external_item2_t *self;
 
278
    err = svn_wc_external_item2_create(&self, pool);
273
279
    if (err)
274
280
      svn_swig_rb_handle_svn_error(err);
275
 
    return (svn_wc_external_item2_t *)self;
 
281
    return self;
276
282
  };
277
283
 
278
284
  ~svn_wc_external_item2_t() {