mirror of
https://github.com/moparisthebest/pacman
synced 2024-10-31 23:55:04 -04:00
f2ade9ab0d
provides, and conflicts. - upgrade051 is known to fail- but we want to eventually make it work. - upgrade052 is Nagy's bug as reported on the ML- I think. If it isn't, let me know.
16 lines
359 B
Python
16 lines
359 B
Python
self.description = "Upgrade package with a conflict == depend (not installed)"
|
|
|
|
p1 = pmpkg("pkg1")
|
|
p1.conflicts = ["pkg2"]
|
|
p1.depends = ["pkg2"]
|
|
self.addpkg(p1)
|
|
|
|
p2 = pmpkg("pkg2")
|
|
self.addpkg(p2)
|
|
|
|
self.args = "-U %s" % " ".join([p.filename() for p in p1, p2])
|
|
|
|
self.addrule("PACMAN_RETCODE=1")
|
|
self.addrule("!PKG_EXIST=pkg1")
|
|
self.addrule("!PKG_EXIST=pkg2")
|