blob: 415d5493758417cba4087966ad137cd3aacba15a (
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
|
import os
from subprocess import getstatusoutput
def deptopackage(dep):
incpaths = ["/usr/include", "/usr/local/include"]
depname = os.path.split(dep)[1]
(statuscode,packagestr) = getstatusoutput("qfile -C " + depname)
if not statuscode == 0:
print("something went wrong...") #have it print a more useful error!
return
packagelst = packagestr.split()
package = []
n = 0
for depfile in packagelst[1::2]:
for incpath in incpaths:
if depfile.strip("()") == (incpath + "/" + dep):
package.append(packagelst[n])
n += 2
if len(package) > 1:
print("more than one matching package where found!")
return package
|