web-dev-qa-db-ja.com

--no-downloadおよび--no-install-recommendsを使用しているときにapt-get purgeがパッケージをインストールするのはなぜですか?

私はDebianを使用していますが、これはここに簡単に投稿できると思います。

私はすでにDebianマシンからopenofficeパッケージをアンインストールしましたが、どういうわけかapt-getはabiwordを代わりに置きました。今、私もそれを取り除きたいのですが、apt-get purge abiwordをしようとすると、私はこれを取得します:

monkey@debVirtual:/$ Sudo apt-get purge  abiword 
Reading package lists... Done
Building dependency tree       
Reading state information... Done
The following extra packages will be installed:
  libgraphite3 libhyphen0 libmythes-1.2-0 libtextcat-data-utf8 openoffice.org-common openoffice.org-core openoffice.org-gnome openoffice.org-gtk openoffice.org-style-galaxy
  openoffice.org-style-tango ttf-opensymbol uno-libs3 ure xfonts-mathml
Suggested packages:
  openoffice.org-style-industrial openoffice.org-style-hicontrast openoffice.org-style-crystal openoffice.org-style-oxygen openoffice.org-evolution tango-icon-theme Java5-runtime
  cli-uno-bridge otf-stix
The following packages will be REMOVED:
  abiword* abiword-plugin-grammar* abiword-plugin-mathview* gnome-office*
The following NEW packages will be installed:
  libgraphite3 libhyphen0 libmythes-1.2-0 libtextcat-data-utf8 openoffice.org-common openoffice.org-core openoffice.org-gnome openoffice.org-gtk openoffice.org-style-galaxy
  openoffice.org-style-tango ttf-opensymbol uno-libs3 ure xfonts-mathml
0 upgraded, 14 newly installed, 4 to remove and 0 not upgraded.
Need to get 84.4 MB of archives.
After this operation, 215 MB of additional disk space will be used.
Do you want to continue [Y/n]? 

私はapt-get purge --no-download abiword abiword-commonapt-get purge --no-install-recommends abiword abiword-commonの両方も試しましたが、ほぼ同様の出力が得られました。

monkey@debVirtual:/$ Sudo apt-get purge --no-download  abiword abiword-common 
Reading package lists... Done
Building dependency tree       
Reading state information... Done
The following extra packages will be installed:
  libgraphite3 libhyphen0 libmythes-1.2-0 libtextcat-data-utf8 openoffice.org-common openoffice.org-core openoffice.org-gnome openoffice.org-gtk openoffice.org-style-galaxy
  openoffice.org-style-tango ttf-opensymbol uno-libs3 ure xfonts-mathml
Suggested packages:
  openoffice.org-style-industrial openoffice.org-style-hicontrast openoffice.org-style-crystal openoffice.org-style-oxygen openoffice.org-evolution tango-icon-theme Java5-runtime
  cli-uno-bridge otf-stix
The following packages will be REMOVED:
  abiword* abiword-common* abiword-plugin-grammar* abiword-plugin-mathview* gnome-office*
The following NEW packages will be installed:
  libgraphite3 libhyphen0 libmythes-1.2-0 libtextcat-data-utf8 openoffice.org-common openoffice.org-core openoffice.org-gnome openoffice.org-gtk openoffice.org-style-galaxy
  openoffice.org-style-tango ttf-opensymbol uno-libs3 ure xfonts-mathml
0 upgraded, 14 newly installed, 5 to remove and 0 not upgraded.
Need to get 84.4 MB of archives.
After this operation, 206 MB of additional disk space will be used.
Do you want to continue [Y/n]? 
3
Patryk

あなたのシステムで何かがopenoffice.org | abiwordに依存していると推測しています。

そして、はい、私のシステムでgnomeがそうすることがわかります:

$ apt-cache show gnome
...
Depends: ... abiword (>= 2.8) | libreoffice-gnome ...
2
tumbleweed