mirror of
https://github.com/moparisthebest/pacman
synced 2024-11-01 16:15:04 -04:00
a1e57cbec8
This replaces the former -D operation that was undocumented and rather hacky. It can be used with add, upgrade, or sync transactions and will affect all packages installed. Should close FS #7193. Also tell makepkg to use this new flag. Signed-off-by: Dan McGee <dan@archlinux.org>
20 lines
462 B
Python
20 lines
462 B
Python
self.description = "Install packages non-explicitly"
|
|
|
|
lp1 = pmpkg("pkg1")
|
|
lp1.reason = 0
|
|
self.addpkg2db("local", lp1)
|
|
|
|
p1 = pmpkg("pkg1", "1.0-2")
|
|
p2 = pmpkg("pkg2", "1.0-2")
|
|
|
|
for p in p1, p2:
|
|
self.addpkg(p)
|
|
|
|
self.args = "-U --asdeps %s" % " ".join([p.filename() for p in p1, p2])
|
|
|
|
self.addrule("PACMAN_RETCODE=0")
|
|
self.addrule("PKG_VERSION=pkg1|1.0-2")
|
|
self.addrule("PKG_VERSION=pkg2|1.0-2")
|
|
self.addrule("PKG_REASON=pkg1|1")
|
|
self.addrule("PKG_REASON=pkg2|1")
|