mirror of
https://github.com/moparisthebest/pacman
synced 2024-11-02 08:35:06 -04:00
53fc745aed
remove047 : Remove a package required by other packages conflict004 : a package conflicts with itself http://www.archlinux.org/pipermail/pacman-dev/2007-August/009077.html sync400 : Install package with dep that conflicts with older version of package sync401 : Ensure we choose provider already in target list http://www.archlinux.org/pipermail/pacman-dev/2007-July/009041.html sync402/sync403 (failing) : Choice between two providers http://www.archlinux.org/pipermail/pacman-dev/2007-July/008787.html Signed-off-by: Chantry Xavier <shiningxc@gmail.com>
16 lines
381 B
Python
16 lines
381 B
Python
self.description = "a package conflicts with itself"
|
|
|
|
sp1 = pmpkg("pkg1")
|
|
sp1.conflicts = ["pkg1"]
|
|
self.addpkg2db("sync", sp1);
|
|
|
|
sp2 = pmpkg("pkg2", "1.0-2")
|
|
self.addpkg2db("sync", sp2)
|
|
|
|
self.args = "-S %s" % " ".join([p.name for p in sp1, sp2])
|
|
|
|
self.addrule("PACMAN_RETCODE=0")
|
|
self.addrule("PKG_EXIST=pkg1")
|
|
self.addrule("PKG_EXIST=pkg2")
|
|
self.addrule("PKG_VERSION=pkg2|1.0-2")
|