mirror of
https://github.com/moparisthebest/pacman
synced 2024-11-01 16:15:04 -04:00
35135c0a0c
* -Rss removes all dependencies (including explicitly installed ones). * updated documentation * two pactest files added to test the difference between -Rs and -Rss Signed-off-by: Nagy Gabor <ngaba@bibl.u-szeged.hu>
21 lines
423 B
Python
21 lines
423 B
Python
self.description = "-Rs test (exclude explicit)"
|
|
|
|
lp1 = pmpkg("pkg1")
|
|
lp1.depends = ["pkg2" , "pkg3"]
|
|
self.addpkg2db("local", lp1)
|
|
|
|
lp2 = pmpkg("pkg2")
|
|
lp2.reason = 1
|
|
self.addpkg2db("local", lp2)
|
|
|
|
lp3 = pmpkg("pkg3")
|
|
lp3.reason = 0
|
|
self.addpkg2db("local", lp3)
|
|
|
|
self.args = "-Rs %s" % lp1.name
|
|
|
|
self.addrule("PACMAN_RETCODE=0")
|
|
self.addrule("!PKG_EXIST=pkg1")
|
|
self.addrule("!PKG_EXIST=pkg2")
|
|
self.addrule("PKG_EXIST=pkg3")
|