gpgme 2.0.8 → 2.0.9
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/ext/gpgme/extconf.rb +3 -3
- data/lib/gpgme/version.rb +2 -1
- data/ports/archives/gpgme-1.5.5.tar.bz2 +0 -0
- data/ports/archives/libassuan-2.2.1.tar.bz2 +0 -0
- data/ports/archives/libgpg-error-1.19.tar.bz2 +0 -0
- metadata +52 -68
- data/ports/archives/gpgme-1.5.3.tar.bz2 +0 -0
- data/ports/archives/libassuan-2.2.0.tar.bz2 +0 -0
- data/ports/archives/libgpg-error-1.17.tar.bz2 +0 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 951cbd78a24fe8e4fe2f8f6c1506acefdfe89983
|
4
|
+
data.tar.gz: 9c42d5bdcfd002bcfe530465e5a1f9c09b7ae5a5
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 9cef9e58e878228e4b41d2678f2dd9f880e67570de2b26066199bc8ba143280d329bdf3f0f1f8f48ef70914d6662f899de8be6586d5f3704b5808729f32b516f
|
7
|
+
data.tar.gz: 5854d59c8edfff9c3ec68c3d39b511b415fefcd8cf325964d2c288a5781040efaaf58eecbdbda0e11fc3609fc81a6858f9c55e44863a3940e3297849523dc066
|
data/ext/gpgme/extconf.rb
CHANGED
@@ -62,7 +62,7 @@ EOS
|
|
62
62
|
require 'rubygems'
|
63
63
|
require 'mini_portile'
|
64
64
|
|
65
|
-
libgpg_error_recipe = MiniPortile.new('libgpg-error', '1.
|
65
|
+
libgpg_error_recipe = MiniPortile.new('libgpg-error', '1.19').tap do |recipe|
|
66
66
|
recipe.target = File.join(ROOT, "ports")
|
67
67
|
recipe.files = ["ftp://ftp.gnupg.org/gcrypt/#{recipe.name}/#{recipe.name}-#{recipe.version}.tar.bz2"]
|
68
68
|
recipe.configure_options = [
|
@@ -79,7 +79,7 @@ EOS
|
|
79
79
|
recipe.activate
|
80
80
|
end
|
81
81
|
|
82
|
-
libassuan_recipe = MiniPortile.new('libassuan', '2.2.
|
82
|
+
libassuan_recipe = MiniPortile.new('libassuan', '2.2.1').tap do |recipe|
|
83
83
|
recipe.target = File.join(ROOT, "ports")
|
84
84
|
recipe.files = ["ftp://ftp.gnupg.org/gcrypt/#{recipe.name}/#{recipe.name}-#{recipe.version}.tar.bz2"]
|
85
85
|
recipe.configure_options = [
|
@@ -96,7 +96,7 @@ EOS
|
|
96
96
|
recipe.activate
|
97
97
|
end
|
98
98
|
|
99
|
-
gpgme_recipe = MiniPortile.new('gpgme', '1.5.
|
99
|
+
gpgme_recipe = MiniPortile.new('gpgme', '1.5.5').tap do |recipe|
|
100
100
|
recipe.target = File.join(ROOT, "ports")
|
101
101
|
recipe.files = ["ftp://ftp.gnupg.org/gcrypt/#{recipe.name}/#{recipe.name}-#{recipe.version}.tar.bz2"]
|
102
102
|
recipe.configure_options = [
|
data/lib/gpgme/version.rb
CHANGED
Binary file
|
Binary file
|
Binary file
|
metadata
CHANGED
@@ -1,8 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: gpgme
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.0.
|
5
|
-
prerelease:
|
4
|
+
version: 2.0.9
|
6
5
|
platform: ruby
|
7
6
|
authors:
|
8
7
|
- Daiki Ueno
|
@@ -10,180 +9,165 @@ authors:
|
|
10
9
|
autorequire:
|
11
10
|
bindir: bin
|
12
11
|
cert_chain: []
|
13
|
-
date:
|
12
|
+
date: 2015-07-24 00:00:00.000000000 Z
|
14
13
|
dependencies:
|
15
14
|
- !ruby/object:Gem::Dependency
|
16
15
|
name: mini_portile
|
17
16
|
requirement: !ruby/object:Gem::Requirement
|
18
|
-
none: false
|
19
17
|
requirements:
|
20
|
-
- -
|
18
|
+
- - ">="
|
21
19
|
- !ruby/object:Gem::Version
|
22
20
|
version: 0.5.0
|
23
21
|
type: :runtime
|
24
22
|
prerelease: false
|
25
23
|
version_requirements: !ruby/object:Gem::Requirement
|
26
|
-
none: false
|
27
24
|
requirements:
|
28
|
-
- -
|
25
|
+
- - ">="
|
29
26
|
- !ruby/object:Gem::Version
|
30
27
|
version: 0.5.0
|
31
28
|
- !ruby/object:Gem::Dependency
|
32
29
|
name: mocha
|
33
30
|
requirement: !ruby/object:Gem::Requirement
|
34
|
-
none: false
|
35
31
|
requirements:
|
36
|
-
- - ~>
|
32
|
+
- - "~>"
|
37
33
|
- !ruby/object:Gem::Version
|
38
34
|
version: 0.9.12
|
39
35
|
type: :development
|
40
36
|
prerelease: false
|
41
37
|
version_requirements: !ruby/object:Gem::Requirement
|
42
|
-
none: false
|
43
38
|
requirements:
|
44
|
-
- - ~>
|
39
|
+
- - "~>"
|
45
40
|
- !ruby/object:Gem::Version
|
46
41
|
version: 0.9.12
|
47
42
|
- !ruby/object:Gem::Dependency
|
48
43
|
name: minitest
|
49
44
|
requirement: !ruby/object:Gem::Requirement
|
50
|
-
none: false
|
51
45
|
requirements:
|
52
|
-
- - ~>
|
46
|
+
- - "~>"
|
53
47
|
- !ruby/object:Gem::Version
|
54
48
|
version: 2.1.0
|
55
49
|
type: :development
|
56
50
|
prerelease: false
|
57
51
|
version_requirements: !ruby/object:Gem::Requirement
|
58
|
-
none: false
|
59
52
|
requirements:
|
60
|
-
- - ~>
|
53
|
+
- - "~>"
|
61
54
|
- !ruby/object:Gem::Version
|
62
55
|
version: 2.1.0
|
63
56
|
- !ruby/object:Gem::Dependency
|
64
57
|
name: yard
|
65
58
|
requirement: !ruby/object:Gem::Requirement
|
66
|
-
none: false
|
67
59
|
requirements:
|
68
|
-
- - ~>
|
60
|
+
- - "~>"
|
69
61
|
- !ruby/object:Gem::Version
|
70
62
|
version: 0.6.7
|
71
63
|
type: :development
|
72
64
|
prerelease: false
|
73
65
|
version_requirements: !ruby/object:Gem::Requirement
|
74
|
-
none: false
|
75
66
|
requirements:
|
76
|
-
- - ~>
|
67
|
+
- - "~>"
|
77
68
|
- !ruby/object:Gem::Version
|
78
69
|
version: 0.6.7
|
79
70
|
- !ruby/object:Gem::Dependency
|
80
71
|
name: coveralls
|
81
72
|
requirement: !ruby/object:Gem::Requirement
|
82
|
-
none: false
|
83
73
|
requirements:
|
84
|
-
- -
|
74
|
+
- - ">="
|
85
75
|
- !ruby/object:Gem::Version
|
86
76
|
version: '0'
|
87
77
|
type: :development
|
88
78
|
prerelease: false
|
89
79
|
version_requirements: !ruby/object:Gem::Requirement
|
90
|
-
none: false
|
91
80
|
requirements:
|
92
|
-
- -
|
81
|
+
- - ">="
|
93
82
|
- !ruby/object:Gem::Version
|
94
83
|
version: '0'
|
95
84
|
- !ruby/object:Gem::Dependency
|
96
|
-
name:
|
85
|
+
name: byebug
|
97
86
|
requirement: !ruby/object:Gem::Requirement
|
98
|
-
none: false
|
99
87
|
requirements:
|
100
|
-
- - ~>
|
88
|
+
- - "~>"
|
101
89
|
- !ruby/object:Gem::Version
|
102
|
-
version:
|
90
|
+
version: 3.5.1
|
103
91
|
type: :development
|
104
92
|
prerelease: false
|
105
93
|
version_requirements: !ruby/object:Gem::Requirement
|
106
|
-
none: false
|
107
94
|
requirements:
|
108
|
-
- - ~>
|
95
|
+
- - "~>"
|
109
96
|
- !ruby/object:Gem::Version
|
110
|
-
version:
|
111
|
-
description:
|
112
|
-
|
97
|
+
version: 3.5.1
|
98
|
+
description: |-
|
99
|
+
Ruby-GPGME is a Ruby language binding of GPGME (GnuPG
|
113
100
|
Made Easy). GnuPG Made Easy (GPGME) is a library designed to make access to
|
114
|
-
|
115
101
|
GnuPG easier for applications. It provides a High-Level Crypto API for
|
116
|
-
|
117
|
-
encryption, decryption, signing, signature verification and key management.'
|
102
|
+
encryption, decryption, signing, signature verification and key management.
|
118
103
|
email: ueno@gnu.org
|
119
104
|
executables: []
|
120
105
|
extensions:
|
121
106
|
- ext/gpgme/extconf.rb
|
122
107
|
extra_rdoc_files: []
|
123
108
|
files:
|
124
|
-
-
|
125
|
-
-
|
109
|
+
- examples/edit.rb
|
110
|
+
- examples/genkey.rb
|
111
|
+
- examples/keylist.rb
|
112
|
+
- examples/roundtrip.rb
|
113
|
+
- examples/sign.rb
|
114
|
+
- examples/verify.rb
|
115
|
+
- ext/gpgme/extconf.rb
|
116
|
+
- ext/gpgme/gpgme_n.c
|
117
|
+
- lib/gpgme.rb
|
118
|
+
- lib/gpgme/compat.rb
|
119
|
+
- lib/gpgme/constants.rb
|
126
120
|
- lib/gpgme/crypto.rb
|
127
|
-
- lib/gpgme/
|
128
|
-
- lib/gpgme/version.rb
|
121
|
+
- lib/gpgme/ctx.rb
|
129
122
|
- lib/gpgme/data.rb
|
130
|
-
- lib/gpgme/
|
131
|
-
- lib/gpgme/sub_key.rb
|
123
|
+
- lib/gpgme/engine.rb
|
132
124
|
- lib/gpgme/error.rb
|
125
|
+
- lib/gpgme/io_callbacks.rb
|
133
126
|
- lib/gpgme/key.rb
|
134
|
-
- lib/gpgme/constants.rb
|
135
|
-
- lib/gpgme/signature.rb
|
136
|
-
- lib/gpgme/engine.rb
|
137
127
|
- lib/gpgme/key_common.rb
|
138
|
-
- lib/gpgme/compat.rb
|
139
128
|
- lib/gpgme/key_sig.rb
|
140
|
-
- lib/gpgme.rb
|
141
|
-
-
|
142
|
-
-
|
143
|
-
-
|
129
|
+
- lib/gpgme/misc.rb
|
130
|
+
- lib/gpgme/signature.rb
|
131
|
+
- lib/gpgme/sub_key.rb
|
132
|
+
- lib/gpgme/user_id.rb
|
133
|
+
- lib/gpgme/version.rb
|
134
|
+
- ports/archives/gpgme-1.5.5.tar.bz2
|
135
|
+
- ports/archives/libassuan-2.2.1.tar.bz2
|
136
|
+
- ports/archives/libgpg-error-1.19.tar.bz2
|
137
|
+
- test/crypto_test.rb
|
138
|
+
- test/ctx_test.rb
|
144
139
|
- test/data_test.rb
|
145
140
|
- test/files/testkey_pub.gpg
|
146
141
|
- test/files/testkey_sec.gpg
|
142
|
+
- test/gpgme_test.rb
|
143
|
+
- test/key_test.rb
|
147
144
|
- test/signature_test.rb
|
148
|
-
- test/
|
149
|
-
- test/ctx_test.rb
|
145
|
+
- test/sub_key_test.rb
|
150
146
|
- test/support/resources.rb
|
151
147
|
- test/test_helper.rb
|
152
|
-
- test/sub_key_test.rb
|
153
|
-
- test/key_test.rb
|
154
|
-
- examples/keylist.rb
|
155
|
-
- examples/edit.rb
|
156
|
-
- examples/roundtrip.rb
|
157
|
-
- examples/verify.rb
|
158
|
-
- examples/genkey.rb
|
159
|
-
- examples/sign.rb
|
160
|
-
- ports/archives/libassuan-2.2.0.tar.bz2
|
161
|
-
- ports/archives/libgpg-error-1.17.tar.bz2
|
162
|
-
- ports/archives/gpgme-1.5.3.tar.bz2
|
163
148
|
homepage: http://github.com/ueno/ruby-gpgme
|
164
149
|
licenses:
|
165
150
|
- LGPL-2.1+
|
151
|
+
metadata: {}
|
166
152
|
post_install_message:
|
167
153
|
rdoc_options: []
|
168
154
|
require_paths:
|
169
155
|
- lib
|
170
156
|
- ext
|
171
157
|
required_ruby_version: !ruby/object:Gem::Requirement
|
172
|
-
none: false
|
173
158
|
requirements:
|
174
|
-
- -
|
159
|
+
- - ">="
|
175
160
|
- !ruby/object:Gem::Version
|
176
161
|
version: '0'
|
177
162
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
178
|
-
none: false
|
179
163
|
requirements:
|
180
|
-
- -
|
164
|
+
- - ">="
|
181
165
|
- !ruby/object:Gem::Version
|
182
166
|
version: '0'
|
183
167
|
requirements: []
|
184
168
|
rubyforge_project: ruby-gpgme
|
185
|
-
rubygems_version:
|
169
|
+
rubygems_version: 2.2.2
|
186
170
|
signing_key:
|
187
|
-
specification_version:
|
171
|
+
specification_version: 4
|
188
172
|
summary: Ruby binding of GPGME.
|
189
173
|
test_files: []
|
Binary file
|
Binary file
|
Binary file
|