mirror of
https://github.com/moparisthebest/pacman
synced 2024-12-24 08:48:50 -05:00
0d2600c575
This is not something that should be used on a frequent basis, and giving it a short option encourages use without making the drawbacks obvious. For the 1% of situations that require it, the 5 extra keystrokes are a fair price to pay. Signed-off-by: Dan McGee <dan@archlinux.org>
15 lines
390 B
Python
15 lines
390 B
Python
self.description = "Install a package with a filesystem conflict (--force)"
|
|
|
|
p = pmpkg("dummy")
|
|
p.files = ["bin/dummy", "usr/man/man1/dummy.1"]
|
|
self.addpkg(p)
|
|
|
|
self.filesystem = ["bin/dummy"]
|
|
|
|
self.args = "-U --force %s" % p.filename()
|
|
|
|
self.addrule("PACMAN_RETCODE=0")
|
|
self.addrule("PKG_EXIST=dummy")
|
|
self.addrule("FILE_MODIFIED=bin/dummy")
|
|
self.addrule("FILE_EXIST=usr/man/man1/dummy.1")
|