From f603d91c00007e963d84f5e7bcc964b8b8b92707 Mon Sep 17 00:00:00 2001 From: Stephen Date: Mon, 16 Feb 2026 20:20:55 -0500 Subject: [PATCH 1/4] feat: switch to bluefin base and add terminal/tooling defaults Adopt Bluefin stable as the base image, replace Ptyxis with Ghostty, and add Helium + 1Password at build time for a cleaner daily-driver setup. Extend default Homebrew tooling for editor, AI CLI, and JS workflow needs while preserving Bluefin-compatible install patterns. Assisted-by: openai/gpt-5.3-codex via OpenCode --- Containerfile | 4 +- README.md | 8 +- bluefin-package-baseline-recommendation.md | 81 + bluefin-package-diff-prioritized.md | 433 +++++ bluefin-package-diff.md | 397 +++++ build/10-build.sh | 26 +- custom/brew/default.Brewfile | 8 + software-inventory.md | 1681 ++++++++++++++++++++ 8 files changed, 2631 insertions(+), 7 deletions(-) create mode 100644 bluefin-package-baseline-recommendation.md create mode 100644 bluefin-package-diff-prioritized.md create mode 100644 bluefin-package-diff.md create mode 100644 software-inventory.md diff --git a/Containerfile b/Containerfile index f58d6ab..faed507 100644 --- a/Containerfile +++ b/Containerfile @@ -44,8 +44,8 @@ COPY custom /custom COPY --from=ghcr.io/projectbluefin/common:latest /system_files /oci/common COPY --from=ghcr.io/ublue-os/brew:latest /system_files /oci/brew -# Base Image - GNOME included -FROM ghcr.io/ublue-os/silverblue-main:latest +# Base Image - Bluefin GNOME included +FROM ghcr.io/ublue-os/bluefin:stable ## Alternative base images, no desktop included (uncomment to use): # FROM ghcr.io/ublue-os/base-main:latest diff --git a/README.md b/README.md index 8251d7e..e30e20a 100644 --- a/README.md +++ b/README.md @@ -12,13 +12,13 @@ This template uses the **multi-stage build architecture** from , combining resou ## What Makes This BlueForge Different? -This image is based on `ghcr.io/ublue-os/silverblue-main:latest` and keeps the Bluefin-style multi-stage architecture while pre-wiring practical defaults so a new repository can bootstrap quickly. +This image is based on `ghcr.io/ublue-os/bluefin:stable` and keeps the Bluefin-style multi-stage architecture while pre-wiring practical defaults so a new repository can bootstrap quickly. ### Added Packages (Build-time) -- **System packages**: none added yet by default (template stays minimal) +- **System packages**: Ghostty (default terminal), Helium (`helium-bin`), and 1Password for secure sign-in/workflow setup ### Added Applications (Runtime) -- **CLI Tools (Homebrew)**: `bat`, `eza`, `fd`, `rg`, `gh`, `git`, `starship`, `zoxide`, `htop`, `tmux` for productivity and day-one terminal workflows +- **CLI Tools (Homebrew)**: `bat`, `eza`, `fd`, `rg`, `gh`, `git`, `neovim`, `bun`, `nvm`, `claude-code`, `opencode`, `starship`, `zoxide`, `htop`, `tmux` for productivity and day-one terminal workflows - **GUI Apps (Flatpak)**: Firefox, Thunderbird, GNOME utilities, Flatseal, Mission Center, Warehouse, and selected Universal Blue tools for a complete first-boot desktop ### Removed/Disabled @@ -29,7 +29,7 @@ This image is based on `ghcr.io/ublue-os/silverblue-main:latest` and keeps the B - Enables `podman.socket` during image build - Copies Bluefin shared `ujust` files and layers custom `ujust`, Brewfiles, and Flatpak preinstall manifests into the image -*Last updated: 2026-02-16* +*Last updated: 2026-02-17* ## Guided Copilot Mode diff --git a/bluefin-package-baseline-recommendation.md b/bluefin-package-baseline-recommendation.md new file mode 100644 index 0000000..9abeb8b --- /dev/null +++ b/bluefin-package-baseline-recommendation.md @@ -0,0 +1,81 @@ +# Recommended Baseline Selection (Balanced Daily Driver + Dev) + +Generated: 2026-02-16 + +This is a curated starter subset from `bluefin-package-diff.md` to keep the image useful without pulling in every Bluefin extra. + +Selection goals: +- Improve desktop usability for daily use +- Add practical shell/dev tooling +- Avoid hardware-specific drivers and heavy enterprise stacks by default + +## Recommended to Add Now + +### RPM (build-time, `build/10-build.sh`) + +- [x] `fish` +- [x] `zsh` +- [x] `gnome-tweaks` +- [x] `gnome-shell-extension-gsconnect` +- [x] `nautilus-gsconnect` +- [x] `git-credential-libsecret` +- [x] `firewall-config` +- [x] `iwd` +- [x] `input-remapper` +- [x] `fastfetch` +- [x] `jetbrains-mono-fonts` +- [x] `nerd-fonts` + +### Homebrew (runtime, `custom/brew/default.Brewfile`) + +- [x] `atuin` +- [x] `direnv` +- [x] `mise` +- [x] `yq` +- [x] `tealdeer` +- [x] `trash-cli` +- [x] `micro` +- [x] `helix` +- [x] `nvim` +- [x] `claude-code` +- [x] `codex` +- [x] `copilot-cli` +- [x] `gemini-cli` +- [x] `kubectl` +- [x] `helm` +- [x] `k9s` +- [x] `kind` +- [x] `kubectx` +- [x] `syft` +- [x] `grype` +- [x] `nerdctl` + +### Flatpak + +- [x] No additional Bluefin-only Flatpaks needed right now (gap is zero). + +## Recommended to Defer (Add Only If Needed) + +### RPM Defer Buckets + +- [ ] Hardware-specific kernel modules (`kmod-*`, `zfs`, `openrazer`, etc.) +- [ ] Enterprise auth/network stack (`adcli`, `sssd`, `realmd`, `krb5-*`) +- [ ] Full toolchain/debug packages (`*-devel`, `*-debuginfo`, compilers) unless building locally on host + +### Homebrew Defer Buckets + +- [ ] Large Kubernetes/platform suite (keep only `kubectl`/`helm`/`k9s`/`kind` initially) +- [ ] Extra IDE taps and Linux desktop app taps until you decide your editor stack +- [ ] Wallpaper/font mega-set unless you want full Bluefin visual parity + +## Notes Before Applying + +- `ripgrep` appears in Bluefin list, but your repo already includes `rg` in `custom/brew/default.Brewfile` (same tool formula alias). +- For build-time RPM additions, keep changes surgical and re-test with `just build`. +- After applying changes, update README "What Makes This BlueForge Different?" package sections. + +## Optional Full Defer Lists + +- Remaining RPMs not selected now: **203** +- Remaining Brew entries not selected now: **126** +- See `bluefin-package-diff.md` and `bluefin-package-diff-prioritized.md` for complete checklists. diff --git a/bluefin-package-diff-prioritized.md b/bluefin-package-diff-prioritized.md new file mode 100644 index 0000000..c531926 --- /dev/null +++ b/bluefin-package-diff-prioritized.md @@ -0,0 +1,433 @@ +# Bluefin Gap Prioritized Review + +Generated: 2026-02-16 + +This file reorganizes `bluefin-package-diff.md` into practical decision buckets so you can prune/add faster. + +Legend: +- Keep checklist items checked `[x]` once you decide to add them +- Leave unchecked `[ ]` to skip for now + +## Quick Triage + +- Start with `Desktop UX` + `General Utilities` for user-facing improvements. +- Add `Dev Toolchain` and `Cloud/K8s` only if this image is for development workloads. +- Be cautious with `Hardware/Drivers` and `Enterprise/Network` unless you need them. + +## RPM Missing from This Repo, Grouped by Priority + +### Desktop UX (usually safe, user-visible) + +- Count: **10** +- [ ] `adwaita-fonts-all` +- [ ] `gnome-shell-extension-gsconnect` +- [ ] `gnome-tweaks` +- [ ] `jetbrains-mono-fonts` +- [ ] `jetbrains-mono-fonts-all` +- [ ] `jetbrains-mono-nl-fonts` +- [ ] `nautilus-gsconnect` +- [ ] `nautilus-python` +- [ ] `nerd-fonts` +- [ ] `opendyslexic-fonts` + +### General Utilities (often useful) + +- Count: **153** +- [ ] `argyllcms` +- [ ] `argyllcms-data` +- [ ] `bcache-tools` +- [ ] `binutils` +- [ ] `boost-atomic` +- [ ] `boost-chrono` +- [ ] `boost-filesystem` +- [ ] `boost-program-options` +- [ ] `borgbackup` +- [ ] `cryfs` +- [ ] `davfs2` +- [ ] `dbus-daemon` +- [ ] `dbus-tools` +- [ ] `dbus-x11` +- [ ] `fastfetch` +- [ ] `firewall-config` +- [ ] `fish` +- [ ] `foo2zjs` +- [ ] `foomatic-db-filesystem` +- [ ] `fuse-encfs` +- [ ] `generic-logos` +- [ ] `git` +- [ ] `git-credential-libsecret` +- [ ] `glow` +- [ ] `gsl` +- [ ] `gtksourceview4` +- [ ] `gum` +- [ ] `ifuse` +- [ ] `input-remapper` +- [ ] `iwd` +- [ ] `lcms` +- [ ] `lcms-libs` +- [ ] `libXScrnSaver` +- [ ] `libell` +- [ ] `libgda` +- [ ] `libgda-sqlite` +- [ ] `libgit2` +- [ ] `libi2c` +- [ ] `libkadm5` +- [ ] `libnvpair3` +- [ ] `liboping` +- [ ] `libssh2` +- [ ] `libuutil3` +- [ ] `libvarlink` +- [ ] `libxcrypt-compat` +- [ ] `libzpool6` +- [ ] `llhttp` +- [ ] `lm_sensors` +- [ ] `lsb_release` +- [ ] `m4` +- [ ] `ncurses-term` +- [ ] `neon` +- [ ] `openssh-askpass` +- [ ] `pcp-conf` +- [ ] `pcp-libs` +- [ ] `perl-AutoLoader` +- [ ] `perl-B` +- [ ] `perl-Carp` +- [ ] `perl-Class-Struct` +- [ ] `perl-Data-Dumper` +- [ ] `perl-Digest` +- [ ] `perl-Digest-MD5` +- [ ] `perl-DynaLoader` +- [ ] `perl-Encode` +- [ ] `perl-Errno` +- [ ] `perl-Error` +- [ ] `perl-Exporter` +- [ ] `perl-Fcntl` +- [ ] `perl-File-Basename` +- [ ] `perl-File-Path` +- [ ] `perl-File-Temp` +- [ ] `perl-File-stat` +- [ ] `perl-FileHandle` +- [ ] `perl-Getopt-Long` +- [ ] `perl-Getopt-Std` +- [ ] `perl-Git` +- [ ] `perl-HTTP-Tiny` +- [ ] `perl-IO` +- [ ] `perl-IO-Socket-IP` +- [ ] `perl-IO-Socket-SSL` +- [ ] `perl-IPC-Open3` +- [ ] `perl-MIME-Base32` +- [ ] `perl-MIME-Base64` +- [ ] `perl-NDBM_File` +- [ ] `perl-Net-SSLeay` +- [ ] `perl-POSIX` +- [ ] `perl-PathTools` +- [ ] `perl-Pod-Escapes` +- [ ] `perl-Pod-Perldoc` +- [ ] `perl-Pod-Simple` +- [ ] `perl-Pod-Usage` +- [ ] `perl-Scalar-List-Utils` +- [ ] `perl-SelectSaver` +- [ ] `perl-Socket` +- [ ] `perl-Storable` +- [ ] `perl-Symbol` +- [ ] `perl-Term-ANSIColor` +- [ ] `perl-Term-Cap` +- [ ] `perl-TermReadKey` +- [ ] `perl-Text-ParseWords` +- [ ] `perl-Text-Tabs+Wrap` +- [ ] `perl-Time-Local` +- [ ] `perl-URI` +- [ ] `perl-base` +- [ ] `perl-constant` +- [ ] `perl-if` +- [ ] `perl-interpreter` +- [ ] `perl-lib` +- [ ] `perl-libnet` +- [ ] `perl-libs` +- [ ] `perl-locale` +- [ ] `perl-mro` +- [ ] `perl-overload` +- [ ] `perl-overloading` +- [ ] `perl-parent` +- [ ] `perl-podlators` +- [ ] `perl-vars` +- [ ] `powertop` +- [ ] `pv` +- [ ] `python3-annotated-types` +- [ ] `python3-dns` +- [ ] `python3-email-validator` +- [ ] `python3-llfuse` +- [ ] `python3-msgpack` +- [ ] `python3-pip` +- [ ] `python3-psutil` +- [ ] `python3-pydantic` +- [ ] `python3-pydantic+email` +- [ ] `python3-pydantic-core` +- [ ] `python3-pydbus` +- [ ] `python3-pygit2` +- [ ] `python3-setuptools` +- [ ] `python3-typing-extensions` +- [ ] `python3-typing-inspection` +- [ ] `rclone` +- [ ] `restic` +- [ ] `runc` +- [ ] `setools-console` +- [ ] `spdlog` +- [ ] `sysstat` +- [ ] `tailscale` +- [ ] `tinyxml2` +- [ ] `usbip` +- [ ] `uupd` +- [ ] `waypipe` +- [ ] `xdg-terminal-exec` +- [ ] `xmlrpc-c` +- [ ] `xmlrpc-c-client` +- [ ] `xrandr` +- [ ] `xset` +- [ ] `yyjson` +- [ ] `zenity` +- [ ] `zsh` + +### Dev Toolchain (bigger footprint) + +- Count: **17** +- [ ] `bison` +- [ ] `cmake-filesystem` +- [ ] `elfutils-libelf-devel` +- [ ] `flatpak-debuginfo` +- [ ] `flatpak-debugsource` +- [ ] `flatpak-libs-debuginfo` +- [ ] `flatpak-session-helper-debuginfo` +- [ ] `flex` +- [ ] `gcc` +- [ ] `glibc-devel` +- [ ] `kernel-devel-matched` +- [ ] `kernel-headers` +- [ ] `libxcrypt-devel` +- [ ] `libzstd-devel` +- [ ] `make` +- [ ] `openssl-devel` +- [ ] `zlib-ng-compat-devel` + +### Containers/Virtualization (specialized) + +- Count: **1** +- [ ] `containerd` + +### Hardware/Drivers (device-specific) + +- Count: **16** +- [ ] `ddcutil` +- [ ] `evtest` +- [ ] `framework-laptop-kmod-common` +- [ ] `i2c-tools` +- [ ] `igt-gpu-tools` +- [ ] `kmod-framework-laptop` +- [ ] `kmod-openrazer` +- [ ] `kmod-v4l2loopback` +- [ ] `kmod-xone` +- [ ] `kmod-zfs` +- [ ] `libzfs6` +- [ ] `openrazer-kmod-common` +- [ ] `python3-pyzfs` +- [ ] `v4l2loopback` +- [ ] `xone-kmod-common` +- [ ] `zfs` + +### Enterprise/Network/Auth (org-specific) + +- Count: **18** +- [ ] `adcli` +- [ ] `krb5-pkinit` +- [ ] `krb5-workstation` +- [ ] `libnetapi` +- [ ] `libsss_autofs` +- [ ] `oddjob` +- [ ] `oddjob-mkhomedir` +- [ ] `samba` +- [ ] `samba-common-tools` +- [ ] `samba-dcerpc` +- [ ] `samba-ldb-ldap-modules` +- [ ] `samba-libs` +- [ ] `samba-winbind` +- [ ] `samba-winbind-clients` +- [ ] `samba-winbind-modules` +- [ ] `sssd-ad` +- [ ] `sssd-common-pac` +- [ ] `sssd-krb5` + +## Homebrew Missing from This Repo, Grouped by Priority + +### Editors/IDEs (high impact for dev workflow) + +- Count: **19** +- [ ] `helix` +- [ ] `micro` +- [ ] `microcks/tap/microcks-cli` +- [ ] `nvim` +- [ ] `ublue-os/experimental-tap/clion-linux` +- [ ] `ublue-os/experimental-tap/cursor-linux` +- [ ] `ublue-os/experimental-tap/datagrip-linux` +- [ ] `ublue-os/experimental-tap/dataspell-linux` +- [ ] `ublue-os/experimental-tap/emacs-app-linux` +- [ ] `ublue-os/experimental-tap/goland-linux` +- [ ] `ublue-os/experimental-tap/intellij-idea-linux` +- [ ] `ublue-os/experimental-tap/phpstorm-linux` +- [ ] `ublue-os/experimental-tap/pycharm-linux` +- [ ] `ublue-os/experimental-tap/rider-linux` +- [ ] `ublue-os/experimental-tap/rubymine-linux` +- [ ] `ublue-os/experimental-tap/rustrover-linux` +- [ ] `ublue-os/experimental-tap/webstorm-linux` +- [ ] `ublue-os/tap/visual-studio-code-linux` +- [ ] `ublue-os/tap/vscodium-linux` + +### AI CLIs (optional, fast-moving) + +- Count: **14** +- [ ] `aichat` +- [ ] `anomalyco/tap/opencode` +- [ ] `block-goose-cli` +- [ ] `claude-code` +- [ ] `codex` +- [ ] `gemini-cli` +- [ ] `kimi-cli` +- [ ] `llm` +- [ ] `mistral-vibe` +- [ ] `qwen-code` +- [ ] `ublue-os/experimental-tap/opencode-desktop-linux` +- [ ] `ublue-os/tap/goose-linux` +- [ ] `ublue-os/tap/linux-mcp-server` +- [ ] `whisper-cpp` + +### General CLI tools + +- Count: **64** +- [ ] `argo` +- [ ] `artifacthub/cmd/ah` +- [ ] `atlantis` +- [ ] `atuin` +- [ ] `bash-preexec` +- [ ] `buildpacks/tap/pack` +- [ ] `c7n` +- [ ] `carvel-dev/carvel/imgpkg` +- [ ] `carvel-dev/carvel/kapp` +- [ ] `carvel-dev/carvel/kbld` +- [ ] `carvel-dev/carvel/kctrl` +- [ ] `carvel-dev/carvel/kwt` +- [ ] `carvel-dev/carvel/vendir` +- [ ] `carvel-dev/carvel/ytt` +- [ ] `cdk8s` +- [ ] `charmbracelet/tap/crush` +- [ ] `chezmoi` +- [ ] `cmctl` +- [ ] `copilot-cli` +- [ ] `coredns` +- [ ] `cortex` +- [ ] `cri-tools` +- [ ] `dapr/tap/dapr-cli` +- [ ] `devspace` +- [ ] `direnv` +- [ ] `dysk` +- [ ] `envoy` +- [ ] `falco` +- [ ] `grpc` +- [ ] `harbor-cli` +- [ ] `kcl-lang/tap/kcl` +- [ ] `kitops-ml/kitops/kitops` +- [ ] `kn` +- [ ] `ko` +- [ ] `kptdev/kpt/kpt` +- [ ] `kumactl` +- [ ] `kwctl` +- [ ] `kyverno` +- [ ] `litmusctl` +- [ ] `mesheryctl` +- [ ] `mise` +- [ ] `mods` +- [ ] `nats-server` +- [ ] `notation` +- [ ] `opa` +- [ ] `openfga` +- [ ] `opentelemetry-cpp` +- [ ] `porter` +- [ ] `ripgrep` +- [ ] `swiftformat` +- [ ] `swiftlint` +- [ ] `swiftly` +- [ ] `tealdeer` +- [ ] `tiup` +- [ ] `trash-cli` +- [ ] `tremor-runtime` +- [ ] `ublue-os/tap/antigravity-linux` +- [ ] `ublue-os/tap/jetbrains-toolbox-linux` +- [ ] `ublue-os/tap/lm-studio-linux` +- [ ] `ugrep` +- [ ] `uutils-coreutils` +- [ ] `valkyrie00/bbrew/bbrew` +- [ ] `virtctl` +- [ ] `yq` + +### Containers/DevOps tooling + +- Count: **10** +- [ ] `dagger` +- [ ] `devcontainer` +- [ ] `grype` +- [ ] `k0sproject/tap/k0sctl` +- [ ] `lima` +- [ ] `nerdctl` +- [ ] `ramalama` +- [ ] `syft` +- [ ] `wasmcloud/wasmcloud/wash` +- [ ] `wasmedge` + +### Cloud/K8s toolchain (heavy/specialized) + +- Count: **26** +- [ ] `argocd` +- [ ] `cilium-cli` +- [ ] `crossplane` +- [ ] `etcd` +- [ ] `flux` +- [ ] `helm` +- [ ] `istioctl` +- [ ] `k3d` +- [ ] `k3sup` +- [ ] `k8sgpt` +- [ ] `k9s` +- [ ] `karmadactl` +- [ ] `kind` +- [ ] `kubectl` +- [ ] `kubectl-cnpg` +- [ ] `kubectx` +- [ ] `kubernetes-cli` +- [ ] `kubescape` +- [ ] `kubevela` +- [ ] `linkerd` +- [ ] `minikube` +- [ ] `operator-sdk` +- [ ] `prometheus` +- [ ] `telepresenceio/telepresence/telepresence-oss` +- [ ] `thanos` +- [ ] `vitess` + +### Fonts/Wallpapers (cosmetic) + +- Count: **14** +- [ ] `aurora-wallpapers` +- [ ] `bazzite-wallpapers` +- [ ] `bluefin-wallpapers` +- [ ] `bluefin-wallpapers-extra` +- [ ] `font-0xproto-nerd-font` +- [ ] `font-blex-mono-nerd-font` +- [ ] `font-caskaydia-mono-nerd-font` +- [ ] `font-comic-shanns-mono-nerd-font` +- [ ] `font-droid-sans-mono-nerd-font` +- [ ] `font-go-mono-nerd-font` +- [ ] `font-sauce-code-pro-nerd-font` +- [ ] `font-source-code-pro` +- [ ] `font-ubuntu-nerd-font` +- [ ] `framework-wallpapers` + +## Flatpak Gap + +- Bluefin has no additional Flatpak app IDs beyond your current manifest. diff --git a/bluefin-package-diff.md b/bluefin-package-diff.md new file mode 100644 index 0000000..91498fa --- /dev/null +++ b/bluefin-package-diff.md @@ -0,0 +1,397 @@ +# Bluefin Package Gap Report + +Generated: 2026-02-16 + +Comparison target: packages/apps that `ghcr.io/ublue-os/bluefin:stable` has but this repo defaults do not. + +Method: +- Native RPMs: compared package **names** from `rpm -qa --qf "%{NAME}\n"` +- Homebrew: compared `brew`/`cask` entries from Brewfiles +- Flatpak: compared `[Flatpak Preinstall ...]` app IDs from preinstall manifests + +## Counts + +- RPM package names missing here: **215** +- Homebrew entries missing here: **147** +- Flatpak app IDs missing here: **0** + +## RPM Package Names Bluefin Has (Missing Here) + +- [ ] `adcli` +- [ ] `adwaita-fonts-all` +- [ ] `argyllcms` +- [ ] `argyllcms-data` +- [ ] `bcache-tools` +- [ ] `binutils` +- [ ] `bison` +- [ ] `boost-atomic` +- [ ] `boost-chrono` +- [ ] `boost-filesystem` +- [ ] `boost-program-options` +- [ ] `borgbackup` +- [ ] `cmake-filesystem` +- [ ] `containerd` +- [ ] `cryfs` +- [ ] `davfs2` +- [ ] `dbus-daemon` +- [ ] `dbus-tools` +- [ ] `dbus-x11` +- [ ] `ddcutil` +- [ ] `elfutils-libelf-devel` +- [ ] `evtest` +- [ ] `fastfetch` +- [ ] `firewall-config` +- [ ] `fish` +- [ ] `flatpak-debuginfo` +- [ ] `flatpak-debugsource` +- [ ] `flatpak-libs-debuginfo` +- [ ] `flatpak-session-helper-debuginfo` +- [ ] `flex` +- [ ] `foo2zjs` +- [ ] `foomatic-db-filesystem` +- [ ] `framework-laptop-kmod-common` +- [ ] `fuse-encfs` +- [ ] `gcc` +- [ ] `generic-logos` +- [ ] `git` +- [ ] `git-credential-libsecret` +- [ ] `glibc-devel` +- [ ] `glow` +- [ ] `gnome-shell-extension-gsconnect` +- [ ] `gnome-tweaks` +- [ ] `gsl` +- [ ] `gtksourceview4` +- [ ] `gum` +- [ ] `i2c-tools` +- [ ] `ifuse` +- [ ] `igt-gpu-tools` +- [ ] `input-remapper` +- [ ] `iwd` +- [ ] `jetbrains-mono-fonts` +- [ ] `jetbrains-mono-fonts-all` +- [ ] `jetbrains-mono-nl-fonts` +- [ ] `kernel-devel-matched` +- [ ] `kernel-headers` +- [ ] `kmod-framework-laptop` +- [ ] `kmod-openrazer` +- [ ] `kmod-v4l2loopback` +- [ ] `kmod-xone` +- [ ] `kmod-zfs` +- [ ] `krb5-pkinit` +- [ ] `krb5-workstation` +- [ ] `lcms` +- [ ] `lcms-libs` +- [ ] `libXScrnSaver` +- [ ] `libell` +- [ ] `libgda` +- [ ] `libgda-sqlite` +- [ ] `libgit2` +- [ ] `libi2c` +- [ ] `libkadm5` +- [ ] `libnetapi` +- [ ] `libnvpair3` +- [ ] `liboping` +- [ ] `libssh2` +- [ ] `libsss_autofs` +- [ ] `libuutil3` +- [ ] `libvarlink` +- [ ] `libxcrypt-compat` +- [ ] `libxcrypt-devel` +- [ ] `libzfs6` +- [ ] `libzpool6` +- [ ] `libzstd-devel` +- [ ] `llhttp` +- [ ] `lm_sensors` +- [ ] `lsb_release` +- [ ] `m4` +- [ ] `make` +- [ ] `nautilus-gsconnect` +- [ ] `nautilus-python` +- [ ] `ncurses-term` +- [ ] `neon` +- [ ] `nerd-fonts` +- [ ] `oddjob` +- [ ] `oddjob-mkhomedir` +- [ ] `opendyslexic-fonts` +- [ ] `openrazer-kmod-common` +- [ ] `openssh-askpass` +- [ ] `openssl-devel` +- [ ] `pcp-conf` +- [ ] `pcp-libs` +- [ ] `perl-AutoLoader` +- [ ] `perl-B` +- [ ] `perl-Carp` +- [ ] `perl-Class-Struct` +- [ ] `perl-Data-Dumper` +- [ ] `perl-Digest` +- [ ] `perl-Digest-MD5` +- [ ] `perl-DynaLoader` +- [ ] `perl-Encode` +- [ ] `perl-Errno` +- [ ] `perl-Error` +- [ ] `perl-Exporter` +- [ ] `perl-Fcntl` +- [ ] `perl-File-Basename` +- [ ] `perl-File-Path` +- [ ] `perl-File-Temp` +- [ ] `perl-File-stat` +- [ ] `perl-FileHandle` +- [ ] `perl-Getopt-Long` +- [ ] `perl-Getopt-Std` +- [ ] `perl-Git` +- [ ] `perl-HTTP-Tiny` +- [ ] `perl-IO` +- [ ] `perl-IO-Socket-IP` +- [ ] `perl-IO-Socket-SSL` +- [ ] `perl-IPC-Open3` +- [ ] `perl-MIME-Base32` +- [ ] `perl-MIME-Base64` +- [ ] `perl-NDBM_File` +- [ ] `perl-Net-SSLeay` +- [ ] `perl-POSIX` +- [ ] `perl-PathTools` +- [ ] `perl-Pod-Escapes` +- [ ] `perl-Pod-Perldoc` +- [ ] `perl-Pod-Simple` +- [ ] `perl-Pod-Usage` +- [ ] `perl-Scalar-List-Utils` +- [ ] `perl-SelectSaver` +- [ ] `perl-Socket` +- [ ] `perl-Storable` +- [ ] `perl-Symbol` +- [ ] `perl-Term-ANSIColor` +- [ ] `perl-Term-Cap` +- [ ] `perl-TermReadKey` +- [ ] `perl-Text-ParseWords` +- [ ] `perl-Text-Tabs+Wrap` +- [ ] `perl-Time-Local` +- [ ] `perl-URI` +- [ ] `perl-base` +- [ ] `perl-constant` +- [ ] `perl-if` +- [ ] `perl-interpreter` +- [ ] `perl-lib` +- [ ] `perl-libnet` +- [ ] `perl-libs` +- [ ] `perl-locale` +- [ ] `perl-mro` +- [ ] `perl-overload` +- [ ] `perl-overloading` +- [ ] `perl-parent` +- [ ] `perl-podlators` +- [ ] `perl-vars` +- [ ] `powertop` +- [ ] `pv` +- [ ] `python3-annotated-types` +- [ ] `python3-dns` +- [ ] `python3-email-validator` +- [ ] `python3-llfuse` +- [ ] `python3-msgpack` +- [ ] `python3-pip` +- [ ] `python3-psutil` +- [ ] `python3-pydantic` +- [ ] `python3-pydantic+email` +- [ ] `python3-pydantic-core` +- [ ] `python3-pydbus` +- [ ] `python3-pygit2` +- [ ] `python3-pyzfs` +- [ ] `python3-setuptools` +- [ ] `python3-typing-extensions` +- [ ] `python3-typing-inspection` +- [ ] `rclone` +- [ ] `restic` +- [ ] `runc` +- [ ] `samba` +- [ ] `samba-common-tools` +- [ ] `samba-dcerpc` +- [ ] `samba-ldb-ldap-modules` +- [ ] `samba-libs` +- [ ] `samba-winbind` +- [ ] `samba-winbind-clients` +- [ ] `samba-winbind-modules` +- [ ] `setools-console` +- [ ] `spdlog` +- [ ] `sssd-ad` +- [ ] `sssd-common-pac` +- [ ] `sssd-krb5` +- [ ] `sysstat` +- [ ] `tailscale` +- [ ] `tinyxml2` +- [ ] `usbip` +- [ ] `uupd` +- [ ] `v4l2loopback` +- [ ] `waypipe` +- [ ] `xdg-terminal-exec` +- [ ] `xmlrpc-c` +- [ ] `xmlrpc-c-client` +- [ ] `xone-kmod-common` +- [ ] `xrandr` +- [ ] `xset` +- [ ] `yyjson` +- [ ] `zenity` +- [ ] `zfs` +- [ ] `zlib-ng-compat-devel` +- [ ] `zsh` + +## Homebrew Entries Bluefin Has (Missing Here) + +- [ ] `aichat` +- [ ] `anomalyco/tap/opencode` +- [ ] `argo` +- [ ] `argocd` +- [ ] `artifacthub/cmd/ah` +- [ ] `atlantis` +- [ ] `atuin` +- [ ] `aurora-wallpapers` +- [ ] `bash-preexec` +- [ ] `bazzite-wallpapers` +- [ ] `block-goose-cli` +- [ ] `bluefin-wallpapers` +- [ ] `bluefin-wallpapers-extra` +- [ ] `buildpacks/tap/pack` +- [ ] `c7n` +- [ ] `carvel-dev/carvel/imgpkg` +- [ ] `carvel-dev/carvel/kapp` +- [ ] `carvel-dev/carvel/kbld` +- [ ] `carvel-dev/carvel/kctrl` +- [ ] `carvel-dev/carvel/kwt` +- [ ] `carvel-dev/carvel/vendir` +- [ ] `carvel-dev/carvel/ytt` +- [ ] `cdk8s` +- [ ] `charmbracelet/tap/crush` +- [ ] `chezmoi` +- [ ] `cilium-cli` +- [ ] `claude-code` +- [ ] `cmctl` +- [ ] `codex` +- [ ] `copilot-cli` +- [ ] `coredns` +- [ ] `cortex` +- [ ] `cri-tools` +- [ ] `crossplane` +- [ ] `dagger` +- [ ] `dapr/tap/dapr-cli` +- [ ] `devcontainer` +- [ ] `devspace` +- [ ] `direnv` +- [ ] `dysk` +- [ ] `envoy` +- [ ] `etcd` +- [ ] `falco` +- [ ] `flux` +- [ ] `font-0xproto-nerd-font` +- [ ] `font-blex-mono-nerd-font` +- [ ] `font-caskaydia-mono-nerd-font` +- [ ] `font-comic-shanns-mono-nerd-font` +- [ ] `font-droid-sans-mono-nerd-font` +- [ ] `font-go-mono-nerd-font` +- [ ] `font-sauce-code-pro-nerd-font` +- [ ] `font-source-code-pro` +- [ ] `font-ubuntu-nerd-font` +- [ ] `framework-wallpapers` +- [ ] `gemini-cli` +- [ ] `grpc` +- [ ] `grype` +- [ ] `harbor-cli` +- [ ] `helix` +- [ ] `helm` +- [ ] `istioctl` +- [ ] `k0sproject/tap/k0sctl` +- [ ] `k3d` +- [ ] `k3sup` +- [ ] `k8sgpt` +- [ ] `k9s` +- [ ] `karmadactl` +- [ ] `kcl-lang/tap/kcl` +- [ ] `kimi-cli` +- [ ] `kind` +- [ ] `kitops-ml/kitops/kitops` +- [ ] `kn` +- [ ] `ko` +- [ ] `kptdev/kpt/kpt` +- [ ] `kubectl` +- [ ] `kubectl-cnpg` +- [ ] `kubectx` +- [ ] `kubernetes-cli` +- [ ] `kubescape` +- [ ] `kubevela` +- [ ] `kumactl` +- [ ] `kwctl` +- [ ] `kyverno` +- [ ] `lima` +- [ ] `linkerd` +- [ ] `litmusctl` +- [ ] `llm` +- [ ] `mesheryctl` +- [ ] `micro` +- [ ] `microcks/tap/microcks-cli` +- [ ] `minikube` +- [ ] `mise` +- [ ] `mistral-vibe` +- [ ] `mods` +- [ ] `nats-server` +- [ ] `nerdctl` +- [ ] `notation` +- [ ] `nvim` +- [ ] `opa` +- [ ] `openfga` +- [ ] `opentelemetry-cpp` +- [ ] `operator-sdk` +- [ ] `porter` +- [ ] `prometheus` +- [ ] `qwen-code` +- [ ] `ramalama` +- [ ] `ripgrep` +- [ ] `swiftformat` +- [ ] `swiftlint` +- [ ] `swiftly` +- [ ] `syft` +- [ ] `tealdeer` +- [ ] `telepresenceio/telepresence/telepresence-oss` +- [ ] `thanos` +- [ ] `tiup` +- [ ] `trash-cli` +- [ ] `tremor-runtime` +- [ ] `ublue-os/experimental-tap/clion-linux` +- [ ] `ublue-os/experimental-tap/cursor-linux` +- [ ] `ublue-os/experimental-tap/datagrip-linux` +- [ ] `ublue-os/experimental-tap/dataspell-linux` +- [ ] `ublue-os/experimental-tap/emacs-app-linux` +- [ ] `ublue-os/experimental-tap/goland-linux` +- [ ] `ublue-os/experimental-tap/intellij-idea-linux` +- [ ] `ublue-os/experimental-tap/opencode-desktop-linux` +- [ ] `ublue-os/experimental-tap/phpstorm-linux` +- [ ] `ublue-os/experimental-tap/pycharm-linux` +- [ ] `ublue-os/experimental-tap/rider-linux` +- [ ] `ublue-os/experimental-tap/rubymine-linux` +- [ ] `ublue-os/experimental-tap/rustrover-linux` +- [ ] `ublue-os/experimental-tap/webstorm-linux` +- [ ] `ublue-os/tap/antigravity-linux` +- [ ] `ublue-os/tap/goose-linux` +- [ ] `ublue-os/tap/jetbrains-toolbox-linux` +- [ ] `ublue-os/tap/linux-mcp-server` +- [ ] `ublue-os/tap/lm-studio-linux` +- [ ] `ublue-os/tap/visual-studio-code-linux` +- [ ] `ublue-os/tap/vscodium-linux` +- [ ] `ugrep` +- [ ] `uutils-coreutils` +- [ ] `valkyrie00/bbrew/bbrew` +- [ ] `virtctl` +- [ ] `vitess` +- [ ] `wasmcloud/wasmcloud/wash` +- [ ] `wasmedge` +- [ ] `whisper-cpp` +- [ ] `yq` + +## Flatpak App IDs Bluefin Has (Missing Here) + +- None + +## Source Notes + +- This repo RPM baseline: `ghcr.io/ublue-os/silverblue-main:latest` +- Bluefin baseline: `ghcr.io/ublue-os/bluefin:stable` +- This repo Homebrew manifests: `custom/brew/*.Brewfile` +- This repo Flatpak manifests: `custom/flatpaks/*.preinstall` +- Bluefin Homebrew manifests read from image path `/usr/share/ublue-os/homebrew/` +- Bluefin Flatpak manifests read from image path `/etc/flatpak/preinstall.d/` diff --git a/build/10-build.sh b/build/10-build.sh index 2179fd3..f81e765 100755 --- a/build/10-build.sh +++ b/build/10-build.sh @@ -44,7 +44,31 @@ echo "::endgroup::" echo "::group:: Install Packages" # Install packages using dnf5 -# Example: dnf5 install -y tmux +copr_install_isolated "scottames/ghostty" ghostty +copr_install_isolated "imput/helium" helium-bin + +# Install 1Password from official repository +rpm --import https://downloads.1password.com/linux/keys/1password.asc +cat > /etc/yum.repos.d/1password.repo << 'EOF' +[1password] +name=1Password Stable Channel +baseurl=https://downloads.1password.com/linux/rpm/stable/$basearch +enabled=1 +gpgcheck=1 +repo_gpgcheck=1 +gpgkey=https://downloads.1password.com/linux/keys/1password.asc +EOF +dnf5 install -y 1password +rm -f /etc/yum.repos.d/1password.repo + +# Replace default terminal +dnf5 remove -y ptyxis + +# Prefer Ghostty as default terminal launcher target +mkdir -p /etc/xdg +cat > /etc/xdg/xdg-terminals.list << 'EOF' +com.mitchellh.ghostty.desktop +EOF # Example using COPR with isolated pattern: # copr_install_isolated "ublue-os/staging" package-name diff --git a/custom/brew/default.Brewfile b/custom/brew/default.Brewfile index 5732042..0096bfa 100644 --- a/custom/brew/default.Brewfile +++ b/custom/brew/default.Brewfile @@ -12,6 +12,14 @@ brew "rg" # ripgrep - faster grep # Development tools brew "gh" # GitHub CLI brew "git" # Git version control +brew "neovim" # Neovim text editor +brew "oven-sh/bun/bun" # JavaScript runtime and package manager +brew "nvm" # Node version manager + +# AI coding tools +tap "anomalyco/tap" +brew "anomalyco/tap/opencode" # OpenCode CLI assistant +cask "claude-code" # Anthropic CLI assistant # Shell enhancements brew "starship" # Cross-shell prompt diff --git a/software-inventory.md b/software-inventory.md new file mode 100644 index 0000000..19c387f --- /dev/null +++ b/software-inventory.md @@ -0,0 +1,1681 @@ +# Software Inventory (Editable) + +Generated from current repository defaults and base image package inventory. +Use this as a planning checklist; edit freely. + +## Image Base + +- Base image: `ghcr.io/ublue-os/silverblue-main:latest` +- Base RPM package count: **1609** + +## Native Build-Time Installs (from `build/10-build.sh`) + +- [ ] No explicit `dnf5 install` lines in template defaults + +## Homebrew Packages (from `custom/brew/*.Brewfile`) + +- [ ] `bat` (`brew`, source: `default.Brewfile`) +- [ ] `eza` (`brew`, source: `default.Brewfile`) +- [ ] `fd` (`brew`, source: `default.Brewfile`) +- [ ] `rg` (`brew`, source: `default.Brewfile`) +- [ ] `gh` (`brew`, source: `default.Brewfile`) +- [ ] `git` (`brew`, source: `default.Brewfile`) +- [ ] `starship` (`brew`, source: `default.Brewfile`) +- [ ] `zoxide` (`brew`, source: `default.Brewfile`) +- [ ] `htop` (`brew`, source: `default.Brewfile`) +- [ ] `tmux` (`brew`, source: `default.Brewfile`) +- [ ] `font-fira-code-nerd-font` (`cask`, source: `fonts.Brewfile`) +- [ ] `font-jetbrains-mono-nerd-font` (`cask`, source: `fonts.Brewfile`) +- [ ] `font-meslo-lg-nerd-font` (`cask`, source: `fonts.Brewfile`) +- [ ] `font-hack-nerd-font` (`cask`, source: `fonts.Brewfile`) + +## Flatpak Preinstalls (from `custom/flatpaks/*.preinstall`) + +- [ ] `org.mozilla.firefox` (source: `default.preinstall`) +- [ ] `org.mozilla.Thunderbird` (source: `default.preinstall`) +- [ ] `org.gnome.Calculator` (source: `default.preinstall`) +- [ ] `org.gnome.Calendar` (source: `default.preinstall`) +- [ ] `org.gnome.Characters` (source: `default.preinstall`) +- [ ] `org.gnome.Connections` (source: `default.preinstall`) +- [ ] `org.gnome.Contacts` (source: `default.preinstall`) +- [ ] `org.gnome.DejaDup` (source: `default.preinstall`) +- [ ] `org.gnome.FileRoller` (source: `default.preinstall`) +- [ ] `org.gnome.Firmware` (source: `default.preinstall`) +- [ ] `org.gnome.Logs` (source: `default.preinstall`) +- [ ] `org.gnome.Loupe` (source: `default.preinstall`) +- [ ] `org.gnome.Maps` (source: `default.preinstall`) +- [ ] `org.gnome.NautilusPreviewer` (source: `default.preinstall`) +- [ ] `org.gnome.Papers` (source: `default.preinstall`) +- [ ] `org.gnome.SimpleScan` (source: `default.preinstall`) +- [ ] `org.gnome.TextEditor` (source: `default.preinstall`) +- [ ] `org.gnome.Weather` (source: `default.preinstall`) +- [ ] `org.gnome.baobab` (source: `default.preinstall`) +- [ ] `org.gnome.clocks` (source: `default.preinstall`) +- [ ] `org.gnome.font-viewer` (source: `default.preinstall`) +- [ ] `com.github.PintaProject.Pinta` (source: `default.preinstall`) +- [ ] `com.github.rafostar.Clapper` (source: `default.preinstall`) +- [ ] `com.github.tchx84.Flatseal` (source: `default.preinstall`) +- [ ] `com.mattjakeman.ExtensionManager` (source: `default.preinstall`) +- [ ] `io.github.flattool.Warehouse` (source: `default.preinstall`) +- [ ] `io.github.flattool.Ignition` (source: `default.preinstall`) +- [ ] `io.missioncenter.MissionCenter` (source: `default.preinstall`) +- [ ] `io.gitlab.adhami3310.Impression` (source: `default.preinstall`) +- [ ] `com.ranfdev.DistroShelf` (source: `default.preinstall`) +- [ ] `io.github.kolunmi.Bazaar` (source: `default.preinstall`) +- [ ] `page.tesk.Refine` (source: `default.preinstall`) +- [ ] `org.gtk.Gtk3theme.adw-gtk3` (source: `default.preinstall`) +- [ ] `org.gtk.Gtk3theme.adw-gtk3-dark` (source: `default.preinstall`) + +## Base Image RPM Packages (from `rpm -qa`) + +The list below is the full package set currently present in the base image. + +- [ ] `libgcc-15.2.1-7.fc43.x86_64` +- [ ] `fonts-filesystem-2.0.5-23.fc43.noarch` +- [ ] `google-noto-fonts-common-20251101-2.fc43.noarch` +- [ ] `abattis-cantarell-vf-fonts-0.301-15.fc43.noarch` +- [ ] `google-noto-sans-vf-fonts-20251101-2.fc43.noarch` +- [ ] `linux-firmware-whence-20260110-1.fc43.noarch` +- [ ] `hwdata-0.404-1.fc43.noarch` +- [ ] `xkeyboard-config-2.46-1.fc43.noarch` +- [ ] `tzdata-2025c-1.fc43.noarch` +- [ ] `fedora-logos-42.0.1-2.fc43.noarch` +- [ ] `default-fonts-core-sans-4.2-5.fc43.noarch` +- [ ] `google-noto-sans-devanagari-vf-fonts-20251101-2.fc43.noarch` +- [ ] `google-noto-sans-mono-vf-fonts-20251101-2.fc43.noarch` +- [ ] `google-noto-serif-vf-fonts-20251101-2.fc43.noarch` +- [ ] `pcre2-syntax-10.47-1.fc43.noarch` +- [ ] `hyperv-daemons-license-6.10-2.fc43.noarch` +- [ ] `hunspell-filesystem-1.7.2-10.fc43.x86_64` +- [ ] `gnome-control-center-filesystem-49.4-1.fc43.noarch` +- [ ] `hunspell-en-US-0.20201207-12.fc43.noarch` +- [ ] `google-noto-sans-bengali-vf-fonts-20251101-2.fc43.noarch` +- [ ] `google-noto-sans-hebrew-vf-fonts-20251101-2.fc43.noarch` +- [ ] `whois-nls-5.6.5-1.fc43.noarch` +- [ ] `mozilla-filesystem-1.9-36.fc43.x86_64` +- [ ] `mobile-broadband-provider-info-20240407-4.fc43.noarch` +- [ ] `fuse-common-3.16.2-5.fc42.x86_64` +- [ ] `appstream-data-43-3.fc43.noarch` +- [ ] `adobe-mappings-cmap-20231115-3.fc43.noarch` +- [ ] `adobe-mappings-cmap-deprecated-20231115-3.fc43.noarch` +- [ ] `default-fonts-he-4.2-5.fc43.noarch` +- [ ] `default-fonts-yi-4.2-5.fc43.noarch` +- [ ] `default-fonts-as-4.2-5.fc43.noarch` +- [ ] `default-fonts-bn-4.2-5.fc43.noarch` +- [ ] `hunspell-en-GB-0.20201207-12.fc43.noarch` +- [ ] `langpacks-fonts-en-4.2-5.fc43.noarch` +- [ ] `default-fonts-hi-4.2-5.fc43.noarch` +- [ ] `default-fonts-mai-4.2-5.fc43.noarch` +- [ ] `default-fonts-mr-4.2-5.fc43.noarch` +- [ ] `langpacks-core-en-4.2-5.fc43.noarch` +- [ ] `osinfo-db-20250124-2.fc43.noarch` +- [ ] `iwlwifi-mld-firmware-20260110-1.fc43.noarch` +- [ ] `linux-firmware-20260110-1.fc43.noarch` +- [ ] `default-fonts-ast-4.2-5.fc43.noarch` +- [ ] `default-fonts-be-4.2-5.fc43.noarch` +- [ ] `default-fonts-bg-4.2-5.fc43.noarch` +- [ ] `default-fonts-br-4.2-5.fc43.noarch` +- [ ] `default-fonts-dz-4.2-5.fc43.noarch` +- [ ] `default-fonts-el-4.2-5.fc43.noarch` +- [ ] `default-fonts-eo-4.2-5.fc43.noarch` +- [ ] `default-fonts-eu-4.2-5.fc43.noarch` +- [ ] `default-fonts-ia-4.2-5.fc43.noarch` +- [ ] `default-fonts-kab-4.2-5.fc43.noarch` +- [ ] `default-fonts-ku-4.2-5.fc43.noarch` +- [ ] `default-fonts-nb-4.2-5.fc43.noarch` +- [ ] `default-fonts-nn-4.2-5.fc43.noarch` +- [ ] `default-fonts-nr-4.2-5.fc43.noarch` +- [ ] `default-fonts-nso-4.2-5.fc43.noarch` +- [ ] `default-fonts-ru-4.2-5.fc43.noarch` +- [ ] `default-fonts-ss-4.2-5.fc43.noarch` +- [ ] `default-fonts-tn-4.2-5.fc43.noarch` +- [ ] `default-fonts-ts-4.2-5.fc43.noarch` +- [ ] `default-fonts-uk-4.2-5.fc43.noarch` +- [ ] `default-fonts-ve-4.2-5.fc43.noarch` +- [ ] `default-fonts-vi-4.2-5.fc43.noarch` +- [ ] `default-fonts-xh-4.2-5.fc43.noarch` +- [ ] `default-fonts-zu-4.2-5.fc43.noarch` +- [ ] `google-noto-naskh-arabic-vf-fonts-20251101-2.fc43.noarch` +- [ ] `google-noto-sans-arabic-vf-fonts-20251101-2.fc43.noarch` +- [ ] `default-fonts-ar-4.2-5.fc43.noarch` +- [ ] `google-noto-sans-armenian-vf-fonts-20251101-2.fc43.noarch` +- [ ] `default-fonts-hy-4.2-5.fc43.noarch` +- [ ] `google-noto-sans-canadian-aboriginal-vf-fonts-20251101-2.fc43.noarch` +- [ ] `default-fonts-iu-4.2-5.fc43.noarch` +- [ ] `google-noto-sans-cherokee-vf-fonts-20251101-2.fc43.noarch` +- [ ] `default-fonts-chr-4.2-5.fc43.noarch` +- [ ] `google-noto-sans-ethiopic-vf-fonts-20251101-2.fc43.noarch` +- [ ] `default-fonts-am-4.2-5.fc43.noarch` +- [ ] `google-noto-sans-georgian-vf-fonts-20251101-2.fc43.noarch` +- [ ] `default-fonts-ka-4.2-5.fc43.noarch` +- [ ] `google-noto-sans-gothic-fonts-20251101-2.fc43.noarch` +- [ ] `default-fonts-got-4.2-5.fc43.noarch` +- [ ] `google-noto-sans-gujarati-vf-fonts-20251101-2.fc43.noarch` +- [ ] `default-fonts-gu-4.2-5.fc43.noarch` +- [ ] `google-noto-sans-gurmukhi-vf-fonts-20251101-2.fc43.noarch` +- [ ] `default-fonts-pa-4.2-5.fc43.noarch` +- [ ] `google-noto-sans-kannada-vf-fonts-20251101-2.fc43.noarch` +- [ ] `default-fonts-kn-4.2-5.fc43.noarch` +- [ ] `google-noto-sans-khmer-vf-fonts-20251101-2.fc43.noarch` +- [ ] `default-fonts-km-4.2-5.fc43.noarch` +- [ ] `google-noto-sans-lao-vf-fonts-20251101-2.fc43.noarch` +- [ ] `default-fonts-lo-4.2-5.fc43.noarch` +- [ ] `google-noto-sans-math-fonts-20251101-2.fc43.noarch` +- [ ] `google-noto-sans-meetei-mayek-vf-fonts-20251101-2.fc43.noarch` +- [ ] `default-fonts-mni-4.2-5.fc43.noarch` +- [ ] `google-noto-sans-nko-fonts-20251101-2.fc43.noarch` +- [ ] `default-fonts-nqo-4.2-5.fc43.noarch` +- [ ] `google-noto-sans-ol-chiki-vf-fonts-20251101-2.fc43.noarch` +- [ ] `default-fonts-sat-4.2-5.fc43.noarch` +- [ ] `google-noto-sans-oriya-vf-fonts-20251101-2.fc43.noarch` +- [ ] `default-fonts-or-4.2-5.fc43.noarch` +- [ ] `google-noto-sans-sinhala-vf-fonts-20251101-2.fc43.noarch` +- [ ] `default-fonts-si-4.2-5.fc43.noarch` +- [ ] `google-noto-sans-symbols-2-fonts-20251101-2.fc43.noarch` +- [ ] `google-noto-sans-symbols-vf-fonts-20251101-2.fc43.noarch` +- [ ] `google-noto-sans-syriac-vf-fonts-20251101-2.fc43.noarch` +- [ ] `default-fonts-syr-4.2-5.fc43.noarch` +- [ ] `google-noto-sans-tamil-vf-fonts-20251101-2.fc43.noarch` +- [ ] `default-fonts-ta-4.2-5.fc43.noarch` +- [ ] `google-noto-sans-telugu-vf-fonts-20251101-2.fc43.noarch` +- [ ] `default-fonts-te-4.2-5.fc43.noarch` +- [ ] `google-noto-sans-thaana-vf-fonts-20251101-2.fc43.noarch` +- [ ] `default-fonts-dv-4.2-5.fc43.noarch` +- [ ] `google-noto-sans-thai-vf-fonts-20251101-2.fc43.noarch` +- [ ] `default-fonts-th-4.2-5.fc43.noarch` +- [ ] `google-noto-serif-armenian-vf-fonts-20251101-2.fc43.noarch` +- [ ] `google-noto-serif-bengali-vf-fonts-20251101-2.fc43.noarch` +- [ ] `google-noto-serif-devanagari-vf-fonts-20251101-2.fc43.noarch` +- [ ] `google-noto-serif-ethiopic-vf-fonts-20251101-2.fc43.noarch` +- [ ] `google-noto-serif-georgian-vf-fonts-20251101-2.fc43.noarch` +- [ ] `google-noto-serif-gujarati-vf-fonts-20251101-2.fc43.noarch` +- [ ] `google-noto-serif-gurmukhi-vf-fonts-20251101-2.fc43.noarch` +- [ ] `google-noto-serif-hebrew-vf-fonts-20251101-2.fc43.noarch` +- [ ] `google-noto-serif-kannada-vf-fonts-20251101-2.fc43.noarch` +- [ ] `google-noto-serif-khmer-vf-fonts-20251101-2.fc43.noarch` +- [ ] `google-noto-serif-lao-vf-fonts-20251101-2.fc43.noarch` +- [ ] `google-noto-serif-oriya-vf-fonts-20251101-2.fc43.noarch` +- [ ] `google-noto-serif-sinhala-vf-fonts-20251101-2.fc43.noarch` +- [ ] `google-noto-serif-tamil-vf-fonts-20251101-2.fc43.noarch` +- [ ] `google-noto-serif-telugu-vf-fonts-20251101-2.fc43.noarch` +- [ ] `google-noto-serif-thai-vf-fonts-20251101-2.fc43.noarch` +- [ ] `abattis-cantarell-fonts-0.301-15.fc43.noarch` +- [ ] `google-droid-sans-fonts-20200215-23.fc43.noarch` +- [ ] `google-noto-color-emoji-fonts-20250623-2.fc43.noarch` +- [ ] `google-noto-sans-mono-cjk-vf-fonts-2.004-10.fc43.noarch` +- [ ] `google-noto-serif-cjk-vf-fonts-2.003-3.fc43.noarch` +- [ ] `jomolhari-fonts-0.003-44.fc43.noarch` +- [ ] `default-fonts-bo-4.2-5.fc43.noarch` +- [ ] `madan-fonts-2.000-41.fc43.noarch` +- [ ] `default-fonts-ne-4.2-5.fc43.noarch` +- [ ] `paktype-naskh-basic-fonts-7.0-3.20231228.fc43.noarch` +- [ ] `default-fonts-ur-4.2-5.fc43.noarch` +- [ ] `rit-meera-new-fonts-1.6.2-4.fc43.noarch` +- [ ] `default-fonts-ml-4.2-5.fc43.noarch` +- [ ] `rit-rachana-fonts-1.5.2-4.fc43.noarch` +- [ ] `sil-padauk-fonts-3.003-20.fc43.noarch` +- [ ] `default-fonts-my-4.2-5.fc43.noarch` +- [ ] `stix-fonts-2.13b171-9.fc43.noarch` +- [ ] `vazirmatn-vf-fonts-33.003-13.fc43.noarch` +- [ ] `default-fonts-fa-4.2-5.fc43.noarch` +- [ ] `cldr-emoji-annotation-48-1.fc43.noarch` +- [ ] `cldr-emoji-annotation-dtd-48-1.fc43.noarch` +- [ ] `yelp-xsl-49.0-1.fc43.noarch` +- [ ] `vim-data-9.1.2128-2.fc43.noarch` +- [ ] `unicode-ucd-17.0.0-1.fc43.noarch` +- [ ] `tesseract-tessdata-doc-4.1.0-11.fc43.noarch` +- [ ] `tesseract-common-5.5.2-1.fc43.noarch` +- [ ] `tesseract-langpack-eng-4.1.0-11.fc43.noarch` +- [ ] `redhat-menus-12.0.2-30.fc43.noarch` +- [ ] `quota-nls-4.10-2.fc43.noarch` +- [ ] `qt5-filesystem-5.15.18-1.fc43.x86_64` +- [ ] `qt-settings-43.1-2.fc43.noarch` +- [ ] `publicsuffix-list-dafsa-20260116-1.fc43.noarch` +- [ ] `poppler-data-0.4.11-10.fc43.noarch` +- [ ] `pkgconf-m4-2.3.0-3.fc43.noarch` +- [ ] `ncurses-base-6.5-7.20250614.fc43.noarch` +- [ ] `mutter-common-49.4-1.fc43.noarch` +- [ ] `mailcap-2.1.54-9.fc43.noarch` +- [ ] `llvm-filesystem-21.1.8-4.fc43.x86_64` +- [ ] `libwacom-data-2.18.0-1.fc43.noarch` +- [ ] `libssh-config-0.11.4-1.fc43.noarch` +- [ ] `libreport-filesystem-2.17.15-9.fc43.noarch` +- [ ] `liblouis-tables-3.33.0-6.fc43.noarch` +- [ ] `libX11-common-1.8.12-1.fc43.noarch` +- [ ] `langtable-0.0.69-4.fc43.noarch` +- [ ] `kbd-misc-2.8.0-3.fc43.noarch` +- [ ] `kbd-legacy-2.8.0-3.fc43.noarch` +- [ ] `kasumi-common-2.5-49.fc43.noarch` +- [ ] `hplip-common-3.25.8-1.fc43.x86_64` +- [ ] `gnulib-l10n-20241231-1.fc43.noarch` +- [ ] `coreutils-common-9.7-7.fc43.x86_64` +- [ ] `gnome-shell-common-49.4-1.fc43.noarch` +- [ ] `gnome-app-list-3.0-2.fc43.noarch` +- [ ] `firewalld-filesystem-2.3.2-1.fc43.noarch` +- [ ] `fedora-release-ostree-desktop-43-26.noarch` +- [ ] `fedora-release-identity-silverblue-43-26.noarch` +- [ ] `fedora-gpg-keys-43-1.noarch` +- [ ] `fedora-repos-43-1.noarch` +- [ ] `fedora-release-common-43-26.noarch` +- [ ] `fedora-release-silverblue-43-26.noarch` +- [ ] `setup-2.15.0-26.fc43.noarch` +- [ ] `filesystem-3.18-50.fc43.x86_64` +- [ ] `bash-5.3.0-2.fc43.x86_64` +- [ ] `glibc-common-2.42-9.fc43.x86_64` +- [ ] `glibc-gconv-extra-2.42-9.fc43.x86_64` +- [ ] `glibc-2.42-9.fc43.x86_64` +- [ ] `ncurses-libs-6.5-7.20250614.fc43.x86_64` +- [ ] `glibc-all-langpacks-2.42-9.fc43.x86_64` +- [ ] `libstdc++-15.2.1-7.fc43.x86_64` +- [ ] `zlib-ng-compat-2.3.3-1.fc43.x86_64` +- [ ] `libjpeg-turbo-3.1.2-1.fc43.x86_64` +- [ ] `sqlite-libs-3.50.2-2.fc43.x86_64` +- [ ] `libuuid-2.41.3-7.fc43.x86_64` +- [ ] `libzstd-1.5.7-2.fc43.x86_64` +- [ ] `xz-libs-5.8.1-4.fc43.x86_64` +- [ ] `libxml2-2.12.10-5.fc43.x86_64` +- [ ] `libblkid-2.41.3-7.fc43.x86_64` +- [ ] `libpng-1.6.53-1.fc43.x86_64` +- [ ] `bzip2-libs-1.0.8-21.fc43.x86_64` +- [ ] `libicu-77.1-1.fc43.x86_64` +- [ ] `lcms2-2.16-6.fc43.x86_64` +- [ ] `libxcrypt-4.5.2-1.fc43.x86_64` +- [ ] `popt-1.19-9.fc43.x86_64` +- [ ] `alsa-lib-1.2.15.3-1.fc43.x86_64` +- [ ] `libseccomp-2.6.0-2.fc43.x86_64` +- [ ] `readline-8.3-2.fc43.x86_64` +- [ ] `expat-2.7.3-1.fc43.x86_64` +- [ ] `libcom_err-1.47.3-2.fc43.x86_64` +- [ ] `gmp-6.3.0-4.fc43.x86_64` +- [ ] `libgpg-error-1.55-2.fc43.x86_64` +- [ ] `libgcrypt-1.11.1-3.fc43.x86_64` +- [ ] `pcre2-10.47-1.fc43.x86_64` +- [ ] `grep-3.12-2.fc43.x86_64` +- [ ] `alternatives-1.33-3.fc43.x86_64` +- [ ] `libwebp-1.6.0-2.fc43.x86_64` +- [ ] `fribidi-1.0.16-3.fc43.x86_64` +- [ ] `fuse3-libs-3.16.2-5.fc42.x86_64` +- [ ] `json-c-0.18-7.fc43.x86_64` +- [ ] `libassuan-2.5.7-4.fc43.x86_64` +- [ ] `libxkbcommon-1.11.0-1.fc43.x86_64` +- [ ] `keyutils-libs-1.6.3-6.fc43.x86_64` +- [ ] `libffi-3.5.2-1.fc43.x86_64` +- [ ] `libwayland-client-1.24.0-1.fc43.x86_64` +- [ ] `libtalloc-2.4.3-4.fc43.x86_64` +- [ ] `libtool-ltdl-2.5.4-8.fc43.x86_64` +- [ ] `vulkan-loader-1.4.328.1-1.fc43.x86_64` +- [ ] `urw-base35-fonts-common-20200910-26.fc43.noarch` +- [ ] `nettle-3.10.1-2.fc43.x86_64` +- [ ] `libX11-xcb-1.8.12-1.fc43.x86_64` +- [ ] `libunistring-1.1-10.fc43.x86_64` +- [ ] `libidn2-2.3.8-2.fc43.x86_64` +- [ ] `nspr-4.38.2-1.fc43.x86_64` +- [ ] `elfutils-libelf-0.194-1.fc43.x86_64` +- [ ] `libbrotli-1.2.0-1.fc43.x86_64` +- [ ] `cups-filesystem-2.4.16-4.fc43.noarch` +- [ ] `libcap-ng-0.9-7.fc43.x86_64` +- [ ] `audit-libs-4.1.3-1.fc43.x86_64` +- [ ] `libgomp-15.2.1-7.fc43.x86_64` +- [ ] `libmnl-1.0.5-8.fc43.x86_64` +- [ ] `libnl3-3.12.0-2.fc43.x86_64` +- [ ] `libtasn1-4.20.0-2.fc43.x86_64` +- [ ] `p11-kit-0.26.2-1.fc43.x86_64` +- [ ] `nss-util-3.119.1-1.fc43.x86_64` +- [ ] `fmt-11.2.0-3.fc43.x86_64` +- [ ] `libXau-1.0.12-3.fc43.x86_64` +- [ ] `libxcb-1.17.0-6.fc43.x86_64` +- [ ] `libX11-1.8.12-1.fc43.x86_64` +- [ ] `libXext-1.3.6-4.fc43.x86_64` +- [ ] `libXfixes-6.0.1-6.fc43.x86_64` +- [ ] `libXi-1.8.2-3.fc43.x86_64` +- [ ] `libepoxy-1.5.10-11.fc43.x86_64` +- [ ] `libogg-1.3.6-2.fc43.x86_64` +- [ ] `libvorbis-1.3.7-13.fc43.x86_64` +- [ ] `lua-libs-5.4.8-4.fc43.x86_64` +- [ ] `lz4-libs-1.10.0-3.fc43.x86_64` +- [ ] `openjpeg-2.5.4-1.fc43.x86_64` +- [ ] `opus-1.5.2-3.fc43.x86_64` +- [ ] `crypto-policies-20251125-1.git63291f8.fc43.noarch` +- [ ] `libXdamage-1.1.6-6.fc43.x86_64` +- [ ] `libXinerama-1.1.5-9.fc43.x86_64` +- [ ] `libXrender-0.9.12-3.fc43.x86_64` +- [ ] `libXrandr-1.5.4-6.fc43.x86_64` +- [ ] `libtevent-0.17.1-3.fc43.x86_64` +- [ ] `fuse3-3.16.2-5.fc42.x86_64` +- [ ] `libxslt-1.1.43-5.fc43.x86_64` +- [ ] `libplist-2.6.0-5.fc43.x86_64` +- [ ] `libsigc++20-2.12.1-6.fc43.x86_64` +- [ ] `libedit-3.1-57.20251016cvs.fc43.x86_64` +- [ ] `gdbm-libs-1.23-10.fc43.x86_64` +- [ ] `jansson-2.14-3.fc43.x86_64` +- [ ] `libnghttp2-1.66.0-2.fc43.x86_64` +- [ ] `libtdb-1.4.14-3.fc43.x86_64` +- [ ] `npth-1.8-3.fc43.x86_64` +- [ ] `protobuf-c-1.5.2-1.fc43.x86_64` +- [ ] `grub2-common-2.12-40.fc43.noarch` +- [ ] `hicolor-icon-theme-0.18-2.fc43.noarch` +- [ ] `libXtst-1.2.5-3.fc43.x86_64` +- [ ] `libwayland-cursor-1.24.0-1.fc43.x86_64` +- [ ] `libsigc++30-3.6.0-6.fc43.x86_64` +- [ ] `libvpl-2.16.0-1.fc43.x86_64` +- [ ] `libattr-2.5.2-6.fc43.x86_64` +- [ ] `libacl-2.3.2-4.fc43.x86_64` +- [ ] `libdav1d-1.5.2-1.fc43.x86_64` +- [ ] `libdvdread-6.1.3-10.fc43.x86_64` +- [ ] `libevdev-1.13.6-1.fc43.x86_64` +- [ ] `libsepol-3.9-2.fc43.x86_64` +- [ ] `libselinux-3.9-5.fc43.x86_64` +- [ ] `sed-4.9-5.fc43.x86_64` +- [ ] `libmount-2.41.3-7.fc43.x86_64` +- [ ] `libselinux-utils-3.9-5.fc43.x86_64` +- [ ] `lzo-2.10-15.fc43.x86_64` +- [ ] `pixman-0.46.2-2.fc43.x86_64` +- [ ] `dbus-common-1.16.0-4.fc43.noarch` +- [ ] `efi-filesystem-6-4.fc43.noarch` +- [ ] `libsemanage-3.9-4.fc43.x86_64` +- [ ] `libXcomposite-0.4.6-6.fc43.x86_64` +- [ ] `p11-kit-trust-0.26.2-1.fc43.x86_64` +- [ ] `gnutls-3.8.12-1.fc43.x86_64` +- [ ] `glib2-2.86.3-1.fc43.x86_64` +- [ ] `json-glib-1.10.8-4.fc43.x86_64` +- [ ] `graphene-1.10.8-2.fc43.x86_64` +- [ ] `libsecret-0.21.7-7.fc43.x86_64` +- [ ] `gsettings-desktop-schemas-49.1-3.fc43.x86_64` +- [ ] `gcr-libs-4.4.0.1-4.fc43.x86_64` +- [ ] `gvfs-client-1.58.1-1.fc43.x86_64` +- [ ] `shared-mime-info-2.4-2.fc43.x86_64` +- [ ] `ModemManager-glib-1.24.2-1.fc43.x86_64` +- [ ] `gobject-introspection-1.84.0-3.fc43.x86_64` +- [ ] `upower-libs-1.91.1-2.fc43.x86_64` +- [ ] `libmbim-1.32.0-2.fc43.x86_64` +- [ ] `malcontent-libs-0.13.0-3.fc43.x86_64` +- [ ] `libxmlb-0.3.24-1.fc43.x86_64` +- [ ] `glibmm2.4-2.66.8-2.fc43.x86_64` +- [ ] `libportal-0.9.1-3.fc43.x86_64` +- [ ] `libudisks2-2.11.0-1.fc43.x86_64` +- [ ] `libpsl-0.21.5-6.fc43.x86_64` +- [ ] `libwayland-server-1.24.0-1.fc43.x86_64` +- [ ] `mpfr-4.2.2-2.fc43.x86_64` +- [ ] `gawk-5.3.2-2.fc43.x86_64` +- [ ] `e2fsprogs-libs-1.47.3-2.fc43.x86_64` +- [ ] `apr-1.7.6-3.fc43.x86_64` +- [ ] `apr-util-1.6.3-25.fc43.x86_64` +- [ ] `libfdisk-2.41.3-7.fc43.x86_64` +- [ ] `file-libs-5.46-8.fc43.x86_64` +- [ ] `bluez-libs-5.86-2.fc43.x86_64` +- [ ] `gsm-1.0.23-1.fc43.x86_64` +- [ ] `jbigkit-libs-2.1-32.fc43.x86_64` +- [ ] `lame-libs-3.100-20.fc43.x86_64` +- [ ] `libICE-1.1.2-3.fc43.x86_64` +- [ ] `libeconf-0.7.9-2.fc43.x86_64` +- [ ] `pam-libs-1.7.1-4.fc43.x86_64` +- [ ] `libcap-2.76-3.fc43.x86_64` +- [ ] `systemd-libs-258.4-1.fc43.x86_64` +- [ ] `dbus-libs-1.16.0-4.fc43.x86_64` +- [ ] `libusb1-1.0.29-4.fc43.x86_64` +- [ ] `polkit-libs-126-6.fc43.x86_64` +- [ ] `libgudev-238-8.fc43.x86_64` +- [ ] `NetworkManager-libnm-1.54.3-2.fc43.x86_64` +- [ ] `bubblewrap-0.11.0-2.fc43.x86_64` +- [ ] `shadow-utils-4.18.0-3.fc43.x86_64` +- [ ] `sane-backends-libs-1.4.0-4.fc43.x86_64` +- [ ] `plymouth-core-libs-24.004.60-24.fc43.x86_64` +- [ ] `shadow-utils-subid-4.18.0-3.fc43.x86_64` +- [ ] `libglvnd-1.7.0-8.fc43.x86_64` +- [ ] `libraw1394-2.1.2-24.fc43.x86_64` +- [ ] `libunwind-1.8.1-3.fc43.x86_64` +- [ ] `libwayland-egl-1.24.0-1.fc43.x86_64` +- [ ] `lmdb-libs-0.9.34-1.fc43.x86_64` +- [ ] `libldb-4.23.5-1.fc43.x86_64` +- [ ] `ngtcp2-1.19.0-1.fc43.x86_64` +- [ ] `orc-0.4.41-2.fc43.x86_64` +- [ ] `pciutils-libs-3.14.0-2.fc43.x86_64` +- [ ] `svt-av1-libs-3.1.2-1.fc43.x86_64` +- [ ] `libglvnd-opengl-1.7.0-8.fc43.x86_64` +- [ ] `libgusb-0.4.9-4.fc43.x86_64` +- [ ] `colord-libs-1.4.8-2.fc43.x86_64` +- [ ] `libSM-1.2.5-3.fc43.x86_64` +- [ ] `libXt-1.3.1-3.fc43.x86_64` +- [ ] `libXmu-1.2.1-4.fc43.x86_64` +- [ ] `gcr3-base-3.41.1-11.fc43.x86_64` +- [ ] `geoclue2-libs-2.8.0-1.fc43.x86_64` +- [ ] `glibmm2.68-2.84.0-2.fc43.x86_64` +- [ ] `libqrtr-glib-1.2.2-8.fc43.x86_64` +- [ ] `libqmi-1.36.0-2.fc43.x86_64` +- [ ] `speech-dispatcher-libs-0.12.1-5.fc43.x86_64` +- [ ] `findutils-4.10.0-6.fc43.x86_64` +- [ ] `openssl-libs-3.5.4-2.fc43.x86_64` +- [ ] `coreutils-9.7-7.fc43.x86_64` +- [ ] `ca-certificates-2025.2.80_v9.0.304-1.1.fc43.noarch` +- [ ] `libarchive-3.8.4-1.fc43.x86_64` +- [ ] `kmod-libs-34.2-2.fc43.x86_64` +- [ ] `libblockdev-utils-3.4.0-1.fc43.x86_64` +- [ ] `tpm2-tss-4.1.3-8.fc43.x86_64` +- [ ] `which-2.23-3.fc43.x86_64` +- [ ] `systemd-shared-258.4-1.fc43.x86_64` +- [ ] `libevent-2.1.12-16.fc43.x86_64` +- [ ] `avahi-libs-0.9~rc2-6.fc43.x86_64` +- [ ] `avahi-glib-0.9~rc2-6.fc43.x86_64` +- [ ] `authselect-libs-1.6.2-1.fc43.x86_64` +- [ ] `authselect-1.6.2-1.fc43.x86_64` +- [ ] `gzip-1.13-4.fc43.x86_64` +- [ ] `composefs-libs-1.0.8-3.fc43.x86_64` +- [ ] `cyrus-sasl-lib-2.1.28-33.fc43.x86_64` +- [ ] `openldap-2.6.10-4.fc43.x86_64` +- [ ] `llvm-libs-21.1.8-4.fc43.x86_64` +- [ ] `libimobiledevice-glue-1.3.1-3.fc43.x86_64` +- [ ] `xmlsec1-1.2.41-3.fc43.x86_64` +- [ ] `libXcursor-1.2.3-3.fc43.x86_64` +- [ ] `libtheora-1.1.1-40.fc43.x86_64` +- [ ] `libxkbfile-1.1.3-4.fc43.x86_64` +- [ ] `gnupg2-gpgconf-2.4.9-5.fc43.x86_64` +- [ ] `libksba-1.6.7-4.fc43.x86_64` +- [ ] `libical-3.0.20-4.fc43.x86_64` +- [ ] `libical-glib-3.0.20-4.fc43.x86_64` +- [ ] `xml-common-0.6.3-67.fc43.noarch` +- [ ] `iso-codes-4.18.0-2.fc43.noarch` +- [ ] `libv4l-1.32.0-1.fc43.x86_64` +- [ ] `libcdio-2.1.0-15.fc43.x86_64` +- [ ] `spirv-tools-libs-2025.4-1.fc43.x86_64` +- [ ] `inih-62-1.fc43.x86_64` +- [ ] `libatomic-15.2.1-7.fc43.x86_64` +- [ ] `javascriptcoregtk6.0-2.50.5-1.fc43.x86_64` +- [ ] `libexif-0.6.25-2.fc43.x86_64` +- [ ] `liblc3-1.1.3-5.fc43.x86_64` +- [ ] `liblouis-3.33.0-6.fc43.x86_64` +- [ ] `libref_array-0.1.5-59.fc43.x86_64` +- [ ] `libsmartcols-2.41.3-7.fc43.x86_64` +- [ ] `util-linux-core-2.41.3-7.fc43.x86_64` +- [ ] `libverto-0.3.2-11.fc43.x86_64` +- [ ] `krb5-libs-1.21.3-7.fc43.x86_64` +- [ ] `cups-libs-2.4.16-4.fc43.x86_64` +- [ ] `libsoup3-3.6.5-8.fc43.x86_64` +- [ ] `libcurl-minimal-8.15.0-5.fc43.x86_64` +- [ ] `libtirpc-1.3.7-1.fc43.x86_64` +- [ ] `geocode-glib-3.26.4-14.fc43.x86_64` +- [ ] `libgweather-4.4.4-3.fc43.x86_64` +- [ ] `gssdp-1.6.4-5.fc43.x86_64` +- [ ] `libvpx-1.15.0-4.fc43.x86_64` +- [ ] `libxshmfence-1.3.2-7.fc43.x86_64` +- [ ] `libyaml-0.2.5-17.fc43.x86_64` +- [ ] `mpg123-libs-1.32.10-2.fc43.x86_64` +- [ ] `noopenh264-2.6.0-2.fc43.x86_64` +- [ ] `ntfs-3g-libs-2022.10.3-10.fc43.x86_64` +- [ ] `numactl-libs-2.0.19-3.fc43.x86_64` +- [ ] `pcsc-lite-libs-2.3.3-2.fc43.x86_64` +- [ ] `rav1e-libs-0.8.1-2.fc43.x86_64` +- [ ] `serd-0.32.4-2.fc43.x86_64` +- [ ] `speex-1.2.0-20.fc43.x86_64` +- [ ] `curl-8.15.0-5.fc43.x86_64` +- [ ] `rest-0.10.2-4.fc43.x86_64` +- [ ] `cups-client-2.4.16-4.fc43.x86_64` +- [ ] `libnfsidmap-2.8.4-0.fc43.x86_64` +- [ ] `libshaderc-2025.4-1.fc43.x86_64` +- [ ] `libcdio-paranoia-10.2+2.0.2-5.fc43.x86_64` +- [ ] `composefs-1.0.8-3.fc43.x86_64` +- [ ] `cracklib-2.9.11-8.fc43.x86_64` +- [ ] `libpwquality-1.4.5-14.fc43.x86_64` +- [ ] `systemd-sysusers-258.4-1.fc43.x86_64` +- [ ] `libnvme-1.16.1-1.fc43.x86_64` +- [ ] `net-snmp-libs-5.9.4-18.fc43.x86_64` +- [ ] `openpace-1.1.3-4.fc43.x86_64` +- [ ] `podman-sequoia-0.2.0-3.fc43.x86_64` +- [ ] `zchunk-libs-1.5.1-3.fc43.x86_64` +- [ ] `sdbus-cpp-2.1.0-3.fc43.x86_64` +- [ ] `file-5.46-8.fc43.x86_64` +- [ ] `gnome-menus-3.38.1-1.fc43.x86_64` +- [ ] `libcloudproviders-0.3.6-2.fc43.x86_64` +- [ ] `libgtop2-2.41.3-4.fc43.x86_64` +- [ ] `nautilus-extensions-49.4-1.fc43.x86_64` +- [ ] `passim-libs-0.1.10-2.fc43.x86_64` +- [ ] `tar-1.35-6.fc43.x86_64` +- [ ] `libdvdnav-6.1.1-11.fc43.x86_64` +- [ ] `gnupg2-verify-2.4.9-5.fc43.x86_64` +- [ ] `flac-libs-1.5.0-5.fc43.x86_64` +- [ ] `libsndfile-1.2.2-10.fc43.x86_64` +- [ ] `libXv-1.0.13-3.fc43.x86_64` +- [ ] `xcb-util-0.4.1-8.fc43.x86_64` +- [ ] `startup-notification-0.12-32.fc43.x86_64` +- [ ] `openal-soft-1.24.2-4.fc43.x86_64` +- [ ] `libnftnl-1.2.9-2.fc43.x86_64` +- [ ] `fftw-libs-double-3.3.10-16.fc43.x86_64` +- [ ] `soxr-0.1.3-20.fc43.x86_64` +- [ ] `woff2-1.0.2-23.fc43.x86_64` +- [ ] `libbpf-1.6.1-3.fc43.x86_64` +- [ ] `libsss_idmap-2.12.0-1.fc43.x86_64` +- [ ] `keyutils-1.6.3-6.fc43.x86_64` +- [ ] `exempi-2.6.4-8.fc43.x86_64` +- [ ] `unzip-6.0-67.fc43.x86_64` +- [ ] `libtextstyle-0.25.1-2.fc43.x86_64` +- [ ] `gettext-libs-0.25.1-2.fc43.x86_64` +- [ ] `libyuv-0-0.57.20240704git96bbdb5.fc43.x86_64` +- [ ] `imath-3.1.12-4.fc43.x86_64` +- [ ] `libvmaf-3.0.0-4.fc43.x86_64` +- [ ] `libaom-3.13.1-1.fc43.x86_64` +- [ ] `libavif-1.3.0-2.fc43.x86_64` +- [ ] `simdutf-7.2.1-2.fc43.x86_64` +- [ ] `webrtc-audio-processing-1.3-9.fc43.x86_64` +- [ ] `less-679-2.fc43.x86_64` +- [ ] `anthy-unicode-1.0.0.20240502-11.fc43.x86_64` +- [ ] `cpio-2.15-6.fc43.x86_64` +- [ ] `dmidecode-3.6-7.fc43.x86_64` +- [ ] `dotconf-1.4.1-5.fc43.x86_64` +- [ ] `duktape-2.7.0-10.fc43.x86_64` +- [ ] `libproxy-0.5.12-1.fc43.x86_64` +- [ ] `efivar-libs-39-10.fc43.x86_64` +- [ ] `mokutil-0.7.2-2.fc43.x86_64` +- [ ] `giflib-5.2.2-8.fc43.x86_64` +- [ ] `gutenprint-libs-5.3.5-6.fc43.x86_64` +- [ ] `hyphen-2.8.8-27.fc43.x86_64` +- [ ] `libaio-0.3.111-22.fc43.x86_64` +- [ ] `libbasicobjects-0.1.1-59.fc43.x86_64` +- [ ] `libcbor-0.12.0-6.fc43.x86_64` +- [ ] `libcollection-0.7.0-59.fc43.x86_64` +- [ ] `libdhash-0.5.0-59.fc43.x86_64` +- [ ] `libdisplay-info-0.2.0-4.fc43.x86_64` +- [ ] `libei-1.5.0-1.fc43.x86_64` +- [ ] `libieee1284-0.2.11-47.fc43.x86_64` +- [ ] `libimagequant-4.0.3-8.fc43.x86_64` +- [ ] `libmspack-0.10.1-0.15.alpha.fc43.x86_64` +- [ ] `libpasswdqc-2.0.3-8.fc43.x86_64` +- [ ] `libpciaccess-0.16-16.fc43.x86_64` +- [ ] `libdrm-2.4.131-1.fc43.x86_64` +- [ ] `plymouth-graphics-libs-24.004.60-24.fc43.x86_64` +- [ ] `libsamplerate-0.2.2-11.fc43.x86_64` +- [ ] `libsbc-2.0-7.fc43.x86_64` +- [ ] `libstemmer-3.0.1-8.fc43.x86_64` +- [ ] `libtinysparql-3.10.1-5.fc43.x86_64` +- [ ] `opencore-amr-0.1.6-9.fc43.x86_64` +- [ ] `slang-2.3.3-8.fc43.x86_64` +- [ ] `twolame-libs-0.4.0-8.fc43.x86_64` +- [ ] `zix-0.6.2-2.fc43.x86_64` +- [ ] `sord-0.16.18-2.fc43.x86_64` +- [ ] `sratom-0.6.18-2.fc43.x86_64` +- [ ] `lilv-libs-0.24.26-7.fc43.x86_64` +- [ ] `rubberband-libs-4.0.0-4.fc43.x86_64` +- [ ] `pam_passwdqc-2.0.3-8.fc43.x86_64` +- [ ] `passwdqc-utils-2.0.3-8.fc43.x86_64` +- [ ] `libfido2-1.16.0-3.fc43.x86_64` +- [ ] `gutenprint-5.3.5-6.fc43.x86_64` +- [ ] `glib-networking-2.80.1-3.fc43.x86_64` +- [ ] `libsoup-2.74.3-9.fc43.x86_64` +- [ ] `xcb-util-image-0.4.1-8.fc43.x86_64` +- [ ] `libbs2b-3.1.0-36.fc43.x86_64` +- [ ] `opensc-libs-0.26.1-6.fc43.x86_64` +- [ ] `libblockdev-nvme-3.4.0-1.fc43.x86_64` +- [ ] `sssd-nfs-idmap-2.12.0-1.fc43.x86_64` +- [ ] `libshout-2.4.6-9.fc43.x86_64` +- [ ] `lttng-ust-2.14.0-4.fc43.x86_64` +- [ ] `libopenmpt-0.8.4-1.fc43.x86_64` +- [ ] `libnsl2-2.0.1-4.fc43.x86_64` +- [ ] `quota-4.10-2.fc43.x86_64` +- [ ] `tpm2-tss-fapi-4.1.3-8.fc43.x86_64` +- [ ] `osinfo-db-tools-1.12.0-4.fc43.x86_64` +- [ ] `libosinfo-1.12.0-4.fc43.x86_64` +- [ ] `cups-pk-helper-0.2.7-10.fc43.x86_64` +- [ ] `cyrus-sasl-gssapi-2.1.28-33.fc43.x86_64` +- [ ] `libssh-0.11.4-1.fc43.x86_64` +- [ ] `liblouisutdml-2.12.0-7.fc43.x86_64` +- [ ] `javascriptcoregtk4.1-2.50.5-1.fc43.x86_64` +- [ ] `inih-cpp-62-1.fc43.x86_64` +- [ ] `exiv2-libs-0.28.6-2.fc43.x86_64` +- [ ] `libgexiv2-0.14.6-2.fc43.x86_64` +- [ ] `libpskc-2.6.12-3.fc43.x86_64` +- [ ] `gnupg2-dirmngr-2.4.9-5.fc43.x86_64` +- [ ] `gnupg2-keyboxd-2.4.9-5.fc43.x86_64` +- [ ] `gnupg2-gpg-agent-2.4.9-5.fc43.x86_64` +- [ ] `gnupg2-2.4.9-5.fc43.x86_64` +- [ ] `gpgme-1.24.3-6.fc43.x86_64` +- [ ] `ostree-libs-2025.7-1.fc43.x86_64` +- [ ] `gpgmepp-1.24.3-6.fc43.x86_64` +- [ ] `libjcat-0.2.5-1.fc43.x86_64` +- [ ] `setxkbmap-1.3.4-6.fc43.x86_64` +- [ ] `xkbcomp-1.5.0-1.fc43.x86_64` +- [ ] `xmlsec1-openssl-1.2.41-3.fc43.x86_64` +- [ ] `libusbmuxd-2.1.0-4.fc43.x86_64` +- [ ] `libimobiledevice-1.3.0^20240916gited9703d-6.fc43.x86_64` +- [ ] `libuser-0.64-16.fc43.x86_64` +- [ ] `avahi-gobject-0.9~rc2-6.fc43.x86_64` +- [ ] `ima-evm-utils-libs-1.6.2-6.fc43.x86_64` +- [ ] `libblockdev-3.4.0-1.fc43.x86_64` +- [ ] `libblockdev-fs-3.4.0-1.fc43.x86_64` +- [ ] `libblockdev-loop-3.4.0-1.fc43.x86_64` +- [ ] `pciutils-3.14.0-2.fc43.x86_64` +- [ ] `python-pip-wheel-25.1.1-18.fc43.noarch` +- [ ] `audit-rules-4.1.3-1.fc43.x86_64` +- [ ] `mdadm-4.3-9.fc43.x86_64` +- [ ] `sound-theme-freedesktop-0.8-24.fc43.noarch` +- [ ] `urw-base35-bookman-fonts-20200910-26.fc43.noarch` +- [ ] `urw-base35-c059-fonts-20200910-26.fc43.noarch` +- [ ] `urw-base35-d050000l-fonts-20200910-26.fc43.noarch` +- [ ] `urw-base35-gothic-fonts-20200910-26.fc43.noarch` +- [ ] `urw-base35-nimbus-mono-ps-fonts-20200910-26.fc43.noarch` +- [ ] `urw-base35-nimbus-roman-fonts-20200910-26.fc43.noarch` +- [ ] `urw-base35-nimbus-sans-fonts-20200910-26.fc43.noarch` +- [ ] `urw-base35-p052-fonts-20200910-26.fc43.noarch` +- [ ] `urw-base35-standard-symbols-ps-fonts-20200910-26.fc43.noarch` +- [ ] `urw-base35-z003-fonts-20200910-26.fc43.noarch` +- [ ] `urw-base35-fonts-20200910-26.fc43.noarch` +- [ ] `hiredis-1.2.0-7.fc43.x86_64` +- [ ] `httpd-tools-2.4.66-1.fc43.x86_64` +- [ ] `libfprint-1.94.10-1.fc43.x86_64` +- [ ] `fprintd-1.94.5-2.fc43.x86_64` +- [ ] `libfsverity-1.6-3.fc43.x86_64` +- [ ] `librabbitmq-0.15.0-3.fc43.x86_64` +- [ ] `libsrtp-2.6.0-3.fc43.x86_64` +- [ ] `libsss_certmap-2.12.0-1.fc43.x86_64` +- [ ] `libzip-1.11.4-2.fc43.x86_64` +- [ ] `ngtcp2-crypto-ossl-1.19.0-1.fc43.x86_64` +- [ ] `pkcs11-helper-1.30.0-4.fc43.x86_64` +- [ ] `rpm-sequoia-1.10.0-1.fc43.x86_64` +- [ ] `rpm-libs-6.0.1-1.fc43.x86_64` +- [ ] `libmodulemd-2.15.2-4.fc43.x86_64` +- [ ] `librepo-1.20.0-4.fc43.x86_64` +- [ ] `libsolv-0.7.35-3.fc43.x86_64` +- [ ] `libdnf5-5.2.18.0-1.fc43.x86_64` +- [ ] `libdnf5-cli-5.2.18.0-1.fc43.x86_64` +- [ ] `rpm-ostree-libs-2025.12-1.fc43.x86_64` +- [ ] `dnf5-5.2.18.0-1.fc43.x86_64` +- [ ] `rpm-6.0.1-1.fc43.x86_64` +- [ ] `color-filesystem-1-36.fc43.noarch` +- [ ] `rpm-sign-libs-6.0.1-1.fc43.x86_64` +- [ ] `libqmi-utils-1.36.0-2.fc43.x86_64` +- [ ] `xhost-1.0.9-10.fc43.x86_64` +- [ ] `xorg-x11-xauth-1.1.4-2.fc43.x86_64` +- [ ] `xrdb-1.2.2-6.fc43.x86_64` +- [ ] `mesa-libGLU-9.0.3-7.fc43.x86_64` +- [ ] `ngtcp2-crypto-gnutls-1.19.0-1.fc43.x86_64` +- [ ] `apr-util-lmdb-1.6.3-25.fc43.x86_64` +- [ ] `libavc1394-0.5.4-26.fc43.x86_64` +- [ ] `libdc1394-2.2.7-8.fc43.x86_64` +- [ ] `libiec61883-1.2.0-38.fc43.x86_64` +- [ ] `hidapi-0.15.0-2.fc43.x86_64` +- [ ] `libmanette-0.2.13-1.fc43.x86_64` +- [ ] `libjaylink-0.3.0-9.fc43.x86_64` +- [ ] `libmtp-1.1.22-2.fc43.x86_64` +- [ ] `conmon-2.1.13-2.fc43.x86_64` +- [ ] `dbus-broker-37-2.fc43.x86_64` +- [ ] `dbus-1.16.0-4.fc43.x86_64` +- [ ] `ibus-libs-1.5.33-5.fc43.x86_64` +- [ ] `dconf-0.49.0-1.fc43.x86_64` +- [ ] `xdg-dbus-proxy-0.1.6-3.fc43.x86_64` +- [ ] `flatpak-libs-1.16.3-1.fc43.x86_64` +- [ ] `gupnp-1.6.9-2.fc43.x86_64` +- [ ] `gupnp-igd-1.6.0-7.fc43.x86_64` +- [ ] `libnice-0.1.22-8.fc43.x86_64` +- [ ] `PackageKit-glib-1.3.3-14.fc43.x86_64` +- [ ] `device-mapper-persistent-data-1.1.0-4.fc43.x86_64` +- [ ] `libatasmart-0.19-31.fc43.x86_64` +- [ ] `libblockdev-smart-3.4.0-1.fc43.x86_64` +- [ ] `liboeffis-1.5.0-1.fc43.x86_64` +- [ ] `libvncserver-0.9.15-4.fc43.x86_64` +- [ ] `procps-ng-4.0.4-7.fc43.1.x86_64` +- [ ] `kbd-2.8.0-3.fc43.x86_64` +- [ ] `nano-8.5-2.fc43.x86_64` +- [ ] `nano-default-editor-8.5-2.fc43.noarch` +- [ ] `m17n-db-1.8.10-2.fc43.noarch` +- [ ] `libbytesize-2.12-1.fc43.x86_64` +- [ ] `libblockdev-mdraid-3.4.0-1.fc43.x86_64` +- [ ] `libmpc-1.3.1-8.fc43.x86_64` +- [ ] `libmbim-utils-1.32.0-2.fc43.x86_64` +- [ ] `pinentry-1.3.2-1.fc43.x86_64` +- [ ] `gupnp-av-0.14.4-2.fc43.x86_64` +- [ ] `libgee-0.20.8-2.fc43.x86_64` +- [ ] `liblqr-1-0.4.2-28.fc43.x86_64` +- [ ] `libslirp-4.9.1-2.fc43.x86_64` +- [ ] `qpdf-libs-12.3.2-1.fc43.x86_64` +- [ ] `srt-libs-1.5.4-4.fc43.x86_64` +- [ ] `kyotocabinet-libs-1.2.80-8.fc43.x86_64` +- [ ] `libpinyin-2.10.2-2.fc43.x86_64` +- [ ] `libpinyin-data-2.10.2-2.fc43.x86_64` +- [ ] `acl-2.3.2-4.fc43.x86_64` +- [ ] `grub2-pc-modules-2.12-40.fc43.noarch` +- [ ] `gdbm-1.23-10.fc43.x86_64` +- [ ] `pam-1.7.1-4.fc43.x86_64` +- [ ] `sudo-1.9.17-6.p2.fc43.x86_64` +- [ ] `zstd-1.5.7-2.fc43.x86_64` +- [ ] `libXres-1.2.2-6.fc43.x86_64` +- [ ] `libXxf86vm-1.1.6-3.fc43.x86_64` +- [ ] `libvdpau-1.5-10.fc43.x86_64` +- [ ] `libXpm-3.5.17-6.fc43.x86_64` +- [ ] `xmodmap-1.0.11-9.fc43.x86_64` +- [ ] `xorg-x11-xinit-1.4.3-3.fc43.x86_64` +- [ ] `xprop-1.2.8-4.fc43.x86_64` +- [ ] `libxkbcommon-x11-1.11.0-1.fc43.x86_64` +- [ ] `xcb-util-keysyms-0.4.1-8.fc43.x86_64` +- [ ] `xcb-util-renderutil-0.3.10-8.fc43.x86_64` +- [ ] `xcb-util-wm-0.4.2-8.fc43.x86_64` +- [ ] `nss-softokn-freebl-3.119.1-1.fc43.x86_64` +- [ ] `nss-softokn-3.119.1-1.fc43.x86_64` +- [ ] `nss-3.119.1-1.fc43.x86_64` +- [ ] `nss-sysinit-3.119.1-1.fc43.x86_64` +- [ ] `iw-6.17-1.fc43.x86_64` +- [ ] `libibverbs-58.0-4.fc43.x86_64` +- [ ] `libpcap-1.10.6-1.fc43.x86_64` +- [ ] `ethtool-6.15-3.fc43.x86_64` +- [ ] `ipset-libs-7.24-2.fc43.x86_64` +- [ ] `fftw-libs-single-3.3.10-16.fc43.x86_64` +- [ ] `vid.stab-1.1.1-7.fc43.x86_64` +- [ ] `stoken-libs-0.92-14.fc43.x86_64` +- [ ] `graphviz-libs-13.1.2-3.fc43.x86_64` +- [ ] `groff-base-1.23.0-11.fc43.x86_64` +- [ ] `xz-5.8.1-4.fc43.x86_64` +- [ ] `libss-1.47.3-2.fc43.x86_64` +- [ ] `alsa-ucm-1.2.15.3-1.fc43.noarch` +- [ ] `mozjs140-140.2.0-1.fc43.x86_64` +- [ ] `aribb24-1.0.3^20160216git5e9be27-3.fc43.x86_64` +- [ ] `zvbi-0.2.44-2.fc43.x86_64` +- [ ] `libchewing-0.10.3-2.fc43.x86_64` +- [ ] `liblastlog2-2.41.3-7.fc43.x86_64` +- [ ] `util-linux-2.41.3-7.fc43.x86_64` +- [ ] `systemd-258.4-1.fc43.x86_64` +- [ ] `systemd-pam-258.4-1.fc43.x86_64` +- [ ] `polkit-126-6.fc43.x86_64` +- [ ] `bluez-5.86-2.fc43.x86_64` +- [ ] `fwupd-2.0.19-1.fc43.x86_64` +- [ ] `samba-common-4.23.5-1.fc43.noarch` +- [ ] `samba-client-libs-4.23.5-1.fc43.x86_64` +- [ ] `libwbclient-4.23.5-1.fc43.x86_64` +- [ ] `samba-common-libs-4.23.5-1.fc43.x86_64` +- [ ] `libsmbclient-4.23.5-1.fc43.x86_64` +- [ ] `accountsservice-23.13.9-9.fc43.x86_64` +- [ ] `accountsservice-libs-23.13.9-9.fc43.x86_64` +- [ ] `colord-1.4.8-2.fc43.x86_64` +- [ ] `malcontent-0.13.0-3.fc43.x86_64` +- [ ] `device-mapper-1.02.208-2.fc43.x86_64` +- [ ] `device-mapper-libs-1.02.208-2.fc43.x86_64` +- [ ] `cryptsetup-libs-2.8.4-1.fc43.x86_64` +- [ ] `device-mapper-event-libs-1.02.208-2.fc43.x86_64` +- [ ] `flatpak-session-helper-1.16.3-1.fc43.x86_64` +- [ ] `brlapi-0.8.7-4.fc43.x86_64` +- [ ] `openssh-10.0p1-6.fc43.x86_64` +- [ ] `openssh-clients-10.0p1-6.fc43.x86_64` +- [ ] `git-core-2.53.0-1.fc43.x86_64` +- [ ] `device-mapper-event-1.02.208-2.fc43.x86_64` +- [ ] `lvm2-libs-2.03.34-2.fc43.x86_64` +- [ ] `volume_key-libs-0.3.12-28.fc43.x86_64` +- [ ] `libblockdev-crypto-3.4.0-1.fc43.x86_64` +- [ ] `cifs-utils-7.2-2.fc43.x86_64` +- [ ] `bluez-obexd-5.86-2.fc43.x86_64` +- [ ] `ModemManager-1.24.2-1.fc43.x86_64` +- [ ] `rtkit-0.11-69.fc43.x86_64` +- [ ] `hypervfcopyd-6.10-2.fc43.x86_64` +- [ ] `hypervkvpd-6.10-2.fc43.x86_64` +- [ ] `hypervvssd-6.10-2.fc43.x86_64` +- [ ] `iio-sensor-proxy-3.8-1.fc43.x86_64` +- [ ] `iputils-20250605-1.fc43.x86_64` +- [ ] `libftdi-1.5-21.fc43.x86_64` +- [ ] `libkcapi-1.5.0-6.fc43.x86_64` +- [ ] `libkcapi-hasher-1.5.0-6.fc43.x86_64` +- [ ] `libkcapi-hmaccalc-1.5.0-6.fc43.x86_64` +- [ ] `lockdev-1.0.4-0.53.20111007git.fc43.x86_64` +- [ ] `openvpn-2.6.19-1.fc43.x86_64` +- [ ] `rpcbind-1.2.8-0.fc43.x86_64` +- [ ] `wpa_supplicant-2.11-7.fc43.x86_64` +- [ ] `libblockdev-part-3.4.0-1.fc43.x86_64` +- [ ] `libblockdev-swap-3.4.0-1.fc43.x86_64` +- [ ] `usermode-1.114-13.fc43.x86_64` +- [ ] `virt-what-1.27-4.fc43.x86_64` +- [ ] `djvulibre-libs-3.5.28-14.fc43.x86_64` +- [ ] `jasper-libs-4.2.8-1.fc43.x86_64` +- [ ] `LibRaw-0.21.5-1.fc43.x86_64` +- [ ] `game-music-emu-0.6.4-2.fc43.x86_64` +- [ ] `libfontenc-1.1.8-4.fc43.x86_64` +- [ ] `libmysofa-1.3.3-3.fc43.x86_64` +- [ ] `protobuf-3.19.6-18.fc43.x86_64` +- [ ] `taglib-1.13.1-6.fc43.x86_64` +- [ ] `abseil-cpp-20250814.1-1.fc43.x86_64` +- [ ] `double-conversion-3.4.0-1.fc43.x86_64` +- [ ] `graphite2-1.3.14-19.fc43.x86_64` +- [ ] `harfbuzz-11.5.1-2.fc43.x86_64` +- [ ] `freetype-2.13.3-3.fc43.x86_64` +- [ ] `fontconfig-2.17.0-3.fc43.x86_64` +- [ ] `cairo-1.18.4-2.fc43.x86_64` +- [ ] `cairo-gobject-1.18.4-2.fc43.x86_64` +- [ ] `cairomm-1.14.5-12.fc43.x86_64` +- [ ] `cairomm1.16-1.18.0-12.fc43.x86_64` +- [ ] `libraqm-0.10.1-3.fc43.x86_64` +- [ ] `harfbuzz-icu-11.5.1-2.fc43.x86_64` +- [ ] `gjs-1.86.0-1.fc43.x86_64` +- [ ] `libXft-2.3.8-9.fc43.x86_64` +- [ ] `libaribcaption-1.1.1-3.fc43.x86_64` +- [ ] `libXfont2-2.0.7-3.fc43.x86_64` +- [ ] `highway-1.3.0-1.fc43.x86_64` +- [ ] `libjxl-0.11.1-7.fc43.x86_64` +- [ ] `hunspell-1.7.2-10.fc43.x86_64` +- [ ] `enchant2-2.8.14-1.fc43.x86_64` +- [ ] `ilbc-3.0.4-17.fc43.x86_64` +- [ ] `liblerc-4.0.0-9.fc43.x86_64` +- [ ] `libtiff-4.7.1-1.fc43.x86_64` +- [ ] `poppler-25.07.0-3.fc43.x86_64` +- [ ] `poppler-utils-25.07.0-3.fc43.x86_64` +- [ ] `poppler-glib-25.07.0-3.fc43.x86_64` +- [ ] `poppler-cpp-25.07.0-3.fc43.x86_64` +- [ ] `gd-2.3.3-19.fc43.x86_64` +- [ ] `libgphoto2-2.5.33-1.fc43.x86_64` +- [ ] `leptonica-1.87.0-1.fc43.x86_64` +- [ ] `tesseract-libs-5.5.2-1.fc43.x86_64` +- [ ] `libgxps-0.3.2-11.fc43.x86_64` +- [ ] `libsane-airscan-0.99.36-1.fc43.x86_64` +- [ ] `sane-airscan-0.99.36-1.fc43.x86_64` +- [ ] `libmodplug-0.8.9.0-28.fc43.x86_64` +- [ ] `libopenjph-0.22.0-2.fc43.x86_64` +- [ ] `snappy-1.2.2-2.fc43.x86_64` +- [ ] `soundtouch-2.4.0-2.fc43.x86_64` +- [ ] `uchardet-0.0.8-8.fc43.x86_64` +- [ ] `totem-pl-parser-3.26.6-13.fc43.x86_64` +- [ ] `zimg-3.0.6-2.fc43.x86_64` +- [ ] `psmisc-23.7-6.fc43.x86_64` +- [ ] `iproute-6.14.0-2.fc43.x86_64` +- [ ] `vpnc-script-20230907-6.git5b9e7e4c.fc43.noarch` +- [ ] `vpnc-0.5.3^20241114.git11e15a1-3.fc43.x86_64` +- [ ] `open-vm-tools-13.0.10-2.fc43.x86_64` +- [ ] `aardvark-dns-1.17.0-1.fc43.x86_64` +- [ ] `antiword-0.37-42.fc43.x86_64` +- [ ] `liblouisutdml-utils-2.12.0-7.fc43.x86_64` +- [ ] `boost-system-1.83.0-17.fc43.x86_64` +- [ ] `boost-thread-1.83.0-17.fc43.x86_64` +- [ ] `libphonenumber-8.13.55-6.fc43.x86_64` +- [ ] `c-ares-1.34.5-2.fc43.x86_64` +- [ ] `capstone-5.0.5-7.fc43.x86_64` +- [ ] `cdparanoia-libs-10.2-48.fc43.x86_64` +- [ ] `checkpolicy-3.9-2.fc43.x86_64` +- [ ] `cjson-1.7.18-3.fc43.x86_64` +- [ ] `diffutils-3.12-3.fc43.x86_64` +- [ ] `policycoreutils-3.9-7.fc43.x86_64` +- [ ] `selinux-policy-42.23-1.fc43.noarch` +- [ ] `selinux-policy-targeted-42.23-1.fc43.noarch` +- [ ] `container-selinux-2.245.0-1.fc43.noarch` +- [ ] `passt-selinux-0^20260120.g386b5f5-1.fc43.noarch` +- [ ] `passt-0^20260120.g386b5f5-1.fc43.x86_64` +- [ ] `faad2-libs-2.11.2-5.fc43.x86_64` +- [ ] `fstrm-0.6.1-13.fc43.x86_64` +- [ ] `gettext-envsubst-0.25.1-2.fc43.x86_64` +- [ ] `gettext-runtime-0.25.1-2.fc43.x86_64` +- [ ] `grub2-tools-minimal-2.12-40.fc43.x86_64` +- [ ] `gettext-0.25.1-2.fc43.x86_64` +- [ ] `hdparm-9.65-9.fc43.x86_64` +- [ ] `ipcalc-1.0.3-12.fc43.x86_64` +- [ ] `jbig2dec-libs-0.20-7.fc43.x86_64` +- [ ] `kernel-tools-libs-6.18.9-200.fc43.x86_64` +- [ ] `libXdmcp-1.1.5-4.fc43.x86_64` +- [ ] `liba52-0.7.4-51.fc43.x86_64` +- [ ] `libasyncns-0.8-31.fc43.x86_64` +- [ ] `pulseaudio-libs-17.0-9.fc43.x86_64` +- [ ] `flite-2.2-12.fc43.x86_64` +- [ ] `pulseaudio-libs-glib2-17.0-9.fc43.x86_64` +- [ ] `libao-1.2.0-30.fc43.x86_64` +- [ ] `pcaudiolib-1.1-18.fc43.x86_64` +- [ ] `espeak-ng-1.51.1-12.fc43.x86_64` +- [ ] `speech-dispatcher-0.12.1-5.fc43.x86_64` +- [ ] `speech-dispatcher-espeak-ng-0.12.1-5.fc43.x86_64` +- [ ] `pulseaudio-utils-17.0-9.fc43.x86_64` +- [ ] `libcue-2.3.0-12.fc43.x86_64` +- [ ] `libdaemon-0.14-32.fc43.x86_64` +- [ ] `avahi-0.9~rc2-6.fc43.x86_64` +- [ ] `cups-ipptool-2.4.16-4.fc43.x86_64` +- [ ] `libdatrie-0.2.13-12.fc43.x86_64` +- [ ] `libthai-0.1.29-11.fc43.x86_64` +- [ ] `pango-1.57.0-1.fc43.x86_64` +- [ ] `librsvg2-2.61.0-5.fc43.x86_64` +- [ ] `glycin-loaders-2.0.5-4.fc43.x86_64` +- [ ] `glycin-libs-2.0.5-4.fc43.x86_64` +- [ ] `gdk-pixbuf2-2.44.4-1.fc43.x86_64` +- [ ] `libnotify-0.8.8-1.fc43.x86_64` +- [ ] `geoclue2-2.8.0-1.fc43.x86_64` +- [ ] `gtk-update-icon-cache-3.24.51-2.fc43.x86_64` +- [ ] `m17n-lib-1.8.6-2.fc43.x86_64` +- [ ] `f43-backgrounds-base-43.0.4-1.fc43.noarch` +- [ ] `f43-backgrounds-gnome-43.0.4-1.fc43.noarch` +- [ ] `libgsf-1.14.55-1.fc43.x86_64` +- [ ] `libmediaart-1.9.7-2.fc43.x86_64` +- [ ] `pangomm-2.46.4-4.fc43.x86_64` +- [ ] `pangomm2.48-2.56.1-2.fc43.x86_64` +- [ ] `libdeflate-1.25-2.fc43.x86_64` +- [ ] `openexr-libs-3.2.4-6.fc43.x86_64` +- [ ] `libdovi-3.3.2-1.fc43.x86_64` +- [ ] `libplacebo-7.351.0-3.fc43.x86_64` +- [ ] `libebur128-1.2.6-14.fc43.x86_64` +- [ ] `libeis-1.5.0-1.fc43.x86_64` +- [ ] `libev-4.33-14.fc43.x86_64` +- [ ] `libverto-libev-0.3.2-11.fc43.x86_64` +- [ ] `libfyaml-0.8-8.fc43.x86_64` +- [ ] `appstream-1.1.0-1.fc43.x86_64` +- [ ] `libhangul-0.2.0-2.fc43.x86_64` +- [ ] `libijs-0.35-25.fc43.x86_64` +- [ ] `libiptcdata-1.0.5-23.fc43.x86_64` +- [ ] `libldac-2.0.2.3-18.fc43.x86_64` +- [ ] `pipewire-libs-1.4.10-1.fc43.x86_64` +- [ ] `pipewire-jack-audio-connection-kit-libs-1.4.10-1.fc43.x86_64` +- [ ] `pipewire-jack-audio-connection-kit-1.4.10-1.fc43.x86_64` +- [ ] `portaudio-19.7.0-2.fc43.x86_64` +- [ ] `pipewire-pulseaudio-1.4.10-1.fc43.x86_64` +- [ ] `wireplumber-libs-0.5.13-1.fc43.x86_64` +- [ ] `wireplumber-0.5.13-1.fc43.x86_64` +- [ ] `pipewire-1.4.10-1.fc43.x86_64` +- [ ] `libmaxminddb-1.12.2-4.fc43.x86_64` +- [ ] `libmd-1.1.0-8.fc43.x86_64` +- [ ] `libbsd-0.12.2-6.fc43.x86_64` +- [ ] `libmpeg2-0.5.1-32.fc43.x86_64` +- [ ] `libndp-1.9-4.fc43.x86_64` +- [ ] `libnet-1.3-6.fc43.x86_64` +- [ ] `libnfnetlink-1.0.1-31.fc43.x86_64` +- [ ] `libnetfilter_conntrack-1.1.1-1.fc43.x86_64` +- [ ] `iptables-libs-1.8.11-12.fc43.x86_64` +- [ ] `nftables-services-1.1.3-6.fc43.noarch` +- [ ] `nftables-1.1.3-6.fc43.x86_64` +- [ ] `criu-4.2-11.fc43.x86_64` +- [ ] `netavark-1.17.2-1.fc43.x86_64` +- [ ] `iptables-nft-1.8.11-12.fc43.x86_64` +- [ ] `libpaper-2.1.1-9.fc43.x86_64` +- [ ] `libpath_utils-0.2.1-59.fc43.x86_64` +- [ ] `libini_config-1.3.1-59.fc43.x86_64` +- [ ] `gssproxy-0.9.2-9.fc43.x86_64` +- [ ] `libpfm-4.13.0-16.fc43.x86_64` +- [ ] `libpipeline-1.5.8-3.fc43.x86_64` +- [ ] `libpkgconf-2.3.0-3.fc43.x86_64` +- [ ] `pkgconf-2.3.0-3.fc43.x86_64` +- [ ] `pkgconf-pkg-config-2.3.0-3.fc43.x86_64` +- [ ] `kmod-34.2-2.fc43.x86_64` +- [ ] `systemd-udev-258.4-1.fc43.x86_64` +- [ ] `NetworkManager-1.54.3-2.fc43.x86_64` +- [ ] `dracut-107-8.fc43.x86_64` +- [ ] `sane-backends-1.4.0-4.fc43.x86_64` +- [ ] `ostree-2025.7-1.fc43.x86_64` +- [ ] `plymouth-scripts-24.004.60-24.fc43.x86_64` +- [ ] `plymouth-24.004.60-24.fc43.x86_64` +- [ ] `udisks2-2.11.0-1.fc43.x86_64` +- [ ] `upower-1.91.1-2.fc43.x86_64` +- [ ] `plymouth-plugin-label-24.004.60-24.fc43.x86_64` +- [ ] `plymouth-plugin-two-step-24.004.60-24.fc43.x86_64` +- [ ] `plymouth-theme-spinner-24.004.60-24.fc43.x86_64` +- [ ] `NetworkManager-openvpn-1.12.5-2.fc43.x86_64` +- [ ] `NetworkManager-vpnc-1.4.0-4.fc43.x86_64` +- [ ] `NetworkManager-wwan-1.54.3-2.fc43.x86_64` +- [ ] `flashrom-1.4.0-3.fc43.x86_64` +- [ ] `os-prober-1.81-10.fc43.x86_64` +- [ ] `grub2-tools-2.12-40.fc43.x86_64` +- [ ] `grub2-efi-ia32-2.12-40.fc43.x86_64` +- [ ] `grub2-efi-x64-2.12-40.fc43.x86_64` +- [ ] `usbmuxd-1.1.1^20240915git0b1b233-6.fc43.x86_64` +- [ ] `wireless-regdb-2025.10.07-1.fc43.noarch` +- [ ] `fuse-overlayfs-1.13-4.fc43.x86_64` +- [ ] `containers-common-0.64.2-1.fc43.noarch` +- [ ] `skopeo-1.21.0-1.fc43.x86_64` +- [ ] `libsodium-1.0.21-2.fc43.x86_64` +- [ ] `libsss_nss_idmap-2.12.0-1.fc43.x86_64` +- [ ] `sssd-client-2.12.0-1.fc43.x86_64` +- [ ] `libsss_sudo-2.12.0-1.fc43.x86_64` +- [ ] `sssd-common-2.12.0-1.fc43.x86_64` +- [ ] `sssd-krb5-common-2.12.0-1.fc43.x86_64` +- [ ] `libtommath-1.3.1~rc1-6.fc43.x86_64` +- [ ] `tcl-9.0.2-1.fc43.x86_64` +- [ ] `usb_modeswitch-data-20191128-14.fc43.noarch` +- [ ] `usb_modeswitch-2.6.2-4.fc43.x86_64` +- [ ] `libtraceevent-1.8.4-4.fc43.x86_64` +- [ ] `libudfread-1.1.2-12.fc43.x86_64` +- [ ] `libbluray-1.3.4-11.fc43.x86_64` +- [ ] `libunibreak-6.1-4.fc43.x86_64` +- [ ] `libass-0.17.3-4.fc43.x86_64` +- [ ] `liburing-2.9-2.fc43.x86_64` +- [ ] `libuv-1.51.0-2.fc43.x86_64` +- [ ] `bind-libs-9.18.44-1.fc43.x86_64` +- [ ] `libvisual-0.4.2-3.fc43.x86_64` +- [ ] `libwmf-lite-0.2.13-8.fc43.x86_64` +- [ ] `libxcvt-0.1.2-10.fc43.x86_64` +- [ ] `linux-atm-libs-2.5.1-45.fc43.x86_64` +- [ ] `ppp-2.5.1-6.fc43.x86_64` +- [ ] `lm_sensors-libs-3.6.0-23.fc43.x86_64` +- [ ] `libglvnd-egl-1.7.0-8.fc43.x86_64` +- [ ] `libglvnd-gles-1.7.0-8.fc43.x86_64` +- [ ] `libglvnd-glx-1.7.0-8.fc43.x86_64` +- [ ] `libchromaprint-1.6.0-1.fc43.x86_64` +- [ ] `freeglut-3.8.0-1.fc43.x86_64` +- [ ] `libcaca-0.99-0.80.beta20.fc43.x86_64` +- [ ] `glx-utils-9.0.0-10.fc43.x86_64` +- [ ] `lpcnetfreedv-0.5-9.fc43.x86_64` +- [ ] `codec2-1.2.0-7.fc43.x86_64` +- [ ] `mbedtls-3.6.5-1.fc43.x86_64` +- [ ] `librist-0.2.7-10.fc43.x86_64` +- [ ] `mpdecimal-4.0.1-2.fc43.x86_64` +- [ ] `python3-libs-3.14.2-1.fc43.x86_64` +- [ ] `python3-3.14.2-1.fc43.x86_64` +- [ ] `python3-gobject-base-3.54.5-4.fc43.x86_64` +- [ ] `python3-dbus-1.4.0-7.fc43.x86_64` +- [ ] `python3-idna-3.10-6.fc43.noarch` +- [ ] `python3-urllib3-2.6.3-1.fc43.noarch` +- [ ] `at-spi2-core-2.58.3-1.fc43.x86_64` +- [ ] `atk-2.58.3-1.fc43.x86_64` +- [ ] `libwacom-2.18.0-1.fc43.x86_64` +- [ ] `at-spi2-atk-2.58.3-1.fc43.x86_64` +- [ ] `atkmm-2.28.4-4.fc43.x86_64` +- [ ] `hplip-libs-3.25.8-1.fc43.x86_64` +- [ ] `openconnect-9.12-9.fc43.x86_64` +- [ ] `pcsc-lite-2.3.3-2.fc43.x86_64` +- [ ] `pcsc-lite-ccid-1.7.0-2.fc43.x86_64` +- [ ] `python3-attrs-25.4.0-1.fc43.noarch` +- [ ] `python3-cairo-1.28.0-4.fc43.x86_64` +- [ ] `python3-gobject-3.54.5-4.fc43.x86_64` +- [ ] `python3-certifi-2025.07.09-3.fc43.noarch` +- [ ] `python3-charset-normalizer-3.4.3-3.fc43.noarch` +- [ ] `python3-distro-1.9.0-10.fc43.noarch` +- [ ] `python3-jmespath-1.0.1-13.fc43.noarch` +- [ ] `python3-libselinux-3.9-5.fc43.x86_64` +- [ ] `python3-pyyaml-6.0.2-7.fc43.x86_64` +- [ ] `python3-rpds-py-0.27.0-2.fc43.x86_64` +- [ ] `python3-referencing-0.36.2-5.fc43.noarch` +- [ ] `python3-six-1.17.0-7.fc43.noarch` +- [ ] `python3-speechd-0.12.1-5.fc43.x86_64` +- [ ] `python3-dateutil-2.9.0.post0-6.fc43.noarch` +- [ ] `python3-botocore-1.42.47-1.fc43.noarch` +- [ ] `python3-s3transfer-0.16.0-1.fc43.noarch` +- [ ] `python3-linux-procfs-0.7.3-11.fc43.noarch` +- [ ] `python3-jsonschema-specifications-2024.10.1-6.fc43.noarch` +- [ ] `python3-jsonschema-4.23.0-6.fc43.noarch` +- [ ] `python3-libsemanage-3.9-4.fc43.x86_64` +- [ ] `python3-pyatspi-2.58.1-1.fc43.noarch` +- [ ] `NetworkManager-openconnect-1.2.10-9.fc43.x86_64` +- [ ] `python3-anyio-4.12.1-1.fc43.noarch` +- [ ] `python3-dasbus-1.7-13.fc43.noarch` +- [ ] `python3-argcomplete-3.6.3-2.fc43.noarch` +- [ ] `python3-audit-4.1.3-1.fc43.x86_64` +- [ ] `python3-brlapi-0.8.7-4.fc43.x86_64` +- [ ] `python3-click-8.1.7-11.fc43.noarch` +- [ ] `python3-cups-2.0.4-7.fc43.x86_64` +- [ ] `python3-enchant-3.2.2-23.fc43.noarch` +- [ ] `python3-h11-0.16.0-5.fc43.noarch` +- [ ] `python3-httpcore-1.0.9-5.fc43.noarch` +- [ ] `python3-inotify-0.9.6-42.fc43.noarch` +- [ ] `python3-louis-3.33.0-6.fc43.noarch` +- [ ] `python3-nftables-1.1.3-6.fc43.noarch` +- [ ] `python3-firewall-2.3.2-1.fc43.noarch` +- [ ] `python3-olefile-0.47-12.fc43.noarch` +- [ ] `python3-pillow-11.3.0-6.fc43.x86_64` +- [ ] `python3-packaging-25.0-7.fc43.noarch` +- [ ] `python3-pam-2.0.2-16.fc43.noarch` +- [ ] `python3-ptyprocess-0.7.0-14.fc43.noarch` +- [ ] `python3-pexpect-4.9.0-14.fc43.noarch` +- [ ] `python3-pysocks-1.7.1-31.fc43.noarch` +- [ ] `python3-pyudev-0.24.3-12.fc43.noarch` +- [ ] `tuned-2.27.0-0.1.rc1.fc43.noarch` +- [ ] `python3-pyxdg-0.28-1.fc43.noarch` +- [ ] `python3-rapidfuzz-3.12.2-5.fc43.x86_64` +- [ ] `python3-setools-4.6.0-4.fc43.x86_64` +- [ ] `python3-policycoreutils-3.9-7.fc43.noarch` +- [ ] `policycoreutils-python-utils-3.9-7.fc43.noarch` +- [ ] `NetworkManager-ssh-selinux-1.4.2-1.fc43.x86_64` +- [ ] `flatpak-selinux-1.16.3-1.fc43.noarch` +- [ ] `flatpak-1.16.3-1.fc43.x86_64` +- [ ] `switcheroo-control-3.0-1.fc43.x86_64` +- [ ] `usbutils-018-4.fc43.x86_64` +- [ ] `wsdd-0.8-5.fc43.noarch` +- [ ] `gvfs-1.58.1-1.fc43.x86_64` +- [ ] `mtdev-1.1.6-11.fc43.x86_64` +- [ ] `libinput-1.30.1-2.fc43.x86_64` +- [ ] `oniguruma-6.9.10-3.fc43.x86_64` +- [ ] `openpgm-5.3.128-5.fc43.x86_64` +- [ ] `zeromq-4.3.5-22.fc43.x86_64` +- [ ] `pcre2-utf16-10.47-1.fc43.x86_64` +- [ ] `qt5-qtbase-5.15.18-1.fc43.x86_64` +- [ ] `qt5-qtbase-common-5.15.18-1.fc43.noarch` +- [ ] `qt5-qtbase-gui-5.15.18-1.fc43.x86_64` +- [ ] `qt5-qtdeclarative-5.15.18-1.fc43.x86_64` +- [ ] `qt5-qtwayland-5.15.18-1.fc43.x86_64` +- [ ] `qt5-qtsvg-5.15.18-1.fc43.x86_64` +- [ ] `qt5-qtx11extras-5.15.18-1.fc43.x86_64` +- [ ] `pcre2-utf32-10.47-1.fc43.x86_64` +- [ ] `qemu-user-static-aarch64-10.1.3-1.fc43.x86_64` +- [ ] `qrencode-libs-4.1.1-11.fc43.x86_64` +- [ ] `sshpass-1.09-11.fc43.x86_64` +- [ ] `uriparser-1.0.0-1.fc43.x86_64` +- [ ] `libwinpr-3.22.0-1.fc43.x86_64` +- [ ] `freerdp-libs-3.22.0-1.fc43.x86_64` +- [ ] `userspace-rcu-0.15.3-2.fc43.x86_64` +- [ ] `vo-amrwbenc-0.1.3-23.fc43.x86_64` +- [ ] `vte-profile-0.82.3-1.fc43.x86_64` +- [ ] `wavpack-5.8.1-3.fc43.x86_64` +- [ ] `xdg-user-dirs-0.18-11.fc43.x86_64` +- [ ] `xvidcore-1.3.7-14.fc43.x86_64` +- [ ] `xxhash-libs-0.8.3-3.fc43.x86_64` +- [ ] `yajl-2.1.0-38.fc43.x86_64` +- [ ] `crun-1.25.1-1.fc43.x86_64` +- [ ] `containers-common-extra-0.64.2-1.fc43.noarch` +- [ ] `zram-generator-1.2.1-3.fc43.x86_64` +- [ ] `adwaita-icon-theme-legacy-46.2-4.fc43.noarch` +- [ ] `elfutils-default-yama-scope-0.194-1.fc43.noarch` +- [ ] `elfutils-libs-0.194-1.fc43.x86_64` +- [ ] `gstreamer1-1.26.10-1.fc43.x86_64` +- [ ] `gstreamer1-plugins-base-1.26.10-1.fc43.x86_64` +- [ ] `libcanberra-0.30-38.fc43.x86_64` +- [ ] `gsound-1.0.3-11.fc43.x86_64` +- [ ] `gstreamer1-plugins-bad-free-libs-1.26.10-1.fc43.x86_64` +- [ ] `gstreamer1-plugins-good-1.26.10-1.fc43.x86_64` +- [ ] `xdg-desktop-portal-1.20.3-2.fc43.x86_64` +- [ ] `libcamera-0.5.2-5.fc43.x86_64` +- [ ] `gst-editing-services-1.26.10-1.fc43.x86_64` +- [ ] `gupnp-dlna-0.12.0-11.fc43.x86_64` +- [ ] `localsearch-3.10.2-1.fc43.x86_64` +- [ ] `pipewire-gstreamer-1.4.10-1.fc43.x86_64` +- [ ] `elfutils-debuginfod-client-0.194-1.fc43.x86_64` +- [ ] `libbabeltrace-1.5.11-15.fc43.x86_64` +- [ ] `rpm-build-libs-6.0.1-1.fc43.x86_64` +- [ ] `httpd-filesystem-2.4.66-1.fc43.noarch` +- [ ] `httpd-core-2.4.66-1.fc43.x86_64` +- [ ] `mod_dnssd-0.6-35.fc43.x86_64` +- [ ] `fedora-logos-httpd-42.0.1-2.fc43.noarch` +- [ ] `httpd-2.4.66-1.fc43.x86_64` +- [ ] `emacs-filesystem-30.0-5.fc43.noarch` +- [ ] `desktop-file-utils-0.28-2.fc43.x86_64` +- [ ] `xdg-utils-1.2.1-4.fc43.noarch` +- [ ] `dns-root-data-2026260100-2.fc43.noarch` +- [ ] `unbound-libs-1.24.2-1.fc43.x86_64` +- [ ] `gnutls-dane-3.8.12-1.fc43.x86_64` +- [ ] `wget2-libs-2.2.1-1.fc43.x86_64` +- [ ] `wget2-2.2.1-1.fc43.x86_64` +- [ ] `distribution-gpg-keys-1.117-1.fc43.noarch` +- [ ] `dhcp-common-4.4.3-22.fc43.noarch` +- [ ] `catatonit-0.2.1-3.fc43.x86_64` +- [ ] `podman-5.7.1-1.fc43.x86_64` +- [ ] `bootc-1.12.1-1.fc43.x86_64` +- [ ] `rpm-ostree-2025.12-1.fc43.x86_64` +- [ ] `adwaita-cursor-theme-49.0-1.fc43.noarch` +- [ ] `adwaita-icon-theme-49.0-1.fc43.noarch` +- [ ] `gtk4-4.20.3-1.fc43.x86_64` +- [ ] `gtk3-3.24.51-2.fc43.x86_64` +- [ ] `libadwaita-1.8.4-1.fc43.x86_64` +- [ ] `gnome-online-accounts-libs-3.56.4-1.fc43.x86_64` +- [ ] `libnma-gtk4-1.10.6-10.fc43.x86_64` +- [ ] `webkitgtk6.0-2.50.5-1.fc43.x86_64` +- [ ] `libnma-1.10.6-10.fc43.x86_64` +- [ ] `tecla-49.0-1.fc43.x86_64` +- [ ] `libportal-gtk4-0.9.1-3.fc43.x86_64` +- [ ] `gnome-bluetooth-libs-47.1-3.fc43.x86_64` +- [ ] `gcr3-3.41.1-11.fc43.x86_64` +- [ ] `gnome-keyring-48.0-3.fc43.x86_64` +- [ ] `gnome-autoar-0.4.5-3.fc43.x86_64` +- [ ] `libcanberra-gtk3-0.30-38.fc43.x86_64` +- [ ] `libdecor-0.2.5-1.fc43.x86_64` +- [ ] `webkit2gtk4.1-2.50.5-1.fc43.x86_64` +- [ ] `evolution-data-server-3.58.3-1.fc43.x86_64` +- [ ] `evolution-data-server-langpacks-3.58.3-1.fc43.noarch` +- [ ] `gtksourceview5-5.18.0-3.fc43.x86_64` +- [ ] `libspelling-0.4.9-1.fc43.x86_64` +- [ ] `papers-libs-49.3-1.fc43.x86_64` +- [ ] `evolution-ews-core-3.58.3-1.fc43.x86_64` +- [ ] `evolution-ews-langpacks-3.58.3-1.fc43.noarch` +- [ ] `SDL3-3.4.0-3.fc43.x86_64` +- [ ] `sdl2-compat-2.32.64-1.fc43.x86_64` +- [ ] `xorg-x11-server-Xwayland-24.1.9-1.fc43.x86_64` +- [ ] `gnome-keyring-pam-48.0-3.fc43.x86_64` +- [ ] `epiphany-runtime-49.2-1.fc43.x86_64` +- [ ] `gnome-software-49.3-1.fc43.x86_64` +- [ ] `NetworkManager-ssh-1.4.2-1.fc43.x86_64` +- [ ] `yelp-libs-49.0-1.fc43.x86_64` +- [ ] `libgdata-0.18.1-15.fc43.x86_64` +- [ ] `msgraph-0.3.4-5.fc43.x86_64` +- [ ] `gvfs-goa-1.58.1-1.fc43.x86_64` +- [ ] `gnome-online-accounts-3.56.4-1.fc43.x86_64` +- [ ] `malcontent-ui-libs-0.13.0-3.fc43.x86_64` +- [ ] `firefox-147.0.3-1.fc43.x86_64` +- [ ] `gnome-desktop3-44.5-1.fc43.x86_64` +- [ ] `gnome-desktop4-44.5-1.fc43.x86_64` +- [ ] `gnome-settings-daemon-49.1-2.fc43.x86_64` +- [ ] `gnome-session-49.2-2.fc43.x86_64` +- [ ] `nautilus-49.4-1.fc43.x86_64` +- [ ] `mutter-49.4-1.fc43.x86_64` +- [ ] `xdg-desktop-portal-gnome-49.0-1.fc43.x86_64` +- [ ] `gtkmm3.0-3.24.10-2.fc43.x86_64` +- [ ] `ibus-gtk3-1.5.33-5.fc43.x86_64` +- [ ] `ibus-1.5.33-5.fc43.x86_64` +- [ ] `ibus-setup-1.5.33-5.fc43.noarch` +- [ ] `kasumi-unicode-2.5-49.fc43.x86_64` +- [ ] `ibus-anthy-1.5.17-8.fc43.x86_64` +- [ ] `ibus-anthy-python-1.5.17-8.fc43.noarch` +- [ ] `libhandy-1.8.3-9.fc43.x86_64` +- [ ] `libwnck3-43.3-1.fc43.x86_64` +- [ ] `system-config-printer-libs-1.5.18-16.fc43.noarch` +- [ ] `vte291-0.82.3-1.fc43.x86_64` +- [ ] `vte291-gtk4-0.82.3-1.fc43.x86_64` +- [ ] `xdg-desktop-portal-gtk-1.15.3-2.fc43.x86_64` +- [ ] `xdg-user-dirs-gtk-0.16-1.fc43.x86_64` +- [ ] `colord-gtk4-0.3.1-4.fc43.x86_64` +- [ ] `gnome-control-center-49.4-1.fc43.x86_64` +- [ ] `gcr-4.4.0.1-4.fc43.x86_64` +- [ ] `gnome-shell-49.4-1.fc43.x86_64` +- [ ] `gnome-session-wayland-session-49.2-2.fc43.x86_64` +- [ ] `gdm-49.2-2.fc43.x86_64` +- [ ] `gnome-shell-extension-common-49.0-2.fc43.noarch` +- [ ] `gnome-shell-extension-apps-menu-49.0-2.fc43.noarch` +- [ ] `gnome-shell-extension-launch-new-instance-49.0-2.fc43.noarch` +- [ ] `gnome-shell-extension-places-menu-49.0-2.fc43.noarch` +- [ ] `gnome-shell-extension-window-list-49.0-2.fc43.noarch` +- [ ] `gtkmm4.0-4.20.0-1.fc43.x86_64` +- [ ] `adobe-mappings-pdf-20190401-10.fc43.noarch` +- [ ] `libgs-10.05.1-6.fc43.x86_64` +- [ ] `ghostscript-10.05.1-6.fc43.x86_64` +- [ ] `ghostscript-tools-fontutils-10.05.1-6.fc43.noarch` +- [ ] `ghostscript-tools-printing-10.05.1-6.fc43.noarch` +- [ ] `libcupsfilters-2.1.1-5.fc43.x86_64` +- [ ] `libppd-2.1.1-2.fc43.x86_64` +- [ ] `cups-filters-2.0.1-12.fc43.x86_64` +- [ ] `cups-2.4.16-4.fc43.x86_64` +- [ ] `ImageMagick-libs-7.1.1.47-3.fc43.x86_64` +- [ ] `ImageMagick-7.1.1.47-3.fc43.x86_64` +- [ ] `braille-printer-app-2.0~b0^386eea385f-9.fc43.x86_64` +- [ ] `bluez-cups-5.86-2.fc43.x86_64` +- [ ] `dymo-cups-drivers-1.4.0.5-24.fc43.x86_64` +- [ ] `gutenprint-cups-5.3.5-6.fc43.x86_64` +- [ ] `hplip-3.25.8-1.fc43.x86_64` +- [ ] `ptouch-driver-1.7.1-2.fc43.x86_64` +- [ ] `splix-2.0.1-4.fc43.x86_64` +- [ ] `c2esp-2.7-35.fc43.x86_64` +- [ ] `cups-browsed-2.1.1-5.fc43.x86_64` +- [ ] `cups-filters-driverless-2.0.1-12.fc43.x86_64` +- [ ] `printer-driver-brlaser-6.2.7-2.fc43.x86_64` +- [ ] `gnome-system-monitor-49.1-1.fc43.x86_64` +- [ ] `gnome-classic-session-49.0-2.fc43.noarch` +- [ ] `gnome-initial-setup-49.0-1.fc43.x86_64` +- [ ] `gnome-browser-connector-42.1-13.fc43.x86_64` +- [ ] `gnome-shell-extension-background-logo-49.0-2.fc43.noarch` +- [ ] `ptyxis-49.2-1.fc43.x86_64` +- [ ] `system-config-printer-udev-1.5.18-16.fc43.x86_64` +- [ ] `orca-49.5-1.fc43.noarch` +- [ ] `gnome-disk-utility-46.1-3.fc43.x86_64` +- [ ] `ibus-hangul-1.5.5-11.fc43.x86_64` +- [ ] `ibus-libpinyin-1.16.5-2.fc43.x86_64` +- [ ] `ibus-m17n-1.4.37-1.fc43.x86_64` +- [ ] `ibus-typing-booster-2.30.3-1.fc43.noarch` +- [ ] `open-vm-tools-desktop-13.0.10-2.fc43.x86_64` +- [ ] `papers-nautilus-49.3-1.fc43.x86_64` +- [ ] `firefox-langpacks-147.0.3-1.fc43.x86_64` +- [ ] `malcontent-control-0.13.0-3.fc43.x86_64` +- [ ] `yelp-49.0-1.fc43.x86_64` +- [ ] `NetworkManager-ssh-gnome-1.4.2-1.fc43.x86_64` +- [ ] `papers-previewer-49.3-1.fc43.x86_64` +- [ ] `papers-thumbnailer-49.3-1.fc43.x86_64` +- [ ] `NetworkManager-openconnect-gnome-1.2.10-9.fc43.x86_64` +- [ ] `NetworkManager-vpnc-gnome-1.4.0-4.fc43.x86_64` +- [ ] `gnome-bluetooth-47.1-3.fc43.x86_64` +- [ ] `NetworkManager-openvpn-gnome-1.12.5-2.fc43.x86_64` +- [ ] `nm-connection-editor-1.36.0-6.fc43.x86_64` +- [ ] `gnome-tour-48.1-3.fc43.x86_64` +- [ ] `ibus-chewing-2.1.7-1.fc43.x86_64` +- [ ] `gnome-color-manager-3.36.2-2.fc43.x86_64` +- [ ] `gstreamer1-plugins-bad-free-1.26.10-1.fc43.x86_64` +- [ ] `ibus-gtk4-1.5.33-5.fc43.x86_64` +- [ ] `rygel-45.1-1.fc43.x86_64` +- [ ] `toolbox-0.3-1.fc43.x86_64` +- [ ] `dhcp-client-4.4.3-22.fc43.x86_64` +- [ ] `wget2-wget-2.2.1-1.fc43.x86_64` +- [ ] `unbound-anchor-1.24.2-1.fc43.x86_64` +- [ ] `pinfo-0.6.13-9.fc43.x86_64` +- [ ] `gnome-user-share-48.1-2.fc43.x86_64` +- [ ] `mod_http2-2.0.37-1.fc43.x86_64` +- [ ] `mod_lua-2.4.66-1.fc43.x86_64` +- [ ] `dnf5-plugins-5.2.18.0-1.fc43.x86_64` +- [ ] `python3-perf-6.18.9-200.fc43.x86_64` +- [ ] `libcamera-ipa-0.5.2-5.fc43.x86_64` +- [ ] `pipewire-plugin-libcamera-1.4.10-1.fc43.x86_64` +- [ ] `gstreamer1-plugins-good-qt-1.26.10-1.fc43.x86_64` +- [ ] `gstreamer1-plugin-dav1d-0.14.0-3.fc43.x86_64` +- [ ] `gstreamer1-plugin-libav-1.26.10-1.fc43.x86_64` +- [ ] `gstreamer1-plugins-ugly-free-1.26.10-1.fc43.x86_64` +- [ ] `zram-generator-defaults-1.2.1-3.fc43.noarch` +- [ ] `buildah-1.42.2-1.fc43.x86_64` +- [ ] `rsync-3.4.1-4.fc43.x86_64` +- [ ] `xfsprogs-6.15.0-3.fc43.x86_64` +- [ ] `gnome-remote-desktop-49.2-1.fc43.x86_64` +- [ ] `brltty-6.8-4.fc43.x86_64` +- [ ] `qadwaitadecorations-qt5-0.1.7-2.fc43.x86_64` +- [ ] `qt5-qtxmlpatterns-5.15.18-1.fc43.x86_64` +- [ ] `jq-1.8.1-1.fc43.x86_64` +- [ ] `gvfs-afc-1.58.1-1.fc43.x86_64` +- [ ] `gvfs-afp-1.58.1-1.fc43.x86_64` +- [ ] `gvfs-archive-1.58.1-1.fc43.x86_64` +- [ ] `gvfs-fuse-1.58.1-1.fc43.x86_64` +- [ ] `gvfs-gphoto2-1.58.1-1.fc43.x86_64` +- [ ] `gvfs-mtp-1.58.1-1.fc43.x86_64` +- [ ] `gvfs-smb-1.58.1-1.fc43.x86_64` +- [ ] `tuned-ppd-2.27.0-0.1.rc1.fc43.noarch` +- [ ] `python3-urllib3+socks-2.6.3-1.fc43.noarch` +- [ ] `sos-4.10.2-1.fc43.noarch` +- [ ] `firewalld-2.3.2-1.fc43.noarch` +- [ ] `python3-httpx-0.28.1-9.fc43.noarch` +- [ ] `kernel-tools-6.18.9-200.fc43.x86_64` +- [ ] `python3-boto3-1.42.47-1.fc43.noarch` +- [ ] `speech-dispatcher-utils-0.12.1-5.fc43.x86_64` +- [ ] `python3-requests-2.32.5-2.fc43.noarch` +- [ ] `opensc-0.26.1-6.fc43.x86_64` +- [ ] `libsane-hpaio-3.25.8-1.fc43.x86_64` +- [ ] `cifs-utils-info-7.2-2.fc43.x86_64` +- [ ] `crypto-policies-scripts-20251125-1.git63291f8.fc43.noarch` +- [ ] `fpaste-0.5.0.0-3.fc43.noarch` +- [ ] `libcap-ng-python3-0.9-7.fc43.x86_64` +- [ ] `nfs-utils-2.8.4-0.fc43.x86_64` +- [ ] `paps-0.8.0-14.fc43.x86_64` +- [ ] `python-unversioned-command-3.14.2-1.fc43.noarch` +- [ ] `python3-file-magic-5.46-8.fc43.noarch` +- [ ] `python3-langtable-0.0.69-4.fc43.noarch` +- [ ] `python3-pyaudio-0.2.13-10.fc43.x86_64` +- [ ] `python3-regex-2025.10.23-1.fc43.x86_64` +- [ ] `sudo-python-plugin-1.9.17-6.p2.fc43.x86_64` +- [ ] `intel-vpl-gpu-rt-25.4.5-1.fc43.x86_64` +- [ ] `xdriinfo-1.0.7-5.fc43.x86_64` +- [ ] `NetworkManager-ppp-1.54.3-2.fc43.x86_64` +- [ ] `bind-utils-9.18.44-1.fc43.x86_64` +- [ ] `qemu-guest-agent-10.1.3-1.fc43.x86_64` +- [ ] `sssd-kcm-2.12.0-1.fc43.x86_64` +- [ ] `NetworkManager-wifi-1.54.3-2.fc43.x86_64` +- [ ] `shim-x64-15.8-3.x86_64` +- [ ] `shim-ia32-15.8-3.x86_64` +- [ ] `grub2-pc-2.12-40.fc43.x86_64` +- [ ] `fwupd-plugin-flashrom-2.0.19-1.fc43.x86_64` +- [ ] `NetworkManager-bluetooth-1.54.3-2.fc43.x86_64` +- [ ] `plymouth-system-theme-24.004.60-24.fc43.x86_64` +- [ ] `sane-backends-drivers-cameras-1.4.0-4.fc43.x86_64` +- [ ] `sane-backends-drivers-scanners-1.4.0-4.fc43.x86_64` +- [ ] `virtualbox-guest-additions-7.2.4-1.fc43.x86_64` +- [ ] `NetworkManager-adsl-1.54.3-2.fc43.x86_64` +- [ ] `b43-openfwwf-5.2-46.fc43.noarch` +- [ ] `ipp-usb-0.9.30-7.fc43.x86_64` +- [ ] `systemd-oomd-defaults-258.4-1.fc43.noarch` +- [ ] `udftools-2.3-12.fc43.x86_64` +- [ ] `lvm2-2.03.34-2.fc43.x86_64` +- [ ] `fwupd-efi-1.8-1.fc43.x86_64` +- [ ] `man-db-2.13.1-2.fc43.x86_64` +- [ ] `iptstate-2.2.7-10.fc43.x86_64` +- [ ] `criu-libs-4.2-11.fc43.x86_64` +- [ ] `dnsmasq-2.92-1.fc43.x86_64` +- [ ] `pipewire-utils-1.4.10-1.fc43.x86_64` +- [ ] `pipewire-alsa-1.4.10-1.fc43.x86_64` +- [ ] `pipewire-config-raop-1.4.10-1.fc43.x86_64` +- [ ] `uresourced-0.5.4-4.fc43.x86_64` +- [ ] `desktop-backgrounds-gnome-43.0.0-2.fc43.noarch` +- [ ] `fedora-workstation-backgrounds-1.6-8.fc43.noarch` +- [ ] `gnome-backgrounds-49.0-1.fc43.noarch` +- [ ] `gnome-epub-thumbnailer-1.8-3.fc43.x86_64` +- [ ] `glycin-thumbnailer-2.0.5-4.fc43.x86_64` +- [ ] `avahi-tools-0.9~rc2-6.fc43.x86_64` +- [ ] `nss-mdns-0.15.1-27.fc43.x86_64` +- [ ] `spice-webdavd-3.0-12.fc43.x86_64` +- [ ] `hyperv-daemons-6.10-2.fc43.x86_64` +- [ ] `git-core-doc-2.53.0-1.fc43.noarch` +- [ ] `openssh-server-10.0p1-6.fc43.x86_64` +- [ ] `cryptsetup-2.8.4-1.fc43.x86_64` +- [ ] `kpartx-0.11.1-2.fc43.x86_64` +- [ ] `samba-client-4.23.5-1.fc43.x86_64` +- [ ] `fwupd-plugin-modem-manager-2.0.19-1.fc43.x86_64` +- [ ] `fwupd-plugin-uefi-capsule-data-2.0.19-1.fc43.x86_64` +- [ ] `polkit-pkla-compat-0.1-31.fc43.x86_64` +- [ ] `realmd-0.17.1-18.fc43.x86_64` +- [ ] `alsa-utils-1.2.15.2-1.fc43.x86_64` +- [ ] `audit-4.1.3-1.fc43.x86_64` +- [ ] `bolt-0.9.10-2.fc43.x86_64` +- [ ] `bootupd-0.2.32-2.fc43.x86_64` +- [ ] `chrony-4.8-3.fc43.x86_64` +- [ ] `initscripts-service-10.27-1.fc43.noarch` +- [ ] `logrotate-3.22.0-4.fc43.x86_64` +- [ ] `mcelog-175-13.fc43.x86_64` +- [ ] `spice-vdagent-0.23.0-1.fc43.x86_64` +- [ ] `systemd-container-258.4-1.fc43.x86_64` +- [ ] `systemd-networkd-258.4-1.fc43.x86_64` +- [ ] `systemd-resolved-258.4-1.fc43.x86_64` +- [ ] `thermald-2.5.9-2.fc43.x86_64` +- [ ] `wireguard-tools-1.0.20250521-2.fc43.x86_64` +- [ ] `nvme-cli-2.16-1.fc43.x86_64` +- [ ] `e2fsprogs-1.47.3-2.fc43.x86_64` +- [ ] `ipset-7.24-2.fc43.x86_64` +- [ ] `slirp4netns-1.3.1-3.fc43.x86_64` +- [ ] `pinentry-gnome3-1.3.2-1.fc43.x86_64` +- [ ] `cpp-15.2.1-7.fc43.x86_64` +- [ ] `default-editor-8.5-2.fc43.noarch` +- [ ] `libdnf5-plugin-expired-pgp-keys-5.2.18.0-1.fc43.x86_64` +- [ ] `rpm-plugin-audit-6.0.1-1.fc43.x86_64` +- [ ] `rpm-plugin-selinux-6.0.1-1.fc43.x86_64` +- [ ] `fprintd-pam-1.94.5-2.fc43.x86_64` +- [ ] `gnupg2-scdaemon-2.4.9-5.fc43.x86_64` +- [ ] `exiv2-0.28.6-2.fc43.x86_64` +- [ ] `tpm2-tools-5.7-4.fc43.x86_64` +- [ ] `passwdqc-2.0.3-8.fc43.x86_64` +- [ ] `tinysparql-3.10.1-5.fc43.x86_64` +- [ ] `efibootmgr-18-10.fc43.x86_64` +- [ ] `zip-3.0-44.fc43.x86_64` +- [ ] `passim-0.1.10-2.fc43.x86_64` +- [ ] `cracklib-dicts-2.9.11-8.fc43.x86_64` +- [ ] `ntfs-3g-2022.10.3-10.fc43.x86_64` +- [ ] `ntfs-3g-system-compression-1.1-1.fc43.x86_64` +- [ ] `ntfsprogs-2022.10.3-10.fc43.x86_64` +- [ ] `lsof-4.98.0-8.fc43.x86_64` +- [ ] `pam_afs_session-2.6-24.fc43.x86_64` +- [ ] `gamemode-1.8.2-3.fc43.x86_64` +- [ ] `cyrus-sasl-plain-2.1.28-33.fc43.x86_64` +- [ ] `fuse-2.9.9-24.fc43.x86_64` +- [ ] `openssl-3.5.4-2.fc43.x86_64` +- [ ] `apr-util-openssl-1.6.3-25.fc43.x86_64` +- [ ] `hfsplus-tools-540.1.linux3-35.fc43.x86_64` +- [ ] `pkcs11-provider-1.0-4.fc43.x86_64` +- [ ] `btrfs-progs-6.17.1-1.fc43.x86_64` +- [ ] `prefixdevname-0.2.0-7.fc43.x86_64` +- [ ] `low-memory-monitor-2.1-13.fc43.x86_64` +- [ ] `nilfs-utils-2.2.11-7.fc43.x86_64` +- [ ] `f2fs-tools-1.16.0-9.fc43.x86_64` +- [ ] `vim-minimal-9.1.2128-2.fc43.x86_64` +- [ ] `attr-2.5.2-6.fc43.x86_64` +- [ ] `mtr-0.95-13.fc43.x86_64` +- [ ] `p11-kit-server-0.26.2-1.fc43.x86_64` +- [ ] `whois-5.6.5-1.fc43.x86_64` +- [ ] `wl-clipboard-2.2.1-5.fc43.x86_64` +- [ ] `man-pages-6.13-2.fc43.noarch` +- [ ] `bc-1.08.2-2.fc43.x86_64` +- [ ] `mkpasswd-5.6.5-1.fc43.x86_64` +- [ ] `bzip2-1.0.8-21.fc43.x86_64` +- [ ] `memstrack-0.2.5-7.fc43.x86_64` +- [ ] `ncurses-6.5-7.20250614.fc43.x86_64` +- [ ] `b43-fwcutter-019-39.fc43.x86_64` +- [ ] `compsize-1.5^git20250123.d79eacf-13.fc43.x86_64` +- [ ] `dosfstools-4.2-16.fc43.x86_64` +- [ ] `exfatprogs-1.3.1-1.fc43.x86_64` +- [ ] `fuse-libs-2.9.9-24.fc43.x86_64` +- [ ] `hostname-3.25-3.fc43.x86_64` +- [ ] `lrzsz-0.12.20-75.fc43.x86_64` +- [ ] `mpage-2.5.7-23.fc43.x86_64` +- [ ] `nss-altfiles-2.23.0-7.fc43.x86_64` +- [ ] `time-1.9-27.fc43.x86_64` +- [ ] `tree-2.2.1-2.fc43.x86_64` +- [ ] `bash-completion-2.16-2.fc43.noarch` +- [ ] `fedora-repos-archive-43-1.noarch` +- [ ] `default-fonts-other-sans-4.2-5.fc43.noarch` +- [ ] `default-fonts-core-math-4.2-5.fc43.noarch` +- [ ] `default-fonts-other-serif-4.2-5.fc43.noarch` +- [ ] `default-fonts-cjk-serif-4.2-5.fc43.noarch` +- [ ] `default-fonts-cjk-mono-4.2-5.fc43.noarch` +- [ ] `default-fonts-core-emoji-4.2-5.fc43.noarch` +- [ ] `iwlwifi-mvm-firmware-20260110-1.fc43.noarch` +- [ ] `langpacks-en-4.2-5.fc43.noarch` +- [ ] `hunspell-en-0.20201207-12.fc43.noarch` +- [ ] `default-fonts-core-serif-4.2-5.fc43.noarch` +- [ ] `default-fonts-core-mono-4.2-5.fc43.noarch` +- [ ] `default-fonts-other-mono-4.2-5.fc43.noarch` +- [ ] `amd-gpu-firmware-20260110-1.fc43.noarch` +- [ ] `amd-ucode-firmware-20260110-1.fc43.noarch` +- [ ] `atheros-firmware-20260110-1.fc43.noarch` +- [ ] `brcmfmac-firmware-20260110-1.fc43.noarch` +- [ ] `cirrus-audio-firmware-20260110-1.fc43.noarch` +- [ ] `intel-audio-firmware-20260110-1.fc43.noarch` +- [ ] `intel-gpu-firmware-20260110-1.fc43.noarch` +- [ ] `intel-vsc-firmware-20260110-1.fc43.noarch` +- [ ] `iwlegacy-firmware-20260110-1.fc43.noarch` +- [ ] `iwlwifi-dvm-firmware-20260110-1.fc43.noarch` +- [ ] `libertas-firmware-20260110-1.fc43.noarch` +- [ ] `mt7xxx-firmware-20260110-1.fc43.noarch` +- [ ] `nvidia-gpu-firmware-20260110-1.fc43.noarch` +- [ ] `nxpwireless-firmware-20260110-1.fc43.noarch` +- [ ] `qcom-wwan-firmware-20260110-1.fc43.noarch` +- [ ] `realtek-firmware-20260110-1.fc43.noarch` +- [ ] `tiwilink-firmware-20260110-1.fc43.noarch` +- [ ] `adobe-source-code-pro-fonts-2.042.1.062.1.026-7.fc43.noarch` +- [ ] `adwaita-mono-fonts-49.0-2.fc43.noarch` +- [ ] `adwaita-sans-fonts-49.0-2.fc43.noarch` +- [ ] `gdouros-symbola-fonts-10.24-18.fc43.noarch` +- [ ] `google-noto-emoji-fonts-20250623-2.fc43.noarch` +- [ ] `julietaula-montserrat-fonts-9.000-3.fc43.noarch` +- [ ] `liberation-mono-fonts-2.1.5-14.fc43.noarch` +- [ ] `liberation-sans-fonts-2.1.5-14.fc43.noarch` +- [ ] `liberation-serif-fonts-2.1.5-14.fc43.noarch` +- [ ] `open-sans-fonts-1.10-24.fc43.noarch` +- [ ] `words-3.0-62.fc43.noarch` +- [ ] `rootfiles-9.0-4.fc43.noarch` +- [ ] `qt5-qttranslations-5.15.18-1.fc43.noarch` +- [ ] `microcode_ctl-2.1-71.fc43.x86_64` +- [ ] `gnome-user-docs-49.4-1.fc43.noarch` +- [ ] `geolite2-country-20191217-15.fc43.noarch` +- [ ] `geolite2-city-20191217-15.fc43.noarch` +- [ ] `gawk-all-langpacks-5.3.2-2.fc43.x86_64` +- [ ] `fedora-chromium-config-gnome-3.0-8.fc43.noarch` +- [ ] `fedora-chromium-config-3.0-8.fc43.noarch` +- [ ] `fedora-bookmarks-28-34.fc43.noarch` +- [ ] `bash-color-prompt-0.7.1-2.fc43.noarch` +- [ ] `alsa-sof-firmware-2025.12.1-1.fc43.noarch` +- [ ] `NetworkManager-config-connectivity-fedora-1.54.3-2.fc43.noarch` +- [ ] `gpg-pubkey-c6e7f081cf80e13146676e88829b606631645531-66b6dccf` +- [ ] `ocl-icd-2.3.4-1.fc43.x86_64` +- [ ] `gpg-pubkey-ab4670779555943799be7ed916bc8535a444a78a-67ba9c6e` +- [ ] `just-1.46.0-1.fc43.x86_64` +- [ ] `ublue-os-luks-0.3-1.fc43.noarch` +- [ ] `ublue-os-just-0.53-3.fc43.noarch` +- [ ] `fzf-0.67.0-1.fc43.x86_64` +- [ ] `powerstat-0.04.05-2.fc43.x86_64` +- [ ] `ublue-os-update-services-0.91-1.fc43.noarch` +- [ ] `ublue-os-signing-0.5-1.fc43.noarch` +- [ ] `ublue-os-akmods-addons-0.6-1.fc43.noarch` +- [ ] `ublue-os-udev-rules-0.9-1.fc43.noarch` +- [ ] `kernel-core-6.18.9-200.fc43.x86_64` +- [ ] `kernel-modules-core-6.18.9-200.fc43.x86_64` +- [ ] `kernel-modules-6.18.9-200.fc43.x86_64` +- [ ] `kernel-modules-extra-6.18.9-200.fc43.x86_64` +- [ ] `kernel-6.18.9-200.fc43.x86_64` +- [ ] `gpg-pubkey-0c5d0f470484ae2fc40a9b6597f3008993e8909b-66d42b2c` +- [ ] `mesa-filesystem-25.3.4-1.fc43.x86_64` +- [ ] `mesa-dri-drivers-25.3.4-1.fc43.x86_64` +- [ ] `mesa-libgbm-25.3.4-1.fc43.x86_64` +- [ ] `libva-2.23.0-1.fc43.x86_64` +- [ ] `intel-gmmlib-22.9.0-1.fc43.x86_64` +- [ ] `x265-libs-4.1-5.fc43.x86_64` +- [ ] `vvenc-libs-1.14.0-1.fc43.x86_64` +- [ ] `vvdec-libs-3.1.0-1.fc43.x86_64` +- [ ] `uvg266-libs-0.8.1-1.fc43.x86_64` +- [ ] `libde265-1.0.16-1.fc43.x86_64` +- [ ] `kvazaar-libs-2.3.2-1.fc43.x86_64` +- [ ] `libheif-1.20.2-2.fc43.x86_64` +- [ ] `libva-intel-media-driver-26.1.2-1.fc43.x86_64` +- [ ] `intel-mediasdk-23.2.2-1.fc43.x86_64` +- [ ] `mesa-libEGL-25.3.4-1.fc43.x86_64` +- [ ] `mesa-libGL-25.3.4-1.fc43.x86_64` +- [ ] `mesa-vulkan-drivers-25.3.4-1.fc43.x86_64` +- [ ] `mesa-va-drivers-25.3.4-1.fc43.x86_64` +- [ ] `libavutil-7.1.3-2.fc43.x86_64` +- [ ] `libswresample-7.1.3-2.fc43.x86_64` +- [ ] `gtk2-2.24.33-23.fc43.x86_64` +- [ ] `libpostproc-7.1.3-2.fc43.x86_64` +- [ ] `libswscale-7.1.3-2.fc43.x86_64` +- [ ] `python3-more-itertools-10.5.0-7.fc43.noarch` +- [ ] `python3-jeepney-0.9.0-7.fc43.noarch` +- [ ] `libyubikey-1.13-26.fc43.x86_64` +- [ ] `ykpers-1.20.0-17.fc43.x86_64` +- [ ] `LCEVCdec-4.0.5-1.fc43.x86_64` +- [ ] `python3-jaraco-classes-3.4.0-10.fc43.noarch` +- [ ] `python3-jaraco-functools-4.1.0-6.fc43.noarch` +- [ ] `xeve-libs-0.5.1-2.fc43.x86_64` +- [ ] `xevd-libs-0.5.0-1.fc43.x86_64` +- [ ] `zinnia-0.07-7.fc43.x86_64` +- [ ] `python3-shtab-1.7.2-4.fc43.noarch` +- [ ] `highcontrast-icon-theme-3.28-23.fc43.noarch` +- [ ] `smartmontools-selinux-7.5-4.fc43.noarch` +- [ ] `fxload-2008_10_13-33.fc43.x86_64` +- [ ] `alsa-firmware-1.2.4-15.fc43.noarch` +- [ ] `alsa-tools-firmware-1.2.15-1.fc43.x86_64` +- [ ] `python3-evdev-1.9.3-1.fc43.x86_64` +- [ ] `python3-jaraco-context-6.0.1-9.fc43.noarch` +- [ ] `xxd-9.1.2128-2.fc43.x86_64` +- [ ] `vim-filesystem-9.1.2128-2.fc43.noarch` +- [ ] `vim-common-9.1.2128-2.fc43.x86_64` +- [ ] `python3-ply-3.11-30.fc43.noarch` +- [ ] `python3-pycparser-2.22-5.fc43.noarch` +- [ ] `python3-cffi-2.0.0-2.fc43.x86_64` +- [ ] `python3-cryptography-45.0.4-4.fc43.x86_64` +- [ ] `python3-fido2-2.0.0-3.fc43.noarch` +- [ ] `python3-secretstorage-3.3.3^20240314git3e5097c-16.fc43.noarch` +- [ ] `python3-keyring-25.7.0-2.fc43.noarch` +- [ ] `python3-pskc-1.4-1.fc43.noarch` +- [ ] `python3-pyscard-2.2.2-3.fc43.x86_64` +- [ ] `python3-yubikey-manager-5.9.0-1.20260203git46f0dad.fc43.noarch` +- [ ] `gpm-libs-1.20.7-52.fc43.x86_64` +- [ ] `libutempter-1.2.1-19.fc43.x86_64` +- [ ] `ykclient-2.15-22.fc43.x86_64` +- [ ] `gtest-1.15.2-4.fc43.x86_64` +- [ ] `libnfs-6.0.2-6.fc43.x86_64` +- [ ] `librtmp-2.6^20240301git6f6bb13-2.fc43.x86_64` +- [ ] `libklvanc-1.6.0-3.fc43.x86_64` +- [ ] `xavs2-libs-1.4-2.fc43.x86_64` +- [ ] `x264-libs-0.165-38.20250910git0480cb0.fc43.x86_64` +- [ ] `uavs3d-libs-1.2.0~20251213git0e20d2c-8.fc43.x86_64` +- [ ] `libxavs-0.1.55~20110821svnr55-3.fc43.x86_64` +- [ ] `davs2-libs-1.7^20220903gitb41cf11-7.fc43.x86_64` +- [ ] `svt-vp9-libs-0.3.0-15.fc43.x86_64` +- [ ] `libfdk-aac-2.0.3-2.fc43.x86_64` +- [ ] `libavcodec-7.1.3-2.fc43.x86_64` +- [ ] `libavformat-7.1.3-2.fc43.x86_64` +- [ ] `libavfilter-7.1.3-2.fc43.x86_64` +- [ ] `libavdevice-7.1.3-2.fc43.x86_64` +- [ ] `ffmpegthumbnailer-libs-2.3.0-1.fc43.x86_64` +- [ ] `libfreeaptx-0.2.2-1.fc43.x86_64` +- [ ] `libtatsu-1.0.3-3.fc43.x86_64` +- [ ] `xrefresh-1.1.0-3.fc43.x86_64` +- [ ] `mozc-2.29.5111.102-16.fc43.x86_64` +- [ ] `hwloc-libs-2.12.0-2.fc43.x86_64` +- [ ] `mtools-4.0.49-2.fc43.x86_64` +- [ ] `pam-u2f-1.4.0-2.fc43.x86_64` +- [ ] `pamu2fcfg-1.4.0-2.fc43.x86_64` +- [ ] `grub2-tools-extra-2.12-40.fc43.x86_64` +- [ ] `htop-3.4.1-2.fc43.x86_64` +- [ ] `ibus-mozc-2.29.5111.102-16.fc43.x86_64` +- [ ] `libimobiledevice-utils-1.3.0^20240916gited9703d-6.fc43.x86_64` +- [ ] `pipewire-libs-extra-1.4.10-1.fc43.x86_64` +- [ ] `ffmpegthumbnailer-2.3.0-1.fc43.x86_64` +- [ ] `ffmpeg-7.1.3-2.fc43.x86_64` +- [ ] `ffmpeg-libs-7.1.3-2.fc43.x86_64` +- [ ] `gvfs-nfs-1.58.1-1.fc43.x86_64` +- [ ] `libcamera-tools-0.5.2-5.fc43.x86_64` +- [ ] `pam_yubico-2.27-9.fc43.x86_64` +- [ ] `tmux-3.5a-7.fc43.x86_64` +- [ ] `vim-enhanced-9.1.2128-2.fc43.x86_64` +- [ ] `yubikey-manager-5.9.0-1.20260203git46f0dad.fc43.noarch` +- [ ] `python3-keyring+completion-25.7.0-2.fc43.noarch` +- [ ] `libratbag-ratbagd-0.18-4.fc43.x86_64` +- [ ] `smartmontools-7.5-4.fc43.x86_64` +- [ ] `adwaita-gtk2-theme-3.28-23.fc43.x86_64` +- [ ] `zinnia-tomoe-ja-0.07-7.fc43.x86_64` +- [ ] `ibus-gtk2-1.5.33-5.fc43.x86_64` +- [ ] `libcanberra-gtk2-0.30-38.fc43.x86_64` +- [ ] `tcpdump-4.99.6-1.fc43.x86_64` +- [ ] `solaar-udev-1.1.19-1.fc43.noarch` +- [ ] `oversteer-udev-0.0.git.407.76a8d702-1.fc43.noarch` +- [ ] `openrgb-udev-rules-1.0~rc2-3.20260126git74cbdcc.fc43.noarch` +- [ ] `nvtop-3.3.1-2.fc43.x86_64` +- [ ] `lshw-B.02.20-10.fc43.x86_64` +- [ ] `libva-utils-2.23.0-1.fc43.x86_64` +- [ ] `libcamera-gstreamer-0.5.2-5.fc43.x86_64` +- [ ] `intel-vaapi-driver-2.4.1-8.fc43.x86_64` +- [ ] `google-noto-sans-sundanese-fonts-20251101-2.fc43.noarch` +- [ ] `google-noto-sans-javanese-fonts-20251101-2.fc43.noarch` +- [ ] `google-noto-sans-balinese-fonts-20251101-2.fc43.noarch` +- [ ] `distrobox-1.8.2.3-1.fc43.noarch` +- [ ] `traceroute-2.1.6-3.fc43.x86_64` +- [ ] `symlinks-1.7-13.fc43.x86_64` +- [ ] `squashfs-tools-4.6.1-7.fc43.x86_64` +- [ ] `net-tools-2.0-0.74.20160912git.fc43.x86_64` +- [ ] `ibus-unikey-0.7.0~beta1-4.fc43.x86_64` +- [ ] `google-noto-sans-cjk-fonts-2.004-10.fc43.noarch` +- [ ] `flatpak-spawn-1.0.6-3.fc43.x86_64` +- [ ] `adw-gtk3-theme-6.4-1.fc43.noarch` +- [ ] `cosign-3.0.4-1.x86_64` From 2f0eb4bc8518468021b8ca226a345ca0265927c2 Mon Sep 17 00:00:00 2001 From: Stephen Date: Mon, 16 Feb 2026 20:32:18 -0500 Subject: [PATCH 2/4] feat: add Mullvad and refine defaults/docs Add Mullvad VPN as a native install, remove Firefox from Flatpak preinstalls, and refresh README tone/customization details to better reflect the current BlueForge experience. Assisted-by: openai/gpt-5.3-codex via OpenCode --- README.md | 32 +++++++++++++++++++----------- build/10-build.sh | 5 +++++ custom/flatpaks/default.preinstall | 3 --- 3 files changed, 25 insertions(+), 15 deletions(-) diff --git a/README.md b/README.md index e30e20a..817f0b9 100644 --- a/README.md +++ b/README.md @@ -1,28 +1,25 @@ # BlueForge -A template for building custom bootc operating system images based on the lessons from [Universal Blue](https://universal-blue.org/) and [Bluefin](https://projectbluefin.io). It is designed to be used manually, but is optimized to be bootstraped by GitHub Copilot. After set up you'll have your own custom Linux. +A practical template for building your own bootc desktop image using the same layered approach used by [Universal Blue](https://universal-blue.org/) and [Bluefin](https://projectbluefin.io). -This template uses the **multi-stage build architecture** from , combining resources from multiple OCI containers for modularity and maintainability. See the [Architecture](#architecture) section below for details. +You are not patching someone else's distro and hoping it still behaves. You are assembling your own image with reusable upstream components, predictable automation, and room for opinionated defaults. -**Unlike previous templates, you are not modifying Bluefin and making changes.**: You are assembling your own Bluefin in the same exact way that Bluefin, Aurora, and Bluefin LTS are built. This is way more flexible and better for everyone since the image-agnostic and desktop things we love about Bluefin lives in @projectbluefin/common. - - Instead, you create your own OS repository based on this template, allowing full customization while leveraging Bluefin's robust build system and shared components. - -> Be the one who moves, not the one who is moved. +This repository is intentionally friendly to both manual editing and Copilot-assisted bootstrapping, so you can move fast without losing control. ## What Makes This BlueForge Different? -This image is based on `ghcr.io/ublue-os/bluefin:stable` and keeps the Bluefin-style multi-stage architecture while pre-wiring practical defaults so a new repository can bootstrap quickly. +This image is based on `ghcr.io/ublue-os/bluefin:stable` and keeps the Bluefin-style multi-stage architecture while pre-wiring a security-focused, developer-first daily-driver setup. ### Added Packages (Build-time) -- **System packages**: Ghostty (default terminal), Helium (`helium-bin`), and 1Password for secure sign-in/workflow setup +- **System packages**: Ghostty (default terminal), Helium (`helium-bin`), 1Password, and Mullvad VPN for secure sign-in/network workflow setup +- **Terminal behavior**: Ptyxis is removed, Ghostty is installed, and `xdg-terminal-exec` is pointed at Ghostty so "open terminal" flows behave cleanly ### Added Applications (Runtime) - **CLI Tools (Homebrew)**: `bat`, `eza`, `fd`, `rg`, `gh`, `git`, `neovim`, `bun`, `nvm`, `claude-code`, `opencode`, `starship`, `zoxide`, `htop`, `tmux` for productivity and day-one terminal workflows -- **GUI Apps (Flatpak)**: Firefox, Thunderbird, GNOME utilities, Flatseal, Mission Center, Warehouse, and selected Universal Blue tools for a complete first-boot desktop +- **GUI Apps (Flatpak)**: Thunderbird, GNOME utilities, Flatseal, Mission Center, Warehouse, and selected Universal Blue tools for a complete first-boot desktop ### Removed/Disabled -- No core desktop components removed +- **Removed apps**: Firefox Flatpak preinstall removed from defaults (install manually if wanted) - Cosign signing and SBOM attestation stay disabled by default until you complete GitHub secret setup ### Configuration Changes @@ -31,6 +28,17 @@ This image is based on `ghcr.io/ublue-os/bluefin:stable` and keeps the Bluefin-s *Last updated: 2026-02-17* +## Current Personality + +BlueForge currently aims for this feel: + +- Bluefin stability as the base, with fewer moving parts than a heavily remixed image +- A clean terminal UX (Ghostty first) that behaves predictably in GNOME launch flows +- Secure-by-default daily tooling (1Password + Mullvad VPN) +- Developer tooling ready quickly, but still runtime-manageable through Brewfiles and `ujust` + +If you fork this template, this section is the best place to describe your own flavor and intent. + ## Guided Copilot Mode Here are the steps to guide copilot to make your own repo, or just use it like a regular image template. @@ -334,7 +342,7 @@ This template follows the **multi-stage build architecture** from @projectbluefi - **@ublue-os/brew** - Homebrew integration **Stage 2: Base Image** - Default options: -- `ghcr.io/ublue-os/silverblue-main:latest` (Fedora-based, default) +- `ghcr.io/ublue-os/bluefin:stable` (Fedora-based, default for this repo) - `quay.io/centos-bootc/centos-bootc:stream10` (CentOS-based alternative) ### Benefits of This Architecture diff --git a/build/10-build.sh b/build/10-build.sh index f81e765..8a0249f 100755 --- a/build/10-build.sh +++ b/build/10-build.sh @@ -61,6 +61,11 @@ EOF dnf5 install -y 1password rm -f /etc/yum.repos.d/1password.repo +# Install Mullvad VPN from official repository +dnf5 config-manager addrepo --from-repofile=https://repository.mullvad.net/rpm/stable/mullvad.repo +dnf5 install -y mullvad-vpn +rm -f /etc/yum.repos.d/mullvad.repo + # Replace default terminal dnf5 remove -y ptyxis diff --git a/custom/flatpaks/default.preinstall b/custom/flatpaks/default.preinstall index 7132a45..4499fa7 100644 --- a/custom/flatpaks/default.preinstall +++ b/custom/flatpaks/default.preinstall @@ -4,9 +4,6 @@ # See: https://docs.flatpak.org/en/latest/flatpak-command-reference.html#flatpak-preinstall # Web Browsers -[Flatpak Preinstall org.mozilla.firefox] -Branch=stable - [Flatpak Preinstall org.mozilla.Thunderbird] Branch=stable From 8f66db95ab3e08370546fb502bd7e86fc4c193bb Mon Sep 17 00:00:00 2001 From: Stephen Date: Mon, 16 Feb 2026 20:40:33 -0500 Subject: [PATCH 3/4] chore: remove zoxide from default brew tools Keep the default terminal toolkit focused on tmux by dropping zoxide from the baseline app set and syncing README runtime tooling docs. Assisted-by: openai/gpt-5.3-codex via OpenCode --- README.md | 2 +- custom/brew/default.Brewfile | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index 817f0b9..412dcbc 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ This image is based on `ghcr.io/ublue-os/bluefin:stable` and keeps the Bluefin-s - **Terminal behavior**: Ptyxis is removed, Ghostty is installed, and `xdg-terminal-exec` is pointed at Ghostty so "open terminal" flows behave cleanly ### Added Applications (Runtime) -- **CLI Tools (Homebrew)**: `bat`, `eza`, `fd`, `rg`, `gh`, `git`, `neovim`, `bun`, `nvm`, `claude-code`, `opencode`, `starship`, `zoxide`, `htop`, `tmux` for productivity and day-one terminal workflows +- **CLI Tools (Homebrew)**: `bat`, `eza`, `fd`, `rg`, `gh`, `git`, `neovim`, `bun`, `nvm`, `claude-code`, `opencode`, `starship`, `htop`, `tmux` for productivity and day-one terminal workflows - **GUI Apps (Flatpak)**: Thunderbird, GNOME utilities, Flatseal, Mission Center, Warehouse, and selected Universal Blue tools for a complete first-boot desktop ### Removed/Disabled diff --git a/custom/brew/default.Brewfile b/custom/brew/default.Brewfile index 0096bfa..2441cd5 100644 --- a/custom/brew/default.Brewfile +++ b/custom/brew/default.Brewfile @@ -23,7 +23,6 @@ cask "claude-code" # Anthropic CLI assistant # Shell enhancements brew "starship" # Cross-shell prompt -brew "zoxide" # Smarter cd command # Utilities brew "htop" # Interactive process viewer From a8e8e94f8b3d3274eb278566fc2ce6851edf22c0 Mon Sep 17 00:00:00 2001 From: Stephen Date: Mon, 16 Feb 2026 20:47:38 -0500 Subject: [PATCH 4/4] docs(readme): polish BlueForge narrative and clean repo artifacts Tighten README tone to read as a personal BlueForge OS while keeping build details accurate. Ignore generated package analysis markdown files and untrack them from version control. Assisted-by: openai/gpt-5.3-codex via OpenCode --- .gitignore | 4 + README.md | 443 ++---- bluefin-package-baseline-recommendation.md | 81 - bluefin-package-diff-prioritized.md | 433 ----- bluefin-package-diff.md | 397 ----- software-inventory.md | 1681 -------------------- 6 files changed, 114 insertions(+), 2925 deletions(-) delete mode 100644 bluefin-package-baseline-recommendation.md delete mode 100644 bluefin-package-diff-prioritized.md delete mode 100644 bluefin-package-diff.md delete mode 100644 software-inventory.md diff --git a/.gitignore b/.gitignore index 9eee28b..5a1e33b 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,7 @@ cosign.key _build_* output _build-*/** +bluefin-package-diff.md +bluefin-package-diff-prioritized.md +bluefin-package-baseline-recommendation.md +software-inventory.md diff --git a/README.md b/README.md index 412dcbc..6479466 100644 --- a/README.md +++ b/README.md @@ -1,403 +1,180 @@ -# BlueForge +# My OS: BlueForge -A practical template for building your own bootc desktop image using the same layered approach used by [Universal Blue](https://universal-blue.org/) and [Bluefin](https://projectbluefin.io). +BlueForge is the desktop OS I build for myself: secure, practical, and ready for daily dev work from first boot. -You are not patching someone else's distro and hoping it still behaves. You are assembling your own image with reusable upstream components, predictable automation, and room for opinionated defaults. - -This repository is intentionally friendly to both manual editing and Copilot-assisted bootstrapping, so you can move fast without losing control. +It is based on `ghcr.io/ublue-os/bluefin:stable`, but tuned to my workflow: Ghostty-first terminal behavior, security tools I actually use, and runtime app management that stays simple. ## What Makes This BlueForge Different? -This image is based on `ghcr.io/ublue-os/bluefin:stable` and keeps the Bluefin-style multi-stage architecture while pre-wiring a security-focused, developer-first daily-driver setup. +Compared to stock Bluefin, this is the setup I want to live in every day. ### Added Packages (Build-time) -- **System packages**: Ghostty (default terminal), Helium (`helium-bin`), 1Password, and Mullvad VPN for secure sign-in/network workflow setup -- **Terminal behavior**: Ptyxis is removed, Ghostty is installed, and `xdg-terminal-exec` is pointed at Ghostty so "open terminal" flows behave cleanly + +- **System packages**: Ghostty, Helium (`helium-bin`), 1Password, Mullvad VPN. +- **Why these are baked in**: login/network security are non-negotiable, and the terminal should feel right immediately. ### Added Applications (Runtime) -- **CLI Tools (Homebrew)**: `bat`, `eza`, `fd`, `rg`, `gh`, `git`, `neovim`, `bun`, `nvm`, `claude-code`, `opencode`, `starship`, `htop`, `tmux` for productivity and day-one terminal workflows -- **GUI Apps (Flatpak)**: Thunderbird, GNOME utilities, Flatseal, Mission Center, Warehouse, and selected Universal Blue tools for a complete first-boot desktop + +- **CLI tools (Homebrew)**: `bat`, `eza`, `fd`, `rg`, `gh`, `git`, `neovim`, `bun`, `nvm`, `opencode`, `claude-code`, `starship`, `htop`, `tmux`. +- **GUI apps (Flatpak)**: Thunderbird, GNOME utilities, Flatseal, Mission Center, Warehouse, Ignition, Impression, DistroShelf, Bazaar, Refine, plus GTK theme runtimes. +- **Why most apps stay runtime-managed**: faster iteration and easier updates without rebuilding the base image. ### Removed/Disabled -- **Removed apps**: Firefox Flatpak preinstall removed from defaults (install manually if wanted) -- Cosign signing and SBOM attestation stay disabled by default until you complete GitHub secret setup + +- **Removed**: `ptyxis` (Ghostty is preferred instead). +- **Not preinstalled**: Firefox Flatpak is intentionally not in defaults. +- **Disabled by default**: Cosign signing and SBOM attestation stay off until secrets are configured. ### Configuration Changes -- Enables `podman.socket` during image build -- Copies Bluefin shared `ujust` files and layers custom `ujust`, Brewfiles, and Flatpak preinstall manifests into the image -*Last updated: 2026-02-17* +- Sets Ghostty as preferred terminal via `/etc/xdg/xdg-terminals.list`. +- Enables `podman.socket` at build time. +- Copies and merges custom Brewfiles, `ujust` recipes, and Flatpak preinstall manifests into system locations. +- Uses isolated COPR installs for Ghostty and Helium to avoid repo persistence. -## Current Personality +_Last updated: 2026-02-16_ -BlueForge currently aims for this feel: +## Build Architecture (Bluefin Pattern) -- Bluefin stability as the base, with fewer moving parts than a heavily remixed image -- A clean terminal UX (Ghostty first) that behaves predictably in GNOME launch flows -- Secure-by-default daily tooling (1Password + Mullvad VPN) -- Developer tooling ready quickly, but still runtime-manageable through Brewfiles and `ujust` +BlueForge uses a multi-stage Containerfile: -If you fork this template, this section is the best place to describe your own flavor and intent. +1. **`ctx` stage** assembles: + - local `build/` + - local `custom/` + - `ghcr.io/projectbluefin/common` system files + - `ghcr.io/ublue-os/brew` system files +2. **final stage** starts from `ghcr.io/ublue-os/bluefin:stable` and runs `build/10-build.sh` with `/ctx` mounted. -## Guided Copilot Mode +This keeps customization modular and reproducible while staying aligned with Universal Blue conventions. -Here are the steps to guide copilot to make your own repo, or just use it like a regular image template. +## BlueForge Personality -1. Click the green "Use this as a template" button and create a new repository -2. Select your owner, pick a repo name for your OS, and a description -3. In the "Jumpstart your project with Copilot (optional)" add this, modify to your liking: +If I had to describe this OS in one line: Bluefin reliability, but with my defaults already made. -``` -Use @projectbluefin/finpilot as a template, name the OS the repository name. Ensure the entire operating system is bootstrapped. Ensure all github actions are enabled and running. Ensure the README has the github setup instructions for cosign and the other steps required to finish the task. -``` +- Security-first without being heavy-handed. +- Terminal-first without abandoning desktop quality-of-life. +- Runtime apps and tooling so iteration stays fast. +- Minimal surprises in day-to-day use. -## What's Included - -### Build System -- Automated builds via GitHub Actions on every commit -- Awesome self hosted Renovate setup that keeps all your images and actions up to date. -- Automatic cleanup of old images (90+ days) to keep it tidy -- Pull request workflow - test changes before merging to main - - PRs build and validate before merge - - `main` branch builds `:stable` images -- Validates your files on pull requests so you never break a build: - - Brewfile, Justfile, ShellCheck, Renovate config, and it'll even check to make sure the flatpak you add exists on FlatHub -- Production Grade Features - - Container signing and SBOM Generation - - See checklist below to enable these as they take some manual configuration - -### Homebrew Integration -- Pre-configured Brewfiles for easy package installation and customization -- Includes curated collections: development tools, fonts, CLI utilities. Go nuts. -- Users install packages at runtime with `brew bundle`, aliased to premade `ujust commands` -- See [custom/brew/README.md](custom/brew/README.md) for details - -### Flatpak Support -- Ship your favorite flatpaks -- Automatically installed on first boot after user setup -- See [custom/flatpaks/README.md](custom/flatpaks/README.md) for details - -### ujust Commands -- User-friendly command shortcuts via `ujust` -- Pre-configured examples for app installation and system maintenance for you to customize -- See [custom/ujust/README.md](custom/ujust/README.md) for details - -### Build Scripts -- Modular numbered scripts (10-, 20-, 30-) run in order -- Example scripts included for third-party repositories and desktop replacement -- Helper functions for safe COPR usage -- See [build/README.md](build/README.md) for details +## Who This Is For -## Quick Start +- You want Bluefin stability with curated defaults. +- You prefer a terminal-first workflow but still want polished desktop UX. +- You want security tools available immediately. +- You want most tools managed at runtime instead of rebaking images constantly. -### 1. Create Your Repository +## Repo Layout -Click "Use this template" to create a new repository from this template. +- `Containerfile` - base image, layered context, and build execution. +- `build/10-build.sh` - build-time packages and system configuration. +- `custom/brew/*.Brewfile` - runtime CLI/dev/font package bundles. +- `custom/flatpaks/default.preinstall` - first-boot GUI app manifest. +- `custom/ujust/*.just` - user-facing app/system helpers. +- `.github/workflows/*.yml` - CI build, cleanup, Renovate, and validation workflows. -### 2. Rename the Project +## Quick Start + +### 1) Use this template -Important: Set the OS identity to your repository name (`blueforge` in this repo) in these 6 files: +Create a new GitHub repo from this template. -1. `Containerfile` (line 4): `# Name: your-repo-name` -2. `Justfile` (line 1): `export image_name := env("IMAGE_NAME", "your-repo-name")` -3. `README.md` (line 1): `# your-repo-name` -4. `artifacthub-repo.yml` (line 5): `repositoryID: your-repo-name` -5. `custom/ujust/README.md` (~line 175): `localhost/your-repo-name:stable` -6. `.github/workflows/clean.yml` (line 23): `packages: your-repo-name` +### 2) Rename identity everywhere -### 3. Enable GitHub Actions and Required Permissions +Set your OS/repo name consistently in: -- Go to the "Actions" tab in your repository -- Click "I understand my workflows, go ahead and enable them" -- Go to `Settings -> Actions -> General` and set **Workflow permissions** to **Read and write permissions** -- Ensure **Allow GitHub Actions to create and approve pull requests** is enabled +1. `Containerfile` (`# Name: your-name`) +2. `Justfile` (`export image_name := env("IMAGE_NAME", "your-name")`) +3. `README.md` title +4. `artifacthub-repo.yml` (`repositoryID: your-name`) +5. `custom/ujust/README.md` (`localhost/your-name:stable` examples) +6. `.github/workflows/clean.yml` package reference -Your first build will start automatically! +### 3) Enable Actions permissions -Note: Image signing is disabled by default. Your images will build successfully without any signing keys. Once you're ready for production, see "Optional: Enable Image Signing" below. +In GitHub repo settings: -### 3.1 Verify Actions Are Enabled and Running +- Enable Actions. +- Set workflow permissions to **Read and write**. +- Enable permission for Actions to create/approve PRs. -After the first push, confirm workflows in GitHub: +### 4) Customize your image -- `Build container image` -- `Cleanup Old Images` -- `Renovate` -- Validation workflows (`Validate Brewfiles`, `Validate Flatpaks`, `Validate Justfiles`, `Validate Renovate Config`, `Validate Shell Scripts`) +- **Build-time system changes**: edit `build/10-build.sh`. +- **Runtime CLI tools**: edit `custom/brew/default.Brewfile` and related Brewfiles. +- **Runtime GUI apps**: edit `custom/flatpaks/default.preinstall`. +- **User shortcuts**: edit `custom/ujust/custom-apps.just` and `custom/ujust/custom-system.just`. -CLI verification (optional): +## Local Build and Test ```bash -gh workflow list -gh run list --limit 10 +just build +just build-qcow2 +just run-vm-qcow2 ``` -### 4. Customize Your Image - -Choose your base image in `Containerfile` (line 23): -```dockerfile -FROM ghcr.io/ublue-os/bluefin:stable -``` +Optional ISO flow: -Add your packages in `build/10-build.sh`: ```bash -dnf5 install -y package-name +just build-iso +just run-vm-iso ``` -Customize your apps: -- Add Brewfiles in `custom/brew/` ([guide](custom/brew/README.md)) -- Add Flatpaks in `custom/flatpaks/` ([guide](custom/flatpaks/README.md)) -- Add ujust commands in `custom/ujust/` ([guide](custom/ujust/README.md)) - -### 5. Development Workflow - -All changes should be made via pull requests: +## Deploy -1. Open a pull request on GitHub with the change you want. -3. The PR will automatically trigger: - - Build validation - - Brewfile, Flatpak, Justfile, and shellcheck validation - - Test image build -4. Once checks pass, merge the PR -5. Merging triggers publishes a `:stable` image - -### 6. Deploy Your Image - -Switch to your image: ```bash -sudo bootc switch ghcr.io/your-username/your-repo-name:stable +sudo bootc switch ghcr.io//:stable sudo systemctl reboot ``` -## Optional: Enable Image Signing - -Image signing is disabled by default to let you start building immediately. However, signing is strongly recommended for production use. - -### Why Sign Images? - -- Verify image authenticity and integrity -- Prevent tampering and supply chain attacks -- Required for some enterprise/security-focused deployments -- Industry best practice for production images - -### Setup Instructions (Cosign + GitHub) +## Optional: Enable Signing (Production) -1. Generate signing keys: -```bash -cosign generate-key-pair -``` +Signing is intentionally disabled by default so first builds work immediately. -This creates two files: -- `cosign.key` (private key) - Keep this secret -- `cosign.pub` (public key) - Commit this to your repository +When ready: -2. Add the private key to GitHub Secrets: - - Copy the entire contents of `cosign.key` - - Go to your repository on GitHub - - Navigate to Settings → Secrets and variables → Actions ([GitHub docs](https://docs.github.com/en/actions/security-guides/encrypted-secrets#creating-encrypted-secrets-for-a-repository)) - - Click "New repository secret" - - Name: `SIGNING_SECRET` - - Value: Paste the entire contents of `cosign.key` - - Click "Add secret" +1. Generate keys with `cosign generate-key-pair`. +2. Add private key contents to GitHub Actions secret `SIGNING_SECRET`. +3. Commit your real `cosign.pub`. +4. Uncomment signing steps in `.github/workflows/build.yml`. +5. (Optional) Uncomment SBOM generation + attestation steps. -3. Replace the contents of `cosign.pub` with your public key: - - Open `cosign.pub` in your repository - - Replace the placeholder with your actual public key - - Commit and push the change +Never commit `cosign.key`. -4. Enable signing in the workflow: - - Edit `.github/workflows/build.yml` - - Find the "OPTIONAL: Image Signing with Cosign" section. - - Uncomment the steps to install Cosign and sign the image (remove the `#` from the beginning of each line in that section). - - Commit and push the change +## Useful Commands After First Boot -5. Run a new workflow and verify signed output: +Install runtime packages: ```bash -gh workflow run build.yml -gh run list --workflow "Build container image" --limit 5 -``` - -6. Your next completed build will produce signed images. - -Important: Never commit `cosign.key` to the repository. It's already in `.gitignore`. - -## Love Your Image? Let's Go to Production - -Ready to take your custom OS to production? Enable these features for enhanced security, reliability, and performance: - -### Production Checklist - -- [ ] **Enable Image Signing** (Recommended) - - Provides cryptographic verification of your images - - Prevents tampering and ensures authenticity - - See "Optional: Enable Image Signing" section above for setup instructions - - Status: **Disabled by default** to allow immediate testing - -- [ ] **Enable SBOM Attestation** (Recommended) - - Generates Software Bill of Materials for supply chain security - - Provides transparency about what's in your image - - Requires image signing to be enabled first - - To enable: - 1. First complete image signing setup above - 2. Edit `.github/workflows/build.yml` - 3. Find the "OPTIONAL: SBOM Attestation" section around line 232 - 4. Uncomment the "Add SBOM Attestation" step - 5. Commit and push - - Status: **Disabled by default** (requires signing first) - -- [ ] **Enable Image Rechunking** (Recommended) - - Optimizes bootc image layers for better update performance - - Reduces update sizes by 5-10x - - Improves download resumability with evenly sized layers - - To enable: - 1. Edit `.github/workflows/build.yml` - 2. Find the "Build Image" step - 3. Add a rechunk step after the build (see example below) - - Status: **Not enabled by default** (optional optimization) - -#### Adding Image Rechunking - -After building your bootc image, add a rechunk step before pushing to the registry. Here's an example based on the workflow used by [zirconium-dev/zirconium](https://github.com/zirconium-dev/zirconium): - -```yaml -- name: Build image - id: build - run: sudo podman build -t "${IMAGE_NAME}:${DEFAULT_TAG}" -f ./Containerfile . - -- name: Rechunk Image - run: | - sudo podman run --rm --privileged \ - -v /var/lib/containers:/var/lib/containers \ - --entrypoint /usr/libexec/bootc-base-imagectl \ - "localhost/${IMAGE_NAME}:${DEFAULT_TAG}" \ - rechunk --max-layers 96 \ - "localhost/${IMAGE_NAME}:${DEFAULT_TAG}" \ - "localhost/${IMAGE_NAME}:${DEFAULT_TAG}" - -- name: Push to Registry - run: sudo podman push "localhost/${IMAGE_NAME}:${DEFAULT_TAG}" "${IMAGE_REGISTRY}/${IMAGE_NAME}:${DEFAULT_TAG}" -``` - -Alternative approach using a temporary tag for clarity: - -```yaml -- name: Rechunk Image - run: | - sudo podman run --rm --privileged \ - -v /var/lib/containers:/var/lib/containers \ - --entrypoint /usr/libexec/bootc-base-imagectl \ - "localhost/${IMAGE_NAME}:${DEFAULT_TAG}" \ - rechunk --max-layers 67 \ - "localhost/${IMAGE_NAME}:${DEFAULT_TAG}" \ - "localhost/${IMAGE_NAME}:${DEFAULT_TAG}-rechunked" - - # Tag the rechunked image with the original tag - sudo podman tag "localhost/${IMAGE_NAME}:${DEFAULT_TAG}-rechunked" "localhost/${IMAGE_NAME}:${DEFAULT_TAG}" - sudo podman rmi "localhost/${IMAGE_NAME}:${DEFAULT_TAG}-rechunked" +ujust install-default-apps +ujust install-dev-tools +ujust install-fonts +ujust install-all-brew ``` -**Parameters:** -- `--max-layers`: Maximum number of layers for the rechunked image (typically 67 for optimal balance) -- The first image reference is the source (input) -- The second image reference is the destination (output) - - When using the same reference for both, the image is rechunked in-place - - You can also use different tags (e.g., `-rechunked` suffix) and then retag if preferred +Extra helpers: -**References:** -- [CoreOS rpm-ostree build-chunked-oci documentation](https://coreos.github.io/rpm-ostree/build-chunked-oci/) -- [bootc documentation](https://containers.github.io/bootc/) - -### After Enabling Production Features - -Your workflow will: -- Sign all images with your key -- Generate and attach SBOMs -- Provide full supply chain transparency - -Users can verify your images with: ```bash -cosign verify --key cosign.pub ghcr.io/your-username/your-repo-name:stable -``` - -## Detailed Guides - -- [Homebrew/Brewfiles](custom/brew/README.md) - Runtime package management -- [Flatpak Preinstall](custom/flatpaks/README.md) - GUI application setup -- [ujust Commands](custom/ujust/README.md) - User convenience commands -- [Build Scripts](build/README.md) - Build-time customization - -## Architecture - -This template follows the **multi-stage build architecture** from @projectbluefin/distroless, as documented in the [Bluefin Contributing Guide](https://docs.projectbluefin.io/contributing/). - -### Multi-Stage Build Pattern - -**Stage 1: Context (ctx)** - Combines resources from multiple sources: -- Local build scripts (`/build`) -- Local custom files (`/custom`) -- **@projectbluefin/common** - Desktop configuration shared with Aurora -- **@projectbluefin/branding** - Branding assets -- **@ublue-os/artwork** - Artwork shared with Aurora and Bazzite -- **@ublue-os/brew** - Homebrew integration - -**Stage 2: Base Image** - Default options: -- `ghcr.io/ublue-os/bluefin:stable` (Fedora-based, default for this repo) -- `quay.io/centos-bootc/centos-bootc:stream10` (CentOS-based alternative) - -### Benefits of This Architecture - -- **Modularity**: Compose your image from reusable OCI containers -- **Maintainability**: Update shared components independently -- **Reproducibility**: Renovate automatically updates OCI tags to SHA digests -- **Consistency**: Share components across Bluefin, Aurora, and custom images - -### OCI Container Resources - -The template imports files from these OCI containers at build time: - -```dockerfile -COPY --from=ghcr.io/ublue-os/base-main:latest /system_files /oci/base -COPY --from=ghcr.io/projectbluefin/common:latest /system_files /oci/common -COPY --from=ghcr.io/ublue-os/brew:latest /system_files /oci/brew +ujust install-jetbrains-toolbox +ujust configure-dev-groups +ujust clean-containers +ujust update-and-reboot ``` -Your build scripts can access these files at: -- `/ctx/oci/base/` - Base system configuration -- `/ctx/oci/common/` - Shared desktop configuration -- `/ctx/oci/branding/` - Branding assets -- `/ctx/oci/artwork/` - Artwork files -- `/ctx/oci/brew/` - Homebrew integration files - -**Note**: Renovate automatically updates `:latest` tags to SHA digests for reproducible builds. - -## Local Testing +## Validation and CI -Test your changes before pushing: +PRs run validations for: -```bash -just build # Build container image -just build-qcow2 # Build VM disk image -just run-vm-qcow2 # Test in browser-based VM -``` - -## Community +- Shell scripts (`shellcheck`) +- Brewfile syntax +- Flatpak IDs +- Justfile syntax +- Renovate config -- [Universal Blue Discord](https://discord.gg/WEu6BdFEtp) -- [bootc Discussion](https://github.com/bootc-dev/bootc/discussions) +Main branch builds and publishes the `stable` image tags. ## Learn More -- [Universal Blue Documentation](https://universal-blue.org/) -- [bootc Documentation](https://containers.github.io/bootc/) -- [Video Tutorial by TesterTech](https://www.youtube.com/watch?v=IxBl11Zmq5wE) - -## Security - -This template provides security features for production use: -- Optional SBOM generation (Software Bill of Materials) for supply chain transparency -- Optional image signing with cosign for cryptographic verification -- Automated security updates via Renovate -- Build provenance tracking - -These security features are disabled by default to allow immediate testing. When you're ready for production, see the "Love Your Image? Let's Go to Production" section above to enable them. +- Universal Blue: +- Bluefin: +- bootc: +- Flatpak app IDs: diff --git a/bluefin-package-baseline-recommendation.md b/bluefin-package-baseline-recommendation.md deleted file mode 100644 index 9abeb8b..0000000 --- a/bluefin-package-baseline-recommendation.md +++ /dev/null @@ -1,81 +0,0 @@ -# Recommended Baseline Selection (Balanced Daily Driver + Dev) - -Generated: 2026-02-16 - -This is a curated starter subset from `bluefin-package-diff.md` to keep the image useful without pulling in every Bluefin extra. - -Selection goals: -- Improve desktop usability for daily use -- Add practical shell/dev tooling -- Avoid hardware-specific drivers and heavy enterprise stacks by default - -## Recommended to Add Now - -### RPM (build-time, `build/10-build.sh`) - -- [x] `fish` -- [x] `zsh` -- [x] `gnome-tweaks` -- [x] `gnome-shell-extension-gsconnect` -- [x] `nautilus-gsconnect` -- [x] `git-credential-libsecret` -- [x] `firewall-config` -- [x] `iwd` -- [x] `input-remapper` -- [x] `fastfetch` -- [x] `jetbrains-mono-fonts` -- [x] `nerd-fonts` - -### Homebrew (runtime, `custom/brew/default.Brewfile`) - -- [x] `atuin` -- [x] `direnv` -- [x] `mise` -- [x] `yq` -- [x] `tealdeer` -- [x] `trash-cli` -- [x] `micro` -- [x] `helix` -- [x] `nvim` -- [x] `claude-code` -- [x] `codex` -- [x] `copilot-cli` -- [x] `gemini-cli` -- [x] `kubectl` -- [x] `helm` -- [x] `k9s` -- [x] `kind` -- [x] `kubectx` -- [x] `syft` -- [x] `grype` -- [x] `nerdctl` - -### Flatpak - -- [x] No additional Bluefin-only Flatpaks needed right now (gap is zero). - -## Recommended to Defer (Add Only If Needed) - -### RPM Defer Buckets - -- [ ] Hardware-specific kernel modules (`kmod-*`, `zfs`, `openrazer`, etc.) -- [ ] Enterprise auth/network stack (`adcli`, `sssd`, `realmd`, `krb5-*`) -- [ ] Full toolchain/debug packages (`*-devel`, `*-debuginfo`, compilers) unless building locally on host - -### Homebrew Defer Buckets - -- [ ] Large Kubernetes/platform suite (keep only `kubectl`/`helm`/`k9s`/`kind` initially) -- [ ] Extra IDE taps and Linux desktop app taps until you decide your editor stack -- [ ] Wallpaper/font mega-set unless you want full Bluefin visual parity - -## Notes Before Applying - -- `ripgrep` appears in Bluefin list, but your repo already includes `rg` in `custom/brew/default.Brewfile` (same tool formula alias). -- For build-time RPM additions, keep changes surgical and re-test with `just build`. -- After applying changes, update README "What Makes This BlueForge Different?" package sections. - -## Optional Full Defer Lists - -- Remaining RPMs not selected now: **203** -- Remaining Brew entries not selected now: **126** -- See `bluefin-package-diff.md` and `bluefin-package-diff-prioritized.md` for complete checklists. diff --git a/bluefin-package-diff-prioritized.md b/bluefin-package-diff-prioritized.md deleted file mode 100644 index c531926..0000000 --- a/bluefin-package-diff-prioritized.md +++ /dev/null @@ -1,433 +0,0 @@ -# Bluefin Gap Prioritized Review - -Generated: 2026-02-16 - -This file reorganizes `bluefin-package-diff.md` into practical decision buckets so you can prune/add faster. - -Legend: -- Keep checklist items checked `[x]` once you decide to add them -- Leave unchecked `[ ]` to skip for now - -## Quick Triage - -- Start with `Desktop UX` + `General Utilities` for user-facing improvements. -- Add `Dev Toolchain` and `Cloud/K8s` only if this image is for development workloads. -- Be cautious with `Hardware/Drivers` and `Enterprise/Network` unless you need them. - -## RPM Missing from This Repo, Grouped by Priority - -### Desktop UX (usually safe, user-visible) - -- Count: **10** -- [ ] `adwaita-fonts-all` -- [ ] `gnome-shell-extension-gsconnect` -- [ ] `gnome-tweaks` -- [ ] `jetbrains-mono-fonts` -- [ ] `jetbrains-mono-fonts-all` -- [ ] `jetbrains-mono-nl-fonts` -- [ ] `nautilus-gsconnect` -- [ ] `nautilus-python` -- [ ] `nerd-fonts` -- [ ] `opendyslexic-fonts` - -### General Utilities (often useful) - -- Count: **153** -- [ ] `argyllcms` -- [ ] `argyllcms-data` -- [ ] `bcache-tools` -- [ ] `binutils` -- [ ] `boost-atomic` -- [ ] `boost-chrono` -- [ ] `boost-filesystem` -- [ ] `boost-program-options` -- [ ] `borgbackup` -- [ ] `cryfs` -- [ ] `davfs2` -- [ ] `dbus-daemon` -- [ ] `dbus-tools` -- [ ] `dbus-x11` -- [ ] `fastfetch` -- [ ] `firewall-config` -- [ ] `fish` -- [ ] `foo2zjs` -- [ ] `foomatic-db-filesystem` -- [ ] `fuse-encfs` -- [ ] `generic-logos` -- [ ] `git` -- [ ] `git-credential-libsecret` -- [ ] `glow` -- [ ] `gsl` -- [ ] `gtksourceview4` -- [ ] `gum` -- [ ] `ifuse` -- [ ] `input-remapper` -- [ ] `iwd` -- [ ] `lcms` -- [ ] `lcms-libs` -- [ ] `libXScrnSaver` -- [ ] `libell` -- [ ] `libgda` -- [ ] `libgda-sqlite` -- [ ] `libgit2` -- [ ] `libi2c` -- [ ] `libkadm5` -- [ ] `libnvpair3` -- [ ] `liboping` -- [ ] `libssh2` -- [ ] `libuutil3` -- [ ] `libvarlink` -- [ ] `libxcrypt-compat` -- [ ] `libzpool6` -- [ ] `llhttp` -- [ ] `lm_sensors` -- [ ] `lsb_release` -- [ ] `m4` -- [ ] `ncurses-term` -- [ ] `neon` -- [ ] `openssh-askpass` -- [ ] `pcp-conf` -- [ ] `pcp-libs` -- [ ] `perl-AutoLoader` -- [ ] `perl-B` -- [ ] `perl-Carp` -- [ ] `perl-Class-Struct` -- [ ] `perl-Data-Dumper` -- [ ] `perl-Digest` -- [ ] `perl-Digest-MD5` -- [ ] `perl-DynaLoader` -- [ ] `perl-Encode` -- [ ] `perl-Errno` -- [ ] `perl-Error` -- [ ] `perl-Exporter` -- [ ] `perl-Fcntl` -- [ ] `perl-File-Basename` -- [ ] `perl-File-Path` -- [ ] `perl-File-Temp` -- [ ] `perl-File-stat` -- [ ] `perl-FileHandle` -- [ ] `perl-Getopt-Long` -- [ ] `perl-Getopt-Std` -- [ ] `perl-Git` -- [ ] `perl-HTTP-Tiny` -- [ ] `perl-IO` -- [ ] `perl-IO-Socket-IP` -- [ ] `perl-IO-Socket-SSL` -- [ ] `perl-IPC-Open3` -- [ ] `perl-MIME-Base32` -- [ ] `perl-MIME-Base64` -- [ ] `perl-NDBM_File` -- [ ] `perl-Net-SSLeay` -- [ ] `perl-POSIX` -- [ ] `perl-PathTools` -- [ ] `perl-Pod-Escapes` -- [ ] `perl-Pod-Perldoc` -- [ ] `perl-Pod-Simple` -- [ ] `perl-Pod-Usage` -- [ ] `perl-Scalar-List-Utils` -- [ ] `perl-SelectSaver` -- [ ] `perl-Socket` -- [ ] `perl-Storable` -- [ ] `perl-Symbol` -- [ ] `perl-Term-ANSIColor` -- [ ] `perl-Term-Cap` -- [ ] `perl-TermReadKey` -- [ ] `perl-Text-ParseWords` -- [ ] `perl-Text-Tabs+Wrap` -- [ ] `perl-Time-Local` -- [ ] `perl-URI` -- [ ] `perl-base` -- [ ] `perl-constant` -- [ ] `perl-if` -- [ ] `perl-interpreter` -- [ ] `perl-lib` -- [ ] `perl-libnet` -- [ ] `perl-libs` -- [ ] `perl-locale` -- [ ] `perl-mro` -- [ ] `perl-overload` -- [ ] `perl-overloading` -- [ ] `perl-parent` -- [ ] `perl-podlators` -- [ ] `perl-vars` -- [ ] `powertop` -- [ ] `pv` -- [ ] `python3-annotated-types` -- [ ] `python3-dns` -- [ ] `python3-email-validator` -- [ ] `python3-llfuse` -- [ ] `python3-msgpack` -- [ ] `python3-pip` -- [ ] `python3-psutil` -- [ ] `python3-pydantic` -- [ ] `python3-pydantic+email` -- [ ] `python3-pydantic-core` -- [ ] `python3-pydbus` -- [ ] `python3-pygit2` -- [ ] `python3-setuptools` -- [ ] `python3-typing-extensions` -- [ ] `python3-typing-inspection` -- [ ] `rclone` -- [ ] `restic` -- [ ] `runc` -- [ ] `setools-console` -- [ ] `spdlog` -- [ ] `sysstat` -- [ ] `tailscale` -- [ ] `tinyxml2` -- [ ] `usbip` -- [ ] `uupd` -- [ ] `waypipe` -- [ ] `xdg-terminal-exec` -- [ ] `xmlrpc-c` -- [ ] `xmlrpc-c-client` -- [ ] `xrandr` -- [ ] `xset` -- [ ] `yyjson` -- [ ] `zenity` -- [ ] `zsh` - -### Dev Toolchain (bigger footprint) - -- Count: **17** -- [ ] `bison` -- [ ] `cmake-filesystem` -- [ ] `elfutils-libelf-devel` -- [ ] `flatpak-debuginfo` -- [ ] `flatpak-debugsource` -- [ ] `flatpak-libs-debuginfo` -- [ ] `flatpak-session-helper-debuginfo` -- [ ] `flex` -- [ ] `gcc` -- [ ] `glibc-devel` -- [ ] `kernel-devel-matched` -- [ ] `kernel-headers` -- [ ] `libxcrypt-devel` -- [ ] `libzstd-devel` -- [ ] `make` -- [ ] `openssl-devel` -- [ ] `zlib-ng-compat-devel` - -### Containers/Virtualization (specialized) - -- Count: **1** -- [ ] `containerd` - -### Hardware/Drivers (device-specific) - -- Count: **16** -- [ ] `ddcutil` -- [ ] `evtest` -- [ ] `framework-laptop-kmod-common` -- [ ] `i2c-tools` -- [ ] `igt-gpu-tools` -- [ ] `kmod-framework-laptop` -- [ ] `kmod-openrazer` -- [ ] `kmod-v4l2loopback` -- [ ] `kmod-xone` -- [ ] `kmod-zfs` -- [ ] `libzfs6` -- [ ] `openrazer-kmod-common` -- [ ] `python3-pyzfs` -- [ ] `v4l2loopback` -- [ ] `xone-kmod-common` -- [ ] `zfs` - -### Enterprise/Network/Auth (org-specific) - -- Count: **18** -- [ ] `adcli` -- [ ] `krb5-pkinit` -- [ ] `krb5-workstation` -- [ ] `libnetapi` -- [ ] `libsss_autofs` -- [ ] `oddjob` -- [ ] `oddjob-mkhomedir` -- [ ] `samba` -- [ ] `samba-common-tools` -- [ ] `samba-dcerpc` -- [ ] `samba-ldb-ldap-modules` -- [ ] `samba-libs` -- [ ] `samba-winbind` -- [ ] `samba-winbind-clients` -- [ ] `samba-winbind-modules` -- [ ] `sssd-ad` -- [ ] `sssd-common-pac` -- [ ] `sssd-krb5` - -## Homebrew Missing from This Repo, Grouped by Priority - -### Editors/IDEs (high impact for dev workflow) - -- Count: **19** -- [ ] `helix` -- [ ] `micro` -- [ ] `microcks/tap/microcks-cli` -- [ ] `nvim` -- [ ] `ublue-os/experimental-tap/clion-linux` -- [ ] `ublue-os/experimental-tap/cursor-linux` -- [ ] `ublue-os/experimental-tap/datagrip-linux` -- [ ] `ublue-os/experimental-tap/dataspell-linux` -- [ ] `ublue-os/experimental-tap/emacs-app-linux` -- [ ] `ublue-os/experimental-tap/goland-linux` -- [ ] `ublue-os/experimental-tap/intellij-idea-linux` -- [ ] `ublue-os/experimental-tap/phpstorm-linux` -- [ ] `ublue-os/experimental-tap/pycharm-linux` -- [ ] `ublue-os/experimental-tap/rider-linux` -- [ ] `ublue-os/experimental-tap/rubymine-linux` -- [ ] `ublue-os/experimental-tap/rustrover-linux` -- [ ] `ublue-os/experimental-tap/webstorm-linux` -- [ ] `ublue-os/tap/visual-studio-code-linux` -- [ ] `ublue-os/tap/vscodium-linux` - -### AI CLIs (optional, fast-moving) - -- Count: **14** -- [ ] `aichat` -- [ ] `anomalyco/tap/opencode` -- [ ] `block-goose-cli` -- [ ] `claude-code` -- [ ] `codex` -- [ ] `gemini-cli` -- [ ] `kimi-cli` -- [ ] `llm` -- [ ] `mistral-vibe` -- [ ] `qwen-code` -- [ ] `ublue-os/experimental-tap/opencode-desktop-linux` -- [ ] `ublue-os/tap/goose-linux` -- [ ] `ublue-os/tap/linux-mcp-server` -- [ ] `whisper-cpp` - -### General CLI tools - -- Count: **64** -- [ ] `argo` -- [ ] `artifacthub/cmd/ah` -- [ ] `atlantis` -- [ ] `atuin` -- [ ] `bash-preexec` -- [ ] `buildpacks/tap/pack` -- [ ] `c7n` -- [ ] `carvel-dev/carvel/imgpkg` -- [ ] `carvel-dev/carvel/kapp` -- [ ] `carvel-dev/carvel/kbld` -- [ ] `carvel-dev/carvel/kctrl` -- [ ] `carvel-dev/carvel/kwt` -- [ ] `carvel-dev/carvel/vendir` -- [ ] `carvel-dev/carvel/ytt` -- [ ] `cdk8s` -- [ ] `charmbracelet/tap/crush` -- [ ] `chezmoi` -- [ ] `cmctl` -- [ ] `copilot-cli` -- [ ] `coredns` -- [ ] `cortex` -- [ ] `cri-tools` -- [ ] `dapr/tap/dapr-cli` -- [ ] `devspace` -- [ ] `direnv` -- [ ] `dysk` -- [ ] `envoy` -- [ ] `falco` -- [ ] `grpc` -- [ ] `harbor-cli` -- [ ] `kcl-lang/tap/kcl` -- [ ] `kitops-ml/kitops/kitops` -- [ ] `kn` -- [ ] `ko` -- [ ] `kptdev/kpt/kpt` -- [ ] `kumactl` -- [ ] `kwctl` -- [ ] `kyverno` -- [ ] `litmusctl` -- [ ] `mesheryctl` -- [ ] `mise` -- [ ] `mods` -- [ ] `nats-server` -- [ ] `notation` -- [ ] `opa` -- [ ] `openfga` -- [ ] `opentelemetry-cpp` -- [ ] `porter` -- [ ] `ripgrep` -- [ ] `swiftformat` -- [ ] `swiftlint` -- [ ] `swiftly` -- [ ] `tealdeer` -- [ ] `tiup` -- [ ] `trash-cli` -- [ ] `tremor-runtime` -- [ ] `ublue-os/tap/antigravity-linux` -- [ ] `ublue-os/tap/jetbrains-toolbox-linux` -- [ ] `ublue-os/tap/lm-studio-linux` -- [ ] `ugrep` -- [ ] `uutils-coreutils` -- [ ] `valkyrie00/bbrew/bbrew` -- [ ] `virtctl` -- [ ] `yq` - -### Containers/DevOps tooling - -- Count: **10** -- [ ] `dagger` -- [ ] `devcontainer` -- [ ] `grype` -- [ ] `k0sproject/tap/k0sctl` -- [ ] `lima` -- [ ] `nerdctl` -- [ ] `ramalama` -- [ ] `syft` -- [ ] `wasmcloud/wasmcloud/wash` -- [ ] `wasmedge` - -### Cloud/K8s toolchain (heavy/specialized) - -- Count: **26** -- [ ] `argocd` -- [ ] `cilium-cli` -- [ ] `crossplane` -- [ ] `etcd` -- [ ] `flux` -- [ ] `helm` -- [ ] `istioctl` -- [ ] `k3d` -- [ ] `k3sup` -- [ ] `k8sgpt` -- [ ] `k9s` -- [ ] `karmadactl` -- [ ] `kind` -- [ ] `kubectl` -- [ ] `kubectl-cnpg` -- [ ] `kubectx` -- [ ] `kubernetes-cli` -- [ ] `kubescape` -- [ ] `kubevela` -- [ ] `linkerd` -- [ ] `minikube` -- [ ] `operator-sdk` -- [ ] `prometheus` -- [ ] `telepresenceio/telepresence/telepresence-oss` -- [ ] `thanos` -- [ ] `vitess` - -### Fonts/Wallpapers (cosmetic) - -- Count: **14** -- [ ] `aurora-wallpapers` -- [ ] `bazzite-wallpapers` -- [ ] `bluefin-wallpapers` -- [ ] `bluefin-wallpapers-extra` -- [ ] `font-0xproto-nerd-font` -- [ ] `font-blex-mono-nerd-font` -- [ ] `font-caskaydia-mono-nerd-font` -- [ ] `font-comic-shanns-mono-nerd-font` -- [ ] `font-droid-sans-mono-nerd-font` -- [ ] `font-go-mono-nerd-font` -- [ ] `font-sauce-code-pro-nerd-font` -- [ ] `font-source-code-pro` -- [ ] `font-ubuntu-nerd-font` -- [ ] `framework-wallpapers` - -## Flatpak Gap - -- Bluefin has no additional Flatpak app IDs beyond your current manifest. diff --git a/bluefin-package-diff.md b/bluefin-package-diff.md deleted file mode 100644 index 91498fa..0000000 --- a/bluefin-package-diff.md +++ /dev/null @@ -1,397 +0,0 @@ -# Bluefin Package Gap Report - -Generated: 2026-02-16 - -Comparison target: packages/apps that `ghcr.io/ublue-os/bluefin:stable` has but this repo defaults do not. - -Method: -- Native RPMs: compared package **names** from `rpm -qa --qf "%{NAME}\n"` -- Homebrew: compared `brew`/`cask` entries from Brewfiles -- Flatpak: compared `[Flatpak Preinstall ...]` app IDs from preinstall manifests - -## Counts - -- RPM package names missing here: **215** -- Homebrew entries missing here: **147** -- Flatpak app IDs missing here: **0** - -## RPM Package Names Bluefin Has (Missing Here) - -- [ ] `adcli` -- [ ] `adwaita-fonts-all` -- [ ] `argyllcms` -- [ ] `argyllcms-data` -- [ ] `bcache-tools` -- [ ] `binutils` -- [ ] `bison` -- [ ] `boost-atomic` -- [ ] `boost-chrono` -- [ ] `boost-filesystem` -- [ ] `boost-program-options` -- [ ] `borgbackup` -- [ ] `cmake-filesystem` -- [ ] `containerd` -- [ ] `cryfs` -- [ ] `davfs2` -- [ ] `dbus-daemon` -- [ ] `dbus-tools` -- [ ] `dbus-x11` -- [ ] `ddcutil` -- [ ] `elfutils-libelf-devel` -- [ ] `evtest` -- [ ] `fastfetch` -- [ ] `firewall-config` -- [ ] `fish` -- [ ] `flatpak-debuginfo` -- [ ] `flatpak-debugsource` -- [ ] `flatpak-libs-debuginfo` -- [ ] `flatpak-session-helper-debuginfo` -- [ ] `flex` -- [ ] `foo2zjs` -- [ ] `foomatic-db-filesystem` -- [ ] `framework-laptop-kmod-common` -- [ ] `fuse-encfs` -- [ ] `gcc` -- [ ] `generic-logos` -- [ ] `git` -- [ ] `git-credential-libsecret` -- [ ] `glibc-devel` -- [ ] `glow` -- [ ] `gnome-shell-extension-gsconnect` -- [ ] `gnome-tweaks` -- [ ] `gsl` -- [ ] `gtksourceview4` -- [ ] `gum` -- [ ] `i2c-tools` -- [ ] `ifuse` -- [ ] `igt-gpu-tools` -- [ ] `input-remapper` -- [ ] `iwd` -- [ ] `jetbrains-mono-fonts` -- [ ] `jetbrains-mono-fonts-all` -- [ ] `jetbrains-mono-nl-fonts` -- [ ] `kernel-devel-matched` -- [ ] `kernel-headers` -- [ ] `kmod-framework-laptop` -- [ ] `kmod-openrazer` -- [ ] `kmod-v4l2loopback` -- [ ] `kmod-xone` -- [ ] `kmod-zfs` -- [ ] `krb5-pkinit` -- [ ] `krb5-workstation` -- [ ] `lcms` -- [ ] `lcms-libs` -- [ ] `libXScrnSaver` -- [ ] `libell` -- [ ] `libgda` -- [ ] `libgda-sqlite` -- [ ] `libgit2` -- [ ] `libi2c` -- [ ] `libkadm5` -- [ ] `libnetapi` -- [ ] `libnvpair3` -- [ ] `liboping` -- [ ] `libssh2` -- [ ] `libsss_autofs` -- [ ] `libuutil3` -- [ ] `libvarlink` -- [ ] `libxcrypt-compat` -- [ ] `libxcrypt-devel` -- [ ] `libzfs6` -- [ ] `libzpool6` -- [ ] `libzstd-devel` -- [ ] `llhttp` -- [ ] `lm_sensors` -- [ ] `lsb_release` -- [ ] `m4` -- [ ] `make` -- [ ] `nautilus-gsconnect` -- [ ] `nautilus-python` -- [ ] `ncurses-term` -- [ ] `neon` -- [ ] `nerd-fonts` -- [ ] `oddjob` -- [ ] `oddjob-mkhomedir` -- [ ] `opendyslexic-fonts` -- [ ] `openrazer-kmod-common` -- [ ] `openssh-askpass` -- [ ] `openssl-devel` -- [ ] `pcp-conf` -- [ ] `pcp-libs` -- [ ] `perl-AutoLoader` -- [ ] `perl-B` -- [ ] `perl-Carp` -- [ ] `perl-Class-Struct` -- [ ] `perl-Data-Dumper` -- [ ] `perl-Digest` -- [ ] `perl-Digest-MD5` -- [ ] `perl-DynaLoader` -- [ ] `perl-Encode` -- [ ] `perl-Errno` -- [ ] `perl-Error` -- [ ] `perl-Exporter` -- [ ] `perl-Fcntl` -- [ ] `perl-File-Basename` -- [ ] `perl-File-Path` -- [ ] `perl-File-Temp` -- [ ] `perl-File-stat` -- [ ] `perl-FileHandle` -- [ ] `perl-Getopt-Long` -- [ ] `perl-Getopt-Std` -- [ ] `perl-Git` -- [ ] `perl-HTTP-Tiny` -- [ ] `perl-IO` -- [ ] `perl-IO-Socket-IP` -- [ ] `perl-IO-Socket-SSL` -- [ ] `perl-IPC-Open3` -- [ ] `perl-MIME-Base32` -- [ ] `perl-MIME-Base64` -- [ ] `perl-NDBM_File` -- [ ] `perl-Net-SSLeay` -- [ ] `perl-POSIX` -- [ ] `perl-PathTools` -- [ ] `perl-Pod-Escapes` -- [ ] `perl-Pod-Perldoc` -- [ ] `perl-Pod-Simple` -- [ ] `perl-Pod-Usage` -- [ ] `perl-Scalar-List-Utils` -- [ ] `perl-SelectSaver` -- [ ] `perl-Socket` -- [ ] `perl-Storable` -- [ ] `perl-Symbol` -- [ ] `perl-Term-ANSIColor` -- [ ] `perl-Term-Cap` -- [ ] `perl-TermReadKey` -- [ ] `perl-Text-ParseWords` -- [ ] `perl-Text-Tabs+Wrap` -- [ ] `perl-Time-Local` -- [ ] `perl-URI` -- [ ] `perl-base` -- [ ] `perl-constant` -- [ ] `perl-if` -- [ ] `perl-interpreter` -- [ ] `perl-lib` -- [ ] `perl-libnet` -- [ ] `perl-libs` -- [ ] `perl-locale` -- [ ] `perl-mro` -- [ ] `perl-overload` -- [ ] `perl-overloading` -- [ ] `perl-parent` -- [ ] `perl-podlators` -- [ ] `perl-vars` -- [ ] `powertop` -- [ ] `pv` -- [ ] `python3-annotated-types` -- [ ] `python3-dns` -- [ ] `python3-email-validator` -- [ ] `python3-llfuse` -- [ ] `python3-msgpack` -- [ ] `python3-pip` -- [ ] `python3-psutil` -- [ ] `python3-pydantic` -- [ ] `python3-pydantic+email` -- [ ] `python3-pydantic-core` -- [ ] `python3-pydbus` -- [ ] `python3-pygit2` -- [ ] `python3-pyzfs` -- [ ] `python3-setuptools` -- [ ] `python3-typing-extensions` -- [ ] `python3-typing-inspection` -- [ ] `rclone` -- [ ] `restic` -- [ ] `runc` -- [ ] `samba` -- [ ] `samba-common-tools` -- [ ] `samba-dcerpc` -- [ ] `samba-ldb-ldap-modules` -- [ ] `samba-libs` -- [ ] `samba-winbind` -- [ ] `samba-winbind-clients` -- [ ] `samba-winbind-modules` -- [ ] `setools-console` -- [ ] `spdlog` -- [ ] `sssd-ad` -- [ ] `sssd-common-pac` -- [ ] `sssd-krb5` -- [ ] `sysstat` -- [ ] `tailscale` -- [ ] `tinyxml2` -- [ ] `usbip` -- [ ] `uupd` -- [ ] `v4l2loopback` -- [ ] `waypipe` -- [ ] `xdg-terminal-exec` -- [ ] `xmlrpc-c` -- [ ] `xmlrpc-c-client` -- [ ] `xone-kmod-common` -- [ ] `xrandr` -- [ ] `xset` -- [ ] `yyjson` -- [ ] `zenity` -- [ ] `zfs` -- [ ] `zlib-ng-compat-devel` -- [ ] `zsh` - -## Homebrew Entries Bluefin Has (Missing Here) - -- [ ] `aichat` -- [ ] `anomalyco/tap/opencode` -- [ ] `argo` -- [ ] `argocd` -- [ ] `artifacthub/cmd/ah` -- [ ] `atlantis` -- [ ] `atuin` -- [ ] `aurora-wallpapers` -- [ ] `bash-preexec` -- [ ] `bazzite-wallpapers` -- [ ] `block-goose-cli` -- [ ] `bluefin-wallpapers` -- [ ] `bluefin-wallpapers-extra` -- [ ] `buildpacks/tap/pack` -- [ ] `c7n` -- [ ] `carvel-dev/carvel/imgpkg` -- [ ] `carvel-dev/carvel/kapp` -- [ ] `carvel-dev/carvel/kbld` -- [ ] `carvel-dev/carvel/kctrl` -- [ ] `carvel-dev/carvel/kwt` -- [ ] `carvel-dev/carvel/vendir` -- [ ] `carvel-dev/carvel/ytt` -- [ ] `cdk8s` -- [ ] `charmbracelet/tap/crush` -- [ ] `chezmoi` -- [ ] `cilium-cli` -- [ ] `claude-code` -- [ ] `cmctl` -- [ ] `codex` -- [ ] `copilot-cli` -- [ ] `coredns` -- [ ] `cortex` -- [ ] `cri-tools` -- [ ] `crossplane` -- [ ] `dagger` -- [ ] `dapr/tap/dapr-cli` -- [ ] `devcontainer` -- [ ] `devspace` -- [ ] `direnv` -- [ ] `dysk` -- [ ] `envoy` -- [ ] `etcd` -- [ ] `falco` -- [ ] `flux` -- [ ] `font-0xproto-nerd-font` -- [ ] `font-blex-mono-nerd-font` -- [ ] `font-caskaydia-mono-nerd-font` -- [ ] `font-comic-shanns-mono-nerd-font` -- [ ] `font-droid-sans-mono-nerd-font` -- [ ] `font-go-mono-nerd-font` -- [ ] `font-sauce-code-pro-nerd-font` -- [ ] `font-source-code-pro` -- [ ] `font-ubuntu-nerd-font` -- [ ] `framework-wallpapers` -- [ ] `gemini-cli` -- [ ] `grpc` -- [ ] `grype` -- [ ] `harbor-cli` -- [ ] `helix` -- [ ] `helm` -- [ ] `istioctl` -- [ ] `k0sproject/tap/k0sctl` -- [ ] `k3d` -- [ ] `k3sup` -- [ ] `k8sgpt` -- [ ] `k9s` -- [ ] `karmadactl` -- [ ] `kcl-lang/tap/kcl` -- [ ] `kimi-cli` -- [ ] `kind` -- [ ] `kitops-ml/kitops/kitops` -- [ ] `kn` -- [ ] `ko` -- [ ] `kptdev/kpt/kpt` -- [ ] `kubectl` -- [ ] `kubectl-cnpg` -- [ ] `kubectx` -- [ ] `kubernetes-cli` -- [ ] `kubescape` -- [ ] `kubevela` -- [ ] `kumactl` -- [ ] `kwctl` -- [ ] `kyverno` -- [ ] `lima` -- [ ] `linkerd` -- [ ] `litmusctl` -- [ ] `llm` -- [ ] `mesheryctl` -- [ ] `micro` -- [ ] `microcks/tap/microcks-cli` -- [ ] `minikube` -- [ ] `mise` -- [ ] `mistral-vibe` -- [ ] `mods` -- [ ] `nats-server` -- [ ] `nerdctl` -- [ ] `notation` -- [ ] `nvim` -- [ ] `opa` -- [ ] `openfga` -- [ ] `opentelemetry-cpp` -- [ ] `operator-sdk` -- [ ] `porter` -- [ ] `prometheus` -- [ ] `qwen-code` -- [ ] `ramalama` -- [ ] `ripgrep` -- [ ] `swiftformat` -- [ ] `swiftlint` -- [ ] `swiftly` -- [ ] `syft` -- [ ] `tealdeer` -- [ ] `telepresenceio/telepresence/telepresence-oss` -- [ ] `thanos` -- [ ] `tiup` -- [ ] `trash-cli` -- [ ] `tremor-runtime` -- [ ] `ublue-os/experimental-tap/clion-linux` -- [ ] `ublue-os/experimental-tap/cursor-linux` -- [ ] `ublue-os/experimental-tap/datagrip-linux` -- [ ] `ublue-os/experimental-tap/dataspell-linux` -- [ ] `ublue-os/experimental-tap/emacs-app-linux` -- [ ] `ublue-os/experimental-tap/goland-linux` -- [ ] `ublue-os/experimental-tap/intellij-idea-linux` -- [ ] `ublue-os/experimental-tap/opencode-desktop-linux` -- [ ] `ublue-os/experimental-tap/phpstorm-linux` -- [ ] `ublue-os/experimental-tap/pycharm-linux` -- [ ] `ublue-os/experimental-tap/rider-linux` -- [ ] `ublue-os/experimental-tap/rubymine-linux` -- [ ] `ublue-os/experimental-tap/rustrover-linux` -- [ ] `ublue-os/experimental-tap/webstorm-linux` -- [ ] `ublue-os/tap/antigravity-linux` -- [ ] `ublue-os/tap/goose-linux` -- [ ] `ublue-os/tap/jetbrains-toolbox-linux` -- [ ] `ublue-os/tap/linux-mcp-server` -- [ ] `ublue-os/tap/lm-studio-linux` -- [ ] `ublue-os/tap/visual-studio-code-linux` -- [ ] `ublue-os/tap/vscodium-linux` -- [ ] `ugrep` -- [ ] `uutils-coreutils` -- [ ] `valkyrie00/bbrew/bbrew` -- [ ] `virtctl` -- [ ] `vitess` -- [ ] `wasmcloud/wasmcloud/wash` -- [ ] `wasmedge` -- [ ] `whisper-cpp` -- [ ] `yq` - -## Flatpak App IDs Bluefin Has (Missing Here) - -- None - -## Source Notes - -- This repo RPM baseline: `ghcr.io/ublue-os/silverblue-main:latest` -- Bluefin baseline: `ghcr.io/ublue-os/bluefin:stable` -- This repo Homebrew manifests: `custom/brew/*.Brewfile` -- This repo Flatpak manifests: `custom/flatpaks/*.preinstall` -- Bluefin Homebrew manifests read from image path `/usr/share/ublue-os/homebrew/` -- Bluefin Flatpak manifests read from image path `/etc/flatpak/preinstall.d/` diff --git a/software-inventory.md b/software-inventory.md deleted file mode 100644 index 19c387f..0000000 --- a/software-inventory.md +++ /dev/null @@ -1,1681 +0,0 @@ -# Software Inventory (Editable) - -Generated from current repository defaults and base image package inventory. -Use this as a planning checklist; edit freely. - -## Image Base - -- Base image: `ghcr.io/ublue-os/silverblue-main:latest` -- Base RPM package count: **1609** - -## Native Build-Time Installs (from `build/10-build.sh`) - -- [ ] No explicit `dnf5 install` lines in template defaults - -## Homebrew Packages (from `custom/brew/*.Brewfile`) - -- [ ] `bat` (`brew`, source: `default.Brewfile`) -- [ ] `eza` (`brew`, source: `default.Brewfile`) -- [ ] `fd` (`brew`, source: `default.Brewfile`) -- [ ] `rg` (`brew`, source: `default.Brewfile`) -- [ ] `gh` (`brew`, source: `default.Brewfile`) -- [ ] `git` (`brew`, source: `default.Brewfile`) -- [ ] `starship` (`brew`, source: `default.Brewfile`) -- [ ] `zoxide` (`brew`, source: `default.Brewfile`) -- [ ] `htop` (`brew`, source: `default.Brewfile`) -- [ ] `tmux` (`brew`, source: `default.Brewfile`) -- [ ] `font-fira-code-nerd-font` (`cask`, source: `fonts.Brewfile`) -- [ ] `font-jetbrains-mono-nerd-font` (`cask`, source: `fonts.Brewfile`) -- [ ] `font-meslo-lg-nerd-font` (`cask`, source: `fonts.Brewfile`) -- [ ] `font-hack-nerd-font` (`cask`, source: `fonts.Brewfile`) - -## Flatpak Preinstalls (from `custom/flatpaks/*.preinstall`) - -- [ ] `org.mozilla.firefox` (source: `default.preinstall`) -- [ ] `org.mozilla.Thunderbird` (source: `default.preinstall`) -- [ ] `org.gnome.Calculator` (source: `default.preinstall`) -- [ ] `org.gnome.Calendar` (source: `default.preinstall`) -- [ ] `org.gnome.Characters` (source: `default.preinstall`) -- [ ] `org.gnome.Connections` (source: `default.preinstall`) -- [ ] `org.gnome.Contacts` (source: `default.preinstall`) -- [ ] `org.gnome.DejaDup` (source: `default.preinstall`) -- [ ] `org.gnome.FileRoller` (source: `default.preinstall`) -- [ ] `org.gnome.Firmware` (source: `default.preinstall`) -- [ ] `org.gnome.Logs` (source: `default.preinstall`) -- [ ] `org.gnome.Loupe` (source: `default.preinstall`) -- [ ] `org.gnome.Maps` (source: `default.preinstall`) -- [ ] `org.gnome.NautilusPreviewer` (source: `default.preinstall`) -- [ ] `org.gnome.Papers` (source: `default.preinstall`) -- [ ] `org.gnome.SimpleScan` (source: `default.preinstall`) -- [ ] `org.gnome.TextEditor` (source: `default.preinstall`) -- [ ] `org.gnome.Weather` (source: `default.preinstall`) -- [ ] `org.gnome.baobab` (source: `default.preinstall`) -- [ ] `org.gnome.clocks` (source: `default.preinstall`) -- [ ] `org.gnome.font-viewer` (source: `default.preinstall`) -- [ ] `com.github.PintaProject.Pinta` (source: `default.preinstall`) -- [ ] `com.github.rafostar.Clapper` (source: `default.preinstall`) -- [ ] `com.github.tchx84.Flatseal` (source: `default.preinstall`) -- [ ] `com.mattjakeman.ExtensionManager` (source: `default.preinstall`) -- [ ] `io.github.flattool.Warehouse` (source: `default.preinstall`) -- [ ] `io.github.flattool.Ignition` (source: `default.preinstall`) -- [ ] `io.missioncenter.MissionCenter` (source: `default.preinstall`) -- [ ] `io.gitlab.adhami3310.Impression` (source: `default.preinstall`) -- [ ] `com.ranfdev.DistroShelf` (source: `default.preinstall`) -- [ ] `io.github.kolunmi.Bazaar` (source: `default.preinstall`) -- [ ] `page.tesk.Refine` (source: `default.preinstall`) -- [ ] `org.gtk.Gtk3theme.adw-gtk3` (source: `default.preinstall`) -- [ ] `org.gtk.Gtk3theme.adw-gtk3-dark` (source: `default.preinstall`) - -## Base Image RPM Packages (from `rpm -qa`) - -The list below is the full package set currently present in the base image. - -- [ ] `libgcc-15.2.1-7.fc43.x86_64` -- [ ] `fonts-filesystem-2.0.5-23.fc43.noarch` -- [ ] `google-noto-fonts-common-20251101-2.fc43.noarch` -- [ ] `abattis-cantarell-vf-fonts-0.301-15.fc43.noarch` -- [ ] `google-noto-sans-vf-fonts-20251101-2.fc43.noarch` -- [ ] `linux-firmware-whence-20260110-1.fc43.noarch` -- [ ] `hwdata-0.404-1.fc43.noarch` -- [ ] `xkeyboard-config-2.46-1.fc43.noarch` -- [ ] `tzdata-2025c-1.fc43.noarch` -- [ ] `fedora-logos-42.0.1-2.fc43.noarch` -- [ ] `default-fonts-core-sans-4.2-5.fc43.noarch` -- [ ] `google-noto-sans-devanagari-vf-fonts-20251101-2.fc43.noarch` -- [ ] `google-noto-sans-mono-vf-fonts-20251101-2.fc43.noarch` -- [ ] `google-noto-serif-vf-fonts-20251101-2.fc43.noarch` -- [ ] `pcre2-syntax-10.47-1.fc43.noarch` -- [ ] `hyperv-daemons-license-6.10-2.fc43.noarch` -- [ ] `hunspell-filesystem-1.7.2-10.fc43.x86_64` -- [ ] `gnome-control-center-filesystem-49.4-1.fc43.noarch` -- [ ] `hunspell-en-US-0.20201207-12.fc43.noarch` -- [ ] `google-noto-sans-bengali-vf-fonts-20251101-2.fc43.noarch` -- [ ] `google-noto-sans-hebrew-vf-fonts-20251101-2.fc43.noarch` -- [ ] `whois-nls-5.6.5-1.fc43.noarch` -- [ ] `mozilla-filesystem-1.9-36.fc43.x86_64` -- [ ] `mobile-broadband-provider-info-20240407-4.fc43.noarch` -- [ ] `fuse-common-3.16.2-5.fc42.x86_64` -- [ ] `appstream-data-43-3.fc43.noarch` -- [ ] `adobe-mappings-cmap-20231115-3.fc43.noarch` -- [ ] `adobe-mappings-cmap-deprecated-20231115-3.fc43.noarch` -- [ ] `default-fonts-he-4.2-5.fc43.noarch` -- [ ] `default-fonts-yi-4.2-5.fc43.noarch` -- [ ] `default-fonts-as-4.2-5.fc43.noarch` -- [ ] `default-fonts-bn-4.2-5.fc43.noarch` -- [ ] `hunspell-en-GB-0.20201207-12.fc43.noarch` -- [ ] `langpacks-fonts-en-4.2-5.fc43.noarch` -- [ ] `default-fonts-hi-4.2-5.fc43.noarch` -- [ ] `default-fonts-mai-4.2-5.fc43.noarch` -- [ ] `default-fonts-mr-4.2-5.fc43.noarch` -- [ ] `langpacks-core-en-4.2-5.fc43.noarch` -- [ ] `osinfo-db-20250124-2.fc43.noarch` -- [ ] `iwlwifi-mld-firmware-20260110-1.fc43.noarch` -- [ ] `linux-firmware-20260110-1.fc43.noarch` -- [ ] `default-fonts-ast-4.2-5.fc43.noarch` -- [ ] `default-fonts-be-4.2-5.fc43.noarch` -- [ ] `default-fonts-bg-4.2-5.fc43.noarch` -- [ ] `default-fonts-br-4.2-5.fc43.noarch` -- [ ] `default-fonts-dz-4.2-5.fc43.noarch` -- [ ] `default-fonts-el-4.2-5.fc43.noarch` -- [ ] `default-fonts-eo-4.2-5.fc43.noarch` -- [ ] `default-fonts-eu-4.2-5.fc43.noarch` -- [ ] `default-fonts-ia-4.2-5.fc43.noarch` -- [ ] `default-fonts-kab-4.2-5.fc43.noarch` -- [ ] `default-fonts-ku-4.2-5.fc43.noarch` -- [ ] `default-fonts-nb-4.2-5.fc43.noarch` -- [ ] `default-fonts-nn-4.2-5.fc43.noarch` -- [ ] `default-fonts-nr-4.2-5.fc43.noarch` -- [ ] `default-fonts-nso-4.2-5.fc43.noarch` -- [ ] `default-fonts-ru-4.2-5.fc43.noarch` -- [ ] `default-fonts-ss-4.2-5.fc43.noarch` -- [ ] `default-fonts-tn-4.2-5.fc43.noarch` -- [ ] `default-fonts-ts-4.2-5.fc43.noarch` -- [ ] `default-fonts-uk-4.2-5.fc43.noarch` -- [ ] `default-fonts-ve-4.2-5.fc43.noarch` -- [ ] `default-fonts-vi-4.2-5.fc43.noarch` -- [ ] `default-fonts-xh-4.2-5.fc43.noarch` -- [ ] `default-fonts-zu-4.2-5.fc43.noarch` -- [ ] `google-noto-naskh-arabic-vf-fonts-20251101-2.fc43.noarch` -- [ ] `google-noto-sans-arabic-vf-fonts-20251101-2.fc43.noarch` -- [ ] `default-fonts-ar-4.2-5.fc43.noarch` -- [ ] `google-noto-sans-armenian-vf-fonts-20251101-2.fc43.noarch` -- [ ] `default-fonts-hy-4.2-5.fc43.noarch` -- [ ] `google-noto-sans-canadian-aboriginal-vf-fonts-20251101-2.fc43.noarch` -- [ ] `default-fonts-iu-4.2-5.fc43.noarch` -- [ ] `google-noto-sans-cherokee-vf-fonts-20251101-2.fc43.noarch` -- [ ] `default-fonts-chr-4.2-5.fc43.noarch` -- [ ] `google-noto-sans-ethiopic-vf-fonts-20251101-2.fc43.noarch` -- [ ] `default-fonts-am-4.2-5.fc43.noarch` -- [ ] `google-noto-sans-georgian-vf-fonts-20251101-2.fc43.noarch` -- [ ] `default-fonts-ka-4.2-5.fc43.noarch` -- [ ] `google-noto-sans-gothic-fonts-20251101-2.fc43.noarch` -- [ ] `default-fonts-got-4.2-5.fc43.noarch` -- [ ] `google-noto-sans-gujarati-vf-fonts-20251101-2.fc43.noarch` -- [ ] `default-fonts-gu-4.2-5.fc43.noarch` -- [ ] `google-noto-sans-gurmukhi-vf-fonts-20251101-2.fc43.noarch` -- [ ] `default-fonts-pa-4.2-5.fc43.noarch` -- [ ] `google-noto-sans-kannada-vf-fonts-20251101-2.fc43.noarch` -- [ ] `default-fonts-kn-4.2-5.fc43.noarch` -- [ ] `google-noto-sans-khmer-vf-fonts-20251101-2.fc43.noarch` -- [ ] `default-fonts-km-4.2-5.fc43.noarch` -- [ ] `google-noto-sans-lao-vf-fonts-20251101-2.fc43.noarch` -- [ ] `default-fonts-lo-4.2-5.fc43.noarch` -- [ ] `google-noto-sans-math-fonts-20251101-2.fc43.noarch` -- [ ] `google-noto-sans-meetei-mayek-vf-fonts-20251101-2.fc43.noarch` -- [ ] `default-fonts-mni-4.2-5.fc43.noarch` -- [ ] `google-noto-sans-nko-fonts-20251101-2.fc43.noarch` -- [ ] `default-fonts-nqo-4.2-5.fc43.noarch` -- [ ] `google-noto-sans-ol-chiki-vf-fonts-20251101-2.fc43.noarch` -- [ ] `default-fonts-sat-4.2-5.fc43.noarch` -- [ ] `google-noto-sans-oriya-vf-fonts-20251101-2.fc43.noarch` -- [ ] `default-fonts-or-4.2-5.fc43.noarch` -- [ ] `google-noto-sans-sinhala-vf-fonts-20251101-2.fc43.noarch` -- [ ] `default-fonts-si-4.2-5.fc43.noarch` -- [ ] `google-noto-sans-symbols-2-fonts-20251101-2.fc43.noarch` -- [ ] `google-noto-sans-symbols-vf-fonts-20251101-2.fc43.noarch` -- [ ] `google-noto-sans-syriac-vf-fonts-20251101-2.fc43.noarch` -- [ ] `default-fonts-syr-4.2-5.fc43.noarch` -- [ ] `google-noto-sans-tamil-vf-fonts-20251101-2.fc43.noarch` -- [ ] `default-fonts-ta-4.2-5.fc43.noarch` -- [ ] `google-noto-sans-telugu-vf-fonts-20251101-2.fc43.noarch` -- [ ] `default-fonts-te-4.2-5.fc43.noarch` -- [ ] `google-noto-sans-thaana-vf-fonts-20251101-2.fc43.noarch` -- [ ] `default-fonts-dv-4.2-5.fc43.noarch` -- [ ] `google-noto-sans-thai-vf-fonts-20251101-2.fc43.noarch` -- [ ] `default-fonts-th-4.2-5.fc43.noarch` -- [ ] `google-noto-serif-armenian-vf-fonts-20251101-2.fc43.noarch` -- [ ] `google-noto-serif-bengali-vf-fonts-20251101-2.fc43.noarch` -- [ ] `google-noto-serif-devanagari-vf-fonts-20251101-2.fc43.noarch` -- [ ] `google-noto-serif-ethiopic-vf-fonts-20251101-2.fc43.noarch` -- [ ] `google-noto-serif-georgian-vf-fonts-20251101-2.fc43.noarch` -- [ ] `google-noto-serif-gujarati-vf-fonts-20251101-2.fc43.noarch` -- [ ] `google-noto-serif-gurmukhi-vf-fonts-20251101-2.fc43.noarch` -- [ ] `google-noto-serif-hebrew-vf-fonts-20251101-2.fc43.noarch` -- [ ] `google-noto-serif-kannada-vf-fonts-20251101-2.fc43.noarch` -- [ ] `google-noto-serif-khmer-vf-fonts-20251101-2.fc43.noarch` -- [ ] `google-noto-serif-lao-vf-fonts-20251101-2.fc43.noarch` -- [ ] `google-noto-serif-oriya-vf-fonts-20251101-2.fc43.noarch` -- [ ] `google-noto-serif-sinhala-vf-fonts-20251101-2.fc43.noarch` -- [ ] `google-noto-serif-tamil-vf-fonts-20251101-2.fc43.noarch` -- [ ] `google-noto-serif-telugu-vf-fonts-20251101-2.fc43.noarch` -- [ ] `google-noto-serif-thai-vf-fonts-20251101-2.fc43.noarch` -- [ ] `abattis-cantarell-fonts-0.301-15.fc43.noarch` -- [ ] `google-droid-sans-fonts-20200215-23.fc43.noarch` -- [ ] `google-noto-color-emoji-fonts-20250623-2.fc43.noarch` -- [ ] `google-noto-sans-mono-cjk-vf-fonts-2.004-10.fc43.noarch` -- [ ] `google-noto-serif-cjk-vf-fonts-2.003-3.fc43.noarch` -- [ ] `jomolhari-fonts-0.003-44.fc43.noarch` -- [ ] `default-fonts-bo-4.2-5.fc43.noarch` -- [ ] `madan-fonts-2.000-41.fc43.noarch` -- [ ] `default-fonts-ne-4.2-5.fc43.noarch` -- [ ] `paktype-naskh-basic-fonts-7.0-3.20231228.fc43.noarch` -- [ ] `default-fonts-ur-4.2-5.fc43.noarch` -- [ ] `rit-meera-new-fonts-1.6.2-4.fc43.noarch` -- [ ] `default-fonts-ml-4.2-5.fc43.noarch` -- [ ] `rit-rachana-fonts-1.5.2-4.fc43.noarch` -- [ ] `sil-padauk-fonts-3.003-20.fc43.noarch` -- [ ] `default-fonts-my-4.2-5.fc43.noarch` -- [ ] `stix-fonts-2.13b171-9.fc43.noarch` -- [ ] `vazirmatn-vf-fonts-33.003-13.fc43.noarch` -- [ ] `default-fonts-fa-4.2-5.fc43.noarch` -- [ ] `cldr-emoji-annotation-48-1.fc43.noarch` -- [ ] `cldr-emoji-annotation-dtd-48-1.fc43.noarch` -- [ ] `yelp-xsl-49.0-1.fc43.noarch` -- [ ] `vim-data-9.1.2128-2.fc43.noarch` -- [ ] `unicode-ucd-17.0.0-1.fc43.noarch` -- [ ] `tesseract-tessdata-doc-4.1.0-11.fc43.noarch` -- [ ] `tesseract-common-5.5.2-1.fc43.noarch` -- [ ] `tesseract-langpack-eng-4.1.0-11.fc43.noarch` -- [ ] `redhat-menus-12.0.2-30.fc43.noarch` -- [ ] `quota-nls-4.10-2.fc43.noarch` -- [ ] `qt5-filesystem-5.15.18-1.fc43.x86_64` -- [ ] `qt-settings-43.1-2.fc43.noarch` -- [ ] `publicsuffix-list-dafsa-20260116-1.fc43.noarch` -- [ ] `poppler-data-0.4.11-10.fc43.noarch` -- [ ] `pkgconf-m4-2.3.0-3.fc43.noarch` -- [ ] `ncurses-base-6.5-7.20250614.fc43.noarch` -- [ ] `mutter-common-49.4-1.fc43.noarch` -- [ ] `mailcap-2.1.54-9.fc43.noarch` -- [ ] `llvm-filesystem-21.1.8-4.fc43.x86_64` -- [ ] `libwacom-data-2.18.0-1.fc43.noarch` -- [ ] `libssh-config-0.11.4-1.fc43.noarch` -- [ ] `libreport-filesystem-2.17.15-9.fc43.noarch` -- [ ] `liblouis-tables-3.33.0-6.fc43.noarch` -- [ ] `libX11-common-1.8.12-1.fc43.noarch` -- [ ] `langtable-0.0.69-4.fc43.noarch` -- [ ] `kbd-misc-2.8.0-3.fc43.noarch` -- [ ] `kbd-legacy-2.8.0-3.fc43.noarch` -- [ ] `kasumi-common-2.5-49.fc43.noarch` -- [ ] `hplip-common-3.25.8-1.fc43.x86_64` -- [ ] `gnulib-l10n-20241231-1.fc43.noarch` -- [ ] `coreutils-common-9.7-7.fc43.x86_64` -- [ ] `gnome-shell-common-49.4-1.fc43.noarch` -- [ ] `gnome-app-list-3.0-2.fc43.noarch` -- [ ] `firewalld-filesystem-2.3.2-1.fc43.noarch` -- [ ] `fedora-release-ostree-desktop-43-26.noarch` -- [ ] `fedora-release-identity-silverblue-43-26.noarch` -- [ ] `fedora-gpg-keys-43-1.noarch` -- [ ] `fedora-repos-43-1.noarch` -- [ ] `fedora-release-common-43-26.noarch` -- [ ] `fedora-release-silverblue-43-26.noarch` -- [ ] `setup-2.15.0-26.fc43.noarch` -- [ ] `filesystem-3.18-50.fc43.x86_64` -- [ ] `bash-5.3.0-2.fc43.x86_64` -- [ ] `glibc-common-2.42-9.fc43.x86_64` -- [ ] `glibc-gconv-extra-2.42-9.fc43.x86_64` -- [ ] `glibc-2.42-9.fc43.x86_64` -- [ ] `ncurses-libs-6.5-7.20250614.fc43.x86_64` -- [ ] `glibc-all-langpacks-2.42-9.fc43.x86_64` -- [ ] `libstdc++-15.2.1-7.fc43.x86_64` -- [ ] `zlib-ng-compat-2.3.3-1.fc43.x86_64` -- [ ] `libjpeg-turbo-3.1.2-1.fc43.x86_64` -- [ ] `sqlite-libs-3.50.2-2.fc43.x86_64` -- [ ] `libuuid-2.41.3-7.fc43.x86_64` -- [ ] `libzstd-1.5.7-2.fc43.x86_64` -- [ ] `xz-libs-5.8.1-4.fc43.x86_64` -- [ ] `libxml2-2.12.10-5.fc43.x86_64` -- [ ] `libblkid-2.41.3-7.fc43.x86_64` -- [ ] `libpng-1.6.53-1.fc43.x86_64` -- [ ] `bzip2-libs-1.0.8-21.fc43.x86_64` -- [ ] `libicu-77.1-1.fc43.x86_64` -- [ ] `lcms2-2.16-6.fc43.x86_64` -- [ ] `libxcrypt-4.5.2-1.fc43.x86_64` -- [ ] `popt-1.19-9.fc43.x86_64` -- [ ] `alsa-lib-1.2.15.3-1.fc43.x86_64` -- [ ] `libseccomp-2.6.0-2.fc43.x86_64` -- [ ] `readline-8.3-2.fc43.x86_64` -- [ ] `expat-2.7.3-1.fc43.x86_64` -- [ ] `libcom_err-1.47.3-2.fc43.x86_64` -- [ ] `gmp-6.3.0-4.fc43.x86_64` -- [ ] `libgpg-error-1.55-2.fc43.x86_64` -- [ ] `libgcrypt-1.11.1-3.fc43.x86_64` -- [ ] `pcre2-10.47-1.fc43.x86_64` -- [ ] `grep-3.12-2.fc43.x86_64` -- [ ] `alternatives-1.33-3.fc43.x86_64` -- [ ] `libwebp-1.6.0-2.fc43.x86_64` -- [ ] `fribidi-1.0.16-3.fc43.x86_64` -- [ ] `fuse3-libs-3.16.2-5.fc42.x86_64` -- [ ] `json-c-0.18-7.fc43.x86_64` -- [ ] `libassuan-2.5.7-4.fc43.x86_64` -- [ ] `libxkbcommon-1.11.0-1.fc43.x86_64` -- [ ] `keyutils-libs-1.6.3-6.fc43.x86_64` -- [ ] `libffi-3.5.2-1.fc43.x86_64` -- [ ] `libwayland-client-1.24.0-1.fc43.x86_64` -- [ ] `libtalloc-2.4.3-4.fc43.x86_64` -- [ ] `libtool-ltdl-2.5.4-8.fc43.x86_64` -- [ ] `vulkan-loader-1.4.328.1-1.fc43.x86_64` -- [ ] `urw-base35-fonts-common-20200910-26.fc43.noarch` -- [ ] `nettle-3.10.1-2.fc43.x86_64` -- [ ] `libX11-xcb-1.8.12-1.fc43.x86_64` -- [ ] `libunistring-1.1-10.fc43.x86_64` -- [ ] `libidn2-2.3.8-2.fc43.x86_64` -- [ ] `nspr-4.38.2-1.fc43.x86_64` -- [ ] `elfutils-libelf-0.194-1.fc43.x86_64` -- [ ] `libbrotli-1.2.0-1.fc43.x86_64` -- [ ] `cups-filesystem-2.4.16-4.fc43.noarch` -- [ ] `libcap-ng-0.9-7.fc43.x86_64` -- [ ] `audit-libs-4.1.3-1.fc43.x86_64` -- [ ] `libgomp-15.2.1-7.fc43.x86_64` -- [ ] `libmnl-1.0.5-8.fc43.x86_64` -- [ ] `libnl3-3.12.0-2.fc43.x86_64` -- [ ] `libtasn1-4.20.0-2.fc43.x86_64` -- [ ] `p11-kit-0.26.2-1.fc43.x86_64` -- [ ] `nss-util-3.119.1-1.fc43.x86_64` -- [ ] `fmt-11.2.0-3.fc43.x86_64` -- [ ] `libXau-1.0.12-3.fc43.x86_64` -- [ ] `libxcb-1.17.0-6.fc43.x86_64` -- [ ] `libX11-1.8.12-1.fc43.x86_64` -- [ ] `libXext-1.3.6-4.fc43.x86_64` -- [ ] `libXfixes-6.0.1-6.fc43.x86_64` -- [ ] `libXi-1.8.2-3.fc43.x86_64` -- [ ] `libepoxy-1.5.10-11.fc43.x86_64` -- [ ] `libogg-1.3.6-2.fc43.x86_64` -- [ ] `libvorbis-1.3.7-13.fc43.x86_64` -- [ ] `lua-libs-5.4.8-4.fc43.x86_64` -- [ ] `lz4-libs-1.10.0-3.fc43.x86_64` -- [ ] `openjpeg-2.5.4-1.fc43.x86_64` -- [ ] `opus-1.5.2-3.fc43.x86_64` -- [ ] `crypto-policies-20251125-1.git63291f8.fc43.noarch` -- [ ] `libXdamage-1.1.6-6.fc43.x86_64` -- [ ] `libXinerama-1.1.5-9.fc43.x86_64` -- [ ] `libXrender-0.9.12-3.fc43.x86_64` -- [ ] `libXrandr-1.5.4-6.fc43.x86_64` -- [ ] `libtevent-0.17.1-3.fc43.x86_64` -- [ ] `fuse3-3.16.2-5.fc42.x86_64` -- [ ] `libxslt-1.1.43-5.fc43.x86_64` -- [ ] `libplist-2.6.0-5.fc43.x86_64` -- [ ] `libsigc++20-2.12.1-6.fc43.x86_64` -- [ ] `libedit-3.1-57.20251016cvs.fc43.x86_64` -- [ ] `gdbm-libs-1.23-10.fc43.x86_64` -- [ ] `jansson-2.14-3.fc43.x86_64` -- [ ] `libnghttp2-1.66.0-2.fc43.x86_64` -- [ ] `libtdb-1.4.14-3.fc43.x86_64` -- [ ] `npth-1.8-3.fc43.x86_64` -- [ ] `protobuf-c-1.5.2-1.fc43.x86_64` -- [ ] `grub2-common-2.12-40.fc43.noarch` -- [ ] `hicolor-icon-theme-0.18-2.fc43.noarch` -- [ ] `libXtst-1.2.5-3.fc43.x86_64` -- [ ] `libwayland-cursor-1.24.0-1.fc43.x86_64` -- [ ] `libsigc++30-3.6.0-6.fc43.x86_64` -- [ ] `libvpl-2.16.0-1.fc43.x86_64` -- [ ] `libattr-2.5.2-6.fc43.x86_64` -- [ ] `libacl-2.3.2-4.fc43.x86_64` -- [ ] `libdav1d-1.5.2-1.fc43.x86_64` -- [ ] `libdvdread-6.1.3-10.fc43.x86_64` -- [ ] `libevdev-1.13.6-1.fc43.x86_64` -- [ ] `libsepol-3.9-2.fc43.x86_64` -- [ ] `libselinux-3.9-5.fc43.x86_64` -- [ ] `sed-4.9-5.fc43.x86_64` -- [ ] `libmount-2.41.3-7.fc43.x86_64` -- [ ] `libselinux-utils-3.9-5.fc43.x86_64` -- [ ] `lzo-2.10-15.fc43.x86_64` -- [ ] `pixman-0.46.2-2.fc43.x86_64` -- [ ] `dbus-common-1.16.0-4.fc43.noarch` -- [ ] `efi-filesystem-6-4.fc43.noarch` -- [ ] `libsemanage-3.9-4.fc43.x86_64` -- [ ] `libXcomposite-0.4.6-6.fc43.x86_64` -- [ ] `p11-kit-trust-0.26.2-1.fc43.x86_64` -- [ ] `gnutls-3.8.12-1.fc43.x86_64` -- [ ] `glib2-2.86.3-1.fc43.x86_64` -- [ ] `json-glib-1.10.8-4.fc43.x86_64` -- [ ] `graphene-1.10.8-2.fc43.x86_64` -- [ ] `libsecret-0.21.7-7.fc43.x86_64` -- [ ] `gsettings-desktop-schemas-49.1-3.fc43.x86_64` -- [ ] `gcr-libs-4.4.0.1-4.fc43.x86_64` -- [ ] `gvfs-client-1.58.1-1.fc43.x86_64` -- [ ] `shared-mime-info-2.4-2.fc43.x86_64` -- [ ] `ModemManager-glib-1.24.2-1.fc43.x86_64` -- [ ] `gobject-introspection-1.84.0-3.fc43.x86_64` -- [ ] `upower-libs-1.91.1-2.fc43.x86_64` -- [ ] `libmbim-1.32.0-2.fc43.x86_64` -- [ ] `malcontent-libs-0.13.0-3.fc43.x86_64` -- [ ] `libxmlb-0.3.24-1.fc43.x86_64` -- [ ] `glibmm2.4-2.66.8-2.fc43.x86_64` -- [ ] `libportal-0.9.1-3.fc43.x86_64` -- [ ] `libudisks2-2.11.0-1.fc43.x86_64` -- [ ] `libpsl-0.21.5-6.fc43.x86_64` -- [ ] `libwayland-server-1.24.0-1.fc43.x86_64` -- [ ] `mpfr-4.2.2-2.fc43.x86_64` -- [ ] `gawk-5.3.2-2.fc43.x86_64` -- [ ] `e2fsprogs-libs-1.47.3-2.fc43.x86_64` -- [ ] `apr-1.7.6-3.fc43.x86_64` -- [ ] `apr-util-1.6.3-25.fc43.x86_64` -- [ ] `libfdisk-2.41.3-7.fc43.x86_64` -- [ ] `file-libs-5.46-8.fc43.x86_64` -- [ ] `bluez-libs-5.86-2.fc43.x86_64` -- [ ] `gsm-1.0.23-1.fc43.x86_64` -- [ ] `jbigkit-libs-2.1-32.fc43.x86_64` -- [ ] `lame-libs-3.100-20.fc43.x86_64` -- [ ] `libICE-1.1.2-3.fc43.x86_64` -- [ ] `libeconf-0.7.9-2.fc43.x86_64` -- [ ] `pam-libs-1.7.1-4.fc43.x86_64` -- [ ] `libcap-2.76-3.fc43.x86_64` -- [ ] `systemd-libs-258.4-1.fc43.x86_64` -- [ ] `dbus-libs-1.16.0-4.fc43.x86_64` -- [ ] `libusb1-1.0.29-4.fc43.x86_64` -- [ ] `polkit-libs-126-6.fc43.x86_64` -- [ ] `libgudev-238-8.fc43.x86_64` -- [ ] `NetworkManager-libnm-1.54.3-2.fc43.x86_64` -- [ ] `bubblewrap-0.11.0-2.fc43.x86_64` -- [ ] `shadow-utils-4.18.0-3.fc43.x86_64` -- [ ] `sane-backends-libs-1.4.0-4.fc43.x86_64` -- [ ] `plymouth-core-libs-24.004.60-24.fc43.x86_64` -- [ ] `shadow-utils-subid-4.18.0-3.fc43.x86_64` -- [ ] `libglvnd-1.7.0-8.fc43.x86_64` -- [ ] `libraw1394-2.1.2-24.fc43.x86_64` -- [ ] `libunwind-1.8.1-3.fc43.x86_64` -- [ ] `libwayland-egl-1.24.0-1.fc43.x86_64` -- [ ] `lmdb-libs-0.9.34-1.fc43.x86_64` -- [ ] `libldb-4.23.5-1.fc43.x86_64` -- [ ] `ngtcp2-1.19.0-1.fc43.x86_64` -- [ ] `orc-0.4.41-2.fc43.x86_64` -- [ ] `pciutils-libs-3.14.0-2.fc43.x86_64` -- [ ] `svt-av1-libs-3.1.2-1.fc43.x86_64` -- [ ] `libglvnd-opengl-1.7.0-8.fc43.x86_64` -- [ ] `libgusb-0.4.9-4.fc43.x86_64` -- [ ] `colord-libs-1.4.8-2.fc43.x86_64` -- [ ] `libSM-1.2.5-3.fc43.x86_64` -- [ ] `libXt-1.3.1-3.fc43.x86_64` -- [ ] `libXmu-1.2.1-4.fc43.x86_64` -- [ ] `gcr3-base-3.41.1-11.fc43.x86_64` -- [ ] `geoclue2-libs-2.8.0-1.fc43.x86_64` -- [ ] `glibmm2.68-2.84.0-2.fc43.x86_64` -- [ ] `libqrtr-glib-1.2.2-8.fc43.x86_64` -- [ ] `libqmi-1.36.0-2.fc43.x86_64` -- [ ] `speech-dispatcher-libs-0.12.1-5.fc43.x86_64` -- [ ] `findutils-4.10.0-6.fc43.x86_64` -- [ ] `openssl-libs-3.5.4-2.fc43.x86_64` -- [ ] `coreutils-9.7-7.fc43.x86_64` -- [ ] `ca-certificates-2025.2.80_v9.0.304-1.1.fc43.noarch` -- [ ] `libarchive-3.8.4-1.fc43.x86_64` -- [ ] `kmod-libs-34.2-2.fc43.x86_64` -- [ ] `libblockdev-utils-3.4.0-1.fc43.x86_64` -- [ ] `tpm2-tss-4.1.3-8.fc43.x86_64` -- [ ] `which-2.23-3.fc43.x86_64` -- [ ] `systemd-shared-258.4-1.fc43.x86_64` -- [ ] `libevent-2.1.12-16.fc43.x86_64` -- [ ] `avahi-libs-0.9~rc2-6.fc43.x86_64` -- [ ] `avahi-glib-0.9~rc2-6.fc43.x86_64` -- [ ] `authselect-libs-1.6.2-1.fc43.x86_64` -- [ ] `authselect-1.6.2-1.fc43.x86_64` -- [ ] `gzip-1.13-4.fc43.x86_64` -- [ ] `composefs-libs-1.0.8-3.fc43.x86_64` -- [ ] `cyrus-sasl-lib-2.1.28-33.fc43.x86_64` -- [ ] `openldap-2.6.10-4.fc43.x86_64` -- [ ] `llvm-libs-21.1.8-4.fc43.x86_64` -- [ ] `libimobiledevice-glue-1.3.1-3.fc43.x86_64` -- [ ] `xmlsec1-1.2.41-3.fc43.x86_64` -- [ ] `libXcursor-1.2.3-3.fc43.x86_64` -- [ ] `libtheora-1.1.1-40.fc43.x86_64` -- [ ] `libxkbfile-1.1.3-4.fc43.x86_64` -- [ ] `gnupg2-gpgconf-2.4.9-5.fc43.x86_64` -- [ ] `libksba-1.6.7-4.fc43.x86_64` -- [ ] `libical-3.0.20-4.fc43.x86_64` -- [ ] `libical-glib-3.0.20-4.fc43.x86_64` -- [ ] `xml-common-0.6.3-67.fc43.noarch` -- [ ] `iso-codes-4.18.0-2.fc43.noarch` -- [ ] `libv4l-1.32.0-1.fc43.x86_64` -- [ ] `libcdio-2.1.0-15.fc43.x86_64` -- [ ] `spirv-tools-libs-2025.4-1.fc43.x86_64` -- [ ] `inih-62-1.fc43.x86_64` -- [ ] `libatomic-15.2.1-7.fc43.x86_64` -- [ ] `javascriptcoregtk6.0-2.50.5-1.fc43.x86_64` -- [ ] `libexif-0.6.25-2.fc43.x86_64` -- [ ] `liblc3-1.1.3-5.fc43.x86_64` -- [ ] `liblouis-3.33.0-6.fc43.x86_64` -- [ ] `libref_array-0.1.5-59.fc43.x86_64` -- [ ] `libsmartcols-2.41.3-7.fc43.x86_64` -- [ ] `util-linux-core-2.41.3-7.fc43.x86_64` -- [ ] `libverto-0.3.2-11.fc43.x86_64` -- [ ] `krb5-libs-1.21.3-7.fc43.x86_64` -- [ ] `cups-libs-2.4.16-4.fc43.x86_64` -- [ ] `libsoup3-3.6.5-8.fc43.x86_64` -- [ ] `libcurl-minimal-8.15.0-5.fc43.x86_64` -- [ ] `libtirpc-1.3.7-1.fc43.x86_64` -- [ ] `geocode-glib-3.26.4-14.fc43.x86_64` -- [ ] `libgweather-4.4.4-3.fc43.x86_64` -- [ ] `gssdp-1.6.4-5.fc43.x86_64` -- [ ] `libvpx-1.15.0-4.fc43.x86_64` -- [ ] `libxshmfence-1.3.2-7.fc43.x86_64` -- [ ] `libyaml-0.2.5-17.fc43.x86_64` -- [ ] `mpg123-libs-1.32.10-2.fc43.x86_64` -- [ ] `noopenh264-2.6.0-2.fc43.x86_64` -- [ ] `ntfs-3g-libs-2022.10.3-10.fc43.x86_64` -- [ ] `numactl-libs-2.0.19-3.fc43.x86_64` -- [ ] `pcsc-lite-libs-2.3.3-2.fc43.x86_64` -- [ ] `rav1e-libs-0.8.1-2.fc43.x86_64` -- [ ] `serd-0.32.4-2.fc43.x86_64` -- [ ] `speex-1.2.0-20.fc43.x86_64` -- [ ] `curl-8.15.0-5.fc43.x86_64` -- [ ] `rest-0.10.2-4.fc43.x86_64` -- [ ] `cups-client-2.4.16-4.fc43.x86_64` -- [ ] `libnfsidmap-2.8.4-0.fc43.x86_64` -- [ ] `libshaderc-2025.4-1.fc43.x86_64` -- [ ] `libcdio-paranoia-10.2+2.0.2-5.fc43.x86_64` -- [ ] `composefs-1.0.8-3.fc43.x86_64` -- [ ] `cracklib-2.9.11-8.fc43.x86_64` -- [ ] `libpwquality-1.4.5-14.fc43.x86_64` -- [ ] `systemd-sysusers-258.4-1.fc43.x86_64` -- [ ] `libnvme-1.16.1-1.fc43.x86_64` -- [ ] `net-snmp-libs-5.9.4-18.fc43.x86_64` -- [ ] `openpace-1.1.3-4.fc43.x86_64` -- [ ] `podman-sequoia-0.2.0-3.fc43.x86_64` -- [ ] `zchunk-libs-1.5.1-3.fc43.x86_64` -- [ ] `sdbus-cpp-2.1.0-3.fc43.x86_64` -- [ ] `file-5.46-8.fc43.x86_64` -- [ ] `gnome-menus-3.38.1-1.fc43.x86_64` -- [ ] `libcloudproviders-0.3.6-2.fc43.x86_64` -- [ ] `libgtop2-2.41.3-4.fc43.x86_64` -- [ ] `nautilus-extensions-49.4-1.fc43.x86_64` -- [ ] `passim-libs-0.1.10-2.fc43.x86_64` -- [ ] `tar-1.35-6.fc43.x86_64` -- [ ] `libdvdnav-6.1.1-11.fc43.x86_64` -- [ ] `gnupg2-verify-2.4.9-5.fc43.x86_64` -- [ ] `flac-libs-1.5.0-5.fc43.x86_64` -- [ ] `libsndfile-1.2.2-10.fc43.x86_64` -- [ ] `libXv-1.0.13-3.fc43.x86_64` -- [ ] `xcb-util-0.4.1-8.fc43.x86_64` -- [ ] `startup-notification-0.12-32.fc43.x86_64` -- [ ] `openal-soft-1.24.2-4.fc43.x86_64` -- [ ] `libnftnl-1.2.9-2.fc43.x86_64` -- [ ] `fftw-libs-double-3.3.10-16.fc43.x86_64` -- [ ] `soxr-0.1.3-20.fc43.x86_64` -- [ ] `woff2-1.0.2-23.fc43.x86_64` -- [ ] `libbpf-1.6.1-3.fc43.x86_64` -- [ ] `libsss_idmap-2.12.0-1.fc43.x86_64` -- [ ] `keyutils-1.6.3-6.fc43.x86_64` -- [ ] `exempi-2.6.4-8.fc43.x86_64` -- [ ] `unzip-6.0-67.fc43.x86_64` -- [ ] `libtextstyle-0.25.1-2.fc43.x86_64` -- [ ] `gettext-libs-0.25.1-2.fc43.x86_64` -- [ ] `libyuv-0-0.57.20240704git96bbdb5.fc43.x86_64` -- [ ] `imath-3.1.12-4.fc43.x86_64` -- [ ] `libvmaf-3.0.0-4.fc43.x86_64` -- [ ] `libaom-3.13.1-1.fc43.x86_64` -- [ ] `libavif-1.3.0-2.fc43.x86_64` -- [ ] `simdutf-7.2.1-2.fc43.x86_64` -- [ ] `webrtc-audio-processing-1.3-9.fc43.x86_64` -- [ ] `less-679-2.fc43.x86_64` -- [ ] `anthy-unicode-1.0.0.20240502-11.fc43.x86_64` -- [ ] `cpio-2.15-6.fc43.x86_64` -- [ ] `dmidecode-3.6-7.fc43.x86_64` -- [ ] `dotconf-1.4.1-5.fc43.x86_64` -- [ ] `duktape-2.7.0-10.fc43.x86_64` -- [ ] `libproxy-0.5.12-1.fc43.x86_64` -- [ ] `efivar-libs-39-10.fc43.x86_64` -- [ ] `mokutil-0.7.2-2.fc43.x86_64` -- [ ] `giflib-5.2.2-8.fc43.x86_64` -- [ ] `gutenprint-libs-5.3.5-6.fc43.x86_64` -- [ ] `hyphen-2.8.8-27.fc43.x86_64` -- [ ] `libaio-0.3.111-22.fc43.x86_64` -- [ ] `libbasicobjects-0.1.1-59.fc43.x86_64` -- [ ] `libcbor-0.12.0-6.fc43.x86_64` -- [ ] `libcollection-0.7.0-59.fc43.x86_64` -- [ ] `libdhash-0.5.0-59.fc43.x86_64` -- [ ] `libdisplay-info-0.2.0-4.fc43.x86_64` -- [ ] `libei-1.5.0-1.fc43.x86_64` -- [ ] `libieee1284-0.2.11-47.fc43.x86_64` -- [ ] `libimagequant-4.0.3-8.fc43.x86_64` -- [ ] `libmspack-0.10.1-0.15.alpha.fc43.x86_64` -- [ ] `libpasswdqc-2.0.3-8.fc43.x86_64` -- [ ] `libpciaccess-0.16-16.fc43.x86_64` -- [ ] `libdrm-2.4.131-1.fc43.x86_64` -- [ ] `plymouth-graphics-libs-24.004.60-24.fc43.x86_64` -- [ ] `libsamplerate-0.2.2-11.fc43.x86_64` -- [ ] `libsbc-2.0-7.fc43.x86_64` -- [ ] `libstemmer-3.0.1-8.fc43.x86_64` -- [ ] `libtinysparql-3.10.1-5.fc43.x86_64` -- [ ] `opencore-amr-0.1.6-9.fc43.x86_64` -- [ ] `slang-2.3.3-8.fc43.x86_64` -- [ ] `twolame-libs-0.4.0-8.fc43.x86_64` -- [ ] `zix-0.6.2-2.fc43.x86_64` -- [ ] `sord-0.16.18-2.fc43.x86_64` -- [ ] `sratom-0.6.18-2.fc43.x86_64` -- [ ] `lilv-libs-0.24.26-7.fc43.x86_64` -- [ ] `rubberband-libs-4.0.0-4.fc43.x86_64` -- [ ] `pam_passwdqc-2.0.3-8.fc43.x86_64` -- [ ] `passwdqc-utils-2.0.3-8.fc43.x86_64` -- [ ] `libfido2-1.16.0-3.fc43.x86_64` -- [ ] `gutenprint-5.3.5-6.fc43.x86_64` -- [ ] `glib-networking-2.80.1-3.fc43.x86_64` -- [ ] `libsoup-2.74.3-9.fc43.x86_64` -- [ ] `xcb-util-image-0.4.1-8.fc43.x86_64` -- [ ] `libbs2b-3.1.0-36.fc43.x86_64` -- [ ] `opensc-libs-0.26.1-6.fc43.x86_64` -- [ ] `libblockdev-nvme-3.4.0-1.fc43.x86_64` -- [ ] `sssd-nfs-idmap-2.12.0-1.fc43.x86_64` -- [ ] `libshout-2.4.6-9.fc43.x86_64` -- [ ] `lttng-ust-2.14.0-4.fc43.x86_64` -- [ ] `libopenmpt-0.8.4-1.fc43.x86_64` -- [ ] `libnsl2-2.0.1-4.fc43.x86_64` -- [ ] `quota-4.10-2.fc43.x86_64` -- [ ] `tpm2-tss-fapi-4.1.3-8.fc43.x86_64` -- [ ] `osinfo-db-tools-1.12.0-4.fc43.x86_64` -- [ ] `libosinfo-1.12.0-4.fc43.x86_64` -- [ ] `cups-pk-helper-0.2.7-10.fc43.x86_64` -- [ ] `cyrus-sasl-gssapi-2.1.28-33.fc43.x86_64` -- [ ] `libssh-0.11.4-1.fc43.x86_64` -- [ ] `liblouisutdml-2.12.0-7.fc43.x86_64` -- [ ] `javascriptcoregtk4.1-2.50.5-1.fc43.x86_64` -- [ ] `inih-cpp-62-1.fc43.x86_64` -- [ ] `exiv2-libs-0.28.6-2.fc43.x86_64` -- [ ] `libgexiv2-0.14.6-2.fc43.x86_64` -- [ ] `libpskc-2.6.12-3.fc43.x86_64` -- [ ] `gnupg2-dirmngr-2.4.9-5.fc43.x86_64` -- [ ] `gnupg2-keyboxd-2.4.9-5.fc43.x86_64` -- [ ] `gnupg2-gpg-agent-2.4.9-5.fc43.x86_64` -- [ ] `gnupg2-2.4.9-5.fc43.x86_64` -- [ ] `gpgme-1.24.3-6.fc43.x86_64` -- [ ] `ostree-libs-2025.7-1.fc43.x86_64` -- [ ] `gpgmepp-1.24.3-6.fc43.x86_64` -- [ ] `libjcat-0.2.5-1.fc43.x86_64` -- [ ] `setxkbmap-1.3.4-6.fc43.x86_64` -- [ ] `xkbcomp-1.5.0-1.fc43.x86_64` -- [ ] `xmlsec1-openssl-1.2.41-3.fc43.x86_64` -- [ ] `libusbmuxd-2.1.0-4.fc43.x86_64` -- [ ] `libimobiledevice-1.3.0^20240916gited9703d-6.fc43.x86_64` -- [ ] `libuser-0.64-16.fc43.x86_64` -- [ ] `avahi-gobject-0.9~rc2-6.fc43.x86_64` -- [ ] `ima-evm-utils-libs-1.6.2-6.fc43.x86_64` -- [ ] `libblockdev-3.4.0-1.fc43.x86_64` -- [ ] `libblockdev-fs-3.4.0-1.fc43.x86_64` -- [ ] `libblockdev-loop-3.4.0-1.fc43.x86_64` -- [ ] `pciutils-3.14.0-2.fc43.x86_64` -- [ ] `python-pip-wheel-25.1.1-18.fc43.noarch` -- [ ] `audit-rules-4.1.3-1.fc43.x86_64` -- [ ] `mdadm-4.3-9.fc43.x86_64` -- [ ] `sound-theme-freedesktop-0.8-24.fc43.noarch` -- [ ] `urw-base35-bookman-fonts-20200910-26.fc43.noarch` -- [ ] `urw-base35-c059-fonts-20200910-26.fc43.noarch` -- [ ] `urw-base35-d050000l-fonts-20200910-26.fc43.noarch` -- [ ] `urw-base35-gothic-fonts-20200910-26.fc43.noarch` -- [ ] `urw-base35-nimbus-mono-ps-fonts-20200910-26.fc43.noarch` -- [ ] `urw-base35-nimbus-roman-fonts-20200910-26.fc43.noarch` -- [ ] `urw-base35-nimbus-sans-fonts-20200910-26.fc43.noarch` -- [ ] `urw-base35-p052-fonts-20200910-26.fc43.noarch` -- [ ] `urw-base35-standard-symbols-ps-fonts-20200910-26.fc43.noarch` -- [ ] `urw-base35-z003-fonts-20200910-26.fc43.noarch` -- [ ] `urw-base35-fonts-20200910-26.fc43.noarch` -- [ ] `hiredis-1.2.0-7.fc43.x86_64` -- [ ] `httpd-tools-2.4.66-1.fc43.x86_64` -- [ ] `libfprint-1.94.10-1.fc43.x86_64` -- [ ] `fprintd-1.94.5-2.fc43.x86_64` -- [ ] `libfsverity-1.6-3.fc43.x86_64` -- [ ] `librabbitmq-0.15.0-3.fc43.x86_64` -- [ ] `libsrtp-2.6.0-3.fc43.x86_64` -- [ ] `libsss_certmap-2.12.0-1.fc43.x86_64` -- [ ] `libzip-1.11.4-2.fc43.x86_64` -- [ ] `ngtcp2-crypto-ossl-1.19.0-1.fc43.x86_64` -- [ ] `pkcs11-helper-1.30.0-4.fc43.x86_64` -- [ ] `rpm-sequoia-1.10.0-1.fc43.x86_64` -- [ ] `rpm-libs-6.0.1-1.fc43.x86_64` -- [ ] `libmodulemd-2.15.2-4.fc43.x86_64` -- [ ] `librepo-1.20.0-4.fc43.x86_64` -- [ ] `libsolv-0.7.35-3.fc43.x86_64` -- [ ] `libdnf5-5.2.18.0-1.fc43.x86_64` -- [ ] `libdnf5-cli-5.2.18.0-1.fc43.x86_64` -- [ ] `rpm-ostree-libs-2025.12-1.fc43.x86_64` -- [ ] `dnf5-5.2.18.0-1.fc43.x86_64` -- [ ] `rpm-6.0.1-1.fc43.x86_64` -- [ ] `color-filesystem-1-36.fc43.noarch` -- [ ] `rpm-sign-libs-6.0.1-1.fc43.x86_64` -- [ ] `libqmi-utils-1.36.0-2.fc43.x86_64` -- [ ] `xhost-1.0.9-10.fc43.x86_64` -- [ ] `xorg-x11-xauth-1.1.4-2.fc43.x86_64` -- [ ] `xrdb-1.2.2-6.fc43.x86_64` -- [ ] `mesa-libGLU-9.0.3-7.fc43.x86_64` -- [ ] `ngtcp2-crypto-gnutls-1.19.0-1.fc43.x86_64` -- [ ] `apr-util-lmdb-1.6.3-25.fc43.x86_64` -- [ ] `libavc1394-0.5.4-26.fc43.x86_64` -- [ ] `libdc1394-2.2.7-8.fc43.x86_64` -- [ ] `libiec61883-1.2.0-38.fc43.x86_64` -- [ ] `hidapi-0.15.0-2.fc43.x86_64` -- [ ] `libmanette-0.2.13-1.fc43.x86_64` -- [ ] `libjaylink-0.3.0-9.fc43.x86_64` -- [ ] `libmtp-1.1.22-2.fc43.x86_64` -- [ ] `conmon-2.1.13-2.fc43.x86_64` -- [ ] `dbus-broker-37-2.fc43.x86_64` -- [ ] `dbus-1.16.0-4.fc43.x86_64` -- [ ] `ibus-libs-1.5.33-5.fc43.x86_64` -- [ ] `dconf-0.49.0-1.fc43.x86_64` -- [ ] `xdg-dbus-proxy-0.1.6-3.fc43.x86_64` -- [ ] `flatpak-libs-1.16.3-1.fc43.x86_64` -- [ ] `gupnp-1.6.9-2.fc43.x86_64` -- [ ] `gupnp-igd-1.6.0-7.fc43.x86_64` -- [ ] `libnice-0.1.22-8.fc43.x86_64` -- [ ] `PackageKit-glib-1.3.3-14.fc43.x86_64` -- [ ] `device-mapper-persistent-data-1.1.0-4.fc43.x86_64` -- [ ] `libatasmart-0.19-31.fc43.x86_64` -- [ ] `libblockdev-smart-3.4.0-1.fc43.x86_64` -- [ ] `liboeffis-1.5.0-1.fc43.x86_64` -- [ ] `libvncserver-0.9.15-4.fc43.x86_64` -- [ ] `procps-ng-4.0.4-7.fc43.1.x86_64` -- [ ] `kbd-2.8.0-3.fc43.x86_64` -- [ ] `nano-8.5-2.fc43.x86_64` -- [ ] `nano-default-editor-8.5-2.fc43.noarch` -- [ ] `m17n-db-1.8.10-2.fc43.noarch` -- [ ] `libbytesize-2.12-1.fc43.x86_64` -- [ ] `libblockdev-mdraid-3.4.0-1.fc43.x86_64` -- [ ] `libmpc-1.3.1-8.fc43.x86_64` -- [ ] `libmbim-utils-1.32.0-2.fc43.x86_64` -- [ ] `pinentry-1.3.2-1.fc43.x86_64` -- [ ] `gupnp-av-0.14.4-2.fc43.x86_64` -- [ ] `libgee-0.20.8-2.fc43.x86_64` -- [ ] `liblqr-1-0.4.2-28.fc43.x86_64` -- [ ] `libslirp-4.9.1-2.fc43.x86_64` -- [ ] `qpdf-libs-12.3.2-1.fc43.x86_64` -- [ ] `srt-libs-1.5.4-4.fc43.x86_64` -- [ ] `kyotocabinet-libs-1.2.80-8.fc43.x86_64` -- [ ] `libpinyin-2.10.2-2.fc43.x86_64` -- [ ] `libpinyin-data-2.10.2-2.fc43.x86_64` -- [ ] `acl-2.3.2-4.fc43.x86_64` -- [ ] `grub2-pc-modules-2.12-40.fc43.noarch` -- [ ] `gdbm-1.23-10.fc43.x86_64` -- [ ] `pam-1.7.1-4.fc43.x86_64` -- [ ] `sudo-1.9.17-6.p2.fc43.x86_64` -- [ ] `zstd-1.5.7-2.fc43.x86_64` -- [ ] `libXres-1.2.2-6.fc43.x86_64` -- [ ] `libXxf86vm-1.1.6-3.fc43.x86_64` -- [ ] `libvdpau-1.5-10.fc43.x86_64` -- [ ] `libXpm-3.5.17-6.fc43.x86_64` -- [ ] `xmodmap-1.0.11-9.fc43.x86_64` -- [ ] `xorg-x11-xinit-1.4.3-3.fc43.x86_64` -- [ ] `xprop-1.2.8-4.fc43.x86_64` -- [ ] `libxkbcommon-x11-1.11.0-1.fc43.x86_64` -- [ ] `xcb-util-keysyms-0.4.1-8.fc43.x86_64` -- [ ] `xcb-util-renderutil-0.3.10-8.fc43.x86_64` -- [ ] `xcb-util-wm-0.4.2-8.fc43.x86_64` -- [ ] `nss-softokn-freebl-3.119.1-1.fc43.x86_64` -- [ ] `nss-softokn-3.119.1-1.fc43.x86_64` -- [ ] `nss-3.119.1-1.fc43.x86_64` -- [ ] `nss-sysinit-3.119.1-1.fc43.x86_64` -- [ ] `iw-6.17-1.fc43.x86_64` -- [ ] `libibverbs-58.0-4.fc43.x86_64` -- [ ] `libpcap-1.10.6-1.fc43.x86_64` -- [ ] `ethtool-6.15-3.fc43.x86_64` -- [ ] `ipset-libs-7.24-2.fc43.x86_64` -- [ ] `fftw-libs-single-3.3.10-16.fc43.x86_64` -- [ ] `vid.stab-1.1.1-7.fc43.x86_64` -- [ ] `stoken-libs-0.92-14.fc43.x86_64` -- [ ] `graphviz-libs-13.1.2-3.fc43.x86_64` -- [ ] `groff-base-1.23.0-11.fc43.x86_64` -- [ ] `xz-5.8.1-4.fc43.x86_64` -- [ ] `libss-1.47.3-2.fc43.x86_64` -- [ ] `alsa-ucm-1.2.15.3-1.fc43.noarch` -- [ ] `mozjs140-140.2.0-1.fc43.x86_64` -- [ ] `aribb24-1.0.3^20160216git5e9be27-3.fc43.x86_64` -- [ ] `zvbi-0.2.44-2.fc43.x86_64` -- [ ] `libchewing-0.10.3-2.fc43.x86_64` -- [ ] `liblastlog2-2.41.3-7.fc43.x86_64` -- [ ] `util-linux-2.41.3-7.fc43.x86_64` -- [ ] `systemd-258.4-1.fc43.x86_64` -- [ ] `systemd-pam-258.4-1.fc43.x86_64` -- [ ] `polkit-126-6.fc43.x86_64` -- [ ] `bluez-5.86-2.fc43.x86_64` -- [ ] `fwupd-2.0.19-1.fc43.x86_64` -- [ ] `samba-common-4.23.5-1.fc43.noarch` -- [ ] `samba-client-libs-4.23.5-1.fc43.x86_64` -- [ ] `libwbclient-4.23.5-1.fc43.x86_64` -- [ ] `samba-common-libs-4.23.5-1.fc43.x86_64` -- [ ] `libsmbclient-4.23.5-1.fc43.x86_64` -- [ ] `accountsservice-23.13.9-9.fc43.x86_64` -- [ ] `accountsservice-libs-23.13.9-9.fc43.x86_64` -- [ ] `colord-1.4.8-2.fc43.x86_64` -- [ ] `malcontent-0.13.0-3.fc43.x86_64` -- [ ] `device-mapper-1.02.208-2.fc43.x86_64` -- [ ] `device-mapper-libs-1.02.208-2.fc43.x86_64` -- [ ] `cryptsetup-libs-2.8.4-1.fc43.x86_64` -- [ ] `device-mapper-event-libs-1.02.208-2.fc43.x86_64` -- [ ] `flatpak-session-helper-1.16.3-1.fc43.x86_64` -- [ ] `brlapi-0.8.7-4.fc43.x86_64` -- [ ] `openssh-10.0p1-6.fc43.x86_64` -- [ ] `openssh-clients-10.0p1-6.fc43.x86_64` -- [ ] `git-core-2.53.0-1.fc43.x86_64` -- [ ] `device-mapper-event-1.02.208-2.fc43.x86_64` -- [ ] `lvm2-libs-2.03.34-2.fc43.x86_64` -- [ ] `volume_key-libs-0.3.12-28.fc43.x86_64` -- [ ] `libblockdev-crypto-3.4.0-1.fc43.x86_64` -- [ ] `cifs-utils-7.2-2.fc43.x86_64` -- [ ] `bluez-obexd-5.86-2.fc43.x86_64` -- [ ] `ModemManager-1.24.2-1.fc43.x86_64` -- [ ] `rtkit-0.11-69.fc43.x86_64` -- [ ] `hypervfcopyd-6.10-2.fc43.x86_64` -- [ ] `hypervkvpd-6.10-2.fc43.x86_64` -- [ ] `hypervvssd-6.10-2.fc43.x86_64` -- [ ] `iio-sensor-proxy-3.8-1.fc43.x86_64` -- [ ] `iputils-20250605-1.fc43.x86_64` -- [ ] `libftdi-1.5-21.fc43.x86_64` -- [ ] `libkcapi-1.5.0-6.fc43.x86_64` -- [ ] `libkcapi-hasher-1.5.0-6.fc43.x86_64` -- [ ] `libkcapi-hmaccalc-1.5.0-6.fc43.x86_64` -- [ ] `lockdev-1.0.4-0.53.20111007git.fc43.x86_64` -- [ ] `openvpn-2.6.19-1.fc43.x86_64` -- [ ] `rpcbind-1.2.8-0.fc43.x86_64` -- [ ] `wpa_supplicant-2.11-7.fc43.x86_64` -- [ ] `libblockdev-part-3.4.0-1.fc43.x86_64` -- [ ] `libblockdev-swap-3.4.0-1.fc43.x86_64` -- [ ] `usermode-1.114-13.fc43.x86_64` -- [ ] `virt-what-1.27-4.fc43.x86_64` -- [ ] `djvulibre-libs-3.5.28-14.fc43.x86_64` -- [ ] `jasper-libs-4.2.8-1.fc43.x86_64` -- [ ] `LibRaw-0.21.5-1.fc43.x86_64` -- [ ] `game-music-emu-0.6.4-2.fc43.x86_64` -- [ ] `libfontenc-1.1.8-4.fc43.x86_64` -- [ ] `libmysofa-1.3.3-3.fc43.x86_64` -- [ ] `protobuf-3.19.6-18.fc43.x86_64` -- [ ] `taglib-1.13.1-6.fc43.x86_64` -- [ ] `abseil-cpp-20250814.1-1.fc43.x86_64` -- [ ] `double-conversion-3.4.0-1.fc43.x86_64` -- [ ] `graphite2-1.3.14-19.fc43.x86_64` -- [ ] `harfbuzz-11.5.1-2.fc43.x86_64` -- [ ] `freetype-2.13.3-3.fc43.x86_64` -- [ ] `fontconfig-2.17.0-3.fc43.x86_64` -- [ ] `cairo-1.18.4-2.fc43.x86_64` -- [ ] `cairo-gobject-1.18.4-2.fc43.x86_64` -- [ ] `cairomm-1.14.5-12.fc43.x86_64` -- [ ] `cairomm1.16-1.18.0-12.fc43.x86_64` -- [ ] `libraqm-0.10.1-3.fc43.x86_64` -- [ ] `harfbuzz-icu-11.5.1-2.fc43.x86_64` -- [ ] `gjs-1.86.0-1.fc43.x86_64` -- [ ] `libXft-2.3.8-9.fc43.x86_64` -- [ ] `libaribcaption-1.1.1-3.fc43.x86_64` -- [ ] `libXfont2-2.0.7-3.fc43.x86_64` -- [ ] `highway-1.3.0-1.fc43.x86_64` -- [ ] `libjxl-0.11.1-7.fc43.x86_64` -- [ ] `hunspell-1.7.2-10.fc43.x86_64` -- [ ] `enchant2-2.8.14-1.fc43.x86_64` -- [ ] `ilbc-3.0.4-17.fc43.x86_64` -- [ ] `liblerc-4.0.0-9.fc43.x86_64` -- [ ] `libtiff-4.7.1-1.fc43.x86_64` -- [ ] `poppler-25.07.0-3.fc43.x86_64` -- [ ] `poppler-utils-25.07.0-3.fc43.x86_64` -- [ ] `poppler-glib-25.07.0-3.fc43.x86_64` -- [ ] `poppler-cpp-25.07.0-3.fc43.x86_64` -- [ ] `gd-2.3.3-19.fc43.x86_64` -- [ ] `libgphoto2-2.5.33-1.fc43.x86_64` -- [ ] `leptonica-1.87.0-1.fc43.x86_64` -- [ ] `tesseract-libs-5.5.2-1.fc43.x86_64` -- [ ] `libgxps-0.3.2-11.fc43.x86_64` -- [ ] `libsane-airscan-0.99.36-1.fc43.x86_64` -- [ ] `sane-airscan-0.99.36-1.fc43.x86_64` -- [ ] `libmodplug-0.8.9.0-28.fc43.x86_64` -- [ ] `libopenjph-0.22.0-2.fc43.x86_64` -- [ ] `snappy-1.2.2-2.fc43.x86_64` -- [ ] `soundtouch-2.4.0-2.fc43.x86_64` -- [ ] `uchardet-0.0.8-8.fc43.x86_64` -- [ ] `totem-pl-parser-3.26.6-13.fc43.x86_64` -- [ ] `zimg-3.0.6-2.fc43.x86_64` -- [ ] `psmisc-23.7-6.fc43.x86_64` -- [ ] `iproute-6.14.0-2.fc43.x86_64` -- [ ] `vpnc-script-20230907-6.git5b9e7e4c.fc43.noarch` -- [ ] `vpnc-0.5.3^20241114.git11e15a1-3.fc43.x86_64` -- [ ] `open-vm-tools-13.0.10-2.fc43.x86_64` -- [ ] `aardvark-dns-1.17.0-1.fc43.x86_64` -- [ ] `antiword-0.37-42.fc43.x86_64` -- [ ] `liblouisutdml-utils-2.12.0-7.fc43.x86_64` -- [ ] `boost-system-1.83.0-17.fc43.x86_64` -- [ ] `boost-thread-1.83.0-17.fc43.x86_64` -- [ ] `libphonenumber-8.13.55-6.fc43.x86_64` -- [ ] `c-ares-1.34.5-2.fc43.x86_64` -- [ ] `capstone-5.0.5-7.fc43.x86_64` -- [ ] `cdparanoia-libs-10.2-48.fc43.x86_64` -- [ ] `checkpolicy-3.9-2.fc43.x86_64` -- [ ] `cjson-1.7.18-3.fc43.x86_64` -- [ ] `diffutils-3.12-3.fc43.x86_64` -- [ ] `policycoreutils-3.9-7.fc43.x86_64` -- [ ] `selinux-policy-42.23-1.fc43.noarch` -- [ ] `selinux-policy-targeted-42.23-1.fc43.noarch` -- [ ] `container-selinux-2.245.0-1.fc43.noarch` -- [ ] `passt-selinux-0^20260120.g386b5f5-1.fc43.noarch` -- [ ] `passt-0^20260120.g386b5f5-1.fc43.x86_64` -- [ ] `faad2-libs-2.11.2-5.fc43.x86_64` -- [ ] `fstrm-0.6.1-13.fc43.x86_64` -- [ ] `gettext-envsubst-0.25.1-2.fc43.x86_64` -- [ ] `gettext-runtime-0.25.1-2.fc43.x86_64` -- [ ] `grub2-tools-minimal-2.12-40.fc43.x86_64` -- [ ] `gettext-0.25.1-2.fc43.x86_64` -- [ ] `hdparm-9.65-9.fc43.x86_64` -- [ ] `ipcalc-1.0.3-12.fc43.x86_64` -- [ ] `jbig2dec-libs-0.20-7.fc43.x86_64` -- [ ] `kernel-tools-libs-6.18.9-200.fc43.x86_64` -- [ ] `libXdmcp-1.1.5-4.fc43.x86_64` -- [ ] `liba52-0.7.4-51.fc43.x86_64` -- [ ] `libasyncns-0.8-31.fc43.x86_64` -- [ ] `pulseaudio-libs-17.0-9.fc43.x86_64` -- [ ] `flite-2.2-12.fc43.x86_64` -- [ ] `pulseaudio-libs-glib2-17.0-9.fc43.x86_64` -- [ ] `libao-1.2.0-30.fc43.x86_64` -- [ ] `pcaudiolib-1.1-18.fc43.x86_64` -- [ ] `espeak-ng-1.51.1-12.fc43.x86_64` -- [ ] `speech-dispatcher-0.12.1-5.fc43.x86_64` -- [ ] `speech-dispatcher-espeak-ng-0.12.1-5.fc43.x86_64` -- [ ] `pulseaudio-utils-17.0-9.fc43.x86_64` -- [ ] `libcue-2.3.0-12.fc43.x86_64` -- [ ] `libdaemon-0.14-32.fc43.x86_64` -- [ ] `avahi-0.9~rc2-6.fc43.x86_64` -- [ ] `cups-ipptool-2.4.16-4.fc43.x86_64` -- [ ] `libdatrie-0.2.13-12.fc43.x86_64` -- [ ] `libthai-0.1.29-11.fc43.x86_64` -- [ ] `pango-1.57.0-1.fc43.x86_64` -- [ ] `librsvg2-2.61.0-5.fc43.x86_64` -- [ ] `glycin-loaders-2.0.5-4.fc43.x86_64` -- [ ] `glycin-libs-2.0.5-4.fc43.x86_64` -- [ ] `gdk-pixbuf2-2.44.4-1.fc43.x86_64` -- [ ] `libnotify-0.8.8-1.fc43.x86_64` -- [ ] `geoclue2-2.8.0-1.fc43.x86_64` -- [ ] `gtk-update-icon-cache-3.24.51-2.fc43.x86_64` -- [ ] `m17n-lib-1.8.6-2.fc43.x86_64` -- [ ] `f43-backgrounds-base-43.0.4-1.fc43.noarch` -- [ ] `f43-backgrounds-gnome-43.0.4-1.fc43.noarch` -- [ ] `libgsf-1.14.55-1.fc43.x86_64` -- [ ] `libmediaart-1.9.7-2.fc43.x86_64` -- [ ] `pangomm-2.46.4-4.fc43.x86_64` -- [ ] `pangomm2.48-2.56.1-2.fc43.x86_64` -- [ ] `libdeflate-1.25-2.fc43.x86_64` -- [ ] `openexr-libs-3.2.4-6.fc43.x86_64` -- [ ] `libdovi-3.3.2-1.fc43.x86_64` -- [ ] `libplacebo-7.351.0-3.fc43.x86_64` -- [ ] `libebur128-1.2.6-14.fc43.x86_64` -- [ ] `libeis-1.5.0-1.fc43.x86_64` -- [ ] `libev-4.33-14.fc43.x86_64` -- [ ] `libverto-libev-0.3.2-11.fc43.x86_64` -- [ ] `libfyaml-0.8-8.fc43.x86_64` -- [ ] `appstream-1.1.0-1.fc43.x86_64` -- [ ] `libhangul-0.2.0-2.fc43.x86_64` -- [ ] `libijs-0.35-25.fc43.x86_64` -- [ ] `libiptcdata-1.0.5-23.fc43.x86_64` -- [ ] `libldac-2.0.2.3-18.fc43.x86_64` -- [ ] `pipewire-libs-1.4.10-1.fc43.x86_64` -- [ ] `pipewire-jack-audio-connection-kit-libs-1.4.10-1.fc43.x86_64` -- [ ] `pipewire-jack-audio-connection-kit-1.4.10-1.fc43.x86_64` -- [ ] `portaudio-19.7.0-2.fc43.x86_64` -- [ ] `pipewire-pulseaudio-1.4.10-1.fc43.x86_64` -- [ ] `wireplumber-libs-0.5.13-1.fc43.x86_64` -- [ ] `wireplumber-0.5.13-1.fc43.x86_64` -- [ ] `pipewire-1.4.10-1.fc43.x86_64` -- [ ] `libmaxminddb-1.12.2-4.fc43.x86_64` -- [ ] `libmd-1.1.0-8.fc43.x86_64` -- [ ] `libbsd-0.12.2-6.fc43.x86_64` -- [ ] `libmpeg2-0.5.1-32.fc43.x86_64` -- [ ] `libndp-1.9-4.fc43.x86_64` -- [ ] `libnet-1.3-6.fc43.x86_64` -- [ ] `libnfnetlink-1.0.1-31.fc43.x86_64` -- [ ] `libnetfilter_conntrack-1.1.1-1.fc43.x86_64` -- [ ] `iptables-libs-1.8.11-12.fc43.x86_64` -- [ ] `nftables-services-1.1.3-6.fc43.noarch` -- [ ] `nftables-1.1.3-6.fc43.x86_64` -- [ ] `criu-4.2-11.fc43.x86_64` -- [ ] `netavark-1.17.2-1.fc43.x86_64` -- [ ] `iptables-nft-1.8.11-12.fc43.x86_64` -- [ ] `libpaper-2.1.1-9.fc43.x86_64` -- [ ] `libpath_utils-0.2.1-59.fc43.x86_64` -- [ ] `libini_config-1.3.1-59.fc43.x86_64` -- [ ] `gssproxy-0.9.2-9.fc43.x86_64` -- [ ] `libpfm-4.13.0-16.fc43.x86_64` -- [ ] `libpipeline-1.5.8-3.fc43.x86_64` -- [ ] `libpkgconf-2.3.0-3.fc43.x86_64` -- [ ] `pkgconf-2.3.0-3.fc43.x86_64` -- [ ] `pkgconf-pkg-config-2.3.0-3.fc43.x86_64` -- [ ] `kmod-34.2-2.fc43.x86_64` -- [ ] `systemd-udev-258.4-1.fc43.x86_64` -- [ ] `NetworkManager-1.54.3-2.fc43.x86_64` -- [ ] `dracut-107-8.fc43.x86_64` -- [ ] `sane-backends-1.4.0-4.fc43.x86_64` -- [ ] `ostree-2025.7-1.fc43.x86_64` -- [ ] `plymouth-scripts-24.004.60-24.fc43.x86_64` -- [ ] `plymouth-24.004.60-24.fc43.x86_64` -- [ ] `udisks2-2.11.0-1.fc43.x86_64` -- [ ] `upower-1.91.1-2.fc43.x86_64` -- [ ] `plymouth-plugin-label-24.004.60-24.fc43.x86_64` -- [ ] `plymouth-plugin-two-step-24.004.60-24.fc43.x86_64` -- [ ] `plymouth-theme-spinner-24.004.60-24.fc43.x86_64` -- [ ] `NetworkManager-openvpn-1.12.5-2.fc43.x86_64` -- [ ] `NetworkManager-vpnc-1.4.0-4.fc43.x86_64` -- [ ] `NetworkManager-wwan-1.54.3-2.fc43.x86_64` -- [ ] `flashrom-1.4.0-3.fc43.x86_64` -- [ ] `os-prober-1.81-10.fc43.x86_64` -- [ ] `grub2-tools-2.12-40.fc43.x86_64` -- [ ] `grub2-efi-ia32-2.12-40.fc43.x86_64` -- [ ] `grub2-efi-x64-2.12-40.fc43.x86_64` -- [ ] `usbmuxd-1.1.1^20240915git0b1b233-6.fc43.x86_64` -- [ ] `wireless-regdb-2025.10.07-1.fc43.noarch` -- [ ] `fuse-overlayfs-1.13-4.fc43.x86_64` -- [ ] `containers-common-0.64.2-1.fc43.noarch` -- [ ] `skopeo-1.21.0-1.fc43.x86_64` -- [ ] `libsodium-1.0.21-2.fc43.x86_64` -- [ ] `libsss_nss_idmap-2.12.0-1.fc43.x86_64` -- [ ] `sssd-client-2.12.0-1.fc43.x86_64` -- [ ] `libsss_sudo-2.12.0-1.fc43.x86_64` -- [ ] `sssd-common-2.12.0-1.fc43.x86_64` -- [ ] `sssd-krb5-common-2.12.0-1.fc43.x86_64` -- [ ] `libtommath-1.3.1~rc1-6.fc43.x86_64` -- [ ] `tcl-9.0.2-1.fc43.x86_64` -- [ ] `usb_modeswitch-data-20191128-14.fc43.noarch` -- [ ] `usb_modeswitch-2.6.2-4.fc43.x86_64` -- [ ] `libtraceevent-1.8.4-4.fc43.x86_64` -- [ ] `libudfread-1.1.2-12.fc43.x86_64` -- [ ] `libbluray-1.3.4-11.fc43.x86_64` -- [ ] `libunibreak-6.1-4.fc43.x86_64` -- [ ] `libass-0.17.3-4.fc43.x86_64` -- [ ] `liburing-2.9-2.fc43.x86_64` -- [ ] `libuv-1.51.0-2.fc43.x86_64` -- [ ] `bind-libs-9.18.44-1.fc43.x86_64` -- [ ] `libvisual-0.4.2-3.fc43.x86_64` -- [ ] `libwmf-lite-0.2.13-8.fc43.x86_64` -- [ ] `libxcvt-0.1.2-10.fc43.x86_64` -- [ ] `linux-atm-libs-2.5.1-45.fc43.x86_64` -- [ ] `ppp-2.5.1-6.fc43.x86_64` -- [ ] `lm_sensors-libs-3.6.0-23.fc43.x86_64` -- [ ] `libglvnd-egl-1.7.0-8.fc43.x86_64` -- [ ] `libglvnd-gles-1.7.0-8.fc43.x86_64` -- [ ] `libglvnd-glx-1.7.0-8.fc43.x86_64` -- [ ] `libchromaprint-1.6.0-1.fc43.x86_64` -- [ ] `freeglut-3.8.0-1.fc43.x86_64` -- [ ] `libcaca-0.99-0.80.beta20.fc43.x86_64` -- [ ] `glx-utils-9.0.0-10.fc43.x86_64` -- [ ] `lpcnetfreedv-0.5-9.fc43.x86_64` -- [ ] `codec2-1.2.0-7.fc43.x86_64` -- [ ] `mbedtls-3.6.5-1.fc43.x86_64` -- [ ] `librist-0.2.7-10.fc43.x86_64` -- [ ] `mpdecimal-4.0.1-2.fc43.x86_64` -- [ ] `python3-libs-3.14.2-1.fc43.x86_64` -- [ ] `python3-3.14.2-1.fc43.x86_64` -- [ ] `python3-gobject-base-3.54.5-4.fc43.x86_64` -- [ ] `python3-dbus-1.4.0-7.fc43.x86_64` -- [ ] `python3-idna-3.10-6.fc43.noarch` -- [ ] `python3-urllib3-2.6.3-1.fc43.noarch` -- [ ] `at-spi2-core-2.58.3-1.fc43.x86_64` -- [ ] `atk-2.58.3-1.fc43.x86_64` -- [ ] `libwacom-2.18.0-1.fc43.x86_64` -- [ ] `at-spi2-atk-2.58.3-1.fc43.x86_64` -- [ ] `atkmm-2.28.4-4.fc43.x86_64` -- [ ] `hplip-libs-3.25.8-1.fc43.x86_64` -- [ ] `openconnect-9.12-9.fc43.x86_64` -- [ ] `pcsc-lite-2.3.3-2.fc43.x86_64` -- [ ] `pcsc-lite-ccid-1.7.0-2.fc43.x86_64` -- [ ] `python3-attrs-25.4.0-1.fc43.noarch` -- [ ] `python3-cairo-1.28.0-4.fc43.x86_64` -- [ ] `python3-gobject-3.54.5-4.fc43.x86_64` -- [ ] `python3-certifi-2025.07.09-3.fc43.noarch` -- [ ] `python3-charset-normalizer-3.4.3-3.fc43.noarch` -- [ ] `python3-distro-1.9.0-10.fc43.noarch` -- [ ] `python3-jmespath-1.0.1-13.fc43.noarch` -- [ ] `python3-libselinux-3.9-5.fc43.x86_64` -- [ ] `python3-pyyaml-6.0.2-7.fc43.x86_64` -- [ ] `python3-rpds-py-0.27.0-2.fc43.x86_64` -- [ ] `python3-referencing-0.36.2-5.fc43.noarch` -- [ ] `python3-six-1.17.0-7.fc43.noarch` -- [ ] `python3-speechd-0.12.1-5.fc43.x86_64` -- [ ] `python3-dateutil-2.9.0.post0-6.fc43.noarch` -- [ ] `python3-botocore-1.42.47-1.fc43.noarch` -- [ ] `python3-s3transfer-0.16.0-1.fc43.noarch` -- [ ] `python3-linux-procfs-0.7.3-11.fc43.noarch` -- [ ] `python3-jsonschema-specifications-2024.10.1-6.fc43.noarch` -- [ ] `python3-jsonschema-4.23.0-6.fc43.noarch` -- [ ] `python3-libsemanage-3.9-4.fc43.x86_64` -- [ ] `python3-pyatspi-2.58.1-1.fc43.noarch` -- [ ] `NetworkManager-openconnect-1.2.10-9.fc43.x86_64` -- [ ] `python3-anyio-4.12.1-1.fc43.noarch` -- [ ] `python3-dasbus-1.7-13.fc43.noarch` -- [ ] `python3-argcomplete-3.6.3-2.fc43.noarch` -- [ ] `python3-audit-4.1.3-1.fc43.x86_64` -- [ ] `python3-brlapi-0.8.7-4.fc43.x86_64` -- [ ] `python3-click-8.1.7-11.fc43.noarch` -- [ ] `python3-cups-2.0.4-7.fc43.x86_64` -- [ ] `python3-enchant-3.2.2-23.fc43.noarch` -- [ ] `python3-h11-0.16.0-5.fc43.noarch` -- [ ] `python3-httpcore-1.0.9-5.fc43.noarch` -- [ ] `python3-inotify-0.9.6-42.fc43.noarch` -- [ ] `python3-louis-3.33.0-6.fc43.noarch` -- [ ] `python3-nftables-1.1.3-6.fc43.noarch` -- [ ] `python3-firewall-2.3.2-1.fc43.noarch` -- [ ] `python3-olefile-0.47-12.fc43.noarch` -- [ ] `python3-pillow-11.3.0-6.fc43.x86_64` -- [ ] `python3-packaging-25.0-7.fc43.noarch` -- [ ] `python3-pam-2.0.2-16.fc43.noarch` -- [ ] `python3-ptyprocess-0.7.0-14.fc43.noarch` -- [ ] `python3-pexpect-4.9.0-14.fc43.noarch` -- [ ] `python3-pysocks-1.7.1-31.fc43.noarch` -- [ ] `python3-pyudev-0.24.3-12.fc43.noarch` -- [ ] `tuned-2.27.0-0.1.rc1.fc43.noarch` -- [ ] `python3-pyxdg-0.28-1.fc43.noarch` -- [ ] `python3-rapidfuzz-3.12.2-5.fc43.x86_64` -- [ ] `python3-setools-4.6.0-4.fc43.x86_64` -- [ ] `python3-policycoreutils-3.9-7.fc43.noarch` -- [ ] `policycoreutils-python-utils-3.9-7.fc43.noarch` -- [ ] `NetworkManager-ssh-selinux-1.4.2-1.fc43.x86_64` -- [ ] `flatpak-selinux-1.16.3-1.fc43.noarch` -- [ ] `flatpak-1.16.3-1.fc43.x86_64` -- [ ] `switcheroo-control-3.0-1.fc43.x86_64` -- [ ] `usbutils-018-4.fc43.x86_64` -- [ ] `wsdd-0.8-5.fc43.noarch` -- [ ] `gvfs-1.58.1-1.fc43.x86_64` -- [ ] `mtdev-1.1.6-11.fc43.x86_64` -- [ ] `libinput-1.30.1-2.fc43.x86_64` -- [ ] `oniguruma-6.9.10-3.fc43.x86_64` -- [ ] `openpgm-5.3.128-5.fc43.x86_64` -- [ ] `zeromq-4.3.5-22.fc43.x86_64` -- [ ] `pcre2-utf16-10.47-1.fc43.x86_64` -- [ ] `qt5-qtbase-5.15.18-1.fc43.x86_64` -- [ ] `qt5-qtbase-common-5.15.18-1.fc43.noarch` -- [ ] `qt5-qtbase-gui-5.15.18-1.fc43.x86_64` -- [ ] `qt5-qtdeclarative-5.15.18-1.fc43.x86_64` -- [ ] `qt5-qtwayland-5.15.18-1.fc43.x86_64` -- [ ] `qt5-qtsvg-5.15.18-1.fc43.x86_64` -- [ ] `qt5-qtx11extras-5.15.18-1.fc43.x86_64` -- [ ] `pcre2-utf32-10.47-1.fc43.x86_64` -- [ ] `qemu-user-static-aarch64-10.1.3-1.fc43.x86_64` -- [ ] `qrencode-libs-4.1.1-11.fc43.x86_64` -- [ ] `sshpass-1.09-11.fc43.x86_64` -- [ ] `uriparser-1.0.0-1.fc43.x86_64` -- [ ] `libwinpr-3.22.0-1.fc43.x86_64` -- [ ] `freerdp-libs-3.22.0-1.fc43.x86_64` -- [ ] `userspace-rcu-0.15.3-2.fc43.x86_64` -- [ ] `vo-amrwbenc-0.1.3-23.fc43.x86_64` -- [ ] `vte-profile-0.82.3-1.fc43.x86_64` -- [ ] `wavpack-5.8.1-3.fc43.x86_64` -- [ ] `xdg-user-dirs-0.18-11.fc43.x86_64` -- [ ] `xvidcore-1.3.7-14.fc43.x86_64` -- [ ] `xxhash-libs-0.8.3-3.fc43.x86_64` -- [ ] `yajl-2.1.0-38.fc43.x86_64` -- [ ] `crun-1.25.1-1.fc43.x86_64` -- [ ] `containers-common-extra-0.64.2-1.fc43.noarch` -- [ ] `zram-generator-1.2.1-3.fc43.x86_64` -- [ ] `adwaita-icon-theme-legacy-46.2-4.fc43.noarch` -- [ ] `elfutils-default-yama-scope-0.194-1.fc43.noarch` -- [ ] `elfutils-libs-0.194-1.fc43.x86_64` -- [ ] `gstreamer1-1.26.10-1.fc43.x86_64` -- [ ] `gstreamer1-plugins-base-1.26.10-1.fc43.x86_64` -- [ ] `libcanberra-0.30-38.fc43.x86_64` -- [ ] `gsound-1.0.3-11.fc43.x86_64` -- [ ] `gstreamer1-plugins-bad-free-libs-1.26.10-1.fc43.x86_64` -- [ ] `gstreamer1-plugins-good-1.26.10-1.fc43.x86_64` -- [ ] `xdg-desktop-portal-1.20.3-2.fc43.x86_64` -- [ ] `libcamera-0.5.2-5.fc43.x86_64` -- [ ] `gst-editing-services-1.26.10-1.fc43.x86_64` -- [ ] `gupnp-dlna-0.12.0-11.fc43.x86_64` -- [ ] `localsearch-3.10.2-1.fc43.x86_64` -- [ ] `pipewire-gstreamer-1.4.10-1.fc43.x86_64` -- [ ] `elfutils-debuginfod-client-0.194-1.fc43.x86_64` -- [ ] `libbabeltrace-1.5.11-15.fc43.x86_64` -- [ ] `rpm-build-libs-6.0.1-1.fc43.x86_64` -- [ ] `httpd-filesystem-2.4.66-1.fc43.noarch` -- [ ] `httpd-core-2.4.66-1.fc43.x86_64` -- [ ] `mod_dnssd-0.6-35.fc43.x86_64` -- [ ] `fedora-logos-httpd-42.0.1-2.fc43.noarch` -- [ ] `httpd-2.4.66-1.fc43.x86_64` -- [ ] `emacs-filesystem-30.0-5.fc43.noarch` -- [ ] `desktop-file-utils-0.28-2.fc43.x86_64` -- [ ] `xdg-utils-1.2.1-4.fc43.noarch` -- [ ] `dns-root-data-2026260100-2.fc43.noarch` -- [ ] `unbound-libs-1.24.2-1.fc43.x86_64` -- [ ] `gnutls-dane-3.8.12-1.fc43.x86_64` -- [ ] `wget2-libs-2.2.1-1.fc43.x86_64` -- [ ] `wget2-2.2.1-1.fc43.x86_64` -- [ ] `distribution-gpg-keys-1.117-1.fc43.noarch` -- [ ] `dhcp-common-4.4.3-22.fc43.noarch` -- [ ] `catatonit-0.2.1-3.fc43.x86_64` -- [ ] `podman-5.7.1-1.fc43.x86_64` -- [ ] `bootc-1.12.1-1.fc43.x86_64` -- [ ] `rpm-ostree-2025.12-1.fc43.x86_64` -- [ ] `adwaita-cursor-theme-49.0-1.fc43.noarch` -- [ ] `adwaita-icon-theme-49.0-1.fc43.noarch` -- [ ] `gtk4-4.20.3-1.fc43.x86_64` -- [ ] `gtk3-3.24.51-2.fc43.x86_64` -- [ ] `libadwaita-1.8.4-1.fc43.x86_64` -- [ ] `gnome-online-accounts-libs-3.56.4-1.fc43.x86_64` -- [ ] `libnma-gtk4-1.10.6-10.fc43.x86_64` -- [ ] `webkitgtk6.0-2.50.5-1.fc43.x86_64` -- [ ] `libnma-1.10.6-10.fc43.x86_64` -- [ ] `tecla-49.0-1.fc43.x86_64` -- [ ] `libportal-gtk4-0.9.1-3.fc43.x86_64` -- [ ] `gnome-bluetooth-libs-47.1-3.fc43.x86_64` -- [ ] `gcr3-3.41.1-11.fc43.x86_64` -- [ ] `gnome-keyring-48.0-3.fc43.x86_64` -- [ ] `gnome-autoar-0.4.5-3.fc43.x86_64` -- [ ] `libcanberra-gtk3-0.30-38.fc43.x86_64` -- [ ] `libdecor-0.2.5-1.fc43.x86_64` -- [ ] `webkit2gtk4.1-2.50.5-1.fc43.x86_64` -- [ ] `evolution-data-server-3.58.3-1.fc43.x86_64` -- [ ] `evolution-data-server-langpacks-3.58.3-1.fc43.noarch` -- [ ] `gtksourceview5-5.18.0-3.fc43.x86_64` -- [ ] `libspelling-0.4.9-1.fc43.x86_64` -- [ ] `papers-libs-49.3-1.fc43.x86_64` -- [ ] `evolution-ews-core-3.58.3-1.fc43.x86_64` -- [ ] `evolution-ews-langpacks-3.58.3-1.fc43.noarch` -- [ ] `SDL3-3.4.0-3.fc43.x86_64` -- [ ] `sdl2-compat-2.32.64-1.fc43.x86_64` -- [ ] `xorg-x11-server-Xwayland-24.1.9-1.fc43.x86_64` -- [ ] `gnome-keyring-pam-48.0-3.fc43.x86_64` -- [ ] `epiphany-runtime-49.2-1.fc43.x86_64` -- [ ] `gnome-software-49.3-1.fc43.x86_64` -- [ ] `NetworkManager-ssh-1.4.2-1.fc43.x86_64` -- [ ] `yelp-libs-49.0-1.fc43.x86_64` -- [ ] `libgdata-0.18.1-15.fc43.x86_64` -- [ ] `msgraph-0.3.4-5.fc43.x86_64` -- [ ] `gvfs-goa-1.58.1-1.fc43.x86_64` -- [ ] `gnome-online-accounts-3.56.4-1.fc43.x86_64` -- [ ] `malcontent-ui-libs-0.13.0-3.fc43.x86_64` -- [ ] `firefox-147.0.3-1.fc43.x86_64` -- [ ] `gnome-desktop3-44.5-1.fc43.x86_64` -- [ ] `gnome-desktop4-44.5-1.fc43.x86_64` -- [ ] `gnome-settings-daemon-49.1-2.fc43.x86_64` -- [ ] `gnome-session-49.2-2.fc43.x86_64` -- [ ] `nautilus-49.4-1.fc43.x86_64` -- [ ] `mutter-49.4-1.fc43.x86_64` -- [ ] `xdg-desktop-portal-gnome-49.0-1.fc43.x86_64` -- [ ] `gtkmm3.0-3.24.10-2.fc43.x86_64` -- [ ] `ibus-gtk3-1.5.33-5.fc43.x86_64` -- [ ] `ibus-1.5.33-5.fc43.x86_64` -- [ ] `ibus-setup-1.5.33-5.fc43.noarch` -- [ ] `kasumi-unicode-2.5-49.fc43.x86_64` -- [ ] `ibus-anthy-1.5.17-8.fc43.x86_64` -- [ ] `ibus-anthy-python-1.5.17-8.fc43.noarch` -- [ ] `libhandy-1.8.3-9.fc43.x86_64` -- [ ] `libwnck3-43.3-1.fc43.x86_64` -- [ ] `system-config-printer-libs-1.5.18-16.fc43.noarch` -- [ ] `vte291-0.82.3-1.fc43.x86_64` -- [ ] `vte291-gtk4-0.82.3-1.fc43.x86_64` -- [ ] `xdg-desktop-portal-gtk-1.15.3-2.fc43.x86_64` -- [ ] `xdg-user-dirs-gtk-0.16-1.fc43.x86_64` -- [ ] `colord-gtk4-0.3.1-4.fc43.x86_64` -- [ ] `gnome-control-center-49.4-1.fc43.x86_64` -- [ ] `gcr-4.4.0.1-4.fc43.x86_64` -- [ ] `gnome-shell-49.4-1.fc43.x86_64` -- [ ] `gnome-session-wayland-session-49.2-2.fc43.x86_64` -- [ ] `gdm-49.2-2.fc43.x86_64` -- [ ] `gnome-shell-extension-common-49.0-2.fc43.noarch` -- [ ] `gnome-shell-extension-apps-menu-49.0-2.fc43.noarch` -- [ ] `gnome-shell-extension-launch-new-instance-49.0-2.fc43.noarch` -- [ ] `gnome-shell-extension-places-menu-49.0-2.fc43.noarch` -- [ ] `gnome-shell-extension-window-list-49.0-2.fc43.noarch` -- [ ] `gtkmm4.0-4.20.0-1.fc43.x86_64` -- [ ] `adobe-mappings-pdf-20190401-10.fc43.noarch` -- [ ] `libgs-10.05.1-6.fc43.x86_64` -- [ ] `ghostscript-10.05.1-6.fc43.x86_64` -- [ ] `ghostscript-tools-fontutils-10.05.1-6.fc43.noarch` -- [ ] `ghostscript-tools-printing-10.05.1-6.fc43.noarch` -- [ ] `libcupsfilters-2.1.1-5.fc43.x86_64` -- [ ] `libppd-2.1.1-2.fc43.x86_64` -- [ ] `cups-filters-2.0.1-12.fc43.x86_64` -- [ ] `cups-2.4.16-4.fc43.x86_64` -- [ ] `ImageMagick-libs-7.1.1.47-3.fc43.x86_64` -- [ ] `ImageMagick-7.1.1.47-3.fc43.x86_64` -- [ ] `braille-printer-app-2.0~b0^386eea385f-9.fc43.x86_64` -- [ ] `bluez-cups-5.86-2.fc43.x86_64` -- [ ] `dymo-cups-drivers-1.4.0.5-24.fc43.x86_64` -- [ ] `gutenprint-cups-5.3.5-6.fc43.x86_64` -- [ ] `hplip-3.25.8-1.fc43.x86_64` -- [ ] `ptouch-driver-1.7.1-2.fc43.x86_64` -- [ ] `splix-2.0.1-4.fc43.x86_64` -- [ ] `c2esp-2.7-35.fc43.x86_64` -- [ ] `cups-browsed-2.1.1-5.fc43.x86_64` -- [ ] `cups-filters-driverless-2.0.1-12.fc43.x86_64` -- [ ] `printer-driver-brlaser-6.2.7-2.fc43.x86_64` -- [ ] `gnome-system-monitor-49.1-1.fc43.x86_64` -- [ ] `gnome-classic-session-49.0-2.fc43.noarch` -- [ ] `gnome-initial-setup-49.0-1.fc43.x86_64` -- [ ] `gnome-browser-connector-42.1-13.fc43.x86_64` -- [ ] `gnome-shell-extension-background-logo-49.0-2.fc43.noarch` -- [ ] `ptyxis-49.2-1.fc43.x86_64` -- [ ] `system-config-printer-udev-1.5.18-16.fc43.x86_64` -- [ ] `orca-49.5-1.fc43.noarch` -- [ ] `gnome-disk-utility-46.1-3.fc43.x86_64` -- [ ] `ibus-hangul-1.5.5-11.fc43.x86_64` -- [ ] `ibus-libpinyin-1.16.5-2.fc43.x86_64` -- [ ] `ibus-m17n-1.4.37-1.fc43.x86_64` -- [ ] `ibus-typing-booster-2.30.3-1.fc43.noarch` -- [ ] `open-vm-tools-desktop-13.0.10-2.fc43.x86_64` -- [ ] `papers-nautilus-49.3-1.fc43.x86_64` -- [ ] `firefox-langpacks-147.0.3-1.fc43.x86_64` -- [ ] `malcontent-control-0.13.0-3.fc43.x86_64` -- [ ] `yelp-49.0-1.fc43.x86_64` -- [ ] `NetworkManager-ssh-gnome-1.4.2-1.fc43.x86_64` -- [ ] `papers-previewer-49.3-1.fc43.x86_64` -- [ ] `papers-thumbnailer-49.3-1.fc43.x86_64` -- [ ] `NetworkManager-openconnect-gnome-1.2.10-9.fc43.x86_64` -- [ ] `NetworkManager-vpnc-gnome-1.4.0-4.fc43.x86_64` -- [ ] `gnome-bluetooth-47.1-3.fc43.x86_64` -- [ ] `NetworkManager-openvpn-gnome-1.12.5-2.fc43.x86_64` -- [ ] `nm-connection-editor-1.36.0-6.fc43.x86_64` -- [ ] `gnome-tour-48.1-3.fc43.x86_64` -- [ ] `ibus-chewing-2.1.7-1.fc43.x86_64` -- [ ] `gnome-color-manager-3.36.2-2.fc43.x86_64` -- [ ] `gstreamer1-plugins-bad-free-1.26.10-1.fc43.x86_64` -- [ ] `ibus-gtk4-1.5.33-5.fc43.x86_64` -- [ ] `rygel-45.1-1.fc43.x86_64` -- [ ] `toolbox-0.3-1.fc43.x86_64` -- [ ] `dhcp-client-4.4.3-22.fc43.x86_64` -- [ ] `wget2-wget-2.2.1-1.fc43.x86_64` -- [ ] `unbound-anchor-1.24.2-1.fc43.x86_64` -- [ ] `pinfo-0.6.13-9.fc43.x86_64` -- [ ] `gnome-user-share-48.1-2.fc43.x86_64` -- [ ] `mod_http2-2.0.37-1.fc43.x86_64` -- [ ] `mod_lua-2.4.66-1.fc43.x86_64` -- [ ] `dnf5-plugins-5.2.18.0-1.fc43.x86_64` -- [ ] `python3-perf-6.18.9-200.fc43.x86_64` -- [ ] `libcamera-ipa-0.5.2-5.fc43.x86_64` -- [ ] `pipewire-plugin-libcamera-1.4.10-1.fc43.x86_64` -- [ ] `gstreamer1-plugins-good-qt-1.26.10-1.fc43.x86_64` -- [ ] `gstreamer1-plugin-dav1d-0.14.0-3.fc43.x86_64` -- [ ] `gstreamer1-plugin-libav-1.26.10-1.fc43.x86_64` -- [ ] `gstreamer1-plugins-ugly-free-1.26.10-1.fc43.x86_64` -- [ ] `zram-generator-defaults-1.2.1-3.fc43.noarch` -- [ ] `buildah-1.42.2-1.fc43.x86_64` -- [ ] `rsync-3.4.1-4.fc43.x86_64` -- [ ] `xfsprogs-6.15.0-3.fc43.x86_64` -- [ ] `gnome-remote-desktop-49.2-1.fc43.x86_64` -- [ ] `brltty-6.8-4.fc43.x86_64` -- [ ] `qadwaitadecorations-qt5-0.1.7-2.fc43.x86_64` -- [ ] `qt5-qtxmlpatterns-5.15.18-1.fc43.x86_64` -- [ ] `jq-1.8.1-1.fc43.x86_64` -- [ ] `gvfs-afc-1.58.1-1.fc43.x86_64` -- [ ] `gvfs-afp-1.58.1-1.fc43.x86_64` -- [ ] `gvfs-archive-1.58.1-1.fc43.x86_64` -- [ ] `gvfs-fuse-1.58.1-1.fc43.x86_64` -- [ ] `gvfs-gphoto2-1.58.1-1.fc43.x86_64` -- [ ] `gvfs-mtp-1.58.1-1.fc43.x86_64` -- [ ] `gvfs-smb-1.58.1-1.fc43.x86_64` -- [ ] `tuned-ppd-2.27.0-0.1.rc1.fc43.noarch` -- [ ] `python3-urllib3+socks-2.6.3-1.fc43.noarch` -- [ ] `sos-4.10.2-1.fc43.noarch` -- [ ] `firewalld-2.3.2-1.fc43.noarch` -- [ ] `python3-httpx-0.28.1-9.fc43.noarch` -- [ ] `kernel-tools-6.18.9-200.fc43.x86_64` -- [ ] `python3-boto3-1.42.47-1.fc43.noarch` -- [ ] `speech-dispatcher-utils-0.12.1-5.fc43.x86_64` -- [ ] `python3-requests-2.32.5-2.fc43.noarch` -- [ ] `opensc-0.26.1-6.fc43.x86_64` -- [ ] `libsane-hpaio-3.25.8-1.fc43.x86_64` -- [ ] `cifs-utils-info-7.2-2.fc43.x86_64` -- [ ] `crypto-policies-scripts-20251125-1.git63291f8.fc43.noarch` -- [ ] `fpaste-0.5.0.0-3.fc43.noarch` -- [ ] `libcap-ng-python3-0.9-7.fc43.x86_64` -- [ ] `nfs-utils-2.8.4-0.fc43.x86_64` -- [ ] `paps-0.8.0-14.fc43.x86_64` -- [ ] `python-unversioned-command-3.14.2-1.fc43.noarch` -- [ ] `python3-file-magic-5.46-8.fc43.noarch` -- [ ] `python3-langtable-0.0.69-4.fc43.noarch` -- [ ] `python3-pyaudio-0.2.13-10.fc43.x86_64` -- [ ] `python3-regex-2025.10.23-1.fc43.x86_64` -- [ ] `sudo-python-plugin-1.9.17-6.p2.fc43.x86_64` -- [ ] `intel-vpl-gpu-rt-25.4.5-1.fc43.x86_64` -- [ ] `xdriinfo-1.0.7-5.fc43.x86_64` -- [ ] `NetworkManager-ppp-1.54.3-2.fc43.x86_64` -- [ ] `bind-utils-9.18.44-1.fc43.x86_64` -- [ ] `qemu-guest-agent-10.1.3-1.fc43.x86_64` -- [ ] `sssd-kcm-2.12.0-1.fc43.x86_64` -- [ ] `NetworkManager-wifi-1.54.3-2.fc43.x86_64` -- [ ] `shim-x64-15.8-3.x86_64` -- [ ] `shim-ia32-15.8-3.x86_64` -- [ ] `grub2-pc-2.12-40.fc43.x86_64` -- [ ] `fwupd-plugin-flashrom-2.0.19-1.fc43.x86_64` -- [ ] `NetworkManager-bluetooth-1.54.3-2.fc43.x86_64` -- [ ] `plymouth-system-theme-24.004.60-24.fc43.x86_64` -- [ ] `sane-backends-drivers-cameras-1.4.0-4.fc43.x86_64` -- [ ] `sane-backends-drivers-scanners-1.4.0-4.fc43.x86_64` -- [ ] `virtualbox-guest-additions-7.2.4-1.fc43.x86_64` -- [ ] `NetworkManager-adsl-1.54.3-2.fc43.x86_64` -- [ ] `b43-openfwwf-5.2-46.fc43.noarch` -- [ ] `ipp-usb-0.9.30-7.fc43.x86_64` -- [ ] `systemd-oomd-defaults-258.4-1.fc43.noarch` -- [ ] `udftools-2.3-12.fc43.x86_64` -- [ ] `lvm2-2.03.34-2.fc43.x86_64` -- [ ] `fwupd-efi-1.8-1.fc43.x86_64` -- [ ] `man-db-2.13.1-2.fc43.x86_64` -- [ ] `iptstate-2.2.7-10.fc43.x86_64` -- [ ] `criu-libs-4.2-11.fc43.x86_64` -- [ ] `dnsmasq-2.92-1.fc43.x86_64` -- [ ] `pipewire-utils-1.4.10-1.fc43.x86_64` -- [ ] `pipewire-alsa-1.4.10-1.fc43.x86_64` -- [ ] `pipewire-config-raop-1.4.10-1.fc43.x86_64` -- [ ] `uresourced-0.5.4-4.fc43.x86_64` -- [ ] `desktop-backgrounds-gnome-43.0.0-2.fc43.noarch` -- [ ] `fedora-workstation-backgrounds-1.6-8.fc43.noarch` -- [ ] `gnome-backgrounds-49.0-1.fc43.noarch` -- [ ] `gnome-epub-thumbnailer-1.8-3.fc43.x86_64` -- [ ] `glycin-thumbnailer-2.0.5-4.fc43.x86_64` -- [ ] `avahi-tools-0.9~rc2-6.fc43.x86_64` -- [ ] `nss-mdns-0.15.1-27.fc43.x86_64` -- [ ] `spice-webdavd-3.0-12.fc43.x86_64` -- [ ] `hyperv-daemons-6.10-2.fc43.x86_64` -- [ ] `git-core-doc-2.53.0-1.fc43.noarch` -- [ ] `openssh-server-10.0p1-6.fc43.x86_64` -- [ ] `cryptsetup-2.8.4-1.fc43.x86_64` -- [ ] `kpartx-0.11.1-2.fc43.x86_64` -- [ ] `samba-client-4.23.5-1.fc43.x86_64` -- [ ] `fwupd-plugin-modem-manager-2.0.19-1.fc43.x86_64` -- [ ] `fwupd-plugin-uefi-capsule-data-2.0.19-1.fc43.x86_64` -- [ ] `polkit-pkla-compat-0.1-31.fc43.x86_64` -- [ ] `realmd-0.17.1-18.fc43.x86_64` -- [ ] `alsa-utils-1.2.15.2-1.fc43.x86_64` -- [ ] `audit-4.1.3-1.fc43.x86_64` -- [ ] `bolt-0.9.10-2.fc43.x86_64` -- [ ] `bootupd-0.2.32-2.fc43.x86_64` -- [ ] `chrony-4.8-3.fc43.x86_64` -- [ ] `initscripts-service-10.27-1.fc43.noarch` -- [ ] `logrotate-3.22.0-4.fc43.x86_64` -- [ ] `mcelog-175-13.fc43.x86_64` -- [ ] `spice-vdagent-0.23.0-1.fc43.x86_64` -- [ ] `systemd-container-258.4-1.fc43.x86_64` -- [ ] `systemd-networkd-258.4-1.fc43.x86_64` -- [ ] `systemd-resolved-258.4-1.fc43.x86_64` -- [ ] `thermald-2.5.9-2.fc43.x86_64` -- [ ] `wireguard-tools-1.0.20250521-2.fc43.x86_64` -- [ ] `nvme-cli-2.16-1.fc43.x86_64` -- [ ] `e2fsprogs-1.47.3-2.fc43.x86_64` -- [ ] `ipset-7.24-2.fc43.x86_64` -- [ ] `slirp4netns-1.3.1-3.fc43.x86_64` -- [ ] `pinentry-gnome3-1.3.2-1.fc43.x86_64` -- [ ] `cpp-15.2.1-7.fc43.x86_64` -- [ ] `default-editor-8.5-2.fc43.noarch` -- [ ] `libdnf5-plugin-expired-pgp-keys-5.2.18.0-1.fc43.x86_64` -- [ ] `rpm-plugin-audit-6.0.1-1.fc43.x86_64` -- [ ] `rpm-plugin-selinux-6.0.1-1.fc43.x86_64` -- [ ] `fprintd-pam-1.94.5-2.fc43.x86_64` -- [ ] `gnupg2-scdaemon-2.4.9-5.fc43.x86_64` -- [ ] `exiv2-0.28.6-2.fc43.x86_64` -- [ ] `tpm2-tools-5.7-4.fc43.x86_64` -- [ ] `passwdqc-2.0.3-8.fc43.x86_64` -- [ ] `tinysparql-3.10.1-5.fc43.x86_64` -- [ ] `efibootmgr-18-10.fc43.x86_64` -- [ ] `zip-3.0-44.fc43.x86_64` -- [ ] `passim-0.1.10-2.fc43.x86_64` -- [ ] `cracklib-dicts-2.9.11-8.fc43.x86_64` -- [ ] `ntfs-3g-2022.10.3-10.fc43.x86_64` -- [ ] `ntfs-3g-system-compression-1.1-1.fc43.x86_64` -- [ ] `ntfsprogs-2022.10.3-10.fc43.x86_64` -- [ ] `lsof-4.98.0-8.fc43.x86_64` -- [ ] `pam_afs_session-2.6-24.fc43.x86_64` -- [ ] `gamemode-1.8.2-3.fc43.x86_64` -- [ ] `cyrus-sasl-plain-2.1.28-33.fc43.x86_64` -- [ ] `fuse-2.9.9-24.fc43.x86_64` -- [ ] `openssl-3.5.4-2.fc43.x86_64` -- [ ] `apr-util-openssl-1.6.3-25.fc43.x86_64` -- [ ] `hfsplus-tools-540.1.linux3-35.fc43.x86_64` -- [ ] `pkcs11-provider-1.0-4.fc43.x86_64` -- [ ] `btrfs-progs-6.17.1-1.fc43.x86_64` -- [ ] `prefixdevname-0.2.0-7.fc43.x86_64` -- [ ] `low-memory-monitor-2.1-13.fc43.x86_64` -- [ ] `nilfs-utils-2.2.11-7.fc43.x86_64` -- [ ] `f2fs-tools-1.16.0-9.fc43.x86_64` -- [ ] `vim-minimal-9.1.2128-2.fc43.x86_64` -- [ ] `attr-2.5.2-6.fc43.x86_64` -- [ ] `mtr-0.95-13.fc43.x86_64` -- [ ] `p11-kit-server-0.26.2-1.fc43.x86_64` -- [ ] `whois-5.6.5-1.fc43.x86_64` -- [ ] `wl-clipboard-2.2.1-5.fc43.x86_64` -- [ ] `man-pages-6.13-2.fc43.noarch` -- [ ] `bc-1.08.2-2.fc43.x86_64` -- [ ] `mkpasswd-5.6.5-1.fc43.x86_64` -- [ ] `bzip2-1.0.8-21.fc43.x86_64` -- [ ] `memstrack-0.2.5-7.fc43.x86_64` -- [ ] `ncurses-6.5-7.20250614.fc43.x86_64` -- [ ] `b43-fwcutter-019-39.fc43.x86_64` -- [ ] `compsize-1.5^git20250123.d79eacf-13.fc43.x86_64` -- [ ] `dosfstools-4.2-16.fc43.x86_64` -- [ ] `exfatprogs-1.3.1-1.fc43.x86_64` -- [ ] `fuse-libs-2.9.9-24.fc43.x86_64` -- [ ] `hostname-3.25-3.fc43.x86_64` -- [ ] `lrzsz-0.12.20-75.fc43.x86_64` -- [ ] `mpage-2.5.7-23.fc43.x86_64` -- [ ] `nss-altfiles-2.23.0-7.fc43.x86_64` -- [ ] `time-1.9-27.fc43.x86_64` -- [ ] `tree-2.2.1-2.fc43.x86_64` -- [ ] `bash-completion-2.16-2.fc43.noarch` -- [ ] `fedora-repos-archive-43-1.noarch` -- [ ] `default-fonts-other-sans-4.2-5.fc43.noarch` -- [ ] `default-fonts-core-math-4.2-5.fc43.noarch` -- [ ] `default-fonts-other-serif-4.2-5.fc43.noarch` -- [ ] `default-fonts-cjk-serif-4.2-5.fc43.noarch` -- [ ] `default-fonts-cjk-mono-4.2-5.fc43.noarch` -- [ ] `default-fonts-core-emoji-4.2-5.fc43.noarch` -- [ ] `iwlwifi-mvm-firmware-20260110-1.fc43.noarch` -- [ ] `langpacks-en-4.2-5.fc43.noarch` -- [ ] `hunspell-en-0.20201207-12.fc43.noarch` -- [ ] `default-fonts-core-serif-4.2-5.fc43.noarch` -- [ ] `default-fonts-core-mono-4.2-5.fc43.noarch` -- [ ] `default-fonts-other-mono-4.2-5.fc43.noarch` -- [ ] `amd-gpu-firmware-20260110-1.fc43.noarch` -- [ ] `amd-ucode-firmware-20260110-1.fc43.noarch` -- [ ] `atheros-firmware-20260110-1.fc43.noarch` -- [ ] `brcmfmac-firmware-20260110-1.fc43.noarch` -- [ ] `cirrus-audio-firmware-20260110-1.fc43.noarch` -- [ ] `intel-audio-firmware-20260110-1.fc43.noarch` -- [ ] `intel-gpu-firmware-20260110-1.fc43.noarch` -- [ ] `intel-vsc-firmware-20260110-1.fc43.noarch` -- [ ] `iwlegacy-firmware-20260110-1.fc43.noarch` -- [ ] `iwlwifi-dvm-firmware-20260110-1.fc43.noarch` -- [ ] `libertas-firmware-20260110-1.fc43.noarch` -- [ ] `mt7xxx-firmware-20260110-1.fc43.noarch` -- [ ] `nvidia-gpu-firmware-20260110-1.fc43.noarch` -- [ ] `nxpwireless-firmware-20260110-1.fc43.noarch` -- [ ] `qcom-wwan-firmware-20260110-1.fc43.noarch` -- [ ] `realtek-firmware-20260110-1.fc43.noarch` -- [ ] `tiwilink-firmware-20260110-1.fc43.noarch` -- [ ] `adobe-source-code-pro-fonts-2.042.1.062.1.026-7.fc43.noarch` -- [ ] `adwaita-mono-fonts-49.0-2.fc43.noarch` -- [ ] `adwaita-sans-fonts-49.0-2.fc43.noarch` -- [ ] `gdouros-symbola-fonts-10.24-18.fc43.noarch` -- [ ] `google-noto-emoji-fonts-20250623-2.fc43.noarch` -- [ ] `julietaula-montserrat-fonts-9.000-3.fc43.noarch` -- [ ] `liberation-mono-fonts-2.1.5-14.fc43.noarch` -- [ ] `liberation-sans-fonts-2.1.5-14.fc43.noarch` -- [ ] `liberation-serif-fonts-2.1.5-14.fc43.noarch` -- [ ] `open-sans-fonts-1.10-24.fc43.noarch` -- [ ] `words-3.0-62.fc43.noarch` -- [ ] `rootfiles-9.0-4.fc43.noarch` -- [ ] `qt5-qttranslations-5.15.18-1.fc43.noarch` -- [ ] `microcode_ctl-2.1-71.fc43.x86_64` -- [ ] `gnome-user-docs-49.4-1.fc43.noarch` -- [ ] `geolite2-country-20191217-15.fc43.noarch` -- [ ] `geolite2-city-20191217-15.fc43.noarch` -- [ ] `gawk-all-langpacks-5.3.2-2.fc43.x86_64` -- [ ] `fedora-chromium-config-gnome-3.0-8.fc43.noarch` -- [ ] `fedora-chromium-config-3.0-8.fc43.noarch` -- [ ] `fedora-bookmarks-28-34.fc43.noarch` -- [ ] `bash-color-prompt-0.7.1-2.fc43.noarch` -- [ ] `alsa-sof-firmware-2025.12.1-1.fc43.noarch` -- [ ] `NetworkManager-config-connectivity-fedora-1.54.3-2.fc43.noarch` -- [ ] `gpg-pubkey-c6e7f081cf80e13146676e88829b606631645531-66b6dccf` -- [ ] `ocl-icd-2.3.4-1.fc43.x86_64` -- [ ] `gpg-pubkey-ab4670779555943799be7ed916bc8535a444a78a-67ba9c6e` -- [ ] `just-1.46.0-1.fc43.x86_64` -- [ ] `ublue-os-luks-0.3-1.fc43.noarch` -- [ ] `ublue-os-just-0.53-3.fc43.noarch` -- [ ] `fzf-0.67.0-1.fc43.x86_64` -- [ ] `powerstat-0.04.05-2.fc43.x86_64` -- [ ] `ublue-os-update-services-0.91-1.fc43.noarch` -- [ ] `ublue-os-signing-0.5-1.fc43.noarch` -- [ ] `ublue-os-akmods-addons-0.6-1.fc43.noarch` -- [ ] `ublue-os-udev-rules-0.9-1.fc43.noarch` -- [ ] `kernel-core-6.18.9-200.fc43.x86_64` -- [ ] `kernel-modules-core-6.18.9-200.fc43.x86_64` -- [ ] `kernel-modules-6.18.9-200.fc43.x86_64` -- [ ] `kernel-modules-extra-6.18.9-200.fc43.x86_64` -- [ ] `kernel-6.18.9-200.fc43.x86_64` -- [ ] `gpg-pubkey-0c5d0f470484ae2fc40a9b6597f3008993e8909b-66d42b2c` -- [ ] `mesa-filesystem-25.3.4-1.fc43.x86_64` -- [ ] `mesa-dri-drivers-25.3.4-1.fc43.x86_64` -- [ ] `mesa-libgbm-25.3.4-1.fc43.x86_64` -- [ ] `libva-2.23.0-1.fc43.x86_64` -- [ ] `intel-gmmlib-22.9.0-1.fc43.x86_64` -- [ ] `x265-libs-4.1-5.fc43.x86_64` -- [ ] `vvenc-libs-1.14.0-1.fc43.x86_64` -- [ ] `vvdec-libs-3.1.0-1.fc43.x86_64` -- [ ] `uvg266-libs-0.8.1-1.fc43.x86_64` -- [ ] `libde265-1.0.16-1.fc43.x86_64` -- [ ] `kvazaar-libs-2.3.2-1.fc43.x86_64` -- [ ] `libheif-1.20.2-2.fc43.x86_64` -- [ ] `libva-intel-media-driver-26.1.2-1.fc43.x86_64` -- [ ] `intel-mediasdk-23.2.2-1.fc43.x86_64` -- [ ] `mesa-libEGL-25.3.4-1.fc43.x86_64` -- [ ] `mesa-libGL-25.3.4-1.fc43.x86_64` -- [ ] `mesa-vulkan-drivers-25.3.4-1.fc43.x86_64` -- [ ] `mesa-va-drivers-25.3.4-1.fc43.x86_64` -- [ ] `libavutil-7.1.3-2.fc43.x86_64` -- [ ] `libswresample-7.1.3-2.fc43.x86_64` -- [ ] `gtk2-2.24.33-23.fc43.x86_64` -- [ ] `libpostproc-7.1.3-2.fc43.x86_64` -- [ ] `libswscale-7.1.3-2.fc43.x86_64` -- [ ] `python3-more-itertools-10.5.0-7.fc43.noarch` -- [ ] `python3-jeepney-0.9.0-7.fc43.noarch` -- [ ] `libyubikey-1.13-26.fc43.x86_64` -- [ ] `ykpers-1.20.0-17.fc43.x86_64` -- [ ] `LCEVCdec-4.0.5-1.fc43.x86_64` -- [ ] `python3-jaraco-classes-3.4.0-10.fc43.noarch` -- [ ] `python3-jaraco-functools-4.1.0-6.fc43.noarch` -- [ ] `xeve-libs-0.5.1-2.fc43.x86_64` -- [ ] `xevd-libs-0.5.0-1.fc43.x86_64` -- [ ] `zinnia-0.07-7.fc43.x86_64` -- [ ] `python3-shtab-1.7.2-4.fc43.noarch` -- [ ] `highcontrast-icon-theme-3.28-23.fc43.noarch` -- [ ] `smartmontools-selinux-7.5-4.fc43.noarch` -- [ ] `fxload-2008_10_13-33.fc43.x86_64` -- [ ] `alsa-firmware-1.2.4-15.fc43.noarch` -- [ ] `alsa-tools-firmware-1.2.15-1.fc43.x86_64` -- [ ] `python3-evdev-1.9.3-1.fc43.x86_64` -- [ ] `python3-jaraco-context-6.0.1-9.fc43.noarch` -- [ ] `xxd-9.1.2128-2.fc43.x86_64` -- [ ] `vim-filesystem-9.1.2128-2.fc43.noarch` -- [ ] `vim-common-9.1.2128-2.fc43.x86_64` -- [ ] `python3-ply-3.11-30.fc43.noarch` -- [ ] `python3-pycparser-2.22-5.fc43.noarch` -- [ ] `python3-cffi-2.0.0-2.fc43.x86_64` -- [ ] `python3-cryptography-45.0.4-4.fc43.x86_64` -- [ ] `python3-fido2-2.0.0-3.fc43.noarch` -- [ ] `python3-secretstorage-3.3.3^20240314git3e5097c-16.fc43.noarch` -- [ ] `python3-keyring-25.7.0-2.fc43.noarch` -- [ ] `python3-pskc-1.4-1.fc43.noarch` -- [ ] `python3-pyscard-2.2.2-3.fc43.x86_64` -- [ ] `python3-yubikey-manager-5.9.0-1.20260203git46f0dad.fc43.noarch` -- [ ] `gpm-libs-1.20.7-52.fc43.x86_64` -- [ ] `libutempter-1.2.1-19.fc43.x86_64` -- [ ] `ykclient-2.15-22.fc43.x86_64` -- [ ] `gtest-1.15.2-4.fc43.x86_64` -- [ ] `libnfs-6.0.2-6.fc43.x86_64` -- [ ] `librtmp-2.6^20240301git6f6bb13-2.fc43.x86_64` -- [ ] `libklvanc-1.6.0-3.fc43.x86_64` -- [ ] `xavs2-libs-1.4-2.fc43.x86_64` -- [ ] `x264-libs-0.165-38.20250910git0480cb0.fc43.x86_64` -- [ ] `uavs3d-libs-1.2.0~20251213git0e20d2c-8.fc43.x86_64` -- [ ] `libxavs-0.1.55~20110821svnr55-3.fc43.x86_64` -- [ ] `davs2-libs-1.7^20220903gitb41cf11-7.fc43.x86_64` -- [ ] `svt-vp9-libs-0.3.0-15.fc43.x86_64` -- [ ] `libfdk-aac-2.0.3-2.fc43.x86_64` -- [ ] `libavcodec-7.1.3-2.fc43.x86_64` -- [ ] `libavformat-7.1.3-2.fc43.x86_64` -- [ ] `libavfilter-7.1.3-2.fc43.x86_64` -- [ ] `libavdevice-7.1.3-2.fc43.x86_64` -- [ ] `ffmpegthumbnailer-libs-2.3.0-1.fc43.x86_64` -- [ ] `libfreeaptx-0.2.2-1.fc43.x86_64` -- [ ] `libtatsu-1.0.3-3.fc43.x86_64` -- [ ] `xrefresh-1.1.0-3.fc43.x86_64` -- [ ] `mozc-2.29.5111.102-16.fc43.x86_64` -- [ ] `hwloc-libs-2.12.0-2.fc43.x86_64` -- [ ] `mtools-4.0.49-2.fc43.x86_64` -- [ ] `pam-u2f-1.4.0-2.fc43.x86_64` -- [ ] `pamu2fcfg-1.4.0-2.fc43.x86_64` -- [ ] `grub2-tools-extra-2.12-40.fc43.x86_64` -- [ ] `htop-3.4.1-2.fc43.x86_64` -- [ ] `ibus-mozc-2.29.5111.102-16.fc43.x86_64` -- [ ] `libimobiledevice-utils-1.3.0^20240916gited9703d-6.fc43.x86_64` -- [ ] `pipewire-libs-extra-1.4.10-1.fc43.x86_64` -- [ ] `ffmpegthumbnailer-2.3.0-1.fc43.x86_64` -- [ ] `ffmpeg-7.1.3-2.fc43.x86_64` -- [ ] `ffmpeg-libs-7.1.3-2.fc43.x86_64` -- [ ] `gvfs-nfs-1.58.1-1.fc43.x86_64` -- [ ] `libcamera-tools-0.5.2-5.fc43.x86_64` -- [ ] `pam_yubico-2.27-9.fc43.x86_64` -- [ ] `tmux-3.5a-7.fc43.x86_64` -- [ ] `vim-enhanced-9.1.2128-2.fc43.x86_64` -- [ ] `yubikey-manager-5.9.0-1.20260203git46f0dad.fc43.noarch` -- [ ] `python3-keyring+completion-25.7.0-2.fc43.noarch` -- [ ] `libratbag-ratbagd-0.18-4.fc43.x86_64` -- [ ] `smartmontools-7.5-4.fc43.x86_64` -- [ ] `adwaita-gtk2-theme-3.28-23.fc43.x86_64` -- [ ] `zinnia-tomoe-ja-0.07-7.fc43.x86_64` -- [ ] `ibus-gtk2-1.5.33-5.fc43.x86_64` -- [ ] `libcanberra-gtk2-0.30-38.fc43.x86_64` -- [ ] `tcpdump-4.99.6-1.fc43.x86_64` -- [ ] `solaar-udev-1.1.19-1.fc43.noarch` -- [ ] `oversteer-udev-0.0.git.407.76a8d702-1.fc43.noarch` -- [ ] `openrgb-udev-rules-1.0~rc2-3.20260126git74cbdcc.fc43.noarch` -- [ ] `nvtop-3.3.1-2.fc43.x86_64` -- [ ] `lshw-B.02.20-10.fc43.x86_64` -- [ ] `libva-utils-2.23.0-1.fc43.x86_64` -- [ ] `libcamera-gstreamer-0.5.2-5.fc43.x86_64` -- [ ] `intel-vaapi-driver-2.4.1-8.fc43.x86_64` -- [ ] `google-noto-sans-sundanese-fonts-20251101-2.fc43.noarch` -- [ ] `google-noto-sans-javanese-fonts-20251101-2.fc43.noarch` -- [ ] `google-noto-sans-balinese-fonts-20251101-2.fc43.noarch` -- [ ] `distrobox-1.8.2.3-1.fc43.noarch` -- [ ] `traceroute-2.1.6-3.fc43.x86_64` -- [ ] `symlinks-1.7-13.fc43.x86_64` -- [ ] `squashfs-tools-4.6.1-7.fc43.x86_64` -- [ ] `net-tools-2.0-0.74.20160912git.fc43.x86_64` -- [ ] `ibus-unikey-0.7.0~beta1-4.fc43.x86_64` -- [ ] `google-noto-sans-cjk-fonts-2.004-10.fc43.noarch` -- [ ] `flatpak-spawn-1.0.6-3.fc43.x86_64` -- [ ] `adw-gtk3-theme-6.4-1.fc43.noarch` -- [ ] `cosign-3.0.4-1.x86_64`