mirror of
https://github.com/moparisthebest/pacman
synced 2024-11-12 20:35:12 -05:00
b7db46d610
When a conflict is detected, pacman asks if the user wants to remove the conflicting package. In many cases this is a bad idea. e.g. udev conflicts with initscripts (initscripts<2009.07). Remove initscripts [Y/n] This changes the query to [y/N]. The --noconfirm behavior has been also changed, because it chooses the default answer. Since the yes answer is more interesting in our pactests dealing with conflicts, I inserted '--ask=4' to all of them with one exception: sync042.py tests the no answer. (I also fixed a typo in sync043.py) Original-work-by: Allan McRae <allan@archlinux.org> Signed-off-by: Nagy Gabor <ngaba@bibl.u-szeged.hu>
26 lines
555 B
Python
26 lines
555 B
Python
self.description = "Replace a package providing package with actual package"
|
|
|
|
sp = pmpkg("foo")
|
|
self.addpkg2db("sync", sp)
|
|
|
|
lp = pmpkg("bar")
|
|
lp.provides = ["foo"]
|
|
lp.conflicts = ["foo"]
|
|
self.addpkg2db("local", lp)
|
|
|
|
lp1 = pmpkg("pkg1")
|
|
lp1.depends = ["foo"]
|
|
self.addpkg2db("local", lp1)
|
|
|
|
lp2 = pmpkg("pkg2")
|
|
lp2.depends = ["foo"]
|
|
self.addpkg2db("local", lp2)
|
|
|
|
self.args = "-S %s --ask=4" % sp.name
|
|
|
|
self.addrule("PACMAN_RETCODE=0")
|
|
self.addrule("PKG_EXIST=foo")
|
|
self.addrule("!PKG_EXIST=bar")
|
|
self.addrule("PKG_EXIST=pkg1")
|
|
self.addrule("PKG_EXIST=pkg2")
|