summaryrefslogtreecommitdiffstats
path: root/tests/old/test_enhances.py
blob: 79aad9ad9128d2ebcdee6cc5979d4029709cb07d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/usr/bin/python3

import apt

cache = apt.Cache()

for pkg in cache:
    if pkg.installed and pkg.installed.enhances:
        s = "%s enhances:" % pkg.name
        for or_list in pkg.installed.enhances:
            for enhances in or_list.or_dependencies:
                s += " %s" % enhances.name
                if enhances.name in cache and not cache[enhances.name].is_installed:
                    s += "(*missing*) "
                s += ","
            print(s[:-1])