pika-debian-bleedingedge/gen-apt-config.py

76 lines
2.1 KiB
Python
Raw Normal View History

2024-07-15 13:55:56 +02:00
#! /bin/python3
import os, errno
import apt_pkg
import apt
import json
_APT_CONFIG_PIN="""Package: {PACKAGES}
Pin: release a=experimental
Pin-Priority: 500
"""
def silentremove(filename):
try:
os.remove(filename)
except OSError as e: # this would be "except OSError, e:" before Python 2.6
if e.errno != errno.ENOENT: # errno.ENOENT = no such file or directory
raise # re-raise exception if a different error occurred
current_path = os.path.dirname(os.path.realpath(__file__))
srcnames_files = [open(current_path + "/package_srcnames/" + filename) for filename in os.listdir(current_path + "/package_srcnames/")]
srcname_lines = []
pkgname_lines = []
cache = apt.Cache()
for file in srcnames_files:
for line in file.readlines():
srcname = line.strip()
srcname_lines.append(srcname)
srcrecords = apt_pkg.SourceRecords()
srcrec = srcrecords.lookup(srcname)
if srcrec:
bins = srcrecords.binaries
for bin in bins:
pkgname_lines.append(bin)
file.close()
2024-07-15 14:41:11 +02:00
with open (current_path + "/package_srcnames/package_pkgnames_overrides") as file:
lines = file.readlines()
for line in lines:
pkgname_lines.append(line.strip())
file.close()
2024-07-15 13:55:56 +02:00
src_data = {
'source_names': [source_name for source_name in srcname_lines],
}
pkg_data = {
'package_names': [pkg_name for pkg_name in pkgname_lines]
}
apt_pin_packages = ""
for pkg in pkgname_lines:
apt_pin_packages += (pkg + " ")
2024-07-15 14:20:03 +02:00
apt_pin_packages += (pkg + "t64 ")
2024-07-15 13:55:56 +02:00
silentremove("0-debian-exp-overrides")
with open("0-debian-exp-overrides", "w") as file:
debian_exp_override_file = _APT_CONFIG_PIN.format(
PACKAGES=apt_pin_packages,
)
file.write(debian_exp_override_file)
silentremove("exp_src_names.json")
with open("exp_src_names.json", "w") as twitterDataFile:
twitterDataFile.write(
json.dumps(src_data, indent=4)
)
silentremove("exp_pkg_names.json")
with open("exp_pkg_names.json", "w") as twitterDataFile:
twitterDataFile.write(
json.dumps(pkg_data, indent=4)
)