From 807c63e68c94f979e328afeeb92474e62751a4b1 Mon Sep 17 00:00:00 2001 From: Timothée Ravier Date: Jan 18 2025 16:04:04 +0000 Subject: [PATCH 1/3] COSMIC: Add fedora-release & ostree-desktop packages Needed to get the polkit rules for rpm-ostree unprivileged access. Reported-in: Reported-by: https://discussion.fedoraproject.org/t/initial-fedora-cosmic-atomic-image-ready-for-testing/133163/38 --- diff --git a/cosmic-atomic.yaml b/cosmic-atomic.yaml index bb79aeb..b3ac9be 100644 --- a/cosmic-atomic.yaml +++ b/cosmic-atomic.yaml @@ -13,6 +13,9 @@ rojig: license: MIT packages: + # Generic release package for desktop variants + - fedora-release + - fedora-release-ostree-desktop # Portals for Flatpak - xdg-desktop-portal-gtk # Include GUI to manage updates & Flatpaks From 495e1b118731972d31c817116862ff95139361be Mon Sep 17 00:00:00 2001 From: Timothée Ravier Date: Jan 19 2025 16:12:07 +0000 Subject: [PATCH 2/3] comps-sync f42 2025-01-19 See: https://pagure.io/fedora-comps/pull-request/1072 --- diff --git a/cosmic-atomic-packages.yaml b/cosmic-atomic-packages.yaml index 79dc949..5a6331b 100644 --- a/cosmic-atomic-packages.yaml +++ b/cosmic-atomic-packages.yaml @@ -9,6 +9,7 @@ packages: - gnome-disk-utility - gnome-keyring-pam - gnome-system-monitor + - initial-setup-gui - mesa-dri-drivers - mesa-vulkan-drivers - plymouth-system-theme From dd2eeec3b51d89b79645225a0cb78c71f81b60ae Mon Sep 17 00:00:00 2001 From: Timothée Ravier Date: Jan 19 2025 16:12:07 +0000 Subject: [PATCH 3/3] ci/validate: Do not validate .github content --- diff --git a/ci/validate b/ci/validate index 8660ee1..c9e6a32 100755 --- a/ci/validate +++ b/ci/validate @@ -21,8 +21,8 @@ def validate_shell(rootfd, name): for root, dirs, files, rootfd in os.fwalk('.'): - # Skip .git, repo, cache, tmp, logs, fedora-comps - for d in ['.git', 'repo', 'cache', 'tmp', 'logs', 'fedora-comps']: + # Skip folders that do not include content to validate + for d in ['.git', '.github', 'repo', 'cache', 'tmp', 'logs', 'fedora-comps']: if d in dirs: dirs.remove(d) for f in ['.gitlab-ci.yml']: