Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
openeuler_risc-v-fixing [2024/01/31 06:25] – Add short-circuited segment & fix multiple format misaka00251openeuler_risc-v-fixing [2024/11/27 07:32] (current) – [KDE 系列包] misaka00251
Line 40: Line 40:
 </code> </code>
  
-===== KDE 系列包 =====+===== cmake 宏 =====
  
-目前有宏了,之前没有宏的话需要这样:+Update(2024-11-11): 目前已经有 ''%cmake_build'' 和 ''%cmake_install'' 了,不用这么麻烦了。 
 + 
 +目前有宏了,之前没有宏的话遇到 KDE 系列包的时候需要这样:
  
 <file spec example.spec> <file spec example.spec>
Line 56: Line 58:
 </file> </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} %{?_smp_mflags} -v
 +popd
 +</file>
 ===== 单 part 执行 ===== ===== 单 part 执行 =====
  
Line 118: Line 131:
 ===== bcond with & without ===== ===== bcond with & without =====
  
-openEuler 内没有 "%bcond_with" 这个宏。只有 "%bcond_without"+<del>openEuler 内没有 "%bcond_with" 这个宏。只有 "%bcond_without"</del>
  
 在 RPM spec 文件中,"%bcond_without" 是一个条件宏,用于定义一个默认为打开(on)的构建选项。这个宏的工作方式是,如果在构建包时没有明确指定 "--without <option>",那么这个选项就会被视为打开。这个宏与 "%bcond_with" 相反,"%bcond_with" 定义的是一个默认为关闭(off)的构建选项。 在 RPM spec 文件中,"%bcond_without" 是一个条件宏,用于定义一个默认为打开(on)的构建选项。这个宏的工作方式是,如果在构建包时没有明确指定 "--without <option>",那么这个选项就会被视为打开。这个宏与 "%bcond_with" 相反,"%bcond_with" 定义的是一个默认为关闭(off)的构建选项。
Line 142: Line 155:
 </file> </file>
  
 +===== 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    %{common_description}
 +</file>
 +
 +===== 碰到 noarch 怎么办 =====
 +
 +如果遇到 "%ifarch" 宏不起作用的情况下,可以先看一下 spec 文件内是否有 "BuildArch: noarch" 这一行。
 +
 +在包为 noarch 的情况下,"%ifarch" 是不起作用的。你可能需要这样的 dirty hack 才行:
 +
 +<file spec example.spec>
 +BuildArch: noarch
 +%if "%{_arch}" == "riscv64"
 +echo "Do Something"
 +%endif
 +</file>
 +
 +===== 碰到的一些乱七八糟的 =====
 +
 +==== 指定 BuildRoot? ====
 +
 +''%%BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)%%''
 +
 +在 mousepad 的 spec 文件里看到了这行。其中,最后的 ''root-%(%{__id_u} -n)'' 这部分是为了确保构建根目录的唯一性,通过调用 ''id -u'' 获取当前用户的 UID,确保不同用户构建的软件包不会互相干扰。
 +
 +==== 如何 patch golang 某个 package? ====
 +
 +在用到 Golang 运行时的相关包看到了龙芯相关的更改:
 +
 +<code>
 +%ifarch loongarch64
 +sed 's/go 1.10/go 1.21/g' -i go.mod
 +export GOSUMDB="sum.golang.org"
 +export GOPROXY="https://goproxy.cn"
 +go get -d golang.org/x/sys@v0.19.0
 +go mod tidy
 +go mod download
 +go mod vendor
 +%endif
 +</code>