mirror of
https://github.com/moparisthebest/pacman
synced 2024-11-10 11:35:00 -05:00
ae40d1c05b
This adds a test for when removing multilpe packages recursively from a chain of dependent packages. This situation can occur when removing installed dependencies with makepkg if a "makedepend" recursively depends on a "depend" or if redundant dependancies are included. Signed-off-by: Allan McRae <mcrae_allan at hotmail.com> Signed-off-by: Xavier Chantry <shiningxc@gmail.com> Signed-off-by: Dan McGee <dan@archlinux.org>
22 lines
466 B
Python
22 lines
466 B
Python
self.description = "-Rs test (dependency chain)"
|
|
|
|
lp1 = pmpkg("pkg1")
|
|
lp1.depends = ["pkg2"]
|
|
self.addpkg2db("local", lp1)
|
|
|
|
lp2 = pmpkg("pkg2")
|
|
lp2.depends = ["pkg3"]
|
|
lp2.reason = 1
|
|
self.addpkg2db("local", lp2)
|
|
|
|
lp3 = pmpkg("pkg3")
|
|
lp3.reason = 1
|
|
self.addpkg2db("local", lp3)
|
|
|
|
self.args = "-Rs %s" % " ".join([p.name for p in lp1, lp3])
|
|
|
|
self.addrule("PACMAN_RETCODE=0")
|
|
self.addrule("!PKG_EXIST=pkg1")
|
|
self.addrule("!PKG_EXIST=pkg2")
|
|
self.addrule("!PKG_EXIST=pkg3")
|