mirror of
https://github.com/moparisthebest/pacman
synced 2024-11-10 11:35:00 -05:00
14203d77f4
This was a stupid and unimportant regression caused by commit
4476598e4e
.
When libdownload is not available, a xfercommand is needed for this pactest
to run properly.
Signed-off-by: Xavier Chantry <shiningxc@gmail.com>
Signed-off-by: Dan McGee <dan@archlinux.org>
19 lines
410 B
Python
19 lines
410 B
Python
self.description = "Synchronize the local database"
|
|
|
|
if not "download" in "@LIBS@":
|
|
self.option['XferCommand'] = ['/usr/bin/curl %u > %o']
|
|
|
|
sp1 = pmpkg("spkg1", "1.0-1")
|
|
sp1.depends = ["spkg2"]
|
|
sp2 = pmpkg("spkg2", "2.0-1")
|
|
sp2.depends = ["spkg3"]
|
|
sp3 = pmpkg("spkg3", "3.0-1")
|
|
sp3.depends = ["spkg1"]
|
|
|
|
for sp in sp1, sp2, sp3:
|
|
self.addpkg2db("sync", sp)
|
|
|
|
self.args = "-Sy"
|
|
|
|
self.addrule("PACMAN_RETCODE=0")
|