You can subscribe to this list here.
2002 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(20) |
Jun
(46) |
Jul
(58) |
Aug
(103) |
Sep
(153) |
Oct
(192) |
Nov
(228) |
Dec
(213) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2003 |
Jan
(61) |
Feb
(114) |
Mar
(103) |
Apr
(51) |
May
(84) |
Jun
(38) |
Jul
(125) |
Aug
(324) |
Sep
(120) |
Oct
(98) |
Nov
(145) |
Dec
(108) |
2004 |
Jan
(75) |
Feb
(72) |
Mar
(203) |
Apr
(33) |
May
(59) |
Jun
(39) |
Jul
(41) |
Aug
(108) |
Sep
(39) |
Oct
(74) |
Nov
(98) |
Dec
(21) |
2005 |
Jan
(113) |
Feb
(93) |
Mar
(113) |
Apr
(8) |
May
(11) |
Jun
(98) |
Jul
(91) |
Aug
(39) |
Sep
(149) |
Oct
(199) |
Nov
(29) |
Dec
(4) |
2006 |
Jan
(20) |
Feb
(6) |
Mar
(19) |
Apr
(21) |
May
(119) |
Jun
(105) |
Jul
(63) |
Aug
(10) |
Sep
(18) |
Oct
(26) |
Nov
(44) |
Dec
(113) |
2007 |
Jan
(14) |
Feb
(14) |
Mar
(11) |
Apr
(8) |
May
(7) |
Jun
(49) |
Jul
(188) |
Aug
(32) |
Sep
(12) |
Oct
(32) |
Nov
(79) |
Dec
(27) |
2008 |
Jan
(54) |
Feb
(32) |
Mar
(104) |
Apr
(247) |
May
(51) |
Jun
(25) |
Jul
(6) |
Aug
(13) |
Sep
(60) |
Oct
(63) |
Nov
(49) |
Dec
(10) |
2009 |
Jan
(132) |
Feb
(14) |
Mar
(16) |
Apr
(3) |
May
(23) |
Jun
(10) |
Jul
(14) |
Aug
(12) |
Sep
(24) |
Oct
(6) |
Nov
|
Dec
(6) |
2010 |
Jan
(12) |
Feb
(13) |
Mar
(2) |
Apr
(13) |
May
(7) |
Jun
(3) |
Jul
(6) |
Aug
|
Sep
(156) |
Oct
(57) |
Nov
(9) |
Dec
(2) |
2011 |
Jan
(109) |
Feb
(431) |
Mar
(17) |
Apr
|
May
(8) |
Jun
(25) |
Jul
(12) |
Aug
(9) |
Sep
(80) |
Oct
(244) |
Nov
(341) |
Dec
(559) |
2012 |
Jan
(137) |
Feb
(185) |
Mar
(6) |
Apr
(30) |
May
(26) |
Jun
(3) |
Jul
(25) |
Aug
(5) |
Sep
(4) |
Oct
(2) |
Nov
(16) |
Dec
(190) |
2013 |
Jan
(204) |
Feb
(70) |
Mar
(137) |
Apr
(180) |
May
(149) |
Jun
(39) |
Jul
(22) |
Aug
(8) |
Sep
(78) |
Oct
(488) |
Nov
(134) |
Dec
(138) |
2014 |
Jan
(18) |
Feb
(148) |
Mar
(238) |
Apr
(177) |
May
(45) |
Jun
(36) |
Jul
(176) |
Aug
(33) |
Sep
(114) |
Oct
(265) |
Nov
(263) |
Dec
(184) |
2015 |
Jan
(163) |
Feb
(44) |
Mar
(196) |
Apr
(184) |
May
(308) |
Jun
(132) |
Jul
(81) |
Aug
(76) |
Sep
(440) |
Oct
(125) |
Nov
(75) |
Dec
(111) |
2016 |
Jan
(210) |
Feb
(88) |
Mar
(86) |
Apr
(137) |
May
(145) |
Jun
(257) |
Jul
(35) |
Aug
(312) |
Sep
(69) |
Oct
(43) |
Nov
(91) |
Dec
(103) |
2017 |
Jan
(72) |
Feb
(50) |
Mar
(80) |
Apr
(238) |
May
(122) |
Jun
(47) |
Jul
(197) |
Aug
(92) |
Sep
(21) |
Oct
(45) |
Nov
(52) |
Dec
(26) |
2018 |
Jan
(3) |
Feb
|
Mar
|
Apr
(2) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2022 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(1) |
From: cedlemo <nu...@co...> - 2017-07-21 12:58:17
|
cedlemo 2017-07-21 02:02:55 +0900 (Fri, 21 Jul 2017) New Revision: e00253c14bdc897b84abc66ec3c62db109a5836f https://github.com/ruby-gnome2/ruby-gnome2/commit/e00253c14bdc897b84abc66ec3c62db109a5836f Merged 7316c70: Merge pull request #1068 from cedlemo/poppler_gi_form Message: Add Poppler::Version in its own file Copied files: poppler/lib/poppler/version.rb (from poppler/lib/poppler/loader.rb) Modified files: poppler/lib/poppler.rb poppler/lib/poppler/loader.rb Modified: poppler/lib/poppler.rb (+0 -18) =================================================================== --- poppler/lib/poppler.rb 2017-07-21 01:59:47 +0900 (33393b3) +++ poppler/lib/poppler.rb 2017-07-21 02:02:55 +0900 (009ace7) @@ -33,24 +33,6 @@ module Poppler loader = Loader.new(self) loader.load("Poppler") - module Version - MAJOR = MAJOR_VERSION - MINOR = MINOR_VERSION - MICRO = MICRO_VERSION - STRING = "#{MAJOR_VERSION}.#{MINOR_VERSION}.#{MICRO_VERSION}" - class << self - def or_later?(major, minor, micro=nil) - micro ||= 0 - version = [ - MAJOR_VERSION, - MINOR_VERSION, - MICRO_VERSION, - ] - (version <=> [major, minor, micro]) >= 0 - end - end - end - class AnnotCalloutLine alias_method :initialize_raw, :initialize def initialize(*args) Modified: poppler/lib/poppler/loader.rb (+1 -0) =================================================================== --- poppler/lib/poppler/loader.rb 2017-07-21 01:59:47 +0900 (9bee7b3) +++ poppler/lib/poppler/loader.rb 2017-07-21 02:02:55 +0900 (23253cc) @@ -25,6 +25,7 @@ module Poppler end def require_libraries + require "poppler/version" end end end Copied: poppler/lib/poppler/version.rb (+15 -10) 66% =================================================================== --- poppler/lib/poppler/loader.rb 2017-07-21 01:59:47 +0900 (9bee7b3) +++ poppler/lib/poppler/version.rb 2017-07-21 02:02:55 +0900 (9678b91) @@ -15,16 +15,21 @@ # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA module Poppler - class Loader < GObjectIntrospection::Loader - private - def pre_load(repository, namespace) - end - - def post_load(repository, namespace) - require_libraries - end - - def require_libraries + module Version + MAJOR = MAJOR_VERSION + MINOR = MINOR_VERSION + MICRO = MICRO_VERSION + STRING = "#{MAJOR_VERSION}.#{MINOR_VERSION}.#{MICRO_VERSION}" + class << self + def or_later?(major, minor, micro=nil) + micro ||= 0 + version = [ + MAJOR_VERSION, + MINOR_VERSION, + MICRO_VERSION, + ] + (version <=> [major, minor, micro]) >= 0 + end end end end |
From: cedlemo <nu...@co...> - 2017-07-21 12:58:17
|
cedlemo 2017-07-21 01:59:47 +0900 (Fri, 21 Jul 2017) New Revision: 355163025fa4996d6b09ab6c48371b798b70c7a8 https://github.com/ruby-gnome2/ruby-gnome2/commit/355163025fa4996d6b09ab6c48371b798b70c7a8 Merged 7316c70: Merge pull request #1068 from cedlemo/poppler_gi_form Message: Add customized loader Added files: poppler/lib/poppler/loader.rb Modified files: poppler/lib/poppler.rb Modified: poppler/lib/poppler.rb (+30 -3) =================================================================== --- poppler/lib/poppler.rb 2017-07-21 01:26:54 +0900 (025f6ae) +++ poppler/lib/poppler.rb 2017-07-21 01:59:47 +0900 (33393b3) @@ -24,13 +24,12 @@ GLib.prepend_dll_path(vendor_bin_dir) vendor_girepository_dir = vendor_dir + "lib" + "girepository-1.0" GObjectIntrospection.prepend_typelib_path(vendor_girepository_dir) +require "poppler/loader" + module Poppler LOG_DOMAIN = "Poppler" GLib::Log.set_log_domain(LOG_DOMAIN) - class Loader < GObjectIntrospection::Loader - end - loader = Loader.new(self) loader.load("Poppler") @@ -51,4 +50,32 @@ module Poppler end end end + + class AnnotCalloutLine + alias_method :initialize_raw, :initialize + def initialize(*args) + initialize_raw + if args.size == 1 && args.class == Hash + self.multiline = args[:multiline] || false + self.x1 = args[:x1] || 0 + self.y1 = args[:y1] || 0 + self.x2 = args[:x2] || 0 + self.y2 = args[:y2] || 0 + self.x3 = args[:x3] || 0 + self.y3 = args[:y3] || 0 + elsif args.class == Array && args.size == 7 + self.multiline = args[0] + self.x1 = args[1] + self.y1 = args[2] + self.x2 = args[3] + self.y2 = args[4] + self.x3 = args[5] + self.y3 = args[6] + end + end + + def to_a + [multiline?, x1, y1, x2, y2, x3, y3] + end + end end Added: poppler/lib/poppler/loader.rb (+30 -0) 100644 =================================================================== --- /dev/null +++ poppler/lib/poppler/loader.rb 2017-07-21 01:59:47 +0900 (9bee7b3) @@ -0,0 +1,30 @@ +# Copyright (C) 2017 Ruby-GNOME2 Project Team +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + +module Poppler + class Loader < GObjectIntrospection::Loader + private + def pre_load(repository, namespace) + end + + def post_load(repository, namespace) + require_libraries + end + + def require_libraries + end + end +end |
From: cedlemo <nu...@co...> - 2017-07-21 12:58:16
|
cedlemo 2017-07-21 02:09:14 +0900 (Fri, 21 Jul 2017) New Revision: cd38019c7f045f2254293df144a7169eb61f9547 https://github.com/ruby-gnome2/ruby-gnome2/commit/cd38019c7f045f2254293df144a7169eb61f9547 Merged 7316c70: Merge pull request #1068 from cedlemo/poppler_gi_form Message: Change Poppler::AnnotationCalloutLine to Poppler::AnnotCalloutLine Modified files: poppler/test/test_annotation.rb Modified: poppler/test/test_annotation.rb (+3 -3) =================================================================== --- poppler/test/test_annotation.rb 2017-07-21 02:08:25 +0900 (f9de429) +++ poppler/test/test_annotation.rb 2017-07-21 02:09:14 +0900 (4fdc35e) @@ -58,9 +58,9 @@ class TestAnnotation < Test::Unit::TestCase def test_callout_line only_poppler_version(0, 7, 2) - callout_line = Poppler::AnnotationCalloutLine.new(true, - 1.1, 2.2, 3.3, - 4.4, 5.5, 6.6) + callout_line = Poppler::AnnotCalloutLine.new(true, + 1.1, 2.2, 3.3, + 4.4, 5.5, 6.6) assert(callout_line.multiline?) assert_equal(1.1, callout_line.x1) assert_equal(2.2, callout_line.y1) |
From: cedlemo <nu...@co...> - 2017-07-21 12:58:16
|
cedlemo 2017-07-20 02:02:59 +0900 (Thu, 20 Jul 2017) New Revision: 6252d9f8367045150a6363da701eb1897c6779ba https://github.com/ruby-gnome2/ruby-gnome2/commit/6252d9f8367045150a6363da701eb1897c6779ba Merged 7316c70: Merge pull request #1068 from cedlemo/poppler_gi_form Message: run-test.rb : Add copyright Modified files: poppler/test/run-test.rb Modified: poppler/test/run-test.rb (+17 -0) =================================================================== --- poppler/test/run-test.rb 2017-07-20 02:00:02 +0900 (c0028ab) +++ poppler/test/run-test.rb 2017-07-20 02:02:59 +0900 (f44965c) @@ -1,4 +1,21 @@ #!/usr/bin/env ruby +# +# Copyright (C) 2017 Ruby-GNOME2 Project Team +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + base_dir = File.expand_path(File.join(File.dirname(__FILE__), "..")) |
From: Kouhei S. <nu...@co...> - 2017-07-21 12:48:00
|
Kouhei Sutou 2017-07-21 21:46:55 +0900 (Fri, 21 Jul 2017) New Revision: f216d6b29f8babfb2b5a4be5a7719ec488b0a3eb https://github.com/ruby-gnome2/ruby-gnome2/commit/f216d6b29f8babfb2b5a4be5a7719ec488b0a3eb Message: Create doc/ directory for docuemnts Renamed files: doc/release.rd (from release.rd) Renamed: doc/release.rd (+0 -0) 100% =================================================================== |
From: HIGUCHI D. (V. d. <nu...@co...> - 2017-07-20 14:49:06
|
HIGUCHI Daisuke (VDR dai) 2017-07-20 10:09:44 +0900 (Thu, 20 Jul 2017) New Revision: 35cb46ea9bfed1aa7df9eb143942126a52728672 https://github.com/ruby-gnome2/ruby-gnome2/commit/35cb46ea9bfed1aa7df9eb143942126a52728672 Merged 2b63116: Merge pull request #1065 from dai-vdr/check-exist-makefile-before-make Message: check existence of Makefile before running make Modified files: cairo-gobject/test/run-test.rb glib2/test/run-test.rb gobject-introspection/test/run-test.rb Modified: cairo-gobject/test/run-test.rb (+1 -1) =================================================================== --- cairo-gobject/test/run-test.rb 2017-07-17 21:35:37 +0900 (e4be75f) +++ cairo-gobject/test/run-test.rb 2017-07-20 10:09:44 +0900 (39de9aa) @@ -29,7 +29,7 @@ modules = [ [cairo_gobject_base, "cairo-gobject"], ] modules.each do |target, module_name| - if system("which make > /dev/null") + if File.exist?("#{target}/Makefile") and system("which make > /dev/null") `make -C #{target.dump} > /dev/null` or exit(false) end $LOAD_PATH.unshift(File.join(target, "ext", module_name)) Modified: glib2/test/run-test.rb (+1 -1) =================================================================== --- glib2/test/run-test.rb 2017-07-17 21:35:37 +0900 (08216db) +++ glib2/test/run-test.rb 2017-07-20 10:09:44 +0900 (4c38040) @@ -22,7 +22,7 @@ top = File.expand_path(File.join(base, "..")) $LOAD_PATH.unshift(top) require 'test/glib-test-init' -if system("which make > /dev/null") +if File.exist?("#{top}/Makefile") and system("which make > /dev/null") system("cd #{top.dump} && make > /dev/null") or exit(1) end Modified: gobject-introspection/test/run-test.rb (+1 -1) =================================================================== --- gobject-introspection/test/run-test.rb 2017-07-17 21:35:37 +0900 (bd26f85) +++ gobject-introspection/test/run-test.rb 2017-07-20 10:09:44 +0900 (35c2a8c) @@ -27,7 +27,7 @@ modules = [ [gobject_introspection_base, "gobject-introspection"] ] modules.each do |target, module_name| - if system("which make > /dev/null") + if File.exist?("#{target}/Makefile") and system("which make > /dev/null") `make -C #{target.dump} > /dev/null` or exit(false) end $LOAD_PATH.unshift(File.join(target, "ext", module_name)) |
From: Kouhei S. <nu...@co...> - 2017-07-20 14:49:06
|
Kouhei Sutou 2017-07-20 23:48:45 +0900 (Thu, 20 Jul 2017) New Revision: 2b631165dab13649e41eace8c3563c5e614b1dea https://github.com/ruby-gnome2/ruby-gnome2/commit/2b631165dab13649e41eace8c3563c5e614b1dea Message: Merge pull request #1065 from dai-vdr/check-exist-makefile-before-make check existence of Makefile before running make Patch by dai. Thanks!!! |
From: Travis CI <bu...@tr...> - 2017-07-20 14:14:42
|
Build Update for ruby-gnome2/pkg-config ------------------------------------- Build: #69 Status: Fixed Duration: 45 seconds Commit: 2183a4a (master) Author: Kouhei Sutou Message: test: fix inverted condition View the changeset: https://github.com/ruby-gnome2/pkg-config/compare/d48d92c4790c...2183a4ab0752 View the full build log and details: https://travis-ci.org/ruby-gnome2/pkg-config/builds/255682662?utm_source=email&utm_medium=notification -- You can configure recipients for build notifications in your .travis.yml file. See https://docs.travis-ci.com/user/notifications |
From: Kouhei S. <nu...@co...> - 2017-07-20 14:13:06
|
Kouhei Sutou 2017-07-20 23:12:35 +0900 (Thu, 20 Jul 2017) New Revision: 2183a4ab0752c9b7035e1c2beb089d87b2f762c7 https://github.com/ruby-gnome2/pkg-config/commit/2183a4ab0752c9b7035e1c2beb089d87b2f762c7 Message: test: fix inverted condition Modified files: test/test_pkg_config.rb Modified: test/test_pkg_config.rb (+1 -1) =================================================================== --- test/test_pkg_config.rb 2017-07-20 22:21:03 +0900 (b7b73d6) +++ test/test_pkg_config.rb 2017-07-20 23:12:35 +0900 (64022d7) @@ -12,7 +12,7 @@ class PkgConfigTest < Test::Unit::TestCase def only_pkg_config_version(major, minor) pkg_config_version = `pkg-config --version`.chomp current_major, current_minor = pkg_config_version.split(".").collect(&:to_i) - return if ([major, minor] <=> [current_major, current_minor]) >= 0 + return if ([major, minor] <=> [current_major, current_minor]) < 0 omit("Require pkg-config #{pkg_config_version} or later") end |
From: Travis CI <bu...@tr...> - 2017-07-20 13:56:40
|
Build Update for ruby-gnome2/pkg-config ------------------------------------- Build: #68 Status: Still Failing Duration: 3 minutes and 15 seconds Commit: d48d92c (master) Author: Kouhei Sutou Message: travis: use Trusty View the changeset: https://github.com/ruby-gnome2/pkg-config/compare/4fbb91e2f8e5...d48d92c4790c View the full build log and details: https://travis-ci.org/ruby-gnome2/pkg-config/builds/255661454?utm_source=email&utm_medium=notification -- You can configure recipients for build notifications in your .travis.yml file. See https://docs.travis-ci.com/user/notifications |
From: Kouhei S. <nu...@co...> - 2017-07-20 13:21:34
|
Kouhei Sutou 2017-07-20 22:21:03 +0900 (Thu, 20 Jul 2017) New Revision: d48d92c4790cfd35907b8695cc5d12ef217ee0c9 https://github.com/ruby-gnome2/pkg-config/commit/d48d92c4790cfd35907b8695cc5d12ef217ee0c9 Message: travis: use Trusty Modified files: .travis.yml Modified: .travis.yml (+1 -0) =================================================================== --- .travis.yml 2017-07-20 22:12:39 +0900 (cebf9ae) +++ .travis.yml 2017-07-20 22:21:03 +0900 (a908430) @@ -1,3 +1,4 @@ +dist: trusty rvm: - 2.1 - 2.2 |
From: HIGUCHI D. (V. d. <nu...@co...> - 2017-07-20 13:18:16
|
HIGUCHI Daisuke (VDR dai) 2017-07-20 10:11:00 +0900 (Thu, 20 Jul 2017) New Revision: c9eecb8448b7f327b7c73594749d25925f94137e https://github.com/ruby-gnome2/ruby-gnome2/commit/c9eecb8448b7f327b7c73594749d25925f94137e Merged f536e76: Merge pull request #1067 from dai-vdr/extend-timeout-test-webkit2-gtk-web-view Message: extend timeout for some slow environment Modified files: webkit2-gtk/test/test-webkit2-gtk-web-view.rb Modified: webkit2-gtk/test/test-webkit2-gtk-web-view.rb (+1 -1) =================================================================== --- webkit2-gtk/test/test-webkit2-gtk-web-view.rb 2017-07-17 21:35:37 +0900 (46c756c) +++ webkit2-gtk/test/test-webkit2-gtk-web-view.rb 2017-07-20 10:11:00 +0900 (b2d1714) @@ -89,7 +89,7 @@ class TestWebKit2GtkWebView < Test::Unit::TestCase loaded = false loop = GLib::MainLoop.new - timeout_id = GLib::Timeout.add(5000) do + timeout_id = GLib::Timeout.add(30000) do timeout_id = nil loop.quit GLib::Source::REMOVE |
From: Kouhei S. <nu...@co...> - 2017-07-20 13:18:16
|
Kouhei Sutou 2017-07-20 22:18:02 +0900 (Thu, 20 Jul 2017) New Revision: f536e76845265332fe84e591ed624a992867ed4d https://github.com/ruby-gnome2/ruby-gnome2/commit/f536e76845265332fe84e591ed624a992867ed4d Message: Merge pull request #1067 from dai-vdr/extend-timeout-test-webkit2-gtk-web-view extend timeout for some slow environment Patch by dai. Thanks!!! |
From: HIGUCHI D. (V. d. <nu...@co...> - 2017-07-20 13:17:29
|
HIGUCHI Daisuke (VDR dai) 2017-07-20 10:10:33 +0900 (Thu, 20 Jul 2017) New Revision: 3b0f0431b96c0249e7fcc2f4d18f04985bbd18d5 https://github.com/ruby-gnome2/ruby-gnome2/commit/3b0f0431b96c0249e7fcc2f4d18f04985bbd18d5 Merged 56f6af5: Merge pull request #1066 from dai-vdr/fix-example-shebang-path Message: fix shabang path for examples Modified files: gtk2/sample/misc/button2.rb gtk3-no-gi/sample/misc/button2.rb gtk3/sample/misc/button2.rb pango-no-gi/sample/layout.rb Modified: gtk2/sample/misc/button2.rb (+1 -1) =================================================================== --- gtk2/sample/misc/button2.rb 2017-07-17 21:35:37 +0900 (72b8865) +++ gtk2/sample/misc/button2.rb 2017-07-20 10:10:33 +0900 (a66bdb5) @@ -1,4 +1,4 @@ -#!/usr/local/bin/ruby +#!/usr/bin/env ruby =begin button2.rb - Ruby/GTK2 sample script. Modified: gtk3-no-gi/sample/misc/button2.rb (+1 -1) =================================================================== --- gtk3-no-gi/sample/misc/button2.rb 2017-07-17 21:35:37 +0900 (87deb7c) +++ gtk3-no-gi/sample/misc/button2.rb 2017-07-20 10:10:33 +0900 (5c2497e) @@ -1,4 +1,4 @@ -#!/usr/local/bin/ruby +#!/usr/bin/env ruby =begin button2.rb - Ruby/GTK2 sample script. Modified: gtk3/sample/misc/button2.rb (+1 -1) =================================================================== --- gtk3/sample/misc/button2.rb 2017-07-17 21:35:37 +0900 (3f72e99) +++ gtk3/sample/misc/button2.rb 2017-07-20 10:10:33 +0900 (2231a85) @@ -1,4 +1,4 @@ -#!/usr/local/bin/ruby +#!/usr/bin/env ruby =begin button2.rb - Ruby/GTK2 sample script. Modified: pango-no-gi/sample/layout.rb (+1 -1) =================================================================== --- pango-no-gi/sample/layout.rb 2017-07-17 21:35:37 +0900 (b5a0439) +++ pango-no-gi/sample/layout.rb 2017-07-20 10:10:33 +0900 (ee057fb) @@ -1,4 +1,4 @@ -#!/usr/local/bin/ruby +#!/usr/bin/env ruby =begin layout.rb - Ruby/Pango sample script. |
From: Kouhei S. <nu...@co...> - 2017-07-20 13:17:27
|
Kouhei Sutou 2017-07-20 22:17:08 +0900 (Thu, 20 Jul 2017) New Revision: 56f6af5ab702168aefe3db2526af2a12c364ebf3 https://github.com/ruby-gnome2/ruby-gnome2/commit/56f6af5ab702168aefe3db2526af2a12c364ebf3 Message: Merge pull request #1066 from dai-vdr/fix-example-shebang-path fix shebang path for examples Patch by dai. Thanks!!! |
From: Travis CI <bu...@tr...> - 2017-07-20 13:15:10
|
Build Update for ruby-gnome2/pkg-config ------------------------------------- Build: #67 Status: Still Failing Duration: 1 minute and 0 seconds Commit: 4fbb91e (master) Author: Kouhei Sutou Message: test: add pkg-config version check GitHub: #13 View the changeset: https://github.com/ruby-gnome2/pkg-config/compare/afcfe2dc90a5...4fbb91e2f8e5 View the full build log and details: https://travis-ci.org/ruby-gnome2/pkg-config/builds/255658459?utm_source=email&utm_medium=notification -- You can configure recipients for build notifications in your .travis.yml file. See https://docs.travis-ci.com/user/notifications |
From: Kouhei S. <nu...@co...> - 2017-07-20 13:13:15
|
Kouhei Sutou 2017-07-20 22:12:39 +0900 (Thu, 20 Jul 2017) New Revision: 4fbb91e2f8e51bce11e06546d4c6b0a2e07ba4e1 https://github.com/ruby-gnome2/pkg-config/commit/4fbb91e2f8e51bce11e06546d4c6b0a2e07ba4e1 Message: test: add pkg-config version check GitHub: #13 Modified files: test/test_pkg_config.rb Modified: test/test_pkg_config.rb (+9 -0) =================================================================== --- test/test_pkg_config.rb 2017-07-20 22:06:43 +0900 (6a558cc) +++ test/test_pkg_config.rb 2017-07-20 22:12:39 +0900 (b7b73d6) @@ -9,6 +9,13 @@ class PkgConfigTest < Test::Unit::TestCase @cairo_png = PackageConfig.new("cairo-png", options) end + def only_pkg_config_version(major, minor) + pkg_config_version = `pkg-config --version`.chomp + current_major, current_minor = pkg_config_version.split(".").collect(&:to_i) + return if ([major, minor] <=> [current_major, current_minor]) >= 0 + omit("Require pkg-config #{pkg_config_version} or later") + end + def test_exist? assert(system('pkg-config --exists cairo')) assert(@cairo.exist?) @@ -19,11 +26,13 @@ class PkgConfigTest < Test::Unit::TestCase def test_cflags assert_pkg_config("cairo", ["--cflags"], @cairo.cflags) + only_pkg_config_version(0, 29) assert_pkg_config("cairo-png", ["--cflags"], @cairo_png.cflags) end def test_cflags_only_I assert_pkg_config("cairo", ["--cflags-only-I"], @cairo.cflags_only_I) + only_pkg_config_version(0, 29) assert_pkg_config("cairo-png", ["--cflags-only-I"], @cairo_png.cflags_only_I) end |
From: Travis CI <bu...@tr...> - 2017-07-20 13:09:31
|
Build Update for ruby-gnome2/pkg-config ------------------------------------- Build: #66 Status: Broken Duration: 43 seconds Commit: afcfe2d (master) Author: Kouhei Sutou Message: Return same result as pkg-config 0.29 GitHub: fix #13 Reported by dai. Thanks!!! View the changeset: https://github.com/ruby-gnome2/pkg-config/compare/1935f1fe80c4...afcfe2dc90a5 View the full build log and details: https://travis-ci.org/ruby-gnome2/pkg-config/builds/255656615?utm_source=email&utm_medium=notification -- You can configure recipients for build notifications in your .travis.yml file. See https://docs.travis-ci.com/user/notifications |
From: Kouhei S. <nu...@co...> - 2017-07-20 13:07:59
|
Kouhei Sutou 2017-07-20 22:06:43 +0900 (Thu, 20 Jul 2017) New Revision: afcfe2dc90a5c24fc534c672924fea7e0d98f3f0 https://github.com/ruby-gnome2/pkg-config/commit/afcfe2dc90a5c24fc534c672924fea7e0d98f3f0 Message: Return same result as pkg-config 0.29 GitHub: fix #13 Reported by dai. Thanks!!! Modified files: lib/pkg-config.rb Modified: lib/pkg-config.rb (+10 -1) =================================================================== --- lib/pkg-config.rb 2017-05-29 21:44:39 +0900 (d048bf0) +++ lib/pkg-config.rb 2017-07-20 22:06:43 +0900 (25cbf62) @@ -208,7 +208,10 @@ class PackageConfig private def collect_cflags cflags_set = [declaration("Cflags")] - cflags_set += all_required_packages.collect do |package| + cflags_set += required_packages.collect do |package| + self.class.new(package, @options).cflags + end + cflags_set += private_required_packages.collect do |package| self.class.new(package, @options).cflags end all_cflags = normalize_cflags(Shellwords.split(cflags_set.join(" "))) @@ -378,6 +381,12 @@ class PackageConfig end.uniq end + def private_required_packages + requires_private.reject do |package| + @name == package + end.uniq + end + def all_required_packages (requires_private + requires.reverse).reject do |package| @name == package |
From: Kouhei S. <nu...@co...> - 2017-07-20 01:11:29
|
Kouhei Sutou 2017-07-20 10:10:44 +0900 (Thu, 20 Jul 2017) New Revision: f8018400f54019dab44a1e09d521876a483e8068 https://github.com/ruby-gnome2/ruby-gnome2/commit/f8018400f54019dab44a1e09d521876a483e8068 Message: glib2 windows: require the latest cairo Modified files: glib2/Rakefile Modified: glib2/Rakefile (+1 -1) =================================================================== --- glib2/Rakefile 2017-07-17 21:35:37 +0900 (e2e0900) +++ glib2/Rakefile 2017-07-20 10:10:44 +0900 (07f12c0) @@ -185,7 +185,7 @@ package_task = GNOME2::Rake::PackageTask.new do |package| ] package.cross_compiling do |spec| if /mingw|mswin/ =~ spec.platform.to_s - spec.add_runtime_dependency("cairo", ">= 1.12.8") + spec.add_runtime_dependency("cairo", ">= 1.15.9") end end end |
From: Kouhei S. <nu...@co...> - 2017-07-17 12:36:09
|
Kouhei Sutou 2017-07-17 21:35:37 +0900 (Mon, 17 Jul 2017) New Revision: 27fc0e78e6acba9a254dd347283621b31db0924f https://github.com/ruby-gnome2/ruby-gnome2/commit/27fc0e78e6acba9a254dd347283621b31db0924f Message: gtk3 demo: downcase Modified files: gtk3/sample/gtk-demo/css_shadows.rb Modified: gtk3/sample/gtk-demo/css_shadows.rb (+1 -1) =================================================================== --- gtk3/sample/gtk-demo/css_shadows.rb 2017-07-17 21:35:09 +0900 (588f4c4) +++ gtk3/sample/gtk-demo/css_shadows.rb 2017-07-17 21:35:37 +0900 (6c2f29c) @@ -74,7 +74,7 @@ class CssShadowsDemo def initialize_text_buffer @text = Gtk::TextBuffer.new @text.create_tag("warning", "underline" => :single) - @text.create_tag("error", "underline" => :Error) + @text.create_tag("error", "underline" => :error) @text.text = @default_css text_buffer_signal_connect_changed end |
From: cedlemo <nu...@co...> - 2017-07-17 12:35:27
|
cedlemo 2017-07-16 04:22:44 +0900 (Sun, 16 Jul 2017) New Revision: 8137b6124b2f62db4c4a2f6def00fcbbbe12234b https://github.com/ruby-gnome2/ruby-gnome2/commit/8137b6124b2f62db4c4a2f6def00fcbbbe12234b Merged b36040a: Merge pull request #1062 from cedlemo/gtk3_sample_gtk_demo_css_shadows_rb_update_pango_api Message: Update to new api of Pango Modified files: gtk3/sample/gtk-demo/css_shadows.rb Modified: gtk3/sample/gtk-demo/css_shadows.rb (+2 -2) =================================================================== --- gtk3/sample/gtk-demo/css_shadows.rb 2017-07-15 16:43:36 +0900 (cd66d4a) +++ gtk3/sample/gtk-demo/css_shadows.rb 2017-07-16 04:22:44 +0900 (588f4c4) @@ -73,8 +73,8 @@ class CssShadowsDemo def initialize_text_buffer @text = Gtk::TextBuffer.new - @text.create_tag("warning", "underline" => Pango::UNDERLINE_SINGLE) - @text.create_tag("error", "underline" => Pango::UNDERLINE_ERROR) + @text.create_tag("warning", "underline" => :single) + @text.create_tag("error", "underline" => :Error) @text.text = @default_css text_buffer_signal_connect_changed end |
From: Kouhei S. <nu...@co...> - 2017-07-17 12:35:27
|
Kouhei Sutou 2017-07-17 21:35:09 +0900 (Mon, 17 Jul 2017) New Revision: b36040aa987d2e68436cc54232cde2c4a2223bb3 https://github.com/ruby-gnome2/ruby-gnome2/commit/b36040aa987d2e68436cc54232cde2c4a2223bb3 Message: Merge pull request #1062 from cedlemo/gtk3_sample_gtk_demo_css_shadows_rb_update_pango_api Update to new api of Pango Patch by cedlemo. Thanks!!! |
From: Kouhei S. <nu...@co...> - 2017-07-15 07:45:02
|
Kouhei Sutou 2017-07-15 16:43:36 +0900 (Sat, 15 Jul 2017) New Revision: f81e3b8c66556a082e463558170c8985cc80198c https://github.com/ruby-gnome2/ruby-gnome2/commit/f81e3b8c66556a082e463558170c8985cc80198c Message: Revert "windows: unthread again" This reverts commit 3c7c2f0c94eb75d15dd5275b78d51d79f92446a3. Because normally "gem push" isn't failed. If "gem push" reports that server returns failure but gem is pushed successuflly. Modified files: Rakefile Modified: Rakefile (+6 -2) =================================================================== --- Rakefile 2017-07-15 16:40:10 +0900 (185f3b2) +++ Rakefile 2017-07-15 16:43:36 +0900 (52ee61e) @@ -501,6 +501,7 @@ namespace :gem do desc "push all Windows gems" task :push do + threads = [] windows_gnome2_packages.each do |package| architectures = [ "x86-mingw32", @@ -508,10 +509,13 @@ namespace :gem do ] architectures.each do |architecture| base_name = "#{package}-#{version}-#{architecture}.gem" - ruby("-S", "gem", "push", - File.join("build", "pkg", local_base_name)) + threads << Thread.new(base_name) do |local_base_name| + ruby("-S", "gem", "push", + File.join("build", "pkg", local_base_name)) + end end end + threads.each(&:join) end end end |
From: Kouhei S. <nu...@co...> - 2017-07-15 07:41:06
|
Kouhei Sutou 2017-07-15 16:40:10 +0900 (Sat, 15 Jul 2017) New Revision: f30570b26fb6340e88245ef2567cf1171585fe62 https://github.com/ruby-gnome2/ruby-gnome2/commit/f30570b26fb6340e88245ef2567cf1171585fe62 Message: Fix markup Modified files: NEWS Modified: NEWS (+1 -1) =================================================================== --- NEWS 2017-07-15 16:37:55 +0900 (2e7cce2) +++ NEWS 2017-07-15 16:40:10 +0900 (3a82e2d) @@ -20,7 +20,7 @@ This is a bug fix release for macOS install. ==== Ruby/Pango * Improvements - * (({Pango::Rectangle#to_a])): Added. + * (({Pango::Rectangle#to_a})): Added. ==== Ruby/GObjectIntrospection |