vte3 2.1.0 → 2.2.0
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/vte3/extconf.rb +1 -1
- data/ext/vte3/rbvte3conversions.h +7 -1
- data/ext/vte3/rbvte3private.h +0 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3a93fe351b3b04c4201fbd520e7f0354c962a3a7
|
|
4
|
+
data.tar.gz: 403a6e73381ea454b7eef495c32076afc3701a3d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1331df9a929a6093dc394b17ee92e1dc4d92c761fe09ae4218a1deee70385bdb3f9a35db0fa88a651852df4499ea602dfeb6000c1115f0950627d9d29b963943
|
|
7
|
+
data.tar.gz: a8544aafe85fb98c8a04ea97e56d284ff1a19ec36d1d773caab51767179cce545c14224d161b3975f1d818dc453b8a3c161536b721b4af6a2bde1fc41023fed9
|
data/ext/vte3/extconf.rb
CHANGED
|
@@ -38,7 +38,7 @@ unless required_pkg_config_package([package_id, 0, 26, 0],
|
|
|
38
38
|
exit(false)
|
|
39
39
|
end
|
|
40
40
|
|
|
41
|
-
["glib2", "
|
|
41
|
+
["glib2", "atk", "pango", "gdk3", "gtk3"].each do |package|
|
|
42
42
|
directory = "#{package}#{version_suffix}"
|
|
43
43
|
build_dir = "#{directory}/tmp/#{RUBY_PLATFORM}/#{package}/#{RUBY_VERSION}"
|
|
44
44
|
add_depend_package(package, "#{directory}/ext/#{package}",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/* -*- c-file-style: "ruby"; indent-tabs-mode: nil -*- */
|
|
2
2
|
/*
|
|
3
|
-
* Copyright (C) 2011 Ruby-GNOME2 Project Team
|
|
3
|
+
* Copyright (C) 2011-2014 Ruby-GNOME2 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
|
|
@@ -36,4 +36,10 @@
|
|
|
36
36
|
#define RVAL2VTEPTYFLAGS(o) (RVAL2GFLAGS(o, VTE_TYPE_PTY_FLAGS))
|
|
37
37
|
#define VTEPTYFLAGS2RVAL(o) (GFLAGS2RVAL(o, VTE_TYPE_PTY_FLAGS))
|
|
38
38
|
|
|
39
|
+
/* For GIO. They are temporary. They will be needless after Ruby/GDK3
|
|
40
|
+
* is based on Ruby/GObjectIntrospection.
|
|
41
|
+
*/
|
|
42
|
+
#define RVAL2GCANCELLABLE(o) (G_CANCELLABLE(RVAL2GOBJ(o)))
|
|
43
|
+
#define RVAL2GOUTPUTSTREAM(o) (G_OUTPUT_STREAM(RVAL2GOBJ(o)))
|
|
44
|
+
|
|
39
45
|
#endif /* __RBVTE3CONVERSIONS_H__ */
|
data/ext/vte3/rbvte3private.h
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: vte3
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.
|
|
4
|
+
version: 2.2.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- The Ruby-GNOME2 Project Team
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2014-03-09 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: gtk3
|
|
@@ -16,14 +16,14 @@ dependencies:
|
|
|
16
16
|
requirements:
|
|
17
17
|
- - '='
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: 2.
|
|
19
|
+
version: 2.2.0
|
|
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: 2.
|
|
26
|
+
version: 2.2.0
|
|
27
27
|
description: Ruby/VTE is a Ruby binding of VTE.
|
|
28
28
|
email: ruby-gnome2-devel-en@lists.sourceforge.net
|
|
29
29
|
executables: []
|