mirror of
https://github.com/moparisthebest/pacman
synced 2024-11-01 16:15:04 -04:00
2a7101c049
This is the symmetric of --asdeps, install packages explicitly. Documentation and completion files were updated accordingly. Added sync301.py and upgrade032.py pactest files to test this. I also made a little modification in ALLDEPS handling too. Signed-off-by: Nagy Gabor <ngaba@bibl.u-szeged.hu> Signed-off-by: Chantry Xavier <shiningxc@gmail.com>
20 lines
464 B
Python
20 lines
464 B
Python
self.description = "Sync packages explicitly"
|
|
|
|
lp1 = pmpkg("pkg1")
|
|
lp1.reason = 1
|
|
self.addpkg2db("local", lp1)
|
|
|
|
p1 = pmpkg("pkg1", "1.0-2")
|
|
p2 = pmpkg("pkg2", "1.0-2")
|
|
|
|
for p in p1, p2:
|
|
self.addpkg2db("sync", p)
|
|
|
|
self.args = "-S --asexplicit %s" % " ".join([p.name 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|0")
|
|
self.addrule("PKG_REASON=pkg2|0")
|