git » repo-mgmt.git » main » tree

[main] / fix-missing-sig.py

#!/usr/bin/env python3

import os
import sys
import subprocess
from subprocess import DEVNULL, PIPE, STDOUT

class Return:
    def __init__(self, rv, out=None):
        self.rv = rv
        self.out = out
    def __bool__(self):
        return self.rv == 0
    def __int__(self):
        return self.rv
    def __str__(self):
        if self.out:
            return self.out
        return str(self.rv)

def sub(*args, **kwargs):
    c = subprocess.run(*args, **kwargs)
    return Return(c.returncode, c.stdout)

def subc(*args, **kwargs):
    c = subprocess.run(*args, **kwargs)
    if c.returncode != 0:
        print("subprocess failed: ", args)
        print("code:", c.returncode)
        sys.exit(1)
    return Return(c.returncode, c.stdout)


releasepkg="/mnt/nfs/pkg"
os.chdir("/sources")
subc("mountpoint -q pkg && umount pkg || true", shell=True)

os.chdir(releasepkg)

sigbases={}
sigcount=0
bases={}
count=0
for root, dirs, files in os.walk('.'):
	for name in files:
		if name.endswith('.pkg.tar.xz.sig'):
			if root not in sigbases.keys():
				sigbases[root] = []
			sigbases[root].append(name[:-4])
			sigcount+=1
		if name.endswith('.pkg.tar.xz'):
			if root not in bases.keys():
				bases[root] = []
			bases[root].append(name)
			count+=1
			#print(os.path.join(root, name))

print(count, sigcount)

if sigcount >= count:
	sys.exit(0)

print(f"Found {count} packages in these repos:")
for k in bases.keys():
	_,arch,repo = k.split('/')
	print(f"{arch}:{repo}")

input("Press enter to continue.")

repobases={}
sigcnt=0
signifycmd=["asignify", "sign", "-Nn", "-S", ".sig", "/etc/pacman.d/keys/armlfs-release-key"]
for k in bases.keys():
	for f in bases[k]:
		if k not in sigbases.keys() or f not in sigbases[k]:
			signifycmd.append(os.path.join(k,f))
			sigcnt+=1
			if k not in repobases.keys():
				repobases[k] = []
			repobases[k].append(f)
				

print(sigcnt)

print("Signing packages (prepare for password entry)")
os.chdir(releasepkg)
subc(signifycmd)

print("Re-adding packages to repos")
for k in repobases.keys():
	_,arch,repo = k.split('/')
	# Do not use "-R": we will cleanup the release repo
	# with other methods when that becomes relevant, later.
	# - the point is _not_ to hit users with a 404 if they have not synced lately.
	# (that is one of the _big_ "i hate living here" moments for me on Arch, so i'd rather not replicate it.)
	repocmd = ["repo-add", repo + '.db.tar.gz' ]
	for f in repobases[k]:
		repocmd.append(f)
	os.chdir(os.path.join(releasepkg, k))
	#print(arch,repo, len(repocmd))
	print(f"{arch}:{repo}")
	subc(repocmd)