diff -Nru opencolorio-1.0.9~dfsg0/.appveyor.yml opencolorio-1.1.0~dfsg0/.appveyor.yml --- opencolorio-1.0.9~dfsg0/.appveyor.yml 1970-01-01 00:00:00.000000000 +0000 +++ opencolorio-1.1.0~dfsg0/.appveyor.yml 2018-01-05 01:38:27.000000000 +0000 @@ -0,0 +1,37 @@ +version: '{branch}-{build}' +image: Visual Studio 2013 +clone_folder: C:\source\ocio +test: auto +configuration: + - Release +platform: + - x64 + +environment: + global: + CMAKE_PREFIX_PATH: C:/Libraries/boost + BOOST_ROOT: 'C:\Libraries\boost' + matrix: + - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2013 + CMAKE_PLATFORM: "Visual Studio 12 2013 Win64" + - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015 + CMAKE_PLATFORM: "Visual Studio 14 2015 Win64" + +install: + - cinstall: python + +build_script: + - echo Running cmake... + - mkdir _build + - cd _build + - cmake + -G "%CMAKE_PLATFORM%" + -DCMAKE_INSTALL_PREFIX=..\_install + -DOCIO_USE_BOOST_PTR=ON + -DCMAKE_BUILD_TYPE=%CONFIGURATION% + .. + - cmake --build . --target install --config %CONFIGURATION% + - cmake --build . --target MainTests --config %CONFIGURATION% + +matrix: + fast_finish: true diff -Nru opencolorio-1.0.9~dfsg0/ChangeLog opencolorio-1.1.0~dfsg0/ChangeLog --- opencolorio-1.0.9~dfsg0/ChangeLog 2013-10-08 22:59:34.000000000 +0000 +++ opencolorio-1.1.0~dfsg0/ChangeLog 2018-01-05 01:38:27.000000000 +0000 @@ -1,3 +1,27 @@ +**Version 1.1.0 (Jan 5 2018):** + * libc++ build fixes + * Added support for YAML > 5.0.1 + * YAML and TinyXML patch fixes + * Clang visibility fix + * Added write support for Truelight LUTs + * Improved OCIOYaml + * Python string corruption fix + * Added support for CDL + * Updated documentation + * Added args/kwargs support to Python MatrixTransform + * Added description field to Look objects + * Improved Python 3 compatibility + * CSP file read fix + * Added Linux, MacOS, and Windows continuos integration + * Improved 1D LUT extrapolation + * Improved 1D LUT negative handling + * Improved Windows build system + * Improved cross-platform build system + * Undefined role crash fix + * After Effects plugin updated + * Added reference Photoshop plugin + * Added reference Docker image + **Version 1.0.9 (Sep 2 2013):** * CDL cccid supports both named id and index lookups * ociobakelut / ocioconvert updates diff -Nru opencolorio-1.0.9~dfsg0/CMakeLists.txt opencolorio-1.1.0~dfsg0/CMakeLists.txt --- opencolorio-1.0.9~dfsg0/CMakeLists.txt 2013-10-08 22:59:34.000000000 +0000 +++ opencolorio-1.1.0~dfsg0/CMakeLists.txt 2018-01-05 01:38:27.000000000 +0000 @@ -1,7 +1,7 @@ project(OpenColorIO) set(OCIO_VERSION_MAJOR 1) -set(OCIO_VERSION_MINOR 0) -set(OCIO_VERSION_PATCH 9) +set(OCIO_VERSION_MINOR 1) +set(OCIO_VERSION_PATCH 0) cmake_minimum_required(VERSION 2.8) set(CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/share/cmake) @@ -12,18 +12,20 @@ ############################################################################### ### GLOBAL ### +set_property(GLOBAL PROPERTY USE_FOLDERS ON) option(OCIO_BUILD_SHARED "Set to OFF to disable building the shared core library" ON) option(OCIO_BUILD_STATIC "Set to OFF to disable building the static core library" ON) option(OCIO_BUILD_TRUELIGHT "Set to OFF to disable truelight" ON) option(OCIO_BUILD_APPS "Set to OFF to disable command-line apps" ON) option(OCIO_BUILD_NUKE "Set to OFF to disable building nuke plugins" ON) -option(OCIO_BUILD_DOCS "Specify whether to build documentation" OFF) -option(OCIO_BUILD_TESTS "Specify whether to build unittests" OFF) +option(OCIO_BUILD_DOCS "Specify whether to build documentation" UNIX) +option(OCIO_BUILD_TESTS "Specify whether to build unittests" ON) option(OCIO_BUILD_PYGLUE "Specify whether to build python bindings" ON) option(OCIO_BUILD_JNIGLUE "Specify whether to build java bindings" OFF) option(OCIO_STATIC_JNIGLUE "Specify whether to statically link ocio to the java bindings" ON) option(OCIO_USE_SSE "Specify whether to enable SSE CPU performance optimizations" ON) +option(OCIO_INLINES_HIDDEN "Specify whether to build with -fvisibility-inlines-hidden" UNIX) # Use boost's shared_ptr by default on Windows (as