linux – 可以表示将新版本的软件包接受到存储库中吗?

前端之家收集整理的这篇文章主要介绍了linux – 可以表示将新版本的软件包接受到存储库中吗?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我已经在我自己的debian包存储库中安装了一个包,如下所示:
$sudo reprepro -b /var/packages/ubuntu includedeb maverick my-package_0.8-0_all.deb 
my-package_0.8-0_all.deb: component guessed as 'main'
Exporting indices...

我使用apt-get install在几台机器上安装了我的软件包.

我现在已经为我的软件添加了新功能,并希望将我的软件包的新版本添加到存储库,以便我可以使用apt-get upgrade更新我的机器.

我尝试这样做:

$sudo reprepro -b /var/packages/ubuntu includedeb maverick my-package_0.9-0_all.deb 
my-package_0.9-0_all.deb: component guessed as 'main'
Skipping inclusion of 'my-package' '1.0-0' in 'maverick|main|i386',as it has already '1.0-0'.
Skipping inclusion of 'my-package' '1.0-0' in 'maverick|main|amd64',as it has already '1.0-0'.

看起来我需要告诉reprepro这是同一个包的新版本,但我不知道如何做到这一点.我已经多次阅读了reprepro手册页并在网上搜索了几个小时,但我没有找到任何答案.

我错过了什么吗?

非常感谢.

解决方法

Reprepro无法在同一分发中保存两个版本的程序包.

请参阅问题3.1的答案:http://anonscm.debian.org/gitweb/?p=mirrorer/reprepro.git;a=blob_plain;f=docs/FAQ;hb=HEAD

原文链接:https://www.f2er.com/linux/398862.html

猜你在找的Linux相关文章