pika-debian-bleedingedge/get_source_name.py
Ward from fusion-voyager-3 3d8600e863 add multithreading support
2024-08-04 20:15:06 +03:00

10 lines
122 B
Python
Executable File

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