mirror of
https://github.com/moparisthebest/pacman
synced 2024-10-31 23:55:04 -04:00
52376150fa
"replaces confusion" thread on pacman-dev for more information * Cleaned up some 2 item loops in the sync131 test
19 lines
416 B
Python
19 lines
416 B
Python
self.description = "Sysupgrade with a sync package replacing a set of local ones"
|
|
|
|
sp = pmpkg("pkg4")
|
|
sp.replaces = ["pkg1", "pkg2", "pkg3"]
|
|
self.addpkg2db("sync", sp)
|
|
|
|
lp1 = pmpkg("pkg1")
|
|
self.addpkg2db("local", lp1)
|
|
|
|
lp2 = pmpkg("pkg2")
|
|
self.addpkg2db("local", lp2)
|
|
|
|
self.args = "-Su"
|
|
|
|
self.addrule("PACMAN_RETCODE=0")
|
|
self.addrule("PKG_EXIST=pkg4")
|
|
self.addrule("!PKG_EXIST=pkg1")
|
|
self.addrule("!PKG_EXIST=pkg2")
|