OBS User unknown 2009-02-06 22:39:50 +00:00 committed by Git OBS Bridge
parent 59b806de2a
commit 8fb8ef16b3
4 changed files with 71 additions and 36 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:708bb6afef9dc896caeaa618238bd67dd8548be5b774ce3c67664b716b550db7
size 1224221

3
gegl-0.0.22.tar.bz2 Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:857233c84fe4a215466582eeeac3e719059f2d467f700a9f6885c35f55caa65b
size 1255087

View File

@ -1,26 +1,44 @@
-------------------------------------------------------------------
Mon Nov 3 12:26:50 CET 2008 - sbrabec@suse.cz
Wed Dec 31 16:29:21 EST 2008 - hfiguiere@suse.de
- Updated to version 0.0.20:
* Build and code cleanups and fixes.
* RAW loader using libopenraw.
* GeglBuffer
* Linear buffer support, amongst other things enabling
GeglBuffer API access to external linear buffers in memory.
* Reworked samplers using a shared caching neighbourhood
infrastructure.
* YAFR - a new resampler.
* GeglVector
* Added SVG parsing capability (no serialisation yet).
* GeglOperations
* Marked user visible strings for translation.
* Added a fill operation that renders a path.
- Update to 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. (bgo#507298)
* GeglPath: Vector path representation infrastructure,
- Remove gegl-64bit-warning.diff
-------------------------------------------------------------------
Sun Oct 5 23:49:54 EDT 2008 - hfiguiere@suse.de
- Update to 0.0.20
* libopenraw support
* Linear buffer support, amongst other things enabling GeglBuffer API access
to external linear buffers in memory.
* Reworked samplers using a shared caching neighbourhood infrastructure.
* YAFR - a new resampler contributed by Nicolas Robidoux.
* Marked user visible strings for translation.
* Added a fill operation (might be a bit fragile) that allows rendering
SVG like paths backed by a GeglVector.
- Remove gegl-strict-compile-fix.diff
- Added gegl-64bit-warning.diff
* Address a fatal warning on 64bits
-------------------------------------------------------------------
Wed Oct 1 12:49:31 EDT 2008 - hfiguiere@suse.de
- Add patch gegl-strict-compile-fix.diff:
*Fix header for stricter compilation
- enable workshop at compile time
-------------------------------------------------------------------
Mon Sep 29 17:49:46 CEST 2008 - sbrabec@suse.cz

View File

@ -1,7 +1,7 @@
#
# spec file for package gegl (Version 0.0.20)
# spec file for package gegl (Version 0.0.22)
#
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@ -22,9 +22,11 @@ Name: gegl
# Patched code is built by default.
# Use rpmbuild -D 'BUILD_ORIG 1' to build original code.
# Use rpmbuild -D 'BUILD_ORIG 1' -D 'BUILD_ORIG_ADDON 1' to build patched build plus original as addon.
BuildRequires: ImageMagick OpenEXR-devel SDL-devel asciidoc babl-devel enscript gcc-c++ glib2-devel graphviz gtk2-devel libjpeg-devel libpng-devel librsvg-devel libstdc++-devel lua-devel ruby
BuildRequires: ImageMagick OpenEXR-devel SDL-devel asciidoc babl-devel enscript gcc-c++ graphviz gtk2-devel libjpeg-devel libpng-devel librsvg-devel libstdc++-devel lua-devel ruby
BuildRequires: glib2-devel >= 2.16.1
# To build documentation, babl-0_0 is a must, "Recommends" is not enough:
BuildRequires: babl-0_0
BuildRequires: libopenraw-devel >= 0.0.5
# Only for directory ownership:
BuildRequires: gtk-doc
%if 0%{?BUILD_ORIG}
@ -38,9 +40,8 @@ Obsoletes: %{name}-orig-addon
%else
Provides: patched_subset
%endif
Requires: glib2 >= 2.14.0
Url: http://gegl.org/
Version: 0.0.20
Version: 0.0.22
Release: 1
License: GPL v3 or later; LGPL v3 or later
Group: System/Libraries
@ -355,6 +356,7 @@ Authors:
%build
autoreconf -f -i
%configure\
--enable-workshop=yes\
--disable-static
make %{?jobs:-j%jobs}
@ -412,24 +414,39 @@ rm -rf $RPM_BUILD_ROOT
%{_datadir}/gtk-doc/html/gegl
%changelog
* Mon Nov 03 2008 sbrabec@suse.cz
- Updated to version 0.0.20:
* Build and code cleanups and fixes.
* RAW loader using libopenraw.
* Wed Dec 31 2008 hfiguiere@suse.de
- Update to 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
* Linear buffer support, amongst other things enabling
GeglBuffer API access to external linear buffers in memory.
* Reworked samplers using a shared caching neighbourhood
infrastructure.
* YAFR - a new resampler.
* GeglVector
* Added SVG parsing capability (no serialisation yet).
* GeglOperations
- 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. (bgo#507298)
* GeglPath: Vector path representation infrastructure,
- Remove gegl-64bit-warning.diff
* Sun Oct 05 2008 hfiguiere@suse.de
- Update to 0.0.20
* libopenraw support
* Linear buffer support, amongst other things enabling GeglBuffer API access
to external linear buffers in memory.
* Reworked samplers using a shared caching neighbourhood infrastructure.
* YAFR - a new resampler contributed by Nicolas Robidoux.
* Marked user visible strings for translation.
* Added a fill operation that renders a path.
* Added a fill operation (might be a bit fragile) that allows rendering
SVG like paths backed by a GeglVector.
- Remove gegl-strict-compile-fix.diff
- Added gegl-64bit-warning.diff
* Address a fatal warning on 64bits
* Wed Oct 01 2008 hfiguiere@suse.de
- Add patch gegl-strict-compile-fix.diff:
*Fix header for stricter compilation
- enable workshop at compile time
* Mon Sep 29 2008 sbrabec@suse.cz
- Fixed dependencies.
- Fixed permissions of documentation.