blob: ec569410af67408b1ecd6e97622260a1330a8743 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
#!/usr/bin/python3
import os
import opk, cfg, opkgcl
opk.regress_init()
o = opk.OpkGroup()
o.add(Package="a", Version="1.0", Recommends="b")
o.add(Package="b", Version="2.0")
o.write_opk()
o.write_list()
# prime the status file so 'b' is not installed as a recommendation
status_filename = "{}/usr/lib/opkg/status".format(cfg.offline_root)
f = open(status_filename, "w")
f.write("Package: b\n")
f.write("Version: 1.0\n")
f.write("Architecture: all\n")
f.write("Status: deinstall hold not-installed\n")
f.close()
opkgcl.update()
opkgcl.install("a")
if opkgcl.is_installed("b"):
print(__file__, ": Package 'b' installed despite "
"deinstall/hold status.")
exit(False)
opkgcl.remove("a")
opkgcl.install("a")
if opkgcl.is_installed("b"):
print(__file__, ": Package 'b' installed - deinstall/hold status "
"not retained.")
exit(False)
opkgcl.remove("a")
open(status_filename, "w").close()
|