mirror of
https://github.com/moparisthebest/pacman
synced 2024-11-17 14:55:07 -05:00
bf46e04614
Instead, go the same route we have always taken with version-release in libalpm and treat it all as one piece of information. Makepkg is the only script that knows about epoch as a distinct value; from there on out we will parse out the components as necessary. This makes the code a lot simpler as far as epoch handling goes. The downside here is that we are tossing some compatibility to the wind; packages using force will have to be rebuilt with an incremented epoch to keep their special status. Signed-off-by: Dan McGee <dan@archlinux.org>
14 lines
305 B
Python
14 lines
305 B
Python
self.description = "Sysupgrade with a force and ignore on same package"
|
|
|
|
lp = pmpkg("dummy", "1.0-1")
|
|
|
|
self.addpkg2db("local", lp)
|
|
|
|
sp = pmpkg("dummy", "1:1.0-2")
|
|
self.addpkg2db("sync", sp)
|
|
|
|
self.args = "-Su --ignore %s" % lp.name
|
|
|
|
self.addrule("PACMAN_RETCODE=0")
|
|
self.addrule("PKG_VERSION=dummy|1.0-1")
|