environment.
2011-02-11 14:50:14 by OBATA Akio | Files touched by this commit (64) | |
Log message:
Update ruby-gnome2 to 0.90.7.
Removed deprecated binding packages.
== Ruby-GNOME2 0.90.7: 2011-02-02
NOTE: 0.90.x releases are for 1.0.0 major release.
A package fix release of 0.90.6.
=== Changes
==== Ruby/GLib2
* Improvments
* force remove "-Wl,--noundefined" linker option because
Ruby-GNOME2 packages doesn't support the option.
[Dobai-Pataky Bálint, Kouhei Sutou]
==== Ruby/GTK2
* Improvments
* use "MS-Windows" GTK+ theme by default on Windows.
[ashbb, Kouhei Sutou]
=== Thanks
* ashbb
* Dobai-Pataky Bálint
== Ruby-GNOME2 0.90.6: 2011-01-29
NOTE: 0.90.x releases are for 1.0.0 major release.
Removed deprecated packages. All supported packages support
RubyGems. All supported packages except Ruby/VTE,
Ruby/GStreamer and Ruby/GtkMozEmbed support also Windows
binary bundled gem.
=== Changes
==== All
* remove all deprecated packages.
[Masaaki Aoyagi]
* all supported packages support RubyGems.
[Masaaki Aoyagi]
==== Ruby/GLib2
* Imrpovements
* add gnome2-raketask.rb that is a utility library to
define Rake tasks for Ruby-GNOME2 packages.
[Masaaki Aoyagi, Kouhei Sutou]
* Fixes
* fix GType conversion.
[Kouhei Sutou]
* fix rcairo installed by RubyGems detection.
[Masaaki Aoyagi]
==== Ruby/GIO2
* Improvements
* support GIO 2.26.
[Nikolai Weibull]
==== Ruby/GStreamer
* Improvements
* add Gst::MissingURISourceMessage.
[Vincent Carmona, Kouhei Sutou]
* support RubyGems.
[Masaaki Aoyagi]
==== Ruby/Pango
* Fixes
* rename Pango::LayoutIter#at_last_line! to
at_last_line? because at_last_line is a predicate
method. (at_last_line! still exists for backward compatibility.)
[mrkn, Kouhei Sutou]
==== Ruby/GtkMozEmbed
* Improvements
* support RubyGems.
[Masaaki Aoyagi]
* Fixes
* support "2.0b7" style module version. #3141244
[reandr, Kouhei Sutou]
==== Ruby/GooCanvas
* Improvements
* support RubyGems.
[Masaaki Aoyagi]
==== Ruby/GtkSourceView2
* Improvements
* support RubyGems.
[Masaaki Aoyagi]
==== Ruby/VTE
* Improvements
* support RubyGems.
[Masaaki Aoyagi]
=== Thanks
* Vincent Carmona
* mrkn
* reandr
* Nikolai Weibull
* Masaaki Aoyagi
|
2011-01-13 14:40:12 by Thomas Klausner | Files touched by this commit (1644) |
Log message:
png shlib name changed for png>=1.5.0, so bump PKGREVISIONs.
|
2010-12-23 12:45:04 by David Sainty | Files touched by this commit (254) |
Log message:
Mechanically replace references to graphics/jpeg with the suitable
alternative from mk/jpeg.buildlink3.mk
This allows selection of an alternative jpeg library (namely the x86 MMX,
SSE, SSE2 accelerated libjpeg-turbo) via JPEG_DEFAULT=libjpeg-turbo, and
follows the current standard model for alternatives (fam, motif, fuse etc).
The mechanical edits were applied via the following script:
#!/bin/sh
for d in */*; do
[ -d "$d" ] || continue
for i in "$d/"Makefile* "$d/"*.mk; do
case "$i" in *.orig|*"*"*) continue;; esac
out="$d/x"
sed -e 's;graphics/jpeg/buildlink3\.mk;mk/jpeg.buildlink3.mk;g' \
-e 's;BUILDLINK_PREFIX\.jpeg;JPEGBASE;g' \
< "$i" > "$out"
if cmp -s "$i" "$out"; then
rm -f "$out"
else
echo "Edited $i"
mv -f "$i" "$i.orig" && mv "$out" \
"$i"
fi
done
done
|
2010-10-23 14:45:14 by OBATA Akio | Files touched by this commit (30) |
Log message:
Update ruby-gnome2 to 0.90.3.
= NEWS
== Ruby-GNOME2 0.90.3: 2010-10-23
NOTE: 0.90.x releases are for 1.0.0 major release.
* Support String encoding in Ruby 1.9.
* RVAL2CSTR2 and CSTR2RVAL2 are deprecated.
* Ruby/GIO2 is imported as an experimental library.
=== Changes
==== All
* Support String encoding.
[Guillaume Cottenceau, Neil Roberts, Kouhei Sutou]
* Don't install *.pc by default. Set pkgconfigdir make
varialbe like 'make pkgconfigdir=/usr/lib/pkgconfig'.
==== Ruby/GLib2
* Improvements:
* declare argument types.
[Nobuyoshi Nakada, Kouhei Sutou]
==== Ruby/GIO2
* Imported as an experimental library.
[Nikolai Weibull]
==== Ruby/GTK2
* Improvements:
* keep backward compatibility around GDK key
symbols introduced at GTK+ 2.20.
"[ruby-gnome2-devel-en] Constants names change in Gdk::KeyVal"
[Vincent Carmona]
* move gdk-pixbuf and cairo related methods from Ruby/GdkPixbuf2.
"[ruby-gnome2-devel-en] gtk2 dependency to gdkpixbuf2"
[Andrea Dallera, Kouhei Sutou]
* Bug fixes:
* fix GType conversion in Gtk::ItemFactory.new on 64bit
platform.
[Grant McLean, Steve Wills, Kouhei Sutou]
==== Ruby/GdkPixbuf2
* Improvements:
* move gdk-pixbuf and cairo related methods to Ruby/GTK2.
"[ruby-gnome2-devel-en] gtk2 dependency to gdkpixbuf2"
[Andrea Dallera, Kouhei Sutou]
* change .pc filename from ruby-gdkpixbuf2 to
ruby-gdk-pixbuf2.
==== Ruby/RSVG2
* Bug fixes:
* add missing libcroco dependency on Windows.
[U.Nakamura, Kouhei Sutou]
==== Ruby/Poppler
* Improvements:
* support Popper 0.15.0. [#3079667]
[Mamoru Tasaka, Kouhei Sutou]
* Bug fixes:
* add missing libjpeg dependency on Windows.
[U.Nakamura, Kouhei Sutou]
* fix installed Ruby/GLib2 gem can't be detected.
[kdmsnr, Kouhei Sutou]
=== Thanks
* U.Nakamura
* kdmsnr
* Mamoru Tasaka
* Guillaume Cottenceau
* Vincent Carmona
* Grant McLean
* Steve Wills
* Andrea Dallera
* Nobuyoshi Nakada
* Neil Roberts
== Ruby-GNOME2 0.90.2: 2010-09-26
NOTE: 0.90.x releases are for 1.0.0 major release.
A RubyGems package fix release.
=== Changes
==== All
* fix path.
[kimura wataru, Kouhei Sutou]
==== Ruby/GTK2
* Bug fixes:
* fix gtk2/base.rb is missing in gem.
[S.Kitagawa, Kouhei Sutou]
==== Ruby/GIO2
* Bug fixes:
* fix a typo in .pc name. [#3075619]
[O01eg, Kouhei Sutou]
==== Ruby/RSVG2
* Bug fixes:
* also check rb_cairo.h availability. [#3075617]
[O01eg, Kouhei Sutou]
=== Thanks
* S.Kitagawa
* O01eg
* kimura wataru
|
2010-09-23 17:36:04 by OBATA Akio | Files touched by this commit (29) |
Log message:
Update ruby-gnome2 to 0.90.1.
= NEWS
== Ruby-GNOME2 0.90.1: 2010-09-23
NOTE: 0.90.x releases are for 1.0.0 major release.
A install bug fix release of 0.90.0.
=== Changes
==== Ruby/ATK
* Bug fixes:
* fix .pc install path.
[OBATA Akio, Kouhei Sutou]
==== Ruby/GTK2
* Bug fixes:
* fix .pc install path.
[OBATA Akio, Kouhei Sutou]
==== Ruby/Pango
* Bug fixes:
* fix .pc install path.
[OBATA Akio, Kouhei Sutou]
==== Ruby/Poppler
* Bug fixes:
* fix .pc install path.
[OBATA Akio, Kouhei Sutou]
==== Ruby/RSVG
* Bug fixes:
* fix .pc install path.
[OBATA Akio, Kouhei Sutou]
=== Thanks
* OBATA Akio
== Ruby-GNOME2 0.90.0: 2010-09-23
NOTE: 0.90.x releases are for 1.0.0 major release.
RubyGems support!
=== Changes
==== Ruby/GTK2
* Bug fixes:
* [ruby-gnome2-devel-en] Gtk 2.20, Gtk::Builder and 'name'
add Gtk::Buildable#builder_name/set_builder_name.
[Simon Arnaud, Kouhei Sutou]
=== Thanks
* Simon Arnaud
|
2010-06-14 00:45:57 by Thomas Klausner | Files touched by this commit (1673) |
Log message:
Bump PKGREVISION for libpng shlib name change.
Also add some patches to remove use of deprecated symbols and fix other
problems when looking for or compiling against libpng-1.4.x.
|
2010-01-18 10:59:46 by Thomas Klausner | Files touched by this commit (938) |
Log message:
Second try at jpeg-8 recursive PKGREVISION bump.
|
2009-10-12 05:09:33 by OBATA Akio | Files touched by this commit (50) |
Log message:
Update ruby-gnome2 to 0.19.3.
== Ruby-GNOME2 0.19.3: 2009-09-24
NOTE: 0.19.x releases are development series.
This release is a bug fix release of 0.19.2.
=== Changes
===== Ruby/GLib2
* Bug fix:
* really fix
'empty $(vendorarchdir) related build problem on CentOS 5.3 x86_64.'
[Simon Arnaud, Kouhei Sutou]
=== Thanks
* Simon Arnaud
== Ruby-GNOME2 0.19.2: 2009-09-23
NOTE: 0.19.x releases are development series.
This release is a bug fix release of 0.19.1.
=== Changes
==== Ruby/GLib2
* Bug fixes:
* empty $(vendorarchdir) related build problem on CentOS 5.3 x86_64.
[Toshiyuki Suzumura, Kouhei Sutou]
* [#2862022] fix multi thread blocking with Ruby
1.8.6-p368 or later and 1.8.7-p173 or later.
[Roy Wright, Andrea Dallera, Kouhei Sutou]
* [Debian #502262] work Ruby thread with GTK+.
[Johan Walles, Kouhei Sutou]
==== Ruby/GTK2
* Bug fixes:
* [#2679744] fix a typo:
Gtk::Widget#set_scroll_adjustment ->
Gtk::Widget#set_scroll_adjustments.
[Kentaro Fukuchi, Kouhei Sutou]
==== Ruby/GtkMozEmbed
* Bug fixes:
* fix .pc detection.
[OBATA Akio, Kouhei Sutou]
=== Thanks
* OBATA Akio
* Toshiyuki Suzumura
* Roy Wright
* Andrea Dallera
* Johan Walles
* Kentaro Fukuchi
|