mirror of
https://github.com/moparisthebest/pacman
synced 2024-10-31 23:55:04 -04:00
0268550401
Enabled a new prompt to ask the user if they'd like to remove unresolvable packages from the transaction rather than failing it. Many pactest tests that used to fail now return success codes, because pacman now issues a prompt allowing the user to cancel rather than failing many transactions, and the pactest scripts always choose to cancel with no error rather than failing. The only net effect is that the return status of pacman is now 0 in cases where it used to be nonzero. Signed-off-by: Bryan Ischo <bryan@ischo.com> Signed-off-by: Dan McGee <dan@archlinux.org>
16 lines
348 B
Python
16 lines
348 B
Python
self.description = "provision>=1.0-2 dependency"
|
|
|
|
p = pmpkg("pkg1", "1.0-2")
|
|
p.depends = ["provision>=1.0-2"]
|
|
self.addpkg2db("sync", p)
|
|
|
|
lp = pmpkg("pkg2", "1.0-2")
|
|
lp.provides = ["provision"]
|
|
self.addpkg2db("local", lp)
|
|
|
|
self.args = "-S %s" % p.name
|
|
|
|
self.addrule("PACMAN_RETCODE=0")
|
|
self.addrule("!PKG_EXIST=pkg1")
|
|
self.addrule("PKG_EXIST=pkg2")
|