diff options
author | Nagy Gabor <ngaba@bibl.u-szeged.hu> | 2008-07-08 10:07:05 +0200 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2008-07-13 09:16:55 -0500 |
commit | fd8969f67875ad6854725165b9530f4be26c5d96 (patch) | |
tree | fe3d41322943efa8167076fafecb80d83de04558 /doc/pacman.8.txt | |
parent | f724fb27022551e536496f8f99bc4be33b4ce3b7 (diff) | |
download | pacman-fd8969f67875ad6854725165b9530f4be26c5d96.tar.xz |
sync_addtarget rework
Now '-S provision' handling is done in the back-end.
In case of multiple providers, the first one is selected (behavior change:
deleted provision002.py). The old processing order was: literal, group,
provision; the new one: literal, provision, group. This is more rational,
but "pacman -S group" will be slower now. "pacman -S repo/provision" also
works. Provision was generalized to dependencies, so you can resolve deps by
hand: "pacman -S 'bash>2.0'" or "pacman -S 'core/bash>2.0'" etc. This can be
useful in makepkg dependency resolving. The changes were documented in
pacman manual.
alpm_find_pkg_satisfiers and _alpm_find_dep_satisfiers functions were
removed, since they are no longer needed.
I added some verbosity to "select provider instead of literal" and
"fallback to group".
Signed-off-by: Nagy Gabor <ngaba@bibl.u-szeged.hu>
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'doc/pacman.8.txt')
-rw-r--r-- | doc/pacman.8.txt | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/doc/pacman.8.txt b/doc/pacman.8.txt index 08764dea..9e56a54e 100644 --- a/doc/pacman.8.txt +++ b/doc/pacman.8.txt @@ -49,7 +49,9 @@ Operations example, `pacman -S qt` will download and install qt and all the packages it depends on. If a package name exists in more than one repo, the repo can be explicitly specified to clarify the package to install: - `pacman -S testing/qt`. + `pacman -S testing/qt`. You can also specify version requirements: + `pacman -S "bash>=3.2"`. (Quotes are needed, otherwise your shell + interprets ">" as redirection to file.) + In addition to packages, groups can be specified as well. For example, if gnome is a defined package group, then `pacman -S gnome` will install every |