aboutsummaryrefslogtreecommitdiffstats
path: root/openvino
AgeCommit message (Collapse)AuthorFilesLines
37 hoursopenvino: bundle xbyak instead of using the system packageDanilo M.2-3/+10
System xbyak's cmake config exports a bare -isystem /usr/include, which makes GCC 15 fail to resolve #include_next <stdlib.h> and aborts the build in src/core/model.cpp. Bundle openvino's pinned xbyak submodule (v7.23.1, commit 0d67fd15) via the bundle_dep helper and drop xbyak from REQUIRES, so find_package(xbyak) finds nothing system-wide and falls back to the bundled copy. Matches the approach the Arch PKGBUILD takes. The xbyak submodule sits directly at thirdparty/xbyak (no nested wrapper dir), so bundle_dep is called with thirdparty as the parent. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
37 hoursopenvino: update to 2026.2.1Danilo M.2-73/+50
Bump from 2024.4.1. Repin all seven bundled deps to the exact commits openvino references at this tag (submodule gitlinks), downloaded uniformly as archive/<sha> tarballs, and switch flatbuffers/onnx/ittapi/protobuf from version tags to commit SHAs for consistency. Refactor the per-dep extract/symlink blocks into a single bundle_dep helper that derives each dep's directory from the tarball, so future bumps only touch the COMMIT_* vars and .info, not the extract logic. Drop pybind11 from REQUIRES: now satisfied by stock python-pybind11. Add a .gitleaksignore entry for a dep commit SHA that trips the generic-api-key entropy rule (a public commit hash, not a secret). Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-04-04openvino: added slackbuild for version 2024.4.1 with fix for Cmake minimum ↵Danilo M.6-0/+263
version < 3.5