diff options
author | Jonathan Scruggs <j.scruggs@gmail.com> | 2018-08-23 18:01:29 +0100 |
---|---|---|
committer | Sebastian Pipping <sping@gentoo.org> | 2018-08-25 19:06:38 +0200 |
commit | 5c395b0a4a5164a2d7f046b7de9b7db53ae25a3a (patch) | |
tree | 601f79066a23f8726e73f794186ba40a627d698d /media-libs/gegl/files | |
parent | games-util/antimicro: Drop broken 2.20.2 (diff) | |
download | gentoo-5c395b0a4a5164a2d7f046b7de9b7db53ae25a3a.tar.gz gentoo-5c395b0a4a5164a2d7f046b7de9b7db53ae25a3a.tar.bz2 gentoo-5c395b0a4a5164a2d7f046b7de9b7db53ae25a3a.zip |
media-libs/gegl: version bump to 0.4.8
-0.4.x series is hardcoded to work with OpenEXR v2.2
--v0.4.6: Depend only on OpenEXR 2.2.x
--v0.4.8: Made OpenEXR 2.2 the minimum version
--v0.4.8: Added patch to remove hard-coded Imath_2_2 namespace
---Patch in upstream master
-Removed unused versionator eclass
-Synced 0.4.8 and 9999 ebuilds
Diffstat (limited to 'media-libs/gegl/files')
-rw-r--r-- | media-libs/gegl/files/gegl-0.4.8-remove-imath-version.patch | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/media-libs/gegl/files/gegl-0.4.8-remove-imath-version.patch b/media-libs/gegl/files/gegl-0.4.8-remove-imath-version.patch new file mode 100644 index 000000000000..54ee791a68ec --- /dev/null +++ b/media-libs/gegl/files/gegl-0.4.8-remove-imath-version.patch @@ -0,0 +1,33 @@ +diff -urN a/operations/external/exr-save.cc b/operations/external/exr-save.cc +--- a/operations/external/exr-save.cc 2018-07-11 23:15:19.000000000 +0100 ++++ b/operations/external/exr-save.cc 2018-08-22 19:13:26.241432231 +0100 +@@ -145,10 +145,10 @@ + &blue[0], &blue[1], + NULL, NULL, NULL); + { +- Imf::Chromaticities c1 (Imath_2_2::V2f(red[0],red[1]), +- Imath_2_2::V2f(green[0],green[1]), +- Imath_2_2::V2f(blue[0],blue[1]), +- Imath_2_2::V2f(wp[0],wp[1])); ++ Imf::Chromaticities c1 (Imath::V2f(red[0],red[1]), ++ Imath::V2f(green[0],green[1]), ++ Imath::V2f(blue[0],blue[1]), ++ Imath::V2f(wp[0],wp[1])); + Imf::addChromaticities (header, c1); + } + } +@@ -184,10 +184,10 @@ + &green[0], &green[1], + &blue[0], &blue[1], + NULL, NULL, NULL); +- Imf::Chromaticities c1 (Imath_2_2::V2f(red[0],red[1]), +- Imath_2_2::V2f(green[0],green[1]), +- Imath_2_2::V2f(blue[0],blue[1]), +- Imath_2_2::V2f(wp[0],wp[1])); ++ Imf::Chromaticities c1 (Imath::V2f(red[0],red[1]), ++ Imath::V2f(green[0],green[1]), ++ Imath::V2f(blue[0],blue[1]), ++ Imath::V2f(wp[0],wp[1])); + Imf::addChromaticities (header, c1); + } + |