Control: tags -1 patch
Please find a patch attached.
diff -Nru pmdk-1.13.1/debian/changelog pmdk-1.13.1/debian/changelog --- pmdk-1.13.1/debian/changelog 2023-08-11 12:28:04.000000000 +0200 +++ pmdk-1.13.1/debian/changelog 2026-01-05 13:20:31.000000000 +0100 @@ -1,3 +1,11 @@ +pmdk (1.13.1-1.2) unstable; urgency=medium + + * Non-maintainer upload. + * Build with CMake 4. (Closes: #1113414) + * Build on loong64. (Closes: #1074301) + + -- Bastian Germann <[email protected]> Mon, 05 Jan 2026 13:20:31 +0100 + pmdk (1.13.1-1.1) unstable; urgency=low * Non-maintainer upload. diff -Nru pmdk-1.13.1/debian/patches/loong.patch pmdk-1.13.1/debian/patches/loong.patch --- pmdk-1.13.1/debian/patches/loong.patch 1970-01-01 01:00:00.000000000 +0100 +++ pmdk-1.13.1/debian/patches/loong.patch 2026-01-05 12:47:27.000000000 +0100 @@ -0,0 +1,17 @@ +Origin: https://github.com/daos-stack/pmdk/pull/29 +From: liuxiang <[email protected]> +Date: Fri, 5 Jan 2024 15:25:33 +0800 +Subject: common: fix compilation error on LoongArch + +Signed-off-by: liuxiang <[email protected]> +--- +--- a/src/libpmem2/loongarch64/init.c ++++ b/src/libpmem2/loongarch64/init.c +@@ -36,6 +36,6 @@ pmem2_arch_init(struct pmem2_arch_info *info) + { + LOG(3, NULL); + +- info->fence = loongarch_fence; ++ info->fence = loongarch_memory_fence; + info->flush = loongarch_flush; + } diff -Nru pmdk-1.13.1/debian/patches/Raise-min-CMake-version.patch pmdk-1.13.1/debian/patches/Raise-min-CMake-version.patch --- pmdk-1.13.1/debian/patches/Raise-min-CMake-version.patch 1970-01-01 01:00:00.000000000 +0100 +++ pmdk-1.13.1/debian/patches/Raise-min-CMake-version.patch 2026-01-05 13:20:31.000000000 +0100 @@ -0,0 +1,26 @@ +From: Bastian Germann <[email protected]> +Date: Mon, 5 Jan 2026 13:20:04 +0100 +Subject: Raise min. CMake version +--- +--- a/src/deps/miniasync/CMakeLists.txt ++++ b/src/deps/miniasync/CMakeLists.txt +@@ -3,7 +3,7 @@ + # Copyright 2021-2022, Intel Corporation + # + +-cmake_minimum_required(VERSION 3.3) ++cmake_minimum_required(VERSION 3.5) + + project(miniasync C) + set(MINIASYNC_ROOT_DIR ${CMAKE_CURRENT_SOURCE_DIR}) +--- a/src/deps/miniasync/tests/cmake/test_helpers.cmake ++++ b/src/deps/miniasync/tests/cmake/test_helpers.cmake +@@ -1,7 +1,7 @@ + # SPDX-License-Identifier: BSD-3-Clause + # Copyright 2021, Intel Corporation + +-cmake_minimum_required(VERSION 3.3) ++cmake_minimum_required(VERSION 3.5) + + set(DIR ${PARENT_DIR}) + set(TEST_DIR ${CMAKE_CURRENT_BINARY_DIR}/) diff -Nru pmdk-1.13.1/debian/patches/series pmdk-1.13.1/debian/patches/series --- pmdk-1.13.1/debian/patches/series 2023-08-11 12:28:04.000000000 +0200 +++ pmdk-1.13.1/debian/patches/series 2026-01-05 13:20:31.000000000 +0100 @@ -1 +1,3 @@ check-manpages-noerror.patch +loong.patch +Raise-min-CMake-version.patch

