mirror of
https://github.com/moparisthebest/pacman
synced 2024-11-10 11:35:00 -05:00
882bff36ac
"Foo replaces bar" simply means that "foo is a new version of bar". So this patch refactors the code to use this "rule". _alpm_sync_sysupgrade now does the following for each local package [bar] (pseudo-code): for db in syncdbs { if(db contains bar) {check if db/bar is an upgrade; break;} replacers = find(bar replacers in db); if(replacers!=NULL) {ask_user; break;} } Note: 1. Replacers are grouped per repo. If more than one package replace bar in a repo, all of them are considered ("package set of bar replacers"). 2. If repo1/foo1 and repo2/foo2 both replaces bar, only repo1/foo1 is considered (if repo1 stands before repo2 in pacman.conf). FS#11737 is fixed. 3. It can happen that pacman doesn't consider any replacer, if it found a literal "earlier", so sync132.py modified accordingly (btw, that situation should not appear irl). The new sysupgrade code doesn't use sync_newversion(), so I removed the "local is newer than repo" message, which was annoying with -Qu and SyncFirst. Signed-off-by: Nagy Gabor <ngaba@bibl.u-szeged.hu> Signed-off-by: Dan McGee <dan@archlinux.org>
19 lines
369 B
Python
19 lines
369 B
Python
self.description = "Sysupgrade with a replacement for a local package out of date"
|
|
|
|
sp1 = pmpkg("pkg1")
|
|
sp1.replaces = ["pkg2"]
|
|
sp2 = pmpkg("pkg2", "2.0-1")
|
|
|
|
for p in sp1, sp2:
|
|
self.addpkg2db("sync", p)
|
|
|
|
lp = pmpkg("pkg2")
|
|
|
|
self.addpkg2db("local", lp)
|
|
|
|
self.args = "-Su"
|
|
|
|
self.addrule("PACMAN_RETCODE=0")
|
|
self.addrule("!PKG_EXIST=pkg1")
|
|
self.addrule("PKG_EXIST=pkg2")
|