mirror of
https://github.com/moparisthebest/pacman
synced 2024-11-16 06:15:08 -05:00
20 lines
419 B
Python
20 lines
419 B
Python
|
self.description = "Install a package (wrong architecture, auto)"
|
||
|
|
||
|
import os
|
||
|
machine = os.uname()[4]
|
||
|
|
||
|
p = pmpkg("dummy")
|
||
|
p.files = ["bin/dummy",
|
||
|
"usr/man/man1/dummy.1"]
|
||
|
p.arch = machine + 'wrong'
|
||
|
self.addpkg(p)
|
||
|
|
||
|
self.option["Architecture"] = ['auto']
|
||
|
|
||
|
self.args = "-U %s" % p.filename()
|
||
|
|
||
|
self.addrule("PACMAN_RETCODE=1")
|
||
|
self.addrule("!PKG_EXIST=dummy")
|
||
|
for f in p.files:
|
||
|
self.addrule("!FILE_EXIST=%s" % f)
|