vte 3.3.8 → 3.3.9
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/ext/vte/extconf.rb +19 -11
- metadata +6 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f4829e43b34b231f83affc19ea29b9463f4004215ddc1164590c68c00ca4d882
|
4
|
+
data.tar.gz: 502f352ee1aca289ff11bbc471edb6cd8a5c96f7dc9d5184133bd5cc158ddd5f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 553cebdc7b2ace364180667603b4fc6b682c27a4f26bd53c99ab219ff8ab6cc3255b79eb38f8fbff1a79ae5351b33fb38f6c0d61c55518c5af94b27af958a9af
|
7
|
+
data.tar.gz: 8dcbd0f2f8877538d0659bbc5518598b4cc1e741e4090dc49b9ffd979e1fbe123b3aeeb01d01a2c3b34cb9c5671cddbddddacbe2e302ee334edbc0d2fc313147
|
data/ext/vte/extconf.rb
CHANGED
@@ -1,6 +1,20 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
#
|
3
|
+
# Copyright (C) 2006-2019 Ruby-GNOME Project Team
|
4
|
+
#
|
5
|
+
# This library is free software; you can redistribute it and/or
|
6
|
+
# modify it under the terms of the GNU Lesser General Public
|
7
|
+
# License as published by the Free Software Foundation; either
|
8
|
+
# version 2.1 of the License, or (at your option) any later version.
|
9
|
+
#
|
10
|
+
# This library is distributed in the hope that it will be useful,
|
11
|
+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
12
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
13
|
+
# Lesser General Public License for more details.
|
14
|
+
#
|
15
|
+
# You should have received a copy of the GNU Lesser General Public
|
16
|
+
# License along with this library; if not, write to the Free Software
|
17
|
+
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
4
18
|
|
5
19
|
require 'pathname'
|
6
20
|
|
@@ -22,18 +36,12 @@ $LOAD_PATH.unshift(mkmf_gnome2_dir.to_s)
|
|
22
36
|
module_name = "vte"
|
23
37
|
package_id = "vte"
|
24
38
|
|
25
|
-
|
26
|
-
require 'mkmf-gnome2'
|
27
|
-
rescue LoadError
|
28
|
-
require 'rubygems'
|
29
|
-
gem 'glib2'
|
30
|
-
require 'mkmf-gnome2'
|
31
|
-
end
|
39
|
+
require "mkmf-gnome"
|
32
40
|
|
33
41
|
unless required_pkg_config_package(package_id,
|
34
42
|
:alt_linux => "libvte-devel",
|
35
43
|
:debian => "libvte-dev",
|
36
|
-
:redhat => "
|
44
|
+
:redhat => "pkgconfig(#{package_id})",
|
37
45
|
:homebrew => "vte",
|
38
46
|
:macports => "vte")
|
39
47
|
exit(false)
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: vte
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.3.
|
4
|
+
version: 3.3.9
|
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: 2019-
|
11
|
+
date: 2019-10-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: gtk2
|
@@ -16,14 +16,14 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - '='
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 3.3.
|
19
|
+
version: 3.3.9
|
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.3.
|
26
|
+
version: 3.3.9
|
27
27
|
description: Ruby/VTE is a Ruby binding of VTE.
|
28
28
|
email: ruby-gnome2-devel-en@lists.sourceforge.net
|
29
29
|
executables: []
|
@@ -68,7 +68,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
68
68
|
- !ruby/object:Gem::Version
|
69
69
|
version: '0'
|
70
70
|
requirements: []
|
71
|
-
|
71
|
+
rubyforge_project:
|
72
|
+
rubygems_version: 2.7.6.2
|
72
73
|
signing_key:
|
73
74
|
specification_version: 4
|
74
75
|
summary: Ruby/VTE is a Ruby binding of VTE.
|