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

« back to all changes in this revision

Viewing changes to tools/buildbot/slaves/win32-SharpSvn/svntest-cleanup.cmd

  • 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:
7
7
REM   to you under the Apache License, Version 2.0 (the
8
8
REM   "License"); you may not use this file except in compliance
9
9
REM   with the License.  You may obtain a copy of the License at
10
 
REM  
 
10
REM
11
11
REM     http://www.apache.org/licenses/LICENSE-2.0
12
 
REM  
 
12
REM
13
13
REM   Unless required by applicable law or agreed to in writing,
14
14
REM   software distributed under the License is distributed on an
15
15
REM   "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
31
31
  svn co --username guest --password "" http://sharpsvn.open.collab.net/svn/sharpsvn/trunk/imports imports
32
32
)
33
33
IF NOT EXIST build\imports.done (
 
34
  svn up imports
34
35
  copy /y imports\dev-default.build default.build
35
 
  nant build %NANTARGS%
 
36
  nant prep-dev %NANTARGS%
36
37
  IF ERRORLEVEL 1 (
37
38
    exit /B 1
38
39
  )
39
 
  del release\bin\*svn* release\bin\_*.*
 
40
  del release\bin\*svn* release\bin\_*.* 2>nul:
40
41
  echo. > build\imports.done
41
42
)
42
43
 
48
49
)
49
50
POPD
50
51
 
 
52
 
51
53
taskkill /im svn.exe /f 2> nul:
 
54
taskkill /im svnlook.exe /f 2> nul:
52
55
taskkill /im svnadmin.exe /f 2> nul:
53
56
taskkill /im svnserve.exe /f 2> nul:
54
57
taskkill /im svnrdump.exe /f 2> nul:
55
58
taskkill /im svnsync.exe /f 2> nul:
56
59
taskkill /im httpd.exe /f 2> nul:
 
60
taskkill /im fs-test.exe /f 2> nul:
 
61
taskkill /im op-depth-test.exe /f 2> nul:
 
62
taskkill /im java.exe /f 2> nul:
 
63
taskkill /im perl.exe /f 2> nul:
 
64
taskkill /im mspdbsrv.exe /f 2> nul:
57
65
IF EXIST "%TESTDIR%\tests\subversion\tests\cmdline\httpd\" (
58
66
  rmdir /s /q  "%TESTDIR%\tests\subversion\tests\cmdline\httpd"
59
67
)
 
68
IF EXIST "%TESTDIR%\swig\" (
 
69
  rmdir /s /q  "%TESTDIR%\swig"
 
70
)
60
71
 
61
72
del "%TESTDIR%\tests\*.log" 2> nul:
62
73