Skip to content

Commit

Permalink
ci: mageia: skip moreutils, perhaps it is bundled
Browse files Browse the repository at this point in the history
  • Loading branch information
balupton committed Aug 31, 2023
1 parent 595d1a9 commit 5ac0241
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
3 changes: 2 additions & 1 deletion commands/dorothy
Original file line number Diff line number Diff line change
Expand Up @@ -366,7 +366,8 @@ function dorothy() (
try_sudo pacman --refresh --sync --needed --noconfirm bash curl git ncurses moreutils procps-ng
elif command_exists urpmi; then
# for mageia, prefer over fedora as mageia contains dnf
try_sudo urpmi --auto bash curl git ncurses moreutils
# No package named moreutils
try_sudo urpmi --auto bash curl git ncurses
elif command_exists dnf; then
# for fedora
try_sudo dnf --assumeyes --refresh --best --allowerasing install bash curl git ncurses procps moreutils
Expand Down
5 changes: 4 additions & 1 deletion commands/setup-util-moreutils
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,10 @@ function setup_util_moreutils() (
return 0
fi

# despite availability, it fails to install on URPMI
# https://madb.mageia.org/package/show/source/1/application/0/release/cauldron/name/moreutils
# No package named moreutils

local options=(
--name="More Utilities"
--cli='errno'
Expand All @@ -40,7 +44,6 @@ function setup_util_moreutils() (
EMERGE='sys-apps/moreutils' # GENTOO
NIX='nixpkgs.moreutils'
RPM='moreutils' # FEDORA
URPMI='moreutils' # MAGEIA
XBPS='moreutils' # VOID
ZYPPER='moreutils' # SUSE
)
Expand Down

0 comments on commit 5ac0241

Please sign in to comment.