Lines Matching full:line
36 for line in fileinput.input(args):
37 line = line.rstrip() variable
38 if ': ' in line:
39 if line.startswith("Package:"):
40 pkg = line.split(": ")[1]
44 if line.startswith("Architecture:"):
45 arch = line.split(": ")[1]
48 if line.startswith("Version:"):
49 ver = line.split(": ")[1]
50 elif line.startswith("Architecture:"):
51 arch = line.split(": ")[1]
54 if line.startswith("Version:"):
55 ver = line.split(": ")[1]
56 elif line.startswith("Architecture:"):
57 arch = line.split(": ")[1]
60 if line.startswith("Depends:"):
61 depval = line.split(": ")[1]
66 elif line.startswith("Recommends:"):
67 recval = line.split(": ")[1]