Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
openeuler_risc-v-fixing [2023/12/20 08:19] – [yaml] misaka00251 | openeuler_risc-v-fixing [2024/11/27 07:32] (current) – [KDE 系列包] misaka00251 | ||
---|---|---|---|
Line 1: | Line 1: | ||
====== 修包笔记 ====== | ====== 修包笔记 ====== | ||
+ | |||
+ | 编写任何文件时,希望各位在文件末尾 add a new line,方便自己和他人,更方便强迫症患者。 | ||
+ | |||
+ | ===== openEuler 软件包 Patch 补丁编号顺序 ===== | ||
+ | |||
+ | 请参考 oEEP-0012,不过这个 **openEuler 演进提案 Evolution Proposal** 目前还在初始化中,不作为必须要求。 | ||
+ | |||
+ | * 所有来自同一版本 upstream 的补丁声明范围为 0001-0999 | ||
+ | * 所有架构相关的补丁声明范围为 1000 - 1999 | ||
+ | * 预留补丁编号范围 2000 - 2999 | ||
+ | * 所有CVE漏洞修复及上游其他版本backport 补丁,声明范围为 3000 - 4999 | ||
+ | * 所有 openEuler 特性补丁声明范围为 5000 - | ||
+ | |||
+ | 其它规定: | ||
+ | |||
+ | * 原则上不按架构分别打补丁,rpm spec 文件中出现 ifarch 宏的,必须在之前一行通过注释的方式明确说明原因和当前技术限制。 | ||
+ | * 补丁名称显式说明是否已经被 upstream 接纳,或来自某个特定版本的backport,便于版本升级时处理。 | ||
+ | * 原则上新增架构相关代码文件,和修改架构相关代码的补丁应明确分开,不在同一个补丁中既修改代码,又新增文件。 | ||
+ | * 对于修改架构相关代码的补丁,一个补丁尽量不要包含太多文件修改,尽量拆分,可使用 split-patch 工具,一个补丁最多包括5个文件修改(暂定)。 | ||
+ | * 对于同一个文件的不同架构补丁,原则上按架构相对稳定程度排序,优先应用架构稳定的补丁。不同软件包维护者可根据实际情况选择,但在不同文件的补丁应用中应保持一致。 | ||
===== yaml ===== | ===== yaml ===== | ||
Line 5: | Line 25: | ||
建仓的时候除了 spec 文件和源码,一定要包含一个 yaml 文件。如果 '' | 建仓的时候除了 spec 文件和源码,一定要包含一个 yaml 文件。如果 '' | ||
- | <code yaml> | + | <file yaml kweathercore.yaml> |
version_control: | version_control: | ||
src_repo: KDE/ | src_repo: KDE/ | ||
tag_prefix: " | tag_prefix: " | ||
separator: " | separator: " | ||
- | </code> | + | </file> |
===== upstream 源码包名字跟仓内不一样 ===== | ===== upstream 源码包名字跟仓内不一样 ===== | ||
Line 20: | Line 40: | ||
</ | </ | ||
- | ===== KDE 系列包 | + | ===== cmake 宏 ===== |
- | 目前有宏了,之前没有宏的话需要这样: | + | Update(2024-11-11): |
- | <code> | + | 目前有宏了,之前没有宏的话遇到 KDE 系列包的时候需要这样: |
+ | |||
+ | <file spec example.spec> | ||
%build | %build | ||
mkdir %{_target_platform} | mkdir %{_target_platform} | ||
Line 34: | Line 56: | ||
%install | %install | ||
make install/ | make install/ | ||
- | </code> | + | </file> |
+ | 或者遇到 ROCm 系列包的时候需要这样: | ||
+ | |||
+ | <file spec example2.spec> | ||
+ | pushd amd/hipcc | ||
+ | mkdir -p %{_target_platform} | ||
+ | pushd %{_target_platform} | ||
+ | %cmake -DHIPCC_BACKWARD_COMPATIBILITY=OFF .. | ||
+ | popd | ||
+ | cmake --build %{_target_platform} %{? | ||
+ | popd | ||
+ | </ | ||
===== 单 part 执行 ===== | ===== 单 part 执行 ===== | ||
Line 58: | Line 91: | ||
For all: | For all: | ||
rpmbuild -ba --define " | rpmbuild -ba --define " | ||
+ | </ | ||
+ | |||
+ | ==== 安装单 part 执行 ==== | ||
+ | |||
+ | 参考[[这个 bugzilla|https:// | ||
+ | |||
+ | <code bash> | ||
+ | # rpm -ivh chromedriver-119.0.6045.159-1.oe2309.riscv64.rpm chromium-119.0.6045.159-1.oe2309.riscv64.rpm chromium-common-119.0.6045.159-1.oe2309.riscv64.rpm | ||
+ | error: Failed dependencies: | ||
+ | rpmlib(ShortCircuited) <= 4.9.0-1 is needed by chromedriver-119.0.6045.159-1.oe2309.riscv64 | ||
+ | rpmlib(ShortCircuited) <= 4.9.0-1 is needed by chromium-119.0.6045.159-1.oe2309.riscv64 | ||
+ | rpmlib(ShortCircuited) <= 4.9.0-1 is needed by chromium-common-119.0.6045.159-1.oe2309.riscv64 | ||
+ | # rpm -ivh chromedriver-119.0.6045.159-1.oe2309.riscv64.rpm chromium-119.0.6045.159-1.oe2309.riscv64.rpm chromium-common-119.0.6045.159-1.oe2309.riscv64.rpm --nodeps | ||
+ | Verifying... | ||
+ | Preparing... | ||
+ | Updating / installing... | ||
+ | | ||
+ | | ||
+ | | ||
+ | </ | ||
+ | |||
+ | ===== QT5 cmake -> 包名 ===== | ||
+ | |||
+ | 一些速查 | ||
+ | |||
+ | ^ cmake ^ 包名 | ||
+ | | cmake(Qt5Core) | qt5-qtbase-devel | | ||
+ | | cmake(Qt5Gui) | ::: | | ||
+ | | cmake(Qt5Widgets) | ::: | | ||
+ | | cmake(Qt5DBus) | ::: | | ||
+ | | cmake(Qt5Xml) | ::: | | ||
+ | | cmake(Qt5Test) | ::: | | ||
+ | | cmake(Qt5Network) | ::: | | ||
+ | | cmake(Qt5Qml) | qt5-qtdeclarative-devel | | ||
+ | | cmake(Qt5QuickControls2) | qt5-qtquickcontrols2-devel | | ||
+ | | cmake(Qt5Multimedia) | qt5-qtmultimedia-devel | | ||
+ | | cmake(Qt5Svg) | qt5-qtsvg-devel | | ||
+ | |||
+ | ===== bcond with & without ===== | ||
+ | |||
+ | < | ||
+ | |||
+ | 在 RPM spec 文件中," | ||
+ | |||
+ | 以下有一个例子: | ||
+ | |||
+ | <file spec example.spec> | ||
+ | # 默认没有 cuda | ||
+ | %bcond_without cuda | ||
+ | %global have_cuda 0 | ||
+ | |||
+ | # 如果有 cuda 且为以下架构再设置 | ||
+ | %if %{without cuda} | ||
+ | %ifarch x86_64 aarch64 | ||
+ | %global have_cuda 1 | ||
+ | %endif | ||
+ | %endif | ||
+ | |||
+ | # 检查是否为 1 | ||
+ | %if %{have_cuda} | ||
+ | BuildRequires: | ||
+ | %endif | ||
+ | </ | ||
+ | |||
+ | ===== expand macro ===== | ||
+ | |||
+ | <file spec example.spec> | ||
+ | %global common_description %{expand: | ||
+ | This package provides a set of C++ libraries for multimedia streaming, using | ||
+ | using open standard protocols (RTP/RTCP, RTSP, SIP). These libraries can be | ||
+ | used to build streaming applications. | ||
+ | |||
+ | The libraries can also be used to stream, receive, and process MPEG, H.263+ or | ||
+ | JPEG video, and several audio codecs. They can easily be extended to support | ||
+ | additional (audio and/or video) codecs, and can also be used to build basic | ||
+ | RTSP or SIP clients and servers, and have been used to add streaming support to | ||
+ | existing media player applications.} | ||
+ | |||
+ | %description | ||
+ | </ | ||
+ | |||
+ | ===== 碰到 noarch 怎么办 ===== | ||
+ | |||
+ | 如果遇到 " | ||
+ | |||
+ | 在包为 noarch 的情况下," | ||
+ | |||
+ | <file spec example.spec> | ||
+ | BuildArch: noarch | ||
+ | %if " | ||
+ | echo "Do Something" | ||
+ | %endif | ||
+ | </ | ||
+ | |||
+ | ===== 碰到的一些乱七八糟的 ===== | ||
+ | |||
+ | ==== 指定 BuildRoot? ==== | ||
+ | |||
+ | '' | ||
+ | |||
+ | 在 mousepad 的 spec 文件里看到了这行。其中,最后的 '' | ||
+ | |||
+ | ==== 如何 patch golang 某个 package? ==== | ||
+ | |||
+ | 在用到 Golang 运行时的相关包看到了龙芯相关的更改: | ||
+ | |||
+ | < | ||
+ | %ifarch loongarch64 | ||
+ | sed 's/go 1.10/go 1.21/ | ||
+ | export GOSUMDB=" | ||
+ | export GOPROXY=" | ||
+ | go get -d golang.org/ | ||
+ | go mod tidy | ||
+ | go mod download | ||
+ | go mod vendor | ||
+ | %endif | ||
</ | </ |