[ANN] Ruby-GNOME2-0.7.0

Ask a Question related to Ruby, Design and Development.

  1. #1

    Default [ANN] Ruby-GNOME2-0.7.0

    Hi,

    Ruby-GNOME2-0.7.0 is now available. Enjoy!

    Highlights
    ==========
    * Added Ruby/GtkGLExt.
    You also need latest version of rbogl[1].
    * Defines each Flags/Enums as a class.
    * Fixed a lot of bugs, Improved.
    * Some classes/methods were added.

    Please see NEWS in the packages or News on SF.net[2]
    for more details.

    [1] [url]http://www2.giganet.net/~yoshi/[/url]
    [2] [url]http://sourceforge.net/forum/forum.php?forum_id=308114[/url]

    Downloads
    =========
    [url]http://sourceforge.net/project/showfiles.php?group_id=53614[/url]

    * ruby-gtk2
    The minimum package which includes
    Ruby/GLib2, Ruby/GdkPixbuf, Ruby/Pango, Ruby/GTK2.

    * ruby-gstreamer
    The minimum package for Ruby/GStreamer.
    Ruby/GLib2, Ruby/GStreamer.

    * ruby-gnome2
    All of Ruby-GNOME2 libraries.

    What's Ruby-GNOME2?
    ===================
    Ruby-GNOME2 is a set of Ruby language bindings for
    the GNOME 2.x development environment.

    Supported libraries are:

    * Ruby/GLib2
    * Ruby/GdkPixbuf2
    * Ruby/Pango
    * Ruby/GTK2
    * Ruby/GNOME2
    * Ruby/GnomeCanvas2
    * Ruby/Libart2
    * Ruby/Libglade2
    * Ruby/GConf2
    * Ruby/GnomeVFS
    * Ruby/GStreamer
    * Ruby/GtkHtml2
    * Ruby/GtkGLExt [NEW]

    Resources
    =========
    - Project website
    (English) [url]http://ruby-gnome2.sourceforge.jp/[/url]
    (French) [url]http://ruby-gnome2.sourceforge.jp/fr/[/url] [NEW]
    (Japanese) [url]http://ruby-gnome2.sourceforge.jp/ja/[/url]

    - Mailing lists
    [url]http://sourceforge.net/mail/?group_id=53614[/url]

    - Tutorials
    (English) [url]http://ruby-gnome2.sourceforge.jp/hiki.cgi?tut-gtk[/url] [NEW]
    (French) [url]http://ruby-gnome2.sourceforge.jp/fr/hiki.cgi?tut-gtk[/url] [NEW]
    (Japanese) [url]http://ruby-gnome2.sourceforge.jp/ja/hiki.cgi?gtk2-tut[/url]

    - Ruby-GNOME2 API Reference
    [url]http://ruby-gnome2.sourceforge.jp/hiki.cgi?Ruby-GNOME2+API+Reference[/url]

    - Samples
    [url]http://ruby-gnome2.sourceforge.jp/hiki.cgi?Samples[/url]

    - gtk+-2.2 binary package for cygwin
    [url]http://web.sfc.keio.ac.jp/~s01397ms/cygwin/index.html.en[/url]

    - GTK+ for Windows
    [url]http://www.dropline.net/gtk/[/url]

    - Other resources
    [url]http://ruby-gnome2.sourceforge.jp/hiki.cgi?Links[/url]



    --
    .:% Masao Mutoh<mutoh@highway.ne.jp>

    Masao Mutoh Guest

  2. Similar Questions and Discussions

    1. [ANN] Ruby-GNOME2-0.8.1
      Hi, Ruby-GNOME2-0.8.1 is now available. This is a bugfix release of Ruby-GNOME2-0.8.0. #Though some methods were added ;). Enjoy! ...
    2. [ANN] Ruby-GNOME2-0.8.0
      Hi, Ruby-GNOME2-0.8.0 is out. Enjoy! Highlights ========== * Added Ruby/Libgda. Ruby/Libgda is a Ruby binding of libgda (GNOME-DB Project)....
    3. [ANN] Ruby/GNOME2 music player (initial release)
      I'm making a first public release of a music player I've been working on available here: http://www.gothpoodle.com/~galt/player.html As...
    4. [ANN] #ruby-gnome2 @ irc.gnome.org
      Hi all, The Ruby-GNOME2 project has now an IRC channel on the GNOME IRC network. More information are available from here: ...
    5. Ruby-GNOME2 website in French
      <French> Salut, Une petite partie du site du projet Ruby-GNOME2 est maintenant accessible en français. Il reste encore beaucoup de pages à...
  3. #2

    Default Re: [ANN] Ruby-GNOME2-0.7.0


    --=-mdl2YBQNQuqM6LokX6Er
    Content-Type: text/plain
    Content-Transfer-Encoding: 7bit

    On Sun, 2003-09-07 at 07:44, Masao Mutoh wrote:
    > Hi,
    >
    > Ruby-GNOME2-0.7.0 is now available. Enjoy!
    I have to apply this patch to get it to compile under 1.8.0, gcc3.3 on
    PLD-Linux -- "nil" should not be passed to have_library in mkmf.



    --=-mdl2YBQNQuqM6LokX6Er
    Content-Disposition: attachment; filename=ruby-rbogl-extconf.patch
    Content-Type: text/x-patch; name=ruby-rbogl-extconf.patch; charset=UTF-8
    Content-Transfer-Encoding: 7bit

    diff -ur opengl-orig/extconf.rb opengl/extconf.rb
    --- opengl-orig/extconf.rb 2001-11-30 22:24:58.000000000 -0700
    +++ opengl/extconf.rb 2003-09-07 09:02:23.000000000 -0600
    @@ -43,8 +43,8 @@

    $objs = ["glu.o", "ogl.o", "rbogl.o"]
    #have_library("pthread", "pthread_create")
    -(have_library(gl_libname, nil) || have_library("Mesa"+gl_libname, nil)) &&
    - (have_library(glu_libname, nil) || have_library("Mesa"+glu_libname, nil)) &&
    +(have_library(gl_libname) || have_library("Mesa"+gl_libname)) &&
    + (have_library(glu_libname) || have_library("Mesa"+glu_libname)) &&
    create_makefile("opengl")
    if (FileTest.exist? "Makefile")
    open("Makefile") {|f|
    @@ -64,7 +64,7 @@
    have_library("Xi", "XAllowDeviceEvents") &&
    have_library("Xext", "XMITMiscGetBugMode") &&
    have_library("Xmu", "XmuAddCloseDisplayHook")
    -have_library(glut_libname, nil) &&
    +have_library(glut_libname) &&
    create_makefile("glut")
    if (FileTest.exist? "Makefile")
    open("Makefile") {|f|
    Only in opengl: extconf.rb~

    --=-mdl2YBQNQuqM6LokX6Er--


    Aredridel Guest

  4. #3

    Default Re: [ANN] Ruby-GNOME2-0.7.0


    --=-7gxGHjCYPZNydTuqNYeX
    Content-Type: text/plain
    Content-Transfer-Encoding: quoted-printable

    On Sun, 2003-09-07 at 09:04, Aredridel wrote:
    > On Sun, 2003-09-07 at 07:44, Masao Mutoh wrote:
    > > Hi,
    > >=20
    > > Ruby-GNOME2-0.7.0 is now available. Enjoy!
    >=20
    > I have to apply this patch to get it to compile under 1.8.0, gcc3.3 on
    > PLD-Linux -- "nil" should not be passed to have_library in mkmf.
    >=20
    >=20
    Ooops, it looks like the mailing list stripped the attachment, and it
    was a patch to rbogl, not gnome2. Sorry about that!

    Ari

    --=-7gxGHjCYPZNydTuqNYeX
    Content-Type: application/pgp-signature; name=signature.asc
    Content-Description: This is a digitally signed message part

    -----BEGIN PGP SIGNATURE-----
    Version: GnuPG v1.2.3 (GNU/Linux)

    iD8DBQA/W0lStP09exA3hooRAsSTAKDDoDthCsqmDMsA3iZj+JUHRyrn7g CfTvO+
    nkHfBWU6ZGY3CFQTqjWys/c=
    =Ztp4
    -----END PGP SIGNATURE-----
    0
    --=-7gxGHjCYPZNydTuqNYeX--


    Aredridel Guest

  5. #4

    Default Re: [ANN] Ruby-GNOME2-0.7.0


    --=-a7i3wZoFJmxzPmKVpIYT
    Content-Type: multipart/mixed; boundary="=-NzpoVlw3Uz/6Qg4yntVv"


    --=-NzpoVlw3Uz/6Qg4yntVv
    Content-Type: text/plain
    Content-Transfer-Encoding: quoted-printable

    On Sun, 2003-09-07 at 07:44, Masao Mutoh wrote:
    > Hi,
    >=20
    > Ruby-GNOME2-0.7.0 is now available. Enjoy!
    Here's the patch it took to build for me:



    --=-NzpoVlw3Uz/6Qg4yntVv
    Content-Disposition: attachment; filename=ruby-gnome2-extconf.patch
    Content-Transfer-Encoding: base64
    Content-Type: text/x-patch; name=ruby-gnome2-extconf.patch; charset=UTF-8

    ZGlmZiAtdXIgcnVieS1nbm9tZTItYWxsLTAuNy4wLW9yaWcvZ2 xpYi9leHRjb25mLnJiIHJ1Ynkt
    Z25vbWUyLWFsbC0wLjcuMC9nbGliL2V4dGNvbmYucmINCi0tLS BydWJ5LWdub21lMi1hbGwtMC43
    LjAtb3JpZy9nbGliL2V4dGNvbmYucmIJMjAwMy0wOS0wNyAwNj owMDozMi4wMDAwMDAwMDAgLTA2
    MDANCisrKyBydWJ5LWdub21lMi1hbGwtMC43LjAvZ2xpYi9leH Rjb25mLnJiCTIwMDMtMDktMDcg
    MDk6NDM6MDQuMDAwMDAwMDAwIC0wNjAwDQpAQCAtNyw2ICs3LD cgQEANCiByZXF1aXJlICdta21m
    LWdub21lMicNCiANCiBQS0dDb25maWcuaGF2ZV9wYWNrYWdlKC dnb2JqZWN0LTIuMCcpIG9yIGV4
    aXQgMQ0KK1BLR0NvbmZpZy5oYXZlX3BhY2thZ2UoJ2dsaWItMi 4wJykgb3IgZXhpdCAxDQogY2hl
    Y2tfd2luMzINCiANCiBzZXRfb3V0cHV0X2xpYignbGlicnVieS 1nbGliMi5hJykNCk9ubHkgaW4g
    cnVieS1nbm9tZTItYWxsLTAuNy4wL2dsaWI6IGV4dGNvbmYucm J+DQo=

    --=-NzpoVlw3Uz/6Qg4yntVv--

    --=-a7i3wZoFJmxzPmKVpIYT
    Content-Type: application/pgp-signature; name=signature.asc
    Content-Description: This is a digitally signed message part

    -----BEGIN PGP SIGNATURE-----
    Version: GnuPG v1.2.3 (GNU/Linux)

    iD8DBQA/W2ybtP09exA3hooRAgBKAKCLJKMR1vTdvQBEqc6/Z3iBw8tVxwCaAxMd
    +lVAzA3xJE73OIgAQSgIDeA=
    =uzB0
    -----END PGP SIGNATURE-----
    0
    --=-a7i3wZoFJmxzPmKVpIYT--


    Aredridel Guest

  6. #5

    Default Re: [ANN] Ruby-GNOME2-0.7.0

    Hi,

    On Mon, 8 Sep 2003 02:37:02 +0900
    Aredridel <aredridel@nbtsc.org> wrote:
    > On Sun, 2003-09-07 at 07:44, Masao Mutoh wrote:
    > > Hi,
    > >
    > > Ruby-GNOME2-0.7.0 is now available. Enjoy!
    >
    > Here's the patch it took to build for me:
    Thanks for reporting.

    But it seems strange.

    What's your environment?
    #OS, GLib/GTK+ version, ruby version

    And I want to know pkg-config result as follows:

    $ pkg-config --version
    $ pkg-config --libs gobject-2.0

    --
    .:% Masao Mutoh<mutoh@highway.ne.jp>

    Masao Mutoh Guest

  7. #6

    Default Re: [ANN] Ruby-GNOME2-0.7.0


    --=-N9T7FVnU1pIeyfOB9ovg
    Content-Type: text/plain
    Content-Transfer-Encoding: quoted-printable

    On Mon, 2003-09-08 at 05:50, Masao Mutoh wrote:
    > Hi,
    >=20
    > On Mon, 8 Sep 2003 02:37:02 +0900
    > Aredridel <aredridel@nbtsc.org> wrote:
    >=20
    > > On Sun, 2003-09-07 at 07:44, Masao Mutoh wrote:
    > > > Hi,
    > > >=20
    > > > Ruby-GNOME2-0.7.0 is now available. Enjoy!
    > >=20
    > > Here's the patch it took to build for me:
    >=20
    > Thanks for reporting.
    >=20
    > But it seems strange.
    >=20
    > What's your environment?
    > #OS, GLib/GTK+ version, ruby version
    Linux, glib2-2.2.3, gtk+2-2.2.4, Ruby 1.8.0
    > And I want to know pkg-config result as follows:
    >=20
    > $ pkg-config --version
    > $ pkg-config --libs gobject-2.0
    aredridel@mizar:~% pkg-config --version
    0.15.0
    aredridel@mizar:~% pkg-config --libs gobject-2.0
    -lgobject-2.0 -lglib-2.0
    aredridel@mizar:~%


    --=-N9T7FVnU1pIeyfOB9ovg
    Content-Type: application/pgp-signature; name=signature.asc
    Content-Description: This is a digitally signed message part

    -----BEGIN PGP SIGNATURE-----
    Version: GnuPG v1.2.3 (GNU/Linux)

    iD8DBQA/XSeKtP09exA3hooRApFqAJ4h04Qh1TN8w6uTipPq+J+BydP+iQ CgkB3j
    WxTZPfvusUxOF6Yf4U30jYU=
    =z4MO
    -----END PGP SIGNATURE-----
    0
    --=-N9T7FVnU1pIeyfOB9ovg--


    Aredridel Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139