gpgme 2.0.19 → 2.0.20
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 8f5fa169ebbc97825288332cde2ee73b11b1b59c7a297c054df4ab5cb51c3397
|
4
|
+
data.tar.gz: b796ca46d73e496f5d281c73f4e7047ffa4f7d75eb89183f49e0c800b7dddf29
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e3436139108b5b842e0faeecae86210b2aed996d9939fa1943ff9209c147587ca38fbf5037dfe33192b8421c33751158f78b0f41c6de0696615d9185dc7c1975
|
7
|
+
data.tar.gz: 556944b461b444fdb1ad4a22dcc711db2515b594c365dd4bc9f52543f159dade695c039b2e33245ae9106befb0e5dd38062ce190507a243238eff93419beac58
|
data/ext/gpgme/extconf.rb
CHANGED
@@ -62,11 +62,11 @@ EOS
|
|
62
62
|
require 'rubygems'
|
63
63
|
require 'mini_portile2'
|
64
64
|
|
65
|
-
libgpg_error_recipe = MiniPortile.new('libgpg-error', '1.
|
65
|
+
libgpg_error_recipe = MiniPortile.new('libgpg-error', '1.37').tap do |recipe|
|
66
66
|
recipe.target = File.join(ROOT, "ports")
|
67
67
|
recipe.files = [{
|
68
68
|
:url => "https://www.gnupg.org/ftp/gcrypt/#{recipe.name}/#{recipe.name}-#{recipe.version}.tar.bz2",
|
69
|
-
:sha256 => '
|
69
|
+
:sha256 => 'b32d6ff72a73cf79797f7f2d039e95e9c6f92f0c1450215410840ab62aea9763'
|
70
70
|
}]
|
71
71
|
recipe.configure_options = [
|
72
72
|
'--disable-shared',
|
@@ -82,11 +82,11 @@ EOS
|
|
82
82
|
recipe.activate
|
83
83
|
end
|
84
84
|
|
85
|
-
libassuan_recipe = MiniPortile.new('libassuan', '2.5.
|
85
|
+
libassuan_recipe = MiniPortile.new('libassuan', '2.5.3').tap do |recipe|
|
86
86
|
recipe.target = File.join(ROOT, "ports")
|
87
87
|
recipe.files = [{
|
88
88
|
:url => "https://www.gnupg.org/ftp/gcrypt/#{recipe.name}/#{recipe.name}-#{recipe.version}.tar.bz2",
|
89
|
-
:sha256 => '
|
89
|
+
:sha256 => '91bcb0403866b4e7c4bc1cc52ed4c364a9b5414b3994f718c70303f7f765e702'
|
90
90
|
}]
|
91
91
|
recipe.configure_options = [
|
92
92
|
'--disable-shared',
|
@@ -102,11 +102,11 @@ EOS
|
|
102
102
|
recipe.activate
|
103
103
|
end
|
104
104
|
|
105
|
-
gpgme_recipe = MiniPortile.new('gpgme', '1.
|
105
|
+
gpgme_recipe = MiniPortile.new('gpgme', '1.13.1').tap do |recipe|
|
106
106
|
recipe.target = File.join(ROOT, "ports")
|
107
107
|
recipe.files = [{
|
108
108
|
:url => "https://www.gnupg.org/ftp/gcrypt/#{recipe.name}/#{recipe.name}-#{recipe.version}.tar.bz2",
|
109
|
-
:sha256 => '
|
109
|
+
:sha256 => 'c4e30b227682374c23cddc7fdb9324a99694d907e79242a25a4deeedb393be46'
|
110
110
|
}]
|
111
111
|
recipe.configure_options = [
|
112
112
|
'--disable-shared',
|
data/lib/gpgme/ctx.rb
CHANGED
data/lib/gpgme/version.rb
CHANGED
Binary file
|
Binary file
|
Binary file
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: gpgme
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.0.
|
4
|
+
version: 2.0.20
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Daiki Ueno
|
@@ -132,11 +132,14 @@ files:
|
|
132
132
|
- lib/gpgme/user_id.rb
|
133
133
|
- lib/gpgme/version.rb
|
134
134
|
- ports/archives/gpgme-1.12.0.tar.bz2
|
135
|
+
- ports/archives/gpgme-1.13.1.tar.bz2
|
135
136
|
- ports/archives/gpgme-1.9.0.tar.bz2
|
136
137
|
- ports/archives/libassuan-2.4.3.tar.bz2
|
137
138
|
- ports/archives/libassuan-2.5.1.tar.bz2
|
139
|
+
- ports/archives/libassuan-2.5.3.tar.bz2
|
138
140
|
- ports/archives/libgpg-error-1.27.tar.bz2
|
139
141
|
- ports/archives/libgpg-error-1.32.tar.bz2
|
142
|
+
- ports/archives/libgpg-error-1.37.tar.bz2
|
140
143
|
- test/crypto_test.rb
|
141
144
|
- test/ctx_test.rb
|
142
145
|
- test/data_test.rb
|
@@ -171,7 +174,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
171
174
|
version: '0'
|
172
175
|
requirements: []
|
173
176
|
rubyforge_project: ruby-gpgme
|
174
|
-
rubygems_version: 2.6.
|
177
|
+
rubygems_version: 2.7.6.2
|
175
178
|
signing_key:
|
176
179
|
specification_version: 4
|
177
180
|
summary: Ruby binding of GPGME.
|