diff -Nru k3d-0.8.0.4/CMakeLists.txt k3d-0.8.0.5/CMakeLists.txt --- k3d-0.8.0.4/CMakeLists.txt 2015-02-06 15:52:54.000000000 +0000 +++ k3d-0.8.0.5/CMakeLists.txt 2015-11-07 13:00:59.000000000 +0000 @@ -1,12 +1,15 @@ PROJECT(k3d) # Configure CMake ... -CMAKE_MINIMUM_REQUIRED(VERSION 2.8.1 FATAL_ERROR) +CMAKE_MINIMUM_REQUIRED(VERSION 3.1 FATAL_ERROR) CMAKE_POLICY(SET CMP0003 OLD) IF(${CMAKE_MAJOR_VERSION} GREATER 3 OR ${CMAKE_MAJOR_VERSION} EQUAL 3) CMAKE_POLICY(SET CMP0026 OLD) ENDIF() +set(CMAKE_CXX_STANDARD 11) + + SET(CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake/modules") SET(CMAKE_INSTALL_NAME_DIR "@exectuable_path/../lib/") diff -Nru k3d-0.8.0.4/debian/changelog k3d-0.8.0.5/debian/changelog --- k3d-0.8.0.4/debian/changelog 2015-11-12 04:13:49.000000000 +0000 +++ k3d-0.8.0.5/debian/changelog 2015-11-18 14:24:50.000000000 +0000 @@ -1,8 +1,10 @@ -k3d (0.8.0.4-1build1) xenial; urgency=medium +k3d (0.8.0.5-1) unstable; urgency=low - * No-change rebuild against libglewmx1.13 + * New upstream release + * Drop patches for fixes now handled upstream: + - fix-ftbfs.patch - -- Steve Langasek Thu, 12 Nov 2015 04:13:49 +0000 + -- Manuel A. Fernandez Montecelo Wed, 18 Nov 2015 14:24:43 +0000 k3d (0.8.0.4-1) unstable; urgency=low diff -Nru k3d-0.8.0.4/debian/control k3d-0.8.0.5/debian/control --- k3d-0.8.0.4/debian/control 2015-11-12 04:13:49.000000000 +0000 +++ k3d-0.8.0.5/debian/control 2015-11-01 11:01:13.000000000 +0000 @@ -2,8 +2,7 @@ Section: graphics Priority: extra Standards-Version: 3.9.6 -Maintainer: Ubuntu Developers -XSBC-Original-Maintainer: Manuel A. Fernandez Montecelo +Maintainer: Manuel A. Fernandez Montecelo Homepage: http://www.k-3d.org/ Vcs-Browser: http://anonscm.debian.org/gitweb/?p=collab-maint/k3d.git Vcs-Git: git://anonscm.debian.org/collab-maint/k3d.git diff -Nru k3d-0.8.0.4/debian/patches/fix-ftbfs.patch k3d-0.8.0.5/debian/patches/fix-ftbfs.patch --- k3d-0.8.0.4/debian/patches/fix-ftbfs.patch 2015-11-01 00:22:16.000000000 +0000 +++ k3d-0.8.0.5/debian/patches/fix-ftbfs.patch 1970-01-01 00:00:00.000000000 +0000 @@ -1,11 +0,0 @@ ---- a/k3dsdk/pipeline_data.h -+++ b/k3dsdk/pipeline_data.h -@@ -140,7 +140,7 @@ - - operator bool() const - { -- return storage; -+ return !!storage; - } - - bool operator!() const diff -Nru k3d-0.8.0.4/debian/patches/series k3d-0.8.0.5/debian/patches/series --- k3d-0.8.0.4/debian/patches/series 2015-11-01 00:22:58.000000000 +0000 +++ k3d-0.8.0.5/debian/patches/series 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -fix-ftbfs.patch diff -Nru k3d-0.8.0.4/k3dsdk/pipeline_data.h k3d-0.8.0.5/k3dsdk/pipeline_data.h --- k3d-0.8.0.4/k3dsdk/pipeline_data.h 2015-02-06 15:52:54.000000000 +0000 +++ k3d-0.8.0.5/k3dsdk/pipeline_data.h 2015-11-07 13:00:59.000000000 +0000 @@ -140,7 +140,7 @@ operator bool() const { - return storage; + return static_cast(storage); } bool operator!() const @@ -168,4 +168,3 @@ } // namespace k3d #endif // !K3DSDK_PIPELINE_DATA_H -