head 1.1; access; symbols pkgsrc-2026Q1:1.1.0.20 pkgsrc-2026Q1-base:1.1 pkgsrc-2025Q4:1.1.0.18 pkgsrc-2025Q4-base:1.1 pkgsrc-2025Q3:1.1.0.16 pkgsrc-2025Q3-base:1.1 pkgsrc-2025Q2:1.1.0.14 pkgsrc-2025Q2-base:1.1 pkgsrc-2025Q1:1.1.0.12 pkgsrc-2025Q1-base:1.1 pkgsrc-2024Q4:1.1.0.10 pkgsrc-2024Q4-base:1.1 pkgsrc-2024Q3:1.1.0.8 pkgsrc-2024Q3-base:1.1 pkgsrc-2024Q2:1.1.0.6 pkgsrc-2024Q2-base:1.1 pkgsrc-2024Q1:1.1.0.4 pkgsrc-2024Q1-base:1.1 pkgsrc-2023Q4:1.1.0.2 pkgsrc-2023Q4-base:1.1; locks; strict; comment @# @; 1.1 date 2023.11.30.06.08.51; author adam; state Exp; branches; next ; commitid OTo9VFDzis6e6BOE; desc @@ 1.1 log @olm: updated to 3.2.16 Changes in `3.2.16 `_ =========================================================================== This release includes the following changes since 3.2.15: * Fix and modernize the Python packaging (thanks to Alfred Wingate) Changes in `3.2.15 `_ =========================================================================== This release includes the following changes since 3.2.14: * Improvements to Python packaging * No longer depend on ``future`` since Python 2 is no longer supported. * Improve compatibility with tox 4. * Add support for making standalone sdist. * Improvements to Nix flake (Thanks to Jon Ringer) * Improve structure. * Enable Darwin builds. * Typescript type fix. Changes in `3.2.14 `_ =========================================================================== This release includes the following changes since 3.2.13: * TypeScript type improvements. * Improvements to Python packaging * Documentation improvements. Changes in `3.2.13 `_ =========================================================================== This release includes the following changes since 3.2.12: * Fix compilation with newer versions of emscripten. * The npm package is compiled with emscripten 3.1.17 to fix compatibility with node 18. * Add py.typed to Python wheels. * Some documentation fixes and updates. * Improve the pkgconfig file. Changes in `3.2.12 `_ =========================================================================== This release includes the following changes since 3.2.11: * Expose olm_sas_calculate_mac_fixed_base64 in the bindings. * Allow memory to grow in wasm. Thanks to benkuly for the suggestion. * Fix Python type hints. * Some Python build fixes. * Initial work on a Nix flake for building and testing. Changes in `3.2.11 `_ =========================================================================== This release includes the following changes since 3.2.10: * Fix building documentation. Thanks to Jonas Smedegaard. The documents written in Markdown are now converted to HTML using Pandoc. * Add methods for getting unpublished fallback key in Objective-C binding. * Add public pickle/unpickle methods to Java binding. * Add wrapper for olm_session_describe to Java binding. Thanks to Alex Baker. @ text @$NetBSD$ Install pkg-config file also on Darwin. --- CMakeLists.txt.orig 2023-11-30 06:06:35.518160276 +0000 +++ CMakeLists.txt @@@@ -101,7 +101,7 @@@@ install(FILES ${CMAKE_CURRENT_SOURCE_DIR}/include/olm/error.h DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/olm) -if (UNIX AND NOT APPLE) +if (UNIX) install(FILES ${CMAKE_CURRENT_BINARY_DIR}/${PROJECT_NAME}.pc DESTINATION ${CMAKE_INSTALL_LIBDIR}/pkgconfig ) @