Package Details: python-openvino 2026.1.0-2

Git Clone URL: https://aur.archlinux.org/openvino.git (read-only, click to copy)
Package Base: openvino
Description: Python bindings for OpenVINO
Upstream URL: https://docs.openvino.ai/
Licenses: Apache-2.0, LicenseRef-custom
Submitter: dbermond
Maintainer: dbermond
Last Packager: dbermond
Votes: 17
Popularity: 0.156263
First Submitted: 2020-12-23 22:29 (UTC)
Last Updated: 2026-04-25 19:54 (UTC)

Required by (1)

Sources (26)

Latest Comments

« First ‹ Previous 1 2 3 4 5 6 7 8 .. 12 Next › Last »

alzpmq commented on 2025-12-02 17:17 (UTC) (edited on 2025-12-02 17:37 (UTC) by alzpmq)

The libopenvino_onnx_frontend.so.2025.4.0 missing _ZN4absl12lts_2025081412log_internal21UpdateGlobalVLogLevelEi, which is in libabsl_log_flags.so.2508.0.0 but not link. without it the onnx frontend support is broken. I try this patch can link it

--- a/src/frontends/onnx/frontend/CMakeLists.txt
+++ b/src/frontends/onnx/frontend/CMakeLists.txt
@@ -69,13 +69,15 @@ if(NOT BUILD_SHARED_LIBS)
     file(APPEND ${static_reg_file} "}  // namespace onnx\n}  // namespace frontend\n}  // namespace ov\n#undef ONNX_DECL_OP\n")
 endif()

+find_package(absl REQUIRED CONFIG)
+
 ov_add_frontend(NAME onnx
                 LINKABLE_FRONTEND
                 PROTOBUF_REQUIRED
                 PROTOBUF_LITE
                 SKIP_NCC_STYLE
                 FILEDESCRIPTION "FrontEnd to load and convert ONNX file format"
-                LINK_LIBRARIES openvino_onnx_common openvino::core::dev)
+                LINK_LIBRARIES openvino_onnx_common openvino::core::dev "$<LINK_LIBRARY:WHOLE_ARCHIVE,absl::log_flags>")

 set(ONNX_OPSET_VERSION 21 CACHE INTERNAL "Supported version of ONNX operator set")
 target_compile_definitions(${TARGET_NAME} PRIVATE ONNX_OPSET_VERSION=${ONNX_OPSET_VERSION})
--- a/src/frontends/paddle/src/CMakeLists.txt
+++ b/src/frontends/paddle/src/CMakeLists.txt
@@ -2,11 +2,13 @@
 # SPDX-License-Identifier: Apache-2.0
 #

+find_package(absl REQUIRED CONFIG)
+
 ov_add_frontend(NAME paddle
                 LINKABLE_FRONTEND
                 PROTOBUF_REQUIRED
                 PROTOBUF_LITE
                 FILEDESCRIPTION "FrontEnd to load and convert PaddlePaddle file format"
-                LINK_LIBRARIES openvino::util openvino::core::dev)
+                LINK_LIBRARIES openvino::util openvino::core::dev "$<LINK_LIBRARY:WHOLE_ARCHIVE,absl::log_flags>")

 ov_build_target_faster(openvino_paddle_frontend PCH)

<deleted-account> commented on 2025-10-25 17:26 (UTC)

Hi, Could you add a comment in the PKGBUILD stating that the PGP key can be obtained from https://github.com/web-flow.gpg?

zhitch73 commented on 2025-08-28 14:35 (UTC)

@Taithrah I manually edited that file but when i run makepkg -si it reverts to the original....how to edit the file without it automatically reverting?

Taithrah commented on 2025-08-28 12:45 (UTC) (edited on 2025-08-28 12:46 (UTC) by Taithrah)

@zhitch73 They are most likely referencing openvino/src/openvino/cmake/developer_package/version.cmake

zhitch73 commented on 2025-08-28 00:53 (UTC)

@wilflinlinlinlin I have the same issue @ILTORU I don't see said script in the pkgbuild

ILTORU commented on 2025-08-26 10:27 (UTC)

@wilflinlinlinlin

In the PKGBUILD, I added a small script in the prepare function to fix an issue in the version.cmake file.

The script uses sed to find a specific line in the file:

if(DEFINED ${var} AND NOT ${var} EQUAL ${var}_HPP)

and replaces it with:

if(DEFINED ${var} AND NOT ${${var}} EQUAL ${${var}_HPP})

This change ensures that the variable is correctly expanded in the conditional expression, fixing the issue during the build process.

The script runs automatically when you prepare the package, so no further manual changes are needed.

wilflinlinlinlin commented on 2025-08-25 04:45 (UTC)

I don't know if anybody have got this:

CMake Error at cmake/developer_package/version.cmake:103 (message): OpenVINO_VERSION_MAJOR parsed from CI_BUILD_NUMBER () and from openvino/core/version.hpp (2025) are different Call Stack (most recent call first): cmake/developer_package/version.cmake:113 (ov_compare_version_with_headers) cmake/developer_package/OpenVINODeveloperScriptsConfig.cmake:32 (ov_parse_ci_build_number) cmake/developer_package/OpenVINODeveloperScriptsConfig.cmake:48 (ov_set_ci_build_number) CMakeLists.txt:58 (find_package)

dbermond commented on 2025-07-31 20:03 (UTC)

@alexdw glad to know it worked.

alexdw commented on 2025-07-31 19:11 (UTC)

@dbermond Thanks! It turned out I had no swap space configured, so I set up a 16GB swap file (along with my 16GB physical RAM) and it compiled successfully first time.

dbermond commented on 2025-07-30 01:45 (UTC)

@alexdw I cannot reproduce your issue. Make sure that you are not building in a tempfs, make sure that you have enough disk space and try to increase swap space.