中间有“really”字样的包版本号是什么意思?

fla*_*yst 14 package-management apt versions

命令apt-cache show postgresql将在我的机器中列出此信息(Saucy Salamander 13.10):

$ apt-cache show postgresql
Package: postgresql
Priority: optional
Section: database
Installed-Size: 69
Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
Original-Maintainer: Debian PostgreSQL Maintainers <pkg-postgresql-public@lists.alioth.debian.org>
Architecture: all
Source: postgresql-common (148)
Version: 9.3+146really9.1+148
Depends: postgresql-9.1
Run Code Online (Sandbox Code Playgroud)

它说 postgresql 包版本9.3+146really9.1+148。这里的意义是really什么?

  • 这个版本是 9.1 但列为 9.3 吗?
  • 或者这是从 9.3 向后移植补丁的 9.1 版?
  • 或者是其他东西?

Ste*_*n K 11

它实际上是9.1。Saucy 似乎正在从 Debian 的不稳定发行版中提取 postgresql* 软件包,由于某些版本依赖性,他们不得不使 9.1 分支在软件包管理器中看起来像 9.3,直到 9.3 从他们的实验版毕业到不稳定的发行版。

请参阅此处:http : //bugs.debian.org/cgi-bin/bugreport.cgi?bug=707675

尤其是更改日志位读数:

   * debian/supported-versions: Don't explicitly support 9.3 for
     testing/unstable yet, it is still in experimental. (Closes: #707675)
   * debian/rules: Hack the version number of the metapackages to be
     9.3+142really9.1-..., so that they are bigger than the previous botched
     versions. This needs to stay until 9.3 actually goes into unstable.
Run Code Online (Sandbox Code Playgroud)