Date: Sat, 30 May 2026 20:32:29 +0000 From: Vladimir Druzenko <vvd@FreeBSD.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org Cc: Thomas Dreibholz <thomas.dreibholz@gmail.com> Subject: git: 50af32cc1cea - main - net/kamailio: Update 6.1.1 => 6.1.3 Message-ID: <6a1b495d.312fe.3aa322bb@gitrepo.freebsd.org>
index | next in thread | raw e-mail
The branch main has been updated by vvd: URL: https://cgit.FreeBSD.org/ports/commit/?id=50af32cc1cea2646d13125e3fe85066b19c68072 commit 50af32cc1cea2646d13125e3fe85066b19c68072 Author: Thomas Dreibholz <thomas.dreibholz@gmail.com> AuthorDate: 2026-05-30 20:26:32 +0000 Commit: Vladimir Druzenko <vvd@FreeBSD.org> CommitDate: 2026-05-30 20:26:32 +0000 net/kamailio: Update 6.1.1 => 6.1.3 Release Notes: https://www.kamailio.org/w/2026/04/kamailio-v6-1-2-released/ https://www.kamailio.org/w/2026/05/kamailio-v6-1-3-released/ While here replace http with https in MASTER_SITES. PR: 295692 Sponsored by: UNIS Labs --- net/kamailio/Makefile | 5 ++-- net/kamailio/distinfo | 6 ++-- .../files/patch-cmake_modules_FindUnistring.cmake | 34 ---------------------- .../patch-src_modules_phonenum_CMakeLists.txt | 15 ---------- .../patch-src_modules_websocket_CMakeLists.txt | 14 --------- 5 files changed, 5 insertions(+), 69 deletions(-) diff --git a/net/kamailio/Makefile b/net/kamailio/Makefile index c22f0f0c8670..80a6b5cad1a9 100644 --- a/net/kamailio/Makefile +++ b/net/kamailio/Makefile @@ -1,8 +1,7 @@ PORTNAME= kamailio -DISTVERSION= 6.1.1 -PORTREVISION= 1 +DISTVERSION= 6.1.3 CATEGORIES= net -MASTER_SITES= http://www.kamailio.org/pub/kamailio/${DISTVERSION}/src/ +MASTER_SITES= https://www.kamailio.org/pub/kamailio/${DISTVERSION}/src/ DISTNAME= ${PORTNAME}-${DISTVERSION}_src MAINTAINER= drtr0jan@yandex.ru diff --git a/net/kamailio/distinfo b/net/kamailio/distinfo index aaf04a48d047..13b98e114f0d 100644 --- a/net/kamailio/distinfo +++ b/net/kamailio/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1772797474 -SHA256 (kamailio-6.1.1_src.tar.gz) = ea26f117449bb9bd806d033c1eb90b9f625bc15319140bb3ca3d40afeed81f9a -SIZE (kamailio-6.1.1_src.tar.gz) = 13016380 +TIMESTAMP = 1779909832 +SHA256 (kamailio-6.1.3_src.tar.gz) = e3db3d2166f44d8f3dd90db09063f70b55bbecce295abd7f31c34d8b9dd79721 +SIZE (kamailio-6.1.3_src.tar.gz) = 13065116 diff --git a/net/kamailio/files/patch-cmake_modules_FindUnistring.cmake b/net/kamailio/files/patch-cmake_modules_FindUnistring.cmake deleted file mode 100644 index f16dab98e21f..000000000000 --- a/net/kamailio/files/patch-cmake_modules_FindUnistring.cmake +++ /dev/null @@ -1,34 +0,0 @@ ---- cmake/modules/FindUnistring.cmake.orig 2026-03-07 11:32:50 UTC -+++ cmake/modules/FindUnistring.cmake -@@ -0,0 +1,31 @@ -+# https://github.com/fsaric/libsentences/blob/master/cmake/FindUnistring.cmake -+# - Find UNISTRING -+# Find the unistring includes and library -+# -+# Unistring_INCLUDE_DIRS - where to find unistr.h, etc. -+# Unistring_LIBRARIES - unistring library. -+# Unistring_FOUND - True if unistring found. -+# -+# Hints: -+# Unistring_ROOT=/path/to/unistring/installation -+ -+find_path(Unistring_INCLUDE_DIRS unistr.h DOC "Path to unistring include directory") -+ -+find_library( -+ Unistring_LIBRARIES -+ NAMES unistring libunistring -+ DOC "Path to unistring library" -+) -+ -+include(FindPackageHandleStandardArgs) -+find_package_handle_standard_args(Unistring DEFAULT_MSG Unistring_LIBRARIES Unistring_INCLUDE_DIRS) -+ -+# Create the Unistring::Unistring imported target -+if(Unistring_FOUND) -+ add_library(Unistring::Unistring UNKNOWN IMPORTED) -+ set_target_properties( -+ Unistring::Unistring PROPERTIES INTERFACE_INCLUDE_DIRECTORIES "${Unistring_INCLUDE_DIRS}" -+ IMPORTED_LOCATION "${Unistring_LIBRARIES}" -+ ) -+endif() -+mark_as_advanced(Unistring_LIBRARIES Unistring_INCLUDE_DIRS) diff --git a/net/kamailio/files/patch-src_modules_phonenum_CMakeLists.txt b/net/kamailio/files/patch-src_modules_phonenum_CMakeLists.txt deleted file mode 100644 index 7b2e5d3d45ed..000000000000 --- a/net/kamailio/files/patch-src_modules_phonenum_CMakeLists.txt +++ /dev/null @@ -1,15 +0,0 @@ ---- src/modules/phonenum/CMakeLists.txt.orig 2026-03-04 19:17:24 UTC -+++ src/modules/phonenum/CMakeLists.txt -@@ -21,10 +21,10 @@ else() - - if(libphonenumber_LIBRARY AND libgeocoding_LIBRARY) - set(libphonenum_LIBRARY ${libphonenumber_LIBRARY} ${libgeocoding_LIBRARY}) -- find_path(libphonenumber_INCLUDE_DIR phonenumbers/geocoding/phonenumber_offline_geocoder.h -+ find_path(libphonenumber_INCLUDE_DIRS phonenumbers/geocoding/phonenumber_offline_geocoder.h - phonenumbers/phonenumberutil.h - ) -- message(STATUS "Found libphonenumber include directory: ${libphonenumber_INCLUDE_DIR}") -+ message(STATUS "Found libphonenumber include directory: ${libphonenumber_INCLUDE_DIRS}") - message(STATUS "Found libphonenumber library: ${libphonenum_LIBRARY}") - else() - message(FATAL_ERROR "libphonenumber library not found") diff --git a/net/kamailio/files/patch-src_modules_websocket_CMakeLists.txt b/net/kamailio/files/patch-src_modules_websocket_CMakeLists.txt deleted file mode 100644 index 1a1ff2faee8a..000000000000 --- a/net/kamailio/files/patch-src_modules_websocket_CMakeLists.txt +++ /dev/null @@ -1,14 +0,0 @@ ---- src/modules/websocket/CMakeLists.txt.orig 2026-03-04 19:17:24 UTC -+++ src/modules/websocket/CMakeLists.txt -@@ -7,9 +7,6 @@ else() - if(EMBEDDED_UTF8_DECODE) - target_compile_definitions(${module_name} PRIVATE EMBEDDED_UTF8_DECODE) - else() -- if(${CMAKE_SYSTEM_NAME} MATCHES "Darwin") -- target_include_directories(${module_name} PRIVATE /opt/local/include) -- target_link_directories(${module_name} PRIVATE /opt/local/lib) -- endif() -- target_link_libraries(${module_name} PRIVATE unistring) -+ find_package(Unistring REQUIRED) -+ target_link_libraries(${module_name} PRIVATE Unistring::Unistring) - endif()home | help
Want to link to this message? Use this
URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?6a1b495d.312fe.3aa322bb>
