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

相关文章

文章浏览阅读1.8k次,点赞63次,收藏54次。Linux下的目录权限...
文章浏览阅读1.6k次,点赞44次,收藏38次。关于Qt的安装、Wi...
本文介绍了使用shell脚本编写一个 Hello
文章浏览阅读1.5k次,点赞37次,收藏43次。【Linux】初识Lin...
文章浏览阅读3k次,点赞34次,收藏156次。Linux超详细笔记,...
文章浏览阅读6.8k次,点赞109次,收藏114次。【Linux】 Open...