Hello community, here is the log from the commit of package uranium-lulzbot for openSUSE:Factory checked in at 2018-07-22 23:04:25 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/uranium-lulzbot (Old) and /work/SRC/openSUSE:Factory/.uranium-lulzbot.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "uranium-lulzbot" Sun Jul 22 23:04:25 2018 rev:4 rq:624276 version:3.2.23 Changes: -------- --- /work/SRC/openSUSE:Factory/uranium-lulzbot/uranium-lulzbot.changes 2018-07-12 09:21:06.146581100 +0200 +++ /work/SRC/openSUSE:Factory/.uranium-lulzbot.new/uranium-lulzbot.changes 2018-07-22 23:04:29.580924895 +0200 @@ -1,0 +2,11 @@ +Fri Jul 13 12:18:59 UTC 2018 - [email protected] + +- disable debug logging by default + +------------------------------------------------------------------- +Fri Jul 13 04:55:17 UTC 2018 - [email protected] + +- update to version 3.2.23 + * version increase only + +------------------------------------------------------------------- Old: ---- Uranium-3.2.22.obscpio New: ---- Uranium-3.2.23.obscpio ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ uranium-lulzbot.spec ++++++ --- /var/tmp/diff_new_pack.OC4wWl/_old 2018-07-22 23:04:30.784924449 +0200 +++ /var/tmp/diff_new_pack.OC4wWl/_new 2018-07-22 23:04:30.784924449 +0200 @@ -18,7 +18,7 @@ Name: uranium-lulzbot Conflicts: uranium -Version: 3.2.22 +Version: 3.2.23 Release: 0 Summary: 3D printer control software: python UI stack License: AGPL-3.0-only ++++++ Uranium-3.2.22.obscpio -> Uranium-3.2.23.obscpio ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Uranium-3.2.22/CMakeLists.txt.orig new/Uranium-3.2.23/CMakeLists.txt.orig --- old/Uranium-3.2.22/CMakeLists.txt.orig 1970-01-01 01:00:00.000000000 +0100 +++ new/Uranium-3.2.23/CMakeLists.txt.orig 2018-06-15 12:26:33.000000000 +0200 @@ -0,0 +1,75 @@ +project(uranium NONE) + +cmake_minimum_required(VERSION 2.8.12) + +message(STATUS ${CMAKE_MODULE_PATH}) + +set(CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/cmake/ + ${CMAKE_MODULE_PATH}) +include(UraniumTranslationTools) + +include(GNUInstallDirs) + +if (NOT MINIMUM_PYTHON_VERSION) + set(MINIMUM_PYTHON_VERSION 3.5.0) +endif() + +set(MINIMUM_PYTHON_VERSION ${MINIMUM_PYTHON_VERSION} CACHE STRING "Minimum Python Version") + +if (NOT BUILD_PYTHON) + find_package(PythonInterp ${MINIMUM_PYTHON_VERSION} REQUIRED) +endif() + +# # Checks using pylint +# Note that we use exit 0 here to not mark the build as a failure on check failure +# In addition, the specified pylint configuration uses the spellchecker plugin. This required python-enchant to be installed. +add_custom_target(check) +add_custom_command(TARGET check POST_BUILD COMMAND "PYTHONPATH=${CMAKE_SOURCE_DIR}" ${PYTHON_EXECUTABLE} -m pylint --rcfile=${CMAKE_SOURCE_DIR}/pylint.cfg UM --msg-template=\"{path}:{line}: [{msg_id}({symbol}), {obj}] {msg}\" > ${CMAKE_BINARY_DIR}/pylint.log || exit 0 WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}) + +# # Check using Mypy +add_custom_target(typecheck) +add_custom_command(TARGET typecheck POST_BUILD COMMAND ${PYTHON_EXECUTABLE} run_mypy.py WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}) + +# # Tests +include(UraniumTests) + +# # Benchmarks +# add_custom_target(benchmark) +# file(GLOB bench_files tests/benchmarks/*/profile*.py) +# foreach(file ${bench_files}) +# add_custom_command(TARGET benchmark POST_BUILD COMMAND "PYTHONPATH=${CMAKE_SOURCE_DIR}" kernprof ARGS -l -v ${file}) +# endforeach() + + +# Documentation +find_package(Doxygen) +if(${DOXYGEN_FOUND}) + add_custom_target(doc ${DOXYGEN_EXECUTABLE} ${CMAKE_SOURCE_DIR}/Doxyfile WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}) +endif() + +# Extract Strings +add_custom_target(extract-messages ${CMAKE_SOURCE_DIR}/scripts/extract-messages ${CMAKE_SOURCE_DIR} uranium) + +# Build Translations +CREATE_TRANSLATION_TARGETS() + + +if(NOT PYTHON_SITE_PACKAGES_DIR) + if(APPLE OR WIN32) + set(PYTHON_SITE_PACKAGES_DIR lib/python${PYTHON_VERSION_MAJOR}.${PYTHON_VERSION_MINOR}/site-packages CACHE STRING "Directory to install Python bindings to") + else() + set(PYTHON_SITE_PACKAGES_DIR lib/python${PYTHON_VERSION_MAJOR}/dist-packages CACHE STRING "Directory to install Python bindings to") + endif() + set(URANIUM_INSTALL_MODULES_PATH ${CMAKE_INSTALL_DATADIR}/cmake-${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION}/Modules/ ) + set(URANIUM_INSTALL_PLUGINS_PATH lib/uranium) +else() + set(URANIUM_INSTALL_MODULES_PATH ${CMAKE_INSTALL_DATADIR}/cmake/Modules/) + set(URANIUM_INSTALL_PLUGINS_PATH ${CMAKE_INSTALL_LIBDIR}/uranium ) +endif() + +install(DIRECTORY UM DESTINATION ${PYTHON_SITE_PACKAGES_DIR}) +install(FILES ${CMAKE_SOURCE_DIR}/cmake/UraniumTranslationTools.cmake DESTINATION ${URANIUM_INSTALL_MODULES_PATH}) +install(DIRECTORY resources DESTINATION ${CMAKE_INSTALL_DATADIR}/uranium) +install(DIRECTORY plugins DESTINATION ${URANIUM_INSTALL_PLUGINS_PATH} ) + +include(CPackConfig.cmake) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Uranium-3.2.22/CMakeLists.txt.rej new/Uranium-3.2.23/CMakeLists.txt.rej --- old/Uranium-3.2.22/CMakeLists.txt.rej 1970-01-01 01:00:00.000000000 +0100 +++ new/Uranium-3.2.23/CMakeLists.txt.rej 2018-06-15 12:26:33.000000000 +0200 @@ -0,0 +1,11 @@ +--- CMakeLists.txt ++++ CMakeLists.txt +@@ -58,7 +58,7 @@ if(NOT PYTHON_SITE_PACKAGES_DIR) + set(PYTHON_SITE_PACKAGES_DIR lib/python${PYTHON_VERSION_MAJOR}.${PYTHON_VERSION_MINOR}/site-packages + CACHE STRING "Directory to install Python bindings to") + else() +- set(PYTHON_SITE_PACKAGES_DIR lib/python${PYTHON_VERSION_MAJOR}/dist-packages CACHE ++ set(PYTHON_SITE_PACKAGES_DIR lib/python${PYTHON_VERSION_MAJOR}.${PYTHON_VERSION_MINOR}/site-packages CACHE + STRING "Directory to install Python bindings to") + endif() + set(URANIUM_INSTALL_MODULES_PATH ++++++ Uranium.obsinfo ++++++ --- /var/tmp/diff_new_pack.OC4wWl/_old 2018-07-22 23:04:31.192924298 +0200 +++ /var/tmp/diff_new_pack.OC4wWl/_new 2018-07-22 23:04:31.192924298 +0200 @@ -1,5 +1,5 @@ name: Uranium -version: 3.2.22 +version: 3.2.23 mtime: 1529058393 commit: 3f3055868ba5b9ffe82b5efdb89ffecd873e8bd6 ++++++ _service ++++++ --- /var/tmp/diff_new_pack.OC4wWl/_old 2018-07-22 23:04:31.208924292 +0200 +++ /var/tmp/diff_new_pack.OC4wWl/_new 2018-07-22 23:04:31.208924292 +0200 @@ -3,8 +3,8 @@ <param name="url">https://code.alephobjects.com/diffusion/U/uranium.git</param> <param name="scm">git</param> <param name="filename">Uranium</param> - <param name="revision">v3.2.22</param> - <param name="version">3.2.22</param> + <param name="revision">v3.2.23</param> + <param name="version">3.2.23</param> </service> <service mode="disabled" name="set_version" /> ++++++ fix-build.patch ++++++ --- /var/tmp/diff_new_pack.OC4wWl/_old 2018-07-22 23:04:31.216924289 +0200 +++ /var/tmp/diff_new_pack.OC4wWl/_new 2018-07-22 23:04:31.216924289 +0200 @@ -15,3 +15,29 @@ set(URANIUM_INSTALL_MODULES_PATH ${CMAKE_INSTALL_DATADIR}/cmake-${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION}/Modules/ ) set(URANIUM_INSTALL_PLUGINS_PATH lib/uranium) else() +diff --git a/plugins/ConsoleLogger/ConsoleLogger.py b/plugins/ConsoleLogger/ConsoleLogger.py +index 2c408277..39abc0c0 100644 +--- a/plugins/ConsoleLogger/ConsoleLogger.py ++++ b/plugins/ConsoleLogger/ConsoleLogger.py +@@ -23,7 +23,7 @@ class ConsoleLogger(LogOutput): + def __init__(self): + super().__init__() + self._logger = logging.getLogger(self._name) #Create python logger +- self._logger.setLevel(logging.DEBUG) ++# self._logger.setLevel(logging.DEBUG) + stream_handler = logging.StreamHandler() # Log to stream + stream_handler.setFormatter(logging_formatter) + self._logger.addHandler(stream_handler) +diff --git a/plugins/FileLogger/FileLogger.py b/plugins/FileLogger/FileLogger.py +index 065e95d3..e4739430 100644 +--- a/plugins/FileLogger/FileLogger.py ++++ b/plugins/FileLogger/FileLogger.py +@@ -12,7 +12,7 @@ class FileLogger(LogOutput): + def __init__(self, file_name): + super().__init__() + self._logger = logging.getLogger(self._name) # Create python logger +- self._logger.setLevel(logging.DEBUG) ++# self._logger.setLevel(logging.DEBUG) + + # Do not try to save to the app dir as it may not be writeable or may not be the right + # location to save the log file. Instead, try and save in the settings location since
