From 5bee9a87fac36a7710aacc1fa7a01583389e9b69 Mon Sep 17 00:00:00 2001 From: liyigang Date: Wed, 29 Apr 2026 18:10:55 +0800 Subject: [PATCH] build: update debian package configuration for search component MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Added libdfm-search and libdfm-search-dev directories to .gitignore Updated libdfm-search.install to replace dfm-search-client with dfm-searcher Changed binary installation path from /usr/libexec to /usr/bin Fixed missing newline at end of install file This change aligns the package configuration with the current binary naming and location conventions. The search client binary has been renamed and relocated to the standard /usr/bin directory. The change maintains package installation correctness while updating paths to match current build output Influence: 1. Verify debian package builds without errors 2. Check that dfm-searcher binary is correctly installed to /usr/bin 3. Ensure .gitignore properly excludes generated debian directories 4. Confirm package dependencies are still satisfied build: 更新搜索组件的 debian 打包配置 在 .gitignore 中添加了 libdfm-search 和 libdfm-search-dev 目录 更新 libdfm-search.install,将 dfm-search-client 替换为 dfm-searcher 将二进制文件安装路径从 /usr/libexec 更改为 /usr/bin 修复了安装文件末尾缺少换行符的问题 此变更使打包配置与当前二进制命名和位置约定保持一致 搜索客户端二进制文件已重命名并重新定位到标准的 /usr/bin 目录 该变更在保持打包正确性的同时更新路径以匹配当前构建输出 Influence: 1. 验证 debian 包构建无错误 2. 检查 dfm-searcher 二进制文件是否正确安装到 /usr/bin 3. 确保 .gitignore 正确排除生成的 debian 目录 4. 确认包依赖关系仍然满足 --- .gitignore | 2 ++ debian/libdfm-search.install | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index d54f7cfa..810d5e0c 100644 --- a/.gitignore +++ b/.gitignore @@ -49,6 +49,8 @@ debian/libdfm-mount/* debian/libdfm-mount-dev/* debian/libdfm-burn/* debian/libdfm-burn-dev/* +debian/libdfm-search-dev/* +debian/libdfm-search/* debian/*.log debian/*.substvars debian/files diff --git a/debian/libdfm-search.install b/debian/libdfm-search.install index fed44adf..d0fd2344 100644 --- a/debian/libdfm-search.install +++ b/debian/libdfm-search.install @@ -1,2 +1,2 @@ -usr/lib/*/libdfm-search*.so* -usr/libexec/dfm-search-client \ No newline at end of file +usr/lib/*/libdfm-search*.so* +usr/bin/dfm-searcher \ No newline at end of file