subversion 1.6.6-x86-mswin32-60 → 1.6.11-x86-mswin32-60
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/licenses/apr-util/NOTICE +1 -1
- data/licenses/apr/NOTICE +1 -1
- data/licenses/zlib/README +37 -48
- data/readme.txt +20 -0
- data/{ruby → subversion}/ext/svn/ext/client.dll +0 -0
- data/subversion/ext/svn/ext/core.dll +0 -0
- data/{ruby → subversion}/ext/svn/ext/delta.dll +0 -0
- data/{ruby → subversion}/ext/svn/ext/fs.dll +0 -0
- data/{ruby → subversion}/ext/svn/ext/intl3_svn.dll +0 -0
- data/{ruby → subversion}/ext/svn/ext/libapr-1.dll +0 -0
- data/subversion/ext/svn/ext/libaprutil-1.dll +0 -0
- data/{ruby → subversion}/ext/svn/ext/libdb44.dll +0 -0
- data/subversion/ext/svn/ext/libsasl.dll +0 -0
- data/subversion/ext/svn/ext/libsvn_client-1.dll +0 -0
- data/{ruby → subversion}/ext/svn/ext/libsvn_delta-1.dll +0 -0
- data/{ruby → subversion}/ext/svn/ext/libsvn_diff-1.dll +0 -0
- data/subversion/ext/svn/ext/libsvn_fs-1.dll +0 -0
- data/subversion/ext/svn/ext/libsvn_ra-1.dll +0 -0
- data/{ruby → subversion}/ext/svn/ext/libsvn_repos-1.dll +0 -0
- data/{ruby → subversion}/ext/svn/ext/libsvn_subr-1.dll +0 -0
- data/{ruby → subversion}/ext/svn/ext/libsvn_swig_ruby-1.dll +0 -0
- data/subversion/ext/svn/ext/libsvn_wc-1.dll +0 -0
- data/{ruby → subversion}/ext/svn/ext/ra.dll +0 -0
- data/{ruby → subversion}/ext/svn/ext/repos.dll +0 -0
- data/{ruby → subversion}/ext/svn/ext/wc.dll +0 -0
- data/{ruby → subversion}/lib/svn/client.rb +0 -0
- data/{ruby → subversion}/lib/svn/core.rb +0 -0
- data/{ruby → subversion}/lib/svn/delta.rb +2 -2
- data/{ruby → subversion}/lib/svn/error.rb +0 -0
- data/{ruby → subversion}/lib/svn/fs.rb +0 -0
- data/{ruby → subversion}/lib/svn/info.rb +0 -0
- data/{ruby → subversion}/lib/svn/ra.rb +0 -0
- data/{ruby → subversion}/lib/svn/repos.rb +0 -0
- data/{ruby → subversion}/lib/svn/util.rb +0 -0
- data/{ruby → subversion}/lib/svn/wc.rb +0 -0
- data/subversion/test/greek_tree.rb +63 -0
- data/subversion/test/my-assertions.rb +48 -0
- data/subversion/test/run-test.rb +35 -0
- data/subversion/test/test-unit-ext.rb +4 -0
- data/subversion/test/test-unit-ext/always-show-result.rb +28 -0
- data/subversion/test/test-unit-ext/backtrace-filter.rb +17 -0
- data/subversion/test/test-unit-ext/long-display-for-emacs.rb +25 -0
- data/subversion/test/test-unit-ext/priority.rb +176 -0
- data/subversion/test/test_client.rb +2457 -0
- data/subversion/test/test_core.rb +849 -0
- data/subversion/test/test_delta.rb +497 -0
- data/subversion/test/test_error.rb +16 -0
- data/subversion/test/test_fs.rb +519 -0
- data/subversion/test/test_info.rb +331 -0
- data/subversion/test/test_ra.rb +436 -0
- data/subversion/test/test_repos.rb +872 -0
- data/subversion/test/test_util.rb +18 -0
- data/subversion/test/test_wc.rb +1063 -0
- data/subversion/test/util.rb +292 -0
- data/subversion/test/windows_util.rb +263 -0
- metadata +71 -39
- data/ruby/ext/svn/ext/core.dll +0 -0
- data/ruby/ext/svn/ext/libaprutil-1.dll +0 -0
- data/ruby/ext/svn/ext/libsvn_client-1.dll +0 -0
- data/ruby/ext/svn/ext/libsvn_fs-1.dll +0 -0
- data/ruby/ext/svn/ext/libsvn_ra-1.dll +0 -0
- data/ruby/ext/svn/ext/libsvn_wc-1.dll +0 -0
data/licenses/apr-util/NOTICE
CHANGED
data/licenses/apr/NOTICE
CHANGED
data/licenses/zlib/README
CHANGED
@@ -1,56 +1,51 @@
|
|
1
1
|
ZLIB DATA COMPRESSION LIBRARY
|
2
2
|
|
3
|
-
zlib 1.2.
|
3
|
+
zlib 1.2.4 is a general purpose data compression library. All the code is
|
4
4
|
thread safe. The data format used by the zlib library is described by RFCs
|
5
5
|
(Request for Comments) 1950 to 1952 in the files
|
6
6
|
http://www.ietf.org/rfc/rfc1950.txt (zlib format), rfc1951.txt (deflate format)
|
7
|
-
and rfc1952.txt (gzip format).
|
8
|
-
formats from ftp://ftp.uu.net/graphics/png/documents/zlib/zdoc-index.html
|
7
|
+
and rfc1952.txt (gzip format).
|
9
8
|
|
10
9
|
All functions of the compression library are documented in the file zlib.h
|
11
|
-
(volunteer to write man pages welcome, contact zlib@gzip.org).
|
10
|
+
(volunteer to write man pages welcome, contact zlib@gzip.org). A usage example
|
12
11
|
of the library is given in the file example.c which also tests that the library
|
13
|
-
is working correctly.
|
12
|
+
is working correctly. Another example is given in the file minigzip.c. The
|
14
13
|
compression library itself is composed of all source files except example.c and
|
15
14
|
minigzip.c.
|
16
15
|
|
17
16
|
To compile all files and run the test program, follow the instructions given at
|
18
|
-
the top of Makefile.
|
19
|
-
|
20
|
-
of the special makefiles
|
17
|
+
the top of Makefile.in. In short "./configure; make test", and if that goes
|
18
|
+
well, "make install" should work for most flavors of Unix. For Windows, use one
|
19
|
+
of the special makefiles in win32/ or projects/ . For VMS, use make_vms.com.
|
21
20
|
|
22
21
|
Questions about zlib should be sent to <zlib@gzip.org>, or to Gilles Vollant
|
23
|
-
<info@winimage.com> for the Windows DLL version.
|
24
|
-
http://
|
25
|
-
|
26
|
-
|
27
|
-
not.
|
22
|
+
<info@winimage.com> for the Windows DLL version. The zlib home page is
|
23
|
+
http://zlib.net/ . Before reporting a problem, please check this site to
|
24
|
+
verify that you have the latest version of zlib; otherwise get the latest
|
25
|
+
version and check whether the problem still exists or not.
|
28
26
|
|
29
|
-
PLEASE read the zlib FAQ http://
|
30
|
-
for help.
|
27
|
+
PLEASE read the zlib FAQ http://zlib.net/zlib_faq.html before asking for help.
|
31
28
|
|
32
|
-
Mark Nelson <markn@ieee.org> wrote an article about zlib for the Jan.
|
33
|
-
issue of
|
34
|
-
http://
|
29
|
+
Mark Nelson <markn@ieee.org> wrote an article about zlib for the Jan. 1997
|
30
|
+
issue of Dr. Dobb's Journal; a copy of the article is available at
|
31
|
+
http://marknelson.us/1997/01/01/zlib-engine/ .
|
35
32
|
|
36
|
-
The changes made in version 1.2.
|
33
|
+
The changes made in version 1.2.4 are documented in the file ChangeLog.
|
37
34
|
|
38
|
-
Unsupported third party contributions are provided in directory
|
35
|
+
Unsupported third party contributions are provided in directory contrib/ .
|
39
36
|
|
40
|
-
|
41
|
-
http://java.sun.com/
|
42
|
-
See the zlib home page http://www.zlib.org for details.
|
37
|
+
zlib is available in Java using the java.util.zip package, documented at
|
38
|
+
http://java.sun.com/developer/technicalArticles/Programming/compression/ .
|
43
39
|
|
44
|
-
A Perl interface to zlib written by Paul Marquess <pmqs@cpan.org> is
|
45
|
-
CPAN (Comprehensive Perl Archive Network) sites
|
46
|
-
http://
|
40
|
+
A Perl interface to zlib written by Paul Marquess <pmqs@cpan.org> is available
|
41
|
+
at CPAN (Comprehensive Perl Archive Network) sites, including
|
42
|
+
http://search.cpan.org/~pmqs/IO-Compress-Zlib/ .
|
47
43
|
|
48
44
|
A Python interface to zlib written by A.M. Kuchling <amk@amk.ca> is
|
49
45
|
available in Python 1.5 and later versions, see
|
50
|
-
http://www.python.org/doc/lib/module-zlib.html
|
46
|
+
http://www.python.org/doc/lib/module-zlib.html .
|
51
47
|
|
52
|
-
|
53
|
-
availlable at http://www.oche.de/~akupries/soft/trf/trf_zip.html
|
48
|
+
zlib is built into tcl: http://wiki.tcl.tk/4610 .
|
54
49
|
|
55
50
|
An experimental package to read and write files in .zip format, written on top
|
56
51
|
of zlib by Gilles Vollant <info@winimage.com>, is available in the
|
@@ -74,25 +69,21 @@ Notes for some targets:
|
|
74
69
|
- zlib doesn't work on HP-UX 9.05 with some versions of /bin/cc. It works with
|
75
70
|
other compilers. Use "make test" to check your compiler.
|
76
71
|
|
77
|
-
- gzdopen is not supported on RISCOS
|
72
|
+
- gzdopen is not supported on RISCOS or BEOS.
|
78
73
|
|
79
74
|
- For PalmOs, see http://palmzlib.sourceforge.net/
|
80
75
|
|
81
|
-
- When building a shared, i.e. dynamic library on Mac OS X, the library must be
|
82
|
-
installed before testing (do "make install" before "make test"), since the
|
83
|
-
library location is specified in the library.
|
84
|
-
|
85
76
|
|
86
77
|
Acknowledgments:
|
87
78
|
|
88
|
-
The deflate format used by zlib was defined by Phil Katz.
|
89
|
-
|
90
|
-
people who reported problems and suggested various improvements in zlib;
|
91
|
-
|
79
|
+
The deflate format used by zlib was defined by Phil Katz. The deflate and
|
80
|
+
zlib specifications were written by L. Peter Deutsch. Thanks to all the
|
81
|
+
people who reported problems and suggested various improvements in zlib; they
|
82
|
+
are too numerous to cite here.
|
92
83
|
|
93
84
|
Copyright notice:
|
94
85
|
|
95
|
-
(C) 1995-
|
86
|
+
(C) 1995-2010 Jean-loup Gailly and Mark Adler
|
96
87
|
|
97
88
|
This software is provided 'as-is', without any express or implied
|
98
89
|
warranty. In no event will the authors be held liable for any damages
|
@@ -113,13 +104,11 @@ Copyright notice:
|
|
113
104
|
Jean-loup Gailly Mark Adler
|
114
105
|
jloup@gzip.org madler@alumni.caltech.edu
|
115
106
|
|
116
|
-
If you use the zlib library in a product, we would appreciate *not*
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
include third-party code.
|
107
|
+
If you use the zlib library in a product, we would appreciate *not* receiving
|
108
|
+
lengthy legal documents to sign. The sources are provided for free but without
|
109
|
+
warranty of any kind. The library has been entirely written by Jean-loup
|
110
|
+
Gailly and Mark Adler; it does not include third-party code.
|
121
111
|
|
122
|
-
If you redistribute modified sources, we would appreciate that you include
|
123
|
-
|
124
|
-
|
125
|
-
versions.
|
112
|
+
If you redistribute modified sources, we would appreciate that you include in
|
113
|
+
the file ChangeLog history information documenting your changes. Please read
|
114
|
+
the FAQ for more information on the distribution of modified source versions.
|
data/readme.txt
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
subversion 1.6.11 bindings
|
2
|
+
|
3
|
+
Built with:
|
4
|
+
PLATFORM:
|
5
|
+
Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 12.00.8168 for 80x86
|
6
|
+
Microsoft SDK 2003 Feb
|
7
|
+
SWIG Version 1.3.31
|
8
|
+
ruby 1.8.6
|
9
|
+
|
10
|
+
COMPONENTS:
|
11
|
+
apr-util 1.3.9
|
12
|
+
apr 1.3.9
|
13
|
+
Berkeley DB 4.4.20
|
14
|
+
libintl 0.14.1 (patched)
|
15
|
+
neon 0.28.6
|
16
|
+
OpenSSL 0.9.7d 17 Mar 2004
|
17
|
+
cyrus sasl 2.1.22
|
18
|
+
serf 0.3.0
|
19
|
+
sqlite 3.6.10
|
20
|
+
zlib 1.2.4
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
File without changes
|
Binary file
|
Binary file
|
File without changes
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
File without changes
|
File without changes
|
@@ -52,9 +52,9 @@ module Svn
|
|
52
52
|
|
53
53
|
def apply(source, target, error_info=nil)
|
54
54
|
result = Delta.txdelta_apply_wrapper(source, target, error_info)
|
55
|
-
|
55
|
+
handler, handler_baton = result
|
56
56
|
handler.baton = handler_baton
|
57
|
-
[handler,
|
57
|
+
[handler,nil]
|
58
58
|
end
|
59
59
|
|
60
60
|
def parse_svndiff(error_on_early_close=true, &handler)
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
@@ -0,0 +1,63 @@
|
|
1
|
+
module SvnTestUtil
|
2
|
+
class Greek
|
3
|
+
TREE = [
|
4
|
+
# relative path , contents(nil means directory)
|
5
|
+
["iota" , "This is the file 'iota'.\n" ],
|
6
|
+
["A" , nil ],
|
7
|
+
["A/mu" , "This is the file 'mu'.\n" ],
|
8
|
+
["A/B" , nil ],
|
9
|
+
["A/B/lambda" , "This is the file 'lambda'.\n" ],
|
10
|
+
["A/B/E" , nil ],
|
11
|
+
["A/B/E/alpha" , "This is the file 'alpha'.\n" ],
|
12
|
+
["A/B/E/beta" , "This is the file 'beta'.\n" ],
|
13
|
+
["A/B/F" , nil ],
|
14
|
+
["A/C" , nil ],
|
15
|
+
["A/D" , nil ],
|
16
|
+
["A/D/gamma" , "This is the file 'gamma'.\n" ],
|
17
|
+
["A/D/G" , nil ],
|
18
|
+
["A/D/G/pi" , "This is the file 'pi'.\n" ],
|
19
|
+
["A/D/G/rho" , "This is the file 'rho'.\n" ],
|
20
|
+
["A/D/G/tau" , "This is the file 'tau'.\n" ],
|
21
|
+
["A/D/H" , nil ],
|
22
|
+
["A/D/H/chi" , "This is the file 'chi'.\n" ],
|
23
|
+
["A/D/H/psi" , "This is the file 'psi'.\n" ],
|
24
|
+
["A/D/H/omega" , "This is the file 'omega'.\n" ]
|
25
|
+
]
|
26
|
+
|
27
|
+
TREE.each do |path, contents|
|
28
|
+
const_set(path.split("/").last.upcase, path)
|
29
|
+
end
|
30
|
+
|
31
|
+
def initialize(tmp_path, wc_path, repos_uri)
|
32
|
+
@tmp_path = tmp_path
|
33
|
+
@wc_path = wc_path
|
34
|
+
@repos_uri = repos_uri
|
35
|
+
end
|
36
|
+
|
37
|
+
def setup(context)
|
38
|
+
TREE.each do |path, contents|
|
39
|
+
entry = File.expand_path(File.join(@tmp_path, path))
|
40
|
+
if contents
|
41
|
+
File.open(entry, 'w') {|f| f.print(contents)}
|
42
|
+
else
|
43
|
+
FileUtils.mkdir(entry)
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
47
|
+
context.import(@tmp_path, @repos_uri)
|
48
|
+
context.update(@wc_path)
|
49
|
+
end
|
50
|
+
|
51
|
+
def path(greek)
|
52
|
+
File.join(@wc_path, resolve(greek))
|
53
|
+
end
|
54
|
+
|
55
|
+
def uri(greek)
|
56
|
+
"#{@repos_uri}/#{resolve(greek)}"
|
57
|
+
end
|
58
|
+
|
59
|
+
def resolve(greek)
|
60
|
+
self.class.const_get(greek.to_s.upcase)
|
61
|
+
end
|
62
|
+
end
|
63
|
+
end
|
@@ -0,0 +1,48 @@
|
|
1
|
+
require "test/unit"
|
2
|
+
require "test/unit/assertions"
|
3
|
+
|
4
|
+
module Test
|
5
|
+
module Unit
|
6
|
+
module Assertions
|
7
|
+
|
8
|
+
def assert_true(boolean, message=nil)
|
9
|
+
_wrap_assertion do
|
10
|
+
assert_equal(true, boolean, message)
|
11
|
+
end
|
12
|
+
end
|
13
|
+
|
14
|
+
def assert_false(boolean, message=nil)
|
15
|
+
_wrap_assertion do
|
16
|
+
assert_equal(false, boolean, message)
|
17
|
+
end
|
18
|
+
end
|
19
|
+
|
20
|
+
def assert_nested_sorted_array(expected, actual, message=nil)
|
21
|
+
_wrap_assertion do
|
22
|
+
assert_equal(expected.collect {|elem| elem.sort},
|
23
|
+
actual.collect {|elem| elem.sort},
|
24
|
+
message)
|
25
|
+
end
|
26
|
+
end
|
27
|
+
|
28
|
+
def assert_equal_log_entries(expected, actual, message=nil)
|
29
|
+
_wrap_assertion do
|
30
|
+
actual = actual.collect do |entry|
|
31
|
+
changed_paths = entry.changed_paths
|
32
|
+
changed_paths.each_key do |path|
|
33
|
+
changed_path = changed_paths[path]
|
34
|
+
changed_paths[path] = [changed_path.action,
|
35
|
+
changed_path.copyfrom_path,
|
36
|
+
changed_path.copyfrom_rev]
|
37
|
+
end
|
38
|
+
[changed_paths,
|
39
|
+
entry.revision,
|
40
|
+
entry.revision_properties.reject {|key, value| key == "svn:date"},
|
41
|
+
entry.has_children?]
|
42
|
+
end
|
43
|
+
assert_equal(expected, actual, message)
|
44
|
+
end
|
45
|
+
end
|
46
|
+
end
|
47
|
+
end
|
48
|
+
end
|
@@ -0,0 +1,35 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require "test/unit"
|
4
|
+
require "fileutils"
|
5
|
+
|
6
|
+
test_dir = File.expand_path(File.join(File.dirname(__FILE__)))
|
7
|
+
base_src_dir = File.expand_path(File.join(File.dirname(__FILE__), ".."))
|
8
|
+
base_dir = Dir.pwd
|
9
|
+
top_dir = File.expand_path(File.join(base_dir, "..", "..", "..", ".."))
|
10
|
+
|
11
|
+
ext_dir = File.join(base_dir, ".ext")
|
12
|
+
ext_svn_dir = File.join(ext_dir, "svn")
|
13
|
+
ext_svn_ext_dir = File.join(ext_svn_dir, "ext")
|
14
|
+
FileUtils.mkdir_p(ext_svn_dir)
|
15
|
+
at_exit {FileUtils.rm_rf(ext_dir)}
|
16
|
+
|
17
|
+
$LOAD_PATH.unshift(test_dir)
|
18
|
+
require 'util'
|
19
|
+
require 'test-unit-ext'
|
20
|
+
|
21
|
+
SvnTestUtil.setup_test_environment(top_dir, base_dir, ext_svn_ext_dir)
|
22
|
+
|
23
|
+
$LOAD_PATH.unshift(ext_dir)
|
24
|
+
$LOAD_PATH.unshift(base_src_dir)
|
25
|
+
$LOAD_PATH.unshift(base_dir)
|
26
|
+
$LOAD_PATH.unshift(test_dir)
|
27
|
+
|
28
|
+
require 'svn/core'
|
29
|
+
Svn::Locale.set
|
30
|
+
|
31
|
+
if Test::Unit::AutoRunner.respond_to?(:standalone?)
|
32
|
+
exit Test::Unit::AutoRunner.run($0, File.dirname($0))
|
33
|
+
else
|
34
|
+
exit Test::Unit::AutoRunner.run(false, File.dirname($0))
|
35
|
+
end
|
@@ -0,0 +1,28 @@
|
|
1
|
+
require "test/unit/ui/testrunnermediator"
|
2
|
+
|
3
|
+
module Test
|
4
|
+
module Unit
|
5
|
+
module UI
|
6
|
+
class TestRunnerMediator
|
7
|
+
alias_method :original_run_suite, :run_suite
|
8
|
+
def run_suite
|
9
|
+
@notified_finished = false
|
10
|
+
begin_time = Time.now
|
11
|
+
original_run_suite
|
12
|
+
rescue Interrupt
|
13
|
+
unless @notified_finished
|
14
|
+
end_time = Time.now
|
15
|
+
elapsed_time = end_time - begin_time
|
16
|
+
notify_listeners(FINISHED, elapsed_time)
|
17
|
+
end
|
18
|
+
raise
|
19
|
+
end
|
20
|
+
|
21
|
+
def notify_listeners(channel_name, *arguments)
|
22
|
+
@notified_finished = true if channel_name == FINISHED
|
23
|
+
super
|
24
|
+
end
|
25
|
+
end
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|
@@ -0,0 +1,17 @@
|
|
1
|
+
require 'test/unit/util/backtracefilter'
|
2
|
+
|
3
|
+
module Test
|
4
|
+
module Unit
|
5
|
+
module Util
|
6
|
+
module BacktraceFilter
|
7
|
+
TEST_UNIT_EXT_PREFIX = File.dirname(__FILE__)
|
8
|
+
|
9
|
+
alias_method :original_filter_backtrace, :filter_backtrace
|
10
|
+
def filter_backtrace(backtrace, prefix=nil)
|
11
|
+
original_result = original_filter_backtrace(backtrace, prefix)
|
12
|
+
original_filter_backtrace(original_result, TEST_UNIT_EXT_PREFIX)
|
13
|
+
end
|
14
|
+
end
|
15
|
+
end
|
16
|
+
end
|
17
|
+
end
|