gpgme 2.0.21 → 2.0.22
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.
- checksums.yaml +4 -4
- data/ext/gpgme/extconf.rb +4 -4
- data/ext/gpgme/gpgme_n.c +3 -0
- data/lib/gpgme/version.rb +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c4dc4765cd73bfd27c0ebdfff8749106341f2dd7a6c0118a4e3307798b753e84
|
|
4
|
+
data.tar.gz: 6b929a3f84144a4fdcc40382129bd6ad409e9a819c956f33941a8d650000c70c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 387806727ae8b6d8da14fc23ce7c9a24c58373b52f79b4bce8ca1f7de2337e715c488c7af65e30ac8e6e73a18c8d31589b00f80c682f0dcbcce1f4d234cc58a3
|
|
7
|
+
data.tar.gz: bbfa653feac228f87c430fa61524625d373ff6dd0a33d5c824c50d94db59233ab6161d8ac1b6e475db21ce9908f22b45bce17fff5c6cba92f9bb959b49b297b8
|
data/ext/gpgme/extconf.rb
CHANGED
|
@@ -37,13 +37,13 @@ if arg_config('--clean')
|
|
|
37
37
|
end
|
|
38
38
|
|
|
39
39
|
if arg_config('--use-system-libraries', ENV['RUBY_GPGME_USE_SYSTEM_LIBRARIES'])
|
|
40
|
-
unless find_executable('
|
|
41
|
-
$stderr.puts("
|
|
40
|
+
unless find_executable('pkg-config')
|
|
41
|
+
$stderr.puts("pkg-config not found")
|
|
42
42
|
exit(1)
|
|
43
43
|
end
|
|
44
44
|
|
|
45
|
-
$CFLAGS += ' ' << `
|
|
46
|
-
$libs += ' ' << `
|
|
45
|
+
$CFLAGS += ' ' << `pkg-config --cflags gpgme`.chomp
|
|
46
|
+
$libs += ' ' << `pkg-config --libs gpgme`.chomp
|
|
47
47
|
else
|
|
48
48
|
message <<-'EOS'
|
|
49
49
|
************************************************************************
|
data/ext/gpgme/gpgme_n.c
CHANGED
|
@@ -2298,10 +2298,13 @@ Init_gpgme_n (void)
|
|
|
2298
2298
|
rb_define_class_under (mGPGME, "EngineInfo", rb_cObject);
|
|
2299
2299
|
cCtx =
|
|
2300
2300
|
rb_define_class_under (mGPGME, "Ctx", rb_cObject);
|
|
2301
|
+
rb_undef_alloc_func(cCtx);
|
|
2301
2302
|
cData =
|
|
2302
2303
|
rb_define_class_under (mGPGME, "Data", rb_cObject);
|
|
2304
|
+
rb_undef_alloc_func(cData);
|
|
2303
2305
|
cKey =
|
|
2304
2306
|
rb_define_class_under (mGPGME, "Key", rb_cObject);
|
|
2307
|
+
rb_undef_alloc_func(cKey);
|
|
2305
2308
|
cSubKey =
|
|
2306
2309
|
rb_define_class_under (mGPGME, "SubKey", rb_cObject);
|
|
2307
2310
|
cUserID =
|
data/lib/gpgme/version.rb
CHANGED
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.22
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Daiki Ueno
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2022-
|
|
12
|
+
date: 2022-11-25 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: mini_portile2
|
|
@@ -17,14 +17,14 @@ dependencies:
|
|
|
17
17
|
requirements:
|
|
18
18
|
- - "~>"
|
|
19
19
|
- !ruby/object:Gem::Version
|
|
20
|
-
version: 2.7
|
|
20
|
+
version: '2.7'
|
|
21
21
|
type: :runtime
|
|
22
22
|
prerelease: false
|
|
23
23
|
version_requirements: !ruby/object:Gem::Requirement
|
|
24
24
|
requirements:
|
|
25
25
|
- - "~>"
|
|
26
26
|
- !ruby/object:Gem::Version
|
|
27
|
-
version: 2.7
|
|
27
|
+
version: '2.7'
|
|
28
28
|
- !ruby/object:Gem::Dependency
|
|
29
29
|
name: mocha
|
|
30
30
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -68,7 +68,7 @@ dependencies:
|
|
|
68
68
|
- !ruby/object:Gem::Version
|
|
69
69
|
version: 0.9.11
|
|
70
70
|
- !ruby/object:Gem::Dependency
|
|
71
|
-
name:
|
|
71
|
+
name: coveralls_reborn
|
|
72
72
|
requirement: !ruby/object:Gem::Requirement
|
|
73
73
|
requirements:
|
|
74
74
|
- - ">="
|