From 06a1020230556075e4e9339656d8758b22241307 Mon Sep 17 00:00:00 2001 From: nazunalika Date: Wed, 29 Sep 2021 16:32:39 -0700 Subject: [PATCH] add rockypi variant --- rockypi.conf | 58 ++++++++++++++++++++++++++++++++++++ scripts/updates-8-rockypi.sh | 19 ++++++++++++ variants-rockyrpi.xml | 9 ++++++ 3 files changed, 86 insertions(+) create mode 100644 rockypi.conf create mode 100755 scripts/updates-8-rockypi.sh create mode 100644 variants-rockyrpi.xml diff --git a/rockypi.conf b/rockypi.conf new file mode 100644 index 0000000..64971fd --- /dev/null +++ b/rockypi.conf @@ -0,0 +1,58 @@ +release_name = "Rocky Linux Rasperry Pi" +release_short = "rockyrpi" +release_version = "8" +release_is_layered = False + +variants_file='variants-rockyrpi.xml' +sigkeys = ['6D745A60'] +create_jigdo = False + +pkgset_source='koji' + +pkgset_koji_tag='rpi-el8-compose' +gather_method = { + '^.*': { # For all variants + 'comps': 'nodeps', # resolve dependencies for packages from comps file + 'module': 'nodeps', # but not for packages from modules + } +} + +gather_backend = 'dnf' +greedy_method = 'build' +koji_profile = "koji" + +check_deps = False + +createrepo_deltas = False +createrepo_database = True +createrepo_c = True +createrepo_checksum = "sha256" +createrepo_use_xz = True +createrepo_num_threads = 8 +createrepo_num_workers = 8 +createrepo_extra_args = ['--distro=cpe:/o:rocky:rocky:8,Rocky Linux 8', '--revision=8.4'] +hashed_directories = True + +filter_packages = [ + ('^extras$', { + '*': [ + '*', + ], + }), +] + +additional_packages = [ + ('^nfv$', { + '*': [ + '*', + ], + }), +] + +createiso_skip = [ + + ('^extras$', { + '*': True, + 'src': True + }), +] diff --git a/scripts/updates-8-rockypi.sh b/scripts/updates-8-rockypi.sh new file mode 100755 index 0000000..4ba591d --- /dev/null +++ b/scripts/updates-8-rockypi.sh @@ -0,0 +1,19 @@ +#!/bin/bash + +source "$(dirname "$0")/common-8" +TARGET_DIR="/mnt/compose/8" +SHORT=rockypi +CONFIG=/etc/pungi-prod/rockypi.conf +# Unused for now +OLDCOMPOSE_ID=$(cat $TARGET_DIR/latest-$SHORT-8/COMPOSE_ID) +SKIP="--skip-phase buildinstall --skip-phase createiso --skip-phase extra_isos --skip-phase productimg" +LABEL="--production --no-label" +CMD="pungi-koji --config=$CONFIG --old-composes=$TARGET_DIR $OLD_COMPOSES_DIR $SKIP $LABEL" + +if [ -z "$COMPOSE_ID" ]; then + CMD="$CMD --target-dir=$TARGET_DIR" +else + CMD="$CMD --debug-mode --compose-dir=$TARGET_DIR/$COMPOSE_ID" +fi + +time $CMD diff --git a/variants-rockyrpi.xml b/variants-rockyrpi.xml new file mode 100644 index 0000000..d065d02 --- /dev/null +++ b/variants-rockyrpi.xml @@ -0,0 +1,9 @@ + + + + + + aarch64 + + +