mirror of
https://github.com/moparisthebest/pacman
synced 2024-11-01 16:15:04 -04:00
bd7eb9475c
for and is a dependency of another package. (upgrade057) * Removed man2html stuff from doc/Makefile.am. * Patch: improved depends checking in _alpm_checkdeps Nagy Gabor <ngaba@petra.hos.u-szeged.hu> * Slight revisions to pmrule.py to allow for a PKG_PROVIDES test. * Very quick updates to the pactest README. * Added rules to some of the newer upgrade tests. Note: upgrade055 now fails due to requiredby entries not being written packages that are dependencies in a provides role.
21 lines
497 B
Python
21 lines
497 B
Python
self.description = "Upgrade a package with dependency on provided package (same)"
|
|
|
|
lp1 = pmpkg("pkg1")
|
|
lp1.depends = ["imaginary"]
|
|
self.addpkg2db("local", lp1)
|
|
|
|
lp2 = pmpkg("pkg2")
|
|
lp2.provides = ["imaginary", "real"]
|
|
self.addpkg2db("local", lp2)
|
|
|
|
p = pmpkg("pkg1", "1.0-2")
|
|
p.depends = ["imaginary"]
|
|
self.addpkg(p)
|
|
|
|
self.args = "-U %s" % p.filename()
|
|
|
|
self.addrule("PACMAN_RETCODE=0")
|
|
self.addrule("PKG_VERSION=pkg1|1.0-2")
|
|
self.addrule("PKG_EXIST=pkg2")
|
|
self.addrule("PKG_REQUIREDBY=pkg2|pkg1")
|