libarchive 0.1.1 → 0.1.2
Sign up to get free protection for your applications and to get access to all the features.
- data/COPYING.libarchive +60 -60
- data/LICENSE.libbzip2 +42 -42
- data/README.txt +6 -6
- data/ext/archive_read_support_compression.c +31 -31
- data/ext/archive_read_support_compression.h +6 -6
- data/ext/archive_read_support_format.c +32 -32
- data/ext/archive_read_support_format.h +6 -6
- data/ext/archive_write_open_rb_str.c +29 -29
- data/ext/archive_write_open_rb_str.h +6 -6
- data/ext/archive_write_set_compression.c +32 -32
- data/ext/archive_write_set_compression.h +6 -6
- data/ext/config.h.in +22 -22
- data/ext/configure +0 -0
- data/ext/configure.in +11 -11
- data/ext/depend +19 -19
- data/ext/extconf.rb +10 -6
- data/ext/install-sh +250 -250
- data/ext/libarchive.c +93 -89
- data/ext/libarchive_archive.c +84 -84
- data/ext/libarchive_entry.c +1015 -1015
- data/ext/libarchive_internal.h +155 -155
- data/ext/libarchive_reader.c +328 -328
- data/ext/libarchive_win32.h +52 -52
- data/ext/libarchive_writer.c +246 -246
- data/lib/libarchive.rb +1 -0
- data/lib/libarchive_ruby.rb +1 -0
- data/libarchive.c +1766 -1762
- metadata +38 -22
metadata
CHANGED
@@ -1,7 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: libarchive
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
|
4
|
+
hash: 31
|
5
|
+
prerelease: false
|
6
|
+
segments:
|
7
|
+
- 0
|
8
|
+
- 1
|
9
|
+
- 2
|
10
|
+
version: 0.1.2
|
5
11
|
platform: ruby
|
6
12
|
authors:
|
7
13
|
- winebarrel
|
@@ -9,11 +15,11 @@ autorequire:
|
|
9
15
|
bindir: bin
|
10
16
|
cert_chain: []
|
11
17
|
|
12
|
-
date:
|
18
|
+
date: 2010-12-12 00:00:00 +09:00
|
13
19
|
default_executable:
|
14
20
|
dependencies: []
|
15
21
|
|
16
|
-
description:
|
22
|
+
description: Ruby bindings for Libarchive. Libarchive is a programming library that can create and read several different streaming archive formats, including most popular tar variants, several cpio formats, and both BSD and GNU ar variants.
|
17
23
|
email: sgwr_dts@yahoo.co.jp
|
18
24
|
executables: []
|
19
25
|
|
@@ -25,34 +31,38 @@ extra_rdoc_files:
|
|
25
31
|
- COPYING.libarchive
|
26
32
|
- LICENSE.libbzip2
|
27
33
|
files:
|
28
|
-
- ext/
|
34
|
+
- ext/archive_read_support_compression.c
|
29
35
|
- ext/archive_read_support_compression.h
|
30
|
-
- ext/libarchive_win32.h
|
31
|
-
- ext/Makefile.in
|
32
|
-
- ext/configure.in
|
33
|
-
- ext/libarchive_writer.c
|
34
|
-
- ext/libarchive.c
|
35
|
-
- ext/depend
|
36
|
-
- ext/config.h.in
|
37
|
-
- ext/libarchive_internal.h
|
38
|
-
- ext/libarchive_archive.c
|
39
|
-
- ext/extconf.rb
|
40
|
-
- ext/install-sh
|
41
36
|
- ext/archive_read_support_format.c
|
42
37
|
- ext/archive_read_support_format.h
|
43
38
|
- ext/archive_write_open_rb_str.c
|
39
|
+
- ext/archive_write_open_rb_str.h
|
44
40
|
- ext/archive_write_set_compression.c
|
45
|
-
- ext/
|
41
|
+
- ext/archive_write_set_compression.h
|
42
|
+
- ext/config.h.in
|
43
|
+
- ext/configure
|
44
|
+
- ext/configure.in
|
45
|
+
- ext/depend
|
46
|
+
- ext/extconf.rb
|
47
|
+
- ext/install-sh
|
48
|
+
- ext/libarchive.c
|
49
|
+
- ext/libarchive_archive.c
|
46
50
|
- ext/libarchive_entry.c
|
51
|
+
- ext/libarchive_internal.h
|
47
52
|
- ext/libarchive_reader.c
|
48
|
-
- ext/
|
49
|
-
- ext/
|
53
|
+
- ext/libarchive_win32.h
|
54
|
+
- ext/libarchive_writer.c
|
55
|
+
- ext/Makefile.in
|
56
|
+
- lib/libarchive.rb
|
57
|
+
- lib/libarchive_ruby.rb
|
50
58
|
- README.txt
|
51
59
|
- libarchive.c
|
52
60
|
- COPYING.libarchive
|
53
61
|
- LICENSE.libbzip2
|
54
62
|
has_rdoc: true
|
55
63
|
homepage: http://libarchive.rubyforge.org
|
64
|
+
licenses: []
|
65
|
+
|
56
66
|
post_install_message:
|
57
67
|
rdoc_options:
|
58
68
|
- --title
|
@@ -60,23 +70,29 @@ rdoc_options:
|
|
60
70
|
require_paths:
|
61
71
|
- lib
|
62
72
|
required_ruby_version: !ruby/object:Gem::Requirement
|
73
|
+
none: false
|
63
74
|
requirements:
|
64
75
|
- - ">="
|
65
76
|
- !ruby/object:Gem::Version
|
77
|
+
hash: 3
|
78
|
+
segments:
|
79
|
+
- 0
|
66
80
|
version: "0"
|
67
|
-
version:
|
68
81
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
82
|
+
none: false
|
69
83
|
requirements:
|
70
84
|
- - ">="
|
71
85
|
- !ruby/object:Gem::Version
|
86
|
+
hash: 3
|
87
|
+
segments:
|
88
|
+
- 0
|
72
89
|
version: "0"
|
73
|
-
version:
|
74
90
|
requirements: []
|
75
91
|
|
76
92
|
rubyforge_project: libarchive
|
77
|
-
rubygems_version: 1.
|
93
|
+
rubygems_version: 1.3.7
|
78
94
|
signing_key:
|
79
|
-
specification_version:
|
95
|
+
specification_version: 3
|
80
96
|
summary: Ruby bindings for Libarchive.
|
81
97
|
test_files: []
|
82
98
|
|