在“Arch Linux”上使用“pacman”时显示软件包的描述

在“Arch Linux”上使用“pacman”时显示软件包的描述

我想获得有关我在我的机器pacman上使用时查询的包的附加描述性(自由文本)信息(实际上)。Arch LinuxParabola GNU/Linux-Libre

虽然 和 都pacman -Qi <name-of-package>pacman -Si <name-of-package>我提供了一个名为 的字段Description,但这仅包含该包的一行摘要。

例子:

$ pacman -Qi gimp

...
Description: GNU Image Manipulation Programm
...

当将此与我的计算机上的apt(或aptitude)进行比较时(实际上),我可以使用或不仅获得这一行摘要,还可以使用一个或多个带有自由文本信息的附加段落。Debian StablePureOS 9.0 Amberapt show <name-of-package>aptitude show <name-of-package>

例子:


$ apt show gimp

...
Description: GNU Image Manipulation Program
 GIMP is an advanced picture editor. You can use it to edit, enhance, and
 retouch photos and scans, create drawings, and make your own images.
 It has a large collection of professional-level editing tools and
 filters, similar to the ones you might find in Photoshop. Numerous
 fine-control settings and features like layers, paths, masks, and
 scripting give you total control over your images.
 .
 Many image file formats are supported, including JPEG, Photoshop (.psd),
 and Paint Shop Pro (.psp) files. It can also be used to scan and print
 photos.
 .
 To open files remotely (like over HTTP), install the gvfs-backends
 package.
 .
 To use a MIDI device (like a musical keyboard) as an input controller in GIMP,
 install libasound2 and read the how-to at /usr/share/doc/gimp/README.MIDI

罗塞塔为pacmanpacman -Siorpacman -Qi相当于apt showor zypper info,但我缺少附加的自由文本描述(如果我还不知道该程序,这显然非常有用)。

是否有一个pacman- 选项来启用它?或者这些信息只是在Arch Linux- 或Parabola- 存储库中丢失了?

答案1

我不知道这是否适用于(所有)其衍生发行版,但 Arch Linux 上的软件包只有简短的描述;其中提到的拱门维基文件页面PKGBUILD(用于构建包的脚本):

软件包描述
包的描述。建议长度不超过 80 个字符 [...]

并在Arch 包指南;请特别参见套餐礼仪段落:

为包创建包描述时[...]。还要尽量将描述控制在 80 个字符或更少。

看着Debian 政策,包的扩展描述(通常)不是来自上游,而是由打包者添加。这种做法似乎与 Arch 的做法不一致自然。

相关内容