pkgsrc/meta-pkgs
tsutsui 337c83d595 Update ruby-gnome2 packages to 3.0.8.
Upstream changes:
(from https://github.com/ruby-gnome2/ruby-gnome2/blob/3.0.8/NEWS)

= Ruby-GNOME2 3.0.8: 2016-04-03

It's a release that improves GTK+ 3 support.

=== Changes

==== All

  * Droped Ruby 2.0.0 support.
  * Travis: use Trusty beta image.
    [Patch by Hiroshi Hatake]
  * Added AltLinux to supported OSes.
    [Patch by Malo Skrylevo]

==== Ruby/GLib2

  * Improvements
    * Added (({RVAL2CSTR_PTR_ACCEPT_NIL})).
    * Added (({RVAL2CSTR_RAW})).
    * Added (({RVAL2CSTR_RAW_ACCEPT_NIL})).
    * Supported (({GLib::Variant.new(value, type)})).
    * Added (({GLib::Regex})) class.
      [Patch by cedlemo]
    * Supported more variant types in (({rbg_variant_to_ruby})).
     [Patch by Aurelien Jacobs]
    * Supported array in (({rg_ruby_to_variant})).
      [Patch by Aurelien Jacobs]
    * Added (({GLib::Regex#split})).
      [Patch by cedlemo]
    * Added (({GLib::Regex#match})).
      [Patch by cedlemo]
    * Added (({GLib::MatchInfo})) class.
      [Patch by cedlemo]
    * Added (({GLib::Regex#max_backref})).
      [Patch by cedlemo]
    * Added (({GLib::Regex#capture_count})).
      [Patch by cedlemo]
    * Added (({GLib::Regex#has_cr_or_lf?})).
      [Patch by cedlemo]
    * Added (({GLib::Regex#max_lookbehind})).
      [Patch by cedlemo]
    * Added (({GLib::Regex#string_number})).
      [Patch by cedlemo]
    * Added (({GLib::Regex.escape_string})).
      [Patch by cedlemo]
    * Added (({GLib::Regex#match?})).
      [Patch by cedlemo]
    * Added (({GLib::Regex#match_all})).
      [Patch by cedlemo]
    * Added (({GLib::Regex#split})).
      [Patch by cedlemo]
    * Added (({GLib::Regex#replace})).
      [Patch by cedlemo]
    * Added (({GLib::Regex#check_replacement})).
      [Patch by cedlemo]
    * Added (({GLib::Regex#replace_eval})).
      [Patch by cedlemo]
    * Added (({GLib::MatchInfo#partial_match})).
      [Patch by cedlemo]
    * Added (({GLib::MatchInfo#fetch})).
      [Patch by cedlemo]
    * Added (({GLib::MatchInfo#[]})).
    * Added (({GLib::MatchInfo#fetch_pos})).
      [Patch by cedlemo]
    * Added (({GLib::MatchInfo#fetch_position})).
    * Added (({GLib::MatchInfo#fetch_all})).
      [Patch by cedlemo]
    * Added (({GLib::MatchInfo#next})).
      [Patch by cedlemo]

  * Fixes
    * Fixed a bug that raw string is converted to UTF-8.
    * Fixed handling of 64 bits (({FIXNUM})) variant initialization.

==== Ruby/GObjectIntrospection

  * Improvements
    * Supported allocated output parameter.
    * Supported dynamic callback.
    * Supported enum as output value.
    * Added function type name in error message.
    * Added (({RB_ZALLOC})).
    * Supported freeing GType-ed union.
      [GitHub#700][Reported by cedlemo]
    * Added (({GI::Repository#get_version})).
  * Fixes
    * Fixed a bug that block is always ignored in singleton method.
      [ruby-gnome2-devel-ja][Reported by Yuuki Harano]

==== Ruby/GIO2

  * Improvements
    * Supported (({Gio::Application.new(:arguments => [...]})).
      [GitHub#519][Reported by Mamoru TASAKA]
    * Started to use dynamic callback.

==== Ruby/GTK3

  * Improvements
    * Supported (({Gtk::Clipboard#request_text})).
      [ruby-gnome2-devel-en][Reported by Detlef Reichl]
    * Supported (({Gtk::Clipboard#request_contents})).
    * Supported (({Gtk::Clipboard#request_image})).
    * Supported (({Gtk::Clipboard#request_targets})).
    * Supported (({Gtk::Clipboard#request_rich_text})).
    * Supported (({Gtk::Clipboard#request_uris})).
    * Updated main demo application.
      [Patch by cedlemo]
    * Updated and finished sample tutorial.
      [Patch by cedlemo]
    * Supported (({Gtk::TreeModel#set_sort_func})).
      [GitHub#596][Reported by Christopher L. Ramsey]
    * Supported (({Gtk::Box#set_child_packing})).
      [GitHub#602][Reported by Ibrahim Tencer]
    * Updated stack demo.
      [Patch by cedlemo]
    * Added scale demo.
      [Patch by cedlemo]
    * Updated theming style classes demo.
      [Patch by cedlemo]
    * Created entry buffer demo.
      [Patch by cedlemo]
    * Made (({Gtk::EntryBuffer#new more rubyish})).
      [Patch by cedlemo]
    * Added markup demo.
      [Patch by cedlemo]
    * Added headerbar demo.
      [Patch by cedlemo]
    * Updated css accordion demo.
      [Patch by cedlemo]
    * Added pickers demo.
      [Patch by cedlemo]
    * Updated links demo.
      [Patch by cedlemo]
    * Added overlay demo.
      [Patch by cedlemo]
    * Added textmask demo.
      [Patch by cedlemo]
    * Added sidebar demo.
      [Patch by cedlemo]
    * Updated spinner demo.
      [Patch by cedlemo]
    * Updated entry completion demo.
      [Patch by cedlemo]
    * Added revealer demo.
      [Patch by cedlemo]
    * Updated expander demo.
      [Patch by cedlemo]
    * Added overlay2 demo.
      [Patch by cedlemo]
    * Updated colorsel demo.
      [Patch by cedlemo]
    * (({rbgobj_gc_mark_instance})) has to be called
      for the (({Gtk::TreeSelection})).
      [Patch by Hiroyuki Ito]
    * Updated css basics demo.
      [Patch by cedlemo]
    * Made (({Gtk::TreeModel#iter_nth_child})) and
      (({Gtk::TreeModel#iter_children})) work like
      (({#get_value})).
    * Added methods to Gtk::TreeIter:
        * (({Gtk::TreeIter#previous!}))
        * (({Gtk::TreeIter#has_child?}))
        * (({Gtk::TreeIter#n_children}))
        * (({Gtk::TreeIter#nth_child}))
        * (({Gtk::TreeIter#children})).
      [Patch by Hiroyuki Ito]
    * Added support for (({Gtk::TreeSelection})).
      [Patch by dutchhome]
    * Updated builder demo.
      [Patch by cedlemo]
    * Updated css pixbufs demo.
      [Patch by cedlemo]
    * Updated button box demo.
      [Patch by cedlemo]
    * Created css shadows demo.
      [Patch by cedlemo]
    * Updated infobar demo.
      [Patch by cedlemo]
    * Added support for MenuPositionFunc in
      (({Gtk::Menu#popup})).
      [GitHub#61][Reported by Abby Archer]
    * Made (({Gtk::Widget#translate_coordinates})) more
      rubyish.
      [Patch by cedlemo]
    * Added support for (({EntryCompletionMatchFunc})).
      [Patch by Hiroyuki Ito]
    * Updated iconview edit demo.
      [Patch by cedlemo]
    * Updated sizegroup demo.
      [Patch by cedlemo]
    * Updated cursors demo.
      [Patch by cedlemo]
    * Made (({Gtk::MenuItem#new})) like
      (({Gtk::CheckMenuItem#new})).
      [Patch by Hiroyuki Ito]
    * Move the (({#set_values})) implementation to
      (({Gtk::TreeModel})) instead of (({Gtk::ListStore})).
      [GitHub#659][Reported by detlef]
    * Updated search entry2 demo.
      [Patch by cedlemo]
    * Updated menus demo.
      [Patch by cedlemo]
    * Updated css multiplebgs demo.
      [Patch by cedlemo]
    * Added auto generated callback for AssistantPageFunc.
    * Added auto generated callback for BuilderConnectFunc.
    * Updated model button demo.
      [Patch by cedlemo]
    * Updated dialog demo.
      [Patch by cedlemo]
    * Added another example sample for (({Gtk::TreeStore})).
      [Patch by cedlemo]
    * Added the methods:
        * (({Gtk::TreePath#next!}))
        * (({Gtk::TreePath#prev!}))
        * (({Gtk::TreePath#up!}))
        * (({Gtk::TreePath#down!})).
      [Patch by cedlemo]
    * Added (({Gtk::TreeIter#first_child})).
      [Patch by cedlemo]
    * Updated filtermodel demo.
      [Patch by cedlemo]
    * Updated popover demo.
      [Patch by cedlemo]
    * Supported (({Gtk::Builder#connect_signals})).
    * Added new sample icons-theme-viewer.rb.
      [Patch by cedlemo]
    * Added new sample menus_from_resources.rb.
      [Patch by cedlemo]
    * Updated printing demo.
      [Patch by cedlemo]
    * Updated assistant demo.
      [Patch by cedlemo]
    * Updated panes demo.
      [Patch by cedlemo]
    * Updated font features demo.
      [Patch by cedlemo]

  * Fixes:
    * Fixed a bug that (({Gtk::Widget.set_connect_func})) doesn't work.
      [GitHub#703][Reported by cedlemo]

==== Ruby/Poppler

  * Improvements:
    * Removed needless (({POPPLER_TYPE_ORIENTATION})) binding.
      [GiHub#653][Reported by Rob Brackett]

==== Ruby/WebKit2GTK

  * Improvements:
    * Supported old WebKit2GTK+.

=== Thanks

  * Detlef Reichl
  * Mamoru TASAKA
  * cedlemo
  * Christopher L. Ramsey
  * Hiroyuki Ito
  * dutchhome Jon Raiford
  * Rob Brackett
  * Abby Archer
  * Yuuki Harano
  * detlef
  * Aurelien Jacobs
  * Hiroshi Hatake
  * Malo Skrylevo
2016-04-16 17:41:03 +00:00
..
boost Bump PKGREVISION from child packages update 2016-02-12 14:24:50 +00:00
bulk-large catch up with mail/roundcube rename 2016-03-17 02:47:14 +00:00
bulk-medium py-postgresql is no reason for python-2.x any longer. 2016-03-20 22:10:50 +00:00
bulk-small Bulk-small should use mk/jpeg.buildlink3.mk instead of hardcoding graphics/jpeg 2015-12-24 05:54:10 +00:00
c++-gnome-bindings
compiz-fusion
courier
deforaos-desktop Also depend on net/deforaos-vncviewer 2016-02-23 00:15:14 +00:00
desktop-gnome netbsd-desktop@ is a retired list. 2014-08-06 12:21:02 +00:00
fxtv-capture
gimp-docs Bump PKGVERSION to 2.8.2 2016-01-09 08:25:07 +00:00
gnome Extend PYTHON_VERSIONS_INCOMPATIBLE to 35 2015-12-05 21:25:27 +00:00
gnome-devtools
gnome-mobile
gnome-platform
gnuradio Update GNU Radio 3.3.0 (2010-09-15) to 3.7.5 2014-10-13 12:51:08 +00:00
gnustep Recursive revbump from textproc/icu 57.1 2016-04-11 19:01:33 +00:00
gstreamer0.10-plugins
kde-telepathy Fake a DESCR until jaapb makes a real one. 2016-04-05 12:18:38 +00:00
kde3 Use OPSYSVARS. 2016-02-25 15:31:00 +00:00
kde4 update oxygen-icons dependency. 2016-02-14 04:21:25 +00:00
matchbox
modular-xorg modular-xorg-server & drivers are not for Darwin 2015-10-06 11:29:55 +00:00
modular-xorg-apps Mark xephyr as not for Darwin for now. 2015-10-23 10:58:28 +00:00
modular-xorg-drivers Add xf86-video-amdgpu, bump PKGREVISION. 2015-11-23 12:48:15 +00:00
modular-xorg-fonts
modular-xorg-libs Pull in libXfont2. Bump version. 2015-12-11 15:59:56 +00:00
modular-xorg-protos
modular-xorg-utils
mono-gnome-bindings
nagios Import nagios-4.0.8 as meta-pkgs/nagios. 2015-04-04 16:04:14 +00:00
netbsd-doc Revert previous - apparently I want netbsd-www 2015-10-07 19:08:06 +00:00
netbsd-doc-print Update package to version 1.4: 2015-05-17 12:32:33 +00:00
netbsd-www Recursive PKGREVISION bump for all packages mentioning 'perl', 2015-06-12 10:48:20 +00:00
p5-gnome-bindings Recursive PKGREVISION bump for all packages mentioning 'perl', 2015-06-12 10:48:20 +00:00
php55-extensions Reset PKGREVISION after all PHP updates. 2016-01-08 03:31:21 +00:00
php56-extensions Reset PKGREVISION along with php 5.6.16 update. 2015-11-29 08:53:26 +00:00
php70-extensions Add php70-extensions package. 2015-12-06 15:21:49 +00:00
pkg_developer Fix the build by marking this as a meta package before we include 2016-01-13 18:14:14 +00:00
pkgsrc-guide-tools
pulseaudio-tools
py-gnome-bindings Extend PYTHON_VERSIONS_INCOMPATIBLE to 35 2015-12-05 21:25:27 +00:00
py-tryton-platform py-trytond-stock-supply missing from meta-pkg, as well as needed updated PLIST. 2015-08-24 15:50:08 +00:00
ruby-gnome2 Update ruby-gnome2 packages to 3.0.8. 2016-04-16 17:41:03 +00:00
ruby-redmine-plugins Add devel/ruby-redmine_startpage. Bump PKGVERSION. 2015-07-07 22:23:25 +00:00
ruby-redmine-themes Add devel/ruby-redmine-flatly-light-theme. Bump PKGVERSION. 2015-07-07 12:16:44 +00:00
ruby-shoulda Allow build on Ruby 2.2. 2015-06-11 17:23:37 +00:00
suse100 Use appended lists here too instead of multi-line ones. 2014-12-07 19:47:06 +00:00
suse121 Add gc and bump PKGREVISION 2015-09-26 01:14:20 +00:00
suse131 Add gc and bump PKGREVISION 2015-09-26 01:14:20 +00:00
texlive-collection-basic Let texlive-collection-basic support x11 option 2015-07-14 02:36:23 +00:00
texlive-collection-basic-doc s/tex/texlive/ 2015-05-06 10:15:58 +00:00
texlive-collection-bibtexextra Update to texlive revision 37964 2015-08-02 02:45:32 +00:00
texlive-collection-binextra Add tex-latexdiff. Bump version. 2016-01-15 08:59:30 +00:00
texlive-collection-context texlive 2015 updates. 2015-06-14 13:28:51 +00:00
texlive-collection-fontsextra Add tex packages to complete 2015 collection. 2015-09-02 11:13:54 +00:00
texlive-collection-fontsrecommended texlive 2015 updates. 2015-06-14 13:28:51 +00:00
texlive-collection-fontsrecommended-doc s/tex/texlive/ 2015-05-06 10:15:58 +00:00
texlive-collection-fontutils Note that metatype1 is an empty package and therefore collection is 2016-01-22 19:05:51 +00:00
texlive-collection-formatsextra texlive 2015 updates. 2015-06-14 13:28:51 +00:00
texlive-collection-games Add texlive-collection-bibtexextra 2014pre1 2015-05-06 10:41:42 +00:00
texlive-collection-genericextra Add tex-mathdots 2015-12-12 22:50:22 +00:00
texlive-collection-genericrecommended texlive 2015 updates. 2015-06-14 13:28:51 +00:00
texlive-collection-genericrecommended-doc s/tex/texlive/ 2015-05-06 10:15:58 +00:00
texlive-collection-htmlxml texlive 2015 updates. 2015-06-14 13:28:51 +00:00
texlive-collection-langafrican texlive 2015 updates. 2015-06-14 13:28:51 +00:00
texlive-collection-langarabic Note changes in texlive revision 37746 2015-08-02 03:01:10 +00:00
texlive-collection-langchinese Note some more documentation only packages 2015-05-17 11:41:41 +00:00
texlive-collection-langcjk Add tex-cjk-gs-integrate to complete 2015 collection. 2015-09-02 11:20:24 +00:00
texlive-collection-langcyrillic Note some more documentation only packages 2015-05-17 11:41:41 +00:00
texlive-collection-langczechslovak texlive 2015 updates. 2015-06-14 13:28:51 +00:00
texlive-collection-langenglish Update comments 2015-09-02 09:22:04 +00:00
texlive-collection-langeuropean Add more tex hyphen packages. Bump version to 2014pre2 2015-05-16 03:07:05 +00:00
texlive-collection-langfrench Note some more documentation only packages 2015-05-17 11:59:47 +00:00
texlive-collection-langgerman texlive 2015 updates. 2015-06-14 13:28:51 +00:00
texlive-collection-langgreek texlive 2015 updates. 2015-06-14 13:28:51 +00:00
texlive-collection-langindic Add tex-hyphen-indic. Bump version to 2014pre2 2015-05-16 03:09:05 +00:00
texlive-collection-langitalian Note some more documentation only packages 2015-05-17 11:59:47 +00:00
texlive-collection-langjapanese Note that lshort-* packages are documentation only so not needed in 2015-05-09 23:31:52 +00:00
texlive-collection-langkorean Update version to 2015 2015-09-02 11:21:35 +00:00
texlive-collection-langother texlive 2015 updates. 2015-06-14 13:28:51 +00:00
texlive-collection-langpolish Note more documentation only packages 2015-05-17 12:18:53 +00:00
texlive-collection-langportuguese texlive 2015 updates. 2015-06-14 13:28:51 +00:00
texlive-collection-langspanish Add tex-babel-spanglish, completing the collection. 2016-01-22 21:10:54 +00:00
texlive-collection-latex texlive 2015 updates. 2015-06-14 13:28:51 +00:00
texlive-collection-latex-doc s/tex/texlive/ 2015-05-06 10:15:58 +00:00
texlive-collection-latexextra Add tex-snapshot 2016-02-07 21:56:01 +00:00
texlive-collection-latexrecommended texlive 2015 updates. 2015-06-14 13:28:51 +00:00
texlive-collection-luatex Note changes in texlive revision 37811 2015-08-02 03:11:46 +00:00
texlive-collection-mathextra Note changes in texlive revision 37535 2015-08-02 03:13:22 +00:00
texlive-collection-metapost Add tex-mcf2graph tex-roundrect tex-shapes 2015-09-02 10:56:49 +00:00
texlive-collection-music Note changes in texlive revision 37604 2015-08-02 03:16:41 +00:00
texlive-collection-omega texlive 2015 updates. 2015-06-14 13:28:51 +00:00
texlive-collection-pictures Add some tex-tikz* packages 2016-01-04 01:57:24 +00:00
texlive-collection-plainextra Add tex-gfnotation (completing the collection) 2015-07-02 21:10:32 +00:00
texlive-collection-pstricks Add tex-bclogo 2015-07-02 21:08:08 +00:00
texlive-collection-publishers Add tex-toptesi 2015-09-01 21:32:14 +00:00
texlive-collection-science Add tex-siunitx 2015-07-02 21:12:04 +00:00
texlive-collection-xetex Note changes from texlive revision 37812 2015-08-02 03:22:01 +00:00
web-server Since Apache 2.4 is normally picked up anyway, just use it in first 2015-09-12 16:52:09 +00:00
windowmaker-desktop Remove wmthemes. 2014-11-24 15:21:49 +00:00
xfce4 Use OPSYSVARS. 2016-02-25 15:31:00 +00:00
xfce4-extras Change dependencies to use new dict application. Bump. 2015-07-26 14:01:42 +00:00
Makefile tab police 2016-01-21 03:52:31 +00:00