* guile-gnome-platform 2.16.2 released
@ 2012-05-09 20:53 Andy Wingo
0 siblings, 0 replies; 4+ messages in thread
From: Andy Wingo @ 2012-05-09 20:53 UTC (permalink / raw)
To: guile-gtk-general, guile-user
Hello all,
I am pleased and embarrassed to announce the release of
guile-gnome-platform version 2.16.2.
Get it here:
http://ftp.gnu.org/gnu/guile-gnome/guile-gnome-platform/guile-gnome-platform-2.16.2.tar.gz
About guile-gnome-platform
==========================
guile-gnome is a Guile wrapper collection for the GNOME library stack.
It ships with an wrapper engine that allows semi-automatic wrapping of
GObject-based C APIs.
This release is the first in 4 years. The API has not been
substantially updated. The major change is simply that it works with
2.0, and there there is a tarball.
Changes
=======
* Instead of the terribly complicated revision control configuration
that we had before, now all code is in git, and in just one branch.
The build files like Makefile.am and configure.ac are no longer
generated from other files.
* Update to support Guile 2.0 in addition to 1.8. (We don't currently
install compiled .go files yet.)
* Require G-Wrap 1.9.14.
* If Guile is new enough, tab completion at the REPL will cause all
"latent" bindings to become present. This makes it easier to explore
the API.
glib
----
* Fix generation of code that produces errors when compiled when
wrapping GList* types.
gtk
---
* Fix some instances of allocating boxed types with g_new0 instead of
the boxed type's own copy function. Thanks to Greg Benison and
Patrick Bernaud.
* Fix linking error regarding libgw-guile-gnome-gtk and libguile-cairo.
Thanks to Andreas Rottmann.
* Add overrides with parameter annotations for methods of
GtkPrintOperation (bug #603211). Thanks to Patrick Bernaud.
* Add wrapper for gtk_tree_view_get_path_at_pos(). Thanks to Patrick
Bernaud.
* Fix up some of the example files for 2.16.0 API. Thanks to Patrick
Bernaud.
* The GtkTextBuffer API now uses UTF-8 for Guile 2.0. Thanks to Mark
Weaver. There is more work to do regarding UTF-8 and Guile 2.0,
though.
libglade
--------
* Fix automatic connection of signals to handlers (bug #605248). Thanks
to Patrick Bernaud.
--
http://wingolog.org/
^ permalink raw reply [flat|nested] 4+ messages in thread
* guile-gnome-platform 2.16.2 released
@ 2012-05-09 21:01 Andy Wingo
2012-05-10 2:55 ` Nala Ginrut
0 siblings, 1 reply; 4+ messages in thread
From: Andy Wingo @ 2012-05-09 21:01 UTC (permalink / raw)
To: guile-gtk-general, guile-user
Hello all,
I am pleased and embarrassed to announce the release of
guile-gnome-platform version 2.16.2.
Get it here:
http://ftp.gnu.org/gnu/guile-gnome/guile-gnome-platform/guile-gnome-platform-2.16.2.tar.gz
About guile-gnome-platform
==========================
guile-gnome is a Guile wrapper collection for the GNOME library stack.
It ships with an wrapper engine that allows semi-automatic wrapping of
GObject-based C APIs.
This release is the first in 4 years. The API has not been
substantially updated. The major change is simply that it works with
2.0, and there there is a tarball.
Changes
=======
* Instead of the terribly complicated revision control configuration
that we had before, now all code is in git, and in just one branch.
The build files like Makefile.am and configure.ac are no longer
generated from other files.
* Update to support Guile 2.0 in addition to 1.8. (We don't currently
install compiled .go files yet.)
* Require G-Wrap 1.9.14.
* If Guile is new enough, tab completion at the REPL will cause all
"latent" bindings to become present. This makes it easier to explore
the API.
glib
----
* Fix generation of code that produces errors when compiled when
wrapping GList* types.
gtk
---
* Fix some instances of allocating boxed types with g_new0 instead of
the boxed type's own copy function. Thanks to Greg Benison and
Patrick Bernaud.
* Fix linking error regarding libgw-guile-gnome-gtk and libguile-cairo.
Thanks to Andreas Rottmann.
* Add overrides with parameter annotations for methods of
GtkPrintOperation (bug #603211). Thanks to Patrick Bernaud.
* Add wrapper for gtk_tree_view_get_path_at_pos(). Thanks to Patrick
Bernaud.
* Fix up some of the example files for 2.16.0 API. Thanks to Patrick
Bernaud.
* The GtkTextBuffer API now uses UTF-8 for Guile 2.0. Thanks to Mark
Weaver. There is more work to do regarding UTF-8 and Guile 2.0,
though.
libglade
--------
* Fix automatic connection of signals to handlers (bug #605248). Thanks
to Patrick Bernaud.
--
http://wingolog.org/
^ permalink raw reply [flat|nested] 4+ messages in thread
* RE: guile-gnome-platform 2.16.2 released
@ 2012-05-09 23:57 Sunjoong Lee
0 siblings, 0 replies; 4+ messages in thread
From: Sunjoong Lee @ 2012-05-09 23:57 UTC (permalink / raw)
To: guile-user
[-- Attachment #1.1: Type: text/plain, Size: 1833 bytes --]
Hello,
I'm glad to hear guile-gnome-platform works with Guile 2.0. To celebrate
it, I've attatched my ebuild files for Gentoo Linux users. You
know, Gentoo's last stable guile ebuild file is guile-1.8.8-r1.ebuild for
Guile 1.8.8 but the last stable version of Guile itself is 2.0.5. There
are guile-2.0.5.ebuild, g-wrap-1.9.14.ebuild
and guile-gnome-platform-2.16.2.ebuild in my attatched file. You need
a ebuild file for guile-lib 0.1.9 but it is in your default portage tree.
If not so, sync your portage tree; "emerge --sync".
0. Update your system:
# emerge --sync
# emerge -uND world
# emerge --depclean
# revdep-rebuild
1. Put new ebuild files in your local portage overlay tree:
# cp guile-gnome-platform-ebuild.tar.gz /usr/local
# cd /usr/local
# tar xvjf guile-gnome-platform-ebuild.tar.gz
# rm guile-gnome-platform-ebuild.tar.gz
2. Check your PORTDIR_OVERLAY environment variable in /etc/make.conf file.
I assume that:
$ grep PORTDIR_OVERLAY /etc/make.conf
PORTDIR_OVERLAY="/usr/local/portage"
3. Use ~x86 keyword in your Gentoo keyword file:
# vi /etc/portage/package.keywords
The contents of keyword file is:
dev-libs/g-wrap ~x86
dev-scheme/guile ~x86
dev-scheme/guile-gnome-platform ~x86
dev-scheme/guile-lib ~x86
4. Uninstall guile 1.8.8 if you had installed it:
# emerge -C guile
5. Install guile-gnome-platform; emerge script will
install guile, guile-lib and g-wrap for guile-gnome-platform:
# emerge guile-gnome-platform
# emerge --depclean
# revdep-rebuild
2012/5/9 Andy Wingo <wingo@pobox.com>
> Hello all,
>
> I am pleased and embarrassed to announce the release of
> guile-gnome-platform version 2.16.2.
>
> Get it here:
>
>
>
> http://ftp.gnu.org/gnu/guile-gnome/guile-gnome-platform/guile-gnome-platform-2.16.2.tar.gz
>
[-- Attachment #1.2: Type: text/html, Size: 2886 bytes --]
[-- Attachment #2: guile-gnome-platform-ebuild.tar.gz --]
[-- Type: application/x-gzip, Size: 2878 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: guile-gnome-platform 2.16.2 released
2012-05-09 21:01 Andy Wingo
@ 2012-05-10 2:55 ` Nala Ginrut
0 siblings, 0 replies; 4+ messages in thread
From: Nala Ginrut @ 2012-05-10 2:55 UTC (permalink / raw)
To: Andy Wingo; +Cc: guile-user, guile-gtk-general
Ah~that's great news~
And I tested, it works for me. Now I could start some project with GUI.
Thanks!
On Thu, May 10, 2012 at 5:01 AM, Andy Wingo <wingo@pobox.com> wrote:
> Hello all,
>
> I am pleased and embarrassed to announce the release of
> guile-gnome-platform version 2.16.2.
>
> Get it here:
>
> http://ftp.gnu.org/gnu/guile-gnome/guile-gnome-platform/guile-gnome-platform-2.16.2.tar.gz
>
>
> About guile-gnome-platform
> ==========================
>
> guile-gnome is a Guile wrapper collection for the GNOME library stack.
> It ships with an wrapper engine that allows semi-automatic wrapping of
> GObject-based C APIs.
>
> This release is the first in 4 years. The API has not been
> substantially updated. The major change is simply that it works with
> 2.0, and there there is a tarball.
>
>
> Changes
> =======
>
> * Instead of the terribly complicated revision control configuration
> that we had before, now all code is in git, and in just one branch.
> The build files like Makefile.am and configure.ac are no longer
> generated from other files.
>
> * Update to support Guile 2.0 in addition to 1.8. (We don't currently
> install compiled .go files yet.)
>
> * Require G-Wrap 1.9.14.
>
> * If Guile is new enough, tab completion at the REPL will cause all
> "latent" bindings to become present. This makes it easier to explore
> the API.
>
> glib
> ----
> * Fix generation of code that produces errors when compiled when
> wrapping GList* types.
>
> gtk
> ---
> * Fix some instances of allocating boxed types with g_new0 instead of
> the boxed type's own copy function. Thanks to Greg Benison and
> Patrick Bernaud.
>
> * Fix linking error regarding libgw-guile-gnome-gtk and libguile-cairo.
> Thanks to Andreas Rottmann.
>
> * Add overrides with parameter annotations for methods of
> GtkPrintOperation (bug #603211). Thanks to Patrick Bernaud.
>
> * Add wrapper for gtk_tree_view_get_path_at_pos(). Thanks to Patrick
> Bernaud.
>
> * Fix up some of the example files for 2.16.0 API. Thanks to Patrick
> Bernaud.
>
> * The GtkTextBuffer API now uses UTF-8 for Guile 2.0. Thanks to Mark
> Weaver. There is more work to do regarding UTF-8 and Guile 2.0,
> though.
>
> libglade
> --------
> * Fix automatic connection of signals to handlers (bug #605248). Thanks
> to Patrick Bernaud.
>
> --
> http://wingolog.org/
>
> _______________________________________________
> guile-gtk-general mailing list
> guile-gtk-general@gnu.org
> https://lists.gnu.org/mailman/listinfo/guile-gtk-general
_______________________________________________
guile-gtk-general mailing list
guile-gtk-general@gnu.org
https://lists.gnu.org/mailman/listinfo/guile-gtk-general
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2012-05-10 2:55 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-05-09 20:53 guile-gnome-platform 2.16.2 released Andy Wingo
-- strict thread matches above, loose matches on Subject: below --
2012-05-09 21:01 Andy Wingo
2012-05-10 2:55 ` Nala Ginrut
2012-05-09 23:57 Sunjoong Lee
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).