libsecret 3.4.3 → 3.4.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/test/helper.rb +1 -3
- data/test/run-test.rb +20 -42
- 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: dad3142f98ed06a4b2b05b09c7600f4316107211d3d77b41dc92d65897068103
|
4
|
+
data.tar.gz: f991311f6caf61e9ec6c8dbf6038f42670209032b4190ab0b59b71b497a95a99
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9f93a4c2461e5ea25df2cd6e1bd6dc28423b4d44cadf7fb3778c38012dc837645a73ac42a17ee1cf69af735df4ee902c2675ded9705de989f291b18730f1060a
|
7
|
+
data.tar.gz: 9bc2f736dcd0b5b226c63edc6065202c0cebb65d1d486047593c8d0bbc70b21b82f2ee92ec9fafb63c27dd7bd5c8c5e41bc1a37561c6f927b5d942011383f001
|
data/test/helper.rb
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
# Copyright (C) 2019 Ruby-
|
1
|
+
# Copyright (C) 2019-2021 Ruby-GNOME Project Team
|
2
2
|
#
|
3
3
|
# This library is free software; you can redistribute it and/or
|
4
4
|
# modify it under the terms of the GNU Lesser General Public
|
@@ -14,8 +14,6 @@
|
|
14
14
|
# License along with this library; if not, write to the Free Software
|
15
15
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
16
16
|
|
17
|
-
require "test-unit"
|
18
|
-
|
19
17
|
module SecretTestHelper
|
20
18
|
private
|
21
19
|
def only_version(major, minor, micro=nil)
|
data/test/run-test.rb
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
#!/usr/bin/env ruby
|
2
2
|
#
|
3
|
-
# Copyright (C) 2019-
|
3
|
+
# Copyright (C) 2019-2021 Ruby-GNOME Project Team
|
4
4
|
#
|
5
5
|
# This library is free software; you can redistribute it and/or
|
6
6
|
# modify it under the terms of the GNU Lesser General Public
|
@@ -16,48 +16,26 @@
|
|
16
16
|
# License along with this library; if not, write to the Free Software
|
17
17
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
18
18
|
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
modules.each do |target, module_name|
|
33
|
-
makefile = File.join(target, "Makefile")
|
34
|
-
if File.exist?(makefile) and system("which make > /dev/null")
|
35
|
-
`make -C #{target.dump} > /dev/null` or exit(false)
|
19
|
+
require_relative "../../glib2/test/run-test"
|
20
|
+
|
21
|
+
run_test(__dir__,
|
22
|
+
[
|
23
|
+
"glib2",
|
24
|
+
"gobject-introspection",
|
25
|
+
"libsecret",
|
26
|
+
]) do
|
27
|
+
begin
|
28
|
+
require "libsecret"
|
29
|
+
rescue GObjectIntrospection::RepositoryError
|
30
|
+
puts("Omit because typelib file doesn't exist: #{$!.message}")
|
31
|
+
exit(true)
|
36
32
|
end
|
37
|
-
$LOAD_PATH.unshift(File.join(target, "ext", module_name))
|
38
|
-
$LOAD_PATH.unshift(File.join(target, "lib"))
|
39
|
-
end
|
40
|
-
|
41
|
-
$LOAD_PATH.unshift(File.join(glib_base, "test"))
|
42
|
-
require "glib-test-init"
|
43
|
-
|
44
|
-
$LOAD_PATH.unshift(File.join(libsecret_base, "test"))
|
45
|
-
require_relative "helper"
|
46
33
|
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
puts("Omit because typelib file doesn't exist: #{$!.message}")
|
53
|
-
exit(true)
|
54
|
-
end
|
55
|
-
|
56
|
-
require "pkg-config"
|
34
|
+
require "pkg-config"
|
35
|
+
unless PKGConfig.check_version?("libsecret-1", 0, 18, 9)
|
36
|
+
puts("Omit because libsecret is old")
|
37
|
+
exit(true)
|
38
|
+
end
|
57
39
|
|
58
|
-
|
59
|
-
puts("Omit because libsecret is old")
|
60
|
-
exit(true)
|
40
|
+
require_relative "helper"
|
61
41
|
end
|
62
|
-
|
63
|
-
exit(Test::Unit::AutoRunner.run(true, File.join(libsecret_base, "test")))
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: libsecret
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.4.
|
4
|
+
version: 3.4.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- The Ruby-GNOME Project Team
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2021-04-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: gobject-introspection
|
@@ -16,14 +16,14 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - '='
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 3.4.
|
19
|
+
version: 3.4.4
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - '='
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: 3.4.
|
26
|
+
version: 3.4.4
|
27
27
|
description: Ruby/libsecret is a Ruby binding of libsecret.
|
28
28
|
email: ruby-gnome2-devel-en@lists.sourceforge.net
|
29
29
|
executables: []
|
@@ -61,7 +61,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
61
61
|
- !ruby/object:Gem::Version
|
62
62
|
version: '0'
|
63
63
|
requirements: []
|
64
|
-
rubygems_version: 3.
|
64
|
+
rubygems_version: 3.3.0.dev
|
65
65
|
signing_key:
|
66
66
|
specification_version: 4
|
67
67
|
summary: Ruby/libsecret is a Ruby binding of libsecret.
|