diff -Nru qcustomplot-1.3.1+dfsg1/debian/changelog qcustomplot-1.3.2+dfsg1/debian/changelog --- qcustomplot-1.3.1+dfsg1/debian/changelog 2015-05-24 18:51:32.000000000 +0000 +++ qcustomplot-1.3.2+dfsg1/debian/changelog 2016-01-13 09:49:40.000000000 +0000 @@ -1,3 +1,12 @@ +qcustomplot (1.3.2+dfsg1-1) unstable; urgency=medium + + * [38baad9] Add +dfsg-suffix to d/watch. + * [faf1882] Move cmake-files into usr/lib/cmake/QCustomplot. + * [730634b] Remove dbg-package. + * [6177ca7] Imported Upstream version 1.3.2+dfsg1 + + -- Anton Gladky Wed, 13 Jan 2016 10:49:40 +0100 + qcustomplot (1.3.1+dfsg1-1) unstable; urgency=medium * [6791430] Add d/watch file. diff -Nru qcustomplot-1.3.1+dfsg1/debian/control qcustomplot-1.3.2+dfsg1/debian/control --- qcustomplot-1.3.1+dfsg1/debian/control 2015-05-24 18:50:55.000000000 +0000 +++ qcustomplot-1.3.2+dfsg1/debian/control 2016-01-13 07:48:38.000000000 +0000 @@ -43,17 +43,3 @@ QCustomPlot plotting library focuses on making good looking, publication quality 2D plots, graphs and charts, as well as offering high performance for realtime visualization applications. - -Package: libqcustomplot1.3-dbg -Architecture: any -Multi-Arch: same -Section: debug -Priority: extra -Depends: libqcustomplot1.3 (= ${binary:Version}), - ${misc:Depends}, - ${shlibs:Depends} -Pre-Depends: ${misc:Pre-Depends} -Description: Qt C++ widget for plotting. Debugging symbols - QCustomPlot plotting library focuses on making good looking, publication - quality 2D plots, graphs and charts, as well as offering high performance for - realtime visualization applications. The package contains debugging symbols. diff -Nru qcustomplot-1.3.1+dfsg1/debian/libqcustomplot-dev.install qcustomplot-1.3.2+dfsg1/debian/libqcustomplot-dev.install --- qcustomplot-1.3.1+dfsg1/debian/libqcustomplot-dev.install 2014-04-03 19:14:11.000000000 +0000 +++ qcustomplot-1.3.2+dfsg1/debian/libqcustomplot-dev.install 2016-01-13 07:43:10.000000000 +0000 @@ -1,3 +1,3 @@ usr/include usr/lib/*/libqcustomplot.so -usr/share +usr/lib/*/cmake diff -Nru qcustomplot-1.3.1+dfsg1/debian/libqcustomplot-dev.links qcustomplot-1.3.2+dfsg1/debian/libqcustomplot-dev.links --- qcustomplot-1.3.1+dfsg1/debian/libqcustomplot-dev.links 2015-05-24 17:57:59.000000000 +0000 +++ qcustomplot-1.3.2+dfsg1/debian/libqcustomplot-dev.links 1970-01-01 00:00:00.000000000 +0000 @@ -1,2 +0,0 @@ -usr/share/cmake-2.8/Modules/FindQCustomPlot.cmake usr/share/cmake-3.0/Modules/FindQCustomPlot.cmake -usr/share/cmake-2.8/Modules/FindQCustomPlot.cmake usr/share/cmake-3.2/Modules/FindQCustomPlot.cmake diff -Nru qcustomplot-1.3.1+dfsg1/debian/patches/01_Add_CMakeLists.patch qcustomplot-1.3.2+dfsg1/debian/patches/01_Add_CMakeLists.patch --- qcustomplot-1.3.1+dfsg1/debian/patches/01_Add_CMakeLists.patch 2015-05-24 18:48:23.000000000 +0000 +++ qcustomplot-1.3.2+dfsg1/debian/patches/01_Add_CMakeLists.patch 2016-01-13 07:39:54.000000000 +0000 @@ -12,7 +12,7 @@ + +SET(Q_MAJOR_VERSION "1") +SET(Q_MINOR_VERSION "3") -+SET(Q_PATCH_VERSION "1") ++SET(Q_PATCH_VERSION "2") + +INCLUDE(GNUInstallDirs) +FIND_PACKAGE(Qt5Widgets REQUIRED) @@ -35,31 +35,7 @@ + +INSTALL(TARGETS qcustomplot DESTINATION "${CMAKE_INSTALL_LIBDIR}") +INSTALL(FILES qcustomplot.h DESTINATION "${CMAKE_INSTALL_INCLUDEDIR}") -+INSTALL(FILES cmake/FindQCustomPlot.cmake DESTINATION "/usr/share/cmake-2.8/Modules") -Index: qcustomplot/cmake/FindQCustomPlot.cmake -=================================================================== ---- /dev/null -+++ qcustomplot/cmake/FindQCustomPlot.cmake -@@ -0,0 +1,19 @@ -+# Try to find the QCustomPlot librairies -+# QCustomPlot_FOUND - system has QCustomPlot lib -+# QCustomPlot_INCLUDE_DIR - the GMP include directory -+# QCustomPlot_LIBRARIES - Libraries needed to use QCustomPlot -+ -+# Copyright (c) 2013, Anton Gladky -+# -+# Redistribution and use is allowed according to the terms of the GPL-3 license. -+ -+ -+IF (QCustomPlot_INCLUDE_DIR AND QCustomPlot_LIBRARIES) -+ SET(QCustomPlot_FIND_QUIETLY TRUE) -+ENDIF (QCustomPlot_INCLUDE_DIR AND QCustomPlot_LIBRARIES) -+ -+FIND_PATH(QCustomPlot_INCLUDE_DIR NAMES qcustomplot.h ) -+FIND_LIBRARY(QCustomPlot_LIBRARIES NAMES qcustomplot ) -+ -+include(FindPackageHandleStandardArgs) -+FIND_PACKAGE_HANDLE_STANDARD_ARGS(QCustomPlot DEFAULT_MSG QCustomPlot_INCLUDE_DIR QCustomPlot_LIBRARIES) ++INSTALL(FILES cmake/QCustomPlotConfig.cmake DESTINATION ${CMAKE_INSTALL_LIBDIR}/cmake/QCustomPlot) Index: qcustomplot/examples/interactions/CMakeLists.txt =================================================================== --- /dev/null @@ -160,3 +136,27 @@ + +TARGET_LINK_LIBRARIES(text ${Qt5Widgets_LIBRARIES} ${QCustomPlot_LIBRARIES} Qt5::PrintSupport) +INSTALL(TARGETS text DESTINATION ${CMAKE_INSTALL_BINDIR}) +Index: qcustomplot/cmake/QCustomPlotConfig.cmake +=================================================================== +--- /dev/null ++++ qcustomplot/cmake/QCustomPlotConfig.cmake +@@ -0,0 +1,19 @@ ++# Try to find the QCustomPlot librairies ++# QCustomPlot_FOUND - system has QCustomPlot lib ++# QCustomPlot_INCLUDE_DIR - the GMP include directory ++# QCustomPlot_LIBRARIES - Libraries needed to use QCustomPlot ++ ++# Copyright (c) 2013, Anton Gladky ++# ++# Redistribution and use is allowed according to the terms of the GPL-3 license. ++ ++ ++IF (QCustomPlot_INCLUDE_DIR AND QCustomPlot_LIBRARIES) ++ SET(QCustomPlot_FIND_QUIETLY TRUE) ++ENDIF (QCustomPlot_INCLUDE_DIR AND QCustomPlot_LIBRARIES) ++ ++FIND_PATH(QCustomPlot_INCLUDE_DIR NAMES qcustomplot.h ) ++FIND_LIBRARY(QCustomPlot_LIBRARIES NAMES qcustomplot ) ++ ++include(FindPackageHandleStandardArgs) ++FIND_PACKAGE_HANDLE_STANDARD_ARGS(QCustomPlot DEFAULT_MSG QCustomPlot_INCLUDE_DIR QCustomPlot_LIBRARIES) diff -Nru qcustomplot-1.3.1+dfsg1/debian/rules qcustomplot-1.3.2+dfsg1/debian/rules --- qcustomplot-1.3.1+dfsg1/debian/rules 2015-05-24 18:09:48.000000000 +0000 +++ qcustomplot-1.3.2+dfsg1/debian/rules 2016-01-13 07:48:53.000000000 +0000 @@ -2,6 +2,3 @@ %: dh $@ --parallel - -override_dh_strip: - dh_strip --dbg-package=libqcustomplot1.3-dbg diff -Nru qcustomplot-1.3.1+dfsg1/debian/watch qcustomplot-1.3.2+dfsg1/debian/watch --- qcustomplot-1.3.1+dfsg1/debian/watch 2015-05-23 20:56:25.000000000 +0000 +++ qcustomplot-1.3.2+dfsg1/debian/watch 2016-01-13 07:35:26.000000000 +0000 @@ -1,3 +1,3 @@ version=3 -opts=uversionmangle=s/(\d)[_\.\-\+]?((RC|rc|pre|dev|beta|alpha|b|a)\d*)$/$1~$2/,dversionmangle=s/\+(debian|dfsg|ds|deb)\d*$// \ +opts=repacksuffix=+dfsg1,uversionmangle=s/(\d)[_\.\-\+]?((RC|rc|pre|dev|beta|alpha|b|a)\d*)$/$1~$2/,dversionmangle=s/\+(debian|dfsg|ds|deb)\d*$// \ http://www.qcustomplot.com/index.php/download .*/(.+)/QCustomPlot.tar.gz