mirror of
https://github.com/moparisthebest/pacman
synced 2024-11-11 20:05:07 -05:00
af357d6ab0
The bulk of this commit is adding new tests to ensure the new behavior works without disrupting old behavior. This is a relatively sane maneuver when a package adds a conf file (e.g. '/etc/mercurial/hgrc') that was not previously in the package, but it is placed in the backup array. In essence, we can treat the existing file as having always been a part of the package and do our normal compare/install as pacnew logic checks. Signed-off-by: Dan McGee <dan@archlinux.org>
23 lines
626 B
Python
23 lines
626 B
Python
self.description = "Upgrade a package, with a file entering the pkg in 'backup' (unchanged)"
|
|
|
|
self.filesystem = ["etc/dummy.conf"]
|
|
|
|
lp = pmpkg("dummy")
|
|
lp.files = ["usr/bin/dummy"]
|
|
self.addpkg2db("local", lp)
|
|
|
|
p = pmpkg("dummy", "1.0-2")
|
|
p.files = ["usr/bin/dummy",
|
|
"etc/dummy.conf"]
|
|
p.backup = ["etc/dummy.conf"]
|
|
self.addpkg(p)
|
|
|
|
self.args = "-U %s" % p.filename()
|
|
|
|
self.addrule("PACMAN_RETCODE=0")
|
|
self.addrule("PKG_VERSION=dummy|1.0-2")
|
|
self.addrule("!FILE_PACNEW=etc/dummy.conf")
|
|
self.addrule("!FILE_PACSAVE=etc/dummy.conf")
|
|
self.addrule("!FILE_PACORIG=etc/dummy.conf")
|
|
self.addrule("FILE_EXIST=etc/dummy.conf")
|