pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/graphics/gegl Changes 0.0.22:



details:   https://anonhg.NetBSD.org/pkgsrc/rev/faa5b82a0bfd
branches:  trunk
changeset: 553550:faa5b82a0bfd
user:      adam <adam%pkgsrc.org@localhost>
date:      Sat Jan 24 12:57:30 2009 +0000

description:
Changes 0.0.22:
GeglOperation
* operation names are now prefixed, the ops in GEGL use 'gegl:' as prefix.
* gegl:opacity - combine value and aux mask input when both are available.
* gegl:src-in - deal correctly with extens.
* gegl:path - new op covering the stroke/fill needs of SVG.
* deprecated gegl:shift, the affine familiy of operations now
  uses the same fast code paths for integer translations.
GeglBuffer
* Profiling motivated speed ups in data reading/writing.
* Remove left-over swapfiles from dead processes at startup.
GeglNode
* made gegl_node_add_child and gegl_node_remove_child public API.
GeglPath
* Vector path representation infrastructure, supporting poly lines and beziers
  by default, the infrastructure allows extensions from applications with
  other curve types (smooth curves, spiro curves and others.).

diffstat:

 graphics/gegl/Makefile         |   4 ++--
 graphics/gegl/PLIST            |   6 ++++--
 graphics/gegl/distinfo         |  10 +++++-----
 graphics/gegl/patches/patch-aa |  28 +++++++++-------------------
 4 files changed, 20 insertions(+), 28 deletions(-)

diffs (95 lines):

diff -r ba2663a6a702 -r faa5b82a0bfd graphics/gegl/Makefile
--- a/graphics/gegl/Makefile    Sat Jan 24 12:41:25 2009 +0000
+++ b/graphics/gegl/Makefile    Sat Jan 24 12:57:30 2009 +0000
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.1.1.1 2008/10/16 21:53:57 adam Exp $
+# $NetBSD: Makefile,v 1.2 2009/01/24 12:57:30 adam Exp $
 
-DISTNAME=      gegl-0.0.20
+DISTNAME=      gegl-0.0.22
 CATEGORIES=    graphics
 MASTER_SITES=  ftp://ftp.gimp.org/pub/gegl/0.0/
 EXTRACT_SUFX=  .tar.bz2
diff -r ba2663a6a702 -r faa5b82a0bfd graphics/gegl/PLIST
--- a/graphics/gegl/PLIST       Sat Jan 24 12:41:25 2009 +0000
+++ b/graphics/gegl/PLIST       Sat Jan 24 12:57:30 2009 +0000
@@ -1,10 +1,12 @@
-@comment $NetBSD: PLIST,v 1.1.1.1 2008/10/16 21:53:57 adam Exp $
+@comment $NetBSD: PLIST,v 1.2 2009/01/24 12:57:30 adam Exp $
 bin/gegl
 include/gegl-0.0/gegl-buffer.h
 include/gegl-0.0/gegl-chant.h
 include/gegl-0.0/gegl-color.h
 include/gegl-0.0/gegl-curve.h
+include/gegl-0.0/gegl-matrix.h
 include/gegl-0.0/gegl-paramspecs.h
+include/gegl-0.0/gegl-path.h
 include/gegl-0.0/gegl-plugin.h
 include/gegl-0.0/gegl-simd.h
 include/gegl-0.0/gegl-utils.h
@@ -50,7 +52,6 @@
 lib/gegl-0.0/dst.la
 lib/gegl-0.0/exclusion.la
 lib/gegl-0.0/exr-load.la
-lib/gegl-0.0/fill.la
 lib/gegl-0.0/fractal-explorer.la
 lib/gegl-0.0/gamma.la
 lib/gegl-0.0/gaussian-blur.la
@@ -75,6 +76,7 @@
 lib/gegl-0.0/open-buffer.la
 lib/gegl-0.0/over.la
 lib/gegl-0.0/overlay.la
+lib/gegl-0.0/path.la
 lib/gegl-0.0/pixbuf.la
 lib/gegl-0.0/plus.la
 lib/gegl-0.0/png-load.la
diff -r ba2663a6a702 -r faa5b82a0bfd graphics/gegl/distinfo
--- a/graphics/gegl/distinfo    Sat Jan 24 12:41:25 2009 +0000
+++ b/graphics/gegl/distinfo    Sat Jan 24 12:57:30 2009 +0000
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.1.1.1 2008/10/16 21:53:57 adam Exp $
+$NetBSD: distinfo,v 1.2 2009/01/24 12:57:30 adam Exp $
 
-SHA1 (gegl-0.0.20.tar.bz2) = 37be399b58d50a87134f2dfad389a476e1155874
-RMD160 (gegl-0.0.20.tar.bz2) = b4bc7169eafa4fea512f1190f1ad835d688c4080
-Size (gegl-0.0.20.tar.bz2) = 1224221 bytes
-SHA1 (patch-aa) = 71f4d05fda7d9c1d3afe2e54b9fcccbd86e51578
+SHA1 (gegl-0.0.22.tar.bz2) = de684d4c8d9eaa9b7e283c55c5f779e5bdabee78
+RMD160 (gegl-0.0.22.tar.bz2) = 5090297c6249a53e3731ecf4b8d3eeeb26768c39
+Size (gegl-0.0.22.tar.bz2) = 1255087 bytes
+SHA1 (patch-aa) = 5eeefaaa80a93eefd73dba81eff88652e5213167
diff -r ba2663a6a702 -r faa5b82a0bfd graphics/gegl/patches/patch-aa
--- a/graphics/gegl/patches/patch-aa    Sat Jan 24 12:41:25 2009 +0000
+++ b/graphics/gegl/patches/patch-aa    Sat Jan 24 12:57:30 2009 +0000
@@ -1,22 +1,12 @@
-$NetBSD: patch-aa,v 1.1.1.1 2008/10/16 21:53:57 adam Exp $
+$NetBSD: patch-aa,v 1.2 2009/01/24 12:57:30 adam Exp $
 
---- configure.orig     2008-10-05 09:52:36.000000000 +0200
-+++ configure
-@@ -21300,7 +21300,7 @@ fi
- 
- 
+--- gegl/gegl-init.c.orig      2009-01-22 20:26:07.000000000 +0100
++++ gegl/gegl-init.c
+@@ -50,6 +50,7 @@ pid_is_running (gint pid)
  
--if test "x$enable_docs" == "xyes"; then
-+if test "x$enable_docs" = "xyes"; then
-   ENABLE_DOCS_TRUE=
-   ENABLE_DOCS_FALSE='#'
- else
-@@ -24801,7 +24801,7 @@ fi
+ #include <sys/types.h>
+ #include <signal.h>
++#include <locale.h>
  
- 
- 
--if test "x$enable_workshop" == "xyes"; then
-+if test "x$enable_workshop" = "xyes"; then
-   ENABLE_WORKSHOP_TRUE=
-   ENABLE_WORKSHOP_FALSE='#'
- else
+ static inline gboolean
+ pid_is_running (gint pid)



Home | Main Index | Thread Index | Old Index