pin-generation/scripts/get_source_name.py

10 lines
122 B
Python
Raw Normal View History

#!/usr/bin/python3
import sys
import apt
pkgname = sys.argv[1]
c = apt.Cache()
print(c[pkgname].candidate.source_name)