Centos下 rpm 打补丁,patch

前端之家收集整理的这篇文章主要介绍了Centos下 rpm 打补丁,patch前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

CentOS下 helloworld rpm制作参考

http://www.jb51.cc/article/p-kdqjkira-wk.html

请务必先学会如何制作rpm,再看本文


修改文件生成补丁文件

/SOURCES 下是原来的的tar.gz

可以先备份下,先解压tar包,然后修改里面的源文件

明确一点,我们拥有原来的文件加上补丁文件(补丁就是新与就的区别),就可以重新生成一个新的rpm了,而不是直接新的所有文件

SOUCES下的文件

这里有两个patch方法

文件夹 对比 生成patch

diff -uNr helloworld helloworld@H_301_32@.new > helloworld-test@H_301_32@.patch

查看patch

tar包对比生成patch,命令类似
但是 cat看不到信息

事实证明方法1正确,方法2在rpmbuild时会报错

修改spec文件添加补丁,重新rpmbuild

有了补丁文件和原来的tar.gz文件

spec文件可以备份下,然后修改下spect文件
完整内容如下

Summary:the first rpm
Name:helloworld
Version:0.1
Release:1%{?dist}
Vendor:john
License:Share
Group:Applications/Text
Source0:helloworld-0.1-1.tar.gz

# add patch
patch0:helloworld-test.patch
 %description
rpm test helloworld
 %prep
export RPM_SOURCES_DIR=/root/rpmbuild/SOURCES 
export RPM_BUILD_DIR=/root/rpmbuild/BUILD
tar -xzvf $RPM_SOURCES_DIR/helloworld-0.1-1.tar.gz
%patch0 -p0
 %build
cd $RPM_BUILD_DIR/helloworld
./configure
make
 %install
cd $RPM_BUILD_DIR/helloworld
make install
mkdir -p /root/rpmbuild/BUILDROOT/helloworld-0.1-1.el6.x86_64/usr/bin/
cp $RPM_BUILD_DIR/helloworld/helloworld /root/rpmbuild/BUILDROOT/helloworld-0.1-1.el6.x86_64/usr/bin/
 %clean
rm -rf $RPM_BUILD_DIR/helloworld
 %files
%defattr(-,root,root)
/usr/bin/helloworld
 %doc $RPM_BUILD_DIR/helloworld/readme

最后rpmbuild -ba spec,验证结果

rpm -qpl /SRPMS/helloworld-0.1-1.el6.src.rpm
-q 使用询问模式,当遇到任何问题时,rpm指令会先询问用户 -p 查询指定的RPM套件档 -l 显示软件包中的文件列表

参考文章

这篇文章看着很好,但不清晰,不知道怎么照着做,只能稍微看看
http://blog.chinaunix.net/uid-21123336-id-1830529.html

这篇文章,了解下patch,以及不会的linux patch命令
http://www.jb51.cc/article/p-obyjdegk-mg.html

linux rpm命令
http://man.linuxde.net/rpm

原文链接:https://www.f2er.com/centos/377006.html

猜你在找的CentOS相关文章