mirror of
https://github.com/moparisthebest/pacman
synced 2024-10-31 23:55:04 -04:00
d060e31be3
Its implementation was quite broken: * add_loadtarget() might have silently filtered out some targets when replacing an older version. * This was used in sync.c to determine whether a target is implicit or not, which is incorrect behavior. Before this patch we silently removed user confirmed replacements; now we always warn on a replacement. * remove001.py behavior was quite odd in adding same target 5 times to the target list, we can change this behavior to be a failure. Signed-off-by: Nagy Gabor <ngaba@bibl.u-szeged.hu> [Xav: changed remove001 pactest accordingly] Signed-off-by: Chantry Xavier <shiningxc@gmail.com> [Dan: rewrote commit message] Signed-off-by: Dan McGee <dan@archlinux.org>
10 lines
193 B
Python
10 lines
193 B
Python
self.description = "Remove a package listed 5 times"
|
|
|
|
p = pmpkg("foo")
|
|
self.addpkg2db("local", p)
|
|
|
|
self.args = "-R " + "foo "*5
|
|
|
|
self.addrule("PACMAN_RETCODE=1")
|
|
self.addrule("PKG_EXISTS=foo")
|