diff -Nru indi-astromechfoc-0.2~202207111005~ubuntu21.10.1/debian/changelog indi-astromechfoc-0.2~202207121042~ubuntu21.10.1/debian/changelog --- indi-astromechfoc-0.2~202207111005~ubuntu21.10.1/debian/changelog 2022-07-11 10:05:10.000000000 +0000 +++ indi-astromechfoc-0.2~202207121042~ubuntu21.10.1/debian/changelog 2022-07-12 10:42:31.000000000 +0000 @@ -1,8 +1,8 @@ -indi-astromechfoc (0.2~202207111005~ubuntu21.10.1) impish; urgency=low +indi-astromechfoc (0.2~202207121042~ubuntu21.10.1) impish; urgency=low * Auto build. - -- Jasem Mutlaq Mon, 11 Jul 2022 10:05:10 +0000 + -- Jasem Mutlaq Tue, 12 Jul 2022 10:42:31 +0000 indi-astromechfoc (0.2) bionic; urgency=low diff -Nru indi-astromechfoc-0.2~202207111005~ubuntu21.10.1/debian/git-build-recipe.manifest indi-astromechfoc-0.2~202207121042~ubuntu21.10.1/debian/git-build-recipe.manifest --- indi-astromechfoc-0.2~202207111005~ubuntu21.10.1/debian/git-build-recipe.manifest 2022-07-11 10:05:10.000000000 +0000 +++ indi-astromechfoc-0.2~202207121042~ubuntu21.10.1/debian/git-build-recipe.manifest 2022-07-12 10:42:31.000000000 +0000 @@ -1,5 +1,5 @@ -# git-build-recipe format 0.4 deb-version {debupstream}~202207111005 +# git-build-recipe format 0.4 deb-version {debupstream}~202207121042 lp:~mutlaqja/+git/dummy git-commit:9a182f35d7f48b02de1170889c0798f3ab639afb -nest-part src lp:~mutlaqja/libindi/+git/trunk indi-astromechfoc indi-astromechfoc git-commit:4648c854b8a9d2734db68a7790fd112bdc0c8721 -nest-part cmake lp:~mutlaqja/libindi/+git/trunk cmake_modules indi-astromechfoc/cmake_modules git-commit:4648c854b8a9d2734db68a7790fd112bdc0c8721 -nest-part pack lp:~mutlaqja/libindi/+git/trunk debian/indi-astromechfoc debian git-commit:4648c854b8a9d2734db68a7790fd112bdc0c8721 +nest-part src lp:~mutlaqja/libindi/+git/trunk indi-astromechfoc indi-astromechfoc git-commit:a6171809e7a85d49c4cc7ee1ab8a5b22960fde19 +nest-part cmake lp:~mutlaqja/libindi/+git/trunk cmake_modules indi-astromechfoc/cmake_modules git-commit:a6171809e7a85d49c4cc7ee1ab8a5b22960fde19 +nest-part pack lp:~mutlaqja/libindi/+git/trunk debian/indi-astromechfoc debian git-commit:a6171809e7a85d49c4cc7ee1ab8a5b22960fde19 diff -Nru indi-astromechfoc-0.2~202207111005~ubuntu21.10.1/indi-astromechfoc/cmake_modules/FindNUTClient.cmake indi-astromechfoc-0.2~202207121042~ubuntu21.10.1/indi-astromechfoc/cmake_modules/FindNUTClient.cmake --- indi-astromechfoc-0.2~202207111005~ubuntu21.10.1/indi-astromechfoc/cmake_modules/FindNUTClient.cmake 1970-01-01 00:00:00.000000000 +0000 +++ indi-astromechfoc-0.2~202207121042~ubuntu21.10.1/indi-astromechfoc/cmake_modules/FindNUTClient.cmake 2022-07-12 10:42:27.000000000 +0000 @@ -0,0 +1,50 @@ +# - Try to find nutclient library (version 2) and include files +# Once done this will define +# +# NUTCLIENT_FOUND - system has NUTCLIENT +# NUTCLIENT_INCLUDE_DIR - the NUTCLIENT include directory +# NUTCLIENT_LIBRARIES - Link these to use NUTCLIENT + +# Redistribution and use is allowed according to the terms of the BSD license. +# For details see the accompanying COPYING-CMAKE-SCRIPTS file. + +if (NUTCLIENT_INCLUDE_DIR AND NUTCLIENT_LIBRARIES) + + # in cache already + set(NUTCLIENT_FOUND TRUE) + message(STATUS "Found libnutclient: ${NUTCLIENT_LIBRARIES}") + +else (NUTCLIENT_INCLUDE_DIR AND NUTCLIENT_LIBRARIES) + + find_path(NUTCLIENT_INCLUDE_DIR nutclient.h + PATH_SUFFIXES nutclient + ${_obIncDir} + ${GNUWIN32_DIR}/include + ) + + find_library(NUTCLIENT_LIBRARIES NAMES nutclient + PATHS + ${_obLinkDir} + ${GNUWIN32_DIR}/lib + ) + + if(NUTCLIENT_INCLUDE_DIR AND NUTCLIENT_LIBRARIES) + set(NUTCLIENT_FOUND TRUE) + else (NUTCLIENT_INCLUDE_DIR AND NUTCLIENT_LIBRARIES) + set(NUTCLIENT_FOUND FALSE) + endif(NUTCLIENT_INCLUDE_DIR AND NUTCLIENT_LIBRARIES) + + + if (NUTCLIENT_FOUND) + if (NOT NUTCLIENT_FIND_QUIETLY) + message(STATUS "Found NUTCLIENT: ${NUTCLIENT_LIBRARIES}") + endif (NOT NUTCLIENT_FIND_QUIETLY) + else (NUTCLIENT_FOUND) + if (NUTCLIENT_FIND_REQUIRED) + message(FATAL_ERROR "NUTCLIENT not found. Please install libnutclient development package.") + endif (NUTCLIENT_FIND_REQUIRED) + endif (NUTCLIENT_FOUND) + + mark_as_advanced(NUTCLIENT_INCLUDE_DIR NUTCLIENT_LIBRARIES) + +endif (NUTCLIENT_INCLUDE_DIR AND NUTCLIENT_LIBRARIES)