Accepting request 498853 from graphics

- update to 2.2.5
  - New features:
    - When appending EXIF data to an exported image, do not fail if reading of EXIF from the original file fails
    - Support XYZ as proofing profile
    - Clear DerivedFrom from XMP before writing it
    - bauhaus: when using soft bounds, keep slider step constant
  - Bugfixes:
    - Some GCC7 build fixes
    - cmstest: fix crash when missing XRandR extension.
    - Fix crash in Lua libs when collapsing libs
    - Mac packaging: some fixes
    - RawSpeed: TiffIFD: avoid double-free
    - Fix a few alloc-dealloc mismatches
  - Base Support:
    - Canon EOS 77D
    - Canon EOS 9000D
    - Nikon D500 (14bit-uncompressed, 12bit-uncompressed)
    - Nikon D5600 (12bit-compressed, 12bit-uncompressed, 14bit-compressed, 14bit-uncompressed)
    - Panasonic DC-FZ82 (4:3)
    - Panasonic DMC-FZ80 (4:3)
    - Panasonic DMC-FZ85 (4:3)
    - Panasonic DC-GH5 (4:3)
  - White Balance Presets:
    - Pentax K-3 II
  - Noise Profiles:
    - Nikon D500
    - Panasonic DMC-FZ300
    - Panasonic DMC-LX100
    - Pentax K-70
    - Sony ILCE-5000
- refreshed darktable-old-glib.patch

OBS-URL: https://build.opensuse.org/request/show/498853
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/darktable?expand=0&rev=69
This commit is contained in:
Dominique Leuenberger 2017-05-31 10:18:43 +00:00 committed by Git OBS Bridge
parent d9f69b0e26
commit 1a871097d6
5 changed files with 44 additions and 24 deletions

View File

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

3
darktable-2.2.5.tar.xz Normal file
View File

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

View File

@ -1,8 +1,8 @@
Index: darktable-2.0.2/src/common/exif.cc
Index: darktable-2.2.5/src/common/exif.cc
===================================================================
--- darktable-2.0.2.orig/src/common/exif.cc
+++ darktable-2.0.2/src/common/exif.cc
@@ -78,6 +78,13 @@ const char *dt_xmp_keys[]
--- darktable-2.2.5.orig/src/common/exif.cc
+++ darktable-2.2.5/src/common/exif.cc
@@ -82,6 +82,13 @@ const char *dt_xmp_keys[]
static const guint dt_xmp_keys_n = G_N_ELEMENTS(dt_xmp_keys); // the number of XmpBag XmpSeq keys that dt uses
@ -16,7 +16,7 @@ Index: darktable-2.0.2/src/common/exif.cc
/* a few helper functions inspired by
https://projects.kde.org/projects/kde/kdegraphics/libs/libkexiv2/repository/revisions/master/entry/libkexiv2/kexiv2gps.cpp
@@ -1291,7 +1298,11 @@ int dt_exif_read_blob(uint8_t *buf, cons
@@ -1356,7 +1363,11 @@ int dt_exif_read_blob(uint8_t **buf, con
if(res != NULL)
{
char *desc = (char *)res->data;
@ -28,18 +28,3 @@ Index: darktable-2.0.2/src/common/exif.cc
exifData["Exif.Image.ImageDescription"] = desc;
else
exifData["Exif.Photo.UserComment"] = desc;
# Index: darktable-2.0.2/cmake/modules/FindGTK3.cmake
# ===================================================================
# --- darktable-2.0.2.orig/cmake/modules/FindGTK3.cmake
# +++ darktable-2.0.2/cmake/modules/FindGTK3.cmake
# @@ -84,8 +84,8 @@ find_library(GDKPIXBUF_LIBRARY NAMES gdk
# # Glib
#
# # NOTE: must be one of the macros listed in https://developer.gnome.org/glib/stable/glib-Version-Information.html
# -find_package(Glib REQUIRED 2.40)
# -set(GTK3_DEFINITIONS ${GTK3_DEFINITIONS} "-DGLIB_VERSION_MIN_REQUIRED=GLIB_VERSION_2_40")
# +find_package(Glib REQUIRED 2.32)
# +set(GTK3_DEFINITIONS ${GTK3_DEFINITIONS} "-DGLIB_VERSION_MIN_REQUIRED=GLIB_VERSION_2_32")
# set(GTK3_DEFINITIONS ${GTK3_DEFINITIONS} "-DGLIB_VERSION_MAX_ALLOWED=GLIB_VERSION_MIN_REQUIRED")
#
# if(NOT Glib_FOUND)

View File

@ -1,3 +1,38 @@
-------------------------------------------------------------------
Sun May 28 14:54:24 UTC 2017 - mrueckert@suse.de
- update to 2.2.5
- New features:
- When appending EXIF data to an exported image, do not fail if reading of EXIF from the original file fails
- Support XYZ as proofing profile
- Clear DerivedFrom from XMP before writing it
- bauhaus: when using soft bounds, keep slider step constant
- Bugfixes:
- Some GCC7 build fixes
- cmstest: fix crash when missing XRandR extension.
- Fix crash in Lua libs when collapsing libs
- Mac packaging: some fixes
- RawSpeed: TiffIFD: avoid double-free
- Fix a few alloc-dealloc mismatches
- Base Support:
- Canon EOS 77D
- Canon EOS 9000D
- Nikon D500 (14bit-uncompressed, 12bit-uncompressed)
- Nikon D5600 (12bit-compressed, 12bit-uncompressed, 14bit-compressed, 14bit-uncompressed)
- Panasonic DC-FZ82 (4:3)
- Panasonic DMC-FZ80 (4:3)
- Panasonic DMC-FZ85 (4:3)
- Panasonic DC-GH5 (4:3)
- White Balance Presets:
- Pentax K-3 II
- Noise Profiles:
- Nikon D500
- Panasonic DMC-FZ300
- Panasonic DMC-LX100
- Pentax K-70
- Sony ILCE-5000
- refreshed darktable-old-glib.patch
-------------------------------------------------------------------
Thu Apr 27 09:36:50 UTC 2017 - davejplater@gmail.com

View File

@ -47,7 +47,7 @@
%define cmake_options -DCMAKE_SKIP_RPATH:BOOL=OFF -DCMAKE_BUILD_TYPE=RelWithDebInfo -DBINARY_PACKAGE_BUILD=1 -DCMAKE_INSTALL_DATAROOTDIR="share" -DCMAKE_INSTALL_LIBDIR="%{_lib}"
Name: darktable
Version: 2.2.4
Version: 2.2.5
Release: 0
Url: http://www.darktable.org/
Source0: %{name}-%{version}.tar.xz