diff -Nru opencamlib-11.10-2/debian/changelog opencamlib-11.10-2/debian/changelog --- opencamlib-11.10-2/debian/changelog 2020-07-20 19:01:55.000000000 +0000 +++ opencamlib-11.10-2/debian/changelog 2020-09-17 08:02:03.000000000 +0000 @@ -1,8 +1,8 @@ -opencamlib (11.10-2-1+git202007201542~ubuntu20.04.1) focal; urgency=low +opencamlib (11.10-2-1+git202009170544~ubuntu20.04.1) focal; urgency=low * Auto build. - -- neomilium Mon, 20 Jul 2020 19:01:55 +0000 + -- neomilium Thu, 17 Sep 2020 08:02:03 +0000 opencamlib (11.10-2) unstable; urgency=low diff -Nru opencamlib-11.10-2/debian/git-build-recipe.manifest opencamlib-11.10-2/debian/git-build-recipe.manifest --- opencamlib-11.10-2/debian/git-build-recipe.manifest 2020-07-20 19:01:55.000000000 +0000 +++ opencamlib-11.10-2/debian/git-build-recipe.manifest 2020-09-17 08:02:03.000000000 +0000 @@ -1,3 +1,3 @@ -# git-build-recipe format 0.4 deb-version {debversion}-1+git202007201542 -lp:opencamlib git-commit:d8bee38ccd9e4468937e320df2a46285e5088c36 +# git-build-recipe format 0.4 deb-version {debversion}-1+git202009170544 +lp:opencamlib git-commit:0cbeaa32c682a62b399e9903c8bcd32ca3ac2afd nest packaging lp:~neomilium/opencamlib/+git/packaging debian git-commit:f950d73fd8725874505c0d3271cfef12057a6401 diff -Nru opencamlib-11.10-2/.pc/002-Fix-Python-Site-Packages-Path/src/pythonlib/pythonlib.cmake opencamlib-11.10-2/.pc/002-Fix-Python-Site-Packages-Path/src/pythonlib/pythonlib.cmake --- opencamlib-11.10-2/.pc/002-Fix-Python-Site-Packages-Path/src/pythonlib/pythonlib.cmake 2020-07-20 19:01:55.000000000 +0000 +++ opencamlib-11.10-2/.pc/002-Fix-Python-Site-Packages-Path/src/pythonlib/pythonlib.cmake 2020-09-17 08:02:03.000000000 +0000 @@ -132,6 +132,18 @@ # set_target_properties(ocl PROPERTIES VERSION ${MY_VERSION}) # endif (WIN32) +if (APPLE AND NOT CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT) +install( + TARGETS ocl + LIBRARY DESTINATION lib/python${Python3_VERSION_MAJOR}.${Python3_VERSION_MINOR}/site-packages/ocl +) +# these are the python helper lib-files such as camvtk.py +install( + DIRECTORY lib/ + DESTINATION lib/python${Python3_VERSION_MAJOR}.${Python3_VERSION_MINOR}/site-packages/ocl + # PATTERN .svn EXCLUDE +) +else() install( TARGETS ocl LIBRARY DESTINATION ${PYTHON_ARCH_PACKAGES} @@ -142,3 +154,4 @@ DESTINATION ${PYTHON_SITE_PACKAGES} # PATTERN .svn EXCLUDE ) +endif() diff -Nru opencamlib-11.10-2/.pc/.quilt_patches opencamlib-11.10-2/.pc/.quilt_patches --- opencamlib-11.10-2/.pc/.quilt_patches 2020-07-20 19:01:55.000000000 +0000 +++ opencamlib-11.10-2/.pc/.quilt_patches 2020-09-17 08:02:03.000000000 +0000 @@ -1 +1 @@ -/home/buildd/build-RECIPEBRANCHBUILD-2611462/chroot-autobuild/home/buildd/work/tree/recipe/debian/patches +/home/buildd/build-RECIPEBRANCHBUILD-2646491/chroot-autobuild/home/buildd/work/tree/recipe/debian/patches diff -Nru opencamlib-11.10-2/.pc/.quilt_series opencamlib-11.10-2/.pc/.quilt_series --- opencamlib-11.10-2/.pc/.quilt_series 2020-07-20 19:01:55.000000000 +0000 +++ opencamlib-11.10-2/.pc/.quilt_series 2020-09-17 08:02:03.000000000 +0000 @@ -1 +1 @@ -/home/buildd/build-RECIPEBRANCHBUILD-2611462/chroot-autobuild/home/buildd/work/tree/recipe/debian/patches/series +/home/buildd/build-RECIPEBRANCHBUILD-2646491/chroot-autobuild/home/buildd/work/tree/recipe/debian/patches/series diff -Nru opencamlib-11.10-2/src/pythonlib/pythonlib.cmake opencamlib-11.10-2/src/pythonlib/pythonlib.cmake --- opencamlib-11.10-2/src/pythonlib/pythonlib.cmake 2020-07-20 19:01:55.000000000 +0000 +++ opencamlib-11.10-2/src/pythonlib/pythonlib.cmake 2020-09-17 08:02:03.000000000 +0000 @@ -132,6 +132,18 @@ # set_target_properties(ocl PROPERTIES VERSION ${MY_VERSION}) # endif (WIN32) +if (APPLE AND NOT CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT) +install( + TARGETS ocl + LIBRARY DESTINATION lib/python${Python3_VERSION_MAJOR}.${Python3_VERSION_MINOR}/site-packages/ocl +) +# these are the python helper lib-files such as camvtk.py +install( + DIRECTORY lib/ + DESTINATION lib/python${Python3_VERSION_MAJOR}.${Python3_VERSION_MINOR}/site-packages/ocl + # PATTERN .svn EXCLUDE +) +else() install( TARGETS ocl LIBRARY DESTINATION ${PYTHON_ARCH_PACKAGES} @@ -142,3 +154,4 @@ DESTINATION ${PYTHON_SITE_PACKAGES} # PATTERN .svn EXCLUDE ) +endif()