开发者

Package updating another package from another repository

开发者 https://www.devze.com 2023-04-06 12:36 出处:网络
I\'ve created repository where I store my own packages. System uses my and some other public repositories.

I've created repository where I store my own packages. System uses my and some other public repositories.

So now I've a package in my repo which I want to be as an update for some other package from another repository.

The repositories are rpm pa开发者_StackOverflow中文版ckage based.

Is it generally possible to mark my own package to update another package ?


(I would have made this a comment on the previous answer, but its too long.)

There's a problem with using the same package name and just bumping the version number.

Eventually the original package may increase its version number past what you're using, in which case someone may do a yum update and end up upgrading back to the original package.

To avoid this problem, you can change the package name slightly, and add some Obsoletes and Conflicts dependencies to your spec file. The Obsoletes dependency allows the original package to be upgraded to your package, while the Conflicts keeps the original package from being installed at the same time as your package.

This should keep an upstream version bump from clobbering your changes.

See http://docs.fedoraproject.org/en-US/Fedora_Draft_Documentation/0.1/html/RPM_Guide/ch-dependencies.html


Going to answer to my own question, yes yum treats all repositories equally. So all I need to do was setting package name the same and increased version number.

To test it you just need to create a yum repo and setup yum to use your repository for more info look here

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号