Accepting request 923579 from graphics
OBS-URL: https://build.opensuse.org/request/show/923579 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/gegl?expand=0&rev=61
This commit is contained in:
commit
74208cba33
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:c112782cf4096969e23217ccdfabe42284e35d5435ff0c43d40e4c70faeca8dd
|
||||
size 5398052
|
3
gegl-0.4.32.tar.xz
Normal file
3
gegl-0.4.32.tar.xz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:668e3c6b9faf75fb00512701c36274ab6f22a8ba05ec62dbf187d34b8d298fa1
|
||||
size 5633796
|
@ -1,24 +0,0 @@
|
||||
Index: gegl-0.4.30/operations/external/exr-load.cpp
|
||||
===================================================================
|
||||
--- gegl-0.4.30.orig/operations/external/exr-load.cpp 2021-03-27 20:13:57.953967000 +0100
|
||||
+++ gegl-0.4.30/operations/external/exr-load.cpp 2021-04-14 12:59:45.356157579 +0200
|
||||
@@ -31,6 +31,7 @@ property_file_path (path, "File", "")
|
||||
|
||||
#include "gegl-op.h"
|
||||
|
||||
+#include <ImfFrameBuffer.h>
|
||||
#include <ImfInputFile.h>
|
||||
#include <ImfChannelList.h>
|
||||
#include <ImfRgbaFile.h>
|
||||
Index: gegl-0.4.30/operations/external/exr-save.cc
|
||||
===================================================================
|
||||
--- gegl-0.4.30.orig/operations/external/exr-save.cc 2021-03-27 20:13:57.953967000 +0100
|
||||
+++ gegl-0.4.30/operations/external/exr-save.cc 2021-04-14 13:00:22.140377503 +0200
|
||||
@@ -39,6 +39,7 @@ extern "C" {
|
||||
} /* extern "C" */
|
||||
|
||||
#include <exception>
|
||||
+#include <ImfFrameBuffer.h>
|
||||
#include <ImfTiledOutputFile.h>
|
||||
#include <ImfOutputFile.h>
|
||||
#include <ImfChannelList.h>
|
30
gegl.changes
30
gegl.changes
@ -1,9 +1,39 @@
|
||||
-------------------------------------------------------------------
|
||||
Sun Oct 3 17:37:22 UTC 2021 - Marcus Rueckert <mrueckert@suse.de>
|
||||
|
||||
- disable docs until the upstream bug is solved
|
||||
https://gitlab.gnome.org/GNOME/gegl/-/issues/294#note_1281553
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Sep 30 14:28:08 UTC 2021 - Michael Gorse <mgorse@suse.com>
|
||||
|
||||
- Also disable luajit on ppc64le and s390x. Package is
|
||||
unavailable.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Sep 18 22:50:48 UTC 2021 - Marcus Rueckert <mrueckert@suse.de>
|
||||
|
||||
- Update to version 0.4.32:
|
||||
- Docs/testing:
|
||||
- Fixes and improvements to the test system ands it integration
|
||||
for comparing/keeping track of hashes of operation output by
|
||||
John Marshall including and overhaul of reference
|
||||
compositions and hashes, improving development as well as
|
||||
documentation.
|
||||
- Operations:
|
||||
- distance-transform:
|
||||
- openexr: fix build with newer OpenEXR 3
|
||||
- negative-darkroom: contrast boost and illuminant adjustment
|
||||
parameter, reworked emulsion dye model, UI improvements,
|
||||
more black and white paper presets.
|
||||
- fill-path: 32bit float RGB and CMYK color processing, using
|
||||
ctx as renderer.
|
||||
- Core:
|
||||
- Fixing of leaks and dead code removal in json op handling,
|
||||
branch hints in buffer tile handling.
|
||||
- drop patch gegl-openexr3.patch:
|
||||
Fix upstream
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Apr 14 11:44:17 UTC 2021 - pgajdos@suse.com
|
||||
|
||||
|
14
gegl.spec
14
gegl.spec
@ -22,8 +22,10 @@
|
||||
%bcond_without luajit
|
||||
%endif
|
||||
|
||||
%bcond_with gegl_docs
|
||||
|
||||
Name: gegl
|
||||
Version: 0.4.30
|
||||
Version: 0.4.32
|
||||
Release: 0
|
||||
Summary: Generic Graphics Library
|
||||
License: GPL-3.0-or-later AND LGPL-3.0-or-later
|
||||
@ -31,8 +33,6 @@ Group: Productivity/Graphics/Other
|
||||
URL: http://gegl.org/
|
||||
Source0: https://download.gimp.org/pub/gegl/0.4/%{name}-%{version}.tar.xz
|
||||
Source99: baselibs.conf
|
||||
# https://gitlab.gnome.org/GNOME/gegl/-/issues/284
|
||||
Patch0: gegl-openexr3.patch
|
||||
BuildRequires: ImageMagick
|
||||
BuildRequires: asciidoc
|
||||
BuildRequires: gcc-c++
|
||||
@ -168,7 +168,11 @@ export LD_PRELOAD="/usr/lib64/libgomp.so.1"
|
||||
%endif
|
||||
-Dworkshop=true \
|
||||
-Djasper=disabled \
|
||||
%if %{with gegl_docs}
|
||||
-Ddocs=true \
|
||||
%else
|
||||
-Ddocs=false \
|
||||
%endif
|
||||
%{nil}
|
||||
%meson_build
|
||||
|
||||
@ -220,8 +224,10 @@ find %{buildroot} -type f -name "*.la" -delete -print
|
||||
%{_datadir}/vala/vapi/gegl-0.4.vapi
|
||||
|
||||
%files doc
|
||||
%doc AUTHORS docs/ChangeLog docs/NEWS.txt
|
||||
%doc AUTHORS docs/ChangeLog NEWS
|
||||
%if %{with gegl_docs}
|
||||
%doc %{_datadir}/gtk-doc/html/gegl/
|
||||
%endif
|
||||
|
||||
%files -n %{name}-0_4-lang -f %{name}-0.4.lang
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user