diff options
author | obache <obache@pkgsrc.org> | 2009-10-26 08:59:22 +0000 |
---|---|---|
committer | obache <obache@pkgsrc.org> | 2009-10-26 08:59:22 +0000 |
commit | 6355e415a86186b4b7451ed1b84895648879f016 (patch) | |
tree | 819d453574a43ffe54a88c067f245ca01fcb04b7 /graphics/py-clutter/Makefile | |
parent | 7376831383411998691a20eda407de1825da8bd4 (diff) | |
download | pkgsrc-6355e415a86186b4b7451ed1b84895648879f016.tar.gz |
Update py-clutter to 1.0.0.
Overview of changes between 0.9.2 and 1.0.0
===========================================
* Dropped the in-tree bindings of clutter-gtk and clutter-gst: you will
have to install pyclutter-gtk and pyclutter-gst respectively to be able
to import cluttergtk and cluttergst.
* Fixed memory leaks in clutter.Actor.animate [Chideok Hwang]
* Allow accessing child properties for clutter.Container
* Allow iterating over the children of a clutter.Container using the
native Python iterator support
* Allow creating custom ChildMeta classes from Python
* Mark the classes removed from upstream Clutter as "deprecated"; trying
to instantiate one of the deprecated classes will result in the equivalent
class in Clutter 1.0 to be created and a warning printed out on the console
* Override the __repr__ and __str__ methods for clutter.Color: the former
will print out a string that can be used through eval() to create a copy
of the color; the latter will print out the hexadecimal representation of
the color.
* Override the __str__ method of clutter.Event: it will now print more
information on the event (type, time, source actor) and per-event type
fields (button, key, related actor, etc.).
* Deprecated clutter.stage_get_default() in favour of an optional argument
to clutter.Stage(); calling:
clutter.Stage(default=True)
will return the default Stage singleton; the default argument is optional
and it defaults to False.
* Allow passing the following values to methods accepting a clutter.Color:
- a clutter.Color (e.g.: clutter.Color(255, 0, 0, 255))
- a 4-tuple of RGBA values (e.g.: (255, 0, 0, 255))
- a hexadecimal representation of the color (e.g.: '#ff0000ff')
Overview of changes between 0.8.2 and 0.9.2
===========================================
* Require clutter core >= 1.0.0
* Provide better bindings for the Cogl API
* Add more examples ported from the clutter core interactive tests
Diffstat (limited to 'graphics/py-clutter/Makefile')
-rw-r--r-- | graphics/py-clutter/Makefile | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/graphics/py-clutter/Makefile b/graphics/py-clutter/Makefile index a32739e0d20..e16c258b6ea 100644 --- a/graphics/py-clutter/Makefile +++ b/graphics/py-clutter/Makefile @@ -1,11 +1,10 @@ -# $NetBSD: Makefile,v 1.9 2009/08/26 19:57:48 sno Exp $ +# $NetBSD: Makefile,v 1.10 2009/10/26 08:59:22 obache Exp $ # -DISTNAME= pyclutter-0.8.2 +DISTNAME= pyclutter-1.0.0 PKGNAME= ${PYPKGPREFIX}-${DISTNAME:S/^py//} -PKGREVISION= 2 CATEGORIES= graphics -MASTER_SITES= http://www.clutter-project.org/sources/pyclutter/0.8/ +MASTER_SITES= http://www.clutter-project.org/sources/pyclutter/1.0/ MAINTAINER= obache@NetBSD.org HOMEPAGE= http://www.clutter-project.org/ @@ -21,8 +20,6 @@ GNU_CONFIGURE= yes USE_LIBTOOL= yes USE_TOOLS+= gmake pkg-config -PYTHON_VERSIONS_ACCEPTED= 25 - PKGCONFIG_OVERRIDE+= pyclutter.pc.in PY_PATCHPLIST= yes |