update to mosquitto-2.0.7

This commit is contained in:
sthen 2021-02-05 14:30:39 +00:00
parent fb2c5e85ca
commit d0734fa169
3 changed files with 30 additions and 7 deletions

View File

@ -1,8 +1,8 @@
# $OpenBSD: Makefile,v 1.38 2021/02/02 11:21:59 sthen Exp $
# $OpenBSD: Makefile,v 1.39 2021/02/05 14:30:39 sthen Exp $
COMMENT = opensource MQTT broker
DISTNAME = mosquitto-2.0.6
DISTNAME = mosquitto-2.0.7
SHARED_LIBS += mosquitto 1.1 # 1.5
SHARED_LIBS += mosquittopp 1.0 # 1.5
@ -26,9 +26,7 @@ MODPY_BUILDDEP= No
MODPY_RUNDEP= No
MODPY_VERSION= ${MODPY_DEFAULT_VERSION_3}
BUILD_DEPENDS = devel/uthash \
textproc/docbook-xsl \
textproc/libxslt
BUILD_DEPENDS = devel/uthash
LIB_DEPENDS = www/libwebsockets
DEBUG_PACKAGES = ${BUILD_PACKAGES}

View File

@ -1,2 +1,2 @@
SHA256 (mosquitto-2.0.6.tar.gz) = C2mhBbr9hSTRHwcx/NsvvhyUrT3dj0DM/ZcGfFnd0XY=
SIZE (mosquitto-2.0.6.tar.gz) = 756359
SHA256 (mosquitto-2.0.7.tar.gz) = qYBU8LgWFYiXXvJOHUZ1UNOTX0wWzO5j7LYjJIooNW4=
SIZE (mosquitto-2.0.7.tar.gz) = 756625

View File

@ -0,0 +1,25 @@
$OpenBSD: patch-man_CMakeLists_txt,v 1.1 2021/02/05 14:30:39 sthen Exp $
just use the bundled manuals
Index: man/CMakeLists.txt
--- man/CMakeLists.txt.orig
+++ man/CMakeLists.txt
@@ -6,7 +6,7 @@
if(NOT WIN32)
find_program(XSLTPROC xsltproc OPTIONAL)
- if(XSLTPROC)
+ if(FALSE)
function(compile_manpage page)
add_custom_command(OUTPUT ${CMAKE_SOURCE_DIR}/man/${page}
COMMAND xsltproc ${CMAKE_SOURCE_DIR}/man/${page}.xml -o ${CMAKE_SOURCE_DIR}/man/
@@ -25,8 +25,6 @@ if(NOT WIN32)
compile_manpage("mosquitto-tls.7")
compile_manpage("mqtt.7")
compile_manpage("mosquitto.8")
- else()
- message(FATAL_ERROR "xsltproc not found: manpages cannot be built")
endif()
endif()