diff options
author | Dan McGee <dan@archlinux.org> | 2007-07-15 18:44:18 +0200 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2007-07-15 18:46:02 +0200 |
commit | a1e57cbec8209b64ee40fdae5990e870c8203cd7 (patch) | |
tree | 02b07ea6756c6694b367ad24b39e2457cd44a35a /pactest/tests/upgrade031.py | |
parent | c2920033d078768db08c338f4908033503abfc08 (diff) | |
download | pacman-a1e57cbec8209b64ee40fdae5990e870c8203cd7.tar.gz pacman-a1e57cbec8209b64ee40fdae5990e870c8203cd7.tar.xz |
Add --asdeps option to pacman
This replaces the former -D operation that was undocumented and rather
hacky. It can be used with add, upgrade, or sync transactions and will affect
all packages installed. Should close FS #7193.
Also tell makepkg to use this new flag.
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'pactest/tests/upgrade031.py')
-rw-r--r-- | pactest/tests/upgrade031.py | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/pactest/tests/upgrade031.py b/pactest/tests/upgrade031.py new file mode 100644 index 00000000..856de983 --- /dev/null +++ b/pactest/tests/upgrade031.py @@ -0,0 +1,19 @@ +self.description = "Install packages non-explicitly" + +lp1 = pmpkg("pkg1") +lp1.reason = 0 +self.addpkg2db("local", lp1) + +p1 = pmpkg("pkg1", "1.0-2") +p2 = pmpkg("pkg2", "1.0-2") + +for p in p1, p2: + self.addpkg(p) + +self.args = "-U --asdeps %s" % " ".join([p.filename() for p in p1, p2]) + +self.addrule("PACMAN_RETCODE=0") +self.addrule("PKG_VERSION=pkg1|1.0-2") +self.addrule("PKG_VERSION=pkg2|1.0-2") +self.addrule("PKG_REASON=pkg1|1") +self.addrule("PKG_REASON=pkg2|1") |