mirror of
https://github.com/moparisthebest/pacman
synced 2024-11-02 00:25:07 -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.
22 lines
515 B
Python
22 lines
515 B
Python
self.description = "Upgrade to a package that provides less than before"
|
|
|
|
lp1 = pmpkg("pkg1")
|
|
lp1.depends = ["imaginary"]
|
|
self.addpkg2db("local", lp1)
|
|
|
|
lp2 = pmpkg("pkg2")
|
|
lp2.provides = ["imaginary", "real"]
|
|
lp2.requiredby = [ "pkg1" ]
|
|
self.addpkg2db("local", lp2)
|
|
|
|
p = pmpkg("pkg2", "1.0-2")
|
|
p.provides = ["real"]
|
|
self.addpkg(p)
|
|
|
|
self.args = "-U %s" % p.filename()
|
|
|
|
self.addrule("PACMAN_RETCODE=1")
|
|
self.addrule("PKG_EXIST=pkg1")
|
|
self.addrule("PKG_VERSION=pkg2|1.0-1")
|
|
self.addrule("PKG_PROVIDES=pkg2|imaginary")
|