mirror of
https://github.com/moparisthebest/pacman
synced 2024-11-01 16:15:04 -04:00
112caad838
This pactest demonstrates that we should copy the reason between the to-be-replaced and replaced packages Signed-off-by: Nagy Gabor <ngaba@bibl.u-szeged.hu> Signed-off-by: Dan McGee <dan@archlinux.org>
17 lines
370 B
Python
17 lines
370 B
Python
self.description = "Copy reason (to-be-replaced -> replacement)"
|
|
|
|
sp = pmpkg("libfoo-ng")
|
|
sp.replaces = [ "libfoo" ]
|
|
self.addpkg2db("sync", sp)
|
|
|
|
lp = pmpkg("libfoo")
|
|
lp.reason = 1
|
|
self.addpkg2db("local", lp)
|
|
|
|
self.args = "-Su"
|
|
|
|
self.addrule("PACMAN_RETCODE=0")
|
|
self.addrule("!PKG_EXIST=libfoo")
|
|
self.addrule("PKG_EXIST=libfoo-ng")
|
|
self.addrule("PKG_REASON=libfoo-ng|1")
|