Files
qpid-proton/qpid-pythonbuild.patch
Fridrich Strba ed4114130d Accepting request 1069896 from home:dirkmueller:Factory
- update to 0.38.0:
  * see https://qpid.apache.org/releases/qpid-proton-0.38.0/release-notes.html
  * Cancellable tasks
  * Implement distributed tracing
  * Improve python-qpid-proton wheel build regarding pkgconfig and deps
  * The new frame codec doesn't omit enough nulls!
  * Modernize package setup
  * Provide a way to query proton::connection for the url it was created with
  * Simplify and Speed up proton-c object system
  * Remove internal details from the proton/object.h API header file
  * Refactor logging so that it doesn't allocate any heap memory
  * Remove "from __future__ import ..." as they are all the default behaviour
    for Python 3
  * Proactor: allow early writes to reduce latency
  * Set a reasonable default maximum frame size
  * use consistent socket io cals in epoll proactor
  * Support Python 3.11
  * Many bugfixes

OBS-URL: https://build.opensuse.org/request/show/1069896
OBS-URL: https://build.opensuse.org/package/show/network:messaging:amqp/qpid-proton?expand=0&rev=84
2023-03-07 17:38:38 +00:00

26 lines
1.1 KiB
Diff

Index: qpid-proton-0.38.0/python/CMakeLists.txt
===================================================================
--- qpid-proton-0.38.0.orig/python/CMakeLists.txt
+++ qpid-proton-0.38.0/python/CMakeLists.txt
@@ -132,8 +132,8 @@ if (CHECK_SYSINSTALL_PYTHON)
endforeach (src_file)
endmacro(py_compile)
- py_compile(${CMAKE_CURRENT_BINARY_DIR} ${pysrc-generated} CPROTON_ARTIFACTS)
- py_compile(${CMAKE_CURRENT_SOURCE_DIR} "${pysrc}" PROTON_ARTIFACTS)
+ # py_compile(${CMAKE_CURRENT_BINARY_DIR} ${pysrc-generated} CPROTON_ARTIFACTS)
+ # py_compile(${CMAKE_CURRENT_SOURCE_DIR} "${pysrc}" PROTON_ARTIFACTS)
install(FILES ${CPROTON_ARTIFACTS}
DESTINATION ${PYTHON_SITEARCH_PACKAGES}
@@ -185,7 +185,8 @@ endforeach()
# Make python source and binary packages if we have prerequisistes
check_python_module("setuptools" SETUPTOOLS_MODULE_FOUND)
-check_python_module("wheel" WHEEL_MODULE_FOUND)
+#check_python_module("wheel" WHEEL_MODULE_FOUND)
+set(WHEEL_MODULE_FOUND FALSE)
if (SETUPTOOLS_MODULE_FOUND)
add_custom_target(py_pkg_src ALL
WORKING_DIRECTORY dist