guile-gnome-platform 2.16.2 released

2012-05-09 Thread Andy Wingo
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/



RE: guile-gnome-platform 2.16.2 released

2012-05-09 Thread Sunjoong Lee
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 

> 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
>


guile-gnome-platform-ebuild.tar.gz
Description: GNU Zip compressed data


Re: http-post

2012-05-09 Thread Noah Lavine
Hello,

> To write a test for http-post, I thought I'd model it on a test for
> http-get.  However, there isn't one - 'http-get' doesn't appear
> anywhere in test-suite/ (on master branch as of 4105f).  'run-server'
> isn't in there either.  So is a test needed for all of these?  Perhaps
> something that starts up a simple server like the example in the
> documentation, binds it to some port, and sends a few requests with
> 'http-get' and 'http-post' to see if they come back correctly?

Yes, I like that idea. At least our procedures will be consistent with
themselves. :-)

You shouldn't work too hard writing tests for code that you didn't
write, but it sounds like the best way to test your code is to feed
its results to the web server.

Thanks for working on this,
Noah



Re: guile-gnome-platform 2.16.2 released

2012-05-09 Thread Nala Ginrut
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  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-gene...@gnu.org
> https://lists.gnu.org/mailman/listinfo/guile-gtk-general



guile-gnome-platform 2.16.2 released

2012-05-09 Thread Andy Wingo
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/