1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101
|
#!/usr/bin/python
import os
import json
import hashlib
import gi
gi.require_version('Modulemd', '1.0')
from gi.repository import Modulemd
MODULES_DIR = os.path.join(os.path.dirname(__file__), "..", "modules")
SPECS_DIR = os.path.join(os.path.dirname(__file__), "..", "specs")
def parse_module_id(module_id):
return module_id.rsplit("-", 2)
for module_id in os.listdir(MODULES_DIR):
if module_id.startswith("_"):
continue
name, stream, version = parse_module_id(module_id)
profiles_file = os.path.join(SPECS_DIR, module_id, "profiles.json")
if os.path.isfile(profiles_file):
with open(profiles_file, "r") as f:
profiles = json.load(f)
else:
profiles = {}
for arch in os.listdir(os.path.join(MODULES_DIR, module_id)):
if arch == "noarch":
continue
module_dir = os.path.join(MODULES_DIR, module_id, arch)
rpms = [i for i in os.listdir(module_dir) if i.endswith(".rpm")]
noarch_module_dir = os.path.join(MODULES_DIR, module_id, "noarch")
if os.path.isdir(noarch_module_dir):
noarch_rpms = [i for i in os.listdir(noarch_module_dir) if i.endswith(".rpm")]
else:
noarch_rpms = []
rpms = sorted(set(rpms) | set(noarch_rpms))
# HACK: force epoch to make test data compatible with libmodulemd >= 1.4.0
rpms_with_epoch = []
for i in rpms:
n, v, ra = i.rsplit("-", 2)
nevra = "%s-0:%s-%s" % (n, v, ra)
rpms_with_epoch.append(nevra)
rpms = rpms_with_epoch
mmd = Modulemd.Module()
mmd.set_mdversion(int(2))
mmd.set_name(name)
mmd.set_stream(stream)
mmd.set_version(int(version))
# context is set later, computed from runtime deps
mmd.set_arch(arch)
sset = Modulemd.SimpleSet()
sset.add("LGPLv2")
mmd.set_module_licenses(sset)
mmd.set_summary("Fake module")
mmd.set_description(mmd.get_summary())
artifacts = Modulemd.SimpleSet()
for rpm in rpms:
#mmd.add_module_component(rpm.rsplit("-", 2)[0], "")
artifacts.add(rpm[:-4])
mmd.set_rpm_artifacts(artifacts)
for profile_name in profiles:
profile = Modulemd.Profile()
profile.set_name(profile_name)
profile_rpms = Modulemd.SimpleSet()
profile_rpms.set(profiles[profile_name]["rpms"])
profile.set_rpms(profile_rpms)
mmd.add_profile(profile)
if name == "httpd":
dependencies = Modulemd.Dependencies()
if stream == "2.4":
dependencies.add_requires_single("base-runtime", "f26")
elif stream == "2.2":
dependencies.add_requires("base-runtime", [])
mmd.add_dependencies(dependencies)
# iterate through all deps and create context hash in a repeatable manner
context_hash = hashlib.sha256()
for dependencies in mmd.peek_dependencies():
for dep_name, dep_streams in dependencies.peek_requires().items():
if dep_streams:
for dep_stream in dep_streams.get():
context_hash.update("%s:%s" % (dep_name, dep_stream))
else:
context_hash.update(dep_name)
mmd.set_context(context_hash.hexdigest()[:8])
Modulemd.dump([mmd], os.path.join(module_dir, "%s.%s.yaml" % (module_id, arch)))
|